diff --git a/chanbench.hs b/chanbench.hs
new file mode 100644
--- /dev/null
+++ b/chanbench.hs
@@ -0,0 +1,69 @@
+{-# LANGUAGE CPP, RankNTypes #-}
+import Control.Concurrent.Async
+import Control.Monad
+import System.Environment
+
+import Control.Concurrent.Chan
+import Control.Concurrent.STM
+
+-- The TQueue and TBQueue in the stm package are optimised with UNPACKs,
+-- so we measure with those rather than these local versions.
+--
+-- import TQueue
+-- import TBQueue
+
+-- Using CPP rather than a runtime choice between channel types,
+-- because we want the compiler to be able to optimise the calls.
+
+-- #define CHAN
+-- #define TCHAN
+-- #define TQUEUE
+-- #define TBQUEUE
+
+#ifdef CHAN
+newc = newChan
+readc c = readChan c
+writec c x = writeChan c x
+#elif defined(TCHAN)
+newc = newTChanIO
+readc c = atomically $ readTChan c
+writec c x = atomically $ writeTChan c x
+#elif defined(TQUEUE)
+newc = atomically $ newTQueue
+readc c = atomically $ readTQueue c
+writec c x = atomically $ writeTQueue c x
+#elif defined(TBQUEUE)
+newc = atomically $ newTBQueue bufsiz
+readc c = atomically $ readTBQueue c
+writec c x = atomically $ writeTBQueue c x
+#endif
+
+bufsiz=4096
+
+-- Invoke this program with two command-line parameters.
+-- The first should be 0, 1, or 2, specifying one of three
+-- different benchmarks. The second specifies the size of the
+-- test.
+
+main = do
+  [stest,sn] <- getArgs -- 2000000 is a good number
+  let n = read sn :: Int
+      test = read stest :: Int
+  runtest n test
+
+runtest :: Int -> Int -> IO ()
+runtest n test = do
+  c <- newc
+  case test of
+    0 -> do
+      a <- async $ replicateM_ n $ writec c (1 :: Int)
+      b <- async $ replicateM_ n $ readc c
+      waitBoth a b
+      return ()
+    1 -> do
+      replicateM_ n $ writec c (1 :: Int)
+      replicateM_ n $ readc c
+    2 -> do
+      replicateM_ (n `quot` bufsiz) $ do
+        replicateM_ bufsiz $ writec c (1 :: Int)
+        replicateM_ bufsiz $ readc c
diff --git a/dist/build/parinfer/parinfer-tmp/Lex.hs b/dist/build/parinfer/parinfer-tmp/Lex.hs
new file mode 100644
--- /dev/null
+++ b/dist/build/parinfer/parinfer-tmp/Lex.hs
@@ -0,0 +1,357 @@
+{-# LANGUAGE CPP,MagicHash #-}
+{-# LINE 1 "parinfer/Lex.x" #-}
+
+module Lex where
+
+#if __GLASGOW_HASKELL__ >= 603
+#include "ghcconfig.h"
+#elif defined(__GLASGOW_HASKELL__)
+#include "config.h"
+#endif
+#if __GLASGOW_HASKELL__ >= 503
+import Data.Array
+import Data.Char (ord)
+import Data.Array.Base (unsafeAt)
+#else
+import Array
+import Char (ord)
+#endif
+#if __GLASGOW_HASKELL__ >= 503
+import GHC.Exts
+#else
+import GlaExts
+#endif
+{-# LINE 1 "templates/wrappers.hs" #-}
+{-# LINE 1 "templates/wrappers.hs" #-}
+{-# LINE 1 "<built-in>" #-}
+{-# LINE 1 "<command-line>" #-}
+{-# LINE 1 "templates/wrappers.hs" #-}
+-- -----------------------------------------------------------------------------
+-- Alex wrapper code.
+--
+-- This code is in the PUBLIC DOMAIN; you may copy it freely and use
+-- it for any purpose whatsoever.
+
+import Data.Word (Word8)
+{-# LINE 22 "templates/wrappers.hs" #-}
+
+import qualified Data.Bits
+
+-- | Encode a Haskell String to a list of Word8 values, in UTF8 format.
+utf8Encode :: Char -> [Word8]
+utf8Encode = map fromIntegral . go . ord
+ where
+  go oc
+   | oc <= 0x7f       = [oc]
+
+   | oc <= 0x7ff      = [ 0xc0 + (oc `Data.Bits.shiftR` 6)
+                        , 0x80 + oc Data.Bits..&. 0x3f
+                        ]
+
+   | oc <= 0xffff     = [ 0xe0 + (oc `Data.Bits.shiftR` 12)
+                        , 0x80 + ((oc `Data.Bits.shiftR` 6) Data.Bits..&. 0x3f)
+                        , 0x80 + oc Data.Bits..&. 0x3f
+                        ]
+   | otherwise        = [ 0xf0 + (oc `Data.Bits.shiftR` 18)
+                        , 0x80 + ((oc `Data.Bits.shiftR` 12) Data.Bits..&. 0x3f)
+                        , 0x80 + ((oc `Data.Bits.shiftR` 6) Data.Bits..&. 0x3f)
+                        , 0x80 + oc Data.Bits..&. 0x3f
+                        ]
+
+
+
+type Byte = Word8
+
+-- -----------------------------------------------------------------------------
+-- The input type
+
+{-# LINE 72 "templates/wrappers.hs" #-}
+
+{-# LINE 89 "templates/wrappers.hs" #-}
+
+{-# LINE 103 "templates/wrappers.hs" #-}
+
+{-# LINE 118 "templates/wrappers.hs" #-}
+
+-- -----------------------------------------------------------------------------
+-- Token positions
+
+-- `Posn' records the location of a token in the input text.  It has three
+-- fields: the address (number of chacaters preceding the token), line number
+-- and column of a token within the file. `start_pos' gives the position of the
+-- start of the file and `eof_pos' a standard encoding for the end of file.
+-- `move_pos' calculates the new position after traversing a given character,
+-- assuming the usual eight character tab stops.
+
+{-# LINE 141 "templates/wrappers.hs" #-}
+
+-- -----------------------------------------------------------------------------
+-- Default monad
+
+{-# LINE 231 "templates/wrappers.hs" #-}
+
+
+-- -----------------------------------------------------------------------------
+-- Monad (with ByteString input)
+
+{-# LINE 320 "templates/wrappers.hs" #-}
+
+
+-- -----------------------------------------------------------------------------
+-- Basic wrapper
+
+
+type AlexInput = (Char,[Byte],String)
+
+alexInputPrevChar :: AlexInput -> Char
+alexInputPrevChar (c,_,_) = c
+
+-- alexScanTokens :: String -> [token]
+alexScanTokens str = go ('\n',[],str)
+  where go inp@(_,_bs,s) =
+          case alexScan inp 0 of
+                AlexEOF -> []
+                AlexError _ -> error "lexical error"
+                AlexSkip  inp' len     -> go inp'
+                AlexToken inp' len act -> act (take len s) : go inp'
+
+alexGetByte :: AlexInput -> Maybe (Byte,AlexInput)
+alexGetByte (c,(b:bs),s) = Just (b,(c,bs,s))
+alexGetByte (c,[],[])    = Nothing
+alexGetByte (_,[],(c:s)) = case utf8Encode c of
+                             (b:bs) -> Just (b, (c, bs, s))
+                             [] -> Nothing
+
+
+
+-- -----------------------------------------------------------------------------
+-- Basic wrapper, ByteString version
+
+{-# LINE 365 "templates/wrappers.hs" #-}
+
+{-# LINE 378 "templates/wrappers.hs" #-}
+
+
+-- -----------------------------------------------------------------------------
+-- Posn wrapper
+
+-- Adds text positions to the basic model.
+
+{-# LINE 395 "templates/wrappers.hs" #-}
+
+
+-- -----------------------------------------------------------------------------
+-- Posn wrapper, ByteString version
+
+{-# LINE 410 "templates/wrappers.hs" #-}
+
+
+-- -----------------------------------------------------------------------------
+-- GScan wrapper
+
+-- For compatibility with previous versions of Alex, and because we can.
+
+alex_base :: AlexAddr
+alex_base = AlexA# "\xf8\xff\xff\xff\xb4\xff\xff\xff\x00\x00\x00\x00\x25\x00\x00\x00\x00\x00\x00\x00\xa5\x00\x00\x00\x25\x01\x00\x00\x25\x02\x00\x00\xe5\x01\x00\x00\x00\x00\x00\x00\xfd\xff\xff\xff\xdb\x02\x00\x00\xbf\x02\x00\x00\xb4\x03\x00\x00\xdb\xff\xff\xff\x00\x00\x00\x00\xe8\xff\xff\xff\x00\x00\x00\x00\x08\x04\x00\x00\x5c\x04\x00\x00\xb0\x04\x00\x00\x04\x05\x00\x00"#
+
+alex_table :: AlexAddr
+alex_table = AlexA# "\x00\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0a\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0b\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x11\x00\x11\x00\x11\x00\x11\x00\x00\x00\x10\x00\x0f\x00\x11\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x0e\x00\x00\x00\x11\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x14\x00\x13\x00\x13\x00\x12\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x08\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x01\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x06\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x07\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x07\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x09\x00\x08\x00\x06\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x02\x00\x01\x00\x05\x00\x04\x00\x04\x00\x04\x00\x03\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x15\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x0d\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x0c\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x13\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#
+
+alex_check :: AlexAddr
+alex_check = AlexA# "\xff\xff\x09\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x09\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\x2d\x00\xff\xff\xff\xff\x20\x00\xff\xff\xff\xff\xff\xff\xff\xff\x20\x00\xff\xff\xff\xff\x28\x00\x29\x00\x2a\x00\x2b\x00\xff\xff\x2d\x00\x3e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\x3b\x00\xff\xff\x3d\x00\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\x5c\x00\xff\xff\xff\xff\xff\xff\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x00\x8f\x00\x90\x00\x91\x00\x92\x00\x93\x00\x94\x00\x95\x00\x96\x00\x97\x00\x98\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x9d\x00\x9e\x00\x9f\x00\xa0\x00\xa1\x00\xa2\x00\xa3\x00\xa4\x00\xa5\x00\xa6\x00\xa7\x00\xa8\x00\xa9\x00\xaa\x00\xab\x00\xac\x00\xad\x00\xae\x00\xaf\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\xb4\x00\xb5\x00\xb6\x00\xb7\x00\xb8\x00\xb9\x00\xba\x00\xbb\x00\xbc\x00\xbd\x00\xbe\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x00\x80\x00\x81\x00\x82\x00\x83\x00\x84\x00\x85\x00\x86\x00\x87\x00\x88\x00\x89\x00\x8a\x00\x8b\x00\x8c\x00\x8d\x00\x8e\x00\x8f\x00\x90\x00\x91\x00\x92\x00\x93\x00\x94\x00\x95\x00\x96\x00\x97\x00\x98\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x9d\x00\x9e\x00\x9f\x00\xa0\x00\xa1\x00\xa2\x00\xa3\x00\xa4\x00\xa5\x00\xa6\x00\xa7\x00\xa8\x00\xa9\x00\xaa\x00\xab\x00\xac\x00\xad\x00\xae\x00\xaf\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\xb4\x00\xb5\x00\xb6\x00\xb7\x00\xb8\x00\xb9\x00\xba\x00\xbb\x00\xbc\x00\xbd\x00\xbe\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x00\x80\x00\x81\x00\x82\x00\x83\x00\x84\x00\x85\x00\x86\x00\x87\x00\x88\x00\x89\x00\x8a\x00\x8b\x00\x8c\x00\x8d\x00\x8e\x00\x8f\x00\x90\x00\x91\x00\x92\x00\x93\x00\x94\x00\x95\x00\x96\x00\x97\x00\x98\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x9d\x00\x9e\x00\x9f\x00\xa0\x00\xa1\x00\xa2\x00\xa3\x00\xa4\x00\xa5\x00\xa6\x00\xa7\x00\xa8\x00\xa9\x00\xaa\x00\xab\x00\xac\x00\xad\x00\xae\x00\xaf\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\xb4\x00\xb5\x00\xb6\x00\xb7\x00\xb8\x00\xb9\x00\xba\x00\xbb\x00\xbc\x00\xbd\x00\xbe\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x0b\x00\x0c\x00\x0d\x00\x0e\x00\x0f\x00\x10\x00\x11\x00\x12\x00\x13\x00\x14\x00\x15\x00\x16\x00\x17\x00\x18\x00\x19\x00\x1a\x00\x1b\x00\x1c\x00\x1d\x00\x1e\x00\x1f\x00\x20\x00\x21\x00\x22\x00\x23\x00\x24\x00\x25\x00\x26\x00\x27\x00\x28\x00\x29\x00\x2a\x00\x2b\x00\x2c\x00\x2d\x00\x2e\x00\x2f\x00\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\x3a\x00\x3b\x00\x3c\x00\x3d\x00\x3e\x00\x3f\x00\x40\x00\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\x5b\x00\x5c\x00\x5d\x00\x5e\x00\x5f\x00\x60\x00\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x7b\x00\x7c\x00\x7d\x00\x7e\x00\x7f\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x00\x0a\x00\x27\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x80\x00\x81\x00\x82\x00\x83\x00\x84\x00\x85\x00\x86\x00\x87\x00\x88\x00\x89\x00\x8a\x00\x8b\x00\x8c\x00\x8d\x00\x8e\x00\x8f\x00\x90\x00\x91\x00\x92\x00\x93\x00\x94\x00\x95\x00\x96\x00\x97\x00\x98\x00\x99\x00\x9a\x00\x9b\x00\x9c\x00\x9d\x00\x9e\x00\x9f\x00\xa0\x00\xa1\x00\xa2\x00\xa3\x00\xa4\x00\xa5\x00\xa6\x00\xa7\x00\xa8\x00\xa9\x00\xaa\x00\xab\x00\xac\x00\xad\x00\xae\x00\xaf\x00\xb0\x00\xb1\x00\xb2\x00\xb3\x00\xb4\x00\xb5\x00\xb6\x00\xb7\x00\xb8\x00\xb9\x00\xba\x00\xbb\x00\xbc\x00\xbd\x00\xbe\x00\xbf\x00\xc0\x00\xc1\x00\xc2\x00\xc3\x00\xc4\x00\xc5\x00\xc6\x00\xc7\x00\xc8\x00\xc9\x00\xca\x00\xcb\x00\xcc\x00\xcd\x00\xce\x00\xcf\x00\xd0\x00\xd1\x00\xd2\x00\xd3\x00\xd4\x00\xd5\x00\xd6\x00\xd7\x00\xd8\x00\xd9\x00\xda\x00\xdb\x00\xdc\x00\xdd\x00\xde\x00\xdf\x00\xe0\x00\xe1\x00\xe2\x00\xe3\x00\xe4\x00\xe5\x00\xe6\x00\xe7\x00\xe8\x00\xe9\x00\xea\x00\xeb\x00\xec\x00\xed\x00\xee\x00\xef\x00\xf0\x00\xf1\x00\xf2\x00\xf3\x00\xf4\x00\xf5\x00\xf6\x00\xf7\x00\xf8\x00\xf9\x00\xfa\x00\xfb\x00\xfc\x00\xfd\x00\xfe\x00\xff\x00\x27\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x27\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x27\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x27\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\x27\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x30\x00\x31\x00\x32\x00\x33\x00\x34\x00\x35\x00\x36\x00\x37\x00\x38\x00\x39\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x41\x00\x42\x00\x43\x00\x44\x00\x45\x00\x46\x00\x47\x00\x48\x00\x49\x00\x4a\x00\x4b\x00\x4c\x00\x4d\x00\x4e\x00\x4f\x00\x50\x00\x51\x00\x52\x00\x53\x00\x54\x00\x55\x00\x56\x00\x57\x00\x58\x00\x59\x00\x5a\x00\xff\xff\xff\xff\xff\xff\xff\xff\x5f\x00\xff\xff\x61\x00\x62\x00\x63\x00\x64\x00\x65\x00\x66\x00\x67\x00\x68\x00\x69\x00\x6a\x00\x6b\x00\x6c\x00\x6d\x00\x6e\x00\x6f\x00\x70\x00\x71\x00\x72\x00\x73\x00\x74\x00\x75\x00\x76\x00\x77\x00\x78\x00\x79\x00\x7a\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"#
+
+alex_deflt :: AlexAddr
+alex_deflt = AlexA# "\xff\xff\x09\x00\x09\x00\x02\x00\x02\x00\xff\xff\xff\xff\x0b\x00\x0b\x00\x0b\x00\xff\xff\x0b\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"#
+
+alex_accept = listArray (0::Int,21) [AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccNone,AlexAccSkip,AlexAccSkip,AlexAcc (alex_action_2),AlexAcc (alex_action_3),AlexAcc (alex_action_4),AlexAcc (alex_action_5),AlexAcc (alex_action_6),AlexAcc (alex_action_6),AlexAcc (alex_action_7),AlexAcc (alex_action_7),AlexAcc (alex_action_7),AlexAcc (alex_action_7)]
+{-# LINE 21 "parinfer/Lex.x" #-}
+
+-- Each right-hand side has type :: String -> Token
+
+-- The token type:
+data Token =
+        TLet            |
+        TIn             |
+        TSym Char       |
+        TVar String     |
+        TInt Int        |
+        TArrow
+        deriving (Eq,Show)
+
+alex_action_2 =  \s -> TLet 
+alex_action_3 =  \s -> TIn 
+alex_action_4 =  \s -> TInt (read s) 
+alex_action_5 =  \s -> TArrow 
+alex_action_6 =  \s -> TSym (head s) 
+alex_action_7 =  \s -> TVar s 
+{-# LINE 1 "templates/GenericTemplate.hs" #-}
+{-# LINE 1 "templates/GenericTemplate.hs" #-}
+{-# LINE 1 "<built-in>" #-}
+{-# LINE 1 "<command-line>" #-}
+{-# LINE 1 "templates/GenericTemplate.hs" #-}
+-- -----------------------------------------------------------------------------
+-- ALEX TEMPLATE
+--
+-- This code is in the PUBLIC DOMAIN; you may copy it freely and use
+-- it for any purpose whatsoever.
+
+-- -----------------------------------------------------------------------------
+-- INTERNALS and main scanner engine
+
+{-# LINE 35 "templates/GenericTemplate.hs" #-}
+
+{-# LINE 45 "templates/GenericTemplate.hs" #-}
+
+
+data AlexAddr = AlexA# Addr#
+
+#if __GLASGOW_HASKELL__ < 503
+uncheckedShiftL# = shiftL#
+#endif
+
+{-# INLINE alexIndexInt16OffAddr #-}
+alexIndexInt16OffAddr (AlexA# arr) off =
+#ifdef WORDS_BIGENDIAN
+  narrow16Int# i
+  where
+        i    = word2Int# ((high `uncheckedShiftL#` 8#) `or#` low)
+        high = int2Word# (ord# (indexCharOffAddr# arr (off' +# 1#)))
+        low  = int2Word# (ord# (indexCharOffAddr# arr off'))
+        off' = off *# 2#
+#else
+  indexInt16OffAddr# arr off
+#endif
+
+
+
+
+
+{-# INLINE alexIndexInt32OffAddr #-}
+alexIndexInt32OffAddr (AlexA# arr) off = 
+#ifdef WORDS_BIGENDIAN
+  narrow32Int# i
+  where
+   i    = word2Int# ((b3 `uncheckedShiftL#` 24#) `or#`
+		     (b2 `uncheckedShiftL#` 16#) `or#`
+		     (b1 `uncheckedShiftL#` 8#) `or#` b0)
+   b3   = int2Word# (ord# (indexCharOffAddr# arr (off' +# 3#)))
+   b2   = int2Word# (ord# (indexCharOffAddr# arr (off' +# 2#)))
+   b1   = int2Word# (ord# (indexCharOffAddr# arr (off' +# 1#)))
+   b0   = int2Word# (ord# (indexCharOffAddr# arr off'))
+   off' = off *# 4#
+#else
+  indexInt32OffAddr# arr off
+#endif
+
+
+
+
+
+#if __GLASGOW_HASKELL__ < 503
+quickIndex arr i = arr ! i
+#else
+-- GHC >= 503, unsafeAt is available from Data.Array.Base.
+quickIndex = unsafeAt
+#endif
+
+
+
+
+-- -----------------------------------------------------------------------------
+-- Main lexing routines
+
+data AlexReturn a
+  = AlexEOF
+  | AlexError  !AlexInput
+  | AlexSkip   !AlexInput !Int
+  | AlexToken  !AlexInput !Int a
+
+-- alexScan :: AlexInput -> StartCode -> AlexReturn a
+alexScan input (I# (sc))
+  = alexScanUser undefined input (I# (sc))
+
+alexScanUser user input (I# (sc))
+  = case alex_scan_tkn user input 0# input sc AlexNone of
+	(AlexNone, input') ->
+		case alexGetByte input of
+			Nothing -> 
+
+
+
+				   AlexEOF
+			Just _ ->
+
+
+
+				   AlexError input'
+
+	(AlexLastSkip input'' len, _) ->
+
+
+
+		AlexSkip input'' len
+
+	(AlexLastAcc k input''' len, _) ->
+
+
+
+		AlexToken input''' len k
+
+
+-- Push the input through the DFA, remembering the most recent accepting
+-- state it encountered.
+
+alex_scan_tkn user orig_input len input s last_acc =
+  input `seq` -- strict in the input
+  let 
+	new_acc = (check_accs (alex_accept `quickIndex` (I# (s))))
+  in
+  new_acc `seq`
+  case alexGetByte input of
+     Nothing -> (new_acc, input)
+     Just (c, new_input) -> 
+
+
+
+      case fromIntegral c of { (I# (ord_c)) ->
+        let
+                base   = alexIndexInt32OffAddr alex_base s
+                offset = (base +# ord_c)
+                check  = alexIndexInt16OffAddr alex_check offset
+		
+                new_s = if (offset >=# 0#) && (check ==# ord_c)
+			  then alexIndexInt16OffAddr alex_table offset
+			  else alexIndexInt16OffAddr alex_deflt s
+	in
+        case new_s of
+	    -1# -> (new_acc, input)
+		-- on an error, we want to keep the input *before* the
+		-- character that failed, not after.
+    	    _ -> alex_scan_tkn user orig_input (if c < 0x80 || c >= 0xC0 then (len +# 1#) else len)
+                                                -- note that the length is increased ONLY if this is the 1st byte in a char encoding)
+			new_input new_s new_acc
+      }
+  where
+	check_accs (AlexAccNone) = last_acc
+	check_accs (AlexAcc a  ) = AlexLastAcc a input (I# (len))
+	check_accs (AlexAccSkip) = AlexLastSkip  input (I# (len))
+{-# LINE 191 "templates/GenericTemplate.hs" #-}
+
+data AlexLastAcc a
+  = AlexNone
+  | AlexLastAcc a !AlexInput !Int
+  | AlexLastSkip  !AlexInput !Int
+
+instance Functor AlexLastAcc where
+    fmap f AlexNone = AlexNone
+    fmap f (AlexLastAcc x y z) = AlexLastAcc (f x) y z
+    fmap f (AlexLastSkip x y) = AlexLastSkip x y
+
+data AlexAcc a user
+  = AlexAccNone
+  | AlexAcc a
+  | AlexAccSkip
+{-# LINE 235 "templates/GenericTemplate.hs" #-}
+
+-- used by wrappers
+iUnbox (I# (i)) = i
diff --git a/dist/build/parinfer/parinfer-tmp/Parse.hs b/dist/build/parinfer/parinfer-tmp/Parse.hs
new file mode 100644
--- /dev/null
+++ b/dist/build/parinfer/parinfer-tmp/Parse.hs
@@ -0,0 +1,562 @@
+{-# OPTIONS_GHC -w #-}
+{-# OPTIONS -fglasgow-exts -cpp #-}
+module Parse where
+import Lex
+import Term
+import qualified Data.Array as Happy_Data_Array
+import qualified GHC.Exts as Happy_GHC_Exts
+
+-- parser produced by Happy Version 1.18.9
+
+newtype HappyAbsSyn t8 t9 t10 t11 = HappyAbsSyn HappyAny
+#if __GLASGOW_HASKELL__ >= 607
+type HappyAny = Happy_GHC_Exts.Any
+#else
+type HappyAny = forall a . a
+#endif
+happyIn5 :: ([(VarId,Term)]) -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn5 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn5 #-}
+happyOut5 :: (HappyAbsSyn t8 t9 t10 t11) -> ([(VarId,Term)])
+happyOut5 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut5 #-}
+happyIn6 :: ((VarId,Term)) -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn6 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn6 #-}
+happyOut6 :: (HappyAbsSyn t8 t9 t10 t11) -> ((VarId,Term))
+happyOut6 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut6 #-}
+happyIn7 :: (Term) -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn7 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn7 #-}
+happyOut7 :: (HappyAbsSyn t8 t9 t10 t11) -> (Term)
+happyOut7 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut7 #-}
+happyIn8 :: t8 -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn8 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn8 #-}
+happyOut8 :: (HappyAbsSyn t8 t9 t10 t11) -> t8
+happyOut8 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut8 #-}
+happyIn9 :: t9 -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn9 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn9 #-}
+happyOut9 :: (HappyAbsSyn t8 t9 t10 t11) -> t9
+happyOut9 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut9 #-}
+happyIn10 :: t10 -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn10 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn10 #-}
+happyOut10 :: (HappyAbsSyn t8 t9 t10 t11) -> t10
+happyOut10 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut10 #-}
+happyIn11 :: t11 -> (HappyAbsSyn t8 t9 t10 t11)
+happyIn11 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyIn11 #-}
+happyOut11 :: (HappyAbsSyn t8 t9 t10 t11) -> t11
+happyOut11 x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOut11 #-}
+happyInTok :: (Token) -> (HappyAbsSyn t8 t9 t10 t11)
+happyInTok x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyInTok #-}
+happyOutTok :: (HappyAbsSyn t8 t9 t10 t11) -> (Token)
+happyOutTok x = Happy_GHC_Exts.unsafeCoerce# x
+{-# INLINE happyOutTok #-}
+
+
+happyActOffsets :: HappyAddr
+happyActOffsets = HappyA# "\x01\x00\x40\x00\x00\x00\x36\x00\x3e\x00\x3d\x00\x32\x00\x34\x00\x30\x00\x04\x00\x00\x00\x3c\x00\x00\x00\x00\x00\x01\x00\x39\x00\x3a\x00\xfa\xff\x38\x00\x00\x00\x04\x00\x04\x00\x04\x00\x04\x00\x01\x00\x00\x00\xf5\xff\x30\x00\x30\x00\x04\x00\x04\x00\x01\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x01\x00\x00\x00\x00\x00"#
+
+happyGotoOffsets :: HappyAddr
+happyGotoOffsets = HappyA# "\x27\x00\x37\x00\x00\x00\x00\x00\x35\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfb\xff\x00\x00\x00\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x00\x2c\x00\x2a\x00\x05\x00\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfb\xff\xfb\xff\x18\x00\x00\x00\x13\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00"#
+
+happyDefActions :: HappyAddr
+happyDefActions = HappyA# "\x00\x00\xfd\xff\x00\x00\x00\x00\xfd\xff\x00\x00\x00\x00\xf8\xff\xf5\xff\xf2\xff\xf0\xff\x00\x00\xef\xff\xee\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf1\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\xff\x00\x00\xf6\xff\xf7\xff\xf3\xff\xf4\xff\x00\x00\xed\xff\x00\x00\xf9\xff\x00\x00\xfb\xff\x00\x00\xfa\xff"#
+
+happyCheck :: HappyAddr
+happyCheck = HappyA# "\xff\xff\x06\x00\x01\x00\x0e\x00\x03\x00\x04\x00\x0c\x00\x03\x00\x04\x00\x04\x00\x05\x00\x06\x00\x0b\x00\x02\x00\x0d\x00\x0b\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x02\x00\x03\x00\x04\x00\x05\x00\x06\x00\x04\x00\x05\x00\x06\x00\x05\x00\x06\x00\x05\x00\x06\x00\x00\x00\x01\x00\x00\x00\x01\x00\x09\x00\x0a\x00\x07\x00\x08\x00\x04\x00\x06\x00\x05\x00\x04\x00\x0f\x00\x04\x00\x06\x00\x04\x00\x0f\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"#
+
+happyTable :: HappyAddr
+happyTable = HappyA# "\x00\x00\x13\x00\x0c\x00\x25\x00\x0d\x00\x0e\x00\x21\x00\x0d\x00\x0e\x00\x1b\x00\x09\x00\x0a\x00\x0f\x00\x26\x00\x10\x00\x0f\x00\x26\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x22\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x23\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x1a\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x11\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x06\x00\x07\x00\x08\x00\x09\x00\x0a\x00\x1c\x00\x09\x00\x0a\x00\x1d\x00\x0a\x00\x1e\x00\x0a\x00\x19\x00\x04\x00\x03\x00\x04\x00\x15\x00\x16\x00\x17\x00\x18\x00\x11\x00\x20\x00\x22\x00\x13\x00\xff\xff\x06\x00\x19\x00\x06\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"#
+
+happyReduceArr = Happy_Data_Array.array (2, 18) [
+	(2 , happyReduce_2),
+	(3 , happyReduce_3),
+	(4 , happyReduce_4),
+	(5 , happyReduce_5),
+	(6 , happyReduce_6),
+	(7 , happyReduce_7),
+	(8 , happyReduce_8),
+	(9 , happyReduce_9),
+	(10 , happyReduce_10),
+	(11 , happyReduce_11),
+	(12 , happyReduce_12),
+	(13 , happyReduce_13),
+	(14 , happyReduce_14),
+	(15 , happyReduce_15),
+	(16 , happyReduce_16),
+	(17 , happyReduce_17),
+	(18 , happyReduce_18)
+	]
+
+happy_n_terms = 16 :: Int
+happy_n_nonterms = 7 :: Int
+
+happyReduce_2 = happySpecReduce_0  0# happyReduction_2
+happyReduction_2  =  happyIn5
+		 ([]
+	)
+
+happyReduce_3 = happySpecReduce_2  0# happyReduction_3
+happyReduction_3 happy_x_2
+	happy_x_1
+	 =  case happyOut6 happy_x_1 of { happy_var_1 -> 
+	case happyOut5 happy_x_2 of { happy_var_2 -> 
+	happyIn5
+		 (happy_var_1 : happy_var_2
+	)}}
+
+happyReduce_4 = happyReduce 4# 1# happyReduction_4
+happyReduction_4 (happy_x_4 `HappyStk`
+	happy_x_3 `HappyStk`
+	happy_x_2 `HappyStk`
+	happy_x_1 `HappyStk`
+	happyRest)
+	 = case happyOutTok happy_x_1 of { (TVar happy_var_1) -> 
+	case happyOut7 happy_x_3 of { happy_var_3 -> 
+	happyIn6
+		 ((happy_var_1,happy_var_3)
+	) `HappyStk` happyRest}}
+
+happyReduce_5 = happyReduce 6# 2# happyReduction_5
+happyReduction_5 (happy_x_6 `HappyStk`
+	happy_x_5 `HappyStk`
+	happy_x_4 `HappyStk`
+	happy_x_3 `HappyStk`
+	happy_x_2 `HappyStk`
+	happy_x_1 `HappyStk`
+	happyRest)
+	 = case happyOutTok happy_x_2 of { (TVar happy_var_2) -> 
+	case happyOut7 happy_x_4 of { happy_var_4 -> 
+	case happyOut7 happy_x_6 of { happy_var_6 -> 
+	happyIn7
+		 (Let happy_var_2 happy_var_4 happy_var_6
+	) `HappyStk` happyRest}}}
+
+happyReduce_6 = happyReduce 4# 2# happyReduction_6
+happyReduction_6 (happy_x_4 `HappyStk`
+	happy_x_3 `HappyStk`
+	happy_x_2 `HappyStk`
+	happy_x_1 `HappyStk`
+	happyRest)
+	 = case happyOutTok happy_x_2 of { (TVar happy_var_2) -> 
+	case happyOut7 happy_x_4 of { happy_var_4 -> 
+	happyIn7
+		 (Abs happy_var_2 happy_var_4
+	) `HappyStk` happyRest}}
+
+happyReduce_7 = happySpecReduce_1  2# happyReduction_7
+happyReduction_7 happy_x_1
+	 =  case happyOut8 happy_x_1 of { happy_var_1 -> 
+	happyIn7
+		 (happy_var_1
+	)}
+
+happyReduce_8 = happySpecReduce_3  3# happyReduction_8
+happyReduction_8 happy_x_3
+	happy_x_2
+	happy_x_1
+	 =  case happyOut8 happy_x_1 of { happy_var_1 -> 
+	case happyOut9 happy_x_3 of { happy_var_3 -> 
+	happyIn8
+		 (App (App (Var "+") happy_var_1) happy_var_3
+	)}}
+
+happyReduce_9 = happySpecReduce_3  3# happyReduction_9
+happyReduction_9 happy_x_3
+	happy_x_2
+	happy_x_1
+	 =  case happyOut8 happy_x_1 of { happy_var_1 -> 
+	case happyOut9 happy_x_3 of { happy_var_3 -> 
+	happyIn8
+		 (App (App (Var "-") happy_var_1) happy_var_3
+	)}}
+
+happyReduce_10 = happySpecReduce_1  3# happyReduction_10
+happyReduction_10 happy_x_1
+	 =  case happyOut9 happy_x_1 of { happy_var_1 -> 
+	happyIn8
+		 (happy_var_1
+	)}
+
+happyReduce_11 = happySpecReduce_3  4# happyReduction_11
+happyReduction_11 happy_x_3
+	happy_x_2
+	happy_x_1
+	 =  case happyOut9 happy_x_1 of { happy_var_1 -> 
+	case happyOut10 happy_x_3 of { happy_var_3 -> 
+	happyIn9
+		 (App (App (Var "*") happy_var_1) happy_var_3
+	)}}
+
+happyReduce_12 = happySpecReduce_3  4# happyReduction_12
+happyReduction_12 happy_x_3
+	happy_x_2
+	happy_x_1
+	 =  case happyOut9 happy_x_1 of { happy_var_1 -> 
+	case happyOut10 happy_x_3 of { happy_var_3 -> 
+	happyIn9
+		 (App (App (Var "/") happy_var_1) happy_var_3
+	)}}
+
+happyReduce_13 = happySpecReduce_1  4# happyReduction_13
+happyReduction_13 happy_x_1
+	 =  case happyOut10 happy_x_1 of { happy_var_1 -> 
+	happyIn9
+		 (happy_var_1
+	)}
+
+happyReduce_14 = happySpecReduce_2  5# happyReduction_14
+happyReduction_14 happy_x_2
+	happy_x_1
+	 =  case happyOut10 happy_x_1 of { happy_var_1 -> 
+	case happyOut11 happy_x_2 of { happy_var_2 -> 
+	happyIn10
+		 (App happy_var_1 happy_var_2
+	)}}
+
+happyReduce_15 = happySpecReduce_1  5# happyReduction_15
+happyReduction_15 happy_x_1
+	 =  case happyOut11 happy_x_1 of { happy_var_1 -> 
+	happyIn10
+		 (happy_var_1
+	)}
+
+happyReduce_16 = happySpecReduce_1  6# happyReduction_16
+happyReduction_16 happy_x_1
+	 =  case happyOutTok happy_x_1 of { (TInt happy_var_1) -> 
+	happyIn11
+		 (Int happy_var_1
+	)}
+
+happyReduce_17 = happySpecReduce_1  6# happyReduction_17
+happyReduction_17 happy_x_1
+	 =  case happyOutTok happy_x_1 of { (TVar happy_var_1) -> 
+	happyIn11
+		 (Var happy_var_1
+	)}
+
+happyReduce_18 = happySpecReduce_3  6# happyReduction_18
+happyReduction_18 happy_x_3
+	happy_x_2
+	happy_x_1
+	 =  case happyOut7 happy_x_2 of { happy_var_2 -> 
+	happyIn11
+		 (happy_var_2
+	)}
+
+happyNewToken action sts stk [] =
+	happyDoAction 15# notHappyAtAll action sts stk []
+
+happyNewToken action sts stk (tk:tks) =
+	let cont i = happyDoAction i tk action sts stk tks in
+	case tk of {
+	TLet -> cont 1#;
+	TIn -> cont 2#;
+	TInt happy_dollar_dollar -> cont 3#;
+	TVar happy_dollar_dollar -> cont 4#;
+	TArrow -> cont 5#;
+	TSym '=' -> cont 6#;
+	TSym '+' -> cont 7#;
+	TSym '-' -> cont 8#;
+	TSym '*' -> cont 9#;
+	TSym '/' -> cont 10#;
+	TSym '(' -> cont 11#;
+	TSym ')' -> cont 12#;
+	TSym '\\' -> cont 13#;
+	TSym ';' -> cont 14#;
+	_ -> happyError' (tk:tks)
+	}
+
+happyError_ 15# tk tks = happyError' tks
+happyError_ _ tk tks = happyError' (tk:tks)
+
+happyThen :: () => Either String a -> (a -> Either String b) -> Either String b
+happyThen = (>>=)
+happyReturn :: () => a -> Either String a
+happyReturn = (return)
+happyThen1 m k tks = (>>=) m (\a -> k a tks)
+happyReturn1 :: () => a -> b -> Either String a
+happyReturn1 = \a tks -> (return) a
+happyError' :: () => [(Token)] -> Either String a
+happyError' = happyError
+
+parseExp tks = happySomeParser where
+  happySomeParser = happyThen (happyParse 0# tks) (\x -> happyReturn (happyOut7 x))
+
+parseBinds tks = happySomeParser where
+  happySomeParser = happyThen (happyParse 1# tks) (\x -> happyReturn (happyOut5 x))
+
+happySeq = happyDontSeq
+
+
+happyError :: [Token] -> Either String a
+happyError [] = Left "Parse error at end of input"
+happyError (tk:tks) = Left ("Parse error before " ++ show tk)
+{-# LINE 1 "templates/GenericTemplate.hs" #-}
+{-# LINE 1 "templates/GenericTemplate.hs" #-}
+{-# LINE 1 "<built-in>" #-}
+{-# LINE 1 "<command-line>" #-}
+{-# LINE 1 "templates/GenericTemplate.hs" #-}
+-- Id: GenericTemplate.hs,v 1.26 2005/01/14 14:47:22 simonmar Exp 
+
+{-# LINE 30 "templates/GenericTemplate.hs" #-}
+
+
+data Happy_IntList = HappyCons Happy_GHC_Exts.Int# Happy_IntList
+
+
+
+
+
+{-# LINE 51 "templates/GenericTemplate.hs" #-}
+
+{-# LINE 61 "templates/GenericTemplate.hs" #-}
+
+{-# LINE 70 "templates/GenericTemplate.hs" #-}
+
+infixr 9 `HappyStk`
+data HappyStk a = HappyStk a (HappyStk a)
+
+-----------------------------------------------------------------------------
+-- starting the parse
+
+happyParse start_state = happyNewToken start_state notHappyAtAll notHappyAtAll
+
+-----------------------------------------------------------------------------
+-- Accepting the parse
+
+-- If the current token is 0#, it means we've just accepted a partial
+-- parse (a %partial parser).  We must ignore the saved token on the top of
+-- the stack in this case.
+happyAccept 0# tk st sts (_ `HappyStk` ans `HappyStk` _) =
+	happyReturn1 ans
+happyAccept j tk st sts (HappyStk ans _) = 
+	(happyTcHack j (happyTcHack st)) (happyReturn1 ans)
+
+-----------------------------------------------------------------------------
+-- Arrays only: do the next action
+
+
+
+happyDoAction i tk st
+	= {- nothing -}
+
+
+	  case action of
+		0#		  -> {- nothing -}
+				     happyFail i tk st
+		-1# 	  -> {- nothing -}
+				     happyAccept i tk st
+		n | (n Happy_GHC_Exts.<# (0# :: Happy_GHC_Exts.Int#)) -> {- nothing -}
+
+				     (happyReduceArr Happy_Data_Array.! rule) i tk st
+				     where rule = (Happy_GHC_Exts.I# ((Happy_GHC_Exts.negateInt# ((n Happy_GHC_Exts.+# (1# :: Happy_GHC_Exts.Int#))))))
+		n		  -> {- nothing -}
+
+
+				     happyShift new_state i tk st
+				     where (new_state) = (n Happy_GHC_Exts.-# (1# :: Happy_GHC_Exts.Int#))
+   where (off)    = indexShortOffAddr happyActOffsets st
+         (off_i)  = (off Happy_GHC_Exts.+# i)
+	 check  = if (off_i Happy_GHC_Exts.>=# (0# :: Happy_GHC_Exts.Int#))
+			then (indexShortOffAddr happyCheck off_i Happy_GHC_Exts.==#  i)
+			else False
+         (action)
+          | check     = indexShortOffAddr happyTable off_i
+          | otherwise = indexShortOffAddr happyDefActions st
+
+{-# LINE 130 "templates/GenericTemplate.hs" #-}
+
+
+indexShortOffAddr (HappyA# arr) off =
+	Happy_GHC_Exts.narrow16Int# i
+  where
+        i = Happy_GHC_Exts.word2Int# (Happy_GHC_Exts.or# (Happy_GHC_Exts.uncheckedShiftL# high 8#) low)
+        high = Happy_GHC_Exts.int2Word# (Happy_GHC_Exts.ord# (Happy_GHC_Exts.indexCharOffAddr# arr (off' Happy_GHC_Exts.+# 1#)))
+        low  = Happy_GHC_Exts.int2Word# (Happy_GHC_Exts.ord# (Happy_GHC_Exts.indexCharOffAddr# arr off'))
+        off' = off Happy_GHC_Exts.*# 2#
+
+
+
+
+
+data HappyAddr = HappyA# Happy_GHC_Exts.Addr#
+
+
+
+
+-----------------------------------------------------------------------------
+-- HappyState data type (not arrays)
+
+{-# LINE 163 "templates/GenericTemplate.hs" #-}
+
+-----------------------------------------------------------------------------
+-- Shifting a token
+
+happyShift new_state 0# tk st sts stk@(x `HappyStk` _) =
+     let (i) = (case Happy_GHC_Exts.unsafeCoerce# x of { (Happy_GHC_Exts.I# (i)) -> i }) in
+--     trace "shifting the error token" $
+     happyDoAction i tk new_state (HappyCons (st) (sts)) (stk)
+
+happyShift new_state i tk st sts stk =
+     happyNewToken new_state (HappyCons (st) (sts)) ((happyInTok (tk))`HappyStk`stk)
+
+-- happyReduce is specialised for the common cases.
+
+happySpecReduce_0 i fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happySpecReduce_0 nt fn j tk st@((action)) sts stk
+     = happyGoto nt j tk st (HappyCons (st) (sts)) (fn `HappyStk` stk)
+
+happySpecReduce_1 i fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happySpecReduce_1 nt fn j tk _ sts@((HappyCons (st@(action)) (_))) (v1`HappyStk`stk')
+     = let r = fn v1 in
+       happySeq r (happyGoto nt j tk st sts (r `HappyStk` stk'))
+
+happySpecReduce_2 i fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happySpecReduce_2 nt fn j tk _ (HappyCons (_) (sts@((HappyCons (st@(action)) (_))))) (v1`HappyStk`v2`HappyStk`stk')
+     = let r = fn v1 v2 in
+       happySeq r (happyGoto nt j tk st sts (r `HappyStk` stk'))
+
+happySpecReduce_3 i fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happySpecReduce_3 nt fn j tk _ (HappyCons (_) ((HappyCons (_) (sts@((HappyCons (st@(action)) (_))))))) (v1`HappyStk`v2`HappyStk`v3`HappyStk`stk')
+     = let r = fn v1 v2 v3 in
+       happySeq r (happyGoto nt j tk st sts (r `HappyStk` stk'))
+
+happyReduce k i fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happyReduce k nt fn j tk st sts stk
+     = case happyDrop (k Happy_GHC_Exts.-# (1# :: Happy_GHC_Exts.Int#)) sts of
+	 sts1@((HappyCons (st1@(action)) (_))) ->
+        	let r = fn stk in  -- it doesn't hurt to always seq here...
+       		happyDoSeq r (happyGoto nt j tk st1 sts1 r)
+
+happyMonadReduce k nt fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happyMonadReduce k nt fn j tk st sts stk =
+        happyThen1 (fn stk tk) (\r -> happyGoto nt j tk st1 sts1 (r `HappyStk` drop_stk))
+       where (sts1@((HappyCons (st1@(action)) (_)))) = happyDrop k (HappyCons (st) (sts))
+             drop_stk = happyDropStk k stk
+
+happyMonad2Reduce k nt fn 0# tk st sts stk
+     = happyFail 0# tk st sts stk
+happyMonad2Reduce k nt fn j tk st sts stk =
+       happyThen1 (fn stk tk) (\r -> happyNewToken new_state sts1 (r `HappyStk` drop_stk))
+       where (sts1@((HappyCons (st1@(action)) (_)))) = happyDrop k (HappyCons (st) (sts))
+             drop_stk = happyDropStk k stk
+
+             (off) = indexShortOffAddr happyGotoOffsets st1
+             (off_i) = (off Happy_GHC_Exts.+# nt)
+             (new_state) = indexShortOffAddr happyTable off_i
+
+
+
+
+happyDrop 0# l = l
+happyDrop n (HappyCons (_) (t)) = happyDrop (n Happy_GHC_Exts.-# (1# :: Happy_GHC_Exts.Int#)) t
+
+happyDropStk 0# l = l
+happyDropStk n (x `HappyStk` xs) = happyDropStk (n Happy_GHC_Exts.-# (1#::Happy_GHC_Exts.Int#)) xs
+
+-----------------------------------------------------------------------------
+-- Moving to a new state after a reduction
+
+
+happyGoto nt j tk st = 
+   {- nothing -}
+   happyDoAction j tk new_state
+   where (off) = indexShortOffAddr happyGotoOffsets st
+         (off_i) = (off Happy_GHC_Exts.+# nt)
+         (new_state) = indexShortOffAddr happyTable off_i
+
+
+
+
+-----------------------------------------------------------------------------
+-- Error recovery (0# is the error token)
+
+-- parse error if we are in recovery and we fail again
+happyFail 0# tk old_st _ stk@(x `HappyStk` _) =
+     let (i) = (case Happy_GHC_Exts.unsafeCoerce# x of { (Happy_GHC_Exts.I# (i)) -> i }) in
+--	trace "failing" $ 
+        happyError_ i tk
+
+{-  We don't need state discarding for our restricted implementation of
+    "error".  In fact, it can cause some bogus parses, so I've disabled it
+    for now --SDM
+
+-- discard a state
+happyFail  0# tk old_st (HappyCons ((action)) (sts)) 
+						(saved_tok `HappyStk` _ `HappyStk` stk) =
+--	trace ("discarding state, depth " ++ show (length stk))  $
+	happyDoAction 0# tk action sts ((saved_tok`HappyStk`stk))
+-}
+
+-- Enter error recovery: generate an error token,
+--                       save the old token and carry on.
+happyFail  i tk (action) sts stk =
+--      trace "entering error recovery" $
+	happyDoAction 0# tk action sts ( (Happy_GHC_Exts.unsafeCoerce# (Happy_GHC_Exts.I# (i))) `HappyStk` stk)
+
+-- Internal happy errors:
+
+notHappyAtAll :: a
+notHappyAtAll = error "Internal Happy error\n"
+
+-----------------------------------------------------------------------------
+-- Hack to get the typechecker to accept our action functions
+
+
+happyTcHack :: Happy_GHC_Exts.Int# -> a -> a
+happyTcHack x y = y
+{-# INLINE happyTcHack #-}
+
+
+-----------------------------------------------------------------------------
+-- Seq-ing.  If the --strict flag is given, then Happy emits 
+--	happySeq = happyDoSeq
+-- otherwise it emits
+-- 	happySeq = happyDontSeq
+
+happyDoSeq, happyDontSeq :: a -> b -> b
+happyDoSeq   a b = a `seq` b
+happyDontSeq a b = b
+
+-----------------------------------------------------------------------------
+-- Don't inline any functions from the template.  GHC has a nasty habit
+-- of deciding to inline happyGoto everywhere, which increases the size of
+-- the generated parser quite a bit.
+
+
+{-# NOINLINE happyDoAction #-}
+{-# NOINLINE happyTable #-}
+{-# NOINLINE happyCheck #-}
+{-# NOINLINE happyActOffsets #-}
+{-# NOINLINE happyGotoOffsets #-}
+{-# NOINLINE happyDefActions #-}
+
+{-# NOINLINE happyShift #-}
+{-# NOINLINE happySpecReduce_0 #-}
+{-# NOINLINE happySpecReduce_1 #-}
+{-# NOINLINE happySpecReduce_2 #-}
+{-# NOINLINE happySpecReduce_3 #-}
+{-# NOINLINE happyReduce #-}
+{-# NOINLINE happyMonadReduce #-}
+{-# NOINLINE happyGoto #-}
+{-# NOINLINE happyFail #-}
+
+-- end of Happy Template.
diff --git a/distrib-db/DatabaseSample.hs b/distrib-db/DatabaseSample.hs
new file mode 100644
--- /dev/null
+++ b/distrib-db/DatabaseSample.hs
@@ -0,0 +1,86 @@
+{-# LANGUAGE TemplateHaskell, DeriveDataTypeable, OverloadedStrings,
+    DeriveGeneric #-}
+module DatabaseSample (
+       Database,
+       createDB,
+       get, set,
+       rcdata,
+  ) where
+
+import Control.Distributed.Process
+import Control.Distributed.Process.Closure
+
+import Control.Monad.IO.Class
+import Control.Monad
+import Text.Printf
+import Control.Concurrent hiding (newChan)
+import GHC.Generics (Generic)
+import qualified Data.Binary
+import Data.Typeable
+import System.IO.Error hiding (catch)
+import Data.Char
+
+import qualified Data.Map as Map
+import Data.Map (Map)
+
+import WorkerSample
+
+import Prelude hiding (catch)
+import Control.Exception hiding (catch)
+
+dbProc :: [NodeId] -> Process ()
+dbProc peers = do
+
+  ps <- forM peers $ \nid -> do
+          say $ printf "spawning on %s" (show nid)
+          spawn nid $(mkStaticClosure 'worker)
+
+  when (null ps) $ liftIO $ ioError (userError "no workers")
+
+  mapM_ monitor ps
+
+  -- group the workers:
+  let pairs [] = []
+      pairs (a:b:xs) = [a,b] : pairs xs
+      pairs [x] = []
+        -- don't use the last node if we have an odd number
+
+      worker_pairs = pairs ps
+      n_slices = length worker_pairs
+
+  loop worker_pairs n_slices
+
+
+loop :: [[ProcessId]] -> Int -> Process ()
+loop worker_pairs n_slices
+ = receiveWait
+        [ match $ \req -> handleRequest req >> loop worker_pairs n_slices
+        , match $ \(ProcessMonitorNotification _ pid reason) -> do
+            say (printf "process %s died: %s" (show pid) (show reason))
+            loop (map (filter (/= pid)) worker_pairs) n_slices
+        ]
+ where
+    workersForKey :: Key -> [ProcessId]
+    workersForKey k = worker_pairs !! (ord (head k) `mod` n_slices)
+
+    handleRequest :: Request -> Process ()
+    handleRequest r =
+      case r of
+        Set k _ -> mapM_ (! r) (workersForKey k)
+        Get k _ -> mapM_ (! r) (workersForKey k)
+
+type Database = ProcessId
+
+createDB :: [NodeId] -> Process Database
+createDB peers = spawnLocal (dbProc peers)
+
+set :: Database -> Key -> Value -> Process ()
+set db k v = db ! Set k v
+
+get :: Database -> Key -> Process (Maybe Value)
+get db k = do
+  (s,r) <- newChan
+  db ! Get k s
+  receiveChan r
+
+rcdata = WorkerSample.__remoteTable
diff --git a/distrib-db/WorkerSample.hs b/distrib-db/WorkerSample.hs
new file mode 100644
--- /dev/null
+++ b/distrib-db/WorkerSample.hs
@@ -0,0 +1,51 @@
+{-# LANGUAGE TemplateHaskell, DeriveDataTypeable, MultiParamTypeClasses,
+     FlexibleInstances, DeriveGeneric  #-}
+module WorkerSample where
+
+import Control.Distributed.Process
+import Control.Distributed.Process.Serializable
+import Control.Distributed.Process.Closure
+
+import Control.Monad.IO.Class
+import Control.Monad
+import Text.Printf
+import Control.Concurrent
+import GHC.Generics (Generic)
+import Data.Binary
+import Data.Typeable
+
+import qualified Data.Map as Map
+import Data.Map (Map)
+
+class Send c a where
+   (!) :: Serializable a => c -> a -> Process ()
+
+instance Send ProcessId a where
+   (!) = send
+
+instance Send (SendPort a) a where
+   (!) = sendChan
+
+type Key   = String -- should really use ByteString
+type Value = String
+
+data Request
+  = Set Key Value
+  | Get Key (SendPort (Maybe Value))
+  deriving (Typeable, Generic)
+
+instance Binary Request
+
+worker :: Process ()
+worker = go Map.empty
+  where
+  go store = do
+    r <- expect
+    case r of
+      Set k v ->
+        go (Map.insert k v store)
+      Get k port -> do
+        port ! (Map.lookup k store)
+        go store
+
+remotable ['worker]
diff --git a/findpar5.hs b/findpar5.hs
new file mode 100644
--- /dev/null
+++ b/findpar5.hs
@@ -0,0 +1,90 @@
+{-# LANGUAGE GeneralizedNewtypeDeriving #-}
+import System.Directory
+import Control.Concurrent
+import System.FilePath
+import System.Environment
+import Data.List hiding (find)
+import GHC.Conc (getNumCapabilities)
+import Text.Printf
+
+import qualified Control.Monad.Par as P hiding (runParIO)
+import Control.Monad.Par.IO
+import Control.Monad.IO.Class
+
+import Control.Exception
+
+main = do
+  [s,d] <- getArgs
+  n <- getNumCapabilities
+  runParIO (unE (find s d)) >>= print
+
+-- <<find
+find :: String -> FilePath -> EParIO (Maybe FilePath)
+find s d = do
+  fs <- liftIO $ getDirectoryContents d
+  let fs' = sort $ filter (`notElem` [".",".."]) fs
+  if any (== s) fs'
+     then return (Just (d </> s))
+     else do
+       let ps = map (d </>) fs'         -- <1>
+       foldr (subfind s) dowait ps []   -- <2>
+ where
+   dowait as = loop (reverse as)        -- <3>
+
+   loop [] = return Nothing
+   loop (a:as) = do                     -- <4>
+      r <- get a                        -- <5>
+      case r of
+        Nothing -> loop as              -- <6>
+        Just a  -> return (Just a)      -- <7>
+-- >>
+
+-- <<subfind
+subfind :: String -> FilePath
+        -> ([EVar (Maybe FilePath)] -> EParIO (Maybe FilePath))
+        ->  [EVar (Maybe FilePath)] -> EParIO (Maybe FilePath)
+
+subfind s p inner asyncs = do
+  isdir <- liftIO $ doesDirectoryExist p
+  if not isdir
+     then inner asyncs
+     else do r <- new
+             liftPar $ P.fork (putResult (find s p) r)
+             inner (r : asyncs)
+-- >>
+
+-- An exception-handling version of the ParIO monad.  Exceptions from
+-- IO computations are caught in liftIO, and propagated in the EParIO
+-- monad.  An EVar is like an IVar, but can also contain an exception,
+-- which is propagated by 'get'.  Instead of 'put' we have
+-- 'putResult', which runs an EParIO and puts the result (or an
+-- exception) into an EVar.
+--
+
+newtype EParIO a = E { unE :: ParIO (Either SomeException a) }
+
+instance Monad EParIO where
+  return a = E (return (Right a))
+  E m >>= k = E $ do
+    r <- m
+    case r of
+      Left e -> return (Left e)
+      Right a -> unE (k a)
+
+instance MonadIO EParIO where
+  liftIO io = E $ liftIO (try io)
+
+liftPar :: ParIO a -> EParIO a
+liftPar p = E $ p >>= return . Right
+
+type EVar a = IVar (Either SomeException a)
+
+new :: EParIO (EVar a)
+new = liftPar P.new
+
+get :: EVar a -> EParIO a
+get evar = E $ P.get evar
+
+putResult :: EParIO a -> EVar a -> ParIO ()
+putResult (E e) var = do e >>= P.put_ var
+
diff --git a/fwaccel-gpu.hs b/fwaccel-gpu.hs
new file mode 100644
--- /dev/null
+++ b/fwaccel-gpu.hs
@@ -0,0 +1,96 @@
+{-# LANGUAGE CPP, BangPatterns #-}
+{-# OPTIONS_GHC -Wall -fno-warn-name-shadowing #-}
+
+module Main ( main, test {-, maxDistances -} ) where
+
+import Prelude
+import System.Environment
+import Data.Array.Accelerate as A
+import Data.Array.Accelerate.CUDA
+
+-- <<Graph
+type Weight = Int32
+type Graph = Array DIM2 Weight
+-- >>
+
+-- -----------------------------------------------------------------------------
+-- shortestPaths
+
+-- <<shortestPaths
+shortestPaths :: Graph -> Graph
+shortestPaths g0 = run (shortestPathsAcc n (use g0))
+  where
+    Z :. _ :. n = arrayShape g0
+-- >>
+
+-- <<shortestPathsAcc
+shortestPathsAcc :: Int -> Acc Graph -> Acc Graph
+shortestPathsAcc n g0 = foldl1 (>->) steps g0              -- <3>
+ where
+  steps :: [ Acc Graph -> Acc Graph ]                      -- <1>
+  steps =  [ step (unit (constant k)) | k <- [0 .. n-1] ]  -- <2>
+-- >>
+
+-- <<step
+step :: Acc (Scalar Int) -> Acc Graph -> Acc Graph
+step k g = generate (shape g) sp                           -- <1>
+ where
+   k' = the k                                              -- <2>
+
+   sp :: Exp DIM2 -> Exp Weight
+   sp ix = let
+             (Z :. i :. j) = unlift ix                     -- <3>
+           in
+             A.min (g ! (index2 i j))                      -- <4>
+                   (g ! (index2 i k') + g ! (index2 k' j))
+-- >>
+
+-- -----------------------------------------------------------------------------
+-- Testing
+
+-- <<inf
+inf :: Weight
+inf = 999
+-- >>
+
+testGraph :: Graph
+testGraph = toAdjMatrix $
+        [[  0, inf, inf,  13, inf, inf],
+         [inf,   0, inf, inf,   4,   9],
+         [ 11, inf,   0, inf, inf, inf],
+         [inf,   3, inf,   0, inf,   7],
+         [ 15,   5, inf,   1,   0, inf],
+         [ 11, inf, inf,  14, inf,   0]]
+
+-- correct result:
+expectedResult :: Graph
+expectedResult = toAdjMatrix $
+         [[0,  16, inf, 13, 20, 20],
+          [19,  0, inf,  5,  4,  9],
+          [11, 27,   0, 24, 31, 31],
+          [18,  3, inf,  0,  7,  7],
+          [15,  4, inf,  1,  0,  8],
+          [11, 17, inf, 14, 21,  0] ]
+
+test :: Bool
+test = toList (shortestPaths testGraph) == toList expectedResult
+
+toAdjMatrix :: [[Weight]] -> Graph
+toAdjMatrix xs = A.fromList (Z :. k :. k) (concat xs)
+  where k = length xs
+
+
+main :: IO ()
+main = do
+   (n:_) <- fmap (fmap read) getArgs
+   print (run (let g :: Acc Graph
+                   g    = generate (constant (Z:.n:.n) :: Exp DIM2) f
+
+                   f :: Exp DIM2 -> Exp Weight
+                   f ix = let i,j :: Exp Int
+                              Z:.i:.j = unlift ix
+                          in
+                          A.fromIntegral j +
+                           A.fromIntegral i * constant (Prelude.fromIntegral n)
+               in
+               A.foldAll (+) (constant 0) (shortestPathsAcc n g)))
diff --git a/kmeans/Makefile b/kmeans/Makefile
new file mode 100644
--- /dev/null
+++ b/kmeans/Makefile
@@ -0,0 +1,18 @@
+GHC = ghc
+GHC_OPTS = -O2 -threaded -rtsopts
+
+all : points.bin
+
+kmeans : kmeans.hs KMeansCore.hs
+	$(GHC) $(GHC_OPTS) kmeans
+
+GenSamples : GenSamples.hs KMeansCore.hs
+	$(GHC) $(GHC_OPTS) GenSamples
+
+points : GenSamples
+	./GenSamples 5 50000 100000 1010
+
+points.bin : points
+
+view : points
+	gnuplot -e 'set terminal png; plot "points"' >points.png; eog points.png    
diff --git a/other/README b/other/README
new file mode 100644
--- /dev/null
+++ b/other/README
@@ -0,0 +1,4 @@
+In this directory are various programs that I've used as exercises
+when teaching Parallel and Concurrent Haskell in the past.  They are
+not directly related to the book content, but they might be
+interesting to play with nonetheless.
diff --git a/other/arithgame.hs b/other/arithgame.hs
new file mode 100644
--- /dev/null
+++ b/other/arithgame.hs
@@ -0,0 +1,23 @@
+import Control.Concurrent
+import System.Random
+import Text.Printf
+import System.IO
+import System.Timeout
+
+main = do
+ hSetBuffering stdout NoBuffering
+ loop 0
+ where
+   loop :: Int -> IO ()
+   loop score = do
+     printf "current score: %d\n" score
+     a <- randomRIO (0,50 :: Int)
+     b <- randomRIO (0,50)
+     n <- randomRIO (0,2)
+     let op  = [(+),(-),(*)] !! n
+     let sop = ["+","-","*"] !! n
+     printf "%d %s %d = " a sop b
+     l <- getLine
+     if read l == a `op` b
+        then printf "CORRECT.\n" >> loop (score + 1)
+        else printf "WRONG.\n" >> loop (max 0 (score-1))
diff --git a/other/correcter.hs b/other/correcter.hs
new file mode 100644
--- /dev/null
+++ b/other/correcter.hs
@@ -0,0 +1,58 @@
+import System.IO
+import Control.Monad
+import Control.Concurrent
+import Control.Concurrent.STM
+import Data.Char
+
+main = do
+  hSetBuffering stdin  NoBuffering
+  hSetBuffering stdout NoBuffering
+  hSetEcho stdin False
+  tvar <- newTVarIO ""
+  forkIO (render tvar)
+  forkIO (correcter tvar)
+  forever $ do
+    c <- getChar
+    atomically $ do
+      s <- readTVar tvar
+      writeTVar tvar (s ++ [c])
+
+correcter :: TVar String -> IO ()
+correcter tvar = loop ""
+ where
+  loop current = do
+    new <- atomically $ do
+       s <- readTVar tvar
+       when (s == current) retry
+       let s' = correct s
+       when (s' == s) retry
+       writeTVar tvar s'
+       return s'
+    loop new
+
+render :: TVar String -> IO ()
+render tvar = loop ""
+ where
+  printit current s = do
+     putStr (replicate (length current) '\8')
+     putStr s
+
+  loop current = do
+    new <- atomically $ do
+       s <- readTVar tvar
+       when (s == current) retry
+       return s
+    printit current new
+    loop new
+
+-- This function applies an arbitrary function to the input string.
+-- It could do all kinds of funky stuff, but right now all it does is
+-- capitalise the first character after a full stop.
+--
+correct :: String -> String
+correct s = go s
+ where
+  go "" = ""
+  go ('.':' ':c:s) | isLower c = '.':' ': toUpper c: go s
+  go (c:cs) = c : go cs
+
diff --git a/other/game.hs b/other/game.hs
new file mode 100644
--- /dev/null
+++ b/other/game.hs
@@ -0,0 +1,53 @@
+import Control.Concurrent
+import System.Random
+import Text.Printf
+import System.IO
+import System.Timeout
+import Control.Monad
+
+data Msg = C Char | Time
+
+main = do
+ hSetBuffering stdout NoBuffering
+ hSetBuffering stdin NoBuffering
+ hSetEcho stdin False
+
+ m <- newEmptyMVar
+ scorem <- newMVar 0
+
+ forkIO $ forever $ do
+      score <- readMVar scorem
+      threadDelay (truncate (fromIntegral 1000000 * (0.9 ^ score)))
+      putMVar m Time
+
+ forkIO $ forever (do c <- getChar; putMVar m (C c))
+
+ loop m scorem ""
+ where
+
+   update m old new = do
+     putStr (replicate n '\8')
+     putStr (replicate n ' ')
+     putStr (replicate n '\8')
+     putStr new
+    where n = length old
+
+   loop :: MVar Msg -> MVar Int -> String -> IO ()
+   loop m scorem s
+     | length s == 10 = do
+         score <- readMVar scorem
+         printf "\nGAME OVER.  SCORE = %d\n" score
+     | otherwise = do
+         x <- takeMVar m
+         case x of
+           C c -> do
+              let new = filter (/= c) s
+              update m s new
+              modifyMVar_ scorem (return . (+ (length s - length new)))
+              loop m scorem new
+           Time -> do
+             c <- randomRIO ('0','9')
+             let new = s ++ [c]
+             update m s new
+             loop m scorem new
+
diff --git a/parconc-examples.cabal b/parconc-examples.cabal
--- a/parconc-examples.cabal
+++ b/parconc-examples.cabal
@@ -1,5 +1,5 @@
 name:                parconc-examples
-version:             0.2
+version:             0.3
 synopsis:            Examples to accompany the book "Parallel and Concurrent Programming in Haskell"
 -- description:         
 license:             BSD3
@@ -11,6 +11,26 @@
 build-type:          Simple
 cabal-version:       >=1.10
 
+extra-source-files:  sudoku17.1000.txt
+                     sudoku17.16000.txt
+                     sudoku17.49151.txt
+                     chanbench.hs
+                     findpar5.hs
+                     parlist.hs
+                     other/correcter.hs
+                     other/arithgame.hs
+                     other/game.hs
+                     other/README
+                     distrib-db/WorkerSample.hs
+                     distrib-db/DatabaseSample.hs
+                     sudoku-par1.hs
+                     sudoku-par2.hs
+                     sudoku-par3.hs
+                     sudoku-par4.hs
+                     kmeans/Makefile
+                     timeout2.hs
+                     parinfer/benchmark.in
+
 -- -----------------------------------------------------------------------------
 -- Flags
 
@@ -79,6 +99,15 @@
   ghc-options: -threaded
   default-language: Haskell2010
 
+executable sudoku5
+  main-is: sudoku5.hs
+  other-modules: Sudoku
+  build-depends:   base >= 4.5 && < 4.7
+                 , parallel ==3.2.*
+                 , array ==0.4.*
+  ghc-options: -threaded
+  default-language: Haskell2010
+
 -- -----------------------------------------------------------------------------
 -- par-strat
 
@@ -240,6 +269,29 @@
                  , random >= 1.0 && < 1.1
   default-language: Haskell2010
 
+executable  parinfer
+  main-is: parinfer.hs
+  hs-source-dirs: parinfer
+  other-modules:  InferMonad
+                  Term
+                  FiniteMap
+                  Shows
+                  Environment
+                  Lex
+                  MaybeM
+                  Parse
+                  MyList
+                  Type
+                  Infer
+                  Substitution
+                  StateX
+  build-depends:   base >= 4.5 && < 4.7
+                 , containers >= 0.4 && < 0.6
+                 , deepseq ==1.3.*
+                 , monad-par >= 0.3.4 && < 0.4
+                 , array ==0.4.*
+  default-language: Haskell2010
+
 -- -----------------------------------------------------------------------------
 -- par-repa
 
@@ -286,7 +338,7 @@
   default-language: Haskell2010
 
 executable  fwaccel-gpu
-  main-is: fwaccel.hs
+  main-is: fwaccel-gpu.hs
   build-depends:   base >= 4.5 && < 4.7
                  , accelerate >= 0.12
   if flag(cuda)
@@ -886,5 +938,4 @@
 --   euler35
 --   index
 --   sudoku-par{1,2,3,4,5}
---   parinfer
 
diff --git a/parinfer/Environment.hs b/parinfer/Environment.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/Environment.hs
@@ -0,0 +1,44 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module Environment
+       (Env, emptyEnv, extendLocal, extendGlobal,
+        makeEnv, unmakeEnv, lookupEnv, domEnv, freeTVarEnv)
+       where
+
+import Shows
+import Term           (VarId)
+import Type
+import Data.Map (Map)
+import Data.Maybe
+import qualified Data.Map as Map
+
+newtype  Env          =   MkEnv (Map VarId PolyType)
+rep                   ::  Env -> Map VarId PolyType
+rep (MkEnv f)         =   f
+emptyEnv              ::  Env
+emptyEnv              =   MkEnv Map.empty
+extendLocal           ::  Env -> VarId -> MonoType -> Env
+extendLocal env x t   =   MkEnv (Map.insert x (All [] t) (rep env))
+extendGlobal          ::  Env -> VarId -> PolyType -> Env
+extendGlobal env x t  =   MkEnv (Map.insert x t (rep env))
+makeEnv               ::  [(VarId, PolyType)] -> Env
+makeEnv               =   MkEnv . Map.fromList
+unmakeEnv             ::  Env -> [(VarId, PolyType)]
+unmakeEnv             =   Map.toList . rep
+lookupEnv             ::  Env -> VarId -> PolyType
+lookupEnv env x       =   fromJust (Map.lookup x (rep env))
+domEnv                ::  Env -> [VarId]
+domEnv env            =   Map.keys (rep env)
+freeTVarEnv           ::  Env -> [TVarId]
+freeTVarEnv env       =   concat (map freeTVarPoly (Map.elems (rep env)))
+instance  Show Env  where
+      showsPrec d  =  showsEnv
+showsEnv              :: Shows Env
+showsEnv              =  showsSurround "[" (showsStarSep ",\n " showsPair) "]"
+                      .  unmakeEnv
+showsPair             :: Shows (VarId, PolyType)
+showsPair (x,t)       =  showsString x . showsString " : " . shows t
diff --git a/parinfer/FiniteMap.hs b/parinfer/FiniteMap.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/FiniteMap.hs
@@ -0,0 +1,40 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module FiniteMap
+      (FM, emptyFM, unitFM, extendFM, makeFM, unmakeFM, thenFM, plusFM,
+       lookupFM, lookupElseFM, mapFM, domFM, ranFM, disjointFM) where
+
+data  FM a b  =  MkFM [(a,b)]
+emptyFM                               ::  FM a b
+emptyFM                               =   MkFM []
+unitFM                                ::  a -> b -> FM a b
+unitFM a b                            =   MkFM [(a,b)]
+extendFM                              ::  FM a b -> a -> b -> FM a b
+extendFM (MkFM abs) a b               =   MkFM ((a,b) : abs)
+makeFM                                ::  [(a,b)] -> FM a b
+makeFM abs                            =   MkFM abs
+unmakeFM                              ::  FM a b -> [(a,b)]
+unmakeFM (MkFM abs)                   =   abs
+thenFM                                ::  FM a b -> FM a b -> FM a b
+(MkFM abs1) `thenFM` (MkFM abs2)      =   MkFM (abs2 ++ abs1)
+plusFM                                ::  (Eq a) => FM a b -> FM a b -> FM a b
+f `plusFM` g  |  f `disjointFM` g     =   f `thenFM` g
+lookupFM                              ::  (Eq a) => FM a b -> a -> b
+lookupFM f a                          =   lookupElseFM (error "lookup") f a
+lookupElseFM                          ::  (Eq a) => b -> FM a b -> a -> b
+lookupElseFM b (MkFM abs) a           =   head (  [ b' | (a',b') <- abs, a==a' ]
+                                               ++ [ b ] )
+mapFM                                 ::  (b -> c) -> FM a b -> FM a c
+mapFM h (MkFM abs)                    =   MkFM [ (a, h b) | (a,b) <- abs ]
+domFM                                 ::  FM a b -> [a]
+domFM (MkFM abs)                      =   [ a | (a,b) <- abs ]
+ranFM                                 ::  FM a b -> [b]
+ranFM (MkFM abs)                      =   [ b | (a,b) <- abs ]
+disjointFM                            ::  (Eq a) => FM a b -> FM a b -> Bool
+f `disjointFM` g                      =   domFM f `disjoint` domFM g
+disjoint                              ::  (Eq a) => [a] -> [a] -> Bool
+xs `disjoint` ys                      =   and [ not (x `elem` ys) | x <- xs ]
diff --git a/parinfer/Infer.hs b/parinfer/Infer.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/Infer.hs
@@ -0,0 +1,95 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module Infer (inferTerm,inferTop) where
+
+import Data.List(nub)
+
+import  MyList                  (minus)
+import  Type                  (TVarId, MonoType (..), PolyType (All),
+                               arrow, intType, freeTVarMono)
+import  Term
+import  Substitution          (Sub, applySub, lookupSub, makeSub)
+import  Environment
+import  InferMonad
+import  Control.Monad.Par.Scheds.Trace
+import  qualified Data.Set as Set
+import  qualified Data.Map as Map
+import  Data.Map (Map)
+import  Data.Maybe
+import Control.Monad
+
+specialiseI                   :: PolyType -> Infer MonoType
+specialiseI (All xxs tt)      =  freshesI (length xxs) `thenI` (\yys ->
+                                 returnI (applySubs xxs yys tt))
+applySubs                     :: [TVarId] -> [MonoType] -> MonoType -> MonoType
+applySubs xxs yys tt          =  applySub (makeSub (zip xxs yys)) tt
+generaliseI                   :: Env -> MonoType -> Infer PolyType
+generaliseI aa tt             =  getSubI `thenI` (\s ->
+ 				 let aaVars = nub (freeTVarSubEnv s aa) in
+				 let ttVars = nub (freeTVarMono tt) in
+				 let xxs    = ttVars `minus` aaVars in
+                                 returnI (All xxs tt)
+                                 )
+freeTVarSubEnv                :: Sub -> Env -> [TVarId]
+freeTVarSubEnv s aa           =  concat (map (freeTVarMono . lookupSub s)
+                                             (freeTVarEnv aa))
+
+inferTerm  ::  Env -> Term -> Infer MonoType
+inferTerm _  (Int _)  = returnI intType
+inferTerm aa (Var x)  =
+      (x `elem` domEnv aa)                      `guardI` (
+      let ss = lookupEnv aa x in
+      specialiseI ss                          `thenI`  (\tt ->
+      substituteI tt                          `thenI`  (\uu  ->
+                                              returnI  uu)))
+inferTerm aa (Abs x v)  =
+      freshI                                  `thenI` (\xx ->
+      inferTerm (extendLocal aa x xx) v       `thenI` (\vv ->
+      substituteI xx                          `thenI` (\uu ->
+                                              returnI (uu `arrow` vv))))
+inferTerm aa (App t u)  =
+      inferTerm aa t                          `thenI` (\tt ->
+      inferTerm aa u                          `thenI` (\uu ->
+      freshI                                  `thenI` (\xx ->
+      unifyI tt (uu `arrow` xx)               `thenI` (\() ->
+      substituteI xx                          `thenI` (\vv ->
+                                              returnI vv)))))
+inferTerm aa (Let x u v)  = do
+    ss <- inferRhs aa u
+    inferTerm (extendGlobal aa x ss) v
+
+inferRhs :: Env -> Term -> Infer PolyType
+inferRhs aa u = do
+    uu <- inferTerm aa u
+    generaliseI aa uu
+
+inferTopRhs :: Env -> Term -> PolyType
+inferTopRhs aa u = useI (error "type error") $ do
+    uu <- inferTerm aa u
+    generaliseI aa uu
+
+type TopEnv = Map VarId (IVar PolyType)
+
+-- <<inferTop
+inferTop :: TopEnv -> [(VarId,Term)] -> Par [(VarId,PolyType)]
+inferTop topenv0 binds = do
+  topenv1 <- foldM inferBind topenv0 binds                          -- <1>
+  mapM (\(v,i) -> do t <- get i; return (v,t)) (Map.toList topenv1) -- <2>
+-- >>
+
+-- <<inferBind
+inferBind :: TopEnv -> (VarId,Term) -> Par TopEnv
+inferBind topenv (x,u) = do
+  vu <- new                                                     -- <1>
+  fork $ do                                                     -- <2>
+    let fu = Set.toList (freeVars u)                            -- <3>
+    tfu <- mapM (get . fromJust . flip Map.lookup topenv) fu    -- <4>
+    let aa = makeEnv (zip fu tfu)                               -- <5>
+    put vu (inferTopRhs aa u)                                   -- <6>
+  return (Map.insert x vu topenv)                               -- <7>
+-- >>
+
diff --git a/parinfer/InferMonad.hs b/parinfer/InferMonad.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/InferMonad.hs
@@ -0,0 +1,68 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module InferMonad     (Infer, returnI, eachI, thenI, guardI, useI, getSubI,
+                       substituteI, unifyI, freshI, freshesI)
+                      where
+
+import MaybeM
+import StateX         (StateX, returnSX, eachSX, thenSX, toSX, putSX, getSX, useSX)
+import Type
+import Substitution
+
+type  Counter         =  Int
+data  Infer x         =  MkI (StateX Sub (StateX Counter (Maybe ((x, Sub), Counter))))
+rep (MkI xJ)          =  xJ
+returnI               :: x -> Infer x
+returnI x             =  MkI (returnSX (returnSX returnM) x)
+eachI                 :: Infer x -> (x -> y) -> Infer y
+xI `eachI` f          =  MkI (eachSX (eachSX eachM) (rep xI) f)
+thenI                 :: Infer x -> (x -> Infer y) -> Infer y
+xI `thenI` kI         =  MkI (thenSX (thenSX thenM) (rep xI) (rep . kI))
+failI                 :: Infer x
+failI                 =  MkI (toSX (eachSX eachM) (toSX eachM failM))
+useI                  :: x -> Infer x -> x
+useI xfail            =  useM xfail
+                      .  useSX eachM 0
+                      .  useSX (eachSX eachM) emptySub
+                      .  rep
+guardI                :: Bool -> Infer x -> Infer x
+guardI b xI           =  if  b  then  xI  else  failI
+putSubI               :: Sub -> Infer ()
+putSubI s             =  MkI (putSX (returnSX returnM) s)
+getSubI               :: Infer Sub
+getSubI               =  MkI (getSX (returnSX returnM))
+putCounterI           :: Counter -> Infer ()
+putCounterI c         =  MkI (toSX (eachSX eachM) (putSX returnM c))
+getCounterI           :: Infer Counter
+getCounterI           =  MkI (toSX (eachSX eachM) (getSX returnM))
+substituteI           :: MonoType -> Infer MonoType
+substituteI t         =  getSubI              `thenI`  (\ s ->
+                                              returnI  (applySub s t))
+unifyI                :: MonoType -> MonoType -> Infer ()
+unifyI t u            =  getSubI              `thenI`  (\ s  ->
+			 let sM = unifySub t u s
+			 in
+                         existsM sM           `guardI` (
+                         putSubI (theM sM)    `thenI`  (\ () ->
+                                              returnI  ())))
+freshI                :: Infer MonoType
+freshI                =  getCounterI          `thenI` (\c  ->
+                         putCounterI (c+1)    `thenI` (\() ->
+                                              returnI (TVar ("a" ++ show c))))
+freshesI              :: Int -> Infer [MonoType]
+freshesI 0            =                       returnI []
+freshesI n            =  freshI               `thenI` (\x  ->
+                         freshesI (n-1)       `thenI` (\xs ->
+                                              returnI (x:xs)))
+
+
+instance Monad Infer where
+  return = returnI
+  (>>=) = thenI
+
+instance Functor Infer where
+  fmap f x = x >>= return . f
diff --git a/parinfer/Lex.x b/parinfer/Lex.x
new file mode 100644
--- /dev/null
+++ b/parinfer/Lex.x
@@ -0,0 +1,33 @@
+{
+module Lex where
+}
+
+%wrapper "basic"
+
+$digit = 0-9			-- digits
+$alpha = [a-zA-Z]		-- alphabetic characters
+
+tokens :-
+
+  $white+                               ;
+  "--".*                                ;
+  let                                   { \s -> TLet }
+  in                                    { \s -> TIn }
+  $digit+                               { \s -> TInt (read s) }
+  "->"                                  { \s -> TArrow }
+  [\; \\ \=\+\-\*\/\(\)]                  { \s -> TSym (head s) }
+  $alpha [$alpha $digit \_ \']*         { \s -> TVar s }
+
+{
+-- Each right-hand side has type :: String -> Token
+
+-- The token type:
+data Token =
+        TLet            |
+        TIn             |
+        TSym Char       |
+        TVar String     |
+        TInt Int        |
+        TArrow
+        deriving (Eq,Show)
+}
diff --git a/parinfer/MaybeM.hs b/parinfer/MaybeM.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/MaybeM.hs
@@ -0,0 +1,37 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module MaybeM
+      (Maybe, returnM, eachM, thenM,
+       failM, orM, guardM, filterM, theM, existsM, useM)
+      where
+
+--1.3: data  Maybe x  =  Just x | Nothing
+returnM               ::  x -> Maybe x
+returnM x             =   Just x
+eachM                 ::  Maybe x -> (x -> y) -> Maybe y
+(Just x) `eachM` f    =   Just (f x)
+Nothing `eachM` f     =   Nothing
+thenM                 ::  Maybe x -> (x -> Maybe y) -> Maybe y
+(Just x) `thenM` kM   =   kM x
+Nothing `thenM` kM    =   Nothing
+failM                 ::  Maybe x
+failM                 =   Nothing
+orM                   ::  Maybe x -> Maybe x -> Maybe x
+(Just x) `orM` yM     =   Just x
+Nothing `orM` yM      =   yM
+guardM                ::  Bool -> Maybe x -> Maybe x
+b `guardM` xM         =   if  b  then  xM  else  failM
+filterM               ::  (x -> Bool) -> Maybe x -> Maybe x
+p `filterM` xM        =   xM `thenM` (\x -> p x `guardM` returnM x)
+theM                  ::  Maybe x -> x
+theM (Just x)         =   x
+existsM               ::  Maybe x -> Bool
+existsM (Just x)      =   True
+existsM Nothing       =   False
+useM                  ::  x -> Maybe x -> x
+useM xfail (Just x)   =   x
+useM xfail Nothing    =   xfail
diff --git a/parinfer/MyList.hs b/parinfer/MyList.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/MyList.hs
@@ -0,0 +1,13 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module MyList (minus) where
+
+minus                 :: (Eq x) => [x] -> [x] -> [x]
+xs `minus` ys         =  foldl rmv xs ys
+rmv                   :: (Eq x) => [x] -> x -> [x]
+[] `rmv` y            =  []
+(x:xs) `rmv` y        =  if  x == y  then  xs  else  x : (xs `rmv` y)
diff --git a/parinfer/Parse.y b/parinfer/Parse.y
new file mode 100644
--- /dev/null
+++ b/parinfer/Parse.y
@@ -0,0 +1,61 @@
+-- An example demonstrating how to connect a Happy parser to an Alex lexer.
+{
+module Parse where
+import Lex
+import Term
+}
+
+%name parseExp Exp
+%name parseBinds binds
+%tokentype { Token }
+%monad { Either String }
+
+%token  let             { TLet     }
+        in              { TIn      }
+        int             { TInt $$  }
+        var             { TVar $$  }
+        '->'            { TArrow   }
+        '='             { TSym '=' }
+        '+'             { TSym '+' }
+        '-'             { TSym '-' }
+        '*'             { TSym '*' }
+        '/'             { TSym '/' }
+        '('             { TSym '(' }
+        ')'             { TSym ')' }
+        '\\'            { TSym '\\' }
+        ';'             { TSym ';' }
+
+%%
+
+binds :: { [(VarId,Term)] }
+binds : {- empty -}             { [] }
+      | bind binds              { $1 : $2 }
+
+bind :: { (VarId,Term) }
+bind : var '=' Exp ';'          { ($1,$3) }
+
+Exp :: { Term }
+Exp : let var '=' Exp in Exp    { Let $2 $4 $6 }
+    | '\\' var '->' Exp         { Abs $2 $4 }
+    | Exp1                      { $1 }
+
+Exp1 : Exp1 '+' Term            { App (App (Var "+") $1) $3 }
+     | Exp1 '-' Term            { App (App (Var "-") $1) $3 }
+     | Term                     { $1 }
+
+Term : Term '*' App            { App (App (Var "*") $1) $3 }
+     | Term '/' App            { App (App (Var "/") $1) $3 }
+     | App                     { $1 }
+
+App  : App Atom                 { App $1 $2 }
+     | Atom                     { $1 }
+
+Atom : int                      { Int $1 }
+     | var                      { Var $1 }
+     | '(' Exp ')'              { $2 }
+
+{
+happyError :: [Token] -> Either String a
+happyError [] = Left "Parse error at end of input"
+happyError (tk:tks) = Left ("Parse error before " ++ show tk)
+}
diff --git a/parinfer/Shows.hs b/parinfer/Shows.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/Shows.hs
@@ -0,0 +1,34 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module  Shows
+      (Shows, showsEmpty, showsConcat, showsString, showsChar, showsStar,
+       showsStarSep, showsSurround, showsListOf, showsParen, showsParenIf)
+      where
+
+type  Shows x  =  x -> ShowS
+showsEmpty                    :: ShowS
+showsEmpty r                  =  r
+showsConcat                   :: [ShowS] -> ShowS
+showsConcat                   =  foldr (.) showsEmpty
+showsString                   :: Shows String
+showsString                   =  (++)
+showsChar                     :: Shows Char
+showsChar                     =  (:)
+showsStar                     :: Shows x -> Shows [x]
+showsStar showsX xs           =  showsConcat (map showsX xs)
+showsStarSep                  :: String -> Shows x -> Shows [x]
+showsStarSep s showsX []      =  showsEmpty
+showsStarSep s showsX (x:xs)  =  showsX x
+                              .  showsConcat [showString s . showsX x' | x' <- xs]
+showsSurround                 :: String -> Shows x -> String -> Shows x
+showsSurround l showsX r x    =  showString l . showsX x . showString r
+showsListOf                   :: Shows x -> Shows [x]
+showsListOf showsX            =  showsSurround "[" (showsStarSep ", " showsX) "]"
+showsParen                    :: ShowS -> ShowS
+showsParen                    =  showsSurround "(" id ")"
+showsParenIf                  :: Bool -> ShowS -> ShowS
+showsParenIf b xS             =  if  b  then  showsParen xS  else  xS
diff --git a/parinfer/StateX.hs b/parinfer/StateX.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/StateX.hs
@@ -0,0 +1,17 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module StateX (StateX, returnSX, eachSX, thenSX, toSX, putSX, getSX, useSX) where
+
+data  StateX s a      =   MkSX (s -> a)
+rep (MkSX f)          =   f
+returnSX returnX x    =   MkSX (\s -> returnX (x, s))
+eachSX eachX xSX f    =   MkSX (\s -> rep xSX s `eachX` (\(x,s') -> (f x, s')))
+thenSX thenX xSX kSX  =   MkSX (\s -> rep xSX s `thenX` (\(x,s') -> rep (kSX x) s'))
+toSX eachX xX         =   MkSX (\s -> xX `eachX` (\x -> (x,s)))
+putSX returnX s'      =   MkSX (\s -> returnX ((), s'))
+getSX returnX         =   MkSX (\s -> returnX (s,s))
+useSX eachX s xSX     =   rep xSX s `eachX` (\(x,s') -> x)
diff --git a/parinfer/Substitution.hs b/parinfer/Substitution.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/Substitution.hs
@@ -0,0 +1,48 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module Substitution   (Sub, applySub, lookupSub, emptySub, extendSub,
+                       makeSub, thenSub, domSub, unifySub)
+                      where
+
+import Type
+import FiniteMap
+import MaybeM
+
+data  Sub  =  MkSub (FM TVarId MonoType)
+rep                           ::  Sub -> FM TVarId MonoType
+rep (MkSub f)                 =   f
+applySub                      ::  Sub -> MonoType -> MonoType
+applySub s (TVar x)           =   lookupSub s x
+applySub s (TCon k ts)        =   TCon k (map (applySub s) ts)
+lookupSub                     ::  Sub -> TVarId -> MonoType
+lookupSub s x                 =   lookupElseFM (TVar x) (rep s) x
+unitSub                       ::  TVarId -> MonoType -> Sub
+unitSub x t                   =   MkSub (makeFM [(x,t)])
+emptySub                      ::  Sub
+emptySub                      =   MkSub emptyFM
+makeSub                       ::  [(TVarId, MonoType)] -> Sub
+makeSub xts                   =   MkSub (makeFM xts)
+extendSub                     ::  Sub -> TVarId -> MonoType -> Sub
+extendSub s x t               =   s `thenSub` unitSub x (applySub s t)
+thenSub                       ::  Sub -> Sub -> Sub
+r `thenSub` s                 =   MkSub (mapFM (applySub s) (rep r) `thenFM` rep s)
+domSub                        ::  Sub -> [TVarId]
+domSub s                      =   domFM (rep s)
+unifySub                              =  unify
+unify                                 :: MonoType -> MonoType -> Sub -> Maybe Sub
+unify (TVar x) u s                    =  unifyTVar x u s
+unify t (TVar y) s                    =  unifyTVar y t s
+unify (TCon j ts) (TCon k us) s       =  (j == k) `guardM` unifies ts us s
+unifies                               :: [MonoType] -> [MonoType] -> Sub -> Maybe Sub
+unifies [] [] s                       =  returnM s
+unifies (t:ts) (u:us) s               =  unify t u s `thenM` (\s' -> unifies ts us s')
+unifyTVar                             :: TVarId -> MonoType -> Sub -> Maybe Sub
+unifyTVar x t s | x `elem` domSub s     =  unify (lookupSub s x) t s
+                | TVar x == t         =  returnM s
+                | x `elem` freeVars t   =  failM
+                | otherwise           =  returnM (extendSub s x t)    
+freeVars                              =  freeTVarMono
diff --git a/parinfer/Term.hs b/parinfer/Term.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/Term.hs
@@ -0,0 +1,46 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module Term (VarId, Term (..), freeVars) where
+
+import Shows
+import qualified Data.Set as Set
+import Data.Set (Set)
+
+type  VarId   =  String
+data  Term    =  Int Int
+              |  Var VarId
+              |  Abs VarId Term
+              |  App Term Term
+              |  Let VarId Term Term
+
+freeVars :: Term -> Set VarId
+freeVars t = go t Set.empty
+ where
+  go (Int _) s = s
+  go (Var v) s = Set.insert v s
+  go (Abs v t) s = Set.delete v (go t s)
+  go (App f t) s = go f (go t s)
+  go (Let v a b) s = go a (Set.delete v (go b s))
+
+instance Show Term where
+      showsPrec d  =  showsTerm d
+
+showsTerm                     :: Int -> Shows Term
+showsTerm d (Int i)           =  shows i
+showsTerm d (Var x)           =  showsString x
+showsTerm d (Abs x v)         =  showsParenIf (d>0)
+                                 (showsString "\\" . showsString x . showsAbs v)
+showsTerm d (App t u)         =  showsParenIf (d>1)
+                                 (showsTerm 1 t . showsChar ' ' . showsTerm 2 u)
+showsTerm d (Let x u v)       =  showsParenIf (d>0)
+                                 (showsString "let  "   . showsString x .
+                                  showsString " = "     . showsTerm 1 u .
+                                  showsString "  in  "  . showsTerm 0 v)
+showsAbs                      :: Shows Term
+showsAbs (Abs x t)            =  showsString " " . showsString x . showsAbs t
+{- ELSE -}
+showsAbs t                    =  showsString ". " . showsTerm 0 t
diff --git a/parinfer/Type.hs b/parinfer/Type.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/Type.hs
@@ -0,0 +1,68 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module Type
+       (TVarId, TConId,
+        MonoType (TVar, TCon), arrow, intType,
+        PolyType (All),
+        freeTVarMono, freeTVarPoly)
+       where
+
+import Shows
+import MyList
+import Data.List(nub)--1.3
+import Control.DeepSeq
+
+type  TVarId          =  String
+type  TConId          =  String
+data  MonoType        =  TVar TVarId
+                      |  TCon TConId [MonoType]
+
+instance NFData MonoType where
+  rnf (TVar s) = head s `seq` ()
+  rnf (TCon c ts) = rnf ts `seq` head c `seq` ()
+
+data  PolyType        =  All [TVarId] MonoType
+u `arrow` v           =  TCon "->" [u,v]
+infixr 5 `arrow`
+
+intType               = TCon "Int" []
+
+freeTVarMono                  :: MonoType -> [TVarId]
+freeTVarMono (TVar x)         =  [x]
+freeTVarMono (TCon k ts)      =  concat (map freeTVarMono ts)
+freeTVarPoly                  :: PolyType -> [TVarId]
+freeTVarPoly (All xs t)       =  nub (freeTVarMono t) `minus` xs
+
+-- WDP: too bad deriving doesn't work
+instance Eq MonoType where
+    (TVar tv1)       == (TVar tv2)	 = tv1 == tv2
+    (TCon tc1 args1) == (TCon tc2 args2) = tc1 == tc2 && (args1 == args2)
+    other1	     == other2		 = False
+-- end of too bad
+
+instance  Show MonoType  where
+      showsPrec d     =  showsMono d
+
+instance NFData PolyType where
+  rnf (All tvs t) = rnf tvs `seq` rnf t
+
+showsMono             :: Int -> Shows MonoType
+showsMono d (TVar xx)
+      =  showsString xx
+showsMono d (TCon "->" [uu,vv])
+      =  showsParenIf (d>1)
+         (showsMono 2 uu . showsString " -> " . showsMono 1 vv)
+showsMono d (TCon kk tts)
+      =  showsParenIf (d>9)
+         (showsString kk .
+          showsStar (\tt -> showsString " " . showsMono 10 tt) tts)
+
+instance  Show PolyType  where
+      showsPrec d (All xs t)  =  showsString "All " . showsString (unwords xs) .
+                                 showsString ". " . showsMono 0 t
+polyFromMono          :: MonoType -> PolyType
+polyFromMono t        =  All (nub (freeTVarMono t)) t
diff --git a/parinfer/benchmark.in b/parinfer/benchmark.in
new file mode 100644
--- /dev/null
+++ b/parinfer/benchmark.in
@@ -0,0 +1,53 @@
+id = \x->x ;
+
+a = \f -> f id id ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = \f -> f a a ;
+a = let f = a in \x -> x ;
+
+b = \f -> f id id ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = \f -> f b b ;
+b = let f = b in \x -> x ;
+
+c = \f -> f id id ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = \f -> f c c ;
+c = let f = c in \x -> x ;
+
+d = \f -> f id id ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = \f -> f d d ;
+d = let f = d in \x -> x ;
diff --git a/parinfer/parinfer.hs b/parinfer/parinfer.hs
new file mode 100644
--- /dev/null
+++ b/parinfer/parinfer.hs
@@ -0,0 +1,47 @@
+--
+-- Adapted from the program "infer", believed to have been originally
+-- authored by Philip Wadler, and used in the nofib benchmark suite
+-- since at least the late 90s.
+--
+
+module Main where
+
+import Parse
+import Lex
+import Term
+import Type
+import Environment
+import InferMonad
+import Infer
+import  Control.Monad.Par.Scheds.Trace
+import System.IO
+import System.Exit
+import qualified Data.Map as Map
+
+main :: IO ()
+main =  do
+  l <- getContents
+  case parseBinds (alexScanTokens l) of
+    Left err -> die err
+    Right t  -> print (inferBinds initialEnv t)
+
+die :: String -> IO ()
+die s = hPutStrLn stderr s >> exitWith (ExitFailure 1)
+
+test :: String -> IO ()
+test str =
+  case parseExp (alexScanTokens str) of
+    Left err -> die err
+    Right t  -> print (useI (error "type error") $ inferTerm initialEnv t)
+
+inferBinds :: Env -> [(VarId,Term)] -> [(VarId,PolyType)]
+inferBinds e t = runPar $ do
+  ys <- mapM (\(x,ty) -> do v <- newFull ty; return (x,v)) (unmakeEnv e)
+  let topenv = Map.fromList ys
+  inferTop topenv t
+
+initialEnv :: Env
+initialEnv = foldl (uncurry . extendGlobal) emptyEnv types
+ where
+  types = [("+",intop),("*",intop),("-",intop),("/",intop)]
+  intop = All [] (intType `arrow` intType `arrow` intType)
diff --git a/parlist.hs b/parlist.hs
new file mode 100644
--- /dev/null
+++ b/parlist.hs
@@ -0,0 +1,17 @@
+module ParList where
+
+import Control.Parallel.Strategies hiding (parList, evalList)
+
+-- <<evalList
+evalList :: Strategy a -> Strategy [a]
+evalList strat []     = return []
+evalList strat (x:xs) = do
+  x'  <- strat x
+  xs' <- evalList strat xs
+  return (x':xs')
+-- >>
+
+-- <<parList
+parList :: Strategy a -> Strategy [a]
+parList strat = evalList (rparWith strat)
+-- >>
diff --git a/sudoku-par1.hs b/sudoku-par1.hs
new file mode 100644
--- /dev/null
+++ b/sudoku-par1.hs
@@ -0,0 +1,10 @@
+import Sudoku
+import Control.Exception
+import System.Environment
+import Data.Maybe
+
+main :: IO ()
+main = do
+    [f] <- getArgs
+    grids <- fmap lines $ readFile f
+    print (length (filter isJust (map solve grids)))
diff --git a/sudoku-par2.hs b/sudoku-par2.hs
new file mode 100644
--- /dev/null
+++ b/sudoku-par2.hs
@@ -0,0 +1,21 @@
+import Sudoku
+import Control.Exception
+import System.Environment
+import Data.Maybe
+import Control.Monad.Par.Scheds.Trace
+
+main :: IO ()
+main = do
+    [f] <- getArgs
+    grids <- fmap lines $ readFile f
+
+    let (as,bs) = splitAt (length grids `div` 2) grids
+
+    print $ length $ filter isJust $ runPar $ do
+       i1 <- new
+       i2 <- new
+       fork $ put i1 (map solve as)
+       fork $ put i2 (map solve bs)
+       as' <- get i1
+       bs' <- get i2
+       return (as' ++ bs')
diff --git a/sudoku-par3.hs b/sudoku-par3.hs
new file mode 100644
--- /dev/null
+++ b/sudoku-par3.hs
@@ -0,0 +1,11 @@
+import Sudoku
+import Control.Exception
+import System.Environment
+import Data.Maybe
+import Control.Monad.Par
+
+main :: IO ()
+main = do
+    [f] <- getArgs
+    grids <- fmap lines $ readFile f
+    print (length (filter isJust (runPar $ parMap solve grids)))
diff --git a/sudoku-par4.hs b/sudoku-par4.hs
new file mode 100644
--- /dev/null
+++ b/sudoku-par4.hs
@@ -0,0 +1,37 @@
+import Sudoku
+import Control.Exception
+import System.Environment
+import Data.Maybe
+import Control.Monad.Par
+import Control.DeepSeq
+
+main :: IO ()
+main = do
+    [f,n] <- getArgs
+    grids <- fmap lines $ readFile f
+    print (length (filter isJust (runPar $ parMapChunk (read n) solve grids)))
+
+parMapChunk :: NFData b => Int -> (a -> b) -> [a] -> Par [b]
+parMapChunk n f xs = fmap concat $ parMap (map f) (chunk n xs)
+
+chunk :: Int -> [a] -> [[a]]
+chunk _ [] = []
+chunk n xs = as : chunk n bs where (as,bs) = splitAt n xs
+
+-- No chunks (sudoku-par3):
+--   Total time   43.71s  ( 43.73s elapsed)
+-- chunk 100:
+--   Total time   44.43s  ( 44.44s elapsed)
+-- 
+-- No chunks, -N8:
+--   Total time   67.73s  (  8.38s elapsed)
+--   (5.21x)
+-- chunk 10, -N8:
+--   Total time   61.62s  (  7.74s elapsed)
+--   (5.64x)
+-- chunk 100, -N8:
+--   Total time   60.81s  (  7.73s elapsed)
+--   (5.65x)
+-- chunk 1000, -N8:
+--   Total time   61.74s  (  7.88s elapsed)
+--   (5.54x)
diff --git a/sudoku17.1000.txt b/sudoku17.1000.txt
new file mode 100644
--- /dev/null
+++ b/sudoku17.1000.txt
@@ -0,0 +1,1000 @@
+.......2143.......6........2.15..........637...........68...4.....23........7....
+.......241..8.............3...4..5..7.....1......3.......51.6....2....5..3...7...
+.......24....1...........8.3.7...1..1..8..5.....2......2.4...6.5...7.3...........
+.......23.1..4....5........1.....4.....2...8....8.3.......5.16..4....7....3......
+.......21...5...3.4..6.........21...8.......75.....6.....4..8...1..7.....3.......
+.......215.3......6...........1.4.6.7.....5.....2........48.3...1..7....2........
+.......21.9.7.................514...63............2......6..93...1.4....2.....8..
+.......314...2.........7......3.1.5.7..5.....2.6..........8.2...3.6...........4..
+.......24....1...........8.1.7...9..3..8..1.....2......2.4...6.5...7.3...........
+.......214..3..................1.6...8....3...2...7...6.....47.5..12.......8.....
+.......13.2.5..............1.3....7....8.2.....4.........34.5..67....2......1....
+.......23.1..4....5........1.....4.....6...9....2.3.......5.17..4....8....3......
+.......1497..........2..........36.5..1............2...6....73.2..14.......8.....
+.......314...2.........9......3.1.5.7..5.....2.4..........8.2...3.6...........4..
+.......14..8..5....2...........2.8.51..............7...7....53.6..14.......2.....
+.......23.1.8............6.3...2.....5....7.....4........5.71....2.1....6.....4..
+.......23.8.....7.4...2.....3...2.........4.1....6.5..1.....6.....8.7......3.....
+.......213..8...............6.5..7...2.....4.......3..1...4.8..5...12........6...
+.......37..2....5..1..........2..1.4.....16..3..4.....7...63.........2......8....
+.......13...2............8....76.2....8...4...1.......2.....75.6..34.........8...
+.......23...5...8....1......2....9.....4..1..58.......6....95......2..7...1......
+.......379...4...........1....1.3...2.....4.....7...6...65..2......7.8...1.......
+.......52...7...4.1.........1.6.........3.8...42.........2..1.....4.5...3.....6..
+.......32.1..........3.....3.97.........6.1..8.....4..2......8....54........16...
+.......21.7..3........4....1..2.5.4..3....8.....1.....2..6.........7.3..6........
+.......41....62...............71..3.6.2...5..5........31.4..........82...4.......
+.......214..6..................129..7.6..........3....51.....3....8.76...2.......
+.......215...4...........7....3..6......2.5...1.......6.....2.3..31.7........8...
+.......318..9............4.4.....8......6.2.......1....31.5.......2..4.7.9.......
+.......216......3..7.9.........437..1............2.......6....8..21......4....5..
+.......51....36.............4.5...8.2.....6.......1.......2.34..1.4..7..6........
+.......15...83..........2...26...8.......1....8.......1.5.4.......3..72.9........
+.......21.6.5.........9....4....2....7....3.....6.....1.24.........3.64.8........
+.......23.1..4....5........1.....4.....2...8....9.3.......5.16..4....7....3......
+.......314...2.........9......3.1.5.7..5.....2.6..........8.2...3.6...........4..
+.......13...8...7....5.2......4..9..1.7............2..89.....5..4....6......1....
+.......234..8.....1.....9...5..32.........4......6.......4.18...3.....5....9.....
+.......21.7..3........9....1..2.5.4..3....8.....1.....2..6.........7.3..6........
+.......27.4.8.............1...4..9..6.....5....1..........12.5..8....3..3...7....
+.......312..7.....4.........38....6....4..3...1..........514...7.....2......8....
+.......15...4...7.3...6....8.....2.....1.4...4..5.........236...1........7.......
+.......236..7............8.....385..2.....8......1.......2..64...34......1.......
+.......21...4.7........8....31.6..........75..2.......5..21....4.....8.....3.....
+.......213..7...............6.5..3...2.....7.......8..1...4.7..5...12........6...
+.......352..1......8........4....7.....2...4...5..3...3...7...6....4.2........1..
+.......36..71.........4..5.4.5..3......7..2........1...1.2..8..3.........9.......
+.......1479..........2..........36.5..1............2...6....73.2..14.......8.....
+.......19...25..............91....3....4..7...3.......4.....2.82...6.5.......1...
+.......32.1..4................3.7.2..84......6............8.1.47..1..5..3........
+.......214..6..................128..6.9..........3....51.....3....7.96...2.......
+.......312...7.........9......3.1.4.6..4.....7.8..........6.2...3.5...........7..
+.......43....15......2........42.....9....5.....8..........716.4.3......2.....7..
+.......217..6.....3..5.........82....4..1....5.........2..4.......3..7........65.
+.......341...............5..2..5.7...43..........1....9..6..8.....4..1.....3.2...
+.......374..2..............1.7....4....8..2..3..5.........31....8....5...6....4..
+.......21.4.6..............2.1....5.5..8........4..3..7...2.....6....8.....3..4..
+.......24.1.3......6........5....3......82...7........4..1..5..2......63..8......
+.......273......4.1...........6.51.....1..5...4........7..4..3...8...6......2....
+.......27....51.........6..5.4...1.....2.....3.........2.74.....6.....39......5..
+.......318...6.............6.....47....1..6..5..2......235.........7.8...1.......
+.......12.4..5.........9....7.6..4.....1............5.....875..6.1...3..2........
+.......213..9............7.2.....4......6.3.......1....71.4.......2..5.8.9.......
+.......41.2.5..................84.6.57.............2.....12.3..8.4......6..7.....
+.......41.2.7..............4...13....7....2..6...........27.5..1.3....6....8.....
+.......218..7.....4....5....23....6....8..5...1.......6.....7......81.......3....
+.......29...73.......4...6.2.8...3.....1..5..6.........7..5.1.......2....1.......
+.......42...5...8......1......9..3..2.....1..4...8.....9..6..5..1....7.....8.....
+.......512...3.................7.62..5.4...........3....45.1...6.....83....7.....
+.......182..4............7......8..3...5..2...1.......5.2...6......4.3......17...
+.......23.8.....7.5...9.....3...2.........4.1....6.5..1.....6.....8.7......3.....
+.......2348........1.......5.3....6.....1.8...........17....4.....6.2......3....5
+.......28...5...6..1.......5.6.2....4.....3........1.....1..7.....4.3...68.......
+......1.2.3....4.....7..5...8.....3.....15.......2.......3...642.1......9........
+.......14..8..9....2...........2.8.51..............7...7....93.6..14.......2.....
+.......16.7.....4..5.2.....4...6.3.......52......41......9..78.1.................
+.......18.2.5...............4....7..6.....5......41......7..26.1.83.....4........
+.......21.7.3..............4.2.........7..3..6.....8.....54..6..9....5..1....2...
+.......36.......2.8........7.....1.4....3.5......2.....641......3...6......7..4..
+.......37..46............1..78...2.......75......1....31.....2....8..6..4........
+.......395...7...........1....5.3...4.....2.....6.......3...86....24.7...1.......
+.......51.2..7................145....4....89....3.....1.95.........6.2..3........
+.......32.1..4................7.3.2..84......6............8.1.47..1..5..3........
+.......29...73.......4...6.2.3...4.....1..3..6.........8..5.1.......2....1.......
+.......31..4.2.....8.......6..3..........82..1.........2....74.3..51.......6.....
+.......51...2.3......4......5..8..6..94............3..3.2...6..7.....2......5....
+.......61...32....5........23....7.....8.1.4.9..........16.4.......3.2...........
+.......415...2.......8......18..........3.6...9.......6.....35.7..1.4......9.....
+.......16.7.....4..5.2.....4...6.3.......82......41......5..79.1.................
+.......31..7.2.....8.......1..3..........82..6.........2....74.3..51.......6.....
+.......314...2.....1.5........3...6.2....6...8...........7..8...6....2...39......
+.......41.2..6....8...7....3..4..6.......2......1.........3.7...1.5.......5....3.
+.......51.6..2................145....4....78....3.....1.85.........6.2..3........
+.......16.4...5.......2.......6..43.2...1....3.....5.......37..1..8.......2......
+.......438...5...........1...76..2......8.7...1..........1.4.2.6.....5.....3.....
+.......124...9...........5..7.2.....6.....4.....1.8....18..........3.7..5.2......
+.......15...83..........2...23...8.......1....8.......1.5.4.......6..72.9........
+.......293..7........8...4.6.....7......42.........1...49..........1..5....3..6..
+.......52...7...4.1.........1.6.........3.8...24.........2..1.....4.5...3.....6..
+.......13....3..8..7..........2.6....3....9......1....6..5..2.4...4..7..1........
+.......13...7...6....5.8......4..8..1.6............2..74.....5..2....4......1....
+.......31..8.2.....7.......6..3..........82..1.........2....74.3..51.......6.....
+.......412..5..........7...5.....2......4.6......36....34.......1.....3....8..5..
+.......218...4...........6..9.2.....7.....4.....5.1....15..........3.9..6.2......
+.......26.4.7.............1...9..8..4.....5....1..........12.5..7....3..3...6....
+.......29...83.......4...7.2.3...6.....1..3..7.........8..5.1.......2....1.......
+.......32...1......5........4....8.....31.......6.2...3.....76.....8.5..8.2......
+.......348..6........1.....6.5...1......4..7.2...9.....43............2.1.9.......
+.......46.5..1................4.8.3..17......6............7.1.23..2..5..4........
+.......61.3.2..............1.6.5..4....7..3..5........4..3..2...8....7......1....
+.......13...7...6....5.9......4..9..1.6............2..74.....5..8....4......1....
+.......13.4.....8.2...6....9.6...4.....8........3......3.1..5......4.7.6.........
+.......233...1.......5...6.4.....7.....1.6......2......92...1......4.8...6.......
+.......24....8..1.6....5......3..7...4.7......1...........4.5.13..6.....2........
+.......3128..................361.........427..........42....8..5...7.4.....3.....
+.......51.4...6......3.....1.5.3..........82.7........62....4.....75.......1.....
+.......63...1.....2.........5....1.....4..2....9..6...63..9.......2..74...8......
+.......21.9.3..............4.2.........7..3..6.....7.....54..6..8....5..1....2...
+.......435...8...........1....37.5...1.............2.....1.4.2...57.....8.....6..
+.......314...2.........9......3.1.5.6..5.....2.8..........7.2...3.6...........4..
+.......486..2........7...1.....4..6.5.....3....2..1......35.7...1.............2..
+.......27.1.9.....5......6....3..4..6......5.........8.94...1......26.........3..
+.......31.2.7.......85.........162..4...3.....5.......3......5....2..7......4....
+.......31.6..4...............28.14..5..3...1......7.......5.6..73.......1........
+.......3128.......5..1.........378..6.....2......4.....3.....4.1..5........6.....
+.......362...3....5.......17...8.2...1..............8.3.9...4.....5.1......6.....
+.......513...2.......8......42..........9.6...1.......6.....39.7..5.1......4.....
+.......3248........1.......5.3....6.....1.8...........17....4.....6.2......3....5
+.......382...5.......4...1.8.....6.......1......2......41...5.....62.7...3.......
+.......43....15......2........42.....5....6.....9..........817.4.3......2.....8..
+.......316..2.........9........8.29.31.......4.........49...5.....6.3......7.....
+.......25...8...1.4.........5....7.....3..6...1.......6...2.4..8....7.......15...
+.......316...2........7.....5.1.8...2.....6.....3...7.....4.2...3.5.....7........
+.......387...4...........1....1.8...2.....6.....3...4...65..2......6.7...1.......
+.......417..6.....2..5.........81....3..4....5.........1..3.......2..7........65.
+.......18.5.6............3.4..5..2....1..........9....82....6.....41.7.......3...
+.......51.6..2....1..7........5...3..2..3.....4.......3.....2.....8..4..5.9......
+.......742...5............1...1.4.3.5.....6....87........39.8...1.............2..
+.......5316................4.....6.7...3.5......8.........241....3....2..7..1....
+.......17.9.6............5.2.....8.3....5.4.......1...6..2..3...41.7.............
+.......54...8.3............1.5.4.......2..93.6........5....7.......1...2.3....8..
+.......362...3....5.......14...7.2...1..............8.3.8...4.....5.1......6.....
+.......127...6...........5..8.2.....6.....4.....1.9....19..........3.8..5.2......
+.......25.......7.8........6.....1.3....7.4......2.....531......2...5......6..3..
+.......25.8....6.......1...3..4..7......5...8............28.4..1.7....3....5.....
+.......31....79.............132.......4...7.....1.....5...4.67.28..........3.....
+.......382..4.........7..1.8.....5.......1......2......71...4.....52.6...3.......
+.......431..2.................6..7...3....2....5.8....27.1.........3..659........
+.......31.8.4.....6...........2..84.7..6.....1........5...73....9....2......1....
+.......134..8.....2......7....4..9....1.......6..........5.16..38....2......7....
+.......71.2.4.....6.........8....2......37.......1.......2..54.3..5.....1.9......
+.......162...........3.....6.17....2...9..5..4.........3....8......6..4..5..4....
+.......53.....8.1.3..4.........15.2.7.....4....6.........72.6...1.............2..
+.......29...83.......4...7.2.3...6.....1..3..7.........4..5.1.......2....1.......
+.......43...8...7.....2.....6.5..8.....3.4.....1......37....2......1.9..4........
+.......51.9..3..............7.4..62....5.1......8.........7.3..5.4......2.....4..
+.......514..8.....2.........1..57...3.....2......6.4...57....6....2..3...........
+.......34.8.1............6.....39.......4.8....1......36.2.....4.....7.....7..5..
+.......28.3.....5.6........1...5.6.4....62.........7...28.........7..3.....1.....
+.......37.4.6............1..96...2.......58......1....1.7....5....4..6..3........
+.......473..5............1.7.9...6......1..........2.....2..7.5.41..8....3.......
+.......512..8.....4.........1..57...3.....2......6.4...57....6....2..3...........
+.......147...........5......9..14....5....72....6........9..8.56.....9..1........
+.......17.9.6............3.4..5..2....1..........8....72....6.....41.5.......3...
+.......368...1........2.....3.6.2.........19....5..8..1.....9...6.....7....3.....
+.......43....8..5......1...7..5..6.....3.4...1.........4.2.........7.1...3....9..
+.......24..7........6......5...9.1.....3..6...2.......94.....5....6.73.....8.....
+.......28....7..4....3......74....5....6..3.......1...63....1..2...4..........6..
+.......467...1........3.....4.6.3.........19....8..7..1.....9...2.....8....4.....
+.......15...9...8.4........7.4...3.....1..9.....8.....5...3.2......7..6..1.......
+.......176...2.............153..........8.2....7......4..3.15...2....6.....7.....
+.......28....5........4....7.82......4....3.....6.....6..8.1....3....45.......9..
+.......397..4.......3....1.68....2......3.7.......1....4.6..5.........2.....9....
+.......39...74........5..8....6..7...83............1..1..2..6.......3.5.2........
+.......31.6.2........7.8...3...5..4..7....2......1....1...4.......6..8..5........
+.......61.2.5..............1...64....5....2..8...........25.3..6.1....4....7.....
+.......81.2.5..............4...31...7.....2...6..........26.5..1.3....4....7.....
+.......19.7.....3.2..8......5.6..2....1.........2.........195..6.....4......3....
+.......234..8.....1.....9...5..32.........4......7.......4.18...3.....6....9.....
+.......413...2.......5......15..........7.6...8.......6.....37.2..1.4......8.....
+.......128...4...........6..9.2.....7.....4.....5.1....15..........3.9..6.2......
+.......215..4..............3.....57.6...8........1.....1.6.5....82...........74..
+.......315...7.........6...7.....56...14......2....7..6.....8...3.1........2.....
+.......83....14......2........32.....9....4.....7..........615.3.8......2.....6..
+.......15...8...7.3........4.8...3.....1..4.....7.....5...4.2......9..6..1.......
+.......417...5....2...........8.1.3.65....7.....4......816.........2.9...........
+.......418...5....2...........7.1.3.65....2.....4......716.........8.9...........
+.......432..8............7.6..2..5...7.....3....1.........6.2.5.9..4..........1..
+.......47.1..5................4.8.3..65......7............6.1.23..2..5..4........
+.......2519..........6.......6.3.7........1....2......4..2.5....6....34....8.....
+.......31..7.2.....8.......6..3..........82..1.........4....72.3..51.......6.....
+.......32.4.......9........3.27...5....1..8..6.........7....1...8..6........3...6
+.......421..8............7.6..3..5...7.....2....1.........6.1.5.9..4..........3..
+.......618....7.......2.....321........65.8................372.91.4..............
+.......421..7............8.6..3..5...4.....2....1.........6.1.5.9..4..........3..
+.......458..2........1.....1.6...2......5..7.3...9.....54............3.2.9.......
+.......13...5...7....8.2......4..9..1.7............2..89.....5..4....6......1....
+.......218..6.........5.....3.1.2...5.....84.............78.5..62.........4......
+.......514...3.......8.....25.1.....3.....74......6.......4.3...6...7....1.......
+.......81....9..3.7....4......2..6...3.8......1...........1.4.35..6.....2........
+.......29...73........5..8....6..7...82............1..4..1..6.......2.5.1........
+.......318...2....2.........371...6..1..8.5...........5..4..8...6.3..............
+.......681...............3..6..3.......4..1....8...2..4..2..5..73..........1.8...
+.......93....14......2........32.....4....5.....8..........716.3.9......2.....7..
+.......217...6....49...........7.9....38......2.......96....8.....3.2......1.....
+.......28.7...9...........3...3.2....4....5...........8...5.1......4.76.3..6.....
+.......316..8...............3....85..2..1.......4.....8.4...6....6.3....7....5...
+.......38.....9..1...5...2....46.5..8..2.....1.........4....6......21...7........
+.......51.2..6....7...4....64....3.....1.5.8.2..........18.....3.....6...........
+.......612...3....4.........2.8.1...5..6..7.........4..81..........7.4....3......
+.......15...9...8.3........7.4...3.....1..4.....8.....5...4.2......7..6..1.......
+.......39...14........8..7....6..2...37............1..5..2..6.......3.4.6........
+.......416...........8.....5..6..2...4.....7....3.........716....2...3...7..4....
+.......612...3.................7.24..6.5...........3....56.1...3.....82....7.....
+.......21.4.5.....8........7...92.........65.............61.4..32.........58.....
+.......39...14........8..7....5..2...37............1..5..2..6.......3.4.2........
+.......461...............8....13.2...84..5......7......6..84...3.....1.....2.....
+.......51.8.2..............93....8......14......5.....4.1....7....6..2.....38....
+.......61...2.3......7.......5.6.4.......23..1...........54..8.32.......7........
+......2.4.....1.......8.....2.4..5......3.7.........8.1..2....68.6....1....7.....
+.......25...8...1.9.........5....7.....3..9...1.......6...2.4..8....7.......15...
+.......38....2........9....8.....2.....6..1....73........7.1.6.29....5...4.......
+.......46.2....7....1...........183.6.......9..........8....21.4..69.......5.....
+.......51...4.2...8...7....2..6..4..7......8....5.........3.2...16.......5.......
+.......516....3....9..4.....125..........79..4........5.....78.....2.......1.....
+.......816...4.......23....4......5.3..7........1.........5.3...1....2...87......
+......1.8...6.5......4..3...4....62.....1.....2.......1.6....5....2...7.3........
+......2.1.4..3.........6...6...72....3.....4....1..5..2.18...........73..........
+.......13.4.....9.2...7....6.7...4.....3........9......3.1..5......6.8.7.........
+.......247......6....9.......4..1....2..5........3.7.....4..8..3.....5..6..2.....
+.......317..2......4.......5.27...6....8..7...3...........93...2.....5......1....
+.......51.2.6...............7....2..3...5........4.8..5.1....3.4....8......2..6..
+.......61....27............7.4...2.....1...4.3........51....7......48....9.6.....
+.......61.7.5........4.....6.3.5.......2..1.........4.2....6.......39....1....8..
+......2.1...37.............43..1.........26...8.....7....8..53...1....2.7........
+.......15.4..8..........3......4.26.5..1.7...9........3..5......8....4.....9.....
+.......46.2....3....1...........173.6.......8..........3....21.4..68.......5.....
+.......56..38.....4............62.........41.......3.....45.1...6.1.....72.......
+.......21.6.3........7.8...1...5..4..7....3......2....2...4.......6..8..5........
+.......31..7.2.....8.......6..3..........82..1.........2....74.3..51.......6.....
+.......412..7.............6...3..8...9....5...6..4....7.....23.3...6.........1...
+.......613..8..............5.....4......14.......7.8...1.62.......5..39...7......
+.......3549........1.......6.3....7.....1.9...........18....4.....5.2......3....6
+.......518..2...............4..7.3......51....9..........3.92..5.7....6.1........
+......27..3.9...........1..2...1........5...3.4.......1.....52....4....68..3.....
+.......15...8...7.4........6.9...3.....1..8.....7.....5...3.2......6..4..1.......
+.......51...3.8......1......9..5..6..2....1...........6.17..8..4...2....5........
+.......57....8..1..7..2....3.1.........6..4..5.....6...4....2.....1.3......5.....
+.......153..6............8.6...5.2.......1..........4..1.2..7.....76.3....8......
+.......31.8.....7....92....4.1.........2..8..3.........9....25.....8.6.......1...
+.......4152...........3........7.53.1..8.....4........6..1.5....3....2.....4.....
+.......4163..........8......1.....7..7..3........2.5..5..1.4...2.....6.....7.....
+.......432..7............8.6..2..5...4.....3....1.........6.2.5.9..4..........1..
+.......51...4.2...8...7....2..6..4..7......3....5.........3.2...16.......5.......
+.......612..3.................16.....2..4....8.....3...6....74....8..2....35.....
+.......713..5.....6..4.........72....8..1....4.........7..2.......3..6........54.
+......1.29...5..........8...6..7..4...1.........3..........146.32.....5....8.....
+......1.7.....13..8...5....2..3.......6....5.4...........2...4..1....2...3.7.....
+......1.8...4.7......5..3...4....62.....1.....2.......7.1....5....2...7.3........
+......1.2......34...5.8....36...........9..5..1.......1..4.3.....7...6.....1.....
+......1.6.2....5......82....1....2......4..3....5.....7.3....4.4..6..........1...
+.......15...4...7.4........6.9...3.....1..8.....7.....5...3.2......6..4..1.......
+.......3174...............9.....346.2.....5......9.......57.8...3.8.......1......
+.......813..2.........74...2.....56.7...1.........9......8..2...14.......9.......
+......1.2...3..6.....4.8......5...4.2...6....1............7.2...5..1.....4.....3.
+.......31.6.4..............5...37....9....2.......1...7..84.......6..49.1........
+.......31.8..4.....7.......1.63...7.3............8....54....8.....6..2.....1.....
+.......497..2........8...1.....4..7.5.....3....2..1......36.8...1.............2..
+.......536..7............2.....395..2.....8......1.......2..64...34......1.......
+.......613...2.......7......17..........8.5...9.......5.....38.6..4.1......9.....
+.......7415...............8.1....23.6...48.......7....2..5..1.....3.......4......
+.......345..9................47..1...6....2...38......2.....5.7....36.4..........
+.......369...4...........1....1.3...2.....4.....6...5...75..2......6.8...1.......
+.......541..3.................7..3...4....2....6.8....32.1.........4..769........
+.......715...2.......8......47..........9.6...1.......6.....25.7..1.3......4.....
+.......916..3......7.......4.....5......29.......1.......5..68.31........2.8.....
+......1.52....7.......3.6....9...4...1.5..........2.3.3......7....98.......1.....
+.......15...9...7.4........6.8...3.....1..8.....7.....5...3.2......6..4..1.......
+.......218..4.......9......6..57..4.3.....8......2.....7.9..4...21...............
+.......24.1.3......7........6....3......29...8........4..1..6..2......75..9......
+.......31..8.2.....9.......7..3..........94..1.........5....24.3..61.......7.....
+.......52..34......7........3...56......2..1.....81...2.......8...6..7..1........
+.......53...4....6.8.......5.6...7......1.4..3......2..1....2.....3.5......7.....
+.......61.5.7.....2....9......8..3..4.1......6............6..8..3..4.....2....7..
+.......825..3..............3...72...4.....63.....1.......8..5...81.......2......7
+.......14..8..5....2...........2.7.51..............8...7....53.6..14.......2.....
+.......268..7.............57...3.1.......65......2.....264...........81..3.......
+.......31..5.2.....8.......7..3..........84..1.........4....25.3..61.......7.....
+.......34...1....78......9.98....2..6...4.......7..........98....7.3.....1.......
+.......375......4..9..........51.2....3...9...6.......2.....16....7.3......8.....
+.......419..7..............2.....96..8.14........3....6....97.....3..5...4.......
+.......516...3................5.4.9.8.26..........1.......2.8..7.....3...5.1.....
+......1.4.....36......5...25.3......2..6........1...8.....7.23..1..........4.....
+......23.5..7..........1....2....6.1...5...8.....4.......32.9..1.5......8........
+.......312...8.......4......31..5.6....72.8..............6.3...4.....2..7........
+.......512...6.................8.72..5.4...........6....45.1...6.....23....8.....
+.......71.5.6.....2....9......8..3..4.7......1............1..2..3..4.....2....6..
+.......71.6.5................5.4.6...3....2.......7......8..54.1.73.....2........
+......3.1.2..7..........8....85.....3.......7....6..2....8.14..2......5..6.......
+.......397..4.......3....1.48....2......3.7.......1....4.6..5.........2.....9....
+.......43.1..5................4.8.3..95......7............9.1.58..2..6..4........
+.......713..2........4.........78.4.2.....3...5..1....4.....5....7.6.......5.....
+......2.1.8.3...............6.....3....2.5.......41.....578..6.1.....4..2........
+.......41.2.5..................94.7.58.............2.....62.3..9.4......7..8.....
+.......41.5..8.............6..1.7....3....5.....4...2.4.....8......5.3....16.....
+.......43.5.2......8...9....6....8..1...3.............3.751.......8..2..4........
+.......51.2.6.................3..78.4..9.....1.........7...52..6...1........4.6..
+.......524...6...........1..7.2.....6.....4.....1.8....18..........3.7..5.2......
+.......614.3.......2.......3.8...4.....6.2......1......6.5.....1......7.....8.3..
+.......71..25..............78.....3....42.......1......5...72....46..5..3........
+.......716..5.....3..4.........72....8..1....4.........7..2.......3..6........54.
+.......83.2.1............4....61.2..8.....9....4.......6.3..5..1......7......8...
+.......21.6.7..............4.2.........6..3..5.....7.....34..5..8....6..1....2...
+.......345......1.....7....4.531..........2..1...........6..7...87.......2.4.....
+.......81.2.6.....4.........9....2......38.......1.......5..72.3..4.....1.5......
+.......812..5......3........2.4.6.....8....7....2.......1.8........3.2..7.....4..
+......1.39...5..........7...6..2..4...1.........3..........146.82.....5....7.....
+.......817...5.....2.......6.12......8.....4.....9.3..3....4...2.....5.....8.....
+......1.25..6...............23...7.....4.5....1....3.....17........2..8.8......4.
+......31....2.5............2.....6.......34.....41....84.6........72...5.3.......
+.......71.6..2....3.........5....26....1.8......3........43.5..1.8........7......
+.......754...6...........1...21.5......7...4.9.....3.....39.8...1.............2..
+.......81.2.3......4...6......6..42.8.1.5..........7.....4..2..5...8.............
+......2.1....2.5...8...4......23.....9.....4....5.....6.21.....5.....3.........7.
+......2.1..5.9.....38......12.4.........3..8.7..............43....2.1......6.....
+.......15...9...7.4........6.9...3.....1..8.....7.....5...3.2......6..4..1.......
+.......415..3.....2...........26.3...1.....6.7..5......8..41.......8.2...........
+.......51.6...7.......3.........62..7......3.5..1......14...6.....85.7...........
+......1.82..3.....6.........1..54..........2......8......23..4..8....5..7..6.....
+.......31.6.5.........2.......46.5..3....7...8...........7...8.1....3....2....6..
+.......81...4.9......2......6..81.....4...23..........38..7....2..5..9...........
+......1.2...3..5.....7.8......4...7.6...5....1............4.6...7..1.....3.....4.
+.......81.2.7.....5.........9....4......38.......1.......6..24.3..5.....1.6......
+......1.7...5..3.....6.2...8......266......4.....1....41....7.....2......3.......
+.......457..2........1.....1.6...2......5..6.3...8.....54............3.2.8.......
+......31.45.............4..2......85...3.1....7..........26...4....7.6....1......
+.......23...8...1.8..4......325...........1...7.......6...7...41.....5.......3...
+.......418..5..............2.....86..7.14........3....6....82.....3..5...4.......
+.......65...3.........1........4.17.5.9............8..27.5......1....3.....9.6...
+.......265.1................7.2.6...3.....15....8......2.7...........54.....1.3..
+.......46...8...1.5........7.9...3.....1..8.....4.....6...3.2......7..5..1.......
+.......628..3............5..4.2..1...6.....4.......7....1.56...7.....3......4....
+.......718...4.............67.2.........9.3........4...2.7.1...3.....84....5.....
+.......39...74........5..8....6..7...83............1..1..2..6.......3.5.6........
+.......61...4...8.3............2.54..1.......8........7..8..3....5...2.....6.3...
+.......61...8.....4...........3..78.16.5.....2.........3..6........2.4...8....3..
+.......638...9...........1...5.2.4...1.............2..2..6..5.....1.3.7....4.....
+.......754...6...........1...31.5......7...4.9.....3.....39.8...1.............2..
+.......81.5.6.....2....9......7..3..4.8......1............1..7..3..4.....2....6..
+.......81.9...5.............7....63.4..81.......2.....2.1.6.........35........7..
+......1.86..3.....2.........1..58..........2......1......23..4..8....9..7..6.....
+......17..2.9...........6..6...1........4...2.3.......1.....46....3....58..2.....
+.......368..7............9..9......1.6.....2....5..4......39.....4...8..7.....5..
+.......417...9....2.........3.1.4....4.2.......8...5..1...5.6.........8.......7..
+.......713..2..................6.3...1..3......4......6.....54....4.72..8..1.....
+.......61..57......2..........43.5..1...6....98.......6....8.1....5..7...........
+.......7532...............8.1....24.6...58.......7....2..4..1.....3.......5......
+.......812..7.................23.7...1.....5...86.....7.....4...3..8........5.2..
+......2.1.9..3............4..6...53.3..4........1.........9..8.2.4......17.......
+.......71.2.6..............1...73....6....2..5...........26.4..7.3....5....8.....
+.......1298..........6.....1..7...8.4.2.........3..6...7....3...5..4........1....
+.......17.9.8............4...7.6.3...5....2.......1...6..3..8..4.1..........5....
+.......68.3..7....4......2..7....45....2.8......1.........3.1..2..6...........9..
+.......71.2.4.....5.........8....6......37.......1.......6..24.3..5.....1.9......
+......1.....5.....2.........354.........1.8...7....2....4....956....8.......2..3.
+......1.7.2..3..........6......4..2.7..6.....1.........4.2...5...8...3.....1.5...
+......21..73............6..19..8...........43....2....2..5..1.....4.7......3.....
+.......46...5...1.5........7.9...3.....1..8.....4.....6...3.2......7..5..1.......
+.......51.6.4.................39.6..5...8..........4...4.6..7..1...5..8....2.....
+.......81.9...5.............7....63.4..81.......2.....2.1.6.........37........5..
+.......38.9.2...........51.74....6.......3.7.....1......56..2....3......1........
+.......513...4....2.........561......7.6.........3.8...1.5...6.4.....3...........
+.......54.1.9.....2............56....3....9...7.......6..1..7....4....825........
+.......813...2.......7......48..........6.2...1.......6.....35.7..5.4......1.....
+.......814..3.....3...5....19....5......82......6......82....5....7..4...........
+.......215..4........8......215......7....6.........3.4.....8..3...7......6.2....
+.......397..4.......3....1.84....2......3.7.......1....8.6..5.........2.....9....
+.......6135.......4...5.....2....8.....6.1......7.........8.2..6..4.......7....1.
+.......195..6..............6...8.5...4....3......1....38.....4....2..7...1.9.....
+.......814..3.....3...5....19....5......28......6......82....5....7..4...........
+.......21..4.9.....7.....3.1..2.3...5..8.......6......2.....6......6.4...3.......
+.......67..39......1......46....4....5..1..........1.....8..52...7...3..4........
+.......74..28.............3.7.53....6......1.......2..54....6......71...7........
+.......61.4..5.........7....7...35.....1...4.5........3.16.........2.8........4..
+.......715..4.....3........4..3.65...1.....6....2......8....2......17.......8....
+.......43.1..5................8.4.3..95......7............9.1.58..2..6..4........
+......1.2...3..6.....7.9......4...3.2...5....1............8.2...4..1.....3.....7.
+......12.....4.7...3...7....57.....8...41.......2............534..6.....1........
+......265..4.1....2........6..2.8....3.....14...7......13.........6..8...........
+.......46...8...1.5........7.9...3.....1..8.....4.....6...3.2......9..5..1.......
+.......5146........8...........5.67...1.2....3.........5....4..2..3........1.9...
+.......61.5..3.............68..4.7..2..6...........5..9..1.6.........38....2.....
+.......71.5...3....4..8.....3....5..2..1.....6............4.3..7......4.1..6.....
+.......814..3.....3...5....68....5......12......7.......2....5....6..4...1.......
+......1.85...4..........7...3..5..2...1.........2..........136.82.....4....7.....
+......2.1.8..5.............6..2.1......5..74....3.........84.5.3.2......1........
+......3.1.4..2.........6...6...73....2.....4....1..5..1.38...........72..........
+......3.146..........2.........7.46...1.............8..2....74.5..1.3......5.....
+......1.2...3..5.....6.8......4...3.2...5....1............7.2...8..1.....3.....6.
+......1.27...5..........9...6..7..8...1.........3..........146.32.....5....9.....
+......1.6....25...3..........91..4.....4............2.52.....8....63.7.......7...
+......1.7.....13..8...4....5..3.......6....4.2...........2...5..1....2...3.7.....
+.......41.7..6.....3.......4..2.1.5..6....7.....8.........5.3..1..4.....2........
+.......419..5..............2.....96..8.14........3....6....97.....3..5...4.......
+.......56.8..1......2....3....2.3...3..6......1....9..6..7.........8.4........1..
+.......841..6..................4.1.3.3..2....5.....6...48....2....7.15...........
+.......917...3....2..5.....6.....2...4.9..............5....8.4..9...1.......6.3..
+.......918..2........4......6..17.3.2.....6......9......1.5.......8..2...4.......
+.......16...5...4.3...7....9.....2.....4.8...7..6.........237...4........1.......
+.......51...7.2......4......5..8..3..84............7..3.2...6..7.....2......5....
+.......542...7........1.....6....73...54..............71....2..8..3........5....9
+.......81.3...5............5...746..1.9................8....37.6..91.......2.....
+......15..8..2................5.14..87..........4.......1...32.....8...75..6.....
+......3.164..........2.........7.46...1.............8..2....74.5..1.3......5.....
+.......34.6.2............7....96.8..3.1......7..8......7...3...9.....2......1....
+.......912..6...............4..1.6......39....7....2.....4..57.3..8.....1........
+.......912..8.....6.........4..91.........25.....3.......6.48..7..5......9.......
+......18....2.5........3....1..8.......6....2..3..........4.71.6.....3..2..5.....
+.......418...2..............4.5.9.....7...2........8..6.....39.2..41.......7.....
+.......59...13.............34.....2..5...9......8..6..8.....3.7....54.........1..
+.......63...5....4.8.......6.3...7......1.5..4......2..1....2.....4.6......7.....
+.......811...6.....7..5......9...76....1.2......8..4.....3..5..8......2..........
+......1.89...4..........7...3..5..6...1.........2..........135.82.....4....7.....
+.......61.5..3...................25.6..4.........5.3...2....73.4..6.1......8.....
+.......612..7........8......13.6.....5.4..7........2......1..5.7.....4..8........
+......23.1.4......5.........2....91.....4.7.....85....4.......1...9.3......2.....
+......3.15..........6.......3..71.....2....6.4........17....4.....26..5....8.....
+......3.259.........4.........8.1.9....7..1..2.........1.....7...3.2.......94....
+.......346..9................47..1...5....2...38......2.....6.7....43.5..........
+......23.7...1...........5...25......3....7......9....6..2.7...8.......1...3..4..
+......3.15..8...........7...3..1........3..5.6......4...25.4....1....8.....6.....
+.......812..5......3........2.4.6.....1....7....2.......8.1........3.2..7.....4..
+......1.27...5..........8...6..7..4...1.........3..........146.32.....5....8.....
+.......39....7..8....14....6.....5..2..6..........3.7....2..6...83............1..
+.......516..2.................4.62...5.3......7...........75.3.4.8...6......1....
+.......54.1.7.....2............56....3....7...8.......6..1..3....4....725........
+.......81.3.2..............1.8.6..4....7..3..6........5..3..7...9....2......1....
+......1.8.....83..7...4....5..3.......6....4.2...........2...5..8....2...3.1.....
+.......125....8......7.....6..12....7.....45.....3.....3....8.....5..7...2.......
+.......213...9.............5..63.....1.....8.......5..7.4...6..6..2........1.8...
+.......6189...................52.4......3.....6.......53...6.7.2.....8.....1.7...
+.......643..8............1..41....7..5...8......9..5..9.6...8......1..........2..
+.......716..5......4.......5.26...3....9..6...7...........13...8.....9......7....
+.......91.8.2..............93....8......14......5.....1.4....7....6..2.....38....
+.......21.4.5.....7........1...82.........65.............61.4..32.........57.....
+.......61..98................4.2.5...3....8.......6......7..43.16.3.....2........
+.......754...6...........1...21.5......7...4.6.....3.....39.8...1.............2..
+.......81.2.3.....7.........4....7......18.......5.......6..23.5..4.....1.6......
+.......81.4.3......2...6......6..42.8.1.5..........7.....4..2..5...8.............
+.......91.6..7...............5.3.76.......2..1........3..1....4.82.........4.9...
+.......94...4...7.1........2.8...6.....75..........1...3..6.5...47...........2...
+......3.14..7...........2...2..8........3..6.5......4...14.6....3....1.....5.....
+.......613..7......9.4.....71..8.......3..4.........2.....62...5.....9......1....
+.......814..3.....3...5....19....5......28......6......82....5....4..7...........
+.......84.5..1...........5.....3.62.8..2.....4.........73...1.....5.8.........9..
+......1.24...5..........9...6..7..8...1.........3..........146.32.....5....9.....
+......1.93..4...........2...27..6......8..5....9......51..2....4......3.....9....
+......1356.8.............4..3.4...1.....27....5.......2.....7.6......2.....3.....
+......28.....9.3..6.........3..2....4.......1...5...4....1.4..6..2...7.....6.....
+.......614...7........9.......6.82..9.1......2..1.........5.4...6.3............9.
+.......72.1...........6.......7..51.9.2......4...........51.6..3.......9...8.7...
+.......7562...............8.1....24.3...58.......7....2..4..1.....3.......5......
+......1.....5.....2.........354.........1.7...8....2....4....596...7.........2.3.
+......1.3...4..5..67...........2..7.3..........1..........634....75......2.....8.
+......1.639.............5.....61.2..87..........5........4.7.3...1.5...........8.
+......13..2.4.................6...257...8....1............167....52......4....3..
+......21........54..3.7......6...7...3.5..........1......86.4..21.......5........
+.......31.5..8.............6..3.7....4....5.....1...2.1.....8......5.4....32.....
+.......41.6.8........3.....2...54.7..8............1......63.8..7.....2..4........
+.......645...8...........1....3.57...1.....4.....7....7.8...2.....6..8.....1.....
+.......713..5.................3.85....26......7...........7.32.8...5.....1..4....
+.......816...7................8.5.4.7.2......3..1.....2.....7......9.3...8.5.....
+......3.14...7.............2..1..6.....3.65..7.9..........8..2..3.5............7.
+.......293..6.........8..7.8.....6......21.........1...29.........8...3....4..5..
+.......518..7.....3..6.........12....9..5....6.........1..4.......3..8........76.
+.......83....3..1..7..........2.4....3....6......1....2..6..4.5...5..7..1........
+......23..5.......8...........5...8...2.3....4.......1...1.4..5.3....7.....6..4..
+.......415..9......7.6........35.6..4.2......8............4..8..9....3...3.......
+......1.79...2..........8.....7.15..4......3....9........34..6...8....2..1.......
+......3.24..5........4..1...18...2.....6.9....3.......6......57....1...........9.
+......3.5.....2......4.......1.5.......6...4.......72....13.6..72......84........
+.......6189...................52.4......3.....6.......53...6.7.2.....9.....1.7...
+.......812..7.................23.7...1.....5...86.....7.....4...4..8........5.2..
+.......81.2.7.....5.........6....2......38.......1.......6..74.2..5.....1.3......
+......1.52..8...........3......71........48..3...5.......3...26..4....5..1.......
+.......852...3...........3..4..1.6...58.........7.....7..4..1.....5..2.......8...
+......1.38..6.....2.....7.....4.6.8..1..........7.......8..3....3..1....4...5....
+......1.9...4..2.....5.8......3...8.1......4.2.........6....73.43...........1....
+......34.2...9..........7.....3.42..1...........6.......42.5....3.....8.....1...9
+......38.....1....2...........6.7.3.1.....5..4..2......3....1.5.6.8.............4
+.......51...3.9......1......8..5..6..2....1...........6.17..3..4...2....5........
+.......612..5.....8...........2..7...37.......6.4.....1.....2......68.......3..4.
+.......91.6...5.............8....63.4..91.......2.....2.1.7.........35........8..
+......1.29...5..........8...4..6..7...1.........3..........146.32.....5....8.....
+......14.4.....6.....5........3.5..82..7.....1.6.......5.....836...1.............
+......2.6.1.5...........3..4.3.26....5...7.......3.......8...1.3.6......7........
+.......518...7....3.........4..8.7.....6.......5........65.1....3....87.......2..
+.......715...3.......6.....6.....8..2..4........7.2.......8.3...41.......7.....2.
+......27.93..............4.5..4..1.6...8.7......2.........1...9.12........7......
+......3.2....4.........5...54....1.....2..8..76.........136.......8...6........5.
+.......51.4.7...............9....7......51.......6..3....4.62..3.....8..5.6......
+......91...78...........2.....4...8729........3.........5..7..61...2..........4..
+......3.47..8...........1.....7.5.2...3...6...1.......2......75....34.......6....
+......6.12..6.....4..........3...7.....2...5..1.8.....5...3..6..2..1..........4..
+.....2.16..85.................3..8..7.....3..61..........276....94..........1....
+.......1579..........2..........87.6..1............9...7....83.4..15.......3.....
+.....13..4.......58........5..46.....1....73.....8.....372............64.........
+.......82....31.............8.42....4.....1.....5.....6.1...3.....2...5.7.....6..
+......1.8..94........3..7..6......4.....2........1....37...5....1....2.....6...8.
+.....1.7..8......3............86...21..3.....4.....5..5.....14..63.8.............
+......16.2...7....3.....8.....6.89..42..........5.........4...2..8....5..6.......
+......6.8.....31......5...25.3......2..6........1...4.....7.23..1..........4.....
+.......21.3.6.........8....2.1....5.5..4........37....7....2....8....3........6..
+......3.14..9...........6...3..6........1..7.5......4...24.7....6....8.....5.....
+.....2.5..6....3...4.5........63....8......7....1.........1.6.45....7...2........
+.....24.........8..1........9.7...........5.4......26.5.4.3.......8...1.2.......7
+......51.4..3.....2...........71..6.8.....4...5........1...8.....6....3....2..8..
+.......825....6..........9.6.....3.....92...........4.....531...9.6.......8...7..
+......6.1.4.2.................7...2.13.......5..4.....4.2.1........563.........8.
+......54283..............6..42.6.......1..7...........7.....1.8...942............
+.......914...7.............7..3.....8.....4.....1.6....195...6.....4.8..2........
+.......1.4.........2...........5.6.4..8...3....1.9....3..4..2...5.1........8.7...
+......3.16...2....38...........7..6..1.........5......74.....9....1.54.....2.....
+.......15.2..6..........4.8..3...9.....1..........8...15.4.........7.3..8......6.
+.......21..68............7..7..21....2....4.......5...5..43.6..1...........6.....
+......6.18..3........9......7..64.......1..2........3.2.8..........7.4..3..5.....
+.....1.3..9....2..7..5.....1.3.6.......4..7..8.........7.29...........81.........
+......73.....5........4...........29.7.....5..3.8........3.74..5.....1..2..6.....
+.......21..5.8....6...........67.3..12....5..4...........2.1.4...3.......8.......
+......3.21..6...........8.....56..1.53..........8......2...37......27...4........
+.....2.7..8....3.....6..4..3...6..2..1.4.................5..1.87.2.3.............
+.......14....2....5.........1.8.4...7.....5.....1.........5.73...42......3....6..
+.......71.8.3........2.....4.7.2.......6..8..1.....3..5...7..4..3....6...........
+......3.176..........2.........8.67...1.............9..7....84.5..1.3......5.....
+......7.18..9...........3...3..7........4..8.6......5...25.8....1....4.....6.....
+.....23...4..9....7........5..6..1.....48...........2....8....42......9.1.3......
+......613...54...........7..5.9..2..3.1...............7...31....8....5.9.........
+......16.2...4..........7.8...53..2...7....5..1.......3....64.....1.7............
+.....1.7..6......83.........5.26..........14....8.....4.1...3.....69....7........
+.......31.2.5..............3.1.7.......4..2..7.....5...7.2..6..8...1...........8.
+......1.3.2..9..........4......25.8..1.......4........3..1.4.....8....2....7..6..
+......96..8....5..74..............14..39........2.....1...47.....6...2......1....
+.......718...4..............7.2......3....8......9.4.....7.1.3.4..5..6..9........
+.......819..4.....7..6......82.......1..5.......7.........8..5..3....9..6.....4..
+......1.27..4...........8..3.....64.4....9.......1.....126........5...3..9.......
+.......21....83.......4....5..2...7..8....4...3.9.........6.8..1..7.....2........
+......2.1.8.4........7........54..8.3.2......1........5...326...7.....4..........
+......42.3.8......9...........58.1...4....7.....3......7...4.5....6...3.........8
+.....1..7.8....5.............7....9.....6..1..5.3........84.3..2.1...6..9........
+.....2.654.1................8......2...4..3......6........7.14.3..8.....25.......
+.......317...2.........6....4.1...5..3..8..........2..6..4..9..2....5......3.....
+.......198..5..............3...7.5...4....3......1....47.....6....2..4...1.9.....
+......1.92..6.........5.4......1.5.....7...3.3...........8.2.6..14.............7.
+.....2.5...7.1.....3.......56.4...........7.18...........73.4..2......6....1.....
+.......812..4.................23.7...1.....5...86.....7.....4...9..8........5.2..
+......8.12..3.....74..........5..34...64.....1............18.2..3..6.............
+......51.7...2..........6....9....8....57.....1.......6.....4.23..1.8......9.....
+.....16..4......2...........18.....7...32..5...6.......7....1.....25....3..4.....
+......36.8...5........43......2..7...43.......1.............5412..6........7.....
+......7.32.5..........1....1......4....8.7......3........7..35.42........1....6..
+.....1.7..8......3............86...21..3.....4.....5..5.....41..63.8.............
+.......71...2.8......6.....5.1.........3..2..7.........3..4.6..26...........7..5.
+.....1..6..9...8........3..68..........9...5..7.........738....2......14....6....
+......6.12..9.....54..........68.7..3......4....1.......6.1.........3.5..8.......
+.......816..4.....5..7......12.......8..9.......5.........1..5..3....6..7.....4..
+.......425...9...............61..7......3.8...24......39............4..6...2...5.
+......1.64.2..................5.7.3.5..8......1.......3.....84..7..16.......9....
+......2831..5.............963.....5....72....4...9.......6.1....2....9...........
+.......597..6........3......59..1....2..4..........13.8.7...3......5....4........
+.....1.5..8....4......3....2.1....3....8..7.....4...........61295...............3
+.....1.824...3....5........6..5..4.....2.8.6..............5.6...8.7......1.......
+.....2.1..4....6...5..3.......48.5..2.......31...........3....87......2....5.....
+......2.5...71..........3..5....3....6.....1.........8...18..4.2..6..7....3......
+......4.351.......8............346..1......5..7..2.......1...7...4...2.....8.....
+......5.79...1..........6...5.6.2....7.....8........1....7..4..83.......1..4.....
+.....1.436...8................7..9....1...6...3........7.....218..69.......5.....
+.....1.6.7..2...............64....3....7....5..1.........54.6...1....2..3...8....
+......4.8.7..1..........2...6.....3.4..8........2.....2..5..1......6..7...8.3....
+.......45...8...2.1..........562....7.......4......7...86...1......45....3.......
+......56.1....9...4..8......52....7..6.9........1......7..5....9.....3..........1
+.......689.......2...4..5...41..........35....5..........8...1.3.....7.....1..4..
+......1.48...7..........6..7..2........1.4....3.....8..12..........5..3.6.4......
+......9.12...6......73.....6...2..7..9....4......8....8......5....4.1......9.....
+.......518..2.....4.........1..95.........84..3..........76.3..25..........8.....
+......7.1.7.8..........4.......2..3.5..7.....3......4..48...6......135...........
+......4.76..8...............3..97.........38....2.........43..98.2....6.1........
+......6.18...9..........4..7..2........4.1....3.....9..12..........5..3.6.4......
+......1.63.2..................5.7.3.5..8......1.......2.....84..7..16.......9....
+......2.16..3.....7..........854.....2.....3....6..7...1..82...5......6..........
+......8.12..6.....46.......1.5...2.....3...7....9.........18....7.....9.....5....
+.......4265..........8.....1.....6......45...7....2......1..78...2.3.....4.......
+......1.47.2..................7.5.2.3..6......1.......2.....63..5..14.......8....
+......4.15..2...........3...3..1........4..1.6......5...25.7....4....8.....6.....
+......6.5..91............4....8..1..35........4.......2....67......35.....1.4....
+......71...52..............8...3..........4.5.......622..6.4...17....3.....5.....
+.......195..6..............6...8.5...4....3......1....48.....7....2..4...1.9.....
+.......71.6..2........3....7...6.3..4.....2..1..4........7.5.8..2..........1.....
+......6.1....5........7.....2.3...8...46............5.25....7.....1..4..8....9...
+......3.1...2..6.....7.9......4...2.3...5....1............8.1...4..3.....2.....7.
+.....1.6.5......7..8.......4..53.....1......6.........3..75..........1.2...6..8..
+.....2.6...7...3....4......8.....12....75........4....26.3......1......7......5..
+......1.58.2..................8.6.2.4..7......1.......2.....73..6..15.......9....
+.......41..93...........52....8..3..42.......5.......7.6...42......1......8......
+......3.1.....87..4..6.....6......2.....7.1.......3......24..6...85......1.......
+.......316....8.......5.......37..2.58........6.......2.....6....71........4..8..
+.......518...2....3.........176.........3.2...5.....9.4..7..8...6.5..............
+.......24.1.3......7........6....3......82...5........4..1..6..2......75..8......
+......1.48...9..........6..7..2........4.1....3.....9..12..........5..3.6.4......
+......4.1.3.2........85........746...2.....5.9...........3...8.7.4......1........
+.....1.352...6.....3.....4.....7.4...5.8.......1......7.....6..4....3......5.....
+.....19...2.....7.6..5.........4..3.1.9......8.........4.27..........8.1...3.....
+......3.5...6.4.......1.........672.5.31.......8......24.....6.....3.....7.......
+......7.39...4.........1.........94..7.3......2.......4.1....6....72.5.....8.....
+......2.5..48.......7.......6.2............1........7.23....6..5...4.3......71...
+.......71.6..2........3....7...6.3..4.....2..1..4........1.5.8..2..........7.....
+.....16..2......3...........18.....7...43..5...6.......7....1.....25....4..3.....
+......8.1.6.2..............4..5...3.1.7.............2.6.3.7........815...2.......
+......9.21..8...........4..73..6........29...5.........694........5...1......8...
+.......54.7.3.....2.........1....7......45......2.8......67.1..8.....3..5........
+.....16..25.......4........1..4...5.....6...2..3.8.....67...3.....2...4..........
+......2.3.8.7...........1....5....4.3...1..........6.....4.7.6.1......8.2..5.....
+.......35....2..7.....1.......24....8.....6..1.........2.5.7......3..8...7....1..
+.....16..8......4.....2....7..3..9......5...14.........1......2...8...5.6..4.....
+.......215...4.......6......31....8.....7.....2.......6..3..4..4.5...7.....2.....
+.......81.2.7........4.3...1...6..5....2..3..5........8...1.....4....7......5....
+.......512...8.....4..3.....172...........63.......4.....5.7...6.....3.....1.....
+.......312...4..............317...8.....2.5..4...........8.3...5.....2.....1..6..
+.......21....83.......4....5..2...7..8....4...3.9.........6.8..1..5.....2........
+......32..5.4...........6.....2...6...3...1..7..5.....82.....5......3..7....1....
+.......76.6.2............5....86.4..5.1......7..9......3...5...9.....2......1....
+.....12..6.3......7.........2....56....3....8...47....3..7.........2.1.........4.
+.......65...71.....4...........53....8....2........1....32..7..5.6......1..8.....
+.....125.3.....4..7........15....6.....38.......7......2.4.........3...7.......1.
+.....2..6..9...8...........6......21...73..5.............98.3..21.......5..4.....
+.......419..3..............3..2..8......1..6.2.........67.4.....1..5.......8..2..
+.....1.85.9..3.............8.5....4....71....4.........7....9.6...2..3.....8.....
+......7.2...3.4.........9...6..8..3....92.....4.......2.7...1.....6...5.9........
+......7.1.9.8.....4........54.....2.....173.............7...6..3..5........4...9.
+......3.54..6...........4..3.......7...1...6.5..8......6...7.2.....3.5...1.......
+......7.2...3..6..4........54.....8....61....8.............5.4..9....3....67.....
+.......25.5.....4....1.....2.7......3......7....8..6...89...1.......27......4....
+.....1.3...7...2....4......8.....19....75........4....28.3......6......7......5..
+.......162...8......9.........42.5...1.............2.....1.6.3.5.....78....9.....
+......1.85..2...........4..9......5....34........6.2.....6.5.7..41.............3.
+......61.4..8.....5.........6.7..2..13..........4.........1..84.2..3.........5...
+.....15...8.....7..........5..6...2.3.1...4............6.27....4.....1.3....8....
+......4.62..7.....8.........4..65...7......2.......8.....2..17...3.....5.6.......
+......8.2.5..2..........4.......417..2.5........6.........3..581.4......6........
+......13.4...7....8...........5.62..7..3....4...1.........8..76.15...............
+......1.58.2..................8.6.2.3..7......1.......4.....73..6..15.......9....
+.......914...7.............7..3.....8.....4.....1.6....195...6.....4.7..2........
+......3.95..4...........7..1..2...8...3.9.....6.......42.....5.....73..6.........
+.....1.8.7.....4..9.........15.....2...52.7...8........6.....1.3...7.......4.....
+......4.18...9..........6..7..2........4.1....3.....8..12..........5..3.6.4......
+.....2.4...7....5..6.1.........5.72....3......1..........6..1.85.....6..4........
+.......91.3.6.........2....7....8.......9.6...6....4..1..5...8....4.3...9........
+.....16..7......4.8........4..25..7.31..........7........84.....6....1........2..
+.......718...2....3.........765.........3.2...1.....9.4..6..8...5.1..............
+......3.6...7.4.......1.........752.6.31.......8......25.....4.....3.....4.......
+......4.18...9..........6..7..2........4.1....3.....9..12..........5..3.6.4......
+......73.4...2.......6.....6.98...........1..5.........37....9..1...7......5....2
+......3.12..8.....64.......7......2....35.......4......53.1.4.......7.6..........
+......52....8..1...76.......3.2....45..1............7.....763..1............4....
+......5.1.9.4........3.....18..5.........27.........6.2.5...6.....9...4...7......
+.......71.8.4........5.....1...72....5....63.............38.4..2.7......6........
+.......4132.......5........6..3..2....4....8....5.....2.....3......81......74....
+.......81.6.7........2......4....6......83..........2....5.27..3.8.4....1........
+......25.13.............9..7.8.....1....2........9.....4.1.3.....5...62....8.....
+......8.16...2....38...........7..6..1.........5......74.....9....1.54.....2.....
+.....19...2.....5.7..6.........4..3.1.9......8.........4.56..........8.1...3.....
+......276....95.........3..3.26.........1..4..........4.....78....2.6....1.......
+.....19...2.....3.7..6.........4..6.1.9......8.........4.56..........8.1...3.....
+.....1.8..24.......3.......7.....64....92........3....8..7.....5.....2........3.9
+......6.18..3........8......8.....5..4..6.........2......5..34.2.1......6.....7..
+......5.6...8..2..8..3..........7.9.....62...1.........26.5.......1....8.......4.
+......1.4....1.8..6..7.....391.......8.5........2.....5.6....7.4...8.............
+.....19...2.....6.7..6.........4..3.1.9......8.........4.56..........8.1...3.....
+.....1.9..64...............1.7....2....49.....3.6........5..4.62...8..........7..
+......73.8...2.......6.....6.98...........1..5.........37....9..1...7......5....2
+.......41..73...........52....8..3..42.......5.......7.6...42......1......8......
+.....1..5..4...7...........58.....1....6...2....37....2...4....1.....8.....7..3..
+.....16..3.4......2...........24.....8.....2..1.....7.....5.1.67..3...........8..
+.....19..2.4......6.........1....3.....76........4.......2...64..3....5..8......7
+......2.173.......6...4........6..3...8...5..2..........12........5.8....6.....7.
+.......698...4........1.......3..8...1....4..65.......7.1...2.....9.5......6.....
+......3.1.2.8......6.9.....4...15.......3.5....8.........2...6.3.9..........4....
+......61..9.2........3........8.9..76......4.5........1...6.5...7....2.3.........
+......1.8.4.2........6......2.4...3.7...1.5...........1...8..........34........26
+......8.17...3....6........3...6..7....2..4............128......8.4..5.........3.
+.......517..2.......3........4.58.......1.6..6.....2...1.....8.26..........3.....
+.......915...8....2...........72.6...1.3......9.......64.1...........52.......8..
+.......14...7.8............1.4..5......2..83.6........5...4.....3....7......9...1
+......73..48.......5.......1..7.2.......5...8.......4.9.....2.....6.3......84....
+......41.2..3.....6............65.4.38........2...4......5..3.2..1.7.............
+......21.78.............4........3.5....14.......6....2.1....4....8....7.6.5.....
+......24.81.............9..6.7.....1....2........9.....3.1.8.....4...52....7.....
+......73.8..1.....2..6......5..4.3.....2...6..1.......6.......8....75.......3....
+.....1.6.2.....8..4.7.......61....3....47........5.......2..4.7.3.6..............
+.......614...3.......5......26....8.....7.....1.......5..2..3..3.4...7.....1.....
+......6473...81.............2.7..5.........1....6........52.7..8.1......4........
+......5.13..4........6..7...6....2....5.1.........2.3.84.....9.....7.......5.....
+......63.2..7.....5.........6.2......3....8.....51....1...2...5.4...3..........7.
+.....2..6..8...7...........6......21...39..5.............87.3..21.......5..4.....
+......274.3..9.............2.6...5.....74....8.........4.....39.....61.....2.....
+.....1.6...7...3....4......8.....12....75........4....26.3......1......7......5..
+......6.2.3.8......1..........5..73.9..4.....2........5....6.4.....2.1......9....
+......7.1.5..3........49...2...5..4.7..2.....1.........4.....3....1..6.....8.....
+......2.87...3..........4..3.5....9.6..2........81.....2.4..........6.3..1.......
+.......16...9...8.5........4.5...3.....1..5.....8.....6...4.2......3..7..1.......
+.....15..8.......6.......2..35..........6..4..1.......7..24....4..8..3..........1
+......246.3..9.............2.7...5.....64....8.........4.....39.....71.....2.....
+......13..47.......5.......1..3.2.......5...7.......4.8.....2.....6.3......74....
+.......51.4.7..................137..5...2.....6....4.....6..84.1..8.....2........
+.......81.6.5.....7........2..6..5....8....2.1..3......4..21....5....6...........
+.......817..6.....5.........4..81.........29.....3.......5.47..6..2......8.......
+......126...95............4...3..8..4....1...1.5.......3....79.....46............
+......2.7...3..1..6....8......14....4......5....2.........65.8...3...7...1.......
+......1.74..2.....1.........98....5..7......6...1.........953......7.4.........2.
+......67.3.5......2...........2.3....1.....4....8......6..7.1........2.3....4...5
+.......51....83.......4....6..5...2..8....4...3.9.........7.8..5..6.....2........
+.......386....1..........5.1..2..7..8.......4...75.....25.3..........1...3.......
+.......218..5.........6.....3.1.2...5.....84.............78.5..62.........4......
+......8.346.......1............835..6......4..7..2.......1...7...8...2.....6.....
+.....23..1..5.......7......4......17.3.8...........6....647.....2....9......1....
+......26..8..1...........7....6.2.3..4....5.....8.........5.4.16.3......2........
+.....1.3..8........7........5..7.......28....6......1.1..4..2..3.9............8.4
+.......36.3.....5.2............6.8..7.....4......53......7..21..6.9.......1......
+......84....72.......1.....2...5...6.....4.3.1...........2....1.4....5...3...7...
+.....13....6.5.....2..........2...673..8.....4......5.1...7.4.....6......9.......
+.......72.8.5......1.......2...97.........1..3........7.3....6....18.5.....4.....
+......5.89...7..........6...5.6.2....8.....7........1....8..4..13.......7..4.....
+......6.1....82........3...31.......2......8....4......6.15.4....47............2.
+......2.48...9..........6..7..2........1.4....3.....9..14..........5..3.6.2......
+.......916..7.....2........7......1....6..5.....45.....3..81....4....6....5......
+......5.3.7.6...........4...6.1.8...4.....2..2..7.........3..7.5...4...........1.
+.......41.2.....5.8...........28.7...6..3......1......3.....8.7...5.16...........
+.......81.3.6.........2....7....9.......8.6...6....4..1..5...7....4.3...8........
+......16.2...7....3.....8.....6.89..42..........5.........1...2..8....5..6.......
+......8.14...2....56...........4..5...1...3...8.......2......6....3.9.....78.....
+.......61...9.4............5..4..7..6.2....5.1............16....8..2.....3....9..
+......8.1.2..4....6...3.....519...........74..8.......7..8.1...3......6..........
+......126...85............4...3..7..4....1...1.5.......7....38.....46............
+......61.2..7........4......81...5.....3....4....8....74.......3...6........1.2..
+.......51...3.7........8....21.6..........74..5.......4..15....3.....8.....2.....
+......1.84..2.....1.........89....5..7......6...1.........753......8.4.........2.
+......8.1...6........5........4...5..9.....4..2..7....3...8.7..5.....1..4.6......
+......3.6...2.4......9.....1...8.7..54.....2..2.........95.......6.3...........4.
+.....1.843...............1.54....3.....9...6.......8.....73.2...16..........5....
+......7.123........4.8........36..4.1.....5.....9.....7...51.........83..........
+.....2.5..4....3......6....8..1..9........4.153..........49....2......8....3.....
+.......26....8..4....5.....1..6..7..3......8.....2.......7.31...42............5..
+......21.8..4.....6..3......1.8......2....5....9......4.......3....7.6...7..2....
+.......61...7.4............5..4..7..6.2....5.1............16....8..2.....3....9..
+.....2.7.6.......3....5......2.1.5...3.6........4....64..3...1.8..............2..
+.......19.3..5...........2.1.9.........4..7.....87.......1.2....6....8..5.....3..
+.......61...9.4............5..7..4..6.2....5.1............16....8..2.....3....7..
+.......61...7.4............5..8..7..6.2....5.1............16....9..2.....3....8..
+.......26....8..4....5.....1..6..7..3......8.....2.......9.31...42............5..
+.......63.2..4.........1....4....21....37.......5..4..8.36...........7..5........
+.......71...58.................31.6.2..4.....5.8.......7...6....3....5.....1..2..
+.....1.6.3.....7..............38.2..514..........7.......9...4182...............5
+.......659..2.................9..24..53................6..57...1....68......3.9..
+......9.12...7..............135.........4.6.........7.67.....2....8.3...4..1.....
+.....1.624.38........5......2..9..5....1..8...........5...2....7.....3......6....
+.....15..8.......6.......2..35..........9..4..1.......7..24....4..8..3..........1
+.......71.5...8.............6..4..3.2..17.......3..6.......25..4.1......7........
+......5.28...9..........6..7..2........1.5....3.....9..15..........4..3.6.2......
+.......49....5..6.....3....4..9.....7..8...........3..5.3...1...6....2.....7.2...
+......1.5.3.8..................12....6.....3.......7..1.2...4..5..36.......7...8.
+......16..4..2.........9.7.3..1...........4.26...........63.5...29.........8.....
+.......39...6...4.8..1.....5.....6......2..7......4......28.7...43............1..
+......89..2....3....4.6....8..3.1....5.....2....8.....9...2...61.3...............
+.......21.8.3........4.9...1...6..5..3....4......2....2...7.......8..9..5........
+......5.28...9..........6..7..2........1.5....3.....8..15..........4..3.6.2......
+......9.1.4.2.....6.....3..3...91....8.....2.............82..7.9.....5.....4.....
+.......41.7.2........3.8...4...6..5..2....3......1....1...5.......7..8..6........
+......1.58.2..................8.6.3.3..7......1.......4.....72..6..15.......9....
+.....19..7...3....2.........5.....7..1...4......2.........6.1.58..7...3.......4..
+.......63.2..4.........1....4....21....37.......5..4..5.36...........7..8........
+......27.3.....4..5.1.......2..76...........1....2.....8.1.5.........79....3.....
+......8.1...7........6........5...6..9.....5..2..3....4...8.1..6.....3..5.7......
+.......81.3..2.......7.........5.62.4...9....1.........6.4..3..5....8......1.....
+.......19.3..5...........2.1.9.........4..8.....87.......1.2....6....7..5.....3..
+......1.....3.....9........7..1..6..2......9....5.......8.2..4..1...6..5.5..9....
+.......81.3..2.......7.........5.62.4...9....1.........2.4..3..5....8......1.....
+.....2.17..36.................3..6..8.....4..71..........287....95..........1....
+.......21.9.3.........6....2.1....5.5..4........97....6....2....8....3........9..
+.....1.7..34.......2..........2..4.5....6.3..1...7....6..5...8....4........3.....
+.....14..6.5......2........3..27.....4....1.....6...........36..8..5...........72
+......26.8..7...........3..1....6.5..7..3........42......5....1.24........3......
+......8.96.....4..3..5.........19...7......2.....4......4...1...2.3........2...5.
+......8.1...6........5........4...5..9.....4..2..7....3...1.7..5.....1..4.6......
+.....1.624.38........5......2..9..5....1..8...........5...2....7.....4......6....
+......8.1...7........6........5...6..9.....5..2..8....4...3.1..6.....3..5.7......
+.....1..7.4.....5..........2.1...3.....58..6.7........1.....2...6.4........65....
+.....2.6....3....14.....7...1.6.........7.2...........2.7.4.......5...138........
+.......549..7............6...6.52...8.....3........7...2.3..1...4..7......5......
+......21..5..9...........3....1.27..48..........6.....2.1...6......8...5.....7...
+......5.1.8.4........3.....13..5.........27.........6.2.5...6.....8...4...7......
+.......9163.................91.8........2.4........6..2..6..3.....7.3.5....4.....
+......35.1..4............8...3....2..9.1........6..5.......76.15...2........3....
+.......31.28..................2.84..73.....6....5.....16..7.......4..2..3........
+.......9163.................19.8........2.4........6..2..6..3.....7.3.5....4.....
+.....1.7..8....2...4..........28.4..16.......7...........54...39......1....8.....
+.......14......2.38...5.......2.7....31............65.6.....7.....14.......3.....
+......25.8...4..........1..6..2..7..3.......8..41......2.5.........3..6..1.......
+.......71...6.4............5..4..6..1.2....5.7............71....8..2.....3....9..
+......7.2.9..1....8.....5...6.7.5....3.....9....8.........3..6.2..5.....7........
+......16.8..4...........7......7.6...1..3....2......5....2.8....76.........5....4
+......4.82...7....1.........8.6...........31....4...2..4....7......32......51....
+.......71...9.4............5..4..6..1.2....5.7............71....8..2.....3....9..
+.......71...6.4............5..8..6..1.2....5.7............71....9..2.....3....8..
+......24.1..7...........9..6.....7.1....43......5......42....3.5...8.......1.....
+......1.58.2..................4.6.3.2..3......1.......4.....72..6..15.......9....
+......2.6....8.1..9..7.........3..9..56.......2..........1.65..4......3....2.....
+.....17..92..................35..6.....26....1.....8...6.....294...7...........5.
+......73.5..1........2.........34.6.....6...51...........7..1...2......8.36......
+......1.5...7..4..7..2........5...8.4.3.......61......5......2..4..6........1....
+......61..2.7.................1...526.4.3....9........3..5......8......7....6.4..
+......5.6...7...4.3....1...5.....1.3...84..............47....2.....853...........
+.....2.16..34.................3..8..7.....4..61..........276....95..........1....
+......6.43...7..........5..7.....3.....1...2....4.6....46.....1....8..7..2.......
+.....14..5.4......2........3..26.....1....7.....5...........32..8..4...........65
+......2.5.7..8............4....3..7.4.8......2.........1....53.5..4.6......2.....
+......64..4.7...........1..8..5....7...2...9.1............6.3...9......5....81...
+.....1.5..6........2..........36...2..8...7..4....5...5.....18.....7.3.....2.....
+......3.8....7.4..6..5......4..3...........2........6.2..15.......6...1..8....7..
+.....1.9.6.2......3...........83...6.1.....7....2.....54..9..........2.8......6..
+......4.15..2...........3...3..8........4..1.6......5...25.7....4....1.....6.....
+......2.91..8...........4..73..6........29...5.........694........5...1......8...
+......8.16..........7.......3..41.....2....7.4........18....5.....27..6....9.....
+.......61...9.4............5..7..4..1.2....5.6............61....8..2.....3....7..
+......5.12...7..............135.........4.6.........7.67.....2....8.3...4..1.....
+.......35.4.....8.1..........7...2......85...6...........4..1.6.3.1..7....8......
+......52.6..3.....3......4..2..4.......5..6...1.......5.....7......12......4.8...
+......3.74..8...........1...371........5...4.........25...2..6......75......3....
+......4.7.1.6......5..........16.2..3.....8.....5.....7...24.....4..3..........1.
+.......71.6..3........2....7...6.3..4.....2..1..4........7.5.8..2..........1.....
+......67......4.2..3..5.....5....3.17....6............2.....74....13.......8.....
+.....1.2..4.3......5....4..6.1..........5.9........3..7......68...94..1..........
+.......123......6.....4....9.....5.......1.7..2..........35.4....14..8...6.......
+......52.8..1.....2.....7...53....6....4....1.7..8........5.3..4..6..............
+.......71.6..3........2....7...6.3..4.....2..1..4........1.5.8..2..........7.....
+.....24.5.3.1...6..7........1.3.....8.....2...........4...1....2.....8.....7...3.
+.......9163.................51.8........2.4........6..2..6..3.....7.3.5....4.....
+......65.8..7...........2..1....5.4..7..6........32......4....1.23........6......
+......2.8...53.....2...4...7.1....5.......32.......4..6..1....7.3..........8.....
+.....1.7.49.........5......1......2....53.......9.....23....1..7..8.........6.5..
+......8.374.......1............835...7.....4.6...2.......1...6...3...2.....7.....
+......3.78...6..........5...5.3.2....7.....6........1....7..4..13.......6..4.....
+.......712..9.................6..83..714.....5........64....2......5.6.......7...
+.......71.3..2...................25.6..1.........8.3...2....53.4..6.1......7.....
+......2.1.96............5......9..4.2...3....1.........7.5.2........6.83...1.....
+......1.3.2.4........67.....7....4.......1..........7....24..6.3.1...5..8........
+.......72..68............5.17....3.....4..8...2..........217...3.9..........5....
+.....1.3.9.....4..7...........89...75......1....4......3..2.....1......6...9..7..
+.......6835...........1....1.....5.....9..4....6.......7.2.5......4..3....8....1.
+.......91.6..7...............5.3.76.......3..1........3..1....4.82.........4.9...
+......51..7.3............8...7.51....2....6.3.........4..6..2..1.5.4.............
+......81.5.......9...7......4.6.71.....3.....9........3...9........25....1....4..
+......63.8...2.......4.....9.87...........1..5.........36....9..1...6......5....2
+.......72....51................6.18.72.3.....4........3..2........4..6....8...5..
+......8.15..........6.......3..71.....2....6.4........18....4.....26..5....9.....
+.......81.2.7........4.3...1...6..5....2..3..5........8...1.....7....4......5....
+.......547...2........1.....6....73...54..............17....2..2..3........5....8
+.......31...6.2......7.......7...6...1..8....4...3.......5..27.14.......8........
+.......283......7....1.........8..3..49.......5....6.....6.41.....5..4..2........
+......8.1.6.9..............32.....6.....847...........8.4...5..1..3........2...9.
+.......815..4......73..........28....6....3......1.......6..74.2..5.....1........
+......1.53...4.................8.72.9.56............4..2....8.....1...3....5.9...
+.......21...3.6......8.....4...1.6.....7..3..2............9..4.53........86......
+......4.1.6....5..3..7.........45...7......2........3..51...6.....87.......2.....
+.....13..84................5.....12..6.49.............1.3...5.....64...7...9.....
+......8.12...4.......5.....42.....3....8..1..6..7.....3...2......8...7.........4.
+......8.1.3.4..............1.6...5.....7...4.2..........521.....7....43......6...
+......32.1...6..........8..7.......1...3.2......4.......3...46..8.1.........7...5
+.......16...7.8..........5.5.12.....3.....8..6.........4....2......53....8..1....
+......5.13..8........6..7...6....2....5.1.........2.4.84.....3.....7.......5.....
+.......236...1.......4.........8.7..5.2............1...8.2.3....1....64....5.....
+.......32...1......6.......8.3.........6..9.......75.....58..7..4....1..2...3....
+......68...7.3.....1.......8.....2..4...9..........1...35.....1...8.4.6....2.....
+.......51...3.7......8.....5...1.7.....6..3..2............9..2.43........87......
+.....152..7........6.......4...2.1.....6...3.............76...81.....4..5..3.....
+......81.4.......9...7......1.5.76.....3.....9........3...9........24....6....1..
+.....1.4.62.......3.........61....7....53........2.......8..4.37.9............2..
+.....2.71.3..5.............2.8...6...5....3.....74....7..1.8.........59..........
+......6.19..8...........3...3..6........1..9.5......4...25.4....6....7.....9.....
+......8.14..1.....3..5......1..8........6.2.........5....4.3.7..82...6...........
+.......29...3.6...........8.6....5...53..........2.......6..15.2...7.4..9........
+.......28...8...3.1............7.4...8.6......35......7...6.1........7.5...3.....
+......6.1..4.3....5...8....3......9....6.7......1...........84..6.2.....17.......
+.....13....4.....5..........6....12...845.......9.....17....6..3...4.......8.....
+.......273......4.1...........6.51.....1..5...4........7..2..3...8...6......4....
+......2.6....9.8..9..7.........3..7..56.......2..........1.65..4......3....2.....
+......1.5..4.7..........3..15.3........6...8..2...........512....6....7.8........
+.......518.3...............25.4......1....7......2.3.....5.6.4...7...2.....1.....
+......5134..2.................4.62...39......1........68.....4....79........3....
+......7.1.9.8..........4.......2..3.5..7.....3......4..48...6......135...........
+......8.27..4.....1......5....6.84..5......7....3......8..5.....36..........1....
+.......614..2.....9.........67.15.3..1..7..........4..2..8..5...3................
+......32.1...5..........4..8.......1...2.3......7.......2...57..4.1.........8...6
+......136.87.............5....74.9..36..................4.8.2..6..3.5............
+......5.13..9........6..7...6....2....5.1.........2.4.84.....3.....7.......5.....
+......98......1.......6....5.9.3....8..9...7.2.........4....6.1.7.8........2.....
+......42.8...5........1.....3.4.7..........65...2.....5.1.....6...3..7..6........
+.......238......5....1......1.6..4..5.7.3.............3...52....64...1...........
+.......614.2.......3.......38....4.....6.2......1.......65.....1......7.....8.3..
+......3.62..7...........1.......39..4.7.........6.1......52..8.....4..7..1.......
+......6.25..7...............63...1.....5.4....2....3.....16........2..7.8......4.
+.......416..3.........2.....4.1...8....5.6...7........3.....5......7.3...1...4...
+.......5126.........86.........71.2..4..5..........3.....3..4..5..9.....7........
+.......419..3..............3..2..9......1..6.2.........67.4.....1..5.......8..3..
+.....16..8........2.........63.....5...3...8..1.....2....29.....7....4..4...8....
+......4.13..9........5..6...5....2....4.1.........2.7.83.....9.....6.......4.....
+.......21.7.3........4.8...1...6..5..3....4......2....2...5.......7..8..6........
+.......61.7.8.....5...9.......6..3..3.2......4............3..4..1...2....6....9..
+......1.94...5........2.3.....1.9...5....7......3......13.......8.....4...9....2.
+......1.7.9..2............4...4.15...2...3.6....7.........9..3.4..8.....1........
+......8.1....53................2.73.1.8........9......25.....6....8..3...7.4.....
+.......61.43................2...83..6...7..5.1........7..16......8...4.....5.....
+.......3684..............2....2.3....1....7.....6..4.....41..5...3...2..6........
+......29..3.6...........1..1...89....76...............9.2....5....73...6...4.....
+......98......1.......7....5.9.3....8..9...6.2.........4....1.7.6.8........2.....
+.......71.2.8........4.3...7...6..5....2..3..9........6...7.....8....4......5....
+.......52..54......7........3...56......2..1.....81...2.......8...6..7..1........
+......3.84...5........2.1.....1.3...5....7......8......13.......8.....2...9....4.
+......7.18.3......4............4.28..7..3..............6.7..5.....1.6...2......3.
+.......846...1.............5.....1.6...8..3...7.2......87....2.....635...........
+.......8125........6.7........5..67...42.....1........3.....9......48.......1....
+.......31...4.7......6.....6..3.....4.7......5...8.....3..1.....2....7........45.
+......7.43...6..........5..6.....3.....1...2....4.7....74.....1....8..6..2.......
+......1.9...2..3...4..7.....7.....8....3........1.....2.3...6.......4.5.1...8....
+.....1.5.2.....6..9.........4.....1....63.......2.....417.........3..2...5..8....
+......7.28..9.....1...........526.........34......7....73.4...........85.2.......
+......3.18..2...........6...3..6........1..8.5......4...24.5....6....7.....8.....
+......57.....6........3.....1.5..2...48..............3...2.17..3.6....4.9........
+......52.6..3.....3......4..2..4.......5..3...1.......5.....7......12......4.8...
+......54.6..7.......1......3.....7...5..2........4..8.14....2.6...8........9.....
+......5.1.4..8..........6..32.5.....4......8....1.......56..2....6.4..7..........
+.......81...6.2...3..7.....6.4...7......9..1.7........5..4..2...1..8.............
+.......41.8..7.....3.......6..2.1.5..7....8.....9.........5.3..1..4.....2........
+......6.25..7...............63...1.....5.4....2....3.....16........2..8.8......4.
+.......8123........4.7........6..37...53.....1........4.....2......58.......1....
+......8.6....7.1.....4.....2....1....6.....4.....5...3...6..2...4.3.....1......5.
+......6.23..8........2..5..2..3...4..67.......1...........761..8......3..........
+......84.3..5.........6.....7...43...4..2............55..1...26.....8...6........
+......2.38..6...........7....2...1...4.8........3...6.....27.4.3.......5....1....
+.....12..4......5..........6..34......8...1.....5.....5..62.....9.....18......7..
+......5.1.4.8..............1.9.........3..8....5......7...19.2..3....68........4.
+......4.12...3......9.8....17.6...........39..4..........4.7...8......5....1.....
+.....19..2.........3.......7..28......1...5.....3.....65......1....4..3...97.....
+......7.16..9............4..15.........3..2...4.......2...5..8......73......41...
+.....1.6....4.2....8......3......12..4..3..........7..2.1...5.....74....6........
+.....19..2.........3.......8..62......1...5.....3.....75......1....4..3...98.....
+.......713..8......8.........5.41....2....3......7....6.1....4....2..6..7........
+......21.....4.7.....6.....36......9....7.8..1.........4.....3...7..2......8....6
+.......71.5..8.............6..1.3....2....89....4........7..2..1...4....4.3......
+.....19..2.........3.......7..28......1...5.....3.....65......1....4..3...98.....
+.......719......6..2.........4.7.....3....4.....91....7..6....8...3..2..1........
+.....1.8.2.....5.....4......4....6......5.2......2...3...3...9456.......7........
+.....19..2.........3.......7..38......1...5.....2.....65......1....4..3...98.....
+.......347....5..........1.....872......2.5...1.......2..3...6...14...........9..
+......6.4.7....1...2.9.....4...1.5......3.........8......2.7.3.1......2.6........
+......62.7..3.....4......5..2..5.......6..7...1.......6.....8......12......5.9...
+.......1.4.........2...........5.4.7..8...3....1.9....3..4..2...5.1........8.6...
+......1.62....5.........8..32.....7.....1.......8......71...4......23.5....6.....
+.....19..2.........3.......6..38......1...7.....6.....75......1....4..3...98.....
+......7.68..9.....1...........526.........34......7....73.4...........85.6.......
+.......927......1....3......9..2..8...5...6..3.........1..9.......6..4.....7..3..
+......26..9.8............5.2.6.....7...7....4..1..........261..84.............3..
+......1.5..26........9.2...3......9.....7.8......1....71....5.....2...4..8.......
+......2.4.5.7.....68.......3......9.....14.......2....2.1.........8...5....6..7..
+......13..4..2....................267..9.....1.........62.5...4...1.73.....8.....
+......6.89....2.........3..5...6..7....8.........3.....2...75...381............4.
+.......835..4........1.........2.7..1.....4.......8....386......2..7..........52.
+......3.92..7........1....5....98...1......5.....3.......4..12..83............6..
+......6.17.2......5.........6.2......3....4.....5.7.........52.....1..9.8...4....
+.......6835...........1....1.....5.....8..4....9.......6.2.5......4..3....7....1.
+.....1.4.62.............3..3...5.......8....2..1...9...94...1.....62.......5.....
+......4.18..5...........7....28........1...5..7....6......67.2..4..3....1........
+.......712...5.....3..6....7.13...........64.8...........1.7....4....5.......2...
+......6.17..2..............2..5.3.......6.3..4......9..16.4.......7...2.......8..
+.......46..58............2.16....3.....3..5...2..........267...3.9..........4....
+......39..5.4............1....23.5..6.......4..1......83....7.....61.........9...
+.......917......3....2......9..1..8...5...6..2.........8..9.......6..4.....7..2..
+.....24..56.......1.........2.16..........85.....3....3......16..8..4......7.....
+......6258....1.............2.57.......6...8.......41...723....1.....8...........
+......529..87...........1......25.....3.9.....6....4.....6..3..91.......2........
+......81.....25...6....3....7.1.......4...2......6...5...4...3.28.......5........
+.......64..58............2.16....3.....3..5...2..........267...3.9..........4....
+......4.17..2........8.6......7...2..4....3...1.......2......8..5..1....6...3....
+......1.3.8..2.........45...3.....2....5...7....1.....1..3..6..7...8......5......
+.....1.3.6.....7..4.........1.....8....27....5..4.......8.....1.3.6.........5.4..
+.....15...8.....6..........5..6...7.3.1...4............6.27....4.....1.3....8....
+......8.17..2........5.6......7...5..1....3...8.......5......2..4..8....6...3....
+......4.18..2........6.7......8...6..4....3...1.......6......2..5..1....7...3....
+......8.16..2........7.5......6...2..1....3...8.......2......7..4..8....5...3....
+.....18..3.......5..........61....2.5..4......8........2....61.7..35........4....
+......8.17..2........5.6......7...5..1....3...8.......5......2..3..8....6...4....
+......8.16..2........7.5......6...2..1....3...8.......2......7..3..8....5...4....
+......52..8.4......3...9...5.1...6..2..7........3.....6...1..........7.4.......3.
diff --git a/sudoku17.16000.txt b/sudoku17.16000.txt
new file mode 100644
--- /dev/null
+++ b/sudoku17.16000.txt
@@ -0,0 +1,16000 @@
+.......1.4.........2...........5.4.7..8...3....1.9....3..4..2...5.1........8.6...
+.......1.4.........2...........5.6.4..8...3....1.9....3..4..2...5.1........8.7...
+.......12....35......6...7.7.....3.....4..8..1...........12.....8.....4..5....6..
+.......12..36..........7...41..2.......5..3..7.....6..28.....4....3..5...........
+.......12..8.3...........4.12.5..........47...6.......5.7...3.....62.......1.....
+.......12.4..5.........9....7.6..4.....1............5.....875..6.1...3..2........
+.......12.5.4............3.7..6..4....1..........8....92....8.....51.7.......3...
+.......123......6.....4....9.....5.......1.7..2..........35.4....14..8...6.......
+.......124...9...........5..7.2.....6.....4.....1.8....18..........3.7..5.2......
+.......125....8......7.....6..12....7.....45.....3.....3....8.....5..7...2.......
+.......127...6...........5..8.2.....6.....4.....1.9....19..........3.8..5.2......
+.......128...4...........6..9.2.....7.....4.....5.1....15..........3.9..6.2......
+.......1298..........6.....1..7...8.4.2.........3..6...7....3...5..4........1....
+.......13....3..8..7..........2.6....3....9......1....6..5..2.4...4..7..1........
+.......13...2............8....76.2....8...4...1.......2.....75.6..34.........8...
+.......13...5...7....8.2......4..9..1.7............2..89.....5..4....6......1....
+.......13...7...6....5.8......4..8..1.6............2..74.....5..2....4......1....
+.......13...7...6....5.9......4..9..1.6............2..74.....5..8....4......1....
+.......13...8...7....5.2......4..9..1.7............2..89.....5..4....6......1....
+.......13.2.5..............1.3....7....8.2.....4.........34.5..67....2......1....
+.......13.4.....8.2...6....6.9...4.....8........3......3.1..5......4.7.6.........
+.......13.4.....8.2...6....9.6...4.....8........3......3.1..5......4.7.6.........
+.......13.4.....9.2...7....6.7...4.....3........9......3.1..5......6.8.7.........
+.......13.4.....9.2...7....7.6...4.....3........9......3.1..5......6.8.7.........
+.......132..8.....3......7....2..6....1.......4..........4.15..68....2......7....
+.......134..2.....6...........46.5...1......72..5.........31.........42..8.......
+.......134..8.....2......7....4..9....1.......6..........5.16..38....2......7....
+.......14......2.38...5.......2.7....31............65.6.....7.....14.......3.....
+.......14....2....5.........1.8.4...7.....5.....1.........5.73...42......3....6..
+.......14...7.8............1.4..5......2..83.6........5...4.....3....7......9...1
+.......14..8..5....2...........2.7.51..............8...7....53.6..14.......2.....
+.......14..8..5....2...........2.8.51..............7...7....53.6..14.......2.....
+.......14..8..9....2...........2.8.51..............7...7....93.6..14.......2.....
+.......147...........5......9..14....5....72....6........9..8.56.....9..1........
+.......1479..........2..........36.5..1............2...6....73.2..14.......8.....
+.......1497..........2..........36.5..1............2...6....73.2..14.......8.....
+.......15...4...7.3...6....8.....2.....1.4...4..5.........236...1........7.......
+.......15...4...7.4........6.9...3.....1..8.....7.....5...3.2......6..4..1.......
+.......15...8...7.3........4.8...3.....1..4.....7.....5...4.2......9..6..1.......
+.......15...8...7.4........6.9...3.....1..8.....7.....5...3.2......6..4..1.......
+.......15...83..........2...23...8.......1....8.......1.5.4.......6..72.9........
+.......15...83..........2...26...8.......1....8.......1.5.4.......3..72.9........
+.......15...9...7.4........6.8...3.....1..8.....7.....5...3.2......6..4..1.......
+.......15...9...7.4........6.9...3.....1..8.....7.....5...3.2......6..4..1.......
+.......15...9...8.3........7.4...3.....1..4.....8.....5...4.2......7..6..1.......
+.......15...9...8.4........7.4...3.....1..9.....8.....5...3.2......7..6..1.......
+.......15.2..6..........4.8..3...9.....1..........8...15.4.........7.3..8......6.
+.......15.4..8..........3......4.26.5..1.7...9........3..5......8....4.....9.....
+.......153..6............8.6...5.2.......1..........4..1.2..7.....76.3....8......
+.......1579..........2..........87.6..1............9...7....83.4..15.......3.....
+.......16...5...4.3...7....9.....2.....4.8...7..6.........237...4........1.......
+.......16...7.8..........5.5.12.....3.....8..6.........4....2......53....8..1....
+.......16...9...8.5........4.5...3.....1..5.....8.....6...4.2......3..7..1.......
+.......16.4...5.......2.......6..43.2...1....3.....5.......37..1..8.......2......
+.......16.7.....4..5.2.....4...6.3.......52......41......9..78.1.................
+.......16.7.....4..5.2.....4...6.3.......82......41......5..79.1.................
+.......162...........3.....6.17....2...9..5..4.........3....8......6..4..5..4....
+.......162...8......9.........42.5...1.............2.....1.6.3.5.....78....9.....
+.......17.9.6............3.4..5..2....1..........8....72....6.....41.5.......3...
+.......17.9.6............5.2.....8.3....5.4.......1...6..2..3...41.7.............
+.......17.9.8............4...7.6.3...5....2.......1...6..3..8..4.1..........5....
+.......173...8...............71....6....4.3...85......2.....84..1.7........5.....
+.......176...2.............153..........8.2....7......4..3.15...2....6.....7.....
+.......18.2.5...............4....7..6.....5......41......7..26.1.83.....4........
+.......18.5.6............3.4..5..2....1..........9....82....6.....41.7.......3...
+.......182..4............7......8..3...5..2...1.......5.2...6......4.3......17...
+.......1832.......4..........8.51....4....3......7....7.6....9....3..7.....2.....
+.......187...4...........3.42....7.......1......3.....5...7.2..6.18......4.......
+.......19...25..............91....3....4..7...3.......4.....2.82...6.5.......1...
+.......19.3..5...........2.1.9.........4..7.....87.......1.2....6....8..5.....3..
+.......19.3..5...........2.1.9.........4..8.....87.......1.2....6....7..5.....3..
+.......19.7.....3.2..8......5.6..2....1.........2.........195..6.....4......3....
+.......193..6..............6...8.5...4....3......1....48.....7....2..4...1.9.....
+.......195..6..............6...8.5...4....3......1....38.....4....2..7...1.9.....
+.......195..6..............6...8.5...4....3......1....48.....7....2..4...1.9.....
+.......195..8..............3...7.5...4....3......1....47.....6....2..4...1.9.....
+.......198..5..............3...7.5...4....3......1....47.....6....2..4...1.9.....
+.......21....3..7..4..8....1..2.7....5....4..........32..1.........4.5.....6.....
+.......21....83.......4....5..2...7..8....4...3.9.........6.8..1..5.....2........
+.......21....83.......4....5..2...7..8....4...3.9.........6.8..1..7.....2........
+.......21...3.6......8.....4...1.6.....7..3..2............9..4.53........86......
+.......21...4.7........8....31.6..........75..2.......5..21....4.....8.....3.....
+.......21...5...3.4..6.........21...8.......75.....6.....4..8...1..7.....3.......
+.......21..4.9.....7.....3.1..2.3...5..8.......6......2.....6......6.4...3.......
+.......21..5.8....6...........67.3..12....5..4...........2.1.4...3.......8.......
+.......21..68............7..7..21....2....4.......5...5..43.6..1...........6.....
+.......21.3.4.....7........1...82.........54.............56.3..29.........47.....
+.......21.3.6.........8....2.1....5.5..4........37....7....2....8....3........6..
+.......21.4.5.....7........1...82.........65.............61.4..32.........57.....
+.......21.4.5.....8........7...92.........65.............61.4..32.........58.....
+.......21.4.6..............2.1....5.5..8........4..3..7...2.....6....8.....3..4..
+.......21.5..3.......8.....1.2....7.7..3........54....6....2....3....4........5..
+.......21.6.3........7.8...1...5..4..7....3......2....2...4.......6..8..5........
+.......21.6.5.........9....4....2....7....3.....6.....1.24.........3.64.8........
+.......21.6.7..............4.2.........6..3..5.....7.....34..5..8....6..1....2...
+.......21.7..3........4....1..2.5.4..3....8.....1.....2..6.........7.3..6........
+.......21.7..3........9....1..2.5.4..3....8.....1.....2..6.........7.3..6........
+.......21.7.3..............4.2.........7..3..6.....8.....54..6..9....5..1....2...
+.......21.7.3........4.8...1...6..5..3....4......2....2...5.......7..8..6........
+.......21.8.3........4.9...1...6..5..3....4......2....2...7.......8..9..5........
+.......21.9.3..............4.2.........7..3..6.....7.....54..6..8....5..1....2...
+.......21.9.3.........6....2.1....5.5..4........97....6....2....8....3........9..
+.......21.9.7.................514...63............2......6..93...1.4....2.....8..
+.......213...5.............5..63.....1.....8.......5..7.4...6..6..2........1.8...
+.......213...5.............5..63.....1.....8.......9..7.4...6..6..2........1.8...
+.......213...5.............5..83.....1.....9.......5..7.4...6..6..2........1.9...
+.......213...9.............5..63.....1.....8.......5..7.4...6..6..2........1.8...
+.......213...9.............5..63.....1.....8.......9..7.4...6..6..2........1.8...
+.......213..7...............6.5..3...2.....7.......8..1...4.7..5...12........6...
+.......213..8...............6.5..7...2.....4.......3..1...4.8..5...12........6...
+.......213..9............7.2.....4......6.3.......1....71.4.......2..5.8.9.......
+.......214..3..................1.6...8....3...2...7...6.....47.5..12.......8.....
+.......214..6..................128..6.9..........3....51.....3....7.96...2.......
+.......214..6..................129..7.6..........3....51.....3....8.76...2.......
+.......2143.......6........2.15..........637...........68...4.....23........7....
+.......215...4...........7....3..6......2.5...1.......6.....2.3..31.7........8...
+.......215...4.......6......31....8.....7.....2.......6..3..4..4.5...7.....2.....
+.......215..4..............3.....57.6...8........1.....1.6.5....82...........74..
+.......215..4........8......215......7....6.........3.4.....8..3...7......6.2....
+.......215.3......6...........1.4.6.7.....5.....2........48.3...1..7....2........
+.......216......3..7.9.........437..1............2.......6....8..21......4....5..
+.......217...6....49...........7.9....38......2.......96....8.....3.2......1.....
+.......217..6.....3..5.........82....4..1....5.........2..4.......3..7........65.
+.......2175.................7....89....2.1......4......3..9.5..1...3....4.....6..
+.......218...4...........6..9.2.....7.....4.....5.1....15..........3.9..6.2......
+.......218..4.......9......6..57..4.3.....8......2.....7.9..4...21...............
+.......218..5.........6.....3.1.2...5.....84.............78.5..62.........4......
+.......218..6.........5.....3.1.2...5.....84.............78.5..62.........4......
+.......218..7.....4....5....23....6....8..5...1.......6.....7......81.......3....
+.......23...5...8....1......2....9.....4..1..58.......6....95......2..7...1......
+.......23...8...1.8..4......325...........1...7.......6...7...41.....5.......3...
+.......23.1..4....5........1.....4.....2...8....8.3.......5.16..4....7....3......
+.......23.1..4....5........1.....4.....2...8....9.3.......5.16..4....7....3......
+.......23.1..4....5........1.....4.....6...9....2.3.......5.17..4....8....3......
+.......23.1.8............6.3...2.....5....7.....4........5.71....2.1....6.....4..
+.......23.8.....7.4...2.....3...2.........4.1....6.5..1.....6.....8.7......3.....
+.......23.8.....7.5...9.....3...2.........4.1....6.5..1.....6.....8.7......3.....
+.......233...1.......5...6.4.....7.....1.6......2......92...1......4.8...6.......
+.......234..8.....1.....9...5..32.........4......6.......4.18...3.....5....9.....
+.......234..8.....1.....9...5..32.........4......7.......4.18...3.....6....9.....
+.......2348........1.......5.3....6.....1.8...........17....4.....6.2......3....5
+.......236...1.......4.........8.7..5.2............1...8.2.3....1....64....5.....
+.......236..7............8.....385..2.....8......1.......2..64...34......1.......
+.......238......5....1......1.6..4..5.7.3.............3...52....64...1...........
+.......24....1...........8.1.7...9..3..8..1.....2......2.4...6.5...7.3...........
+.......24....1...........8.3.7...1..1..8..5.....2......2.4...6.5...7.3...........
+.......24....8..1.6....5......3..7...4.7......1...........4.5.13..6.....2........
+.......24..7........6......5...9.1.....3..6...2.......94.....5....6.73.....8.....
+.......24.1...8.......7....6..2.15..4.......3..........7....81.5..43.............
+.......24.1.3......6........5....3......82...7........4..1..5..2......63..8......
+.......24.1.3......7........6....3......29...8........4..1..6..2......75..9......
+.......24.1.3......7........6....3......82...5........4..1..6..2......75..8......
+.......241...........6........18.7...2......9.3.5.....5...7.6....4..2..........3.
+.......241...........7........56.8...2......9.3.1.....6...8.7....4..2..........3.
+.......241..8.............3...4..5..7.....1......3.......51.6....2....5..3...7...
+.......246..8.....1............4..1..7....3...4.6.....52...4.........8.6....7....
+.......247......6....9.......4..1....2..5........3.7.....4..8..3.....5..6..2.....
+.......249..7..............8.....73.....41..............25..8...46...3...1..2....
+.......25.......7.8........6.....1.3....7.4......2.....531......2...5......6..3..
+.......25...8...1.4.........5....7.....3..6...1.......6...2.4..8....7.......15...
+.......25...8...1.9.........5....7.....3..9...1.......6...2.4..8....7.......15...
+.......25.3...6.......9.......74....6..5......2....7.....2.83..5.4............1..
+.......25.5.....4....1.....2.7......3......7....8..6...89...1.......27......4....
+.......25.8....6.......1...3..4..7......5...8............28.4..1.7....3....5.....
+.......2519..........6.......6.3.7........1....2......4..2.5....6....34....8.....
+.......26....8..4....5.....1..6..7..3......8.....2.......7.31...42............5..
+.......26....8..4....5.....1..6..7..3......8.....2.......9.31...42............5..
+.......26.4.7.............1...9..8..4.....5....1..........12.5..7....3..3...6....
+.......26.8...3.......7....1..4..8..6.52.......7...3...3....9......5.......6.....
+.......265.1................7.2.6...3.....15....8......2.7...........54.....1.3..
+.......268..5...........7.43...7.1......4...........3....3..81..4.9......6.......
+.......268..7.............57...3.1.......65......2.....264...........81..3.......
+.......27....51.........6..5.4...1.....2.....3.........2.74.....6.....39......5..
+.......27.1.9.....5......6....3..4..6......5.........8.49...1......26.........3..
+.......27.1.9.....5......6....3..4..6......5.........8.94...1......26.........3..
+.......27.4.8.............1...4..9..6.....5....1..........12.5..8....3..3...7....
+.......273......4.1...........6.51.....1..5...4........7..2..3...8...6......4....
+.......273......4.1...........6.51.....1..5...4........7..4..3...8...6......2....
+.......28....5........4....7.82......4....3.....6.....6..8.1....3....45.......9..
+.......28....7..4....3......74....5....6..3.......1...63....1..2...4..........6..
+.......28...5...6..1.......5.6.2....4.....3........1.....1..7.....4.3...68.......
+.......28...8...3.1............7.4...8.6......35......7...6.1........7.5...3.....
+.......28.3.....5.6........1...5.6.4....62.........7...28.........7..3.....1.....
+.......28.7...9...........3...3.2....4....5...........8...5.1......4.76.3..6.....
+.......283......7....1.........8..3..49.......5....6.....6.41.....5..4..2........
+.......29...3.6...........8.6....5...53..........2.......6..15.2...7.4..9........
+.......29...6...7..1.......5.7.2....4.....3........1.....1..8.....4.3...79.......
+.......29...73........5..8....6..7...82............1..4..1..6.......2.5.1........
+.......29...73.......4...6.2.3...4.....1..3..6.........8..5.1.......2....1.......
+.......29...73.......4...6.2.8...3.....1..5..6.........7..5.1.......2....1.......
+.......29...83.......4...7.2.3...6.....1..3..7.........4..5.1.......2....1.......
+.......29...83.......4...7.2.3...6.....1..3..7.........8..5.1.......2....1.......
+.......293..6.........8..7.8.....6......21.........1...29.........8...3....4..5..
+.......293..7........8...4.6.....7......42.........1...49..........1..5....3..6..
+.......31....79.............132.......4...7.....1.....5...4.67.28..........3.....
+.......31...4.7......6.....6..3.....4.7......5...8.....3..1.....2....7........45.
+.......31...6.2......7.......7...6...1..8....4...3.......5..27.14.......8........
+.......31..4.2.....8.......1..3..........82..6.........2....74.3..51.......6.....
+.......31..4.2.....8.......6..3..........82..1.........2....74.3..51.......6.....
+.......31..4.2.....9.......7..3..........82..1.........5....84.3..61.......7.....
+.......31..5.2.....8.......7..3..........84..1.........4....25.3..61.......7.....
+.......31..7.2.....8.......1..3..........82..6.........2....74.3..51.......6.....
+.......31..7.2.....8.......6..3..........82..1.........2....74.3..51.......6.....
+.......31..7.2.....8.......6..3..........82..1.........4....72.3..51.......6.....
+.......31..8.2.....7.......6..3..........82..1.........2....74.3..51.......6.....
+.......31..8.2.....9.......6..3..........92..1.........4....72.3..51.......6.....
+.......31..8.2.....9.......7..3..........94..1.........5....24.3..61.......7.....
+.......31.2.5..............3.1.7.......4..2..7.....5...7.2..6..8...1...........8.
+.......31.2.7.......85.........162..4...3.....5.......3......5....2..7......4....
+.......31.28..................2.84..73.....6....5.....16..7.......4..2..3........
+.......31.4..6.........9....6...52.....3...7.5........3.81.........2.4........7..
+.......31.5..6.........7....7...46.....3...5.6........4.31.........2.5........8..
+.......31.5..7.........9....7...64.....3...5.6........4.31.........2.5........8..
+.......31.5..8.............6..3.7....4....5.....1...2.1.....8......5.4....32.....
+.......31.6..4...............28.14..5..3...1......7.......5.6..73.......1........
+.......31.6.2........7.8...3...5..4..7....2......1....1...4.......6..8..5........
+.......31.6.4..............5...37....9....2.......1...7..84.......6..49.1........
+.......31.6.5.........2.......46.5..3....7...8...........7...8.1....3....2....6..
+.......31.8.....7....92....4.1.........2..8..3.........9....25.....8.6.......1...
+.......31.8..4.....7.......1.63...7.3............8....54....8.....6..2.....1.....
+.......31.8.4.....6...........2..84.7..6.....1........5...73....9....2......1....
+.......31.8.6.........7.......7..29.5..4.....3.........2..5.8......31...4........
+.......312...4..............317...8.....2.5..4...........8.3...5.....2.....1..6..
+.......312...7.........9......3.1.4.6..4.....7.8..........6.2...3.5...........7..
+.......312...8.......4......31..5.6....72.8..............6.3...4.....2..7........
+.......312..7.....4.........38....6....4..3...1..........514...7.....2......8....
+.......3128..................361.........427..........42....8..5...7.4.....3.....
+.......3128.......5..1.........378..6.....2......4.....3.....4.1..5........6.....
+.......314...2.........7......3.1.5.7..5.....2.6..........8.2...3.6...........4..
+.......314...2.........9......3.1.5.6..5.....2.8..........7.2...3.6...........4..
+.......314...2.........9......3.1.5.7..5.....2.4..........8.2...3.6...........4..
+.......314...2.........9......3.1.5.7..5.....2.6..........8.2...3.6...........4..
+.......314...2.....1.5........3...6.2....6...8...........7..8...6....2...39......
+.......314...7....2.8......7.....2.....3........9.....63.....9....58.4......2....
+.......315...7.........6...7.....56...14......2....7..6.....8...3.1........2.....
+.......316....8.......5.......37..2.58........6.......2.....6....71........4..8..
+.......316...2........7.....5.1.8...2.....6.....3...7.....4.2...3.5.....7........
+.......316..2.........9........8.29.31.......4.........49...5.....6.3......7.....
+.......316..8...............3....85..2..1.......4.....8.4...6....6.3....7....5...
+.......317...2.........6....4.1...5..3..8..........2..6..4..9..2....5......3.....
+.......317..2........48.......7..8...3........6...........39.6.52....4..8........
+.......317..2......4.......5.27...6....8..7...3...........93...2.....5......1....
+.......3174...............9.....346.2.....5......9.......57.8...3.8.......1......
+.......318...2....2.........371...6..1..8.5...........5..4..8...6.3..............
+.......318...6.............6.....47....1..6..5..2......235.........7.8...1.......
+.......318..9............4.4.....8......6.2.......1....31.5.......2..4.7.9.......
+.......32...1......5........4....8.....31.......6.2...3.....76.....8.5..8.2......
+.......32...1......6.......8.3.........6..9.......75.....58..7..4....1..2...3....
+.......32.1..........3.....3.97.........6.1..8.....4..2......8....54........16...
+.......32.1..4................3.7.2..84......6............8.1.47..1..5..3........
+.......32.1..4................7.3.2..84......6............8.1.47..1..5..3........
+.......32.4.......9........3.27...5....1..8..6.........7....1...8..6........3...6
+.......3248........1.......5.3....6.....1.8...........17....4.....6.2......3....5
+.......34...1............6..7....2....5..3....4..5.......74.1..3.....8..6..2.....
+.......34...1....78......9.98....2..6...4.......7..........98....7.3.....1.......
+.......34.6.2............7....96.8..3.1......7..8......7...3...9.....2......1....
+.......34.8.1............6.....39.......4.8....1......36.2.....4.....7.....7..5..
+.......341...............5..2..5.7...43..........1....9..6..8.....4..1.....3.2...
+.......345......1.....7....4.531..........2..1...........6..7...87.......2.4.....
+.......345..9................47..1...6....2...38......2.....5.7....36.4..........
+.......346..9................47..1...5....2...38......2.....6.7....43.5..........
+.......347....5..........1.....872......2.5...1.......2..3...6...14...........9..
+.......348..6........1.....6.5...1......4..7.2...9.....43............2.1.9.......
+.......35....2..7.....1.......24....8.....6..1.........2.5.7......3..8...7....1..
+.......35.4.....8.1..........7...2......85...6...........4..1.6.3.1..7....8......
+.......352..1......8........4....7.....2...4...5..3...3...7...6....4.2........1..
+.......3549........1.......6.3....7.....1.9...........18....4.....5.2......3....6
+.......36.......2.8........7.....1.4....3.5......2.....641......3...6......7..4..
+.......36...5...4....7........2..7.51.8......6........34..6.....5....2......1....
+.......36...5...4....7........2..7.51.8......6........34..6.....7....2......1....
+.......36..71.........4..5.4.5..3......7..2........1...1.2..8..3.........9.......
+.......36.3.....5.2............6.8..7.....4......53......7..21..6.9.......1......
+.......36.4.2......1............4.19..8...2..6...3....7...5.......1..8..3........
+.......362...3....5.......14...7.2...1..............8.3.8...4.....5.1......6.....
+.......362...3....5.......17...8.2...1..............8.3.9...4.....5.1......6.....
+.......368...1........2.....3.6.2.........19....5..8..1.....9...6.....7....3.....
+.......368..7............9..9......1.6.....2....5..4......39.....4...8..7.....5..
+.......3684..............2....2.3....1....7.....6..4.....41..5...3...2..6........
+.......369...4...........1....1.3...2.....4.....6...5...75..2......6.8...1.......
+.......37..2....5..1..........2..1.4.....16..3..4.....7...63.........2......8....
+.......37..46............1..78...2.......75......1....31.....2....8..6..4........
+.......37.4.6............1..96...2.......58......1....1.7....5....4..6..3........
+.......37.6.....4.5........1...4.5.2....83.........6...37.........5..1.....2.....
+.......374..2..............1.7....4....8..2..3..5.........31....8....5...6....4..
+.......375......4..9..........51.2....3...9...6.......2.....16....7.3......8.....
+.......379...4...........1....1.3...2.....4.....7...6...65..2......7.8...1.......
+.......38......71.9..4.........17...6.....9.......3......65.2....3....6..1.......
+.......38.....9..1...5...2....46.5..8..2.....1.........4....6......21...7........
+.......38....2........9....8.....2.....6..1....73........7.1.6.29....5...4.......
+.......38.6..2......7....5.5..4.........6.7........1..1..5.8....4....6.....3.....
+.......38.9.2...........51.74....6.......3.7.....1......56..2....3......1........
+.......382...5.......4...1.8.....6.......1......2......41...5.....62.7...3.......
+.......382..4.........7..1.8.....5.......1......2......71...4.....52.6...3.......
+.......386....1..........5.1..2..7..8.......4...75.....25.3..........1...3.......
+.......387...4...........1....1.8...2.....6.....3...4...65..2......6.7...1.......
+.......39....7..8....14....6.....5..2..6..........3.7....2..6...83............1..
+.......39...14........6..8....5..2...83............1..5..2..7.......3.6.2........
+.......39...14........8..7....5..2...37............1..5..2..6.......3.4.2........
+.......39...14........8..7....6..2...37............1..5..2..6.......3.4.6........
+.......39...6...4.8..1.....5.....6......2..7......4......28.7...43............1..
+.......39...74........5..8....6..7...83............1..1..2..6.......3.5.2........
+.......39...74........5..8....6..7...83............1..1..2..6.......3.5.6........
+.......395...7...........1....5.3...4.....2.....6.......3...86....24.7...1.......
+.......397..4.......3....1.48....2......3.7.......1....4.6..5.........2.....9....
+.......397..4.......3....1.68....2......3.7.......1....4.6..5.........2.....9....
+.......397..4.......3....1.84....2......3.7.......1....8.6..5.........2.....9....
+.......41....62...............71..3.6.2...5..5........31.4..........82...4.......
+.......41...7.....3............45.6.7.....3...2..1.......8..2...45......6.1......
+.......41...7.....3............45.6.7.....8...2..1.......9..2...45......6.1......
+.......41..5.8....6...........67.2..41....5..3...........1.4.3...2.......8.......
+.......41..73...........52....8..3..42.......5.......7.6...42......1......8......
+.......41..93...........52....8..3..42.......5.......7.6...42......1......8......
+.......41.2.....5.8...........28.7...6..3......1......3.....8.7...5.16...........
+.......41.2..6....8...7....3..4..6.......2......1.........3.7...1.5.......5....3.
+.......41.2.5..................84.6.57.............2.....12.3..8.4......6..7.....
+.......41.2.5..................94.7.58.............2.....62.3..9.4......7..8.....
+.......41.2.7..............4...13....7....2..6...........27.5..1.3....6....8.....
+.......41.5..8.............6..1.7....3....5.....4...2.4.....8......5.3....16.....
+.......41.5.8......9............7.2.....41.........5.37..26.8..1...........3.....
+.......41.5.9......7............8.2.....41.........5.38..76.9..1...........3.....
+.......41.6.8........3.....2...54.7..8............1......63.8..7.....2..4........
+.......41.6.9......7............8.2.....41.........3.58..72.6..1...........3.....
+.......41.7..6.....3.......4..2.1.5..6....7.....8.........5.3..1..4.....2........
+.......41.7.2........3.8...4...6..5..2....3......1....1...5.......7..8..6........
+.......41.8..3....2........5...6.7....2...3..4....8......5...2..1.4...........8..
+.......41.8..7.....3.......6..2.1.5..7....8.....9.........5.3..1..4.....2........
+.......41.9.7.........8.......8..29.6..5.....4.........3..6.9......41...5........
+.......412..5..........7...5.....2......4.6......36....34.......1.....3....8..5..
+.......412..6.....53.......7...8.3......41..........6...83........5..2...4.......
+.......412..7.............6...3..8...9....5...6..4....7.....23.3...6.........1...
+.......413...2.......5......15..........7.6...8.......6.....37.2..1.4......8.....
+.......4132.......5........6..3..2....4....8....5.....2.....3......81......74....
+.......415...2.......8......18..........3.6...9.......6.....35.7..1.4......9.....
+.......415..3.....2...........26.3...1.....6.7..5......8..41.......8.2...........
+.......415..9......7.6........35.6..4.2......8............4..8..9....3...3.......
+.......4152...........3........7.53.1..8.....4........6..1.5....3....2.....4.....
+.......416...........8.....5..6..2...4.....7....3.........716....2...3...7..4....
+.......416..3.........2.....4.1...8....5.6...7........3.....5......7.3...1...4...
+.......4163..........8......1.....7..7..3........2.5..5..1.4...2.....6.....7.....
+.......417...5....2...........8.1.3.65....7.....4......816.........2.9...........
+.......417...9....2.........3.1.4....4.2.......8...5..1...5.6.........8.......7..
+.......417..6.....2..5.........81....3..4....5.........1..3.......2..7........65.
+.......418...2..............4.5.9.....7...2........8..6.....39.2..41.......7.....
+.......418...5....2...........7.1.3.65....2.....4......716.........8.9...........
+.......418..5..............2.....86..7.14........3....6....82.....3..5...4.......
+.......419..3..............3..2..8......1..6.2.........67.4.....1..5.......8..2..
+.......419..3..............3..2..9......1..6.2.........67.4.....1..5.......8..3..
+.......419..5..............2.....96..8.14........3....6....97.....3..5...4.......
+.......419..6........2........81.3..54.........2.......31.4....7.....6.........2.
+.......419..7..............2.....96..8.14........3....6....97.....3..5...4.......
+.......42...5...8......1......9..3..2.....1..4...8.....9..6..5..1....7.....8.....
+.......421..7............8.6..3..5...4.....2....1.........6.1.5.9..4..........3..
+.......421..8............7.6..3..5...7.....2....1.........6.1.5.9..4..........3..
+.......425...9...............61..7......3.8...24......39............4..6...2...5.
+.......426..9............3.5.....8....76......2..4.......5.81...34............7..
+.......4265..........8.....1.....6......45...7....2......1..78...2.3.....4.......
+.......43....15......2........42.....5....6.....9..........817.4.3......2.....8..
+.......43....15......2........42.....9....5.....8..........716.4.3......2.....7..
+.......43....8..5......1...7..5..6.....3.4...1.........4.2.........7.1...3....9..
+.......43...8...7.....2.....6.5..8.....3.4.....1......37....2......1.9..4........
+.......43.1..5................4.8.3..95......7............9.1.58..2..6..4........
+.......43.1..5................8.4.3..95......7............9.1.58..2..6..4........
+.......43.5.2......8...9....6....8..1...3.............3.751.......8..2..4........
+.......431..2.................6..7...3....2....5.8....27.1.........3..659........
+.......432..7............8.6..2..5...4.....3....1.........6.2.5.9..4..........1..
+.......432..8............7.6..2..5...7.....3....1.........6.2.5.9..4..........1..
+.......435...8...........1....37.5...1.............2.....1.4.2...57.....8.....6..
+.......438...5...........1...76..2......8.7...1..........1.4.2.6.....5.....3.....
+.......45...8...2.1..........562....7.......4......7...86...1......45....3.......
+.......457..2........1.....1.6...2......5..6.3...8.....54............3.2.8.......
+.......458..2........1.....1.6...2......5..7.3...9.....54............3.2.9.......
+.......46....7..1..6..2....1.8.........5..3..4.....5...3....2.....1.8......4.....
+.......46...5...1.5........7.9...3.....1..8.....4.....6...3.2......7..5..1.......
+.......46...5...1.5........7.9...3.....1..8.....4.....6...3.2......9..5..1.......
+.......46...8...1.5........7.9...3.....1..8.....4.....6...3.2......7..5..1.......
+.......46...8...1.5........7.9...3.....1..8.....4.....6...3.2......9..5..1.......
+.......46..58............2.16....3.....3..5...2..........267...3.9..........4....
+.......46.2....3....1...........173.6.......8..........3....21.4..68.......5.....
+.......46.2....7....1...........183.6.......9..........8....21.4..69.......5.....
+.......46.5..1................4.8.3..17......6............7.1.23..2..5..4........
+.......461...............8....13.2...84..5......7......6..84...3.....1.....2.....
+.......467...1........3.....4.6.3.........19....8..7..1.....9...2.....8....4.....
+.......47.1..5................4.8.3..65......7............6.1.23..2..5..4........
+.......473..5............1.7.9...6......1..........2.....2..7.5.41..8....3.......
+.......486..2........7...1.....4..6.5.....3....2..1......35.7...1.............2..
+.......49....5..6.....3....4..9.....7..8...........3..5.3...1...6....2.....7.2...
+.......497..2........8...1.....4..7.5.....3....2..1......36.8...1.............2..
+.......51....36.............4.5...8.2.....6.......1.......2.34..1.4..7..6........
+.......51....83.......4....6..5...2..8....4...3.9.........7.8..5..6.....2........
+.......51...2.3......4......5..8..6..94............3..3.2...6..7.....2......5....
+.......51...3.7........8....21.6..........74..5.......4..15....3.....8.....2.....
+.......51...3.7......8.....5...1.7.....6..3..2............9..2.43........87......
+.......51...3.8......1......9..5..4..2....1...........6.17..8..4...2....5........
+.......51...3.8......1......9..5..6..2....1...........6.17..8..4...2....5........
+.......51...3.9......1......8..5..4..2....1...........6.17..3..4...2....5........
+.......51...3.9......1......8..5..6..2....1...........6.17..3..4...2....5........
+.......51...4.2...8...7....2..6..4..7......3....5.........3.2...16.......5.......
+.......51...4.2...8...7....2..6..4..7......8....5.........3.2...16.......5.......
+.......51...7.2......4......5..8..3..84............7..3.2...6..7.....2......5....
+.......51.2..6....7...4....64....3.....1.5.8.2..........18.....3.....6...........
+.......51.2..7................145....4....89....3.....1.95.........6.2..3........
+.......51.2.4.................39.2..5...8..........4...4.6..7..1...5..8....2.....
+.......51.2.6.................3..78.4..9.....1.........7...52..6...1........4.6..
+.......51.2.6...............7....2..3...5........4.8..5.1....3.4....8......2..6..
+.......51.3.8.................4..83.1..7.....2.........4...63..7...2........1.9..
+.......51.4...6......3.....1.5.3..........82.7........62....4.....75.......1.....
+.......51.4.7..................137..5...2.....6....4.....6..84.1..8.....2........
+.......51.4.7...............9....7......51.......6..3....4.62..3.....8..5.6......
+.......51.4.9........3...8.1.7.5.....3....2..............2.93..6.5......8........
+.......51.6...7.......3.........62..7......3.5..1......14...6.....85.7...........
+.......51.6...7.......3.........62..7......3.5..1......24...6.....85.7...........
+.......51.6..2................145....4....78....3.....1.85.........6.2..3........
+.......51.6..2....1..7........5...3..2..3.....4.......3.....2.....8..4..5.9......
+.......51.6.4.................38.6..5...7..........4...4.6..3..1...5..7....2.....
+.......51.6.4.................39.6..5...8..........4...4.6..7..1...5..8....2.....
+.......51.7..3....8...........5.1.4..3....6.....8.....5..42......1...3........7..
+.......51.8.2..............93....8......14......5.....4.1....7....6..2.....38....
+.......51.8.4..................31..95.7.......4..........7..46.1..2.....3.....8..
+.......51.9..3..............7.4..62....5.1......8.........7.3..5.4......2.....4..
+.......51.9.7.................4..93.1..5.....2.........8...63..7...1........2.7..
+.......512...3.................7.62..5.4...........3....45.1...6.....83....7.....
+.......512...6.................8.72..5.4...........6....45.1...6.....23....8.....
+.......512...8.....4..3.....172...........63.......4.....5.7...6.....3.....1.....
+.......512..6........8......71.5.....4.3..2........6......1..4.6.....3..8........
+.......512..6........8......71.5.....4.3..6........2......1..4.6.....3..8........
+.......512..8.....4.........1..57...3.....2......6.4...57....6....2..3...........
+.......5126.........86.........71.2..4..5..........3.....3..4..5..9.....7........
+.......513...2.......8......42..........9.6...1.......6.....39.7..5.1......4.....
+.......513...4....2.........561......7.6.........3.8...1.5...6.4.....3...........
+.......514...3.......8.....25.1.....3.....74......6.......4.3...6...7....1.......
+.......514...7....2.........37..64....8.........5.........2.78.51.3..............
+.......514..2.................4.62...5.3......7...........75.3.6.8...4......1....
+.......514..8.....2.........1..57...3.....2......6.4...57....6....2..3...........
+.......5146........8...........5.67...1.2....3.........5....4..2..3........1.9...
+.......516....3....9..4.....125..........79..4........5.....78.....2.......1.....
+.......516...3................5.4.9.8.26..........1.......2.8..7.....3...5.1.....
+.......516..2.................4.62...5.3......7...........75.3.4.8...6......1....
+.......517..2.......3........4.58.......1.6..6.....2...1.....8.26..........3.....
+.......517..2.....8.........54.1..3..1..3..........2..2..7..6...3.............7..
+.......518...2....3.........176.........3.2...5.....9.4..7..8...6.5..............
+.......518...7....3.........4..8.7.....4.......5........65.1....3....87.......2..
+.......518...7....3.........4..8.7.....6.......5........65.1....3....87.......2..
+.......518..2...............4..7.3......51....9..........3.92..5.7....6.1........
+.......518..2.....4.........1..95.........84..3..........76.3..25..........8.....
+.......518..3..............52..1....3.....79......6....67...4.....4..3...1.......
+.......518..7.....3..6.........12....9..5....6.........1..4.......3..8........76.
+.......518.3...............25.4......1....7......2.3.....5.6.4...7...2.....1.....
+.......519..2..............451.6.......4..38..........24....7.......32......5....
+.......52...7...4.1.........1.6.........3.8...24.........2..1.....4.5...3.....6..
+.......52...7...4.1.........1.6.........3.8...42.........2..1.....4.5...3.....6..
+.......52..34......7........3...56......2..1.....81...2.......8...6..7..1........
+.......52..54......7........3...56......2..1.....81...2.......8...6..7..1........
+.......52..94......7........3...56......2..1.....81...2.......8...6..7..1........
+.......524...6...........1..7.2.....6.....4.....1.8....18..........3.7..5.2......
+.......53.....8.1.3..4.........15.2.7.....4....6.........72.6...1.............2..
+.......53...4....6.8.......5.6...7......1.4..3......2..1....2.....3.5......7.....
+.......5316................4.....6.7...3.5......8.........241....3....2..7..1....
+.......536..7............2.....395..2.....8......1.......2..64...34......1.......
+.......537..6............4..24........8.5.......3......1..4.2..6....7...3.....6..
+.......538...6...........7....2..8.....7.5...1.........72..3......61.4...5.......
+.......54...8.3............1.5.4.......2..93.6........5....7.......1...2.3....8..
+.......54.1.7.....2............56....3....7...8.......6..1..3....4....725........
+.......54.1.9.....2............56....3....9...7.......6..1..7....4....825........
+.......54.7.3.....2.........1....7......45......2.8......67.1..8.....3..5........
+.......541..3.................7..3...4....2....6.8....32.1.........4..769........
+.......542...7........1.....6....73...54..............71....2..8..3........5....9
+.......543...2...........1...37..2......8.6...1..........1.5.3.6.....8.....4.....
+.......543..8............1..41....6..3...8......9..7..9.5...8......1..........2..
+.......547...2........1.....6....73...54..............17....2..2..3........5....8
+.......547...3................4...1638..7.....2..........5..8..1.5........6...3..
+.......549..7............6...6.52...8.....3........7...2.3..1...4..7......5......
+.......56..38.....4............62.........41.......3.....45.1...6.1.....72.......
+.......56.8..1......2....3....2.3...3..6......1....9..6..7.........8.4........1..
+.......57....4............3...3.7.6.8..5..4..1............8.1...7....2...3.6.....
+.......57....8..1..7..2....3.1.........6..4..5.....6...4....2.....1.3......5.....
+.......59...13.............34.....2..5...9......8..6..8.....3.7....54.........1..
+.......597..6........3......59..1....2..4..........13.8.7...3......5....4........
+.......61....27............7.4...2.....1...4.3........51....7......48....9.6.....
+.......61...2.3......7.......5.6.4.......23..1...........54..8.32.......7........
+.......61...32....5........23....7.....8.1.4.9..........16.4.......3.2...........
+.......61...4...8.3............2.54..1.......8........7..8..3....5...2.....6.3...
+.......61...7.4............5..4..7..6.2....5.1............16....8..2.....3....9..
+.......61...7.4............5..8..7..6.2....5.1............16....9..2.....3....8..
+.......61...8.....4...........3..78.16.5.....2.........3..6........2.4...8....3..
+.......61...9.4............5..4..7..6.2....5.1............16....8..2.....3....9..
+.......61...9.4............5..7..4..1.2....5.6............61....8..2.....3....7..
+.......61...9.4............5..7..4..6.2....5.1............16....8..2.....3....7..
+.......61..57......2..........43.5..1...6....98.......6....8.1....5..7...........
+.......61..98................4.2.5...3....8.......6......7..43.16.3.....2........
+.......61.2.5..............1...64....5....2..8...........25.3..6.1....4....7.....
+.......61.3.2..............1.6.5..4....7..3..5........4..3..2...8....7......1....
+.......61.3.4..............6..3..78.1.5.........9.....2...1.....4....3......5.4..
+.......61.4..5.........7....7...35.....1...4.5........3.16.........2.8........4..
+.......61.4.3........5...9.1.8.6.....3....2..............2.53..7.6......9........
+.......61.4.3........5...9.1.8.6.....5....2..............2.53..7.6......9........
+.......61.43................2...83..6...7..5.1........7..16......8...4.....5.....
+.......61.5..2...................25.6..4.........7.3...2....53.4..6.1......8.....
+.......61.5..3...................25.6..4.........5.3...2....73.4..6.1......8.....
+.......61.5..3.............68..4.7..2..6...........5..9..1.6.........38....2.....
+.......61.5..9.............2......7.....8.5..6.1.........7..32..9....4.....6.2...
+.......61.5.7.....2....9......8..3..4.1......6............6..8..3..4.....2....7..
+.......61.7...5...4...3....3.....2.....1...7....8.......16.........7.4..5.....3..
+.......61.7..4.............1.2..6.......8.3..5.........3....74.6..5.1......2.....
+.......61.7.5..............9..46.....5....2........7..6.1....3.3..2........7.8...
+.......61.7.5........4.....6.3.5.......2..1.........4.2....6.......39....1....8..
+.......61.7.8.....5...9.......6..3..3.2......4............3..4..1...2....6....9..
+.......612...3.................7.24..6.5...........3....56.1...3.....82....7.....
+.......612...3....4.........2.8.1...5..6..7.........4..81..........7.4....3......
+.......612..3.................16.....2..4....8.....3...6....74....8..2....35.....
+.......612..5.....8...........2..7...37.......6.4.....1.....2......38.......6..4.
+.......612..5.....8...........2..7...37.......6.4.....1.....2......68.......3..4.
+.......612..7........8......13.6.....5.4..2........7......1..5.7.....4..8........
+.......612..7........8......13.6.....5.4..7........2......1..5.7.....4..8........
+.......612..8.................4.28...63.........7.........362..41...........1..5.
+.......613...2.......7......17..........8.5...9.......5.....38.6..4.1......9.....
+.......613..7......9.4.....71..8.......3..4.........2.....62...5.....9......1....
+.......613..8..............5.....4......14.......7.8...1.62.......5..39...7......
+.......6135.......4...5.....2....8.....6.1......7.........8.2..6..4.......7....1.
+.......614....3......7......1.69.....2....3...........3.4...2.....18..5.7........
+.......614...3.......5......26....8.....7.....1.......5..2..3..3.4...7.....1.....
+.......614...7........9.......6.82..9.1......2..1.........5.4...6.3............9.
+.......614...7.....2........615.........3.74.5..........51.8...7.....4...........
+.......614..2.....9.........67.15.3..1..7..........4..2..8..5...3................
+.......614.2.......3.......38....4.....6.2......1.......65.....1......7.....8.3..
+.......614.3.......2.......3.8...4.....6.2......1......6.5.....1......7.....8.3..
+.......6148...................52.4......3.....6.......53...6.7.2.....8.....1.7...
+.......615...2....97........614.........5.9.........8....8.6...3.....5.....7.....
+.......617...2..............6.53.....1....2........4.....1.7.3.2.8......4..3.....
+.......617..4.....8...........72.4..3............1......98..7...1....5...6.....2.
+.......618....7.......2.....321........65.8................372.91.4..............
+.......6189...................52.4......3.....6.......53...6.7.2.....8.....1.7...
+.......6189...................52.4......3.....6.......53...6.7.2.....9.....1.7...
+.......619..2........4......7..68.3.2.....7......1......6.5.......9..2...4.......
+.......628..3............5..4.2..1...6.....4.......7....1.56...7.....3......4....
+.......63...1.....2.........5....1.....4..2....9..6...63..9.......2..74...8......
+.......63...5....4.8.......6.3...7......1.5..4......2..1....2.....4.6......7.....
+.......63.2..4.........1....4....21....37.......5..4..5.36...........7..8........
+.......63.2..4.........1....4....21....37.......5..4..8.36...........7..5........
+.......638...9...........1...5.2.4...1.............2..2..6..5.....1.3.7....4.....
+.......64..58............2.16....3.....3..5...2..........267...3.9..........4....
+.......643..8............1..41....7..5...8......9..5..9.6...8......1..........2..
+.......645...8...........1....3.57...1.....4.....7....7.8...2.....6..8.....1.....
+.......65...3.........1........4.17.5.9............8..27.5......1....3.....9.6...
+.......65...71.....4...........53....8....2........1....32..7..5.6......1..8.....
+.......65.4.8.............1..6...8...3....7......1.......7..23.4....2...5.1......
+.......659..2.................9..24..53................6..57...1....68......3.9..
+.......67..39......1......46....4....5..1..........1.....8..52...7...3..4........
+.......67.6.2............4....86.3..4.1......7..9......7...4...9.....2......1....
+.......68.3..7....1......2..7....45....2.8......4.........3.1..2..6...........9..
+.......68.3..7....4......2..7....45....2.8......1.........3.1..2..6...........9..
+.......68.3..9....7......2..1....35....2.8......4.........3.1..2..6...........5..
+.......681...............3..6..3.......4..1....8...2..4..2..5..73..........1.8...
+.......6835...........1....1.....5.....8..4....9.......6.2.5......4..3....7....1.
+.......6835...........1....1.....5.....9..4....6.......7.2.5......4..3....8....1.
+.......689.......2...4..5...41..........35....5..........8...1.3.....7.....1..4..
+.......69.7.....4..5.8........5.72..3..1.....6............3...84...6..........5..
+.......698...4........1.......3..8...1....4..65.......7.1...2.....9.5......6.....
+.......71....4....6...........7.5...2.....6.....1..3...87....5..1.3.........6.4..
+.......71....52.................854.71.4.....3........46..7......5...2.....3.....
+.......71...2.8......6.....5.1.........3..2..7.........3..4.6..26...........7..5.
+.......71...52.................7..8.3....1...2.4......5..6..2.....3..6...7...4...
+.......71...58.................31.6.2..4.....5.8.......7...6....3....5.....1..2..
+.......71...6.4............5..4..6..1.2....5.7............71....8..2.....3....9..
+.......71...6.4............5..8..6..1.2....5.7............71....9..2.....3....8..
+.......71...8........3......4....3..27..........5..8..6...7.5....8.6........1..4.
+.......71...9.4............5..4..6..1.2....5.7............71....8..2.....3....9..
+.......71..25..............78.....3....42.......1......5...72....46..5..3........
+.......71..5.2.....4.......1..3..........94..8.........6....95.3..71.......8.....
+.......71..6.9...........5.1.2..........6.3...5........7.5.4...8.....6.....2..4..
+.......71.2.4.....5.........8....6......37.......1.......6..24.3..5.....1.9......
+.......71.2.4.....6.........8....2......37.......1.......2..54.3..5.....1.9......
+.......71.2.6..............1...73....6....2..5...........26.4..7.3....5....8.....
+.......71.2.8........4.3...7...6..5....2..3..9........6...7.....8....4......5....
+.......71.3..2...................25.6..1.........8.3...2....53.4..6.1......7.....
+.......71.4..5.......6........1..6...8....5.......7..31.7....6.....8.2..3........
+.......71.5...3....4..8.....3....5..2..1.....6............4.3..7......4.1..6.....
+.......71.5...8.............6..4..3.2..17.......3..6.......25..4.1......7........
+.......71.5..8.............6..1.3....2....89....4........7..2..1...4....4.3......
+.......71.5.6.....2....9......8..3..4.7......1............1..2..3..4.....2....6..
+.......71.6...5.............8....63.4..17.......2.....9.7.2.........38........5..
+.......71.6..2........3....7...6.3..4.....2..1..4........1.5.8..2..........7.....
+.......71.6..2........3....7...6.3..4.....2..1..4........7.5.8..2..........1.....
+.......71.6..2....3.........5....26....1.8......3........43.5..1.8........7......
+.......71.6..3........2....7...6.3..4.....2..1..4........1.5.8..2..........7.....
+.......71.6..3........2....7...6.3..4.....2..1..4........7.5.8..2..........1.....
+.......71.6.3.....5............4..5...7.1.....2....6.....5..9..4..6.....8.1......
+.......71.6.5................5.4.6...3....2.......7......8..54.1.73.....2........
+.......71.8.3........2.....4.7.2.......6..8..1.....3..5...7..4..3....6...........
+.......71.8.4........5.....1...72....5....63.............38.4..2.7......6........
+.......71.9.8..............4..3..6..7.1....5....9.2....6....3..5...7..........9..
+.......712...5.....3..6....7.13...........64.8...........1.7....4....5.......2...
+.......712..3.....86..........5..63...42.....7............71....5....8......4....
+.......712..6.....3...........51...76.4...2.......8....5.....4....2..6...1.......
+.......712..9.................6..83..714.....5........64....2......5.6.......7...
+.......713..2..................6.3...1..3......4......6.....54....4.72..8..1.....
+.......713..2........4.........78.4.2.....3...5..1....4.....5....7.6.......5.....
+.......713..5.................3.85....26......7...........7.32.8...5.....1..4....
+.......713..5.....6..4.........72....8..1....4.........7..2.......3..6........54.
+.......713..8......8.........5.41....2....3......7....6.1....4....2..6..7........
+.......714...3.......2......2.7.........4.3........5.....1.2.6.3.8...4..5........
+.......714...8................17..5.82.......3..........17.3...6.....8.....5..4..
+.......714..5.....6.......3.5..37...2.....8......1.......8...4....4..2...1.......
+.......714..9.....3..5........3..45..7..6..........9......72....8..1....5........
+.......715...2.......8......47..........9.6...1.......6.....25.7..1.3......4.....
+.......715...3.......6.....6.....8..2..4........7.2.......8.3...41.......7.....2.
+.......715..4.....3........4..3.65...1.....6....2......8....2......17.......8....
+.......7158........3.9.....4.72...........81..6.......2.....5......67.......1....
+.......716...4..............875.........2.9...1.......3..8..6..4.6....2....1.....
+.......716..2.....8.........7..31.4....6..5..2.........3..7.......5..6........2..
+.......716..2.....9........4..65.3...1.....8....4......7..81....2....6...........
+.......716..5......4.......5.26...3....9..6...7...........13...8.....9......7....
+.......716..5.....2........34..1........7.62.......5.....6..3...8.4......1.......
+.......716..5.....3..4.........72....8..1....4.........7..2.......3..6........54.
+.......718...2....3.........765.........3.2...1.....9.4..6..8...5.1..............
+.......718...3.............67.2.........9.3........5...2.7.1...5.....83....4.....
+.......718...4..............7.2......3....8......9.4.....7.1.3.4..5..6..9........
+.......718...4.............67.2.........9.3........4...2.7.1...3.....84....5.....
+.......718..3.....4...5....67....5......12......4.......2....5....8..4...1.......
+.......719......6..2.........4.7.....3....4.....91....7..6....8...3..2..1........
+.......7193...................62.4......3.....7.......65...7.8.2.....9.....1.8...
+.......72....51................6.18.72.3.....4........3..2........4..6....8...5..
+.......72..68............5.17....3.....4..8...2..........217...3.9..........5....
+.......72.1...........6.......7..51.9.2......4...........51.6..3.......9...8.7...
+.......72.8.5......1.......2...97.........1..3........7.3....6....18.5.....4.....
+.......72.8.5......1.......2...97.........8..6........7.3....6....18.5.....4.....
+.......72.8.6......1.......4...97.........8..3........7.3....4....18.6.....5.....
+.......732..5...........61...31........9...4.8.....7......862...1...........3....
+.......74..28.............3.7.53....6......1.......2..54....6......71...7........
+.......74.1..3...........8.....1.52.7..6.....4.........53...1.....7.8.........2..
+.......74.1..3...........8.....1.52.7..6.....4.........53...1.....8.7.........2..
+.......7415...............8.1....23.6...48.......7....2..5..1.....3.......4......
+.......742...5............1...1.4.3.5.....6....87........39.8...1.............2..
+.......745..1.............98....95......4...........1..7.2..6......8.3...4.7.....
+.......7532...............8.1....24.6...58.......7....2..4..1.....3.......5......
+.......754...6...........1...21.5......7...4.6.....3.....39.8...1.............2..
+.......754...6...........1...21.5......7...4.9.....3.....39.8...1.............2..
+.......754...6...........1...31.5......7...4.6.....3.....39.8...1.............2..
+.......754...6...........1...31.5......7...4.9.....3.....39.8...1.............2..
+.......7562...............8.1....24.3...58.......7....2..4..1.....3.......5......
+.......76.6.2............5....86.4..5.1......7..9......3...5...9.....2......1....
+.......764..9............8...8.7.......2..4...9....3..2.....53......6..1....8....
+.......785..2...........6...67....5..8.....2....3..4..3.....1.2....7.........6...
+.......785..3............1.4...7.2......18....3........6.4..5........43...1......
+.......786......5.....4.....58...........13...4.......3..6..1.....25.......7..4..
+.......79.3..8....5......2..8....56....2.9......4.........3.1..2..7...........4..
+.......79.3..8....5......2..8....56....2.9......4.........4.1..2..7...........4..
+.......81....9..3.7....4......2..6...3.8......1...........1.4.35..6.....2........
+.......81....9..4.7....5......3..6...4.8......1...........1.5.43..6.....2........
+.......81...4.9......2......6..81.....4...23..........38..7....2..5..9...........
+.......81...6.2...3..7.....6.4...7......9..1.7........5..4..2...1..8.............
+.......81.2..3.................6.32.7..45....1........5..7.8....6....2.....1.....
+.......81.2..4.......7.........5.62.3...9....1.........4.3..2..5....8......1.....
+.......81.2.3..............1.9....4....2..5..8...........58.2...7....3..6...1....
+.......81.2.3......4...6......6..42.8.1.5..........7.....4..2..5...8.............
+.......81.2.3.....7.........4....7......18.......5.......6..23.5..4.....1.6......
+.......81.2.5..............4...31...7.....2...6..........26.5..1.3....4....7.....
+.......81.2.6.....4.........9....2......38.......1.......5..72.3..4.....1.5......
+.......81.2.7.................9..25.8......3.4.....7..6...18....5....3......4....
+.......81.2.7........4.3...1...6..5....2..3..5........8...1.....4....7......5....
+.......81.2.7........4.3...1...6..5....2..3..5........8...1.....7....4......5....
+.......81.2.7.....5.........6....2......38.......1.......6..74.2..5.....1.3......
+.......81.2.7.....5.........9....4......38.......1.......6..24.3..5.....1.6......
+.......81.3...5............5...746..1.9................8....37.6..91.......2.....
+.......81.3...5............5...746..9.1................8....37.6..91.......2.....
+.......81.3..2.......7.........5.62.4...9....1.........2.4..3..5....8......1.....
+.......81.3..2.......7.........5.62.4...9....1.........6.4..3..5....8......1.....
+.......81.3.2..............1.8.6..4....7..3..6........5..3..7...9....2......1....
+.......81.3.2..............1.8.6..4....9..3..6........5..3..7...7....2......1....
+.......81.3.2.....5...........6..23.1..4.....7........4...7........1.8...6....3..
+.......81.3.5.........2....1....7.......8.5...5....4..6..1...7....4.3...8........
+.......81.3.5.........2....1....9.......8.5...5....4..6..1...7....4.3...8........
+.......81.3.6.........2....5....7.......8.6...6....4..1..5...7....4.3...8........
+.......81.3.6.........2....7....9.......8.6...6....4..1..5...7....4.3...8........
+.......81.4.3......2...6......6..42.8.1.5..........7.....4..2..5...8.............
+.......81.5.6.....2....9......7..3..4.8......1............1..7..3..4.....2....6..
+.......81.6..2....3.........5....26....1.7......3........43.5..7.1........8......
+.......81.6.5.....3........5...28....7....4......1.......6..73...24.....1........
+.......81.6.5.....7........2..6..5....8....2.1..3......4..21....5....6...........
+.......81.6.7........2......4....6......83..........2....5.27..3.8.4....1........
+.......81.7.6.....3........4...18....3....5......2.......5..76...24.....1........
+.......81.7.6.....3........4...28....3....5......1.......5..79...24.....1........
+.......81.8.....2.3.........16.........5..6...9.2.........91...5.....3..4...8....
+.......81.9...5.............7....63.4..81.......2.....2.1.6.........35........7..
+.......81.9...5.............7....63.4..81.......2.....2.1.6.........37........5..
+.......81.9.3........2.....7.8.4.......6..9..1.....3..5...8..4..3....6...........
+.......811...6.....7..5......9...76....1.2......8..4.....3..5..8......2..........
+.......812...6..............485.........2.3...1.......5.....67....1.3...7..4.....
+.......812...6.......7........4.8.7.63..........1.......4...6......5.2...18......
+.......812..4.................23.7...1.....5...86.....7.....4...9..8........5.2..
+.......812..5......3........2.4.6.....1....7....2.......8.1........3.2..7.....4..
+.......812..5......3........2.4.6.....8....7....2.......1.8........3.2..7.....4..
+.......812..6...............89.1..5....4.32........6..4.....7.....25........8....
+.......812..7.................23.7...1.....5...86.....7.....4...3..8........5.2..
+.......812..7.................23.7...1.....5...86.....7.....4...4..8........5.2..
+.......812..7.................23.7...1.....5...86.....7.....4...9..8........5.2..
+.......812..7........5.........8.65.4...1....5.....7...6.3......89............4..
+.......812..7.....96..........5..63...42.....8............81....5....9......4....
+.......8123........4.7........6..37...53.....1........4.....2......58.......1....
+.......8125........6.7........5..67...42.....1........3.....9......48.......1....
+.......813...2.......7......48..........6.2...1.......6.....35.7..5.4......1.....
+.......813..2.........74...2.....56.7...1.........9......8..2...14.......9.......
+.......813..6......9.4.....68..7.......3..4.........2.....12...5.....3......8....
+.......8136........4.7.....5.....3......21.......8......2....1....4..6..4..3.....
+.......814..3.....3...5....19....5......28......6......82....5....4..7...........
+.......814..3.....3...5....19....5......28......6......82....5....7..4...........
+.......814..3.....3...5....19....5......82......6......82....5....4..7...........
+.......814..3.....3...5....19....5......82......6......82....5....7..4...........
+.......814..3.....3...5....61....5......82......7.......2....5....6..4...8.......
+.......814..3.....3...5....68....5......12......7.......2....5....6..4...1.......
+.......815..4......73..........28....6....3......1.......6..74.2..5.....1........
+.......816....2......7.....5.....36.8..1........4.........6.2...47.......1..3....
+.......816...3.......2......2.8.........4.3........5.....1.2.7.3.4...6..5........
+.......816...4.......23....4......5.3..7........1.........5.3...1....2...87......
+.......816...7................8.1.4.7.2......3..4.....2.....7......6.3...8.5.....
+.......816...7................8.5.4.7.2......3..1.....2.....7......9.3...8.5.....
+.......816..2...............1..89...5.3...2........6.....3..57.24........8.......
+.......816..4.....5..7......12.......8..9.......5.........1..5..3....6..7.....4..
+.......816..5......4.......5.27...3....6..7...8...........13...9.....6......8....
+.......8169........4.3.....5.82...........91..7.......3.....6......18.......7....
+.......817...5.....2.......6.12......8.....4.....9.3..3....4...2.....5.....8.....
+.......817...6.............4..5.7...6.....72....1......582.........3.2...1.......
+.......817..2.....2...........51..3..5..4....6.....8.....7..9....3..6....1.......
+.......817..3.....4...5....61....5......82......4.......2....5....7..4...8.......
+.......817..4........2.....4.....3....5.1........9.....1.35....2.....64.......7..
+.......817..6.....3..5.........82....9..1....5.........8..4.......3..7........65.
+.......817..6.....5.........4..81.........29.....3.......5.47..6..2......8.......
+.......819..4.....7..6......82.......1..5.......7.........8..5..3....9..6.....4..
+.......82....31.............8.42....4.....1.....5.....6.1...3.....2...5.7.....6..
+.......82....31.............8.42....7.....1.....5.....6.1...3.....2...5.4.....7..
+.......82..5.6.....1........9.3.2......1..5..8......4.6...4....3.......1......3..
+.......82.4.6......1.......2...98.........1..3........8.3....7....41.6.....5.....
+.......825....6..........9.6.....3.....92...........4.....531...9.6.......8...7..
+.......825..3..............3...72...4.....63.....1.......8..5...81.......2......7
+.......826..4..............4...72...5.....43.....1.......8..6...81.......2......7
+.......83....14......2........32.....9....4.....7..........615.3.8......2.....6..
+.......83....3..1..7..........2.4....3....6......1....2..6..4.5...5..7..1........
+.......83.2.1............4....61.2..8.....9....4.......6.3..5..1......7......8...
+.......83.2.7............4....61.2..8.....9....4.......6.3..1..5......7......8...
+.......83.4.3........5...6.3.....4.....7..5..2.8.......5..6.1.......2.......8....
+.......834...2..........51...23.....7.....6.....1...4.....752...1..........8.....
+.......835..4........1.........2.7..1.....4.......8....386......2..7..........52.
+.......839..1............2.1....97...2..8..........1....57..4....3....6..8.......
+.......84...1.....2...........6..13.4.8.......5.......56....2......8...7.1..3....
+.......84...51........3....4.....2..3....8......6...7....2..4.3.76............1..
+.......84.5..1...........5.....3.62.8..2.....4.........73...1.....5.8.........9..
+.......841..6..................4.1.3.3..2....5.....6...48....2....7.15...........
+.......846...1.............5.....1.6...8..3...7.2......87....2.....635...........
+.......8475...............9.1....73.6...49.......8....2..5..1.....3.......4......
+.......85..4.7...........3.1...6.7..57....1...3.8.......62........5.3............
+.......852...3...........3..4..1.6...58.........7.....7..4..1.....5..2.......8...
+.......8576...............9.1....64.3...59.......8....2..4..1.....3.......5......
+.......8632...............9.1....25.7...69.......8....2..5..4.....3.......6......
+.......87..4.1...........3.1...6.5..57....1...3.8.......62........7.3............
+.......87..4.5...........3.1...6.5..57....1...3.8.......62........7.3............
+.......91....2.......4.....5.7...2..1..9.....86........4.....8..9...1.......7.3..
+.......91....3.......5.....6.8...3..2..9.....17........5.....2..9...1.......8.4..
+.......91..2.8.....4.7......5..614......9....3...........3..75.9...........2.....
+.......91.2.4.................38.2..7...9..........4...4.5..6..9...1..7....2.....
+.......91.2.7.....6.........8....5......39.......1.......6..84.3..5.....1.7......
+.......91.3.6.........2....7....8.......9.6...6....4..1..5...8....4.3...9........
+.......91.6...5.............8....63.4..91.......2.....2.1.7.........35........8..
+.......91.6...5.............8....63.4..91.......2.....2.1.7.........38........5..
+.......91.6..7...............5.3.76.......2..1........3..1....4.82.........4.9...
+.......91.6..7...............5.3.76.......3..1........3..1....4.82.........4.9...
+.......91.7..2.........4......38.....4....9.....1.....3.....64......57..1..8.....
+.......91.7..8...............6.4.87.......3..1........4..1....5.32.........5.9...
+.......91.8..4....4...........72.5..8.1....6.9.........2....3.....6.1......9.....
+.......91.8.2..............93....8......14......5.....1.4....7....6..2.....38....
+.......91.8.6.........3.......7..26.5..4.....1.........3..5.8......19...4........
+.......91.8.6.........3.......7..28.5..4.....1.........3..5.8......19...4........
+.......912...5.............5.....24.7..8......6.1......894.........6.3...1.......
+.......912..4......3........6.5.7.....9....8....2.......1.9........3.2..8.....4..
+.......912..6...............4..1.6......39....7....2.....4..57.3..8.....1........
+.......912..8.....6.........4..91.........25.....3.......6.48..7..5......9.......
+.......913...4....5..6.......72..6...9.....8....3.....2.....5......91.......8....
+.......913..2.........85...6.....27.8...4.........1......6..5...49.......1.......
+.......914...7.............7..3.....8.....4.....1.6....195...6.....4.7..2........
+.......914...7.............7..3.....8.....4.....1.6....195...6.....4.8..2........
+.......914..3.................219...2.....85.....6.....9.....6....4..7..3.....4..
+.......914..3.....3...5....71....5......92......6......92....5....4..8...........
+.......914..3.....3...5....79....5......12......6......12....5....4..8...........
+.......915...8....2...........72.6...1.3......9.......64.1...........52.......8..
+.......915..2.....3.........8.7...4..9....6.....5.....2...6.5...1..9.........3...
+.......916..3......7.......4.....5......29.......1.......5..68.31........2.8.....
+.......916..7.....2........7......1....6..5.....45.....3..81....4....6....5......
+.......916..7.....8.........4..91.........25.....3.......6.48..2..5......9.......
+.......916..7.....8.........4..91.........25.....3.......6.48..7..5......9.......
+.......916.3......5.........9.1...4......23..7........3.....7.....41.......98....
+.......9163.................19.8........2.4........6..2..6..3.....7.3.5....4.....
+.......9163.................51.8........2.4........6..2..6..3.....7.3.5....4.....
+.......9163.................91.8........2.4........6..2..6..3.....7.3.5....4.....
+.......917......3....2......9..1..8...5...6..2.........8..9.......6..4.....7..2..
+.......917...3....2..5.....6.....2...4.9..............5....8.4..9...1.......2.3..
+.......917...3....2..5.....6.....2...4.9..............5....8.4..9...1.......6.3..
+.......917..4.........3.......651...2.....37.............8..2...54......31.......
+.......917..4........38.......5..8...29.......1.......6....2.......6..1.5.....3..
+.......917..4.....2........5..29........8..1..4....6...81...4.....7..3...........
+.......917..8.....2...........51..3..2..4....6.....9.....7..6....3..6....1.......
+.......917..8.....2...........51..3..5..4....6.....9.....7..2....3..6....1.......
+.......917..8.....2...........51..3..5..4....6.....9.....7..8....3..6....1.......
+.......917..8.....2...........51..3..7..4....6.....9.....7..2....3..6....1.......
+.......917..8.....6.........4..91.........25.....3.......6.47..2..5......9.......
+.......918..2........4......6..17.3.2.....6......9......1.5.......8..2...4.......
+.......918..2.....2...........51..3..5..4....6.....9.....7..8....3..6....1.......
+.......918..3.....3...5....47....5......92......6.......2....5....8..4...9.......
+.......918..7.....2...........51..3..9..4....6.....9.....2..8....3..6....1.......
+.......92.1.4...............3.1..4..1...6........2...7...5..83.2.9......6........
+.......927......1....3......9..2..8...5...6..3.........1..9.......6..4.....7..3..
+.......93....14......2........32.....4....5.....8..........716.3.9......2.....7..
+.......9348........1.......5.3....6.....1.8...........17....4.....9.2......3....5
+.......94...4...7.1........2.8...6.....75..........1...3..6.5...47...........2...
+.......94.3..9...........6..7....82.2..6..........4......75.3..9.6............1..
+.......962...3...........3..5..1.7...69.........8.....8..4..1.....6..2.......9...
+.......97....5........4....1.72......4....3.....9.....6..7.1....3....45.......8..
+.......973..4............2.6...981..4....73......2.....72.........1......8.......
+......1.....3.....9........7..1..6..2......9....5.......8.2..4..1...6..5.5..9....
+......1.....5.....2.........354.........1.7...8....2....4....596....2.......7..3.
+......1.....5.....2.........354.........1.7...8....2....4....596...7.........2.3.
+......1.....5.....2.........354.........1.8...7....2....4....956....8.......2..3.
+......1.....5.....2.........354.........1.8...7....2....4....956...2.........8.3.
+......1.2......34...5.8....36...........9..5..1.......1..4.3.....7...6.....1.....
+......1.2...3..5.....6.8......4...3.2...5....1............7.2...8..1.....3.....6.
+......1.2...3..5.....7.8......4...7.6...5....1............4.6...7..1.....3.....4.
+......1.2...3..6.....4.8......5...4.2...6....1............7.2...5..1.....4.....3.
+......1.2...3..6.....7.9......4...3.2...5....1............8.2...4..1.....3.....7.
+......1.2...3..6.....8.9......4...8.2...5....1............7.2...8..1.....3.....6.
+......1.2...3..7.....4.9......5...4.2...6....1............8.2...9..1.....4.....3.
+......1.2...3..7.....8.9......5...8.2...6....1............1.6...8..4.....3.....7.
+......1.2.3....4.....7..5...8.....3.....15.......2.......3...642.1......9........
+......1.2.4.7.....3..5.......8..1...6......7.....2......2...6.....6..3...1..7....
+......1.2.8.3...........5.....69..8...1......5.........6....47....2.1...7...5....
+......1.24...5..........9...6..7..8...1.........3..........146.32.....5....9.....
+......1.25..6...............23...7.....4.5....1....3.....17........2..8.8......4.
+......1.27...5..........8...6..7..4...1.........3..........146.32.....5....8.....
+......1.27...5..........9...6..7..8...1.........3..........146.32.....5....9.....
+......1.27..4...........8..3.....64.4....9.......1.....126........5...3..9.......
+......1.29...5..........8...4..6..7...1.........3..........146.32.....5....8.....
+......1.29...5..........8...6..7..4...1.........3..........146.32.....5....8.....
+......1.3...4..5..67...........2..7.3..........1..........634....75......2.....8.
+......1.3.2..9..........4......25.8..1.......4........3..1.4.....8....2....7..6..
+......1.3.2.4........67.....7....4.......1..........7....24..6.3.1...5..8........
+......1.3.8..2.........45...3.....2....5...7....1.....1..3..6..7...8......5......
+......1.38...5..........7...6..2..4...1.........3..........146.42.....5....7.....
+......1.38..6.....2.....7.....4.6.8..1..........7.......8..3....3..1....4...5....
+......1.39...5..........7...6..2..4...1.........3..........146.82.....5....7.....
+......1.39...5..........8...6..2..7...1.........3..........146.72.....5....8.....
+......1.4.....36......5...25.3......2..6........1...8.....7.23..1..........4.....
+......1.4....1.8..6..7.....391.......8.5........2.....5.6....7.4...8.............
+......1.4....6........5....2..43.......1.7...6.....8...1.5......7.....4........23
+......1.4....8.3...4..5.......2...7.3.....6....1..4...87.....5....3........1.....
+......1.4...7.2............46..1.......5...7.1...........38.6...27....3...4......
+......1.4...8.2............46..7.......6...8.1...........34.7...28....5...9......
+......1.4.8.9...........5.....7.2.8...1......5...........53.6...2.....3.4...1....
+......1.47.2..................7.5.2.3..6......1.......2.....63..5..14.......8....
+......1.48...7..........6..7..2........1.4....3.....8..12..........5..3.6.4......
+......1.48...9..........6..7..2........4.1....3.....9..12..........5..3.6.4......
+......1.5...7..4..7..2........5...8.4.3.......61......5......2..4..6........1....
+......1.5..2...6...3.8.....1.....4.....3.8......2.....57.....3.4...6........1....
+......1.5..26........9.2...3......9.....7.8......1....71....5.....2...4..8.......
+......1.5..4.7..........3..15.3........6...8..2...........512....6....7.8........
+......1.5.3.8..................12....6.....3.......7..1.2...4..5..36.......7...8.
+......1.5.3.8...........6...2..3....5....6.........27.6.1.....4...2...3.....7....
+......1.52....7.......3.6....9...4...1.5..........2.3.3......7....98.......1.....
+......1.52..8...........3......71........48..3...5.......3...26..4....5..1.......
+......1.53...4.................8.72.9.56............4..2....8.....1...3....5.9...
+......1.53.2..................2.6.3.71..........3.....4.....82..7..15.......9....
+......1.58.2..................4.6.3.2..3......1.......4.....72..6..15.......9....
+......1.58.2..................4.6.3.4..7......1.......3.....72..6..15.......9....
+......1.58.2..................8.6.2.3..7......1.......4.....73..6..15.......9....
+......1.58.2..................8.6.2.4..7......1.......2.....73..6..15.......9....
+......1.58.2..................8.6.3.3..7......1.......4.....72..6..15.......9....
+......1.6....25...3..........91..4.....4............2.52.....8....63.7.......7...
+......1.6.2....5......82....1....2......4..3....5.....7.3....4.4..6..........1...
+......1.6.2..7....8.....5...97....3....5...4....1.........2.78.1..6..............
+......1.6.2..7....9.....5...78....3....5...4....1.........2.78.1..6..............
+......1.6.3..7....4.....5...78....2....5...4....1.........2.78.1..6..............
+......1.6.3..7....9.....5...78....2....5...4....1.........2.78.1..6..............
+......1.6.4.7........5..3...7....45.6...1................45..2.3......8.1........
+......1.6.4.8........5..3...7....45.6...1................48..2.3......9.1........
+......1.62....5.........8..32.....7.....1.......8......71...4......23.5....6.....
+......1.63.2..................2.7.3.4..8......1.......5.....84..7..16.......9....
+......1.63.2..................5.7.3.5..8......1.......2.....84..7..16.......9....
+......1.639.............5.....61.2..87..........5........4.7.3...1.5...........8.
+......1.64.2..................2.7.3.5..8......1.......3.....84..7..16.......9....
+......1.64.2..................5.7.3.5..8......1.......2.....84..7..16.......9....
+......1.64.2..................5.7.3.5..8......1.......3.....84..7..16.......9....
+......1.7.....13..8...4....5..3.......6....4.2...........2...5..1....2...3.7.....
+......1.7.....13..8...5....2..3.......6....5.4...........2...4..1....2...3.7.....
+......1.7....25...3..........41..6.....4............2.52.....9....73.8.......8...
+......1.7...5..3.....6.2...8......266......4.....1....41....7.....2......3.......
+......1.7...8..3..8..2........7...9.4.3.......61......5......2..9..6........1....
+......1.7...8..4..2..3........7...9.5.4.......61......3......2..9..6........1....
+......1.7...8..4..8..3........7...9.5.4.......61......3......2..9..6........1....
+......1.7...9.2......5..6..9.....85.....1....4..........74...2..1.....3..6.......
+......1.7.2..3..........6......4..2.7..6.....1.........4.2...5...8...3.....1.5...
+......1.7.24.........5..6...3.....5....1..4..9............39.2.7.......8..1......
+......1.7.4..8....9.....6...28....3....6...5....1.........2.89.1..7..............
+......1.7.4..8....9.....6...82....3....6...5....1.........2.89.1..7..............
+......1.7.9..2............4...4.15...2...3.6....7.........9..3.4..8.....1........
+......1.74..2......8.3.....2.....48.....76............567.........4...3...1......
+......1.74..2.....1.........98....5..7......6...1.........953......7.4.........2.
+......1.783...........6.4..6..2...5....1.7.............714.........5.68..........
+......1.79...2..........8.....7.15..4......3....9........34..6...8....2..1.......
+......1.8.....83..7...4....5..3.......6....4.2...........2...5..8....2...3.1.....
+......1.8.....83..7...5....2..3.......6....5.4...........2...4..8....2...3.1.....
+......1.8...4.7......5..3...4....62.....1.....2.......7.1....5....2...7.3........
+......1.8...6..4..2..3........8...9.5.4.......71......6......2..9..7........1....
+......1.8...6.5......4..3...4....62.....1.....2.......1.6....5....2...7.3........
+......1.8..94........3..7..6......4.....2........1....37...5....1....2.....6...8.
+......1.8.4.2........6......2.4...3.7...1.5...........1...8..........34........26
+......1.8.5.4........2......2.5...3.7...1.6...........1...8..........35........42
+......1.82..3.....6.........1..54..........2......8......23..4..8....5..7..6.....
+......1.82..7...........3..5......9.....38....2..1.....1....4.....5...2...76.....
+......1.83...6..........5..9.....6.....8...2....4.1....85.....1....3..7..4.......
+......1.84..2.....1.........89....5..7......6...1.........753......8.4.........2.
+......1.85...4..........7...3..5..2...1.........2..........136.82.....4....7.....
+......1.85..2...........4..9......5....34........6.2.....6.5.7..41.............3.
+......1.86..2...........4..2......5....34........7.3.....6.5.2..41.............3.
+......1.86..3.....2.........1..58..........2......1......23..4..8....9..7..6.....
+......1.87..4..................386..4......7.....1.......5...64.352......1.......
+......1.89...4..........7...3..5..6...1.........2..........135.82.....4....7.....
+......1.89...4..........7...5..6..3...1.........2..........135.82.....4....7.....
+......1.9...2..3...4..7.....7.....8....3........1.....2.3...6.......4.5.1...8....
+......1.9...4..2.....5.8......3...8.1......4.2.........6....73.43...........1....
+......1.9...8.7......5..3...4....62.....1.....8.......7.1....5....4...7.3........
+......1.9.4.2......3....4..6..4.5.2.1...........7...........87.....19.......6....
+......1.92..6.........5.4......1.5.....7...3.3...........8.2.6..14.............7.
+......1.93..4...........2...27..6......8..5....9......51..2....4......3.....9....
+......1.94...5........2.3.....1.9...5....7......3......13.......8.....4...9....2.
+......1.94...5.....9..2.......4.17...6..........7.........6..2.7..3.....8.1......
+......1.97....8............36.....8..1.59...........2....14.6..2.5.........9.....
+......1.97..4..................396..4......7.....1.......5...84.352......1.......
+......12.....4.7...3...7....57.....8...41.......2............534..6.....1........
+......12..63................4....5.31..2.8......7.....5......8...26.........3.4..
+......126...85............4...3..7..4....1...1.5.......7....38.....46............
+......126...95............4...3..8..4....1...1.5.......3....79.....46............
+......13.....8...542.......6......2...5.1..........4...7.4.2......6..2..........1
+......13..2.4.................6...257...8....1............167....52......4....3..
+......13..4..2....................267..9.....1.........62.5...4...1.73.....8.....
+......13..47.......5.......1..3.2.......5...7.......4.8.....2.....6.3......74....
+......13.2..6.....7..5......4..1.3.....2...5..1.......5.......7....84.......3....
+......13.4...7....8...........5.62..7..3....4...1.........8..76.15...............
+......13.8..6.....2..5......4..1.3.....2...5..1.......5.......8....74.......3....
+......1356.8.............4..3.4...1.....27....5.......2.....7.6......2.....3.....
+......1356.8.............4..5.4...1.....76....3.......2.....7.6......2.....3.....
+......1358.7.............4..3.4...1.....76....5.......2.....7.6......2.....3.....
+......136.87.............5....74.9..36..................4.8.2..6..3.5............
+......14..9..2................1.74..95..........4.......1...3.2....9..5.8..6.....
+......14..9..2.......6..7..4.1.........58....3.........8....5.2.....1.3....4.....
+......14.4.....6.....5........3.5..82..7.....1.6.......5.....836...1.............
+......15..8..2................5.14..87..........4.......1...32.....8...75..6.....
+......15.9..7............3..42...7....1.3.....5.......2..6..8..3..4.........5....
+......16......95......4.....41.2.......3..6...8.......7......243..9.............8
+......16..2.7...........9..6...1........4...2.3.......1.....47....3....58..2.....
+......16..4..2.........9.7.3..1...........4.26...........63.5...29.........8.....
+......16.2...4..........7.8...53..2...7....5..1.......3....64.....1.7............
+......16.2...7....3.....8.....6.89..42..........5.........1...2..8....5..6.......
+......16.2...7....3.....8.....6.89..42..........5.........4...2..8....5..6.......
+......16.8..4...........7......7.6...1..3....2......5....2.8....76.........5....4
+......17......46......5.....51.2.......3..7...8.......7......254..9.............8
+......17..2.9...........6..6...1........4...2.3.......1.....46....3....58..2.....
+......17..3..4..........6..6..1..........6.3...5.....4...65.2..74..........8.....
+......17..4.8.............2...5...482...7....1............1.26..8.6...........3..
+......175.496..............5.....3..1...9.......42.....2.....493....1............
+......18....2.5........3....1..8.......6....2..3..........4.71.6.....3..2..5.....
+......18.3..5............2..61.........3..4....8......71....3......86..5....2....
+......18.3..9............2..68.........3..4....1......71....3......86..5....2....
+......19.3..4............2..71.........3..5....9......81....4......97..6....2....
+......2.1....2.5...8...4......23.....9.....4....5.....6.21.....5.....3.........7.
+......2.1....8.4..3...5.......2.4...5......7....6.......41....2.2....6.........3.
+......2.1...37.............43..1.........26...8.....7....8..53...1....2.7........
+......2.1..4.3.............37.....8.6..2........5.....54....6......7..4...2..1...
+......2.1..5.9.....38......12.4.........3..8.7..............43....2.1......6.....
+......2.1..5.9.....38......12.4.........3..8.7..............53....2.1......6.....
+......2.1..9.5....4..7.....6..1.2..........3....8.........4.69.71...........3....
+......2.1.3..7.......4..8......5..4.8.1........6......2..8.1....5....7.........9.
+......2.1.4..3.........6...6...72....3.....4....1..5..2.18...........73..........
+......2.1.6.4.......3......2...7.1..5...2...........6.1.....5.....3.8......6...4.
+......2.1.7.3...............6.....3....2.5.......41.....578..6.1.....4..2........
+......2.1.8..5.............6..2.1......5..74....3.........84.5.3.2......1........
+......2.1.8.3...............6.....3....2.5.......41.....578..6.1.....4..2........
+......2.1.8.4........7........54..8.3.2......1........5...326...7.....4..........
+......2.1.9...4....3............853.7.....4..1........2..67........2.8.....1.....
+......2.1.9..3............4..6...53.3..4........1.........9..8.2.4......17.......
+......2.1.9.4........3.....17..2.........86.........5.2.8...5.....9...4...6......
+......2.1.96............5......9..4.2...3....1.........7.5.2........6.83...1.....
+......2.15..3.........7.......5...3..2...4....76............35.....21...8.....4..
+......2.16..3.....7..........854.....2.....3....6..7...1..82...5......6..........
+......2.173.......6...4........6..3...8...5..2..........12........5.8....6.....7.
+......2.18.....9.....4........61..3.27.......9.........9..72.....1....4....8.....
+......2.3..64...........5..1..6...7.82..........83........59....5...2..........4.
+......2.3.1.7..................234...9..6....8...........8...196..9...7.2........
+......2.3.8.7...........1....5....4.3...1..........6.....4.7.6.1......8.2..5.....
+......2.38..6...........7....2...1...4.8........3...6.....27.4.3.......5....1....
+......2.4.....1.......8.....2.4..5......3.7.........8.1..2....68.6....1....7.....
+......2.4..1.......5.........65...8.2....9..........1....15.7..94....3.....8.....
+......2.4.5..3..........69....85..1.2.6......9...........2.6...13..........4.....
+......2.4.5.7.....68.......3......9.....14.......2....2.1.........8...5....6..7..
+......2.41..9.............767.3........1..83..4...........25...5......9.....4....
+......2.41..9.............868.7........1..73..4...........25...5......9.....4....
+......2.48...7..........6..7..2........1.6....3.....8..16..........5..3.4.2......
+......2.48...9..........6..7..2........1.4....3.....9..14..........5..3.6.2......
+......2.5...7..4...3.1.....4.2.........8...3........6.....461..5...2.....8.......
+......2.5...71..........3..5....3....6.....1.........8...18..4.2..6..7....3......
+......2.5...8..9......3....9.1....6....72....6....5......1...4.52........3.......
+......2.5..48.......7.......6.2............1........7.23....6..5...4.3......71...
+......2.5..78.......4.......6.2............1........4.23....6..5...4.3......71...
+......2.5.7..8............4....3..7.4.8......2.........1....53.5..4.6......2.....
+......2.51..8.............464.5........1..73..9...........95...3......8.....4....
+......2.51..8.............464.5........1..73..9...........95...7......8.....4....
+......2.54...6............1...5.1...7......8....3.........7.16..52...4...3.......
+......2.54...7............1...5.1...8......9....3.........8.17..52...6...3.......
+......2.54..8...........3..6......9.....1..3.....59......6..74...52......1.......
+......2.56..4...........3..7......3.....1..8.....58......6..74...52......1.......
+......2.59..3...........4...65..2......4..7..1......6....81..9..2.........4......
+......2.6....8.1..9..7.........3..9..56.......2..........1.65..4......3....2.....
+......2.6....9.8..9..7.........3..7..56.......2..........1.65..4......3....2.....
+......2.6..83.............457..4..........83.....6..9....8.1...64.......2........
+......2.6..83.............457..6..........83.....4..9....8.1...64.......2........
+......2.6.1.5...........3..4.3.26....5...7.......3.......8...1.3.6......7........
+......2.63..5...........7..8......4.....72..........3..2..6.1...754........8.....
+......2.63..7...........8......28...4......9........3..6.5..1.....47.....89......
+......2.64.....7...1.5.........47....85.............1.7.....6..2..3........81....
+......2.7......16.5..9.........16...8......5......2......84...3..2...8...1.......
+......2.7...3..1..6....8......14....4......5....2.........65.8...3...7...1.......
+......2.7.9..3............6....4..1.6.4......2.........1....83.7..5.6......2.....
+......2.71...4..........3....23..5...6..1.....4..9....9......1...35........2.....
+......2.75..9...............5.1...9..3..6.....78......6.....14.2...7.........3...
+......2.8....7........6......12..3..5......7....4........8.14..67.....5.9........
+......2.8...53.....2...4...7.1....5.......32.......4..6..1....7.3..........8.....
+......2.8.4.9.....7..6.....1..5...4.8.2................3..8.1...5.....9.....3....
+......2.8.9..4........3......81.....2......4.......69....8.17..54..........2.....
+......2.86...7.........3...7......5....8..1.....1.......3...57.....4..6..8.2.....
+......2.86..5.....3............7.4...8...2..........6....16..5..2....7....43.....
+......2.87...3..........4..3.5....9.6..2........81.....2.4..........6.3..1.......
+......2.9......5..8........6......84..92..........1......76..3..4..8.....2....1..
+......2.9...7..4...1..3.....6..8..5.4..2............3......178.2........9........
+......2.91..8...........4..73..6........29...5.........694........5...1......8...
+......2.98...5....3.............3.8..2....5....46......9.12.......7..4.........3.
+......21........54..3.7......6...7...3.5..........1......86.4..21.......5........
+......21........65..4.8......7...8...3.6..........1......97.5..21.......6........
+......21........75.8..6....7..2..4......4.8..1.........4.....3....5.7......1.....
+......21.....4.7.....6.....36......9....7.8..1.........4.....3...7..2......8....6
+......21..5..9...........3....1.27..48..........6.....2.1...6......8...5.....7...
+......21..6....3..3...8.......1...5.74..........5.2.......4.6.7..1..............3
+......21..7..4......35.....6.4.1....2.....8........7..19.....4....8........2.....
+......21..73............6..19..8...........43....2....2..5..1.....4.7......3.....
+......21.3..4........8........62.7..4.3......8.........2..6.5...9......4....1....
+......21.78.............4........3.5....14.......6....2.1....4....8....7.6.5.....
+......21.8..4.....6..3......1.8......2....5....9......4.......3....7.6...7..2....
+......23..5.......8...........5...8...2.3....4.......1...1.4..5.3....7.....6..4..
+......23..5.......8...........5...8...2.3....4.......6...1.4..5.3....7.....6..4..
+......23.1.4......5.........2....91.....4.7.....85....4.......1...9.3......2.....
+......23.1.5......9.........2....89.....4.7.....15....4.......1...8.3......2.....
+......23.5..7..........1....2....6.1...5...8.....4.......32.9..1.5......8........
+......23.7...1...........5...25......3....7......9....6..2.7...8.......1...3..4..
+......23.7...8................2..46.1.8..5.........3..5.......1.4.3......2.4.....
+......23.7..5.....1.....8....47.1....2....4.....9......8..2....9......1.........7
+......24....83..........6..65.....2..3.1..........74......5..314....6............
+......24..3.1............6.2...567...8...........4.......3....16.7......4..8.....
+......24..3.1............6.2...567...8...........4.......3....16.9......4..8.....
+......24..3.8...........6...8..7.........24..1...........13...82......6...45.....
+......24.1....5......3...6.3..1....5...46..............46.2.........73...8.......
+......24.1....9..........3....49....5.....6......8.........67.1.43.......8.2.....
+......24.1..7...........9..6.....7.1....43......5......42....3.5...8.......1.....
+......24.5...3..........6.......5.83.2.6.......1......3.....7.1.6.4........2.....
+......24.81.............9..6.7.....1....2........9.....3.1.8.....4...52....7.....
+......2417.53...............6.8..3..14........2...........16...8.....5......4....
+......246.3..9.............2.7...5.....64....8.........4.....39.....71.....2.....
+......25..3.1............6.2...567...8...........4.......3....16.7......5..8.....
+......25.13.............9..7.8.....1....2........9.....4.1.3.....5...62....8.....
+......25.8...4..........1..6..2..7..3.......8..41......2.5.........3..6..1.......
+......25.9..1...........4......25.7.6.......13.........7..1.....5.8........6....3
+......2534...18.............265.........7..1..3......4...3..6..1..............9..
+......26..8..1...........7....6.2.3..4....5.....8.........5.4.16.3......2........
+......26..9.8............5.2.6.....7...7....4..1..........261..84.............3..
+......26.5..3........6..4......28...7.......1....4.......1..5.7.82.............3.
+......26.5..3........6..4......28...7.......1....4.......1..7.5.82.............3.
+......26.8..7...........3..1....6.5..7..3........42......5....1.24........3......
+......26.9.....5......8.....2.6...4.....3...7.1..........2.61..3.......87........
+......26.9..7...........3..1....6.5..7..3........42......8....1.24........3......
+......265..4.1....2........6..2.8....3.....14...7......13.........6..8...........
+......27......51..3...4....7..8...6....1.....4.........5....6.4..12............3.
+......27.....4.6..3..5......2....3.....1....8.4.......8.1.....5....2..4......6...
+......27..3.9...........1..2...1........5...3.4.......1.....52....4....68..3.....
+......27..9....6..84..............14..35........2.....1...48.....7...5......1....
+......27.3.....4..5.1.......2..76...........1....2.....8.1.5.........79....3.....
+......27.4..5.....1...........1..5.4.2....8......3.....7..2..3.5..6....1.........
+......27.8..3...........1..1...4...6.....75......2.....271........5....8.......4.
+......27.93..............4.5..4..1.6...8.7......2.........1...9.12........7......
+......274.3..9.............2.6...5.....74....1.........4.....39.....61.....2.....
+......274.3..9.............2.6...5.....74....8.........4.....39.....61.....2.....
+......275.3....6..8..9.........36...9......4.....2....1..5....8...1......6.......
+......276....95.........3..3.26.........1..4..........4.....78....2.6....1.......
+......28......37......1....6..4..5.....2......1.......87.6............395.......1
+......28.....9.3..6.........3..2....4.......1...5...4....1.4..6..2...7.....6.....
+......28.....95.......4.......8...3...5..6...3........14.7...........5.9.7....6..
+......28.....95.......4.......8...3...5..6...8........14.7...........5.9.7....6..
+......28....31........6....5......4.7.3..............1...5.23...16...7...4.......
+......28.9...4............35...7.6...3........9.......7.6...1.....3...4....2.9...
+......2831..5.............963.....5....72....4...9.......6.1....2....9...........
+......29..3.6...........1..1...89....76...............9.2....5....73...6...4.....
+......29..6.1...........4..8..6..3..5.9.........2.........59.7..2..4............1
+......29.5...4............36...8.7...3........5.......7.8...1.....3...4....5.2...
+......29.5..7..........1....2....6.1...5...8.....4.......32.9..1.5......8........
+......3.1.....87..4..6.....6......2.....7.1.......3......24..6...85......1.......
+......3.1...2..6.....7.9......4...2.3...5....1............8.1...4..3.....2.....7.
+......3.1.2..7..........8....85.....3.......7....6..2....8.14..2......5..6.......
+......3.1.2..8..........9....96.....3.......8....7..2....9.14..2......5..7.......
+......3.1.2..9.............37.....6....8.1......7.........6.42.1.85.....7........
+......3.1.2.5.................4..29.1..3.....8........4...8.5...6...7.2.....1....
+......3.1.2.6.................5..47.1..3.....9........5...9.6...7...8.2.....1....
+......3.1.2.6.................5..49.1..3.....8........5...8.6...4...7.2.....1....
+......3.1.2.8.................1...783..4.....5.....6...48....2.....395...........
+......3.1.2.8......6.9.....4...15.......3.5....8.........2...6.3.9..........4....
+......3.1.4..2.........6...6...73....2.....4....1..5..1.38...........72..........
+......3.12...7.......8......31..45.....62..7..........6..5...2......3...8........
+......3.12...8....6.7.......3..51......4...7.......8..5......2....3.4......1.....
+......3.12..8.....64.......7......2....35.......4......53.1.4.......7.6..........
+......3.14...7.............2..1..6.....3.65..7.8..........4..2..3.5............7.
+......3.14...7.............2..1..6.....3.65..7.9..........8..2..3.5............7.
+......3.14..7...........2...2..8........3..6.5......4...14.6....3....1.....5.....
+......3.14..7...........2...2..9........3..8.6......4...15.4....3....7.....6.....
+......3.14..9...........6...3..6........1..7.5......4...24.7....6....8.....5.....
+......3.146..........2.........7.46...1.............8..2....74.5..1.3......5.....
+......3.146..........2.........8.76...1.............9..7....84.5..1.3......5.....
+......3.15..........6.......3..71.....2....6.4........17....4.....26..5....8.....
+......3.15...2.............7.....25.3..1.9......4.........8..2..1.5......46......
+......3.15..8...........7...3..1........3..5.6......4...25.4....1....8.....6.....
+......3.16...2....38...........7..6..1.........5......74.....9....1.54.....2.....
+......3.16...4....2.........1.3.8...5......6....7..2......2.64..3.........8......
+......3.16..8..............421.........53......7......3.....58..7..1.........2.9.
+......3.164..........2.........7.46...1.............8..2....74.5..1.3......5.....
+......3.17..4.....5.....2...3.1..6.....87.....2.......4...5..7........9......2...
+......3.176..........2.........8.67...1.............9..7....84.5..1.3......5.....
+......3.18..2...........6...3..6........1..8.5......4...24.5....6....7.....8.....
+......3.184...........7.5..7..2...6....3.1.............315.........6.78..........
+......3.186..........2.........4.76...1.............8..7....64.5..1.3......5.....
+......3.186..........2.........4.78...1.............6..7....64.5..1.3......5.....
+......3.186..........2.........4.78...1.............6..7....84.5..1.3......5.....
+......3.186.......2..1......57...4.....2...6..3.......1......8.....35.......4....
+......3.194..........2.........8.47...1.............6..6....84.5..1.3......5.....
+......3.2......16...5..8...7..13......4.........2.........94.8.63........1.......
+......3.2....4.........5...54....1.....2..8..76.........136.......8...6........5.
+......3.2..94......5....7.....14..8.7..6..................23.5.2....76...........
+......3.2..94......5....8.....14..9.8..6..................23.7.2....86...........
+......3.2.9..1..........4..5...6..1...48..............16.....7....4..2..8..3.....
+......3.21..6...........8.....56..1.53..........8......2...37......27...4........
+......3.24..5........4..1...18...2.....6.9....3.......6......57....1...........9.
+......3.24..6........8..1...17...2.....5.9....3.......5......46....1...........9.
+......3.24..8........4..1...17...2.....6.9....3.......6......54....1...........9.
+......3.259.........4.........8.1.9....7..1..2.........1.....7...3.2.......94....
+......3.4.....2......6.......1.4.......5...2.......68....13.5..26......78........
+......3.4...25..........8.....7...293.8......4.........2....17.6...34............
+......3.4.6.7........1.........3.2...1.....6.....5....2.3...5.....6...7.4....8...
+......3.4.7........6.......3...9.4........57.....2.......8.6.2.1..5........7...6.
+......3.41...8....6.....2....46........1.5....3...2....7.24...........1.......5..
+......3.46...5.....7....9.....3.7...1......6.2..9.........6..1..9.8......3.......
+......3.46...5.....7....9.....3.7...2......6.1..9.........6..1..9.8......3.......
+......3.46...8..........5..1..4.2......5..7..2.8.......4.3.........1..2..5.......
+......3.47..8...........1.....7.5.2...3...6...1.......2......75....34.......6....
+......3.5.....2......4.......1.5.......6...4.......72....13.6..72......84........
+......3.5...6.4.......1.........672.5.31.......8......24.....6.....3.....7.......
+......3.5...8..9......2....9.1....6....73....6....5......1...4.52........3.......
+......3.5...8.6.........7.......1..47...5......8....6..6.4...2.....7.5..1........
+......3.5...91..........2..5....3....6.....1.........8...18..4.2..6..7....3......
+......3.5.4..6....7.....1...68....2....3...4....1.........2.67.1..5..............
+......3.5.7..4........2.9..48.....7....9...1....3.....2......8...9...6.....5.....
+......3.51.2......6..7........17.2...8....5.....6......5..34..........1......8...
+......3.54..6...........4..3.......7...1...6.5..8......6...7.2.....3.5...1.......
+......3.56..7...........1.......39..2.7.........5.1......42..8.....6..7..1.......
+......3.6...2.4......9.....1...8.7..54.....2..2.........95.......6.3...........4.
+......3.6...7...4.1....5...5.....1.3...84..............47....2.....815...........
+......3.6...7.4.......1.........752.6.31.......8......25.....4.....3.....4.......
+......3.6..84.........1.......7..14......6..........8.63..5.......1..82.5........
+......3.6.4..7....5.....1...78....2....3...5....1.........2.74.1..6..............
+......3.62..7...........1.......39..4.7.........6.1......52..8.....4..7..1.......
+......3.64.9......1.........2..6.......53....9......1..3....6.....9..4..8..1.....
+......3.68..4...........1....78..5.....7...2..1.......2...6..7.....1..4......3...
+......3.68..5...........1..4......8.....3..2......1.....3.6.2...5.8........4...7.
+......3.7....6........5....8..3.....4......9..1.....6....4.17...56...2....9......
+......3.71.....8..4..6......78.........1......3........5..3..6.....82...2......9.
+......3.71.....8..4..6......78.........1......3........5..3..6.....84...2......9.
+......3.72..8...........1..6.....72....54........1.......4.2.6...3....5..1.......
+......3.72..8.......4......6.....18.....74....5........3.5..6....7....2.....6....
+......3.74..8...........1...371........5...4.........25...2..6......75......3....
+......3.76..8...............4..97.........48....2.........43..98.2....6.1........
+......3.78...6..........5...5.3.2....7.....6........1....7..4..13.......6..4.....
+......3.8.....81..4..6..........1.6.5......2.....3......725.......4..5...1.......
+......3.8....6........5....1..3.....2......9..4.....6....8.17...56...2....9......
+......3.8....7.4..6..5......4..3...........2........6.2..15.......6...1..8....7..
+......3.8...7..2.....1......4...6.1..2..3.......5...7.....2.4..5......6.1........
+......3.8...7..4...5..........6..72.4.8.........1.....1....3.5..6.....7.....4....
+......3.8...8.4......5.....14.....5..8..3..........2..3...6...7...4...9.2........
+......3.8.6........5.......8...9.1........46.....2.......7.5.2.1..4........6...5.
+......3.82..6........1....4....87...1......9.....3.......4..12..37............5..
+......3.84...5........2.1.....1.3...5....7......8......13.......8.....2...9....4.
+......3.9.6........5.......3...8.1........46.....2.......7.5.2.1..4........6...5.
+......3.92..7........1....5....98...1......5.....3.......4..12..83............6..
+......3.94..7...........1.......36......69...2......8....27..4...35......1.......
+......3.94..7.........3.1...3.2..6.....5...8...1......25.....4.....1.........9...
+......3.94..8..................316..8......4.....2.......5...74.362......1.......
+......3.95..4...........7..1..2...8...3.9.....6.......42.....5.....73..6.........
+......31......5.......7.....4....2.7.3.1...5......8......34.6..8.......51........
+......31....2.5............2.....6.......34.....41....84.6........72...5.3.......
+......31.2...4.............5.....2.4...1.6......7.....4..3..5...19....6.....8....
+......31.2..7........8.........346..7.....5.8..........3..1..4....2....78........
+......31.2..7.....5.........38..........2.6...1..4.......1....2.6.8.....4.....5..
+......31.45.............4..2......85...3.1....7..........26...4....7.6....1......
+......31.7..8......4.7........63.4...12......5............12..48.....6...........
+......31.7..9......4.6........83.4...12......5............12..48.....6...........
+......31.7..9......4.7........83.4...12......5............12..49.....6...........
+......32....81.......5...7.....52..1.9....4...6............96..5..6.....1........
+......32....85.......6.....7..5..6........9.41.............3.1..4......5.3..6....
+......32....85.......6.....7..5..6........9.41.............3.1..4......8.3..6....
+......32...8.9....5...4.....6.2.1.........8.....3.....1...8.9...2.....7....6.....
+......32..5.4...........6.....2...6...3...1..7..5.....82.....5......3..7....1....
+......32.1...5..........4..8.......1...2.3......7.......2...57..4.1.........8...6
+......32.1...6..........8..7.......1...3.2......4.......3...46..8.1.........7...5
+......32.6..4..................238..17...........5....42.....5....6....1..37.....
+......32.8...5.........7.....7....5..3.4.........6...8...1.34..5.....1.....2.....
+......326...941.............8.72....6.....1..........416..........8...7.4........
+......34....51................2.37..4..6.......1......37....6......8..15.4.......
+......34.2...9..........7.....3.42..1...........6.......42.5....3.....8.....1...9
+......34.7..5........7......8..6..1....1..7...4......55.....2......38.......4....
+......34.7..8........5.....25..4....3......6....1....7.....62...1......8....3....
+......35.....17........4....243.............1..9......17....6.....42..3.8........
+......35.....17........4....273.............1..9......14....6.....72..3.8........
+......35.....9...2.1.......2..85..........14..........9.2.....7...1.46.....5.....
+......35..9.1.....8.....2...1..2........38....6..........6....13......4.5....2...
+......35.1..4............8...3....2..9.1........6..5.......76.15...2........3....
+......35.4....9.......1.......8...218..3.................5..46..21.......9....7..
+......36.43..........5..7.....76....2.......5......1......42..8.7.....4...1......
+......36.5...8...........2....4.6...8.......1...3.........7.1.5..32......4....8..
+......36.8...5........43......2..7...43.......1.............5412..6........7.....
+......3651..8...........4.....12..5..4.7....1.3............36..2...........5.....
+......37.....8.6......1....4..6.....5....7...........1.152........5..4...8.....3.
+......37.4...6...........8.1.......5...72.......3..........51.4..72......3....8..
+......37.5....4.......8......17..6.....3..5..........4...23..1.84........5.......
+......38.....1....2...........6.7.3.1.....5..4..2......3....1.5.6.8.............4
+......39..5.4............1....23.5..6.......4..1......83....7.....61.........9...
+......39.5...1............8.39....2.....4.7.....8.....7.....1.6...9.2......3.....
+......4.1...7.2....8.6......2.....7.4...1....5........1.4.3..........92.3........
+......4.1...83................2...6.5.4......17.........7.64........12...6.....8.
+......4.1..2.6.............47.3.......5....9....1.........92.6.31....7..8........
+......4.1.2.8.....5.............472...1.......3..........62..8...4...3..7..5.....
+......4.1.3..9.............48.....7....1.2......8.........7.53.1.26.....8........
+......4.1.3.2........85........746...2.....5.9...........3...8.7.4......1........
+......4.1.6....5..3..7.........45...7......2........3..51...6.....87.......2.....
+......4.1.8..7..........3......2..754..3..............3..1..6...5.....2...74.....
+......4.1.8.6...........7...34.........2...5.7.1......2...1..8.....43.........1..
+......4.12...3......9.8....17.6...........39..4..........4.7...8......5....1.....
+......4.12...8.......5.........3.76.81................63.....2....1.45.....8.....
+......4.13..9........5..6...5....2....4.1.........2.7.83.....9.....6.......4.....
+......4.15..2...........3...3..1........4..1.6......5...25.7....4....8.....6.....
+......4.15..2...........3...3..8........4..1.6......5...25.7....4....1.....6.....
+......4.15..2........9......3..48...6......9.....1..2.2..5..3....1.7.............
+......4.152................3......2....4.1......8......6..5..7.2.1.3......4...8..
+......4.16.2......5.........1.2......3....8.....5.6.........52.....3..9.7...4....
+......4.17..2........8.6......7...2..4....3...1.......2......8..5..1....6...3....
+......4.17..2.....9........5..76..3..4....8.....5......1..84.........27..........
+......4.18...9..........6..7..2........4.1....3.....8..12..........5..3.6.4......
+......4.18...9..........6..7..2........4.1....3.....9..12..........5..3.6.4......
+......4.18..2........6.7......8...6..4....3...1.......6......2..5..1....7...3....
+......4.18..5...........7....28........1...5..7....6......67.2..4..3....1........
+......4.18..5.....2.........5.4..3..7.....6.....3.1.......2..8..4..6.....3.......
+......4.23..7...........6...6...2...5......3.....1..5...813.....2....9.....5.....
+......4.315.............7...8.....2......6.5.....74...2..15......3...6.....8.....
+......4.315.......8............346...1.....5.7...2.......1...6...3...2.....8.....
+......4.351.......8............346..1......5..7..2.......1...7...4...2.....8.....
+......4.371.............8....3.4.2..5..6.........8.......5.7.1..34.........1.....
+......4.385.......1............346...8.....5.7...2.......1...6...3...2.....8.....
+......4.5.3..1..........7....8.6.2..4.5................7.2..61.3..5.4............
+......4.5.4.3.....9.....1...28....3......4.6.....1.......2..78.5.1...............
+......4.5.4.3.....9.....1...82....3......4.6.....1.......2..78.5.1...............
+......4.5.6.8.....2.....1...89....3......7.6.....1.......2..37.5.1...............
+......4.62..7.....8.........4..65...7......2.......8.....2..17...3.....5.6.......
+......4.7.1.6......5..........16.2..3.....8.....5.....7...24.....4..3..........1.
+......4.7.5..8....6.....1...82....3....4...6....1.........2.85.1..7..............
+......4.7.5..8....9.....1...28....3....4...6....1.........2.89.4..7..............
+......4.7.5..8....9.....1...82....3....4...6....1.........2.89.1..7..............
+......4.7.5..8....9.....1...82....3....4...6....1.........2.89.4..7..............
+......4.76..8...............3..79.........38....2.........37..98.2....6.1........
+......4.76..8...............3..97.........38....2.........43..98.2....6.1........
+......4.8.7..1..........2...6.....3.4..8........2.....2..5..1......6..7...8.3....
+......4.82...7....1.........8.6...........31....4...2..4....7......32......51....
+......4.89..3........1...........53......51..2...6.......72...6.54.............1.
+......4.9.1.6......5..........16.2..3.....8.....5.....7...49.....4..3..........1.
+......41...3...5...2.8.....5...1.6....82........7.....4...5.....7......2.....3...
+......41.2..3.....6............65.4.38........2...4......5..3.2..1.7.............
+......41.2..5.....7..8........69...234.........7.......15.4.........32...........
+......41.8....2......1..6...4.56.....1......2.......8.3..7.........4.9..2........
+......42.....81.........3..7..9........4..7..1.........43.5.........6.78.2.......
+......42....9..5..8.........7.23......5.....8.......1.1....8..32.....6.....4.....
+......42..9.5...........3.....1...852.3.........7.....3...2.6...15.....7.........
+......42..9.5...........3.....1...852.3.........7.....3...2.6...75.....1.........
+......42..9.6...........5.....1...362.5.........8.....3...2.7...86.....1.........
+......42.1.5......7.........2....89.....3.7.....15....3.......1...9.4......2.....
+......42.1.5......8.........2....89.....3.7.....15....3.......1...9.4......2.....
+......42.3...6.........1...12.4.........5...6.8.....7.5.6.....3...2..8...........
+......42.3.8......9...........58.1...4....7.....3......7...4.5....6...3.........8
+......42.5...9............6...8.2...1......3....4.........3.15..846...........7..
+......42.8...5........1.....3.4.7..........65...2.....5.1.....6...3..7..6........
+......43.....6........5...........29.4.....6..3.8........4.35..6.....1..2..7.....
+......43.6..1.....5......2....7..5..8.2.......3.......7....9..6....82.......3....
+......45......36......1....2..4..7.....2......1.......86.5............395.......1
+......45......37......1....6..4..2.....2......1.......87.5............395.......1
+......45....9.1......7.........6..4.7.9......3........14..5.......2....9.8....3..
+......45..8.1..............3.5....1.6..2........74....1...65....4......8......2..
+......45.1....8.......5.6.........21.3.7.....6..4.......2.1.....5....8.....6.....
+......45.8..6........8......9..7..2....1..8...5......66.....3......49.......5....
+......45372...............81....26....58...............835.........6.71..........
+......45392...............71....86....57...............735.........4.19..........
+......46..9.1.....8.....3...2..3........48....1..........2....14......5.6....3...
+......46.2...5...........8....39..7...8...6...1.......3.....5.2...8.6......4.....
+......46.3..8...........9..2.......7....54.......6..1....7..2.3.65.........1.....
+......46825.............1..7.....21....3.8......4.........1..5.38.........4......
+......47...38......2.......7.5.4.6......1...........3.48....5..1..2........3.....
+......48......36......1....2..4..5.....2......1.......86.7............395.......1
+......48......37......1....6..4..2.....2......1.......87.6............395.......1
+......48......37......1....6..4..5.....2......1.......87.6............395.......1
+......48....3.....6........2.5.6...........73....1....4.....6.1.3.7........8..2..
+......49..2.1...........5..8..4..3..6.9.........2.........69.7..4..5............1
+......49..5.1...........2..8..5..3..3.9.........2.........69.7..2..4............1
+......5.1....42........8....317...........62..5.......6..15....4......8....3.....
+......5.1...64....1...8.....275......3.....6......7.4....3..2..8........4........
+......5.1...82.............23....6.....4...8..5...1...8..7...2.....5.3.........4.
+......5.1...92.............23....6.....4...8..5...1...4..7...2.....5.3.........9.
+......5.1.3..2........74...5.16...........34.6........1..5......2.....7....8.....
+......5.1.4..8..........6..32.5.....4......8....1.......56..2....6.4..7..........
+......5.1.4.8..............1.9.........3..8....5......7...19.2..3....68........4.
+......5.1.4.8..............5.1...6.....4.8...7.........3....28.4..31...........9.
+......5.1.4.8..............5.2...7.....3..2.....4.6...16.....4.7...5...........8.
+......5.1.8.4........3.....13..5.........27.........6.2.5...6.....8...4...7......
+......5.1.9..3.............2...8..4.1..9...........3...4....86....5.1..9...2.....
+......5.1.9.4........3.....18..5.........27.........6.2.5...6.....9...4...7......
+......5.11..2...........3....5.41....3....7.....6.....62.....8.....5..2......3...
+......5.11..8...........4....5.13....4....7.....6.....62.....8.....5..2......4...
+......5.12...7..............135.........4.6.........7.67.....2....8.3...4..1.....
+......5.12..3.....7.6.......8....14....6..2.....7.........85...6......2.....1....
+......5.12..6...........4.....2...8...4.......1.......83.....7.....526....7.4....
+......5.12..8..............4......2......67......31......7..94..1.5......6..8....
+......5.12..8..............9......2......67......31......7..24..1.5......6..8....
+......5.12..8..............9......2......67......31......7..94..1.5......6..8....
+......5.13..4........6..7...6....2....5.1.........2.3.84.....9.....7.......5.....
+......5.13..8........6..7...6....2....5.1.........2.4.84.....3.....7.......5.....
+......5.13..9........6..7...6....2....5.1.........2.4.84.....3.....7.......5.....
+......5.14..2........6......3..59...7......2.....1..4.6..4..3....1.8.............
+......5.15..7...........4..2....3.6.....1.2......4.....41.....3...2...7..8.......
+......5.16...2....37...........3..7..5.........8......72.....6....8.54.....1.....
+......5.16...3....4....7....5.2......18..........7..4..2.5.....3......7.......6..
+......5.16..2........4......3..59...7......2.....1..4.4..6..3....1.8.............
+......5.16..3.........8.2...28...4.....9......1.......7.6....3.3..5.........2....
+......5.16..7...............4..98.........47....3.........54..97.3....6.2........
+......5.16..9...........4.....6...8...4.......1.......83.....7.....526....7.4....
+......5.17..3........8......6..54.......1..7........3.2.8..........6.4..3..2.....
+......5.19..3..............63.....8.....517...........451....6....62......7......
+......5.2....5.7..6...4.......1..28.4..3...............95....4..7.2..........1...
+......5.2.9....3...1.7.....2.....43....1.5......8........6...1.5...4............8
+......5.28...9..........6..7..2........1.5....3.....8..15..........4..3.6.2......
+......5.28...9..........6..7..2........1.5....3.....9..15..........4..3.6.2......
+......5.3..96...........2..1..4...6.72..........73........58....5...2..........4.
+......5.3.4.2...........9..6..4...2.1......8...5.......7....81.....35.....4......
+......5.3.7.6...........4...6.1.8...4.....2..2..7.........3..7.5...4...........1.
+......5.3.7.6...........4...6.1.8...4.....2..2..7.........5..7.5...4...........1.
+......5.36..1.....2.....7..8......1.....65.......4.....5....4.....28.....3.9.....
+......5.4.2.....6...1..........2.17.4.......8.........5..4.8....6....21....3.....
+......5.4.2.....6...1..........2.17.4.......8.........5..4.8....9....21....3.....
+......5.46..8...........7.....16..8..43.......7..........57.2..3......1......4...
+......5.6...7...4.3....1...5.....1.3...84..............47....2.....853...........
+......5.6...8..2..8..3..........7.9.....62...1.........26.5.......1....8.......4.
+......5.7.8.4...........1..2..71.....6.....4.........87.1.5.........4.6.......3..
+......5.76..3...........2......579..1............2.......8.3.6...31...4..5.......
+......5.76..3...........2......579..1............2.......8.3.6...91...4..5.......
+......5.79...1..........6...5.6.2....7.....8........1....7..4..83.......1..4.....
+......5.86..3...........2......589..1............2.......1.3.6...97...4..5.......
+......5.89...7..........6...5.6.2....8.....7........1....8..4..13.......7..4.....
+......5.91...7.......2...6..62....5......1.......3....4.....1.7.8.6...........3..
+......5.92..8........4....3....56...1......9.....3.......7..12..65............4..
+......51....32.......6.....1.8..5......43...2............1.87..23........6.......
+......51..7.3............8...7.51....2....6.3.........4..6..2..1.5.4.............
+......51.2..4......9........65.7.......5..8...1.......8.....4.23...61............
+......51.4..3.....2...........71..6.8.....4...5........1...8.....6....3....2..8..
+......51.6...7.......3........4.12..3....5...7.6.......1....4.7.8..2.............
+......51.7...2..........6....9....8....57.....1.......6.....4.23..1.8......9.....
+......5134..2.................4.62...39......1........68.....4....79........3....
+......52.....6........3.....1.5..2...48..............3...2.17..3.6....4.9........
+......52....8..1...76.......3.2....45..1............7.....763..1............4....
+......52..8.4......3...9...5.1...6..2..7........3.....6...1..........7.4.......3.
+......52.4......1.3...4.....2.4.........8.7...1.......7.....3.....1.6......5.2...
+......52.4......8.3...4.....2.4.........7.6...1.......6.....3.....1.2......5.8...
+......52.4...6........1.....3.5.7..........86...2.....6.4.....1...3..7..1........
+......52.4..6...........8..15....3.....26......74.....2......4..3..5.........1...
+......52.4..6...........8..15....3.....26......74.....2......4..8..5.........1...
+......52.6..3.....3......4..2..4.......5..3...1.......5.....7......12......4.8...
+......52.6..3.....3......4..2..4.......5..6...1.......5.....7......12......4.8...
+......52.6..3.....3......7..2..8.......6..4...1.......5.....8......12......4.7...
+......52.7.....8..3..9.....65.7......2....4.....3.....1...4......7.....3....2....
+......52.8..1.....2.....7...53....6....4....1.7..8........5.3..4..6..............
+......52.8..4.....3.....6......563..1.............2.....574.......1....8.2.......
+......52.8..7........4.......5....6........471...2........518...4....3...6.......
+......52.8..9.....3.....6......563..1.............2.....574.......1....8.2.......
+......529..87...........1......25.....3.9.....6....4.....6..3..91.......2........
+......53...81......4.....6....8..6..5......7....2..........41.83...7........5....
+......54..1.8...........6..6...4.....7..5............14.....26...31.8......7.....
+......54.2...9..........3.....3.42..1...........7.......46.2....3.....8.....1...9
+......54.6..7.......1......3.....7...5..2........4..8.14....2.6...8........9.....
+......54283..............6..42.6.......1..7...........7.....1.8...942............
+......543...8.1.........7..7...5.4.....2....94.........9.6...2.5...4.............
+......56.1....9...4..8......52....7..6.9........1......7..5....9.....3..........1
+......57.....6........3.....1.5..2...48..............3...2.17..3.6....4.9........
+......57..5..1...........8....7.2.3..4....6.....5.........6.4.17.2......3........
+......58..6...3.......24.......6..421..8.....7........5..7..1...4.............7..
+......592.8..1.............6..2..4..41..................65.4...3......1....7....8
+......6.1....5........7.....2.3...8...46............5.25....7.....1..4..8....9...
+......6.1....82........3...31.......2......8....4......6.15.4....47............2.
+......6.1...42....3..5......612...........74...8......71...6...5......2..........
+......6.1..4.3....5...8....3......9....6.7......1...........84..6.2.....17.......
+......6.1..47...............5..13.....9....7.....2.......6..53.81.4.....2........
+......6.1.2.4..............74.....2.8...1........3.......2..54..61..8...3........
+......6.1.2.7..............74.....2.8...1........3.......2..54..61..8...3........
+......6.1.27.......5..........2...7....5.1...4........1.8.6.4..3...4...........2.
+......6.1.27.......5..........2...7....5.1...8........1.9.6.4..3...8...........2.
+......6.1.3..5.............8..4..7....62............3....6.94...5.....7.3..1.....
+......6.1.34....................483.16.5.....7..........5....4....12....6..7.....
+......6.1.4..5........38...2...4..5.6..2.....1.........5.....3....1..2.....7.....
+......6.1.4.2.................7...2.13.......5..4.....4.2.1........563.........8.
+......6.1.4.5.....6..9......8.....5.....27.......1.......3...8.1.2......7.....3..
+......6.1.7..2.............6.15..3.....7.........4....5..6.3......4...7..8.....2.
+......6.1.7.8...........4..5......8..2.....3.....1....2.65.....1.....2.....7.8...
+......6.11..3...........5....6.14....5....8.....7.....72.....9.....6..3......5...
+......6.11..8...........5....6.14....5....7.....3.....32.....8.....6..3......5...
+......6.12..6.....4..........3...7.....2...5..1.8.....5...3..6..2..1..........4..
+......6.12..9.....54..........68.7..3......4....1.......6.1.........3.5..8.......
+......6.13...7..............5.1.64..6......3....8......1....2......3..7....9...8.
+......6.13..9...............12..8......4..53.............31.4..8......7..6..2....
+......6.14....5.............3.17....5......9....2..........485.6.1.3.....2.......
+......6.14..8...........7...1..6........1..4.5......3...24.3....6....8.....5.....
+......6.14..9...........3...3..6........1..7.5......4...25.7....6....8.....4.....
+......6.15..2..............2..4.83..9......5.....6.....61...7.....5...4..3.......
+......6.15..3...............12..8......4..53.............51.4..8......7..6..2....
+......6.17..2..............2..5.3.......6.3..4......9..16.4.......7...2.......8..
+......6.17.2......4..3.........8..2..6..1..........4..3......8....4.1......65....
+......6.17.2......5.........6.2......3....4.....5.7.........52.....1..9.8...4....
+......6.18...2..............36..8.......7.5...1.......5..3...8.4.7....2....1.....
+......6.18...7.............64.1.....3.....78....5.........3..7..12.......5.6.....
+......6.18...9..........4..7..2........4.1....3.....9..12..........5..3.6.4......
+......6.18..3........8......8.....5..4..6.........2......5..34.2.1......6.....7..
+......6.18..3........9......7..64.......1..2........3.2.8..........7.4..3..5.....
+......6.19...2..............36..5.......8.4...1.......5..3...9.4.7....2....1.....
+......6.19..3........9......9.....5..4..6.........2......7..34.2.1......6.....8..
+......6.19..8...........3...3..6........1..9.5......4...25.4....6....7.....9.....
+......6.2..1...7...9.5.....2.....4.....81.......9.....38.....9.6....4.......2....
+......6.2.3.7......1..........1.74..5.....8....93.....8...2....2...5...........1.
+......6.2.3.8......1..........1.84..5.....7....93.....2...6....7...5...........1.
+......6.2.3.8......1..........5..73.9..4.....2........5....6.4.....2.1......9....
+......6.21..5.....4.....7..8......1.....64.......3.....6....3.....18.....2.9.....
+......6.23..8........2..5..2..3...4..67.......1...........761..8......3..........
+......6.25...9..........4..3..5...7..1.....9......4.......6.81..42.........3.....
+......6.25..7...............63...1.....5.4....2....3.....16........2..7.8......4.
+......6.25..7...............63...1.....5.4....2....3.....16........2..8.8......4.
+......6.27...3..........4..5..2........4.1....3.....7..14..........5..8.6.2......
+......6.29..7...........53......4.8...3.2.....72......42....1......5.......3.....
+......6.3.5.7........1.........3.2...1.....5.....4....2.3...4.....5...7.6....8...
+......6.3.5.7........1.........3.2...1.....5.....4....3.2...4.....5...7.6....8...
+......6.32..7........3..5..7......1.....2.4......6.......8.2.7..65.............9.
+......6.4....81.........7...5.6..8...4...7......2.....2.7....1.1...3.......5.....
+......6.4.7....1...2.9.....4...1.5......3.........8......2.7.3.1......2.6........
+......6.41..............5..6.5...2.......3.8..4.7.....8......13...52.......4.....
+......6.43...7..........5..7.....3.....1...2....4.6....46.....1....8..7..2.......
+......6.5..91............4....8..1..35........4.......2....67......35.....1.4....
+......6.75..2.............4.67.5..........32..9.......2.....18....3.6.......7....
+......6.8.....31......5...25.3......2..6........1...4.....7.23..1..........4.....
+......6.8.5.7...........1.....481....2..5...........3....3..52.8....6...1........
+......6.8.9.3...........2.....51..3.6......7...2.......5....41.....36...4........
+......6.85..2.............4.68.5..........32..9.......2.....13....7.6.......8....
+......6.89....2.........3..5...6..7....8.........3.....2...75...381............4.
+......6.89...7..........5...5.6.2....8.....7........1....8..4..13.......7..4.....
+......61...27.....4.....5..51..6........8...2.......3..8.2.....6.....4.....3.....
+......61..2..4.........3....49.....35..7........1.8...1..6.........2.3..8........
+......61..2.7.................1...526.4.3....9........3..5......8......7....6.4..
+......61..9.2........3........8.9..76......4.5........1...6.5...7....2.3.........
+......61.2..7........4......81...5.....3....4....8....74.......3...6........1.2..
+......61.3...8..............164.........5.2.3........8...1.9......6...7.2.....3..
+......61.4..8.....5.........6.7..2..13..........4.........1..84.2..3.........5...
+......61.7..4.....4...2....65....2......13......8.....2.3.........9..5...1.......
+......613...54...........7..5.9..2..3.1...............7...31....8....5.9.........
+......62..5....3...4...9...5..1....8...23.....7.......2.3..........48...6........
+......62..5.7..................28.4..37......6...........3..1.52...1....4.......7
+......62.7..3.....4......5..2..5.......6..7...1.......6.....8......12......5.9...
+......62.7..3.....4......8..2..9.......7..5...1.......6.....9......12......5.8...
+......62.9..3.....4......7..2..8.......4..5...1.......6.....8......12......5.7...
+......6258....1.............2.57.......6...8.......41...723....1.....8...........
+......63...72......1..........1.2.9..5.7.....8.....4......8...14...6....6........
+......63..1.2..................36.8.54.........2......8.3.7.......9....16.....2..
+......63..8.5............1...3...72.4...8.......9.....79......8....3.4.......1...
+......63.2..7.....5.........6.2......3....8.....51....1...2...5.4...3..........7.
+......63.5..7............18.7.....2....4..7....1......45....2......81.......3....
+......63.8...2.......4.....9.87...........1..5.........36....9..1...6......5....2
+......64........3.7.........6.1..5.....2....7.3.........5...1.82...34.......6....
+......64...32......1............12.36...8........4....4.....78....5...6....3.....
+......64..4.7...........1..8..5....7...2...9.1............6.3...9......5....81...
+......64.3...5.......8.....1.....5.......63.....2........31...7..6....2..5...4...
+......643...9.1.........8..8...6.4.....5....24.........5.7...2.6...4.............
+......6473...81.............2.7..5.........1....6........52.7..8.1......4........
+......65.8..7...........2..1....5.4..7..6........32......4....1.23........6......
+......65.9..7...........2..1....5.4..7..6........32......8....1.23........6......
+......651.7.2..................165...2.....8.....3.......7..24.3..9.....1........
+......67......4.2..3..5.....5....3.17....6............2.....74....13.......8.....
+......67.3.5......2...........2.3....1.....4....8......6..7.1........2.3....4...5
+......68.....75...3..........12..4..........7...8.....57.....3....61.2...4.......
+......68...7.3.....1.......8.....2..4...9..........1...35.....1...8.4.6....2.....
+......69.7......3....2.....2.....3.84..6.9......1......6..3.5...1...............2
+......7.1....42........8....316...........52..7.......5..71....4......8....3.....
+......7.1...82.....3........4....68....3.1......7.....5...6..2.7.....4....1......
+......7.1.2.8.....4........54.....2.....173.............7...6..3..5........4...5.
+......7.1.5..3........49...2...5..4.7..2.....1.........4.....3....1..6.....8.....
+......7.1.6..5......8.........1.4...7......2..3.8.........7.35...4...6..1........
+......7.1.6.8...........4..5......8..2.....3.....1....2.45.....1.....2.....6.8...
+......7.1.7..3.......2......4.....3....1..6.....9.........4.52.9.1......6...8....
+......7.1.7.8..........4.......2..3.5..7.....3......4..48...6......135...........
+......7.1.8..2.............7.16...........52....3.....3...57....2.....8....1..4..
+......7.1.8.3................457..........21........8....4..63.7....2...51.......
+......7.1.9.6..............6..481.......7.2...3.....9.7..5...6.8.1...............
+......7.1.9.8..........4.......2..3.5..7.....3......4..48...6......135...........
+......7.1.9.8.....4........54.....2.....173.............7...6..3..5........4...9.
+......7.12..3.....34.......1.5...3.....4...6....8.........17....9.....8.....5....
+......7.12..3.....8.........15...3...7..6.........2....4.1........4...6.6......5.
+......7.123........4.8........36..4.1.....5.....9.....7...51.........83..........
+......7.125.......3..8.....6......3.....41.......7.....14..5......3..65..........
+......7.13..8..............6...54.3.......68.....1.......2..34..71.......5.......
+......7.14..2...........3...3..7........1..6.6......4...25.4....7....8.....6.....
+......7.15..3...............12..9......6..53.............51.4..9......8..7..2....
+......7.15..4...........3...3..7........1..2.6......4...25.8....1....6.....2.....
+......7.16..9............4..15.........3..2...4.......2...5..8......73......41...
+......7.18...4....5....6....7.3......13..........8..6..2.7.....4......5.......8..
+......7.18..5...............3..9.....7....3......2..4.6..7.1...4.....28....3.....
+......7.18..9...........3...3..7........4..8.6......5...25.8....1....4.....6.....
+......7.18.3......4............4.28..7..3..............6.7..5.....1.6...2......3.
+......7.19..3........9......3.....5..4..7.........2......8..64.2.1......7.....8..
+......7.2......15...4..8...6..17......3.........2.........93.8.51........7.......
+......7.2...3..6..4........54.....8....61....8.............5.4..9....3....67.....
+......7.2...3.4.........9...6..8..3....92.....4.......2.7...1.....6...5.9........
+......7.2...4.8......6..3..41.5.........3.9..8..........3.7.....8.....4........1.
+......7.2...6.8......5..3..16.4.........3.9..8..........3.7.....8.....6........1.
+......7.2...81.............3.4..6.5......2.....8..........5.41.72.1......6.......
+......7.2.8..3..........6..4...1..3...65..............13.....4....6..2..5..7.....
+......7.2.9..1....8.....5...6.7.5....3.....9....8.........3..6.2..5.....7........
+......7.21..8.....3.....4...7....5...2.1........3...6.4...65..........1.....2....
+......7.24...8................7.16..58.......3..2......6....18....4...3...7......
+......7.28..9.....1...........526.........34......7....73.4...........85.2.......
+......7.29..3...........1.....8.6.3.42..........4.........179...7..2....8........
+......7.3....86.......2.....1....5..63..............8....1..4.62......5...87.....
+......7.3...1.7.........5...7.2...1..4..5.......8.....1.2..3.......6.4..8........
+......7.3.5.6........1.........7.2...1.....5.....4....7.2...4.....5...6.3....8...
+......7.31..6.....5.....8..2......1.....74.......5.....7....4.....21.....3.9.....
+......7.32.5..........1....1......4....8.7......3........7..35.42........1....6..
+......7.341.......6............735..1......4..8..2.......1...5...7...2.....6.....
+......7.346.......1............735..6......4..8..2.......1...5...7...2.....6.....
+......7.39...4.........1.........94..7.3......2.......4.1....6....72.5.....8.....
+......7.43...6..........5..6.....3.....1...2....4.7....74.....1....8..6..2.......
+......7.46.....5..1.2......5......1..7...3......46.......12.....8....3.....6.....
+......7.5.8..1............6....4..8.5.6......2.........1....63.4..5.7......2.....
+......7.6...3.....9............162...8.....5..4.......1.7...6.....8...3.6..5.....
+......7.68..9.....1...........526.........34......7....73.4...........85.6.......
+......7.8....32.......5....8.79...........32.1.........4.8....7.5.....3....1.....
+......7.8..1............2...4.2.9.........63....8.....5..4...6.27...........6..1.
+......7.8.5.3...........2.....13..5.7......4...2.......3....61.....57...4........
+......7.8.6.3...........2.....51..6.7......4...2.......5....31.....67...4........
+......7.85.....1..4..3.........18...6......2.....7......7...2...3.4........2...5.
+......7.86..3...........2.....65.....7.4......2....8..4.1....6.....92..........5.
+......7.95.....1..4..3.........19...6......2.....7......7...2...3.8........2...5.
+......7.96.....1..4..8.........19...5......3.....7......7...2...3.4........5...4.
+......71.....63...9..........21.5.........4.6...8........52.1..63.......4........
+......71...25.....5.....6..61..7........8...2.......3..8.2.....7.....4.....3.....
+......71...52..............8...3..........4.5.......622..6.4...17....3.....5.....
+......71..2.............4.....8.5..39.7.........2.....1...7..5..5......2....4.6..
+......71..3....6...4.9.....6....1.5.....8...4......2..1.....8.....23.......4.....
+......71..9..4.............5..2.1....6....3.......8...1.8....2....93.4....5......
+......71.3.....6...2.4.........6.1...5..2......8.........5....26...3....1..7.....
+......71.3..2...........4..5.......2....4.........7....4....35...786.....1.5.....
+......71.6..3...........5...17.4.....4.2....3.............51...3......8.5.6......
+......71.62...................7.83..1..3.....9.6......4..16.....58.....2.........
+......71.8..5..............3..2....6...6.54..1.........4....8......37....6..1....
+......71.9...2.........6....5.7..4......8...2.1..........1..35.8.......62........
+......72...4..1.......6..8.8...2.......3..4........1..2..5...7......4..3.5.......
+......72..1.8.................1...847.3.5....6........2..6......5......9....7.3..
+......72.3...4.......6.....6.84...........1..5.........27....9..1...7......5....4
+......72.9..8...........6..8....5..9....6.4..2..........637.......2...8..1.......
+......7216..3.4............2..5...8....29......1..........714..52................
+......73.....5........4...........29.7.....5..3.8........3.74..5.....1..2..6.....
+......73..2.8.................1...827.4.5....6........3..6......5......9....7.4..
+......73..48.......5.......1..7.2.......5...8.......4.9.....2.....6.3......84....
+......73.4...2.......6.....6.98...........1..5.........37....9..1...7......5....2
+......73.5..1........2.........34.6.....6...51...........7..1...2......8.36......
+......73.5..1........2.........34.6.....6...81...........7..1...2......5.36......
+......73.61.........5.........5...1.7...8.....4.......9.....8.7...1.2.......4.5..
+......73.8...2.......6.....6.98...........1..5.........37....9..1...7......5....2
+......73.8..1.....2..6......5..4.3.....2...6..1.......6.......8....75.......3....
+......74.....8...5..1......73......4...6.1......2.....3.....16..8..5..........2..
+......74.....8...5..1......93......4...6.1......2.....3.....16..8..5..........2..
+......74....8.5......9......34.7....1......5.......2.858...........2.4..6........
+......74..1..8..........2......7..136.2......4.........5.4.1......2..6..........8
+......741.8.2.................82.6..7......5...1......4....1......3....8.6....2..
+......743..2..5............3...6.5....84........37.........1.8.17........3.......
+......75....63..............4.2.6........7.6.1.......3.16..........8.4..5.7......
+......75....8.3...4........6..2....12...74..........8..13..........9.2...8.......
+......75..2........9.........7.35...6.......2....7....3.5...6.....2.9.8....1.....
+......75.1.2......8...4.....3....4.....6..3.......1......5...12.9.73.............
+......75.4..3.........4........51.7.2.....8.............18..3...6.2......57......
+......7516..3.4............2..5...8....29......1..........714..52................
+......76....8.4...2........5..2....13...75..........8..14..........6.5...8.......
+......76.1.2......8...4.....3....4.....6..3.......1......5...12.9.73.............
+......762.91................5....1.93..6.2......8.....6..3...2.....1.4...........
+......7869.1.............3.2.....54..8.6...............6.3.....5.....4.....81....
+......79.61.........5.........5...1.7...8.....4.......9.....8.7...1.2.......4.5..
+......8.1....53................2.73.1.8........9......25.....6....8..3...7.4.....
+......8.1...27................4.2.7.63....2..8..........4....2.1...8.......6..5..
+......8.1...6........5........4...5..9.....4..2..7....3...1.7..5.....1..4.6......
+......8.1...6........5........4...5..9.....4..2..7....3...8.7..5.....1..4.6......
+......8.1...7........6........5...6..9.....5..2..3....4...8.1..6.....3..5.7......
+......8.1...7........6........5...6..9.....5..2..8....4...3.1..6.....3..5.7......
+......8.1..93........74....21...8...6......4.......5...68.........2...7.1........
+......8.1.2..4..........9.....8.15...7.....6.3........6.91.........7..4...8......
+......8.1.2..4....6...3.....519...........74..8.......7..8.1...3......6..........
+......8.1.27.......5..........2...7....5.1...6........1.9.6.4..3...8...........2.
+......8.1.3.4..............1.6...5.....7...4.2..........521.....7....43......6...
+......8.1.37.......6..........4.736.2.............6...1...8.5.....12...........7.
+......8.1.6.2..............4..5...3.1.7.............2.6.3.7........815...2.......
+......8.1.6.9..............32.....6.....847...........8.4...5..1..3........2...9.
+......8.12...........5.....6..1.85..3......4....7.........9..2..7..4.....1....7..
+......8.12...3.................52.6..87...2...........43.8........1..7..5......3.
+......8.12...3.................65.2..87...5...........43.8........1..7..6......3.
+......8.12...3.................69.2..87...5...........43.8........1..7..6......3.
+......8.12...4.......5.....42.....3....8..1..6..7.....3...2......8...7.........4.
+......8.12..3.....74..........5..34...64.....1............18.2..3..6.............
+......8.12..6.....46.......1.5...2.....3...7....9.........18....7.....9.....5....
+......8.12..6.....54..........17.6..3......4....5.......1.8.........3.5..6.......
+......8.137.................18.5....4....6.3..........6.....37....81.5.....2.....
+......8.14...2....56...........4..5...1...3...8.......2......6....3.9.....78.....
+......8.14..1.....3..5......1..8........6.2.........5....4.3.7..82...6...........
+......8.15..........6.......3..71.....2....6.4........18....4.....26..5....9.....
+......8.16..........7.......3..41.....2....7.4........18....5.....27..6....9.....
+......8.16...2....38...........7..6..1.........5......74.....9....1.54.....2.....
+......8.16...3....5..1.....4....7.6.....8.4....2.........2...4..81.......7.......
+......8.16...7.......5.....4..3..5.....1.8..........2.....6.47..1..2.....3.......
+......8.16..2........7.5......6...2..1....3...8.......2......7..3..8....5...4....
+......8.16..2........7.5......6...2..1....3...8.......2......7..4..8....5...3....
+......8.17...3..............5..6..3..1.5............4....1.86..3.2......4..6.....
+......8.17...3....6........3...6..7....2..4............128......8.4..5.........3.
+......8.17..2........5.6......7...5..1....3...8.......5......2..3..8....6...4....
+......8.17..2........5.6......7...5..1....3...8.......5......2..4..8....6...3....
+......8.2...7..3...4.......2.8...5.....1.4......6......1.4...6.3...8...........1.
+......8.2...93.............1.4..6.5......8.....9..........7.43.28.1......6.......
+......8.2.5..2..........4.......417..2.5........6.........3..581.4......6........
+......8.2.9..3..........7..4...1..3...75..............13.....6....7..2..5..8.....
+......8.21..9.....3.....6...8....5...2.1........3...7.4...57..........1.....2....
+......8.25..7.....74..........6..39..81.........9.........12...3...8...........6.
+......8.26...7..........4..3..1...6..7.....5......8.......5.71..82.........3.....
+......8.27..3.....5.....4......95.7..2..4.....1..........7.3......6..2..4........
+......8.27..4.....1......5....6.84..5......7....3......8..5.....36..........1....
+......8.3...2...........1..1.8...6.....72....3..4......2..5..4..4.....9......1...
+......8.314.......7............835...1.....4.6...2.......1...5...3...2.....7.....
+......8.346.......1............835..6......4..7..2.......1...7...8...2.....6.....
+......8.35...1.........69......4..1...28......3..........3..2..46.......1..6.....
+......8.374.......1............835...7.....4.6...2.......1...6...3...2.....7.....
+......8.4...3..1...5.......8..2.....1.....4.....6.5....6.....357......6.....1....
+......8.4...7..6......1....5..4.8...1......5....2.........9.51..42.............3.
+......8.4.1.2.....96.......8...74..........1.....8.......1...6....3..7..4.....9..
+......8.45.1.........6...7.....3.5...4...1....2.......3.....19....74.......2.....
+......8.47...3....1..7........8.91...4.6.......2..........24.5.86................
+......8.5.....1......7.....3...4..2.6..5............1....68.4...17...3...2.......
+......8.5.2.3...........1..74.....2...5.8.........1...3..24......1...6.....5.....
+......8.52..9...........7...87...........2.9....4...3.1...5..4....67..........1..
+......8.59...1........4.3..2..6...4....8.3..........1..3.5..7...8...........9....
+......8.6....7.1.....4.....2....1....6.....4.....5...3...6..2...4.3.....1......5.
+......8.65..7...............2..96.........27....3.........29..87.3....5.1........
+......8.7.4........3.......2..5...6.8....2..........3....35.4....16.....7.....2..
+......8.96.....4..3..5.........19...7......2.....4......4...1...2.3........2...5.
+......81.....25...6....3....7.1.......4...2......6...5...4...3.28.......5........
+......81....5..4...36......5.....2......6........7.....1.4...6...7....3.4..2.....
+......81.4.......9...7......1.5.76.....3.....9........3...9........24....6....1..
+......81.5.......9...7......4.6.71.....3.....9........3...9........25....1....4..
+......81.7...3....5..6.....6.9...4......12......7........4..6...23.......1.......
+......815.4.3...............2..8.........79......15......2..64.5.......71........
+......82.....6.........5....56...7.....8..3...4.......8..3...4.1......5....2....6
+......82....3.9...1..7.....2...6..4.........3......5......8.61..93.......7.......
+......83..72.......1.......3..8........5...6.........14.....25.....7.4......91...
+......83.5..2..............13.6........5..2.4.9...........37.8.2.....7......9....
+......84....72.......1.....2...5...6.....4.3.1...........2....1.4....5...3...7...
+......84..5.7........1.......1.8........2.3...7.....1.3...4.......6...7.8.....2..
+......84..9..5.............6..2.4....7....3.......1...1.4....2....93.5....6......
+......84.3..5.........6.....7...43...4..2............55..1...26.....8...6........
+......84.6...3....1...........3...71.4..8..............2....45....6..2.....7.1...
+......85...6......4.........8...1.......4..6...9.......5....1.32..6...7....9..5..
+......85..1.2...........6.....7..2.18...4....5.3......29.6.........5..3..........
+......85.17.......4.2..........41....3.....6..5.......2.....1.....35.......6....4
+......87.6..5...........2...8....7....36........1.5...1...4...6....8..3..2.......
+......89..2....3....4.6....8..3.1....5.....2....8.....9...2...61.3...............
+......9.1.4.2.....6.....3..3...91....8.....2.............82..7.9.....5.....4.....
+......9.1.4.6.....27..........4...5.1..3.....8.........5.....4.....12.......8.6..
+......9.1.5.7.....28..........5...6.1..4.....3.........6.....5.....32.......1.7..
+......9.1.9..5.......3.........8.73.6.1.4....2...........1..6...8.....5....2.....
+......9.12...6......73.....6...2..7..9....4......8....8......5....4.1......9.....
+......9.12...7..............135.........4.6.........7.67.....2....8.3...4..1.....
+......9.18...7.............43.5.........8.57..1....6.....3.9...5......2....1.....
+......9.2.3..1....5...........6.7.3.......51...82.....71..........8..4..3........
+......9.21..8...........4..73..6........29...5.........694........5...1......8...
+......9.86...2.....7....1.....1.7...2......5.4..9.........3..6..1.8......9.......
+......91...78...........2.....4...8729........3.........5..7..61...2..........4..
+......92.7...4....1...........3...81.6..9..............2....65....7..2.....8.1...
+......92.8..7..............1...4...7.....5.8.....29......3..1.6.29...4...........
+......93.....17........5....253.............1..3......17....6.....54..2.8........
+......93..5.4........2........7..1.2.9..3.................8.67.4......8.1.2......
+......93.4...1..............3.72....6.....1.....5....41....9......3...2.8.4......
+......94...35...........2....1.....35....9.......4..6....1..5.876........4.......
+......94.2..1..............71.....6.....943......2.......5....13.4.......89......
+......94.7...3....1...........3...81.6..9..............2....65....7..2.....8.1...
+......95.7...6....1...........3...81.9..4..............2....56....7..4.....8.1...
+......96..8....5..74..............14..39........2.....1...47.....6...2......1....
+......96.4...1....1.........9.5..2.....3..........8.......7.41..658.............3
+......96.5...3..........4.....57..2.3.4..............1.462........8..3...2.......
+......98......1.......6....5.9.3....8..9...7.2.........4....6.1.7.8........2.....
+......98......1.......7....5.9.3....8..9...6.2.........4....1.7.6.8........2.....
+......98.1...6..............2.9.8.........3.1...5........81...679.....5.3........
+......9832...15.............8.3......4....5.........6...17........8...4.5.....2..
+.....1..2.3....4.............8....9.....5..1..5.2........73.6..1.5...7..9........
+.....1..2.4....3.............7....9.....8..1..8.2........83.5..1.4...6..9........
+.....1..2.6....3.............5....8.....7..1..7.2........73.5..1.4...6..8........
+.....1..2.8....3.............7....9.....4..1..4.2........83.5..1.4...6..9........
+.....1..24......5.....7.....1....78....53.......4.....5..2....6..2...1........3..
+.....1..25.6......4.........2.....716..34........5..........45..9.8...........3..
+.....1..27.6......4.........2.....156..34........7..........47..5.8...........3..
+.....1..3.4....5.............3....8.....7..1..2.3........74.6..2.1...7..8........
+.....1..3.4....5.............3....9.....8..1..2.3........74.6..2.1...7..9........
+.....1..3.8.4.....6.....2......2.3....1.......4.......2...6.7.....8...4.3..5.....
+.....1..32.....7..7......4.5..78...........36...2......16..........4.8...3.......
+.....1..43..............5.....52.6....1...8...7.3......4.....122..6............7.
+.....1..43.....6..............93.7..5.1...4...8........2.....8....4...1.7...5....
+.....1..43.....7..............53.8..6.1...4...9........2.....9....4...1.8...5....
+.....1..48.....6..............83.7..5.1...4...9........2.....9....4...1.7...5....
+.....1..5..3...6...7..5...........18...63.............19...8...5......4....2..3..
+.....1..5..4....9.............54..8.21.......7..3.....6.....7......6.1.....49....
+.....1..5..4...7...........58.....1....6...2....37....2...4....1.....8.....7..3..
+.....1..5..4.9................3..76..2...5......8.........2.98.65.4.....1........
+.....1..5.2.....3..........5...4..8.7.1...3............4.38....6.....7.1...2.....
+.....1..5.76......3........5......14...72........6.......8..76.94.............2..
+.....1..6..9...8........3..68..........9...5..7.........738....2......14....6....
+.....1..654........27......1......63...82........4....3..9...........54.......2..
+.....1..654........27......1......63...82........4....9..3...........54.......2..
+.....1..7.4.....5..........2.1...3.....58..6.7........1.....2...6.4........65....
+.....1..7.4....3.............7....9.....6..1..2.3........84.5..2.1...6..9........
+.....1..7.8....3.............7....9.....6..1..2.3........84.5..2.1...6..9........
+.....1..7.8....5.............7....9.....6..1..5.3........84.3..2.1...6..9........
+.....1..73..2.....8.....4......8..365.........2........1.....2....5..3...4..3....
+.....1..73..2.....8.....4......8..365.........2........1.....2....5..3...9..3....
+.....1..743........92......5......61...72........3....8..9...........43.......2..
+.....1..954........82......1......63...72........4....6..8...........54.......2..
+.....1.2...6...3....4......7.....18....65........4....28.3......1......6......5..
+.....1.2..4.3......5....4..6.1..........5.9........3..7......68...94..1..........
+.....1.2..9....7...........2.6....5....9..4......7....8..52.....4....1.3...6.....
+.....1.2.8......5............9...1.26..5.........2.7...1....9.....35....4..8.....
+.....1.23.4..............1..29....6.....7.4.....3........84.7..1.....5..2........
+.....1.23.4..............1..72....6.....8.4.....3........94.7..1.....5..2........
+.....1.23.4..............1..82....6.....7.4.....3........94.7..1.....5..2........
+.....1.3...2.......8..........82....1......7..9..5....3.6...5.....4..2.17........
+.....1.3...7...2....4......8.....19....75........4....28.3......6......7......5..
+.....1.3..2........6.......1.5.....63....4.......3.7....8...54....76.......2.....
+.....1.3..2.5.................63..4.15.........7.........2..9.54.....2..3...6....
+.....1.3..25.......4.......1.3....6....42.3.....7........28.4..6..5..............
+.....1.3..8........7........5..7.......28....6......1.1..4..2..3.9............8.4
+.....1.3..8........7.......5.6....1....27.......8.....15....2.....6..8..3...4....
+.....1.3..9....2..7..5.....1.3.6.......4..7..8.........7.29...........81.........
+.....1.3.3.....7.............576.....1....2...4.3.....2..57....8.......1.......4.
+.....1.3.4.2......3...........86...4.1.....7....2.....75..9..........4.2......8..
+.....1.3.6.....7..4.........1.....8....27....5..4.......8.....1.3.6.........5.4..
+.....1.3.9.....4..7...........89...75......1....4......3..2.....1......6...9..7..
+.....1.352...6.....3.....4.....7.4...5.8.......1......7.....6..4....3......5.....
+.....1.372...5.....3.....6.....4.6...7.8.......1......4.....5..6..3..........7...
+.....1.4..8....3..6..7.....3..8..6..9.4................41....2....69.5...........
+.....1.4.2..7............5.3.....7......9.6......4.......8..3.1.542......9.......
+.....1.4.3..5............7.5.....2......3.5......4.......6..3.1.472......8.......
+.....1.4.62.............3..3...5.......8....2..1...9...94...1.....62.......5.....
+.....1.4.62.......3.........61....7....53........2.......8..4.37.9............2..
+.....1.436...8................7..9....1...6...3........7.....218..69.......5.....
+.....1.5..24.......3.......5.1....6....32.5.....7........28.3..6..4..............
+.....1.5..6........2..........36...2..8...7..4....5...5.....18.....7.3.....2.....
+.....1.5..76.......3.......5.1....4....73........2....4..6.....2.....8........3.2
+.....1.5..8....4......3....2.1....3....8..7.....4...........61295...............3
+.....1.5.2.....6..9.........4.....1....63.......2.....417.........3..2...5..8....
+.....1.5.2..7............4.3.....7......9.6......4.......8..3.1.542......9.......
+.....1.5.7.3......26........8....14....26........3.......4..3.295................
+.....1.5.83.............6..1..3.......5....2.....4...7.7..2..........3.8...4..1..
+.....1.548..6......3.....7..2..3........4...19.....6.....3..2....5........4......
+.....1.572...............1....82.4...15............6.....54..3.6.....2...7.......
+.....1.6....4.2....8......3......12..4..3..........7..2.1...5.....74....6........
+.....1.6...7...3....4......8.....12....75........4....26.3......1......7......5..
+.....1.6.2.....8..4.7.......61....3....47........5.......2..4.7.3.6..............
+.....1.6.27........8.......6.35.........3.7.8......4..1......2....48.......7.....
+.....1.6.3.....7..............38.2..514..........7.......9...4123...............5
+.....1.6.3.....7..............38.2..514..........7.......9...4182...............5
+.....1.6.4.2......3...........86...4.1.....7....2.....75..9..........4.2......8..
+.....1.6.5......7..8.......4..53.....1......6.........3..75..........1.2...6..8..
+.....1.6.7..2...............64....3....7....5..1.........54.6...1....2..3...8....
+.....1.624.38........5......2..9..5....1..8...........5...2....7.....3......6....
+.....1.624.38........5......2..9..5....1..8...........5...2....7.....4......6....
+.....1.7..2......93.........5.26..........14....5.....4.1...3.....82....7........
+.....1.7..3........6.......4......1..5..6.......3....41.2...5.....84.3..7........
+.....1.7..34.......2..........2..4.5....6.3..1...7....6..5...8....4........3.....
+.....1.7..6......83.........5.26..........14....8.....4.1...3.....69....7........
+.....1.7..8......3............86...21..3.....4.....5..5.....14..63.8.............
+.....1.7..8......3............86...21..3.....4.....5..5.....41..63.8.............
+.....1.7..8....2...4..........28.4..16.......7...........54...39......1....8.....
+.....1.7.3.2...............4..35.....8.....1....2......76.9..........3.45.....2..
+.....1.7.49.........5......1......2....53.......9.....23....1..7..8.........6.5..
+.....1.7.9.....4..3.........7.....12...49................96.3..81........2.5.....
+.....1.743...............1.84....3.....2...6.......7.....38.2...16..........5....
+.....1.8...3.......9.........236....1......5....2.....54....1.....67.3..8........
+.....1.8..24.......3.......7.....64....92........3....8..7.....5.....2........3.9
+.....1.8.2.....5.....4......4....6......5.2......2...3...3...9456.......7........
+.....1.8.4..5............3..1.2..5....8.3....6.....4......8..7.5.....1.....7.....
+.....1.8.5.4......6...........53.4.672.............5...8.....2....46.......1.....
+.....1.8.6.2...............8..5......3....1......2.4.....26...9.14....3....7.....
+.....1.8.6.2...............8..5......3....1......2.4.....26...9.41....3....7.....
+.....1.8.6.4......5...........53.4.672.............5...8.....2....46.......1.....
+.....1.8.7.....4..9.........15.....2...52.7...8........6.....1.3...7.......4.....
+.....1.824...3....5........6..5..4.....2.8.6..............5.6...8.7......1.......
+.....1.843...............1.54....3.....9...6.......8.....73.2...16..........5....
+.....1.85.7..3.............8.5....4....71....4.........9....7.6...2..3.....8.....
+.....1.85.9..3.............8.5....4....71....4.........7....9.6...2..3.....8.....
+.....1.9.......7..3...........7..2...5..9.....1........2.4....56..27....8......1.
+.....1.9..64...............1.7....2....49.....3.6........5..4.62...8..........7..
+.....1.9.6.2......3...........83...6.1.....7....2.....54..9..........2.8......6..
+.....12....4.3.....8.....5.1.......7...8...4...7......2.....5.3.6.4...........1..
+.....12..4......5..........6..34......8...1.....5.....5..62.....9.....18......7..
+.....12..4.3.......67......18......5...37.......6........7...3.9.....5......2....
+.....12..5.6.......78......14....3.....68.......7........8....69......3.....2....
+.....12..6.3......7.........2....56....3....8...47....3..7.........2.1.........4.
+.....12..8.....3.....4........7...452.......86............2.6...5..3.....4.....1.
+.....12..8.....3.....5........7...542.......86............2.6...5..3.....4.....1.
+.....123.4...7...........8....54.6....32......1.......6.....4.2...3.8............
+.....125.3.....4..7........15....6.....38.......7......2.4.........3...7.......1.
+.....13....4.....5..........6....12...845.......9.....17....6..3...4.......8.....
+.....13....5.4..............74....5....3..2.....5.........7..6123.......8..6.....
+.....13....6.5.....2..........2...673..8.....4......5.1...7.4.....6......9.......
+.....13....7.2.....4.....6.2..8........4...9...1......5.....1.2.8.6...........7..
+.....13....9....7..6..........45..6.1.......23..7.....28....1.....69.............
+.....13....9....7..6..........45..6.1.......23..7.....28....1.....96.............
+.....13...7.....6.2...4....5.....18..4.7..............1.....2..3..6........47....
+.....13..2.......45.........6....13.4..75.......2......38....6.....7...5.........
+.....13..25...........9....8..24.......7..9........1...6.5...4......8.2...1......
+.....13..4.......52.........6....13.5..74.......2......38....6.....7...4.........
+.....13..4.......58........5..46.....1....73.....8.....372............64.........
+.....13..4.......72.........6....13.5..74.......2......38....6.....7...4.........
+.....13..5...4.............2......45...3...6...1..8....1.7..8..6...5.....8.......
+.....13..8.....2.....4........7...452.......86............2.6...5..3.....4.....1.
+.....13..8.....2.....5........7...542.......86............2.6...5..3.....4.....1.
+.....13..84................5.....12..6.49.............1.3...5.....64...7...9.....
+.....13.56.....1......2......43...7......5......9.........7.48.51..........6.....
+.....13.58..4...........7..7......2.4....6.......3.......75..4..3.2......1.......
+.....136..4.....1..2..5.......28.5..1.................3..7.6......4..8.2.........
+.....14..2.3.......56......17......9...36.......5........6...3.8.....7......2....
+.....14..5.4......2........3..26.....1....7.....5...........32..8..4...........65
+.....14..5.7.......62..........4..2.8.....3.....7.....31......8...27.......5.....
+.....14..5.7.......62..........4..2.8.....3.....7.....31......9...27.......5.....
+.....14..5.8.......72..........4..2.9.....3.....8.....61......3...28.......5.....
+.....14..5.8.......72..........4..2.9.....3.....8.....61......9...28.......5.....
+.....14..6.5......2........3..27.....4....1.....6...........36..8..5...........72
+.....14.369..7....5........91..........8..2......6......25........3...6........9.
+.....148.53.2............6.6.1.........3....5.........25....7......16.......8....
+.....148.53.2............6.6.1.........4....3.........29....7......16.......8....
+.....15....2...6...3......4...27....1.....8.....3......7.....2....5...3.5...6....
+.....15...39.......4.......8.6....1....35.......4.........3...46.....8..2..9.....
+.....15...49.......3.......8.6....1....35.......4.........4...36.....8..2..9.....
+.....15...8.....2..........5..6...7.3.1...4............6.27....4.....1.3....8....
+.....15...8.....6..........5..6...7.3.1...4............6.27....4.....1.3....8....
+.....15...8.....7..........5..6...2.3.1...4............6.27....4.....1.3....8....
+.....15..6......3...........18.....7...43..2...5.......7....1.....26....4..3.....
+.....15..8.......6.......2..35..........6..4..1.......7..24....4..8..3..........1
+.....15..8.......6.......2..35..........9..4..1.......7..24....4..8..3..........1
+.....15..8.....2..3...7........3..8...25......1............24.....8...7....9...6.
+.....152..7........6.......4...2.1.....6...3.............76...81.....4..5..3.....
+.....154.3...8.....6.......7..5..3.....2..........4.......3.7.2.4.6.......1......
+.....154.3...8.....6.......7..5..3.....2..........4.......3.7.9.4.6.......1......
+.....154.3...8.....6.......9..5..3.....2..........4.......3.7.9.4.6.......1......
+.....154.78........2.........6...3.....2........7........16...73......8...5.3....
+.....154.87........2.........6...3.....2........7........16...73......8...5.3....
+.....16...3.2...............2.37....6.....1.....8.....5.7.3..........42.3.......8
+.....16...7.....3.4........3..25..4.9.1.........8......56...1.....4.........7....
+.....16..2.........7........4.....37..68............2.6.1...5.....42....5...7....
+.....16..2......3...........18.....7...43..5...6.......7....1.....25....4..3.....
+.....16..2......4..........7..32....8.....1......4...5...7...3..58......61.......
+.....16..2.4........5......31....8.....57.......2.........9..2483..............5.
+.....16..2.4........5......31....8.....57.......2.........9..4283..............5.
+.....16..24.......95..........57....7.....1.....4........2...4........953...6....
+.....16..25.......4........1..4...5.....6...2..3.8.....67...3.....2...4..........
+.....16..3.4......2...........24.....8.....2..1.....7.....5.1.67..3...........8..
+.....16..3.4......2...........24.....8.....4..1.....7.....5.1.67..3...........8..
+.....16..4......2...........18.....7...32..5...6.......7....1.....25....3..4.....
+.....16..4.3......2...........24.....8.....2..1.....7.....5.1.67..3...........8..
+.....16..4.3......2...........24.....8.....4..1.....7.....5.1.67..3...........8..
+.....16..7......4.8........4..25..7.31..........7........84.....6....1........2..
+.....16..8........2.........63.....5...3...8..1.....2....29.....7....4..4...8....
+.....16..8......4.....2....7..3..9......5...14.........1......2...8...5.6..4.....
+.....163.2.........4..........86.5....32......1.......5...7...46..4............1.
+.....17...34.......2..........6..2.47...8...........3.8.....61....45.......3.....
+.....17...38.......4......6...46....6..3.....5.....1..1.....52.....4.......8.....
+.....17...39.......4.......8.6....1....35.......4.........3...46.....8..2..9.....
+.....17...45.......2..........3..2.57...8...........4.8.....13....56.......4.....
+.....17...49.......3.......8.6....1....35.......4.........4...36.....8..2..9.....
+.....17..2.......55.3......3..56.....7....41....2......4.....8....3.........2....
+.....17..2..3.................2...64.75..........8.....194.........7.5..4......2.
+.....17..2..5........6.........7.18.6...2....5......4....2....6.8....3...1.......
+.....17..2.5......8...........6..4...3......7....5...2.1....3.....5...8.....2..6.
+.....17..4.......52.........6....13.5..84.......2......73....1.....8...4.........
+.....17..42........3.6......6..5..4.2....7.........5..7.1.........4...2.....8....
+.....17..5.....2..3...8........3..5...27......1............24.....5...8....4...6.
+.....17..6..2.....4......9....86..5..31..................6..1.25...7..........3..
+.....17..8.....2.....4........3...452.......86............2.6...5..3.....4.....1.
+.....17..8.....2.....5........3...542.......86............2.6...5..3.....4.....1.
+.....17..8..2.....4......6....87..5..31..................6..1.25...8..........3..
+.....17..92..................35..6.....26....1.....8...6.....294...7...........5.
+.....178..6......35........2.....41..7.36.............1.....2.....68.......7.....
+.....18...2.....5.6..2.........4..3.1.8......7.........4.52..........7.1...3.....
+.....18...2.....5.6..5.........4..3.1.8......7.........4.25..........7.1...3.....
+.....18...3.......7.........58.3.......6...2...1.........5..1.82..37..........4..
+.....18..24.......6..........1...7.....43........2.......6...42.2......3..7....5.
+.....18..3.......5..........61....2.5..4......8........2....61.7..35........4....
+.....18..3.....4....76.....5..24....2......6........1....3..2...1..7.....8.......
+.....18..6......4.3........4..52..3.71..........9......82...1.....36.............
+.....18..7...4....5.....2..4..6...5...2..8.........6...8.3.........5..7..1.......
+.....18..7...4....5.....9..4..6...5...2..8.........6...8.3.........5..7..1.......
+.....19...2.....3.7..6.........4..6.1.9......8.........4.56..........8.1...3.....
+.....19...2.....5.7..6.........4..3.1.9......8.........4.56..........8.1...3.....
+.....19...2.....5.7..6.........4..6.1.9......8.........4.56..........8.1...3.....
+.....19...2.....6.7..6.........4..3.1.9......8.........4.56..........8.1...3.....
+.....19...2.....7.6..5.........4..3.1.9......8.........4.27..........8.1...3.....
+.....19...54.......6.......13....5.....42.......6.....2...8.......5....67......1.
+.....19...7....6...34......9..2............8........3....67...54.....2....8.3....
+.....19..2.........3.......6..38......1...7.....6.....75......1....4..3...98.....
+.....19..2.........3.......7..28......1...5.....3.....65......1....4..3...97.....
+.....19..2.........3.......7..28......1...5.....3.....65......1....4..3...98.....
+.....19..2.........3.......7..38......1...5.....2.....65......1....4..3...98.....
+.....19..2.........3.......8..62......1...5.....3.....75......1....4..3...98.....
+.....19..2.4........5......31....7.....26.......5.........8..5273..............4.
+.....19..2.4......6.........1....3.....76........4.......2...64..3....5..8......7
+.....19..7...3....2.........5.....7..1...4......2.........6.1.58..7...3.......4..
+.....2..17...3.............5.....63.2......7....1.8....81...3.....56.....4.......
+.....2..3.7.....5.....1.....6.4..7........2....5......3.45........7...8.2.....1..
+.....2..3.8.....5.....1.....7.4..8........2....5......3.65........8...9.2.....1..
+.....2..5..7.3.....1....6..3......2....67.......1........5..14.2....8.........7..
+.....2..6..8...7...........6......21...39..5.............87.3..21.......5..4.....
+.....2..6..9...8...........6......21...73..5.............98.3..21.......5..4.....
+.....2.1..4....6...5..3.......48.5..2.......31...........3....87......2....5.....
+.....2.16..34.................3..8..7.....4..61..........276....95..........1....
+.....2.16..85.................3..5..7.....3..61..........276....94..........1....
+.....2.16..85.................3..8..7.....3..61..........276....94..........1....
+.....2.17..36.................3..6..8.....4..71..........287....95..........1....
+.....2.1837.5...........6.....31....5.....2..4......5....9..4...1.........8......
+.....2.3.7.....6......5.......56.7...82............1.......3.245..1............8.
+.....2.3.7.....6......5.......59.7...82............1.......3.245..6............8.
+.....2.3.9.....6......5.......56.7...82............1.......3.245..7............8.
+.....2.3.9.....6......5.......96.7...82............1.......3.245..7............8.
+.....2.4.....3...86......1.1..6..5..4.71...........3...3..5.2.....4..............
+.....2.4...7....5..6.1.........5.72....3......1..........6..1.85.....6..4........
+.....2.4..3....6...5..7....8......2....6...1....35....2.....9.....9..3..1........
+.....2.4..8....5...3..6....7......2....4...1....35....2.....6.....8..3..1........
+.....2.4..8....5...3..7....5......2....4...1....36....2.....4.....8..3..1........
+.....2.5...7.1.....3.......56.4...........7.18...........73.4..2......6....1.....
+.....2.5..4....3......6....8..1..9........4.153..........49....2......8....3.....
+.....2.5..6....3...4.5........63....8......7....1.........1.6.45....7...2........
+.....2.6....3....14.....7...1.6.........7.2...........2.7.4.......5...138........
+.....2.6...1.......5.......2...6.........3..5......1.7.3.75....6.....84....1.....
+.....2.6...7...3....4......8.....12....75........4....26.3......1......7......5..
+.....2.654.1................8......2...4..3......6........7.14.3..8.....25.......
+.....2.69.731..............6....8....4....3......7.1..2......8....43......5......
+.....2.7..8....3.....6..4..3...6..2..1.4.................5..1.87.2.3.............
+.....2.7.6.......3....5......2.1.5...3.6........4....64..3...1.8..............2..
+.....2.71.3..5.............2.8...6...5....3.....74....7..1.8.........59..........
+.....2.8.6..7............1.3.....9......8.7......4.......5..3.1.582......4.......
+.....21...5....4...3.7......6..3........81...7...........4...352......7.1........
+.....21.43..7...............24.5.....1....7.........3.7.....62....84...5.........
+.....21.63..46..........8...6......2...7...4..1...........1.5..7......8.4........
+.....23...4..9....7........5..6..1.....48...........2....8....42......9.1.3......
+.....23...91..........8.......9...4.8..3.....2.........5.14......6...7.2......8..
+.....23..1..5.......7......4......17.3.8...........6....647.....2....9......1....
+.....23.7.1.8......5.......3..7..9.....4..6......1....2....9.......5..4........1.
+.....24.........8..1........9.6...........5.4......23.5.4.3.......7...1.2.......6
+.....24.........8..1........9.7...........5.4......26.5.4.3.......8...1.2.......7
+.....24...5....1......6....6.7....3....1.....3............3..6241.5......8.......
+.....24..56.......1.........2.16..........85.....3....3......16..8..4......7.....
+.....24.5.3.1...6..7........1.3.....8.....2...........4...1....2.....8.....7...3.
+.....24.6.3.7......1.......5.......2....3..8....2.........1.3..2......7.6....5...
+.....24.63.................5..1..8..7..35.....6....2.....5...3.1......5..4.......
+.....241..7......5.3.8.........7..3.2........4...........1..9..5.....2...6..3....
+.....25....1....9..3..4....5.....2.4....7.6.....3......7.8...3....1.....4........
+.....25...6.9.......1......8....3...2.....4......6........3..1657.2............9.
+.....25...61..................13.7..9.....2.....4.....52..8.......3...1.6......4.
+.....25.17..3.....8..........36...7..5..4.1............2..1....6......3......5...
+.....25.17..3.....8..........36...7..5..4.2............2..1....6......3......5...
+.....254..81...............5...3........6..1.........876....3.....1....54..7.....
+.....26.95.8..................28....1......4....6.........54.7..26...1...3.......
+.....27....1....3..8..4.....2......4...3...8.7........9..5..1......6.2.....8.....
+.....27....1....3..8..4.....2......4...3...8.9........7..5..1......6.2.....8.....
+.....27...53.......4..........6..2.....3....42........1.....56....48........3..1.
+.....27..1...3....6......8....64..1..2......3.7........4....2..5.......4...1.....
+.....27..3........6.........7....2.1...75...........6..21...4.....63..5....8.....
+.....27..5..3......6....2..1......38.......5...7.......4.15......2...4......9....
+.....27.16..3.....8..........35...6..1..4.2............2..7....5......3......1...
+.....274.3.58...........8.....6....8.4........7.......6.....1.5....4..2.8........
+.....274.5...1..............4.73.......6....1.2..........4...7.6.....3..1....8...
+.....28...6.5.....4...........4...36.2.....1...8.3....3..17..........2........6..
+.....28...64.......5..........7..3.....4....52........1.....67....59........4..1.
+.....28...7....3..4........6......25.1.37...........4....71....2.5.........8.....
+.....28...7....3..4........6......25.1.37...........4....71....5.2.........8.....
+.....29...47.......6..........14...7......3..5........2.....51....4...6....87....
+.....29..37.......5........8..5...3....1............7...2.6.1......8.2.4...7.....
+.....29..86.......5........7..5...3....1............6...2.3.1......7.2.4...6.....
+.....291.32..8..............19...5.....3.........7....7.46....3.....1...6........
+.....297..3..1....6.....5......8..21.5.9.................5..3..8..6.....1........
+.....3..1....27...3........1..5...........87.......2....2...63..4.15.......9.....
+.....3..1.6.7..............1.24........5..86.9........3...9........1..4..7....5..
+.....3..1.8.5..............1.24........7..86.9........3...9........1..4..2....5..
+.....3..18..4......6.....9..9.24........8.3...........3.1...4.....6..75..........
+.....3..5.8....7......1....5.3...6.....8..2..1...5.....7.2.....9..7............1.
+.....3..91..............7.....25..3...7...6......1....51.....2....7.84...9.......
+.....3..91..............8.....26..5...8...7......1....61.....2....8.54...9.......
+.....3.1..5........4..........52.6..8......3....4.....3.7.....1...2..5..1.....4..
+.....3.1..5..7.......4.....1.38.........6.7..2...........1.23...6....5.7.........
+.....3.1..5.6..............1.3.4........8.5..2.........9....6.3...17.......2..4..
+.....3.1..7..4......2......8.1.3..........7.2......5..3..5.1....4....6.....2.....
+.....3.1.6...5..........8..4..7..2.....1......5.........129.....4.....53......6..
+.....3.1582.................9..4.6.7.....18.........3....79.2..1...........2.....
+.....3.2.3...8...........4.5.....3.....9..6.....2.........4.1.5742.......9.......
+.....3.2.3...8...........4.5.....8.....9..6.....2.........7.1.5742.......9.......
+.....3.46...8.....9..........6....732..51........9....13....2........1.....4.....
+.....3.46...8.....9..........6....732..51........9....13....5........1.....4.....
+.....3.465......3..2..........28.7..6.1..........9....4..3.6....8....2...........
+.....3.482.1...............7.....2...3...4.......5....5..26.1...4.....8....7.....
+.....3.4928..1.............5.9....6.....8.2.....5.....7.....1.....9.6......4.....
+.....3.5.....78...1.........576......8..2.......1...4.......7.89..4...........2..
+.....3.58.71..................42.7..8....5....6....1..5...6..4....1.......2......
+.....3.6..2....4...5.7...........5.13.8......6...........52....8......3....4..6..
+.....3.6.2..1...........58.7.....3......8........9.......6..7.1.842......9.......
+.....3.6.2..6.....1...........7..1.2.35............8...6...4.5.....2...1....8....
+.....3.659......8...1.........79.2...5..........6.....86...5...7.....9......1....
+.....3.7.....8..2..1.......3.75..........18..2..4.....7...2.......6....4......1..
+.....3.7..8........2..........1..3.87...56...3...........82.1..4.6....3..........
+.....3.7.2..1...........58.6.....3......8........9.......5..6.1.842......9.......
+.....3.748...1.......6....2....5.8...4.2......3....9..9.....5.....4............1.
+.....31....2....7.............72..8.34....6...9.......1..2........58..........4.3
+.....31....2....8.............72..5.34....6...9.......1..2........57..........4.3
+.....31....5....7.............75..8.34....6...9.......1..2........58..........4.3
+.....31....5....8.............75..2.34....6...8.......1..2........57..........4.3
+.....31....7....8.............75..2.34....6...8.......1..2........57..........4.3
+.....31...8......6....5....1.74...5....82....3.........4.6..7.........3.6........
+.....31..7...2..........85.2.7....4....1.....4.........6.54......3.....2.1.......
+.....31.42...5..........8..5.6......7......2....4.........6..7..1.8......4.9.....
+.....31.95..............3.....8.6.5...97......1..........52.4..6......8.....1....
+.....32........1.67........4..1...7....25....3...6.........8.4..26.......5.......
+.....32........1.74........6..1...8....25....3...7.........9.4..27.......5.......
+.....32..2.....4...1..6....3..4.......7....6........1...52..3...6..5............8
+.....32.8.5..4.....1.......6.....3.....5...2....78....3......6....1....52........
+.....32.8.7..4.....1.......6.....3.....5...2....78....3......6....1....72........
+.....34...7.1......2.....6.4.8.........2...5.3.........6.5.........2.3..1.......8
+.....342..1.....9.5..6........71.8..6.3...............3...9.......8..7..........5
+.....345..6....2..71.............83....69.......1........2....13.5........8......
+.....345.1.......6....9....5..61..........38....7......84...2.....1......3.......
+.....346..1....7......2.......7..1.56..5.....3.2......8...9..3....1..............
+.....346..7....2..81.............53....79.......1........2....13.5........6......
+.....35...4.1......2.....6.5.8.........7...4.3.........6.2.........4.3..1.......8
+.....35...4.1......2.....7.5.8.........6...4.3.........7.2.........4.3..6.......8
+.....35...8..6.....91......3.4....6....7...9.2........4.....3.....9..2.....1.....
+.....35..6.1..........7.....8...2....5.4............1.2..16..........3.5...2..4..
+.....35..6.1..........9.....5.7......4...8..........1.2..16..........3.5...2..4..
+.....352..136............4.......7.12.4......5.........3....8.....75........4....
+.....352..136............4.......7.12.4......5.........3....9.....85........4....
+.....356.......17.3..8......562........9..4...7.......4.....2......7........6....
+.....356.......17.3..9......562........8..4...7.......4.....8......7........6....
+.....357..84.2.............5.6....3.1..4........8......3......2...6..8..7........
+.....358.7..2.....1...........67..4..3.5..................1.2..6.......7.8...4...
+.....358.7.1.........7.....4..12.....5....36.......8..2..4....1.3................
+.....359.8.1.........4.....4..12.....5....37.......9..2..6....1.3................
+.....359.8.1.........8.....4..12.....5....37.......9..2..6....1.3................
+.....36......76...1.........265...........74..5..........14..5.7.3..............8
+.....36......8.4..2...5......4...1...6.4.............8...6...278......5....1.....
+.....36......8.4..7...5......4...1...6.4.............8...6...278......5....1.....
+.....36....2.......1.......35.....4....4...1.8.........7.14.......6..8..5.....3..
+.....36..1...2.....5......9...1.9...4..6...........2......7.81...95......3.......
+.....36..5.9...............8......1....29.....6.5.....71...8.......4.2.9.3.......
+.....362..81..........2....6...52..........84.........5..7..3.....8....1.7.......
+.....362..91..........2....6...82..........94.........5..7..3.....9....1.7.......
+.....37....15......2.......68.2.....7.....3......4....3...75.....4.....2.......1.
+.....37...8.2......4....6.....8...5.6.....3...........7.1.6........4..8....5...2.
+.....37..1...6.....5......9...1.9...4..7...........2......4.81...95......3.......
+.....37..6.1..........8.....9...2....5.4............1.2..16..........3.9...2..4..
+.....37.24.1..........9....5..46.....7....8.....5......3...7...6......4....1.....
+.....37.24.1..........9....5..46.....7....8.....5......3...8...6......4....1.....
+.....37.4....7.6..1..........28.....5......1.........3.7....3...4.1........5...8.
+.....372..89..........4....6...3.2........1.....9.....3....6.5....1....8.......9.
+.....372.1.4.5......62......9.8.7..........41..........3....9..2...4.............
+.....372.4.1.5......62......9.8.7..........41..........3....9..2...4.............
+.....379..14.6......2......73....8.....42.............8..7.5..........41.........
+.....38..1............8....7..2...1..3...85.............4...6.2...91.......7..4..
+.....38.24.1..........5....5..46.....8....9.....7......3...8...6......4....1.....
+.....38.24.1..........5....5..46.....8....9.....7......3...9...6......4....1.....
+.....385..1...........2....32......6...4..1..5........9......2....71.......8.5...
+.....39...58.......6..........15...8......4..9........2.....31....5...6....87....
+.....4..1.5.2..............6.13........7..35.8........2...8........1..6..6....4..
+.....4..1.5.2..............6.13........7..85.9........2...9........1..6..6....4..
+.....4..1.5.7..............6.13........8..35.9........2...9........1..6..6....4..
+.....4..1.5.7..............6.13........8..75.9........2...9........1..6..6....4..
+.....4..12...3....5.....7...3.71..........62..........6....7......8....3..9....1.
+.....4..8.6.....3.71........5.6..2..1.......4....2.......1...6.4.....5....8......
+.....4.1.23.......9...2.......4..3.5..16.....8.....2...46..........98............
+.....4.12....1..3....8........6..5..3.....8..1............23....9.....5..6....7..
+.....4.136..5...............4..13...8.....56.....2....9..2..6...1.............8..
+.....4.2....3...........6..53....4......1..7..2.5.....8.1.2.......6....3......5..
+.....4.2..36..................56.3..4....8.........1..2......89...31....9..7.....
+.....4.2..7....5..3..8......1..3...........83.......4.6...5.7....82...........1..
+.....4.3..2....1...4...5......47.2..5.......93........8......5....62.......1.....
+.....4.3..2....1...4...5......64.2..5.......63........8......5....27.......1.....
+.....4.3.9.......2....8......4...86..3.2........1.........7.5..1.....4..2..9.....
+.....4.317..5.....8............31.4...2.6....5.....8...1......6...7..5...........
+.....4.5...38......6.9.....4......7.....1.......3.....1...29...5.....8.3......6..
+.....4.5..3........2..........1..3.94...65...9...........32.7..5.8....4..........
+.....4.5..7.....2...38.....52.1.........3...7......4..6...2....4.....8.......7...
+.....4.513..7.....8........6...2.7......51...............8..3...2.4......5.....9.
+.....4.6...57......2.......46.....3.3..5........2.......8...7.56...1..........2..
+.....4.6...85......2.......61.....3.4..8........2.......7...8.53...1..........2..
+.....4.6.7......3.....2.5..6..1...7...45.........8.....2....8.1......2.....7.....
+.....4.651............2.....5.37.2...46...5....8......7.....3.....8..........6...
+.....4.7...2.5.....1.......89.....6....23....4...........6..2..7..1...........4.5
+.....4.7..1.....3..2.6.....6.....5......87.......2.......3..2.14.....6..7........
+.....4.761...........2..........51..5...1...........4.....3.8.5.746......2.......
+.....4.761...........2..........59..5...1...........4.....3.8.5.746......2.......
+.....4.8..2.....5.....76....6.53..........7.2......4..8..3..1....4......7........
+.....4.8.5..3.....1...........5..2.1.8...6....4..........12........5.3........76.
+.....4.9.....95....1.......2..6..7.....18.3..5........98.....5.......2.....3.....
+.....4.9.....95....1.......7..6..3.....18.7..5........98.....5.......2.....3.....
+.....4.9.....95....1.......8..2..6.....17.3..5........97.....5.......2.....3.....
+.....41....2.......8.......4......351..5............2....28.6..54....7.....3.....
+.....41....2.......9.......4......371..5............2....29.6..74....8.....3.....
+.....41....2.......9.......4......381..5............2....29.6..74....8.....3.....
+.....41...25.......3.7.....7.......2.....1.6.....5..3.6..82..........5........4..
+.....41..3..7............8...56..2.....83.....1...........215..8.......7.......3.
+.....41.63..56..........8...6......2...7...5..1...........1.4..7......8.5........
+.....42....6....3.4..7......31.6..........4.5......8...7.13....5...........6.....
+.....42....8.9....5........16.3......4....7......5.....2...7...3.......9...8...5.
+.....42..3..1.........6..3....3...6..4........7.......6.15.........2.4.7......8..
+.....42..6.......3....1....9..3...........41.......7...1.8....5..4....6..27......
+.....42..6.......5....1....8..3...........41.......7...1.5....3..4....6..27......
+.....42.67...3....5............5..7..4....1...2.8.....1..5...6.........8.....2...
+.....42.87...3....5............5..7..4....1...2.9.....1..5...6.........9.....2...
+.....43....1..............5...8...7124..............9.46....2..3...5.......71....
+.....43....2.6.....1.......8..9..6...9.25....4........3....7..........12.......9.
+.....43...2.7.........9....3.9...1.....6..5.....2......8.....674...1...........2.
+.....43..7.......82.........3....14.......5.....6......41....5....72...6...8.....
+.....43..7.......82.........3....54.......1.....6......41....5....72...6...8.....
+.....43.27...1.....8.......9.....81....3.....1............9..5...28......3.6.....
+.....456..1..3....7.........42.........7..8....64.....3...52..........41.........
+.....457..8..6.1...........26......3.4.....9....1.....7.19.....9..............8..
+.....46........5.8..1......2..17.....8....4.....3........23..1.45..............3.
+.....46......5.1...3.......1....8......7...3.........2.7.23....6.....85....9.....
+.....46..2.....5......3....6..2........7...3.........1...8..24..13.7.....5.......
+.....46..2...5.............1......52.63..1......8......8.6..3.....72...........4.
+.....46.32...1.............8.1..7...9.....5.....3......3.65.......9...1..4.......
+.....468.3.1.........9.....5..13.....6....47.......8..2..5....1.4................
+.....47..3...8..............47..1.6..5.....23........8...23.......7..5..1........
+.....47..6.....5......3....4..5........6...3.........1...7..26..13.8.....9.......
+.....482.51...........3.......5..7.14..6.2..............817...........53.........
+.....5..13..4.....7..8......2..14.........3.........7....73.8...54......6........
+.....5..16..8.....9.............857.13..9..........4....74.........2..6..5.......
+.....5..17..6..............37....4..1..8........2...6...2.1........3..7..1....5..
+.....5..4.3.....2.1...7.....2.....5.....1.3.....6.....6.....8.....3..1.....4.2...
+.....5..43.....2......1.......36.4...15......8........24.7.......6....1....2.....
+.....5..49.....2......1.......36.4...15......8........24.7.......6....1....2.....
+.....5..49.....2......1.......36.4...15......8........24.7.......6....1....9.....
+.....5.1..2..8.............5..1.7....4.6..3.....2.........3.8.24.7......1........
+.....5.1..4.6..........4...1...2..........6.4..8...7.....81.3..56..........2.....
+.....5.1..76.........8...........4.71..9...........6......742..561..........3....
+.....5.1..9....6..7..8.....5.1.3..........2.44.........2.96...........5....7.....
+.....5.1.7.2..........4.......72.6...51.....83........4.....2...8...1......3.....
+.....5.12.8.7................231.....3....5.....6...4....8..7..6.....9..1........
+.....5.12.8.7................231.....3....5.....6...4....8..9..6.....8..1........
+.....5.1839..............4.7...98...2.....6.....1.......84.........7.3...1.......
+.....5.1839..............4.7...98...2.....7.....1.......84.........2.3...1.......
+.....5.1896..............4.7...98...2.....6.....1.......84.........7.3...1.......
+.....5.193.8.............5....8.1.6.4.....3..............34.2......7.4...1.......
+.....5.2.....3..4.1...........2.81.....9..7...3........5..4..3.7..1..6...........
+.....5.2..3....1...7........6.71.3..2....8...5........4......5....16.......3.....
+.....5.2..3....1...7........6.71.3..2....8...5........4......5....36.......1.....
+.....5.2..8.7.....3......1....8..7....1..........3....74....8.....61.5.......2...
+.....5.2..9.8......1.7.....2......7......94......3........6.14.5..2...........9..
+.....5.2.1..6..............6.....1.7....24.5.8...........7..6...2..3.....49......
+.....5.2.7..6..............6.....1.7....24.5.8...........1..6...2..3.....49......
+.....5.27.4..8..............163..4.....7.2............3.21.........5.8..7........
+.....5.27.631............8.2...78....1....3...........7...3.......6..4....5......
+.....5.273..4.....8.........21.........8...3.......4......2...1.6.3.....5.....7..
+.....5.3..2.7......1.......5...83.4.......7.1............41.2..8..6.....3........
+.....5.3.1.....7......6.......5.78...62............1......3..245..8............6.
+.....5.3.94...........1....7..6..4........2....5........1...65..2.9............81
+.....5.316......4..2..........28.7..3.1..........9....4..3.1....8....2...........
+.....5.32.1...........4....3.76.......5.1.8..2.........6.7..4..5...........2.....
+.....5.4...2....6..7.1.........6.52....3......1..........7..1.86.....7..4........
+.....5.6..3..2.............8.1..6......4..7.3......2...7..3.4..6..8...5..........
+.....5.6..8....7....1.3....57.4.............1.......3....75.2....6...4..3........
+.....5.683......4..1........2....1..4....6......3.......412.7..6............8....
+.....5.683......4..1........2....1..6....4......3.......612.7..4............8....
+.....5.693......4..1........7....1..8....6......3.......512.7..6............9....
+.....5.693..2.......7.......1...4.......7.2....8...3.....83.....6.....4.1........
+.....5.7.....2..5..4.............6.3.3....4..7....8......43.1..5.2.........6.....
+.....5.7..3..2.............9.1..7......4..8.3......2...8..3.6..7..9...5..........
+.....5.7..8....4...3.......5.2.........9..8..7...4.......89...13......5....4.....
+.....5.723..6.....8.........21.........5..3..........4....2..1..7.4.....5.....6..
+.....5.8...1.........2.....74...2.........6.1......3.....61.5...8.....7.2...3....
+.....5.8..2.7......1.......5...83.4.......7.1............41.2..8..6.....3........
+.....5.8..6..7......1.......7....6.1...8..3........7..3..26....8..1...4..........
+.....5.8.5..3............6.1.....5......6.7......4.......8..3.1.692......4.......
+.....5.8.7...4..........2.....31.6..4.......58...........7...4..3.6......6......7
+.....5.824...1....6.........2.5..4.....6..1...8...3....7..2....3...........4.....
+.....5.83.49.6.............7..3.8....1....9.....2.....5.3..........4.6..8........
+.....5.9...83.....2.....4...5.....31....4.......2......1...67......8.2..6........
+.....51...7......9....2.......94...63......7.2.5.......6.7...8....6...........2..
+.....51..6...3....4......8.2.....3.7...9..6.....4......3......5...6...4..1.......
+.....51..9............2.......7..59..2.3......8.......54......21..6.........8..3.
+.....516.3..............9....213..........79........5.69.4.........8...2.5.......
+.....519.2...7..............53...4.....2....7.1..8....8..6...2......35...........
+.....52...3.6............9.....9..632.4......1........5..1..4...8.73.............
+.....52...6.3..............7.9....4....1....82........5.....92..1..8.......63....
+.....52..4..1.........6..3....3...6..5........7.......6.14.........2.5.7......8..
+.....52.14..61..........8...2......3...7...6..1...........2.5..7......8.6........
+.....53..1............2.....45...6...3.8........1.....6......71..2.34..........9.
+.....53..2.......84.........6....15.......6.....7......51....6....42...7...8.....
+.....53..2...6.............1......62.73..1......9......9.3..4.....82...........5.
+.....53..8......2..1..6....3.2...4......1.......7.......93.4....8.....16.........
+.....53.16.72.....8...........62.4...1....5...........4...31..........7........6.
+.....53.16.72.....8...........62.4...3....5...........4...83..........7........6.
+.....534.7.....................9...8.4..2.....3.....1.9.2.....7...4..5..8..1.....
+.....54......1...........8.6.8.9.......6..7..1.......5.472......3......9.......1.
+.....54..16.............73..53..............1...2.......7...35.2..61.......8.....
+.....54..7.......2....6.........715.....4.6..3...........7...83.65.........2.....
+.....54..8......2..1..6....2.4...3......1.......7.......94.3....8.....16.........
+.....54.17..3.....8..........36...7..4..2.1............2..1....6......3......4...
+.....543.2..1..............1..82.....4....35.......7..6.2.....1....73............
+.....56....3.8............2...73.4..52........6.......7..5.2.........81....3.....
+.....56..7..2.....1.........3.61...........4.........2.825.........4.17.......9..
+.....564.7.1.........6.....45..3........8.1...3......7.2.....3.6..1..............
+.....564.7.1.........6.....54..3........8.1...3......7.2.....3.6..1..............
+.....569...1......4...........24...7.9....3...6.8.....2...1...4.....9..........8.
+.....57..4...2.............1......42.73..1......6......9.7..3.....84...........5.
+.....57..8...3........41...6..7......3.....4........1....2..6....1...2..54.......
+.....572.1.6.4..............8....25.......3.....1........6...4132..........9.....
+.....573.2..8..................6..24..57......1.......9...2.........14........5.8
+.....576.21.......9.........8.12.......9..5....7....4...4.53...........1.........
+.....58..4......2..6..3....8.5...2......1.......6.......81.2....9.....36.........
+.....58..6...4..........1..3..2....7...1...6........4..198......8....5.........3.
+.....58.32...4.............7..6..12........4....3......38.....9...75.....9.......
+.....581..7...9...6.........3..2.......6...5....7........38...75.....4....1......
+.....581..7...9...6.........3..2.......6...5....7........39...75.....4....1......
+.....583..2.47................1...478.5......6........3.....5...7.6.........1....
+.....583.6.1.............7.53....7.....21....4..6.........2...678................
+.....583.7..6.....4........1.......7.8...2.......4..6..9....2.....17.......3.....
+.....59......7.6...31......2....6..........73...4........13..8.6.....2.....2.....
+.....59..2...6.............1......62.73..1......9......3.7..4.....82...........5.
+.....6..1.5.2...............2.54.3..1.6....8.7..............23.....61...8........
+.....6..1.5.2...............4.52.3..1.6....8.7..............24.....61...8........
+.....6..1.5.2...............4.53.2..1.6....8.7..............42.....61...8........
+.....6..17...5.............4.....58.5......7...21......16...3.....48.....2.......
+.....6..4..2....3..5..........3...2.6...4..........5..4.....1.6...27.......8..7..
+.....6..42......1..5..3.....6....3..5....9......1.....1..74.......2...8.......6..
+.....6..42......1..8..3.....6....3..5....9......1.....1..54.......2...7.......6..
+.....6..5.3..7...........1....2.1....2....7.....5..9..1.54.........8.3..6........
+.....6..5.8..7...........1....2.1....3....9.....5..7..1.54.........8.2..6........
+.....6..7.4..2.....1.....5....13.4..6.....3..7..5.....2....7.........1.....8.....
+.....6.1..3..8.............6..2.1....5.7..4.....3.........4.8.35.2......1........
+.....6.1..7....5..4...8....5..2..4.......1..8..........61....5....43.2...........
+.....6.1..7.4......8.......54..2........1.........8......5..7.81..3.....2.....9..
+.....6.1.2.3......5..3.........14..89.....3..............2..5...4..7.....6.5.....
+.....6.1.4..3.....75...........147...3...........2.......5..6.31.2.........8.....
+.....6.154..9...............6..15...8.....94.....3....9..2..8...1.............4..
+.....6.183...7...........9.2..4..5...8...1.............91...6.....35.2...........
+.....6.183...7...........9.7..4..3...8...1.............91...6.....35.2...........
+.....6.184......5..2........3....2..7....8......4........23.9..8.1..........6....
+.....6.2..3..1.....9..........9.43..2..8.....7........5...7..6..2.3...........1..
+.....6.274..5.....3.........21.........4...3.......8......2...1.7.3.....6.....7..
+.....6.28.731..............5....2....4....3......7.1..2......5....43......5......
+.....6.28.731..............5....2....4....3......7.1..2......9....43......5......
+.....6.28.731..............6....2....4....3......7.1..2......9....43......5......
+.....6.284..5.....3.........21.........4...3.......5......2...1.7.3.....6.....8..
+.....6.284..5.....3.........21.........4...3.......9......2...1.7.3.....6.....8..
+.....6.29.731..............8....2....4....3......7.1..2......8....43......5......
+.....6.3....2...4..7.5........82.1..9.3......4............937...2....5...........
+.....6.3...14.....5.....7..4..17.......5....6.......8.26..3..........1...3.......
+.....6.3...5...1...1.4........1..7..3........2............23..6.84...5......9....
+.....6.387.1.............5....26.4..58..........4.....2.....7...3...8.......5....
+.....6.413.5..................3..25..1.............3..2.....6.8...241.......7....
+.....6.5..7....2....81.....3...54.........8.1......7..54.....6.....2.......8.....
+.....6.5.1.....4...............72..63..1.......4....8....4..3..29........6..8....
+.....6.521.78.....9.........5..4..3....7..............4.....7......35......9..1..
+.....6.714......5..3........2....3..5....7......4........23.8..7.1..........8....
+.....6.72.831..............7....9....4....3......8.1..2......9....43......5......
+.....6.72.831..............8....2....4....3......8.1..2......6....43......5......
+.....6.74.81...............63....5.....71....2..4...........13.4..2...........8..
+.....6.8..2.4......1.......6..3.5..18.....2........7..9......4....71........2....
+.....6.813...5................57.2...1.............5..5.....37....1.8..42........
+.....6.813...5................73.2...1.............5..5.....37....1.8..42........
+.....6.814...3................74.3...1.............2..3.....47....1.8..52........
+.....6.8173..............9...9..1...2.....3.....9......7.43.5....1..........2....
+.....6.9.7...1...........3.2..5..7.....9.3....1.........924..........16.......8..
+.....61........8.4.2.......1.3......5...3........2.4...7.....63...8...5....1.....
+.....61........8.5.3.......1.4......2...4........3.5...7.....64...8...2....2.....
+.....61....2....7.............72..8.63....5...9.......1..2........48..........6.3
+.....61....2....8.............72..4.63....5...9.......1..2........47..........6.3
+.....61....4....7.............74..8.63....5...9.......1..2........48..........6.3
+.....61....4....8.............74..2.63....5...8.......1..2........47..........6.3
+.....61....7....8.............74..2.63....5...8.......1..2........47..........6.3
+.....61.378.2...........4..5...13....2.....4.............94..8.6.1...............
+.....61.74..3......5....8..3..5...4.2....7.......1.....71.........42.............
+.....617.5.4.3..........9.....85.....7.4......1............7.8.8.......42........
+.....62.....71...........5.6.8....1..4.2.........3.......5..4.27.....6..1........
+.....62....3......1...............14.6.....7..5..3....9..41.......8..5........62.
+.....62....3.8.....1.......7..3....52.....6......4..1....1...436.............2...
+.....62...8......3...1.....2.6..4.......5..9.1.........7.38..........15.......6..
+.....62...8..7............12....16...5.....8....4.....6.1...3.....85..4..........
+.....62...8..7............12....16...5.....8....4.....7.1...3.....85..4..........
+.....62..5...3.....1........8.1...4.2...5.6..............4.8.1.6..7.....3........
+.....62..7..3............4..2....5.....84......1..........251..36.......4......8.
+.....62.13...4..............26...5...1.3.........8..4.8..7...3......26...........
+.....62.3..17......5....8..2...8.6.....3......7..........5...1.4.8......6........
+.....62.7.1....5......4....2..5.7..........186...........18..3.5..3..............
+.....62.7.1.5.......3...4...5.....1.....92...7..........43........81....2........
+.....62.84...7....5............5..3..8....6............2.8..1.....3...5.7......4.
+.....623.7.1............9..4.......1.....3......2......3.17........4...8.2.....5.
+.....624.75.1...............4....3......2.......5.........43.6.5.1.....78........
+.....625...1............7...8.61.....2....4.....3.....9...74...5......31.........
+.....63...1.5.....7...........2...51.5.....4.3........6.3...7.....41....8........
+.....63...4.1.....7......2.2...8.......3..4..........1.81...5......72.6..........
+.....63..6...4..........27....3..1.25....8...4............5..4..3.7......1.......
+.....63..9......8.1...........97..........6........5.....12..7..3.5....2.64......
+.....63..9......8.1...........97..........6........5.....18..7..3.5....2.64......
+.....63.17.82.....5...........72.4...3....6...........4...35..........8........7.
+.....63.7....7.2..1...........14..8.32..................45...1..7...2.........6..
+.....635..17.......4.......9...8.6........2.....1........45..7.3....2...........1
+.....639..17.......4.......5...8.6........2.....1........45..7.3....2...........1
+.....64.....3.....8..........64..3......7..2........8....5..6.128..1....7........
+.....64....74......2......9...2..8..35.......9..........8...61....53........9....
+.....64...3....5......1.....4.6.........8..7.........1...5..39.7.12.....8........
+.....64...5..2.....7.......1.....37....58..........1.....7...256.3.............6.
+.....64.3...71..............5....27.....83..........1....2..15.3.4......6........
+.....64.3...71..............5....27.....83..........1....2..15.4.3......6........
+.....65..7..4.....1..............85.4..7...........6.....13...7.8....2...5.6.....
+.....65..8......2.3..4.........82.6...4...7...1..........51.4..2...........9.....
+.....65..8......2.3..4.........82.6...4...7...1..........71.4..2...........5.....
+.....65..8..4.....1..............95.4..8...........6.....13...8.9....2...5.7.....
+.....653.8..47....1.........2...4....5.....8....1...4.....5.2.....8...........6..
+.....67...21.......3.......7.....4........3.7...1........5...82...24..1.5........
+.....67...5..8.....1..........1...5.4......2.8........3.8...6.....4..3.....52....
+.....67..2...4..........1..9...2..5....7..6............571........3...2..8.....4.
+.....67..4.......8....1....8..3............54......21..12...6.....4...3..7.......
+.....67..8..1.....2.......34....5.1.....3..............3....56....42.....7....1..
+.....672..89..........4....4...3.2........1.....9.....3....4.5....1....8.......9.
+.....672..89..........4....6...3.2........1.....9.....3....4.5....1....8.......9.
+.....675..81.........2........91....7.....6...........4...83...5......91.6.......
+.....68..5......2..4..7....8.6...5......1.......4.......85.3....9.....47.........
+.....68..7..2.....1.........3.61...........4.........2.925.........4.17.......3..
+.....68.32...4.............6..5..12........4....3......38.....9...72.....9.......
+.....682.4..7.......1......3..5...7..6....2......4.....8...2...5.......4....1....
+.....687.31...........2....5..1....32.............8.....8...26.4..35.............
+.....687.4...2....1.......9....3.6..3..4.................1....4.7.....2..6...8...
+.....7..1..83......6....5..1...5.4.....6..2.........6.....68.4..2.......5........
+.....7..1.3.8..............1.2.6.......5..84.7........3......8..6....3......21...
+.....7..1.36.......2..4....4...8..........25....6..3.....3.2...7......4....5.....
+.....7..1.8.3..............1.2.4.......5..84.7........56....3......12.6..........
+.....7..1.8.3..............1.2.4.......5..84.7........56....3......21.6..........
+.....7..3..1.....5.2..6....46.....8.3..5........1.........4.76.......2..5........
+.....7..6.9....7.....3.........958..3.2......4........67....1.....24..3..........
+.....7.1....43....3............5.4.82.....6..1...9.....4.1......8....7.....2.....
+.....7.1...2.4....3.........1..6..........8.38.....9.....3...529..8......7.......
+.....7.1..4..8....9..........6.4.7...2.5......1.......5.....8.43....1......2.....
+.....7.1..4..8....9..........6.4.8...2.5......1.......5.....4.83....1......2.....
+.....7.1.4...3..............194.........6.3.2..7......86.2........5..4.......1...
+.....7.1.6..4......3..........2..3.81..5.......9...4.....31.....8....7......9....
+.....7.16.5.2................2.4.5.......6.8..3..1.......7..2..6.4......1........
+.....7.2.4...5................1..5.4.786...........3..5..41.....2.....7...6......
+.....7.2.5.....6......1......5....143..6........8......1......72...4.......5..3..
+.....7.241.5.6..............2.8.4......2..1........9..3...1.5...7.......8........
+.....7.3.....9.8...1...........8..7.6......5....1.....7..2.5......6..1....4...9..
+.....7.3...1...6...4.5........1..8..3........2............23..7.65...4......9....
+.....7.3...5...6...1.4........1..8..3........2............23..7.64...5......9....
+.....7.3..1.......6........5..21..........54....8.........8.1.24.3..6...7........
+.....7.3..1.......6........5..21..........64....8.........8.1.24.3..5...7........
+.....7.342..6............1..6.2..8....1..........5....82....6.......19......3....
+.....7.48.1..............9....26.5..3..1.........5.......3..2....5...1..9....4...
+.....7.5.6.....8.....3.........9.7.2.35.......4.......8...6.......9....47......3.
+.....7.51..64...............9..3.6...2..1.........5.3....8..2..3..7.....1........
+.....7.5286..................24.5.........81..4..........28.6..3...1......5......
+.....7.6..5....2...3.8.........253.16.....5..9........4......7.....3.......1.....
+.....7.61.5.2................2.4.5.......6.8..3..1.......7..2..6.4......1........
+.....7.623.18.....9.........6..5..4....1..............5.....3......46......9..1..
+.....7.8..5.1......2......4.3..56...4......7....8.........2.5..7.....1..8........
+.....7.834.1...............37..6.......2..14.5.........3......7....4.5.....8.....
+.....7.84263...............6....4...5.....3.....8........15.2....1.3.....4.......
+.....7.9...1.........2.....84...2.........6.1......3.....61.5...9.....8.2...3....
+.....71........2.5.3.......1.4......6...4........3.5...8.....74...1...6....2.....
+.....71......23....5......82.3.........6..8..4.........8.1..5......6..3....4.....
+.....71...3..5............2......53.6..3.....2.........71....5....62.4.....8.....
+.....71...8..4......2.............386....5......2.........3.62..7....5..5..8.....
+.....71..42........3.6......6..5..4.2....1.........5..7.1.........4...2.....8....
+.....71..5...3............4.7.9....8.3.....2...1......2..4...5....1..6........3..
+.....71..62........3.5......5..4..3.2....1.........4..7.1.........3...2.....8....
+.....71..62........3.8......5..4..3.2....1.........4..7.1.........3...2.....5....
+.....71..62........3.8......5..4..3.2....1.........4..7.1.........3...2.....6....
+.....71..62........4.3......6..5..4.3....1.........5..7.1.........4...2.....8....
+.....71..62........4.3......6..5..4.3....1.........5..7.1.........4...6.....8....
+.....71..62........4.8......6..5..4.3....1.........5..7.1.........4...6.....9....
+.....71.2.84......6..........5...74..3.2.1...............53..8.1............4....
+.....713.4..6..............5..4...........81....2........54...6.81...7......2....
+.....72...83..........1....2..6...8.75..........3.....4.....7........4.1..68.....
+.....72..6...3.....1........9.1...4.5...6.7..............4.9.1.7..8.....3........
+.....72.6.3....4...5.......2..4........3...5........1.6.....8......13......57....
+.....72.65..4...........8.....95..3...2.....7.1.......4.....15.....62............
+.....723..5........4.......2.....17....4.........2.......54...87.1...3.....6.....
+.....723..5........4.......2.....17....4.........9.......54...87.1...3.....6.....
+.....724.3..6.....1...........52...3.4..9...........6....1..8...7....4.....3.....
+.....728.65.3.....4........32..6.......2...7.........1....4.6...7.........1......
+.....73...2........1.......7..34....4....6..........1.5.6...4.....21...9...8.....
+.....73...2........1.......7..43....4....6..........1.5.6...4.....21...9...8.....
+.....73...45.......2.............52.1....8.........6.....54...17..6.........2..5.
+.....73...65...........9...7..4...1.2............5.....14.6.......3..2.7......8..
+.....73..5.......2....4....17.....4..3.2.........6..9.2..5.......6...4.....8.....
+.....735..1....6..8.........6.1....52...............4.4.....27....31.......6.....
+.....736.8..5.....2.........6.4..7..5..2...............3..1..........4.5.......28
+.....74...6.1......2.3.....4...2............1.......5.....5.26.3.14...........8..
+.....74..56.......1.........2.16..........85.....3....3......16..8..4......7.....
+.....74.8.135...............6.1...3.4.....7...2.......8...4.2..5...............1.
+.....74.8.136...............6.1...3.4.....7...2.......8...4.2..5...............1.
+.....746...35......1.......7..6...2.....1............865.4...........8.3......1..
+.....76....4.5....1........6..3......7....5......8.2....5....83.2...6......1.....
+.....76.914.......8.....7...2.41....7.53..................8..1...3..6............
+.....763.81..........4.....2..3...7....91.............6...85.....5...9.1.........
+.....78...25..........1....6.....7.8..35...........1..74.....6....3...5....2.....
+.....78.1..4.3.....2.......9..1.8.........32....5.....78...........4..5.1........
+.....78.24.1..........9....5..46.....8....3.....5......3...8...6......4....1.....
+.....78.32...4.............6..5..12........4....3......38.....9...65.....9.......
+.....782..1....5.....2........5..1.37....4...2........6...9..7....13.............
+.....784..2.5..............1.....78....2......3.......8.7...1.....32...5...6.....
+.....79...1.....3..4.......9.2.8....7.......1...6...4....31....5.....2.....4.....
+.....79...1.....3..4.......9.2.8....7.......1...6...4....31....8.....2.....4.....
+.....79.24.1..........5....5..46.....9....3.....8......3...9...6......4....1.....
+.....792.6.1..........2.....3.5...9....18....7...........6..4.1.9...4............
+.....793.6.1..........2.....2.5...9....18....7...........6..4.1.9...4............
+.....793.6.1..........2.....3.5...9....18....7...........6..4.1.5...4............
+.....795.4.1..........2.....3.2...9....48....7...........1..6.4.9...6............
+.....8..21...6...........7.4....51.....2............4....13.6...8....3...2.7.....
+.....8..23...1...........7.6....51.....2............9....43.6...8....3...2.7.....
+.....8..26...1...........7.4....51.....2............6....43.6...8....4...2.7.....
+.....8..26...1...........7.4....51.....2............9....43.6...8....4...2.7.....
+.....8..36......5.....1....4..6....7......8...5..........4..62..78...1.....5.....
+.....8..4.3.....7.....2....2.8...5.....36..1.4...........6..1...9.7...........2..
+.....8..4.3.....9.....2....2.8...5.....36..1.4...........7..1...9.6...........2..
+.....8..6.4.....7.....3....3.8...5.....46..1.2...........5..2...9.7...........8..
+.....8.1..2..3.....4......76....1......6..4.........7....54.2..1..7.....8........
+.....8.1..4........2..........4..2.79.....3........4..1.9....8.6..5........27....
+.....8.1..4....5...8..2.......38.4..2.......31...........4....76......2....5.....
+.....8.1..4..3....5..........81.7....9....3.4.........2.1....7.....4.9.....2.....
+.....8.1..6..3.....4......52....1......6..4.........3....54.2..5..7.....1........
+.....8.1.1......3.....2....6..1.4....8.6......5...........7.8.54..3...........2..
+.....8.137...5...........6.4.....25.2...........1......1.6........3..7......2.4..
+.....8.2...6...3....4......7.....18....65........4....28.3......1......6......5..
+.....8.2..5..3.....1.......2...6..4.......3.....5........1.75..8.....6..9..2.....
+.....8.2..5..3.....1.......2...6..4.......3.....5........1.75..9.....6..8..2.....
+.....8.2..9..3...........4..6...53..8..2.............12..47.......3..9........5..
+.....8.216.9...............5.....64....1.2.......3.......67.5..4..5......2.......
+.....8.246.1..................76.3...8......7...2.........5.16.74.......3........
+.....8.25...5...6.1............4.7...1..3.....65......4.....3.....6..1....7......
+.....8.3..1.....5..6.1.........49.........1......3.......2..6.84.....7..9.3......
+.....8.3..2....1...4...5......64.2..5.......63........7......5....27.......1.....
+.....8.3..4.5.........2.......4..2.73.......91............3.81...96......7.......
+.....8.3..6..4......1.........17.......2..5..3......4.84...9.........7.1......2..
+.....8.3.9.....5......6.......7.58...62............1......7..245..9............6.
+.....8.315.2.6...........9....54.7...1..........2.....7..3.1...4.....2...........
+.....8.4........2.7.........485........9..7...6.......3.....2.8...14........6.5..
+.....8.45...4...6.1........3.....1...6.5...........2...54........8.7........2.7..
+.....8.45...5...6.1........3.....2...8.4...........1...45........1.2........3.7..
+.....8.5..7....3...4..7....1......8........2....3........45.7..8.....1..2..6.....
+.....8.5.6.....3..1.........5..9..82...1............4..8..4.......9..6.....3..1..
+.....8.51.73......6...........27.3..54...........4....1..6.5.........72..........
+.....8.54.21...............5...74....6....1..7...........16.3..4......7....2.....
+.....8.6..7..2.....4....1...1.7.........9...25......8.6....3......4..7..8........
+.....8.65723................4....3.....6.5...8...........14.2....7.3....5........
+.....8.673...1...........4.67.2.........5.8...4.......1..7.......5...1.....4.....
+.....8.7.....61...9........5..42.3..........1...7......16...2.....2...5..8.......
+.....8.7.3..1.............25....41.....67....1.........7..2..4....5..3...8.......
+.....81........3.2.5.6.........2.4.....57.....8.......3.4..1......7...5.2........
+.....81.....1.7...2.........7.....3.....4..5..1.......5.3.2.......6..7.84........
+.....81..2.......5...7.....5...6.4.....3...8..1........8.....7....62....4...5....
+.....81.32.....6..............21.5....4....2..8..7.......6.4.8.13................
+.....81.562...............8...63..4..1..........2.........51...4.....7..3......6.
+.....81.93.....8..5........2..56.....8....4.....3........2...6....7...5..1.......
+.....82....56......1..........51...334....6......9.......3...1.7....2...2........
+.....82....9....4....6.....61.3...........97.......4..2..54....8.......1....9....
+.....82...41.......7..3....8.....6.3...1............7....4...159..7...........3..
+.....82..1..........5......6..15.......6..7........38..8.3.2.......4...1.7.......
+.....82..4.3......5.........8....7.1....4.......5......7..61.........59....3...4.
+.....82..6..3......1..............143..2............9.5.8...7..2.....5.....19....
+.....82.56..94.................25..........7.1.........3.6...4..28...3....5......
+.....82.94..6.....1.........9...27.........4.....1.....2.5.......73.........4..5.
+.....824..6.5..............9..8.3....1......5....2..6.2.....3.....61....8........
+.....824.3..7.....1...........65...3.4..2...........7....1..9...8....4.....3.....
+.....825.....3..........4.....5..64..7.1......3...........7..834..2.....5........
+.....825...67.....3.....4..75.....1.....4........3.....84...6.....1...7..........
+.....826.....3..........4.....6..74..3.1......5...........5..134..2.....6........
+.....829.75.3.....4........62..5.......2...8.........1....4.5...8.........1......
+.....83........1.79...4........2..4..36.......1.......2..3...5....7..6.....1.....
+.....83........5.19...4........2..4..37.......5.......2..3...6....5..7.....1.....
+.....83........5.19...4........2..4..57.......3.......2..3...6....5..7.....1.....
+.....83........5.19...4........9..4..57.......3.......2..3...6....5..7.....1.....
+.....83...6.....7.....1....851.........4...6............3...1.24..6........2..5..
+.....83..6..2......1..............147..5............9.3.8...6..2.....5.....19....
+.....83..7..4......1..............154..6............9.3.8...2..2.....6.....19....
+.....83.2.61............5..3...52..........6.7...........61..7.24..........9.....
+.....84....6.5....7........1..7..2...7...........6.......2...8634...1..........5.
+.....84..7...3......5......2......73...4...2..3.........65..1...4....8......7....
+.....84.297..5....1.........8....3.....92.............6......29...1.7..........5.
+.....841.92................1.4...5....637.......2......3....6.2.....1.......9....
+.....845..1...3.........6.....2..1..5.3......8............7..834..6.........2....
+.....853..1.4............8.....2.6.15.....7...6.......8......4.3...1.......6.....
+.....87..1...9..........3.8...12..9..37...............2..6...4....8.35...........
+.....87..2...1....1.4.........26.3...5....6..8.........3.6........4...2........1.
+.....871.54.3..............6......54....1.6..3.........17...2.....5....6.........
+.....873.1...4..........2.....16...4..72.....5........41..........7..3..6........
+.....873.12.6......9.......4.75....1......2..3...........41...........82.........
+.....89...13.......6.4.....7...2..3.4.......1.......6485....2.....1..............
+.....89...3..5......1......4...7.2...8....1.....3.....7..6...3....1....4.....9...
+.....9..26...1...........7.8....51.....2............4....43.6...9....8...2.7.....
+.....9..26...1...........7.8....51.....2............6....43.6...9....8...2.7.....
+.....9..4.4.....8.....3....3.9...5.....65..1.2...........7..2...6.8...........9..
+.....9.1..4....5...8..2.......38.4..2.......31...........5....76......2....4.....
+.....9.1..5..3...........8.4..1...6..7...62...........1..8........4..3......7.5..
+.....9.1.2...8...........3.6..1..2.....7.3.........8......4.67...35......1.......
+.....9.1.2...8...........3.7..1..2.....7.3.........8......4.67...35......1.......
+.....9.1.7.....6...2..3.....38.........4...6...2....5.......8.24..5...........3..
+.....9.2..1....7..3..5......6..3...........49.......5.8...1.3....54...........1..
+.....9.2..1..3...........4..7...65..9..2.............12..48.......7..3........6..
+.....9.2154.6...............3.4..6...9.....3.....1....1.....4..8.....7....2......
+.....9.3........147..8.....2.....8......7.1.......4....43.5.......6..2...9.......
+.....9.3..1.......6........5..21..........64....8.........8.1.24.3..6...7........
+.....9.3..48................2.48....5.7....9....1........26.4.81..............2..
+.....9.3..8.....6..7..5.......8..1.4......8.......6...6.32.........1.5..9........
+.....9.4..5.2...................423..1..7.5..............6..7.13.4.8....9........
+.....9.4..6.5...................423..1..5.6..............7..5.13.4.8....9........
+.....9.4..7.....5..6..1.......7..1.2......7.......5...5.32.........8.4..9........
+.....9.4.1...6....7.....5...3.....945..1.........2.....9.4........8.3.........1..
+.....9.4.7...6....1.....5...3.....945..1.........2.....9.4........8.3.........1..
+.....9.5..4..1...........2..3....1.7...5..4.....6.....2.8....6.5..2...........3..
+.....9.5..4..1...........2..3....1.7...6..4.....5.....2.8....6.5..2...........3..
+.....9.54.21...............5...84....6....1..7...........16.3..4......8....2.....
+.....9.6.5.....4...3..1......28.......42.............115..3..........27.......8..
+.....9.851..6.....7......2.4..37.....2......9...1......8..2..........3........6..
+.....91........3.2.5.7.........2.4.....58.....9.......3.4..6......8...5.2........
+.....91..5..7..............3..58........2.6........4.9...1...3..9.....7..64......
+.....92..3...8....1.........2....6.....5...1....3........13..5..96...4.....7.....
+.....92..8..7.....3...............34.9..1....6......8..1....9.....36.....2.8.....
+.....92.71.8......5.....6...2...6.......4.3.........1....18....36..........5.....
+.....93...4.1.....6......2.2...7.......5..4..........1.81...5......62.3..........
+.....93..4...8..........2...2.6....1.31..........5..4.6..1...7.......8.....3.....
+.....93..8......7.1...........86..........1........9.....12..6..3.5....2.94......
+.....93..8......7.1...........86..........1........9.....17..6..3.5....2.94......
+.....93..8..7.....4...............45.9..1....6......8..2....9.....46.....3.8.....
+.....94...3....5......1.....4.6.........8..7.........1...5..39.7.12.....8........
+.....94..67.......1.........2.16..........95.....3....3......16..9..4......8.....
+.....94.13.....9..6........2..67.....9....5.....3........8...7....2...6..1.......
+.....94.8.135...............6.1...3.4.....7...2.......8...4.2..5...............1.
+.....945..71..................37...1.2..6....4......8.5..8.3.........7..2........
+.....95..8...3...........1.6.1.....33...........5......5.1..4...7.2.........6.7..
+.....95.32.....4..7.........3....6.....12.......97.....5..4.......2...7........1.
+.....96..7..2.....1.........3.61...........4.........2.825.........4.17.......9..
+.....96.32.....4..8.........3....7.....12.......98.....6..4.......5...8........1.
+.....967.4..5.....2...........84.1...9.7...............7...6.9.8.......4....2....
+.....97..3...8....1.........2....5.....4...1....3........13..4..95...2.....6.....
+.....97..4.......8....1....8..3............54......21..12...6.....4...3..9.......
+.....98..2......1.4..6........43.....8.7......1............165.3.......4....2....
+.....98.42...7....1........7.....32..4.1...........7...6.2...8....5.........3....
+.....98.42...7....1........7.....32..4.1...........7...6.2...9....5.........3....
+....1...2.3..4..........7.....5..63.2..8.....1.........5.7............41......26.
+....1...2.4.....3.............7.3.8.2.9......1........6.....2.1...4..5...7.3.....
+....1...2.4....6...5.......1..7...8....5..4..2........3.......1.9.4..........8.3.
+....1...2.8....4...3..........5.73..1......6.2........7.......1.5.4........3...8.
+....1...25.....3...7..9........2..1.3..6.....6.........8...49...2.5........3.....
+....1...25...3...........7....2...4.3.....6...1.........27.6.........3.8...1..5..
+....1...26.....7..............7..6...1.2......3.....4.7..6.8...4.....5.1.......3.
+....1...29......6.7.........31...8.....4...7..2..........7.94..5.......1...6.....
+....1...29.....7..............9..8...1.2......3.....4.7..6.8...4.....5.1.......3.
+....1...36......4.2...........2.65...8.....71...4.....5..6..2...3....7...........
+....1...4......86.2........9..2....53..8.9..........1..54.........6..9...1.......
+....1...4......86.8........9..2....53..8.9..........1..54.........4..9...1.......
+....1...4.7..2....3......8....5..2....1......4.........9....15....3..6.....4.8...
+....1...47......2.3........58....2.....7...3..1............48.16.23..............
+....1...5.......3........9..2.8..4...7....1.6..3.........2.4...5..3.....1.....6..
+....1...5.4....2..............6.23..1.....8....94.....5..7.....3......9..2.....1.
+....1...5.4.8...........2..1...5..8.6...2.....7.....4....4.39..5...........7.....
+....1...523.......7.....8.....2...39..1....6.8..7.......4.5.....2....3...........
+....1...56......2....3.....32.4........6..1..7.........51..2.........37.....8....
+....1...6.3.....9..7..........7...4.6.......52........14....3.....6.28.....5.....
+....1...6.5.....3.....2.......4..75.6.1............3.....5.7...8..3.....1.......9
+....1...64.....5...3........9.3.2......6..8........1..1......2.8.6.........7...9.
+....1...68......4.3.....2..7..3.2..........65...8........4..3...51.......6.......
+....1...69......4.3.....2..7..3.2..........65...8........4..3...51.......6.......
+....1...7.2....3...4.5.....6...7..........52..8..........2..64.7..3.....1........
+....1...7.2....5...........6.....23.4..5.....7.1.......8.2.5..........14...3.....
+....1...7.2....5...........6.....23.7..5.....4.1.......8.2.5..........14...3.....
+....1...72...4...........6..7.8...9..68............2..1.....3.....7.9...3..6.....
+....1...78......2.6........32.6.......5...4.1...8......41.........3...6.......2..
+....1...8..3...6...9.4.......73.9...6......1......5....2....3..1...4....8........
+....1...8..5....4..2.......61.....8....5.2......7.....8..4..7..3.......1......2..
+....1...8..9...5..2...........9...4........136...........6.87...1....3...4.2.....
+....1...84.....5...........7..4..6..3..2.7.........1.....5...7..68.......1.....2.
+....1...88......4............36..1.54..9...........2.....7.3.6..51.......2.......
+....1...9.7..2....3......4....5..2....1......9.........8....15....3..6.....4.9...
+....1...9.72.............4.9.1....6....7.28.....4........3..2..36.......1........
+....1...9.72.............4.9.1....6....7.28.....4........3..2..56.......1........
+....1...95........4...........3..54..8....2...3..7....2..5.6..........87...4.....
+....1..2.......3..5.........7.....1..2.3.............81.7...2.....5.84....64.....
+....1..2.....2.3..46..........6.8......4....7..1......3.....15..4.7...........2..
+....1..2.....2.3..47..........7.9......4....8..1......3.....15..6.8...........2..
+....1..2.....8.7..3.9.............96.4..............5..8...41..5..9........5..4..
+....1..2...6...7...9..........6..2..1.....3...4...9...2......1....9...4....5....8
+....1..2...6...8...5.......41.....7....6.5.4....3.....1.....3..7..2...........6..
+....1..2..3....5...8.......246.........7..8..1.....3..4......6....5.3......8.....
+....1..2..7....4...........1.27........9..6..8.........6.4.3....3.....8.5.......1
+....1..2..8....4...........1.27........4..6..9.........6.8.4....3.....9.5.......1
+....1..2..8....7..4........5......19.7.6.2............1.9.........8..2....53.....
+....1..2.3..7.............6...16...45.....3......2.......3..85..12............7..
+....1..2.4.....6..5.........82.....3...6..4............3.....126..4.7......5.....
+....1..2.4.....6..5.........82.....3...6..4............3.....126..7.4......5.....
+....1..2.4.....6..5.........82.....3...7..4............3.....126..4.7......5.....
+....1..2.4.....7..5.........82.....3...7..4............3.....126..4.7......5.....
+....1..2.4.....8..6.........52.....1...7..4............3.....157..4.8......6.....
+....1..2.4.....8..6.........52.....1...8..4............3.....157..4.8......6.....
+....1..2.5.....6..4.........82.....3...6..4............3.....126..7.4......5.....
+....1..2.5.....6..4.........82.....3...7..4............3.....126..4.7......5.....
+....1..2.6.....8..4.........52.....1...7..4............3.....157..4.8......6.....
+....1..2.6.....8..4.........52.....1...7..4............3.....157..8.4......6.....
+....1..2.7.3......5....3...4.....5.7...62..........3...6.2...8..1............5...
+....1..2.7.3......5....3...4.....5.7...68..........3...6.2...8..1............5...
+....1..2.8..5...........7.....2...58.37.............4.....376..5..4...........1..
+....1..2.9..4............5.4.....9......8.3......2....52.1......8.....7....9..6..
+....1..235.7..................5.4.6..3.7......1.......4..6..5......3.2..8........
+....1..24.8..........6......3.8..5..4......1..........76....8.....5..3..2...4....
+....1..27.41...............6..4.53..2...........8........3...6..5....4..7...2....
+....1..27.41...............6..4.53..2...........9........3...8..5....4..7...2....
+....1..3..2....4.......8......2.6...3......5........1.1..75.....6.4..2........8..
+....1..3..4....7.......5...1.3.6.......7..4..........8.5.4..2..6......1....2.....
+....1..3..8........2..........5..2.41.....8..3.9......6......7..7.2........8.5...
+....1..3.2.....5..8..9......14.3..........2...6.......9..8.5..........43...2.....
+....1..3.2..4............9....2..8.4.3........6..........6.37..8.1...5......9....
+....1..3.2.7..........4.......8.92.....7..5...1.............6138..2............4.
+....1..3.4.8..........5.......8.92.....7..4...1.............6137..4............5.
+....1..3.5...8..........2...6.75...8.23..................4.3.6....2..9..1........
+....1..3.5.7........8......41....6.....8....53...........5.72...4.....1....2.....
+....1..3.64.........7......5......1....7.2.....96........4..7..1.....2..38.......
+....1..3.7.....6..8..9......15.4..........8...3.......9..8.6..........45...2.....
+....1..38.597..............8...3..4.3..............5...6.5.29.....6.....4........
+....1..4...2...3..57..........7..2..43.......1...........5....8...2.3...6......1.
+....1..4...3...6...2.......81....4.....3.2......7.......46....75......1.........2
+....1..4..3......5.2..6.......3.72..4..5.....1............4..8.6.....7.....2.....
+....1..4.2.....5..3.7.......8......6...2..3...4.7.....5..3.2..........1.........8
+....1..4.3..6...........9..6.....8.1...5.4.......2.....41....8....3..7...2.......
+....1..4.53.............2..2..5.7.....8....1........3..14.........7..6.....2..5..
+....1..4.53.............2..2..5.9.....8....1........3..14.........7..6.....2..5..
+....1..4.8.....6......9.....5.6..7.....8..1....2.........3...2.1......9.79.......
+....1..4.9...5..........8...4.8.2...........1.6..........2..46.1..3.....5.....7..
+....1..439..6.5..............87..6...14.......3.......2.....5.....43.......8.....
+....1..48..6....2.7.........4.6.........3.1...1.......5..2.6...3.....5.....4.....
+....1..48.6..............1..7.3..6..4......5.......7.....6.73..8.4.........2.....
+....1..48.725..............8..14....5.....73...........6.7..2..4.........3.......
+....1..49.826..............1..54....6.....83...........7.8..2..4.........3.......
+....1..49.826..............9..54....6.....83...........7.8..2..4.........3.......
+....1..4937...8............6..5..3......4....1..........9....2..4.3......2....8..
+....1..5...2...7..43..........3..2..18.......5...........2....8...4.3...6......1.
+....1..5..2......3.48.........4..1..7......6....3........2..4..6.....8..5....7...
+....1..5..4....7.....2.....1.5.2....7....64..3.........8.4.7...........1.......3.
+....1..5..6......2.3...7......68.3..1.....7..5........2..5...4.......1.....3.....
+....1..5..7....2..3........6.....3.24..5.......9.......5.3.8.....1....4....2.....
+....1..5.2.....3..6...........2.6..8.7.....1....3........7..2...41......35.......
+....1..5.2.....3..8...........2.6..8.7.....1....3........7..2...41......35.......
+....1..5.2.....4..8...........2.6..8.7.....1....4........7..2...13......45.......
+....1..5.2.....4..9...........2.6..8.7.....1....4........6..2...13......45.......
+....1..5.2.....6........2...13.........4.9....8.7.....6......199..2.............8
+....1..5.27........4....8..6......31...2.7......4.....5..7..4..1.3...............
+....1..5.3......4..9......8..2...1..5..4...........9....56.2...71..........3.....
+....1..548.................65.4..........273..........21....8..7.....3.....35....
+....1..548.................65.4..........293..........21....8..7.....3.....35....
+....1..5672........4..........2.4.3.6.1.........8...........2.1...4..8......5....
+....1..58.6...3.............7....64....82..........3.....6..73.8..5.....1........
+....1..6.....83...7.....5.........816..7........4........2..6....1.4.....4....7..
+....1..6.....98...5.........1....8.4.2.6........3..9..6..4.....3......5.......1..
+....1..6...3...2..4...........4...15.2.6...........4.8...3..7..16.......5........
+....1..6..3....7....2.........2.3..44......1....7.....654.........8..2..1........
+....1..6..5.....9...........3.5.6.........1.2...7..4..4.8...2..6..3.....1........
+....1..6..7......2.3...8......79.3..1.....8..6........4..6...5.......1.....3.....
+....1..6..7......84..........64.7....3.....1....5..2....1...3.....7....42........
+....1..6..84.......2.......5......2..3.4........8.....7.....3.4...6..8..1....5...
+....1..6.2.....5..7...........2.83..41........6..........5..2..5..3......4.....1.
+....1..6.2...8...........7314....8...5.3........7.....673............1.....2.....
+....1..6.3.....7..2........7..3......4.....1....2......18....5....9..2...6....3..
+....1..6.3.....8..7.........62.....7.1...8......5..9..84.9.............2.......1.
+....1..6.31.......4.....5....6.3..........4.2......7...37....8....4.2......5.....
+....1..6.37.........2.......3.2.8...4......1....3.....65.......1.....8.....7..2..
+....1..6.37.......5.......44..5............1.......8...26..8......2..3.5......1..
+....1..6.4.....3...5.8........2.37..6...4.....1.........75...183.................
+....1..6.5.....3..4...........5.74...8.....1....3......1......236..........2..5..
+....1..6.7.....5..9...........5.7..4.3.....1....4......21.........8..3..4.6......
+....1..6.7.2......6.....4.....4..5...3.....1....2.7...31..........5..2...8.......
+....1..6.81.......7.....5....2.3..........4.7......8...36....2....4.2......8.....
+....1..632.9..................9.51.....28.....3.......5.....9...6..3.......8...4.
+....1..64.....6..72........8..5..3.....2.4...............38.2...1.....7...4......
+....1..6785........4..........5.4.3.7.1.........2...........2.1...4..5......6....
+....1..7...5...3........5....63............4.........12..5..8..14.....3..7...6...
+....1..7..21.......8....6..3.5....1.7..4........8........6..4..5....3.........8..
+....1..7..3....4...8.......1..4..2..7.9.........2..8..5......1..6.3........8.....
+....1..7..3....6....2......4..2.3....8.....1....6....51.5.........8..2..7........
+....1..7..3....6....2......4..2.3....9.....1....6....51.5.........8..2..7........
+....1..7..3....8...2..........3.8..4.6.....1.5..2.....1.4.........8..2..7........
+....1..7..4......2.......56.5.2.6...3.....9..1........8.1...4.....6........5.....
+....1..7..6......2.3...8......69.3..1.....8..7........2..5...4.......1.....3.....
+....1..7..8....3..2........1...6........3.8.....5..4.....2...19.5.8............6.
+....1..7..8....4..3...........3.9.....1....2..7.4.....6.....3.42..7.......5......
+....1..7.2......6..3.....5.8..2........3.7...1.....4....4...1...7.5...........8..
+....1..7.2.....8...5........8.2.3......7....4.......1....5..2..4.7......1...6....
+....1..7.3.....8..5.........72.....1...6..3............1.....246..3.8......5.....
+....1..7.3.....8..5.........72.....1...8..3............1.....246..3.8......5.....
+....1..7.3...5..........8...4.7.2...........1.6..........2..46.1..3.....5.....7..
+....1..7.4......6..8........2.6.7....3....1.....5..4..7.......8...2..3..1........
+....1..7.4.....6..5.........72.....1...8..4............3.....126..4.8......5.....
+....1..7.4.....8..5.........72.....1...6..4............3.....126..4.8......5.....
+....1..7.5.....6..4.........72.....1...6..4............3.....126..4.8......5.....
+....1..7.5.....6..4.........72.....1...8..4............3.....126..4.8......5.....
+....1..7.5.....8..3.........72.....1...6..3............1.....246..3.8......5.....
+....1..7.5.....8..4.........72.....1...6..4............3.....126..4.8......5.....
+....1..7.6........5...........5.2..4.9.....1....8.....37....4...1......2...6..5..
+....1..7.8......3....2......1..3......2...4.......8......4..1.73....5......6..2..
+....1..8...25...........9.....7..2.584.......5.....6..18.....3....2.9............
+....1..8...3...6...2.......81....4.....3.2......7.......64....75......1.........2
+....1..8...36...........2.....7..3.685.......6.....7..18.....4....2.3............
+....1..8..3....5...4.......1..5..2..8.9.........2..4..6......1..7.4........3.....
+....1..8..4.......5........2..5....46..7.2..........1.38........1....7.....6..2..
+....1..8..74.......5.......1.2....3.6..7........5........4.6..53.....1........2..
+....1..8.2.....3..6....8....85.3..........6...1..............147..3......9.2.....
+....1..8.4.....3..2.........16.....5...7..2..78........5.....1....2.4......3.....
+....1..8.4.....6..5.........82.....1...6..4............3.....126..7.4......5.....
+....1..8.5.....6..4.........82.....1...6..4............3.....126..7.4......5.....
+....1..8.5.....7..3.........82.....1...6..3............1.....246..7.3......5.....
+....1..8.5.....7..4.........82.....1...6..4............3.....126..7.4......5.....
+....1..8.6.3......4....3...2.....4.6...85..........3...5.2...7..1............4...
+....1..8.7.......2.....6......7....4...5..7...1.......5..29......8...16.......3..
+....1..8.7.......6.2.......4..6.2.........13....7........9..2..5.3.......18......
+....1..826..4...1.7...3.....2....5.4.1.............6.....5..4.....2.....3........
+....1..845.76..........3.9.2..7..6...8........9.......8.....3.....4.........9....
+....1..85.7.3................57........6..3..8.2......1...25....6....7........4..
+....1..8924.5.....3........4..2..5......6..1...........1..7.......3..2...9.......
+....1..8935.4.................8.25...91......7........4..6..3...2..9.............
+....1..9..34......5.8......17.....2.6..3........8........4..8.52..............4..
+....1..9..4.....3.....5.......3.7..42..4.....1............2.5...3.6.......8...1..
+....1..9.5......1........6....6.23..9..4.....1.....5...6.2..8...2.7..............
+....1..932.5......7.........3.79.......8....4......5.......1.3.4..9...........2..
+....1..935.6......2.........3.89.......7....4......6.......1.3.4..9...........2..
+....1.2......39...7......6..39............72..........2..4..1..5..8........6....3
+....1.2....3.......4.......5..9...4.2......6...1.......7.6.4......5..3..8.....1..
+....1.2....4....7..8.3.......84.7...........1......5..13..9....5.....64..........
+....1.2...9.3.....7.......5.31.4............7.......6.8.....41.9..7.5............
+....1.2..4......6.5...........5.4..78..6...........1.9.27.........4...3..1.......
+....1.2..5.......7...6.4...3..8...........64.......1.....5...83..2.3.....1.......
+....1.2..5....4....7..........8.5......7....8..1......6...2.1........42..8.3.....
+....1.2..6...4....7.3.........7...3...4...1..5..6........3...6..8..2.....1.......
+....1.2..64.......7........5..6.3..71......8...........82...1.....4...3....7.....
+....1.2..8.....4....9.........3.87...95.........2......6.....153..8............9.
+....1.2.85..............1.....9.3.7.6..5......8........2..8.......7....69......5.
+....1.2.93.5..7...8.........9.85..........63..........4....61.....3............5.
+....1.23.8..6................9...31.6..8.7.........4..75......8...23.............
+....1.3......29...5......8..7.4........5...4...1.......6....1.24..6...........9..
+....1.3....4...8...2........5.....24.....3.5....67....1.....67....2.....3........
+....1.3....8....4..2.........46.5......4..2..7.....1..5..8......1.....6.3........
+....1.3...2........9.......4...6.5.....7...2.1........6.5...4.....2.9..7...8.....
+....1.3...2.....8..6..........8.25...4.6...........1.97..2...6.3........1........
+....1.3...21.......4.......5.6...1..3..8........4..6.........49...7...8.6........
+....1.3...25.......7.....6.8..14..........57..........3.....1.4..67.2............
+....1.3...4.......7.........9.....48...7..5......3....2.1...6.....4.9.2....8.....
+....1.3...4.......7........9......78....3.5.....4......21...6.....7.9.2....8.....
+....1.3...4.6......7.5.....5...82...3......46.......7.8.1...2.....4..............
+....1.3...45.......7..........2...47....8...........8.3....46..8..5..1.....7.....
+....1.3...6.5.....4........5......62...38......1.......7.2.6.........81.......4..
+....1.3...7..4....2......8....7..5..3....8.....1.......5.....14...3..6.....2.....
+....1.3...8.....5..6..........8.25...4.6...........1.97..4...6.3........1........
+....1.3..2.4......67........81.....5...2.6......7........6...2..5....8..3........
+....1.3..4.......82........5..6....4.1.....5..3..........4.2.6..7....1.....8.....
+....1.3..4.......86........5..6....4.1.....7..3..........4.2.5..7....1.....8.....
+....1.3..4.......87........2..6....7.1.....9..3..........4.2.5..5....1.....7.....
+....1.3..4..8.....2........6.3..4......7...19......5...7..5...........48.1.......
+....1.3..5......4.6.........2....1.....4..2..4..6........5...8.23........17......
+....1.3..5......6....2........4.6.5..17.............2.....3.7.84..5...........1..
+....1.3..5......6....2........6.4.5..17.............2.....3.7.84..5...........1..
+....1.3..5......6....2........8.4.5..17.............2.....3.7.94..5...........1..
+....1.3..5......6....2........8.5.2..17.............4.....3.7.93..4...........1..
+....1.3..52................3.7.....1.6.5...2..........1.8...7.....2.6.5....4.....
+....1.3..52........6.....7.4.....13....8.6......5........6....51.9......3........
+....1.3..7.......46........5..6....7.1.....8..3..........4.2.5..8....1.....7.....
+....1.3..7.......5.......7.8..7.4...3.......1...6..2...14.........3...4..2.......
+....1.3..7.......54........5..7....4.1.....8..3..........4.2.6..6....1.....5.....
+....1.3..7.......84........2..6....4.1.....9..3..........4.2.5..5....1.....7.....
+....1.3..7.......96........4..6....7.1.....8..3..........4.2.5..8....1.....7.....
+....1.3..7.......98........5..7....8.1.....4..3..........4.2.6..6....1.....8.....
+....1.3..8..6.................8..76..3....2..4..5......1..32...5......8........4.
+....1.4......9..7.7......3..41...5.....2...8...........6....1.92..7.8............
+....1.4....2.7.....3.......17.....5....3...2....8.....6.52.....4.....8........3..
+....1.4....6...5..3.........1....97....3.2......8......9..6....8.......27......3.
+....1.4....8...3...2..5.......6.82..1...........3.....4......513..7............2.
+....1.4...2...........3....1.4.........3...2.6......5....2..73.4.....1...8.5.....
+....1.4...2...........3....1.4.........6...2.3......5....2..76.4.....1...8.5.....
+....1.4...2........6.......4..63....5.......21.....5........13......6.7..8.2.....
+....1.4...32.......8.....5.7....61...5.3.................8...3.6..5.....4.......7
+....1.4...5.7.....3........8..5.2.........14.......6...6..4..7....3....5..1......
+....1.4...52............3..4.....17...85........6........2....5.6.....8.1....3...
+....1.4...6.3......5.......1..6...5.4.8...............23.....7....5.8.......4.2..
+....1.4...6.5...........1.........822...7........3..6.4.....71..3.6........8.....
+....1.4...6.5...........1.........822...7........3..6.4.....71..3.8........6.....
+....1.4...7....2....8......4.....58..3.2.....6......1.3.1.........5.6......7.....
+....1.4...8......5..........9.6...........1.2......74....3.4.6.1.2......7..5.....
+....1.4..2.......76.8......45....1.....8...5....2........6....2.7.....1..3.......
+....1.4..2.......87........64.....5....5....7.1.....3....7.2....9....1.....8.....
+....1.4..2......5...........71.6..........58....3...2......71.683.2..............
+....1.4..27........5..8....32.7.....6..2...........8.........27.......35..1......
+....1.4..3..........7........85.4......7..3.........1.12..8.....4....56.........7
+....1.4..3......6....8......81.4...........53......7..2..3.6....7....1.....5.....
+....1.4..3......7....6......41.6...........23......8..2..3.7....8....1.....5.....
+....1.4..3......7....8......41.6...........53......2..2..3.7....7....1.....5.....
+....1.4..58........2.......1......3....8....24.8.........5.3.7.6.....1.....2.....
+....1.4..7.......82........64.....5....5....7.1.....3....7.2....9....1.....8.....
+....1.4..7......6....8......41.5...........73......5..2..7.6....6....1.....3.....
+....1.4..7...5.....84......3.....9.....8.4......6.....1...3...6...2...8......9...
+....1.4..73.........8.........3...8.1......2.34.........58.2......6..7........1..
+....1.4..8......6....5......41.5...........83......7..2..8.6....6....1.....3.....
+....1.4..8......6....9......41.5...........83......7..2..8.6....6....1.....3.....
+....1.4..8.9..................6.2.8..41...5...........3..2....6.7....1..5..9.....
+....1.4..9...5............2.3....8.....5...9..82......1.....75....9...6......2...
+....1.4.3.2.............1.....5...261.4...............76.2.....3.....8.....9...5.
+....1.4.328.5......6.......1...74..........82.........3.....7.....8...9....6.....
+....1.4.56..9....83.....2..9......1.....2.........5......6...3..28.........1.....
+....1.4.7.2.3......6......8.3.2.....5.....1...........4...5....1......8....6...2.
+....1.43.26.3.......5.........5.4...8......7....6...........2.67...8............4
+....1.45...23......8....7.....8...3276................5...7.6.......1.....3......
+....1.48.5......2..9.......31....7....45..............6..2.5....3....1.....4.....
+....1.5...2.....7......8......2.6...5.....4........1...6.3...2.1...4.......7...8.
+....1.5...3.....6.2........4..6...2...1......9.........7.3....8...2..4....5...1..
+....1.5...3.....7.4...........4..1.6.475.............8...3...2.1.5......6........
+....1.5...36.......4..........3.2..61......38.........7.....25....1..4.....6.....
+....1.5...4.....8.....9....6..4...3......2.....1......82.7........3..1.6......9..
+....1.5...42.......9.....6.8....73...6.4.................9...4.7..6.....5.......1
+....1.5...42.......9.....6.8....73...6.4.................9...4.7..6.....5.......8
+....1.5...63.................8....43....29......6.....12....7.....3..2..9..4.....
+....1.5...7......8.9.......62.....7....85.............1..7.2...5.4...9.....3.....
+....1.5...7.....6.3.........2.6.4.....1...2...5.3.....7.8....3....5.....9........
+....1.5...7.6...........1.........923...8........4..7.5.....81..4.7........9.....
+....1.5...7.6...........1.........923...8........4..7.5.....81..4.9........7.....
+....1.5...9.....7..........4..7...2...19.....8.3.......5.6.2...3.....1........8..
+....1.5...9.8......7....6..4..3....21.6......5...............23.....6.7.....5....
+....1.5..2.......3..........61...4.....2.7......8.....5..3..6..7......2..4..5....
+....1.5..2......3.7.8.......6...41..3...........7......5....6...4.3........2...7.
+....1.5..2......4.....7.......4...2....2.6...73..........8..1........3.56.4......
+....1.5..2......4.9........4..2...7..1.....3..8..........9.2......6..8...3....1..
+....1.5..2......7...........2.3...8..1.6......49......6..7.3...5.....1........4..
+....1.5..2......8...........14...3...3.6........2.8...5..7............63......1.4
+....1.5..2......8...........2.3...7..1.6......49......6..7.3...5.....1........4..
+....1.5..2.7...............54....1....62........7.....31......4...6...2..5...8...
+....1.5..3.......78........4..2....3.5.....6..1..........3.2.4..6....1.....7.....
+....1.5..3......2.8.........8.3.2....4....1.....7....66.5.........8...3.1........
+....1.5..3......6..2.........4...1.78..6...........2...15....4....3.2......7.....
+....1.5..46.......7.3.......8....2..6..3........4.....52...8......7...3.........4
+....1.5..48.......6..........7...2...3.6...........1....2.5..3....4...8....9...6.
+....1.5..6.......83........4..6....3.5.....7..1..........3.2.4..7....1.....8.....
+....1.5..6.4..................3...6251.4.....7.........52...1.......8.3....6.....
+....1.5..7.......6.......8.5..8.4...3.......1...7..2...14.........3...4..2.......
+....1.5..7.......6.......8.9..8.4...3.......1...7..2...14.........3...4..2.......
+....1.5..7......2.6........4..7...6..1.....3..8..........4.2......6..8...3....1..
+....1.5..8.......44........56.2.....2......1.......73....8.2....7....1.....4.....
+....1.5..8......4.....2....2....56.17..4...........9.....7...2..9.3......1.......
+....1.5..8......6.2.........4....9..7..2........8.6....59...4...1.....3........2.
+....1.5..8......7.2........4..2...8..1.....3..9..........4.2......6..9...3....1..
+....1.5..9......4.2........4..2...7..1.....3..8..........9.2......6..8...3....1..
+....1.5.32..7.....4.........5..361.........4.............8.4.2.7..2......3.......
+....1.5.67..9....84.....2..3......1.....2.........6......3...4..28.........1.....
+....1.52.....2.6..3........8..4.3.........1.....6......157............84.2.......
+....1.6........3.92...........8...27...2...4..6........3..6.1..8..4...5..........
+....1.6......47....2.......1..2...5....3...82..4......7.....4...8.5.....9........
+....1.6...3.......8.........4.3.9....7....1........8..5..4...3.1.6.........6...2.
+....1.6...32.......8.....5.7....91...5.3.................8...3.6..5.....4.......1
+....1.6...4.....8..3.....5.7.....1.....54.......3.....1.2...7..6..4............3.
+....1.6...4.3......8....7..5..4....21.7......6...............23.....7.8.....6....
+....1.6...4.9......8....7..5..4....21.7......6...............23.....7.8.....6....
+....1.6...5......3....4.....7.2...5....3............4.1.4...7.....5.62..8........
+....1.6...5.....3.....8....7..5...2......2.....8......53.9........4..8.7......1..
+....1.6...5.....3.....8....7..5...4......2.....8......23.9........4..8.7......1..
+....1.6...7.....2.3........4..5...3...1......8..........63.2....5....1.....7....8
+....1.6...78........3.......1....42....8....36...........3.7.5.4.....1.....2.....
+....1.6...8.3......4....7..5..4....91.7......6...............23.....7.8.....6....
+....1.6...9.....7..........5..2...4...19.....8.3.......6.7.2...3.....1........8..
+....1.6...9.....7..........5..7...4...19.....8.3.......6.4.2...3.....1........8..
+....1.6...9.....8..........5..2...4...19.....7.3.......6.4.2...3.....1........7..
+....1.6..2.......83........4..7....3.6.....9..1..........3.2.5..7....1.....8.....
+....1.6..2......3...........2.3...5..1.7......49......7..8.5...6.....1........4..
+....1.6..2......3...........2.3...8..1.7......49......7..8.5...6.....1........4..
+....1.6..24........7.......9..2............84........1..34.8...6.....15....7.....
+....1.6..25.......7...........2...7.5......3..41.......6....1.8...5..4.....7.....
+....1.6..25.......7..........8...31....7...........9...91....3....2.7..5...4.....
+....1.6..3........7.........1....42....5....3.6...8....4....1..2..7........3...5.
+....1.6..3.......82........4..5....3.6.....4..1..........3.2.5..7....1.....8.....
+....1.6..3.......82........4..5....3.6.....9..1..........3.2.5..7....1.....8.....
+....1.6..3......2.7...........7.2....1....8..5..3........2...354.......7.6.......
+....1.6..38.................5.....722....6......3...8...17........8..5..6.....4..
+....1.6..5.2......3........41.....7....2.7.3..8.............4.86..3.............1
+....1.6..57.......8.4.......9....2..7..4........5.....63...2......8...4.........5
+....1.6..7.......43........4..7....3.6.....8..1..........3.2.5..5....1.....4.....
+....1.6..7......3...5.......614.....52..........3...8.3..7.8.........1........5..
+....1.6..7......4.3...........7...3.62........1.4..........81.25.43..............
+....1.6..7......8.5.........4....1.....8.3......5....3.21......3.6.........9...4.
+....1.6..7.4...............26..........3...7..15......65....1.....7.8.3....4.....
+....1.6..72..............4.51........36.........4...2.8.47..........51.3.........
+....1.6..8.......3..........5....12.4..7.3......8......21...5..36.4..............
+....1.6..8.......44........56.2.....2......1.......73....8.2....7....1.....4.....
+....1.6..8......4...........5....3.17..8.9.............612..5.....4...7...3......
+....1.6..9.....3...5.........63..5...1.9......2.......8......214..7.3............
+....1.6.4......7..2........8..2...5.....6.1.....3........5.4.2..76.............3.
+....1.6.58..............3..2..9...8...5.3..........1.....2.4.7....8...2..1.......
+....1.62..4.7.................5...4738..............5.6.3...1..1.....8.....4.....
+....1.63..29...............6...3.4.....5....21.........7.2.9.........81....7.....
+....1.7....2........6.......3......11...4.......5...6....2.6.5.74....3.......8...
+....1.7....2........6.......3......11...7.......5...6....2.6.5.74....3.......8...
+....1.7...2.......8.........3.7.2.....5...1.....6...4.1.7.8..........3.2.......6.
+....1.7...4.6......2.......1......487.9.............2....46....5.....3...3.2.....
+....1.7...6....3..2........5.1....4....3.8...6..7.....4......52.3.8..............
+....1.7...8.....2.2........3..4.9.5.6.1.....3..........4.2.......7...1.....5.....
+....1.7...84........9......3.....1.....2.7......4...8.2..6..5..13..............4.
+....1.7..2.....6..58.........72............41.......5....6..3..45..........7.2...
+....1.7..25.........6.......4.6.8......5..3........17....2...5.3.......61........
+....1.7..3.......85.........4.....5.2..8...........14..1..6.......3....647.......
+....1.7..3......4.8.7...........3.8..15.........4......2....5.16..8........3.....
+....1.7..4......3.9.........72.........3...8..1...6...65.8...........1.2........9
+....1.7..4......6..29......51....8.....2.9......6.....6..4..5.........2.3........
+....1.7..4..5.....2.........8..3..........4.5.......62.7....13.8..2........4.....
+....1.7..45........63......1.9...8.....5.6......3......7.6...3.......9..2........
+....1.7..54........2.......1.2....6....4....27...........5.6.8.3.....1.....2.....
+....1.7..6.3......4........5..4.2......3..8...7....1.....6...43.2.....1..........
+....1.7..8.......5..........6....12.4..5.3......8......21...6..57.4..............
+....1.7..8......3.............9..1.23..8......7....4.....5...7.4.2......61.......
+....1.7..8.....2....9.........3.86...94.........2......5.....143..8............9.
+....1.7.86.3......5.........8...4..2...3............3....5..36..2.9...........4..
+....1.73.5..6....4.........2..4.5.........81...........1..8.3.....2....54........
+....1.74...25.....6........3.......2.....6.1.8...7.....1.4..........28.....3.....
+....1.76..4.............8..3......24...8....51.........284..........36....5......
+....1.76..5....3....49......3.8............14............5..8.36...2....1........
+....1.78.6.24...............7..4..5.3.......2.........5..2.3....8....1.....6.....
+....1.78.6.25...............7..4..5.3.......2.........5..2.3....8....1.....6.....
+....1.8...2....7......64......8..2..5........4...........5...43..1....6..7.3.....
+....1.8...2.3.....69.......4.....15..7.2...........4..8.1.........9....2.......3.
+....1.8...23..................653.........9.7...2.....1.....45....7.2.3.4........
+....1.8...4.......5........2......53...48..........6...71...4.....5.2.6....3.....
+....1.8...49.......2.......8.57...........32........9.6.....1.5...2.3......4.....
+....1.8...5.......2........8.....1.....2.7......5....46..3...7.......35..48......
+....1.8...53.......4..........4.9.6....5....37.....1..9.....7.....2...5.1........
+....1.8...62......7.4......13.....5....4.2......6.....5.....3.....2....4.......1.
+....1.8...76..................3...264...9...........7....2..5.81.....3.....7.8...
+....1.8...9.....3.2........4..5.3.6.7.1.....4..........5.2.......8...1.....3.....
+....1.8...9.....3.2........4..5.3.6.7.1.....4..........5.2.......8...1.....6.....
+....1.8...96.......2.......4.7..85..3..2........9........6....27......1.......3..
+....1.8...96.......2.......4.7..85..3..9........2........6....27......1.......3..
+....1.8..3........7........41.....5....6.9.3..8..........3....2.4....1..5..7.....
+....1.8..3......6.9.8...........3.9..15.........4......2....1.57..9........3.....
+....1.8..3..8.....2.........9..4..........2.5.......63.7....14.6..3........2.....
+....1.8..5........4.........19....2..8...3......6...4..3....9.....4..1..7..2.....
+....1.8..5.....2....9.........5.37...94.........2......6.....143..6............9.
+....1.8..54........2.......1......3....7....24.8.........2.3.6.6.....1.....5.....
+....1.8..59........2.......1......3....7....24.8.........2.3.6.6.....1.....5.....
+....1.8..7..5.................7..64..8....2..5..3......1..28...4......7........3.
+....1.8..74................8.....5.15..2.............6...7.5.3..1.....2..6.4.....
+....1.8..9.......5..........6....12.7..5.3......9......41...6..58.3..............
+....1.8.76.25.....3.........7.49....5......2.............2.3.6..9....1...........
+....1.83..5........2..........2.9..58......1....4........7..2..1.3......6.......4
+....1.83.57.6.................7.5..6.3....2....1......7......54....32............
+....1.85.2..7.....3.4.......1....9.....4.3......26....4.......2....5..1..........
+....1.9...4.6......7.5.....5...82...3......46.......7.8.1...2.....4..............
+....1.9...57........2.........2.6.5.3.....1.....7.....41.....3....8....29........
+....1.9...78........2.........4.8.6.3.....1.....2.....51.....3....7....29........
+....1.9..5.2......8......4..7...63..4...........5........8...5..9.4......6......7
+....1.9..5.6......2...........3...8......6.5..14.......7....4.18..5........6.....
+....1.9..6.4......27........18.....3...2.6......4........6...2..5....8..3........
+....1.9..6.4......27........18.....5...2.6......4........6...2..5....3..3........
+....1.9..6.8......2........7..6..3...4....5.9...2........8.4.2..95...............
+....1.9..74................8.....5.15..2.............6...7.5.3..1.....2..6.4.....
+....1.9..8..4.....2.........7..3..........2.4.......58.6....13.7..2........8.....
+....1.9.5.4.......8.........3....2.....46.......8.5...1...7.......1..3....5....4.
+....1.97..582...............2.5.8.........16.............4.3..89...6....1........
+....12......6.7....4.....5.2...5.7.4.8.3...........1..7.1.............3....8.....
+....12......6.7....4.....5.2...5.7.4.8.3...........1..7.1.............8....9.....
+....12....4.....6.....8....1.25...........73.8.........3.4.5.........1.2......6..
+....12...3......8......9.4.4.87.....5.....6........1.....45.....1.6......9.......
+....12...9.....4......8....5......1....9....6.1......2..73..5........84..2.......
+....12..35.86.................5..94..1..............5.7..83..........2.14........
+....12..37.45.................4..67..1..............8.6..73..........2.14........
+....12..4657..................5..37.2...6...........8..3.7.....4.......2......1..
+....12..6.34....8.............38.7..2.......9......1..17..........4...3......6...
+....12.5.7.....4......8.......6..3...21.......7..........7....24..3.....3......8.
+....12.6..58...3...........7...4....2......1....5.....14..........8....5...6..7..
+....12.7.......46..3........4.9.8...........1...4........63.5..2.1......7........
+....12.7.......46..3........4.9.8...........1...4........63.9..2.1......7........
+....12.9.73...................5..7.6.8....3....1......6..34...........12......5..
+....124..3.6....8..........5..6...3..1.4....7..........2....1..7..3.........5....
+....124..3.8....6..........5..6...3..1.4....7..........2....1..7..3.........5....
+....124..9.....3......7.....1..5..2...36...........8..4..3........5...7.........1
+....125......3...46........4..6....8...7...3..1.......7..85..........21..........
+....125...4..7.............2.1.....6...5...8.9......3....9..2...8.3...........1..
+....125...4..7.............2.1.....6...6...8.9......3....9..2...8.3...........1..
+....125..47.............8.....7..3.....4.6...1.........2.....1.....5..4...53.....
+....125..6............7.....7.....8..2.5........3....43..6..1........27.4........
+....125..9............7.....7.....8..2.5........9....43..6..1........27.4........
+....126..3.......7............7..4.3..53......1.......4..85..........12........6.
+....127..86.....9...........12.6...........53...5.....9.53...........1..3........
+....13.........94......8...6.29.....5......133.........8.7..4...1...........5....
+....13.........95......8...7.24.....6......133.........8.5..4...1...........6....
+....13.......9...........2.6.27...........8.34.........3.2..5...9....1.....4...6.
+....13....5.....6..........1.....7.3.4.62..........8..3..5.7......4...9.8........
+....13...4...6....2.7.......1..5.......4....7......2..7..8...........61....2...5.
+....13...4...6....2.7.......1..5.......4....8......2..7..8...........61....2...5.
+....13...4...7....2.8.......1..5.......6....8......2..8..9...........71....2...5.
+....13...8...6.....9.......3.1.........5...4.9.......2.4.9...........16....2..3..
+....13..4....6....5........8..74..........13.......2.....4...596..5......1.......
+....13.7..4....5...68.........8.64..1...........7.....2......13...42.............
+....13.8.5.2......6...8.......75.6...1.............4.....2....34..6............1.
+....134....8....9..5........7.8.9.5.1...........2.........7...23.....1.....5.....
+....134...62......5.........7.2.6.........1.....7.....4...8....1......3....6...2.
+....134..52...........7.......5.82...31.............7.2..64...........3....1.....
+....136..85.....4....7..........83..7...4....2..6......31.........2...7..........
+....14...........9.......8.4..8...2.5.....4.....3.........7.1.5.86.......3....2..
+....14.........53..6...........7.2.435.8.....9..........4...1.6...3...5..........
+....14.......8..5.2.......7...3..2.5..86......1.......3..7..6........41..........
+....14....2.....9.8........1.4.3.......5..2..3.........7.2.65..........1...9.....
+....14....3....2...7..........9...3.6.1.............8.2.....1.4....5.6.....7.8...
+....14....7.....2........3...1.5.4..........8...2.....23.7.....6..3..5........1..
+....14....7.....2........3...1.5.4..........8...3.....23.7.....6..2..5........1..
+....14...2......7.........97..2......3......8......1...81...4.....6..35....7.....
+....14...2.....3............8.7............54.6.......5.12........36.7..4.....8..
+....14...3......6....7.....56.3.....2.....4........1.8.81.........52...........7.
+....14...3......8.....7.......2..46..51..................6..1.528.3...........7..
+....14...3......9.....8.......2..47..51..................6..1.529.3...........8..
+....14...3.....5......2....6......1....8....2.1......7..83..6........45..2.......
+....14...9.....8......5.......7...3..4.....5..1.......7..2..6..3.....4.8......1..
+....14...9.....8......5.......9...3..4.....5..1.......7..2..6..3.....4.8......1..
+....14..76.....5...........3..62...........142...........5..63..8.2......1.......
+....14.5.73..................4..8...2.....6.....3....7..1.5..4..8.7...........1..
+....14.6.82.......5...........3..2..6..8.......1.......3.2..5......6..4.7........
+....14.8.2.....6..............2..7...3.....1....7.....8.9.3.....1......4...6..5..
+....142..6...............7....7...531.28.....4.........3.5......6..7..........1..
+....142..8...............6....6...531.27.....4.........9.3......5..6..........1..
+....142..8...............6....7...531.26.....4.........3.5......6..8..........1..
+....145...32......6.........7.3.2.........1.....8.....5...6....1......4....7...3.
+....1456.8...2....3.........645........3...7...........3....4..7..6.............1
+....146.....57.....2....8.....6..23.4.1......7.........8.3.............1.......2.
+....146.....58.....2....9.....7..23.4.1......8.........6.3.............1.......2.
+....146..2.5.....37........3..5...2.....46...............2...7..8....4...1.......
+....147..2.6...............3..68..........134........75..3...8..1..........2.....
+....148..2.6...............3..68..........431........75..3...7..1..........2.....
+....148..3.9......7........6..2...5.......1.3.....7....1......4...9...2.....3....
+....148..57................6..3....2..1.........2.....2..73.....3.....8.......14.
+....15.......4..9.3.....2..87.2.............14.........51...62....4.......6......
+....15.......4.6....9.....261..........3...4.5.........832...........57.......1..
+....15....8......2..........3.2..1..1.....65........4.5.2......4..7........3....7
+....15....83.......7.....4.5.....2.1...3...........5..2.6...1.....74..3..........
+....15...2......8....3.....9..8...........4.5......16..15.4.......7..2.........3.
+....15...4.....8.....6.2......74.3...5........6.............25.9..3............68
+....15...4.....9.....2.8......74.6...8........5.............25.6..3............19
+....15.7.2.....8..............4..2...3.....1....8.....7.4.3.....1......5...2..6..
+....15.7.2.....8......6.......3..2.9.5.4.......1.......7.....613..8..............
+....15.7.2...3.....4....6.....6..84.1....7...3........5.......1.6.8..............
+....153..1......4.....7.......4...6..5.2......3......76.....2..2.....9..........5
+....153..6...4.....8..........2...75...8...6.1.........7.6.......3...1..........4
+....158..47................6..3....4..1.........4.....2..73.....8.....9.......51.
+....16...2......5.........85..2......3......7......1...71...4.....5..62....9.....
+....16...2.....7......3.......8..5...3....4...91.............19..62.....5..4.....
+....16...35.............2.....3...25..1..............4.3.84....2.....16.......7..
+....16...8......4..............9.2.63.....4..7..8......2.7....9...3...7..6.......
+....16..5....3....7.........1....6.....5...2........4.2..7..3..4.82...........1..
+....16..5....3....7.........1....6.....5...4........2.2..7..3..4.82...........1..
+....16..83......5......4.......3..7..6....4...1.......7..5....65..2...........1..
+....16.8.4.3...5............6..9..1.7..4...........2..2..7........2..4...1.......
+....162..7.8..................9.4..7...8...5..1.......96....1..5..7.........3....
+....163..54.......7..3......86..3......4...5................6.14..5.........2....
+....1634.....3.1..5...........5...82.1..........2.....8...4....2..7...........6..
+....165....8....7..........56....2.....8...4.1.........2....1.6..3.4.......3.....
+....165....9....7..........56....2.....9...4.1.........2....1.6..8.4.......3.....
+....167...48...............1....76....28........3.........4..8275..............3.
+....1674.....3....9.........6.8..2....1...............57.2........9...1.2.......3
+....17....34...............6...5.1........82....3........2...497.......38..4.....
+....17....4.....2.6.........7....5.13..2........4..8......8.1..2..3.....4........
+....17....4..3..........5........1.9.2.4........5..7..9..8...2.1......8.7........
+....17....5....6.......9......62.5..7.....8..9........1.......9...8...3..6.4.....
+....17...2.....6......9.......3..25..71.............8.51.4........2..3..........9
+....17...6.....8..........3......41.5..8...........7...17....3...42....6.2.......
+....17..2....4....8.........1....7.....5...6........3.2..8..4..5.63...........1..
+....17..2....4....8.........1....7.....5...6........3.2..8..4..5.93...........1..
+....17..252...........8.....4.6.9...8..5............1.1.7.........4..2........6..
+....17..2563..................5...8..7....4...2.....3.8..3.....4.......7......1..
+....17..5....3....8.........1....7.....4...6........2.2..8..3..4.92...........1..
+....17..5....3....8.........1....7.....9...6........2.2..8..3..4.92...........1..
+....17..5....4....8.........1....7.....2...6........3.2..8..4..5.93...........1..
+....17..6....4....3.........1....7.....2...5........2.2..5..4..5.83...........1..
+....17..6....4....3.........1....7.....2...5........8.2..5..4..5.83...........1..
+....17..6....4....8.........1....7.....5...2........3.2..8..4..5.93...........1..
+....17..652...........8.....4.6.9...8..5............1.1.7.........4..2........3..
+....17..8.2....6............6.28......5....17.......3....6..3..8..4.....1........
+....17..89......3............26...9..1.............4...7....2.1...36....4..9.....
+....17..9.2....6............6.89......5....17.......3....6..3..9..4.....1........
+....17.3.2.....8......3.......6..2.9.31..............5.4.....8.9..2........5.....
+....17.5...3.9...8.2..........6.3...1......4....2......6....3.95..............2..
+....17.9.4.....3..8...6.......8..7.456..........2........4.3....1.....6..........
+....172...4.....6......3....5.4....83.....1...........7.1...3.....85..4..........
+....172...4.....6......3....6.4....93.....1...........7.1...3.....85..4..........
+....174..3...2................4..63.2......5..1.8.....8..3......6....7..........1
+....174..8...3...................7.16..8.....2...........6.4.8..3.5...6..1.......
+....175..6.......3....4....37.....6....2....8.15............71.8..3..............
+....176....5.8....2...........4...23.7.....5..1.......5..2.....3.......8......1..
+....176.53.8....4...........1....7.....23.......4.....4..3..........51..2........
+....18.........2......7....9..3.....4.....6........8.1..72.65.....4...9..1.......
+....18.........5......6.......3..48..1.5......6....9..4..2...9.8......3.........1
+....18....2.....3...7.6....3.....1.6.4.5.7...........8...2..47.1.................
+....18....3....5......6.......24.3..8.......21........6......1..7.9.......53.....
+....18...6...7..........8.....5..3.27....3...1..6......2.3..4.........1..5.......
+....18...9.....4........2..4..5..6..........1...4........72..5..18....3..6.......
+....18...9.....4........2..4..5..6..........1...9........72..5..18....3..6.......
+....18..6....4....3.........1....8.....2...7........5.2..5..4..5.73...........1..
+....18..6....4....3.........1....8.....5...7........5.2..7..4..5.93...........1..
+....18.3.2.5...............6..2..7........48....5........64...2.8....1...3.......
+....18.3.2.7...............5..7..6........48....2........54...2.8....1...3.......
+....18.4..3.....2.............2..5.76.....3..1............4.6....8....1..7.3.....
+....18.6.2.....7......3.......5..2.4.31.........9.....5..2..4...8.....1..........
+....18.9..2....6...........64.7........2....3.......1....6..7..9.3......8.1......
+....182...4.....7......3....6.4....53.....1...........8.1...3.....65..4..........
+....182...5.....7......3....6.4....53.....1...........8.1...3.....75..4..........
+....183......7..5..4.....2..2.5...........6..........7...6..24.7..3.....1........
+....1836.....5....9.........8.4..2....1...............72.3........9...1.4.......5
+....185..6.......23...4.....8.7..4.....3...6..1.......2..6.........5.8...........
+....185..7.....4......3.....5.6...1........382.........4.7..2....1.........2.....
+....185..7.....9......3.....5.6...1........382.........4.7..2....1.........2.....
+....19....8....5......6.......74.8..9.......21........6......1..7.8.......53.....
+....19.2.45.................6.8........4..5.........1....63.8..9.1...7..2........
+....19.6.2.....8......3.......2..5.4.31.........6.....7..5..4...9.....1..........
+....19.6.2.....8......3.......2..7.5.31.........6.....7..5..4...9.....1..........
+....19.6.2.....8......3.......4..7.5.31.........6.....7..5..2...9.....1..........
+....192......8....4........5.46.....7.....8.....2..1......3..7....5...4..1.......
+....193...86......7...........8...64...2...3.1.........4.6.....9.....1......3....
+....193...87......6...........8...74...2...6.1.........4.7.....9.....1......6....
+....2...13.....4......58...1..6........7....5.......2....4..13..82............6..
+....2...16....7....5.......2.....74....31.......8..........5.6...1...3...78......
+....2...34.....7...........1.....84.....39...9.........32.....5.5.4...6....1.....
+....2...35......4.2..8........7.52....19......4.......93..4...........1.......8..
+....2...4...1..6...8.....7.6.13...........2.........8..4..87...7.....1.......5...
+....2...4.8....7...1..........3.71..6......8.2...5....4.5....2....8........7.....
+....2...43....7...6......8.5..1..6...7..4.............12..........6..3...4.8.....
+....2...5....6.7...1.......3......4.7.2.........8...1....1.32..6.....5.....4.....
+....2...5....6.8...1.......3......4.8.2.........5...1....1.32..6.....7.....4.....
+....2...5....6.8...1.......3......4.8.7.........5...1....1.32..6.....7.....4.....
+....2...5....6.8...1.......3......4.9.2.........5...1....1.32..6.....7.....4.....
+....2...5....74....1.............27..8.1.....9.....4.....8...1327.......5........
+....2...5.8.....3..1.............6.25...3..........84.7..4..1.....1.8.....2......
+....2...513.......7.....8.....7...39..2....6.8..1.......4.5.....7....3...........
+....2...61.4............3...5.....9..2..3...........1.7..1.4.........8.2...7..5..
+....2...7.6.....3..3.6......5....6..4..1.........7..8....3..1..2.8......7........
+....2...73...5...........6..7.9...8..61............4..2.....1.....7.8...4..6.....
+....2...8..1....3..5.......8...6..4..2....1.............91..5..6.......92..8.....
+....2...8.6.....3.....4....8.....2.....5.3.........9..2.98........1...6.4...9....
+....2...81..............7...7.....2..3.7............5.5.81........6.53..2.....4..
+....2...9.....54..1.............8.736..1...............32.9.......3...1..5....6..
+....2...91..............8...7.....2..3.4............5.5.91........6.57..2.....4..
+....2...93..5..................49.6.7.....3.......1......7..83...98..2...1.......
+....2..1..5....6...4...7......5...842..6.....1........7...1.......3..2..........5
+....2..1.7..5........6.....5..4..6..2...1.........3.........4.5.3....2...1...8...
+....2..1.7..5.....4.........18.3.....2....4........6...3....7.26..4........8.....
+....2..1.9..8.....5............6.9...7..1..........8.....9..4.271.3......6.......
+....2..1.9..8.....5.........7..6........1.5........8.....5..4.271.3......6.......
+....2..136.8...............34....6......798...1.......5.....72....4........3.....
+....2..14.3.....5....6........7.38..4........5...........14........65....7....2..
+....2..163..7.....9......8.....16...5.....3.......4......9..5...2.3......1.......
+....2..198..6.....5.........9..4....6.....3.......1....1.....4.7..3........5..8..
+....2..3......85...1.......2...3...6...4...7........1.3.2...4.......19.....7.....
+....2..3.....34...1.........531...........4.7.2.......7..8...........35.......2.6
+....2..3...4...1...1...........3..282......6....7........1.47.....5..4..6........
+....2..3..1.....8...6......3.75.....2.....8..........1.5.6.1...4.....2.....3.....
+....2..316..8...............137......52............2..4.....87.....5.6.......1...
+....2..346.1................4.53....7.....6.........8....6.75...3......7...1.....
+....2..347.1................4.63....8.....1.........5....7.85...3......9...1.....
+....2..347.1................4.63....8.....7.........6....7.85...3......9...1.....
+....2..357.1................5.63....8.....7.........1....7.84...3......9...4.....
+....2..36.71..................7.84..9..1.....3.........8.5..1..6...3...........9.
+....2..376.1..................4.16...3.....5......8....2.53....4.....1.....7.....
+....2..376.1...............47..3.......5..6..........8...6.45...3.....4....1.....
+....2..395.1................3......7...5.4......1......9.83....4.....5........68.
+....2..396.1................3......7...6.4......1......9.85....4.....1........76.
+....2..4...8...7...1..........7..3..4...5....5.....1..2..3...6........52...1.....
+....2..4..3....6...1.......4...5.3..2.8.........7..1...6.3.....5......2....1.....
+....2..4..6.....2.3..5......41.........3..5.....6.........1...3....47...8.....6..
+....2..4..6....2...1...3......6....88......3......2......71.6..3..5.....4........
+....2..4..8....7...1.......4...5.3..2.9.........7..8...6.1.....5......2....8.....
+....2..4.1.....5.......6....6..4..2.5..3..1..............1.8....2.....7....5..3..
+....2..4.6..3.....3.........21.9.......5..6...............812...4.....9.8..7.....
+....2..4.7.....3.....9.....5..7.3....3.....2....1..6...42.8............1......7..
+....2..4.7.....5..1..9......34.8..........7...9.......8..7.5..........93...1.....
+....2..4.7..3..................4.95.3.....6.......1......8..7.2.452......1.......
+....2..4.8.....1..1..9......26.5..........8...4.......9..8.1..........65...3.....
+....2..4.8.....7..1..9......26.5..........8...4.......9..8.7..........56...3.....
+....2..45..8.1.....7....3......5..2..3.6.................3..6.72..4.....1........
+....2..45..8.1.....7....3......5..2..3.6.................3..7.62..4.....1........
+....2..45.1..6..3...........7....1....4.5.......3..........76..5..1.....3..9.....
+....2..49.63.............8.42..........5..7..9..1.......5...6..8....9.......4....
+....2..5........18........6.32...4...5.6........1.....4...7.9..1.6......8........
+....2..5.....1....4..........6...2.13..7.8.........9..5..3...8..2....6.....4.....
+....2..5..1....8..6...4....2......6....8.3......1.....5..27..........1.6........3
+....2..5..17............2.....1.4...6......9....7.....53..6......4...1........7.8
+....2..5..4...8.....7...3..5......2..1.7........1........3..4.73...6..........1..
+....2..5..7....3...39.........8.37.....7..1..4........5......42...1............6.
+....2..5..8.4......1.......5..3..7..2...6...1......8..6......3....1.7......8.....
+....2..5.3.....1.......6....6..5..2.1..4..3..............1.8....2.....7....3..4..
+....2..5.6......1.3...8.....2..4.7...1..........3.....5.61........7....2......8..
+....2..5.6.....1.......4....42.3.......8..6.........1.57.1...........3.2...6.....
+....2..5.7..4..................5.46.4.....3.......1......8..7.2.653......1.......
+....2..5.7..8..................5.96.4.....7.......1......7..8.2.653......1.......
+....2..5.8.....6..9........3....7.4........21...9........8..9...5..4.....2....5..
+....2..51.7........6.......8...5..2....7..6.....3.....2.1...3.....4..7..5........
+....2..54..8.1.....7....3......5..2..3.6.................3..6.72..4.....1........
+....2..54..8.1.....7....3......5..2..3.6.................3..7.62..4.....1........
+....2..54..9.1.....7....3......5..2..8.6.................3..7.82..4.....1........
+....2..54.1..6..3...........7....1....5.4.......3..........76..3..1.....4..9.....
+....2..57.9.8................54..36.7..15....2.........1....8......7..........4..
+....2..6........28.3..........4..3..2.6...........71...7.3..4..8......5....1.....
+....2..6..1....8..7....3....6.1............37.......4....69.2..3.....5..4........
+....2..6..1....8..7....3....6.9............37.......4....61.2..3.....5..4........
+....2..6..3....1....78..........374.8...5.............29.....5......73.....1.....
+....2..6..3.1......89......5...7........6...3.......182.....7.....3..4.....8.....
+....2..6..4..3....9.....8.....9.16..7.....5...3.......6..5........4....3.......2.
+....2..6..4.5......1.......6..3..8..2...7...4......1..7......3....4.8......1.....
+....2..6..5...8.....4...3..6......2..1.4........1........3..4.53...7..........1..
+....2..6..7....3....8.............21.3.7.....6..4.....2.1.5....5..3..7...........
+....2..6..8.4............93...1.74..3.2.5....9...........63.....4....1...........
+....2..6..8.4............93...1.74..3.2.5....9...........63.....4....7...........
+....2..6.4.....3..7.........8.....26...1............5....7.41....53..4...2.......
+....2..6.5..3............4...61....8.7...5....24..........42...1.....3........9..
+....2..6.9..8.....1.........63.....2...1...3..2.4......5..6....7.....8........1..
+....2..6174...................4.38...5.8.....1...........7...2..3....4..6...1....
+....2..63.8....7..1...........1....5..2....3....8.....41....8..5...3.........7...
+....2..648.1...............7..1.3....6......2...8..5........13..4..9.......5.....
+....2..65....86....1.........35.4..........27...7.....2.....5.....4..3..6........
+....2..67.9......3.1..........4.95..6......2....1.....7...3....8.....4........9..
+....2..68.41................7....1..6...8.......2........4.75..8......7.3..1.....
+....2..7........14........5.23...6...7.5........1.....6...8.9..4.5......1........
+....2..7........14........8.53...6...7.8........1.....6...3.9..4.8......1........
+....2..7....8...3.2.1.......7.4.3.....5...2........1..43.6.........5....8........
+....2..7...1....8..3.9.....75..8.........1..3......9..4..2........3..5..8........
+....2..7..3....1...............7..26...3...5.1........6....18...52.........9..4..
+....2..7..5.....2.3....9....2....9...7.5...........1..1.84........76....9........
+....2..7..8....5...1..........1.8...7......2....5.....2..46...33.....4........1..
+....2..7..9....3..1........8.....4.14...7.......6......72....5..6...1......8.....
+....2..7..9....3..4........8.....4.11...7.......6......72....5..6...4......8.....
+....2..7.6.....8..3..........4..35..1.....6...2..9....5..6........1...9........2.
+....2..73..13............2.47..6.......1..5..............5..1.826.......7........
+....2..73.8....5...1..........5..1..2.7......3........6...4...2...1...9....8.....
+....2..743.1..................3..16..2..8..........7..5..1.3....4......8...6.....
+....2..745..6.....1..........2.84....6....3............7.....8....3..5.....1.5...
+....2..745.1...............3.....15..7.64..........8...4......8...5.3......1.....
+....2..746.1...............3.....16..7.54..........8...4......8...1.3......6.....
+....2..76.4..9.....1.......6..7...5....4.3......1.....2.....3..8.5............1..
+....2..76.4..9.....1.......7..6...5....4.3......1.....2.....3..8.5............1..
+....2..76.4..9.....1.......8..7...5....4.3......1.....2.....3..5.6............1..
+....2..764.1...............5..4..1...2..6.......7........5.13...6.....8......4...
+....2..8....4...2..1.......8.....56....1.7......3.....2...6.4....3.....7......1..
+....2..8..5....7.......1...3.....5.....9..4..6.2..........3..62.4.7........5.....
+....2..8..9.4............63...1.74..3.2.5....8...........63.....4....7...........
+....2..8.4.6......7.............52.....4.6....8.....3..1.23....5.....6.4.........
+....2..81.6........5.......7...1..2....6..5.....3.....2.1...3.....4..6..8........
+....2..813..7.....5......6.....18...9.....7.......4......6..5...2.5......1.......
+....2..813..7.....9......6.....18...5.....3.......4......6..5...2.3......1.......
+....2..816.45..............5....36......18......7........2..7..31.......8........
+....2..86.4..9.....1.......7..6...5....4.3......1.....2.....3..8.7............1..
+....2..86.4.3......1.......5......29....714..6........2..6..........43...........
+....2..873...4....1.........7..5..6..8....3.....4.....5..1..4.....3..........8...
+....2..8943..................9....2....1..4...8....3..6..5..1..1.......7....8....
+....2..9.....1....4..........6...2.13..5.7.........8..5..3...7..2....6.....4.....
+....2..9....5...4..1.......9.....67....1.8......3.....4...7.5....3.....8......1..
+....2..9.7......3...4..1....5.36.....81.........7.....2..5..........74........1..
+....2..93.58.............2.1.9..8......4.6...3............3.1...4....8.....9.....
+....2..97.3.....1..8.......7...14.........8..5...........3.82..9..7.......1......
+....2..97.8..1...........5.9..3...........1..2.........4.5..6...1....4..5..9.....
+....2.1........7.8............7...6.9......4.5..6.........1.52..6.3......78......
+....2.1...3......5.4..7.......6...4.16.......2......7.5.....2.....3.8......4.....
+....2.1...3.4...........8..8.2....9....5.3...1........9...82..........54........6
+....2.1...7......5......4..3.....62..8.7..........1...4.2.6.......5...7.........8
+....2.1..6.......4.........38.....6....2.1...5...7....4..6.......1...7.....9...3.
+....2.1..6.......4.........38.....6....2.1...5...7....4..6.......1...7.....9...5.
+....2.1..6......8.......5..5..6.9.........2.7...3......21.4...........96.4.......
+....2.1.694........3.......2.1...8.....3...4...........9.43....8.....2.....5.....
+....2.1.785........4.......2.1...9.....4...5...........8.54....3.....2.....6.....
+....2.17..8....4...6.7........3...861...............5....6.3...4.....2.....5.....
+....2.18..9....4...6.7........3...961...............5....6.3...4.....2.....5.....
+....2.3......45...1.........26....4....1....5.3.......7.58...........26.......4..
+....2.3...1.....2...9......3..7..6..8.......7...1.....25..8......4....91.........
+....2.3...4.5...........1.....6...871.3......2.....9.....4...5..7.....6.....1....
+....2.3...4.8...........1.....6...871.3......2.....9.....5...4..7.....6.....1....
+....2.3...7.4......1.......8.4...9.....7.1.......6....3..95....2......6.........1
+....2.3...7.6.......4......2.3...1.......9......7......4.....761...83.........5..
+....2.3...7.6.......4......8.3...1.......9......7......4.....762...83.........5..
+....2.3..1..4..........5....3....7.....8...4....1......2..7.5......3..6.8......1.
+....2.3..68.......1........54.1........8...2...3...7....4.7.2.....6....1.........
+....2.3..9..7.....4.........8..6..........59...2.......6....8.35..1.4......9.....
+....2.3.6.8....5...1..........1.8.4.6.....2.....9.....2...3....7......8........9.
+....2.3.78..............1.....8.6.2.5..9......7........3..7.......6....59......8.
+....2.3.8...4......9.........1...69....23.......8.....24....5.......1.7.8........
+....2.3.8..14...........5.....6.1.9.23.......7........58..3.......1...6..........
+....2.3.85..............1.....9.1.7.6..5......8........3..8.......7....69......5.
+....2.3.85..............1.....9.3.7.6..5......8........1..8.......7....69......5.
+....2.34.1.......5.........61.....5.....342..8..........3...72....1........6.....
+....2.34.1.......8.........61.....5.....342..8..........3...72....1........6.....
+....2.34.5......1..9.......32....8...8.4........7.1...7.1.........9..6...........
+....2.34.8.56...............37...1.....8....9.2.......4......85....31............
+....2.35.1.68..............4..1.8..........2....4.....95..3..........8.4.2.......
+....2.35.17.......4..........5.8..7....9....1.3.......9.....2.....4.1......5.....
+....2.37.4.8................3....2..6..4........1.....1......54.7..3.........7..6
+....2.38.1..6..............6.3..1....5.4..2.........9...4..7..1.2..9.............
+....2.4...1....3.......8.....2.6.......5....7...3........1..56.2......4.87.......
+....2.4...3.....1.....1....2.4...5.....3.61.....7......6.....73...8.....5........
+....2.4...5.....3..16......9......7......1......4.....2..87.......3..5........1.6
+....2.4...5....3.......9.....2.6.......7....8...5........1..56.2......4.98.......
+....2.4...57............8..2..1.4..........37.....8...4.....16....73.......5.....
+....2.4...65......1........2......17...1...5.4...3.......5.7...3.....8.....6.....
+....2.4...85............7..2..1.7..........38.....4...4.....16....83.......5.....
+....2.4..3..1...........5.27......6....25..........8.....3.7.1..54...........9...
+....2.4..3..6...............6....84.52.3..........1...1......5....7....3.4..8....
+....2.4..3..8...............6....94.52.3..........1...1......5....7....3.4..9....
+....2.4..5.3......6.........4..8.......5....6.......1..1...72.....3..8.....6.4...
+....2.4..8......6......1......86..2...97......1..........5..1.9.....35..2........
+....2.4.67.1..................5.1.7..6....3.....8......4.36....5......1......4...
+....2.4.87..5.................1.86..3.5....7.....4....82..........7...3..4.......
+....2.4.95...6..........1..8......624..1........3......32....8....4......1.......
+....2.48.1.7...............35..............61....8....24....5.....7.63.....1.....
+....2.48.6.1..................1.56...8......3...6.....54....1.....7.6.......3....
+....2.5....8.....4.1.......5..36....7......6.........1...1.8.2.2.....7.....4.....
+....2.5....86.....3.....7...5.16........5..8........3.52..........4.3.........1..
+....2.5...1.6...........34..4.....713...5.............5..1.7...2.....8.....4.....
+....2.5...17.......4.....8...3...2..6...9...........4.5.....6.2...8.4......1.....
+....2.5...3......4..19........8..63.4..5.....2.............3.1.86...........4....
+....2.5...3.....6......8......3.6...5.....2........1...6.4...3.2...1.......7...4.
+....2.5...4.....6.....9.......3.6.7.2..4.....1..........8...1.9.3.7...........2..
+....2.5...7..1....3......8....4...9...1...........6...84.6........3..7.1......2..
+....2.5...94...............2.7...3..53.9........1.....8...7...6.......14.......9.
+....2.5...94...............5.7...2..23.9........1.....8...5...6.......14.......9.
+....2.5..1.....4..9..........64......5..6...........1..4....8.2..73.1......9.....
+....2.5..1....8.........17..6.14.....2......8.......3....6..4..3..7.....8........
+....2.5..4.9......1.........25.8...........64..........8....23.6..4....7...1.....
+....2.5..4.9......1.........52.8...........64..........8....23.6..4....7...1.....
+....2.5..6..3...............58....6....4...3..1..........951...4....81..2........
+....2.5..7......6.1...........3...1...8.4.....2...5.........2.8...7..4..3..1.....
+....2.5..7.3......19........26...4...4.3........1.....5......91....6...........3.
+....2.5..7.3......19........46...2...2.3........1.....5......91....4...........3.
+....2.5..7.3......19........46...2...2.3........1.....5......91....6...........3.
+....2.5.13....6.................2.6...7....3..15.........75.8..64..........1.....
+....2.5.1687..................7.34..5.....2.....8......3.4...7.2...9.............
+....2.5.6.1.....3....8.....2...73..........419...........6.1...5.....9.....4.....
+....2.5.6.2.3...........1..5..4..6.....7.8...1............3..7..7.....2.....1....
+....2.5.7.2.3...........1..7..4..6.....8.9...1............3..8..8.....2.....1....
+....2.5.8.2.3...........1..5..4..6.....7.9...1............3..7..7.....2.....1....
+....2.54.78........1..........1.5......8....4.......3.4...3....2.......8...9..1..
+....2.56..7..6.....3.......5..3..2.....7.1..........8.2..45............1........7
+....2.57.13....6............8.6.3......1............2.2.7.8..........3.14........
+....2.6....4.3.....8.....1.2.....3.....8...5....1......1.5...7.3...6.4...........
+....2.6....9...4......75....1.4............3........7.26......8...5..1..7..3.....
+....2.6...1..........9.....23...6.......8..9.5......4....4.13....97.....8........
+....2.6...1.7...........45..5.....814...6.............6..1.8...3.....7.....5.....
+....2.6...14.......9.......3...6.5.7...4...1..........7..8.....2.....3.....1...9.
+....2.6...3..4..........1.........396......4.1..8.....2..6..5...4.1............7.
+....2.6...3.4.................7...496.8......5............618..2..5......94......
+....2.6...3.7...........48..5.....312...6.............8..3.1...4.....2.....5.....
+....2.6..1.....4..8..........64......5..6...........1..4....5.2..73.1......8.....
+....2.6..1.....4..9..........64......5..6...........1..4....8.2..73.1......9.....
+....2.6..34.......1..........265.......7....34......1..8....52....3.1............
+....2.6..4......3.1............5.7.8......2.....9......753........4...9..2.....5.
+....2.6..4......9..........35......41....7.......6.....26...1....75........4...8.
+....2.6..8..7.....5........24.....5.....61.........3...614........3...8..7.......
+....2.6..9......7.1.........63...2.....4..5.....8.9......7...8..2..5...........9.
+....2.6.4..1..3.........5..7......1.....54............56.2........7...83.4.......
+....2.6.783................4.6...2..7..8..........1.....576.....1.....8........3.
+....2.63..1.7............4....2..1.83.4.6....5...........1..2..4....5............
+....2.68...4......7........5.14....7.2.56.............36....2.....7.1............
+....2.7....1..............6...8.19..6.....2...3.4.....27..........9...1.5......4.
+....2.7....5.3.....1.....4.2.....3.....4...6....1......4.6...8.3...7.5...........
+....2.7...41.......3..5....2.....5.....4...8....1.....3...7..6....8...1.......2..
+....2.7...5....3.......8.....2.4.......5....6...3........1..57.2......4.86.......
+....2.7...8.....5...1......64....2.....1.8......5.....2.....3.....4...1.9...7....
+....2.7...8.....5...1......74....6.....1.8......5.....2.....3.....4...1.6...9....
+....2.7..5......6.1.........3....9.4..658.......1........8.4.5..7....2...........
+....2.7..5.6......3.........2....4.8.4.3..........5...1..6.7.5..8..4.............
+....2.7..6.......41..........357...........41..........8.1.4.........32..9.6.....
+....2.7..6.....1.....7..........1.547...6....8.........534......4.8...........6..
+....2.7..8....5.........1....23......1.....5........84...1..2.....73....5......6.
+....2.7..9..8.....5........64.....5.....71.........3...714........3...9..8.......
+....2.7.41.....3..3...........1.86...45.........3......7.....52...6............4.
+....2.7.51.....3..3...........1.86...24.........3......7.....24...6............5.
+....2.7.91..4...............27...3.....5.8.6...9.......3..7....8......1....6.....
+....2.7.981...........3.......6..38.2...4....5..........91..4.....8.5............
+....2.73...1..6.........4..47.2..........5.81.3.......6.......5...43.............
+....2.73..19...............7.....2.....1.9......5.....6..4...5.3...8..........4.1
+....2.73.4......1..9.......27....8...8.3........6.1...6.1.........9..5...........
+....2.74..1.6..............8...4..9....1....3.........4.8...5.....3..1.62........
+....2.74..65...............7..84....9.....2........6.14..5...3......1......6.....
+....2.76..81.............3.6..4.1..57..8........5......5......8....7.2...........
+....2.8......57...1...............548..2.............7..41..62..57.......3.......
+....2.8.....6..2..1..........7....41....5....4.........9.7.1....3....5.....4...6.
+....2.8....56...........7..89...2......9...3.7......1....51...327................
+....2.8...1..4.....53......7..6........3....1......2..2.....47....5...3......1...
+....2.8...57...........9...9.....2.....53..........6.1...1...57...7...4.6........
+....2.8...6....3.......9.....2.4.......6....7...5........1..68.2......4.97.......
+....2.8...9.....5...1......74....6.....1.9......5.....2.....3.....4...1.6...8....
+....2.8..1.....4..9..........64......5..8...........1..4....5.2..73.1......9.....
+....2.8..1..5...............26...4.....7....3.8.........2.64...3......75.......1.
+....2.8..43.................7.3.4....9.5...........1..2.8.1.......6...5.1......3.
+....2.8..5.......4.1.......2.8.4.......3..1.........7....7...3.6..1.....4.......2
+....2.8..5...1.....3.......6..3.4.7.2..8...............4.7......1....2........51.
+....2.8..7..........4......28....6.....4...3....1.....5......74.2..6.........3..1
+....2.8.1.2..57............8..6..3.......4.7.1.........7.....2....31.......8.....
+....2.8.73.1..................13..5.46....2.....7......2.5.7...6......3..........
+....2.83.75.6............2.46.7.........3.1...7..........9....58.3...............
+....2.9......46...1........5..1..7.........42.......3..438........7..5...2.......
+....2.9......57...1...............548..2.............7..41..62..57.......3.......
+....2.9....53......1............4.15.8.....3.6...7....7.....6..29..........1.....
+....2.9..5...1.....3.......6..3.8.7.2..9...............4.7......1....2........51.
+....2.9..5.6......3.........2....4.8.4.3..........5...1..6.7.5..8..4.............
+....21...........3.......8.3.2...6..7...9.......7...4..4.5..1..8..4.............2
+....21.........43.6.........8.7......4......1.......622.1.5.......3..8..5........
+....21.........46.8............9.2.163.7.................4...3.52........91......
+....21.........53.6.........8.7......3......1.......622.1.4.......5..8..4........
+....21.........83.6.........8.7......4......1.......622.1.5.......3..4..5........
+....21.....8...3..7..........43..6......7..1..8........2.6.....5..8.....1......5.
+....21.....9....3..............4.2..17.........36.....42....7.....3...658........
+....21.....9...3..7..........43..6......7..1..9........2.8.....5..9.....1......5.
+....21....3......8.........5......736.2.4....1.........5.3...........21....8..6..
+....21....3.....4..........2.1.6.5.....7...3.9.........5.3..8..6.......2...4.....
+....21....3.....4..........2.1.6.7.....7...3.5.........5.3..8..6.......2...4.....
+....21....3.....4..........2.1.6.7.....8...3.5.........5.3..8..6.......2...4.....
+....21....3.....4..........2.1.6.7.....8...3.5.........5.3..9..6.......2...4.....
+....21....3.....4..........2.1.6.7.....8...3.9.........5.3..9..7.......2...4.....
+....21....3.....4..........64.3.......7.....2....5.1..5..4.....2.....7.....8...3.
+....21....3.....4......5...2.....1.5.8....6........2.....36..8.7..8.......1......
+....21....3.....6..........67.3.........4.1.2.........2.15.....4..6...........87.
+....21....3.....6..........67.3.........4.2.1.........2.15.....4..6...........87.
+....21....3....4..............35..1.6.......2.4.7.....2.8....5....4..7..1........
+....21....3....4............5.3...8.6.......27..4.......1....4.2...6.......5..3..
+....21....3....4............8.3.....6......2....7.....2.1.6..5....4..3..5.......7
+....21....3....5..............4..36.7..9.....2............7..12.5.38....9........
+....21....3....5...........4......72.5.86.......3.....7.1....4....5..8..2........
+....21....3....8..............36..4.9..5.....2........71......2....5.9...4.8.....
+....21....3....8...........7.6.....2...3..5.....9........65.3..21.....7.4........
+....21....3..7....6.......5...6..7...2....3..8..4.....4..85..........21..........
+....21....5.....9..3.......67....2.....54...3...9........4...5.8.....1..2........
+....21....5.....9..3.......67....2.....54...3...9........4...5.8.....6..2........
+....21....5....3..............56.4..9..4.....2........7......12.6.85...........9.
+....21....6.....4..........5.2.....11..6.....9..3........4..76.2...5..........3..
+....21....6.....7.............76..5.2.....4.....3.....4.....2.1.7.63..........8..
+....21....6....3..............36.4..8..4.....2........7......12.4.65...........8.
+....21....8......6.........5......1..3.7........8...4.2.1...9.....65.8..4........
+....21....8....3...........2.1.7..6....3..8..6.....4...5.8.....7......2....4.....
+....21....9.....4........8....37.1.5.8.............2..1.....3..3..8........9...6.
+....21....9.....5..........25.8...7.6.....2.....9.....3.....1.2...47............6
+....21...3......6..........421.........75..4..9.......6..8....5...3..9........1..
+....21...3......7..........6..8......4....2.....7.......1.5.4.27..3.....8.....1..
+....21...3.....4..7.........2..1..5.4..3....7..........1.....2....8..3...65......
+....21...3.....4..8.........2..1..5.6..3....8..........1.....2....4..3...75......
+....21...3.....6...........61.3.....7.......2....8..4....6..15.42........8.......
+....21...35.......6.........42.....5...36..........8........67.1..5........4...2.
+....21...4.......5.......8.7..4...6.....3.2..5.........2..6.1.....7....3...5.....
+....21...4.......5.......9.8..7...6.....3.2..5.........2..6.1.....4....3...5.....
+....21...4.......7.......8.5..4...6.....3.2..7.........2..6.1.....7....3...5.....
+....21...4......3.5.........2..6.8..7..4...5...........18...2.....54.......3.....
+....21...4......7..........6..75....3.......1...4..8...12....5..8....2.....3.....
+....21...4.....5..8.........16.....4....7.8...........73.4........5...16.......2.
+....21...4.....7..1.........26....9....4..8..............76.3.29..1......5.......
+....21...4.....8...9...........6.48...1....2..3.7........9..5.32.......6.........
+....21...4.....9..8.........16.....4....7.8...........73.4........5...16.......2.
+....21...4.5......7........62......3...5..7.....4..6........45..8..3...........1.
+....21...46.......7.........2..3.4.....4..5....8......5..6............23..9....8.
+....21...47.......8.........2..6.4.....4..5....9......5..7............23..6....9.
+....21...5.....4.........9..6.....273..4........5........67.8...21......4........
+....21...5.7......4...........5..74.3.....5...2..............12.8......6...73....
+....21...53........4.......47.5...........23........8.6.2...1.....3....4....8....
+....21...6.......85........31..........7....4.2..........46..5..7....2........31.
+....21...6.....5..7......8.4..8......3....2...7.......5...3......2.....1...7...4.
+....21...6.....8..3........4..8..7.........2....5.......96..3...1.....9..2..7....
+....21...6.....8..3........4..8..7.........2....5.......96..3...2.....9..1..7....
+....21...7......9.3.........18.7.6.....9...3..2.......4..5..8........2...6.......
+....21...7.....4..8.........2..1..5.4..3....7..........1.....2....7..3...65......
+....21...7.....6.........4.....4.2........3.18..6......3.5...7..21........5......
+....21...7.....6..2.........1.....2....3..7...8.......35.....1....74.......6..3..
+....21...7.....8..8......5.4..9......6.....2...7......5...6.....2......1...7..3..
+....21...73.............84..659............2..1.......4...3....2.....1.....8....6
+....21...8......3..........421.........65..4..9.......3..7....5...3..9........1..
+....21...8......4.1.....5...1.....725..3.........9......65..3....2.......7.......
+....21...8......6..........421.........75..4..9.......6..8....5...3..9........1..
+....21...8......9.4.........23.5.6.....6...8..1........7......2...8..4..9........
+....21...8.....9..3.........16.....4....7.3...........73.8........5...16.......2.
+....21...8.....9..5.........16.....4....7.8...........73.4........5...16.......2.
+....21..4569..................5..63.2...7...........8..3.6.....4.......2......1..
+....21..4576..................5..36.2...8...........7..3.7.....4.......2......1..
+....21..4576..................5..36.2...8...........9..3.6.....4.......2......1..
+....21..4576..................5..63.2...8...........7..3.6.....1.......2......1..
+....21..4758..................5..68.2...6...........3..3.8.....4.......2......1..
+....21.4...3.....7............7..1..6......2...89.....12....5.....86.....4.......
+....21.4.6.......5.........53.6...........12.......7..312.........58......4......
+....21.5.3.....6...........7..54...........21......8....46......2.....7....9..3..
+....21.5.8.....4...........3..64...........12......8....48......2.....7....7..3..
+....21.5.8.....4...........3..64...........12......8....48......2.....7....9..3..
+....21.7..3....8.9............9..3.47.1................4.3..2..1......5.6........
+....21.7..96.................8...3..1...4.......9...6.2.....4.1.5.6...........2..
+....21.7.5.....1..6........91.....6....83.......5........9....5.7.6...........8..
+....215...8.....6............53...4...16.....2............7.2.163.............7..
+....215..8......6...........12........5....3..4.8.........5.1.77..3...........2..
+....215..8......7...........12........5....3..4.8.........5.6.16..3...........2..
+....217..86.....9...........12.6...........35...5.....9.53...........1..3........
+....218..4.....1......9....3...7..9.5..6............2..1.5........4..5....2......
+....23.........57.....1.........41.36.75.....9.........1....4.....9...6.........8
+....23.........65.....1.........41.38.65.....9.........1....4.....9...6.........7
+....23.......7.3..1...........1..58..3.....4...2......84.6........4....7......2..
+....23.......9..6.1...........1...9..52.......3.......7..6....5...8..2........4.3
+....23......5.6...7......8....6..3.41..............6...36....1....47.....5.......
+....23......5.7...8......1....7..3.41..............7...37....6....48.....5.......
+....23....1............8...2.4...7..5..6..4..8.........6.14...........83.......2.
+....23....5.....7.....1....1.36...........84.2.........4.5.6.........1.3......7..
+....23....6..8....4.........1.4...65.......4...3......5.2...3..7.....8.....1.....
+....23...1.5......9...8....57.9............28...1.........6.9.....7..5...2.......
+....23...6...1..........5.....5..3.6.2....4....18.....3..4.7..........1..9.......
+....23...8.....4........1..1..8..6.........7...4.......5..6..2..2.....35...4.....
+....23...9...8...........4.2..1..5.....6..17.8.........7.4...........3.8.1.......
+....23..71.....6......5....63.....1..27.........4..8..8..6.............3.......2.
+....23..81.5....9.............5...1.63........8..4..........3.2...1.6.........7..
+....23.1.46...................4..6.5.1..3.......7.........1.2....8....3.5..6.....
+....23.5.76...................7.91..2.3......5..8.........4.7...9.6............2.
+....23.5.9.....8............32...6.....5......1.......7..86....5.......3...9...1.
+....23.8..54...................7.2...1.4.....8......3....6..4.1..1...5..3........
+....23.9.854..................1....53.9............2...1.89..........63....5.....
+....231..45.......8.....6.....4...78..1.............5..6..1.2..7..5..............
+....234..1.7...............5..71.....4....3.....6...2....5...17.2...............8
+....234..18.......7...........89..7.5.....3.....1........5....8..3....2..4.......
+....236...1.....5..........3.2.7.......5...4.6...........1....8.5.4.....7.....3..
+....237..6.1..........7.......8..3..4..1............2.53..............46.2......1
+....238..1.6...............24..8.......5....7.......6...76...9..8....2.....1.....
+....239..76.................1.68.......7....6......3..3.2.........1...8.9......4.
+....24.........7.8.1..........7..9..6.2......4..8.....2.....54....3...6.....8....
+....24.......6..3.1..........75.1.8..24.......5.............7.26..3...........4..
+....24.......8..3.1..........71.5.8..24.......5.............7.26..3...........4..
+....24.......8..3.1..........75.1.8..24.......5.............7.26..9...........4..
+....24......5.9....3....7..3..6........4..8..2.1.......8.17...........29.........
+....24.....9.8....3........54.6.....1.....8.....7..2.....3...5..1.....4...2......
+....24....1.........8.........9...382..1...........6..4.....21.....5.7...9.8.....
+....24...8...1..........5...6.5.3......6....9.......1.7.9.........3..6..1.....4..
+....24...9.3..........6......87..1.6......4........2..24........1.....9....3...5.
+....24..5.1....3......8.4.....6..71.2....................1...6.4.3......5..7.....
+....24.3...1...........8...23....4.....6..7.1.8.......5..17...........84.........
+....24.3.1.9..........3.....7.6..1.5.2.............8..8..1............24.....9...
+....24.3.9.1..........3.....7.6..1.5.2.............8..8..1............24.....9...
+....24.5...1.......8........3......2...1..8..2....6...7.....64.5..83.............
+....24.7...1.......8........3......2...1..8..2....6...7.....64.5..83.............
+....24.8..3...........6.......1..3.52.4............7...5.3..1..6..5...4..........
+....24.9..3...........6.......7..3.52.4............8...5.3..1..6..5...4..........
+....243...1..7..5..6.......57.1.....2.....4.....6.....4.....8.........1....8.....
+....243...7..6..5..1.......56.1.....2.....4.....7.....4.....8.........1....8.....
+....245....1....6..........42......3...1...9.5........37....4.....98.......6.....
+....245...1....7...4..8...........23.9.1.....6........8.35............4.2........
+....246..1.3...............5.2....1..4..8.......6....77..1......2....8.....3.....
+....247........9..1........3..65....8.....4.....3......49....2....1....3.......5.
+....247...8.1.........6....72..........8.9...............5..21...9....8.3...7....
+....25.......8..4.1..........36.1.8..25.......6.............2.37..4...........5..
+....25....8....6...1.......2....7..5...34.............7..8..3.....6..18.5........
+....25...1.............8......16...4.85............9..6.74...........83..2.....5.
+....25...4...8..........7.....3.71..5.....6..2.........1.....85.3.6............2.
+....25...6...1....8...........4.3.9.9..8...6..1........5....1........2.3...9.....
+....25...8.....3......6....46...2......3....7.5....9.........257......4....1.....
+....25..1476..................4..36.2...8...........7..3.6.....5.......2......1..
+....25..37.1................2...9......6...7.......8..65....2.....14....8..7.....
+....25..37.1................2...9......8...7.......6..65....2.....14....8..7.....
+....25..6.7....9............8.9..42....1.....2........5.2....3....74....6........
+....25..8.1....6......4....9...8..2..6.4.................1..4..8.2......5..3.....
+....25.1..3...........1.....4.3..6...7....4..5........8..6........4..3..1......2.
+....25.1.3...4....9.6........83....9.5.....2...........4....5........6.3...1.....
+....25.4.3.1..........3.......8..9.125.............7....97..8.....1......2.......
+....25.6..41..................43...1...1.....5.........6.3.8.........25.3.....7..
+....25.6..41..................47...9...1.....5.........6.3.8.........25.3.....1..
+....256..7.1..................1...73.5..6...........4.56....2..3..7..........8...
+....256..8.1.........4........8...4..2....5.........7.3.....4.....1....8.5..7....
+....257..61...........8.......6..43.2..7.....8.........3.4..1....5..............2
+....258...71...............3.....2..5..4........1.9...28..6.......7...1.........4
+....26..4.1.....9.....5.....478...........23.6.....5..3.5.........1.....2........
+....26..4.1....3...........5...4..6..7.1........8.......43..8..6...7....2........
+....26..5.....4.8..1..........17.3..2.4......8........5......4....7..1.....3.....
+....26..57......3...........2....6.45..1........7........3...5..64........7...8..
+....26.5..9....1...........3......2..1.7........9.....2.6.....8...13.4..5........
+....26.5..9....1...........4......2..3.7........9.....2.6.....8...14.3..5........
+....263..8.1.....................7325..1...........6.....8...4..6.5.....72.......
+....264...1...........7....6.5....9.4..1...3.2..8......8.3...........7........6..
+....265..8.1.........4........8...4..5....6.........7.3.....4.....1....8.6..7....
+....267..4.1.........5........1...5..2....6.........8.3.....5.....4....1.6..8....
+....267..4.1.........5........1...5..6....2.........8.3.....5.....4....1.2..8....
+....27.......1.8..7.....6..3..6.............1.....5....21....6....3..54..8.......
+....27.3..8....1...........2.6.....7...1..4..3...5....5......2..3.4........8.....
+....27.4.5.......3.............652..1......7.3.8.........1....8.2....6.....3.....
+....27.4.8.................2.45........3..1.67.........6.1..3...8..3...........2.
+....27.5.....3....6...........6..1.4..31..5...2.............72.4..8...........6..
+....27.6..8....1...........3......2..1.8........5.....2.7.....8...43.5..6........
+....27.6..8....1...........4......2..3.8........1.....2.7.....8...54.3..6........
+....27.6..9....1...........3......2..1.5........1.....2.7.....3...48.5..6........
+....27.8..54...................6.1...3.4.....7......2....3..4.1..6...5..2........
+....276...1...........8....7.5....3.2..1...4.6..9......9.3...........8........7..
+....276..4.1.........5........1...5..6....2.........8.3.....5.....4....1.2..8....
+....276..4.1.........5........1...5..6....7.........8.3.....5.....4....1.7..8....
+....278...61................9.5.3.........72....1...4.2...9.......6....34........
+....28.........1......3......8....2..7...4....5.1........4..7.53..7..6..2........
+....28.......1..7........35.5.6..2...37............1..8..4........3.5...1........
+....28.......1..7........63.3.5..2...67............1..8..4........3.6...1........
+....28.....6.7.....1.....3.43.5...........2.6......7..6.2......3......9....1.....
+....28....2..5...........6.6..7...........25.1.........59...4.....6.1..7...3.....
+....28....8..5...........3.6..7...........82.1.........29...4.....6.4..1...3.....
+....28...36...........4....5..1....72.8.............1..7.6..........32.....7..4..
+....28...8...1..........7.....6..4.32....4...1..7......3.4..5.........1..6.......
+....28..596.....4.....1....7..5.9......6..8..4...........7...9..8....1...........
+....28.3..54...................7.1...3.4.....8......2....6..4.1..7...5..2........
+....28.3..9....1...........2.7.....8...4..6..3...5....5......2..3.6........1.....
+....28.3..9....1...........2.7.....8...4..6..3...5....5......2..3.6........9.....
+....28.5.6.................2.56........4..1.78.........7.1..3...9..3...........2.
+....28.5.6.................2.56........4..1.78.........7.1..4...9..3...........2.
+....28.5.6.................2.56........4..7.18.........7.1..4...9..3...........2.
+....28.5.9............4.......7..9.624.............7...8.5...4.6..9...........1..
+....28.7..5....1...........4......2..3.6........1.....2.8.....4...51.6..3........
+....281..43......57........65.3...........21...........62....8....45.............
+....283..7.1...........9....2..3.8..6..7..............4..5...17.8.3..............
+....286..7.1...............9.......2...7.4......1......8.53..........27..1.....4.
+....29.........1......3......9....2..8...4....5.7........1..8.53..8..6..2........
+....29...4...7..........3..2.93.....7......2....1....6.8.6..5...1..............7.
+....29..39..1.....7.....6...2.7...9...6.......3...........36...5......1.......4..
+....29..41.7...3..8.........9.....5..6....1.....1.........4..693..7..............
+....29..476.....3.....1....8..4.5......6..9..3...........8...5..9....1...........
+....29..61.7...3..8.........9.....5..4....1.....1.........4..293..7..............
+....29.6.13................5.2.....4...6..1........7.32......8..1.3........7.....
+....294..6.....2..1.........2....5.....7........6........1...68.9..5........3..7.
+....295...3.....7.4........6.......3...5...4.....1....2.....1...5.7........3....8
+....296...14..................7....16...8......2...3..2.....56..7...1......3.....
+....3...1..47.....2.....6...3.....7....8..5...1............2.3.6..5.....4...6....
+....3...1.7..9....8..........51.4.2..3....6.....8.....1..5...........36.......7..
+....3...18..4.....2........6.....24..1..7..........8...7..5..9..3.2........8.....
+....3...2..6...5...1.4...........16.....8..4.2.....3.....7.6...3.......5...1.....
+....3...2.4....5...1..........4.9.1.3.......72........6..5...........94....87....
+....3...2.5....7...16............51.4...8..........6..2..5.7......1...8.........4
+....3...2.5....7...61............51.4...8..........6..2..5.7......1...8.........4
+....3...25......1.3..4........7.53...2.6......1............746.....1....8........
+....3...27......1.3..4........8.53...2.6......1............746.....1....8........
+....3...49......8.....1....2..4.....8..9...........7...75...13..1....6.....2.....
+....3...6..1............8..2.....41..6..5...........9.73......2...4.15.....9.....
+....3...7.5.....6.............2...4.7...1....3.....5..6.....1.3.4.8........5..2..
+....3...72...1...........6..7.8...9..68............2..1.....4.....7.9...3..6.....
+....3...78..4......5....1......512..3......4......9......6...84..1.......9.......
+....3...8..2....5..4.......1..6..7..86..............2....2..4..3.......6....51...
+....3...9..4...2..6........1.....84......2........9...53.1...6..9.8.........7....
+....3..1..2.9......5.......3......7....5..3..1..8..........1..5.8....2..7...4....
+....3..1..24.......5.......6..17....1.......5......2..8......7....4.2......6..3..
+....3..1..24.......5.......6..17....1.......5......2..8......7....4.2......6..9..
+....3..1..46.......5.......1.....6.48...7..........2....56.2..........71...4.....
+....3..1..5.6......4........675..4..2...1.............1....2...3.......8...4..6..
+....3..1..6.4..............53....7......194..............5..6.21.93.....8........
+....3..1..6.7..................21.9..5....8..3...........8.67..1.2......9..5.....
+....3..1..84.......2.......5..16....1.......8......2..6......5....4.2......3..7..
+....3..1..84.......2.......5..16....1.......8......2..7......6....4.2......5..3..
+....3..1..84.......2.......6..17....1.......8......2..7......6....4.2......5..3..
+....3..1..94.......2.......5..16....1.......9......2..7......6....4.2......5..8..
+....3..1.4..6.....2........7..2..6......18........4....83.......1......5...5..2..
+....3..1.6...5.....2.......34....5.6...8..3..7..1.......3..2......7..6...........
+....3..1.8......4.2..5.........186..7.....8......4.......7..2....92......1.......
+....3..124..5.................4..3.561............7....2..7....5.....4.......1.8.
+....3..124..5.....8........7...6.5......12......3........8..4...6.....2..1.......
+....3..125..4..............7.....56.....21......3........5.76....8...4...1.......
+....3..125..6.................5..4.671............8....2..8....6.....5.......1.9.
+....3..126..5..............8.....67.....21......3........6.87....5...4...1.......
+....3..152..6...7.4...........47.8..6............5.....5....3.....2..4...1.......
+....3..164..6......7..........4.28...1...............9...7...3.2.....4..5...1....
+....3..1742...................1.2...3.....8.....75......15..2..6.....4...7.......
+....3..19.......2.5.........2...7.6......47....1.........16.5..4.....8.....2.....
+....3..1958.6............4.62.7......5....2......9.......2..8....1......9........
+....3..2........49.5.6.....9..1..7..2...............6..86...1......42.........3..
+....3..2.....1...7.4....5.....8..45.3........1........6.......1.2.5..........73..
+....3..2....4....7..1......2.....16..4.7...........5..82......3....16........5...
+....3..2...8....4......1...36.4........5.8...7.........3.6..8..2...4..........1..
+....3..2...8...6...1..........1.8...2......7....6.....7...2...33..4..5........1..
+....3..2...8...6...1..........1.8...2......7....6.....7..4....33...2.5........1..
+....3..2..1....5..2...4........2...7.5.....3....6........5.86..7..1.....3........
+....3..2..1.6.......85.....45.....7....8.16...........7....2...2...9..........1..
+....3..2..1.6.......85.....45.....7....8.16...........7....2...3...9..........1..
+....3..2..1.7.......85.....45.....6....8.17...........3....2...6...9..........1..
+....3..2..4........9..........4.68..2.19.....3.......5...8..49.5...2.............
+....3..2..8....7...1.......3...5.4..2.9.........7..1...6.1.....5......3....4.....
+....3..2.1.7.........8.....4.....7.1...25.......3..4...2....63......1....5.......
+....3..2.5..7...............4.2..5...3..6..........1..8.....46....4...3.1....5...
+....3..2.6.1.......75......1.....5.3....4.7.....2.....83.....4....5.1............
+....3..251.7.............9.7..4..8...5..2................7..3.8...1..6...2.......
+....3..261.5...............4....15...6.....8.3..7.......8...1...2..6.......2.....
+....3..286..5.....4........5..4..6...8.....3..3.1.........82.........1......7....
+....3..29.51...................6.5..8......4.2.........4....7.6...2.9......8..1..
+....3..291............9.....4.8..5.....1......3..........5.46..9.3....7.2........
+....3..4...2....7..1.5.....7......8....6..4.....1......6...21..4...7.3...........
+....3..4.5........9.........2..8..3.1..6..5............3.7..6.....5..7..24.......
+....3..41..25.....7...........6.27...4.......8...........3...9.5.....2...1..4....
+....3..41..27.....8...........6.28...4.......9...........3...7.5.....2...1..4....
+....3..41.2.7.................5.1......84.....3....9....12..7..5.....6..4........
+....3..47..51......6.....8....2..5..83..........4.......1...4..7...6........8....
+....3..47..51......6.....8....2..5..83..........4.......2...9..7...6........8....
+....3..4721................4.3...5.....6.82..7.........6.5..1......4.......2.....
+....3..4921................4.3...6.....7.52..9.........8.5..1......4.......2.....
+....3..5...1...8...2..6....56.....4....1.2......8.....45.7...........1..3........
+....3..5...1...9...2..7....67.....4....1.2......9.....45.8...........1..3........
+....3..5..16.............785...7.......2..1..8.....2.....1.2......6..4.........3.
+....3..5..17............2.....4.1...6......9....7.....53..6......4...1........7.8
+....3..5..2....6.......1....6.4..2.....6..4......7....5......383......7....2.....
+....3..5..2..4.....1.......3.4...2.....1..8..5...6....6......4....8..7.....2.....
+....3..5..47............2.....1.4...6......9....7.....53..6......4...1........7.8
+....3..5.2......4...7.5....1.....7.....8..6...3..........6..3.1.542..............
+....3..5.7......4...8.5....1.....8.....7..6...3..........6..3.1.542..............
+....3..5.7.....2..1..........2....6.4..7........8...3..8....7...3..6.......2..4..
+....3..5.8....2...........1..6.5....2.....7.....1..8...514...........26..3.......
+....3..5612.8............7.9..2..1..8.5..................4..9....6.5.....1.......
+....3..562..4............1....7.42...6........1.......7.....3.....56........81...
+....3..562..8............1....7.42...6........1.......7.....3.....56........91...
+....3..58..72................4...73..5.6.8.......1.......4..2..87.......1........
+....3..59.2.4............1..4....78....9..........5......62.4..5.....3..1........
+....3..6......47....5...2...7.2..5..8...6............164.....3....1........5.....
+....3..6...1...9...2..7....67.....5....1.2......9.....45.8...........1..3........
+....3..6..49.......2.......3..56....1.......8......2..7......3....2.9......4..1..
+....3..6..8.2......1.....7.5...7.1..........4......8.....8.42..3......5.6........
+....3..6..9....4......15....742........8....1.......3....6..7..8....2...1........
+....3..6..94.......2.......3..67....1.......9......2..8......7....4.2......5..1..
+....3..6.1......4.7..1......3..6.......8.7.........2.....2..7.8.5..4..........1..
+....3..6.1......4.7..1......9..6.......8.7.........2.....2..7.8.5..4..........1..
+....3..62.41...............7..4.53..2...........1........3...8..5....4..6...2....
+....3..621.5...............4....15...6.....8.3..7.......8...1...2..6.......2.....
+....3..64257..................1.52..6.......8...7......1....7..4...6...........3.
+....3..64275..................1.52..3.......8...7......1....5..4...6...........3.
+....3..64275..................1.52..6.......8...7......1....5..4...6...........3.
+....3..679.1.............2..7..4.8...6.7..1...........8.....4..5..2........6.....
+....3..7......8.5.....1....2..7...6.4.....3............35...1...7.5........2..8..
+....3..7....6..4....1.......5....1.63...7..........2..93.....8....1...5....2.....
+....3..7....6..4....1.......5....1.63...8..........2..93.....8....1...5....2.....
+....3..7....6..4....1.......5....1.64...8..........2..78.....3....1...5....2.....
+....3..7....6..4....1.......5....1.64...8..........2..93.....8....1...5....2.....
+....3..7...4...5......2.......4.61..27..........5........1.94..38.....2..........
+....3..7..1.6...............6.1..5.....4.5..........3.2...7...13.7.8..........4..
+....3..7..2..8.....1.......6.4....3....2.84.....1.....3.....2..7.5.........4.....
+....3..7..5......4.1.....8.3..4........2..1......7.......5.16..7.....3..8........
+....3..7..8....6...1..........1.8...7......2....6.....2..47...33.....5........1..
+....3..7.1.6.............4.8..6.4......2..5........3.7.5....2.1...1......3.......
+....3..7.1.8.............4.8..6.4......2..5........3.7.5....2.1...1......3.......
+....3..7.2.....4..1.........38.5.......6..2...7..........1.2..5.......38...4.....
+....3..7.5..6.....1..........8...1.5.7.9...........2...8.....3.....41......2.5...
+....3..7.8......1.2..4.........185..6.....8......7.......6..2....92......1.......
+....3..72.54..6............1......3..8.4........8.....7...1....3.....6.....5..4..
+....3..752.1................7..8....4.....2...1.......6......54...1..6.....3.7...
+....3..78.192............5..6.9.1...73................5...7....4.....6........1..
+....3..8........231........49....5.....62..........1....75..6...23.........4.....
+....3..8...1.......5.......6...9.5.3.2....1..8........7..2.1...3......4....5.....
+....3..8...1....4..7..........4.1..5.2....6..3..8.....2...6.7........1....8......
+....3..8...1....4..7..........8.1..5.2....6..3..4.....2...6.7........1....8......
+....3..8...7.......2.........57.1...6......2.......9..83..6.......4..7.5......1..
+....3..8.2.....4..1.........39.7.......6..2...8..........1.2..5.......39...4.....
+....3..8.2.5.............4.5..7.4......5..6........3.8.6....1.2...1......3.......
+....3..8.29..............1..4.....3....7..6..1..2........5..2.7....4.9....1......
+....3..8127.6............4.6..7..4..52...........8.......5..2....1.......8.......
+....3..815.4.2................6..74....1.....3........4.....2.3.1.8...........5..
+....3..824.1..................4.65...8.....3....1........5..9..6.....4...2..7....
+....3..824.1..................4.65...8.....3....7........5..7..6.....4...3..2....
+....3..8421................4.3...1.....7.62..8.........7.5..6......4.......2.....
+....3..9....6...4..81...........51.73...4..........8..9..2...6.......5.......8...
+....3..9...1....4..8..........4.1..6.5....7..3..9.....2...7.8........1....9......
+....3..9...1....4..8..........9.1..6.5....7..3..4.....2...7.8........1....9......
+....3..9..4.2.....6.....7..7.1..8.......4...2.......6......78..9..6......2.......
+....3..9.5..6.....1..........7...1.5.6.8...........2...7.....3.....41......2.5...
+....3..9.6.8...............2.....6.4.5..9..........8...31....7....4.6...5..2.....
+....3..9128.7............4.6..8..4..52...........9.......5..2....1.......9.......
+....3.1....4...9...2........5.....24.....3.5....81....1.....67....2.....8........
+....3.1...2.5......4.......65.7.....3.....8.....2.....1...9...........24......57.
+....3.1...4....2..6..5........4...753....8.....1.......7.2...4.......3.2.........
+....3.1...9.5..................128..3..6......5..........4...657.8....4.1........
+....3.1...9.7..................128..3..5......7..........4...756.8....4.1........
+....3.1..2....6.........4.8...84.......1..9..6.........3...5.7...14............2.
+....3.1..2..5.................2.4.6..81...5.....7.....4......3.......7.2....81...
+....3.1..4...........6......6.....78..2.1.....7..........7.6.9.1.....2..3..8.....
+....3.1.4.29............8..7..6..3..4...1...........2....2.9.5.1...........5.....
+....3.1.46....................6...75...5...2..1.......7.8...3......1.4..5..2.....
+....3.14.2.97..............7......823.......9....4.....46...5...1..........2.....
+....3.14.8.2.........4......1..7.......6....8.......2.35....7..6..2..........1...
+....3.17.8.56...............17...3.....8....7.2.......4......85....21............
+....3.2....6....5.......4.....6...1.37.......4........24....3.....1.6..8...5.....
+....3.2....6....5.......4.....6...1.47.......3........24....3.....1.6..8...5.....
+....3.2...1.....8...9..6...7.....6.3...1.....5...........9...1..2.8.....6...5....
+....3.2...1.5.....48.......2.3...7..5..6...3......1..........51....74............
+....3.2...1.8.....49.......6.3...7..5..6...3......1..........81....74............
+....3.2...46.........7......5.1.6.4.3...2.............2.....3.8..14..........5...
+....3.2...46.........7......5.1.6.4.8...2.............2.....8.3..14..........5...
+....3.2...5....4...17......9..2..........5.1.2...........167.........8.3...5.....
+....3.2...7......5....2.......1.7...2.....6.....5........9...176.4....8.3........
+....3.2...7......5....2.......7.1...2.....6.....5........9...176.4....8.3........
+....3.2...7......5....4.......7.8...3.....6.....5........9...176.2....8.4........
+....3.2..6......5..8...7......1.4..85......3.2..7......1....7......2.......5.....
+....3.2..6.1.........4......3.7...........56........818...61.........47.........2
+....3.2..6.5......7........42..8.......3...65.9.......1..5.6........14...........
+....3.2..7..6......5........4.18..........3........7.....5...473......1...2..4...
+....3.2.57.1..........6....56..2.......1...8.4......7..5....3.....8........7.....
+....3.2.67.4...............83....6.....4.1.........9.....7...15.2..5...........4.
+....3.2.67.4...............93....8.....4.1.........6.....7...15.2..5...........4.
+....3.2.7.4.....5..1.......2...7.......6...1.3........8.......3...1.4......5..9..
+....3.2.71..4...........5...35.........1......2.......6...25........1.9.8......4.
+....3.2.861............9.....74...1.3...5.......6...4.5.....3.....1.7............
+....3.24..765.................6...87.91......4........2...4.5.......1..6.........
+....3.24.8.7...............1......57.8..2.........43...2....6.....7...3....1.....
+....3.25..1...6............4..52.3..........6...7.....5..1...4......8..12........
+....3.25.1..............3..52.9.....9..6.8..............48....7....5..1..3.......
+....3.4.......1...2..........3...15....2....7....8.......6..34.12.5.....7........
+....3.4......26.....1......2.....1..65..........8..7..53.....6....1...5....7.....
+....3.4....1.......5.......73..6...........51...8...2.4..2.9...3.....7.....1.....
+....3.4.5.1.............3..3.4.........1.6......2........8..92.5...9....6......1.
+....3.4.79.....5..1.........7.1......3....7.....8.9..........23...6...1.....4....
+....3.4.875...................6..2....6.9.....1.....7....7.1...2..5.....3.....8..
+....3.41.2.86...............45...9...1..........2.....6......723.......8....4....
+....3.42..1...6.......8......47.....3.....8.....1........5...162.......74........
+....3.42..1...6.......8......47.....3.....8.....1........5...172.......64........
+....3.42..1...7.......8......41.....3.....8.....5........6...152.......74........
+....3.45.1..7.....2.....6...4....3..8..1........2............81..3.4.....5.......
+....3.45.1..7.....2.....6...4....3..8..1........2............81..3.6.....5.......
+....3.47..81.........2.....2..5..6.......87.........3.4...7.....5......8.....1...
+....3.5....16......8.......6..1.....3.....2.....4.8...56.....4........18........7
+....3.5....6....4.......2.....6...1.32.......7........28....3.....1.6..9...4.....
+....3.5...4.6...........2...1.....8.....7..4.3...5......21...6.5.....3.....4.....
+....3.5...4.7...........2...6.....7.....1..4.2...5......81...6.5.....3.....4.....
+....3.5...4.7...........2...6.....7.....9..4.2...5......81...6.5.....3.....4.....
+....3.5...7...............1.8.....7.2...5.......6..1..3.52..4.....7.8..........2.
+....3.5...8.....1.....46......7...2.3.1......4...........5..6.8.7.1...........4..
+....3.5...9....2....14........6.1..93...2................8...1.2.3......57.......
+....3.5..1.....2......6......2...41..63.......5.......8..2.4......7....3...1.....
+....3.5..2.....4..1..6......5..4...........61.....2.....78...3..4....7.....1.....
+....3.5..2.....4..1..6......5..4...........61.....2.....98...3..4....7.....1.....
+....3.5.1..86......2....4.....4..27.3...5....1.........4.2.............3.......8.
+....3.52..41.............7....6.14..28.......7..3........1..6......2....3........
+....3.57..41..................3...465..2.....8.........6..7....3.....2.......4..1
+....3.57..8.6....1............1.96..3.7......4............7.32..1.......5........
+....3.58.2...6....1.........4..8.3.....9....2.........9..1.7....8.....4....2.....
+....3.58.2.1...............46..............71....8....35....6.....1.74.....2.....
+....3.6.......1...2..........3...15....2....7....8.......6..34.12.5.....7........
+....3.6....8....4..1........9.8.1..52.....3.....4........9...8.6...4....3........
+....3.6...1.7...........2...8.....1.....6..4.3...5......41...7.6.....5.....8.....
+....3.6...7......5....6.......7.1...2.....4.....5........9...176.2....8.3........
+....3.6...7...1....2.....8..4.2....55.....3......8.......4...2.3.......96........
+....3.6...7...1....2.....8..4.2....55.....3......8.......7...2.3.......96........
+....3.6...7.5...........2.....1...783........2.........85....1....4.23......6....
+....3.6...8....4.....57.....1...4..........5.........3..7...16.5.32.....2........
+....3.6...9....2....14........5.1..93...6................8...1.6.3......27.......
+....3.6..1........2...........6..51...7.4.....3..........2.1..8.64...7.....5.....
+....3.6..1.....5......7......8...41..73.......6.......9..2.4......1....3...5.....
+....3.6..2........1.........4.1...7..3..9............1...4..36...5...9..8..7.....
+....3.6..2..5...........1.3....1..9.8......2......6.....54..7.....2.8....1.......
+....3.6..4.....1.......7....3......6...48..........5..2..5.4......1...7..6.....3.
+....3.6..5.....3....1.......2....7..6..4........1.8......5...84.3..2...........1.
+....3.6..7......4.......8...26.........4...1..3.......4..7.1.......5...3..8...2..
+....3.6..7......4.......8...36.........4...1..2.......4..7.1.......5...3..8...2..
+....3.6.1.47...............3...6.5.......2.4.1.........2.4.7.........38....2.....
+....3.6.1.8...2.........7..6.17............53......4...3..5..2....1.....7........
+....3.6.24...8....7........5..1...7.......2......6.....9.4......2....3.....7.5...
+....3.6.251...4............47.....1....6..5.....8.......62.....3.....4.........5.
+....3.6.8.1...7...............5..12.9...8..........7..3.94........2.1...8........
+....3.6.8.517...........2..3..5...6......1...8...........4...712...8.............
+....3.6.9.81..........7.....7.5...1.3...4.............6..4..2.....1..7.....8.....
+....3.6.9.81..........7.....7.5...1.3...4.............9..4..2.....1..7.....8.....
+....3.6.98...7....1.........9..6.7.....2............8....8.5.2..4.1...........3..
+....3.65..1.8.....2.........35...9....1..4......2.....7...96..........31.........
+....3.65..41.............2....7.14..28.......5..3........1..7......2....3........
+....3.7.....6..4....1.........1.8.5..7....2..4..5.....23..7............8.......1.
+....3.7...1.6...........2.....1...832........5.........36....1....4.25......7....
+....3.7...1.6...........2.....1...892........5.........96....1....4.25......7....
+....3.7...2.....5......1........84..6......1..5.......3.1...6.....25...8...9.....
+....3.7...4.6...........2...5.....6.....1..4.7...2......81...5.2.....3.....4.....
+....3.7...64............1....52.6...7.....3.....8.........14..6.8.....2.5........
+....3.7...8.6...........2.....1...832........5.........36....1....4.25......7....
+....3.7..3...5..........1.........82.6.....5..19.........9.74..2......3....1.....
+....3.7..4...5..........1.........82.6.....5..19.........7.94..2......3....1.....
+....3.7..6.....4..2..1......76.4....5......2..........1..2......4......8...8.6...
+....3.7..8........4...........3...861......4..7.5........614....5....2.......8...
+....3.7.2.41..................1.5.3..6.4.....7........2...7....5......4....6..8..
+....3.7.2.41..................4.5.3..6.1.....7........2...7....5......4....6..8..
+....3.7.2.91..................9.4.6.2...........1.....7..62.....4.....9.8.....5..
+....3.7.54...9....8........6..1...8.......2......7.....2.4......5....3.....8.6...
+....3.7.6.1...8...............5..12.9...6..........8..6.94........2.1...3........
+....3.7.6.1..42............6.31.....7......8.......2.....6....3.2.....4.5........
+....3.7.8.4.....5..1.......2...7.......6...1.3........8.......3...1.4......5..2..
+....3.7.8.4.....5..1.......2...7.......6...1.3........8.......3...1.4......5..9..
+....3.7.8.4.....5..1.......2...9.......6...1.3........7.......3...1.4......5..2..
+....3.7.8.4.....5..1.......2...9.......6...1.3........7.......3...1.4......5..9..
+....3.7.8.4.....5..1.......2...9.......6...1.3........8.......3...1.4......5..2..
+....3.7.826..4................8.1..........6254.........12...........43.......5..
+....3.71.8.2......5...........5.14...1....6.....2.....4...6.......3...2........5.
+....3.72..1...5.......8......26.....3.....8.....1........4...152.......67........
+....3.72..1...5.......8......26.....3.....8.....1........4...162.......57........
+....3.72..1...6.......8......21.....3.....8.....4........5...142.......67........
+....3.75..1.8.....2.........35...9....9..4......2.....7...96..........31.........
+....3.79.62.5............1..79...3.....6..............5..4....228...........7....
+....3.8......42...1.........23.....6...1...7..8.....5....4..3..5..7...........2..
+....3.8....2...4...5.6.....4.....3.....5....7...1..........2.518...7...........6.
+....3.8...1.5...........2..8...5.....6.....4.........1..94.1...2.....73......6...
+....3.8...2....4.....9........1..2.73.5.7....4........8..6.2..........5........3.
+....3.8...5.6...........2.....5...4.2.....3....1.......4.1...6......7.5.8...2....
+....3.8..4..6...........7...8.1.7......5...4........2.5...2..6..3...8.........4..
+....3.8..5..6.....2.........3....48.7..5..........1....84.6.......1...75.........
+....3.8..7..5.......1.......4..1.3..9......7.....8.....1....65....7.2......9.....
+....3.8.175...................4.2.6.6..5..2..1..........8.1.....2.....5....7.....
+....3.8.2.41..................4.5.6..6.7.....8........2...8....5......4....1..7..
+....3.8.2.61..................1.4.5..5.7.....8........2...8....4......1....6..7..
+....3.8.76.25.....4.........7.39....5......2.............2.4.6..9....1...........
+....3.82..1........7.......2..4...5.3...9............1.4.1.7...6.....2.....5.....
+....3.82..1........7.......2..4...6.5...9............1.5.1.7...3.....2.....6.....
+....3.84..1...7.......9......41.....3.....9.....5........6...152.......78........
+....3.85.7.4.6.............2..1....4.8..5..........6...3.....9....4.2......7.....
+....3.86..1.............2..6..72.......5...413...........1.4..72.5...............
+....3.86..41..7............2......3..5.1........5.....3.....7..6...2.......4....1
+....3.9...1.5...........2..2...5.....6.....4.........1..84.1...7.....83......6...
+....3.9..4.1......5.........3..8...1..2....4........56.7....2..6..4........1.....
+....3.9..4.1......5.........3..8...6..2....4........51.7....2..6..4........1.....
+....3.9..4.5......1.........3..8...5..2....1........46.7....2..6..5........1.....
+....3.9..4.8......1.........3..7...5..2....1........48.6....2..5..8........1.....
+....3.9..5.1......4.........3..8...1..2....4........56.7....2..6..4........1.....
+....3.9..5.1......4.........3..8...6..2....4........51.7....2..6..4........1.....
+....3.9.2.41..................4.5.1..7.6.....9........2...9....6......4....8..3..
+....3.9.2.41..................7.4.1..6.5.....9........2...9....5......4....8..3..
+....3.94..2.5.....1........6..1.4.........3.....7......3..8...4...6...1...9......
+....3.95..21.........5..........1.823...7.....9.......7..6..4.....8..........2...
+....3.95..81...............5.....2.....1.8......6..........4.683...5...72........
+....31..........62.........17.....5.....4.1...6.2.....4.5...3.....6....98........
+....31.........2..........9..8....637..2..5.....6......3.....1.9...4.......8..6..
+....31.........8.2.........3.7.........8..4..1..5......9....637...21...........9.
+....31.........94......8...6.29.....5......133.........8.7..4...1...........5....
+....31.........95......8...7.24.....6......133.........8.5..4...1...........6....
+....31.....7....2................43.....5.1....58.....46.2....91....7....3.......
+....31.....8...7..4.......9.4.6..2..53.......1............4..1...6....5....7.....
+....31.....9...1..7........2.....3.....9....4...5.....13..8.......4...9.6......5.
+....31....1....7......6..2....7..4.1..62.....3............8..6..7.9.....5........
+....31....2.....5..........3.1...8.....57..4.6...........2..7.5.8.4...........3..
+....31....2....4......8....26.4............81.........5..6..2....1..7...3......5.
+....31....2....7........8..5...4..3..7.6..............4.3....5.1..7..6.....2.....
+....31....2....9...........3.1....5....27.4..8........69.4........7....2.......3.
+....31....29.......6.......8.....3.5...7..1.....2........4...261...8...........7.
+....31....4.....5...........6.54.......8..1..7.......32....9.........56.1.3......
+....31....4....2..............27..5.3.1....4.6........5.....6.3.9.8........4.....
+....31....4....2..............27..5.3.1....9.6........5.....6.3.9.8........4.....
+....31....4....3...7.......1.9...6.....7....23...........47..5.8.....1.....2.....
+....31....4..8....7.....2...3....8.....7..6....1......2..6...5........13.....4...
+....31....5.....2..........6.....1.7.4.2........5..8.....42..6.1.3......8........
+....31....5.....4........9.....2.8..3.....1...4.6.....7.....3....94........5....6
+....31....5....8....9.........26.5..3.1......7.........4.8........5...7.6......3.
+....31....6.....7..2.......45.7........5..2.........831.8.5..........6..3........
+....31....6.....7..2.......45.7........5..2.........831.8.7..........6..3........
+....31....6....5...8........5.6..4..3......2.7........1.2....3....46.......5.....
+....31....7....8...........5......31.4.8............2....48.9..3.2......6..7.....
+....31....8.....6..........54.2....83...7....1..6...........51..2.8...........3..
+....31...2.......7.4...........6.18.7..5...............1....63.5..7........2..4..
+....31...2......5.........75..2......3......6......1...61...4.....5..32....8.....
+....31...2......6.4.........7....8.36..2...............38.7.1..5..6...2..........
+....31...2......7..........5..8......3....6.....7.......6.4.3.17..2.....8.....4..
+....31...2......8.5......7....8...2..34............6...6....1.4..75...........3..
+....31...4.......6.........7..42.....1....8.....6.....2..76......5...31........5.
+....31...4.......6.........7..42.....1....9.....6.....2..86......5...31........5.
+....31...4.....2...8.......2.54.........7..3.6..........35......7.....8....2..6..
+....31...4.....2..8.........3.....172..4...6.............24.5...17.....3.........
+....31...4.7......1.........3..2.6.....1..4...8........2.....8....5...3.5..4.....
+....31...5.......6............6....4.7.2......1.....8.2..54..........31.6.....7..
+....31...5.......8......2...12....3....8....4.7.5.....8..6..7......4..1..........
+....31...5......4.2...........4...2..8..1.....3....6..4.95...........3.8........7
+....31...5.....4..............2..6..3.7.......1.......2......18...56...3...4...7.
+....31...5.....7...6..........68.2..731................2.....834..7........5.....
+....31...5.....7..2........62.5...1.....4..83..........38.....7...6..2...........
+....31...6.......5............2....4.7.5......1.....8.2..64..........31.5.....7..
+....31...6.....5...1..........5..2...83.........7.....5.7....4.....8..3.2..6.....
+....31...6.....8...2.......5..84.....4.....13......7....3....4.7..5........6.....
+....31...7......2..........41....3..2..6.........8...95..2...1..3....8.....4.....
+....31...7.....2..4........5.42......3.....19...7.....2..6..4...1..8.............
+....31...7.....2..5.........18.6...3...5..4...........43.7............18.......2.
+....31...8...6.....9.......3.1.........5...4.9.......2.4.9...........36....2..1..
+....31...84................1......465..4...7...3.......6.2...........3.5....7.1..
+....31.7..5...7.....6.......2.6..5......4...........3....2..1.84.....6..3........
+....31.8.52...................5..2.9.7....4....3........6...13.4..27.............
+....31.9.62....7..............84.6..3.1......9.........7.6........2....4.......3.
+....31.9.62....7..............84.6..3.1......9.........7.6........2....5.......3.
+....312..6.8................1....3..7..6.........5..4.5......63.3......4...2.....
+....314..8.6...............7..6.4.........3.1....7..9.5..8...2..1..........2.....
+....316..2.......7......1...5.2...4..36........1......8..71...........2.......3..
+....316..2.....8...........79.2...........31...........13....5...6.4.......7....9
+....316..2.....8...........97.2...........31...........13....5...6.4.......7....9
+....317.......8...4.........6.2...5....47.....1..............627..5.....3.....1..
+....32.......7....1........5.81........6....3.......7.23..4....4..5..8........1..
+....32.......7..8.1...........4...7..62.......3.......4..1....6...5..2........5.3
+....32.......8....1........5.91........7....3.......8.23..4....4..6..9........1..
+....32....3.....5..............1.8.25.46.....7...........5...4.3....6....2....1..
+....32....5....2...4..1....8....4...3.......1...5........7..54.6.1.............7.
+....32....8....5......7....76.....2........47...1........8..6.59.....3..2........
+....32...8.....7.........9.2..9............45......6.3.451........8..1...3.......
+....32..1.87............5.....8.6.7.1.......3.........2...5.4.....3..6.........8.
+....32..5.1....4...........2.3....1....4..7..5.........7.1........7...8.6.......2
+....32..5.1....7...........2.3....1....4..8..5.........5.7........1...4.6.......2
+....32..8.71...............2.......34..7...........6.....1..27.3..5......6.....4.
+....32.4..6....1...........2.3.....8...1..7..4...5....5......2..1.6........9.....
+....32.4.98................2...1......39........8...6......43...6.5...........8.2
+....32.7..4....1...........9.3.8.......6..4..8.....5.....1...39.5.4..............
+....32.7.4.1..................5..8...7....1...2..7....6..4.1...5..6...2..........
+....324..1...........6........78..5..4.5......32............2.89..1...........7..
+....324..5.1..................17..5..2..6.......5......4....2........3.68..7.....
+....324..6.1..................67..1..2..5.......1......4....2........3.58..7.....
+....324..6.1................37....2..4..5.......9...8.1..8....9......3.....1.....
+....325...61...............2.....39..4.1.................84...13..6...........72.
+....325...61...............2.....39..8.1.................84...13..6...........72.
+....325..6...1..7.8.........2.4.5......6...8.........1.3....2..4..8..............
+....325..6...1..7.8.........2.4.5......8...6.........1.3....2..4..6..............
+....325..8.4................37....2..5..6.......9...1.4..8....9......3.....1.....
+....326...51...............3.....42..8..5.......7...6.6.....3.....5....9...1.....
+....327..4.1................3....2.861.4........5.....5..6...4..2..7.............
+....327..41........8..........8.9.1...25.....3.....6.....15......9...3...........
+....328...61.9.............4...8.3..2...........1.....39..........6...1....5...4.
+....329..1............9......486.....9.5...........2..73.....5.2..1.............8
+....34.......2..8.7...........9..3.15..6.....2.........1.8.9....3....2.........5.
+....34.......8.5..1.........281......5.....34........64....6.7....2..8...........
+....34.......8.5..1.........281......5.....36........44....6.7....2..8...........
+....34....2.....7.....6.5.....5.7.8.6.9........4......3.....4.6...1......8.......
+....34....9.....2.....1.....3.8.....7.....6........1.....5...896.12.....4........
+....34...7......9.....5....2.....1.4.6.9...........3...13.........6...8.5.4......
+....34...75................8..62..........4.3......5..1..7...2..6.5.1.....3......
+....34.2...1.............5....6.17..5..8.....42.......23..5.......7..1...........
+....34.6..1...........6....4..7..1....5...2..6.3.......9.1.....8..2............3.
+....34.6..15...2...........4......73...18....3.........2.5..1..8...........6.....
+....34.7.1.......2.........9..2.........9.4.........3..531..6.....8....9.4.......
+....34.7.3...2....1......4.87.9...........2.5......3...25.......9.1..............
+....34.9.2....9...1.........9.....53...1..............6..7..1........2.8.4..5....
+....346..2......5.1........58.1......3....4.....27.......7...1..4...6............
+....347..8.1.............5..3....4..6..1........8.....5..2...1..4..7...2.........
+....349..8.1..........2....7..8......4....3.........1.5..6...87.3.9..............
+....35..........12.........13....5.....2...6..7..8....4.21........4..3..6........
+....35.......8...........2.6.27...........8.34.........3.2..5...9....1.....4...6.
+....35....2....8........1...8.14....6......5........3.3....6.7....4..2.....8.....
+....35....5..4....2........1..7..6........5..........3..38...2....2..71..4.......
+....35...7.....4.......9...4..28....3.......9.......1..1.6........4..2...96......
+....35.6.....4..........9...56...7.....9..8...3.......4......152..8............3.
+....35.6.1.....4.......8......74.1..2.3.......8........5.....83...1.....9........
+....35.6.24..................5....3.....6.8...1.4.......72..4.9......1..3........
+....35.7.16..2....4...........7..35.8..1...........2...31.........4....8.........
+....35.7.8......6..........6..87....4.......5...9..1...37...2.....6......1.......
+....35.8.2.1...............7..2......8.....3......6...6..1..2...5..8..........4.7
+....35.9.7.1................5.2...8.2..7.................1..7.46.....2...3..6....
+....352..4.1................5....38....42....7..1........6....1.3..7...........7.
+....352..4.1................5....39....42....8..1........6....1.3..7...........8.
+....352..6.8....1.............8..67..54......1........73....5.....1.............4
+....3524.....4.5..1.........85.........6...7...3.......2.1.....6..7...........3..
+....356...1...4...............18...23.9......6........7..2...........34....8..1..
+....357...81..........9.......6...8134..........7.....4......2.5.....3.....8.....
+....358...21................6.2...413....7..........6.5.....3..4...8.......1.....
+....358..2............9....68.2...........93....1.....1......7..53.........8....4
+....358..4...2....6........58.7........6..31........2..31.........4....6.........
+....359...21................6.2...713....8..........6.5.....3..4...9.......1.....
+....36.........8.1..........127.........5..6..8.......4..1..2..6.5....3.3........
+....36...7......5.....4....13.7........2..86...4.......2......35..1...........1..
+....36...7......5.....4....2.....6.1.5.9...........3...13.........8...2.4.6......
+....36...8......5.....4....13.5........2..96...4.......2......37..1...........1..
+....36..43..1.....2......5..1.7.8....6....3..........55...4..........1.........8.
+....36..98.....4..1.........3.....26...1...5.............87.1..5..9......6.......
+....36.4.1.....9............5......1..3.4....9.....2..8..1.2....6.....3....9.....
+....36.7..2...8...5........8..5.......6....3.......1.....42.5.8..3.......9.......
+....364......4.9...1.......6.85........2...1.4.....3.....1...5.3...7.............
+....364...1.............7.....1...8237.......5..8.....6.5...3.....2...1..........
+....369.......5.3.4........7..1..2.....48...........6....2....183........6.......
+....37.........85.....6....3...1..4....2..5..1..............63..8.9......2.8.....
+....37.......6.7...8..........5...1...32.....4.6.......5.8...........3.62.....4..
+....37....1...........4.....2.6..5..7.......39...........8..21.4..1..6....3......
+....37....8.....4.............8...1.56.......7.3.........2..6.56.....3...2.4.....
+....37...6......9.....1.......6..82...34......1...5....7....6.3......1..2........
+....37..586.....9.....2....9..5.8......6..7..1...........4...8..7....2...........
+....37.1.....1....4.........7.5..2......6.8...1.......2.84.....5..2............3.
+....37.2.1.8...5..9........5..8..1...7......6..........6.....73.4.1..............
+....37.4..52...................6.2...1.5.....7......3....6..5.1..8...4..3........
+....37.5..81................4.....37....65......1..4.....8..2..7.4......1........
+....37.6.54.................8.2...........37.......6.....41...23.9......6..5.....
+....37.8..24...................6.2...1.4.....7......3....5..4.1..8...5..3........
+....37.8..52...................6.2...1.5.....7......3....6..5.1..8...4..3........
+....37.8..54...................6.2...1.5.....7......3....2..5.1..2...4..3........
+....37.8.64...................2..4..8.7............5..5..41.......6....3.2.....7.
+....37.9..54...................6.2...1.4.....7......3....2..5.1..8...4..3........
+....37.9.3...2....1......7.87.5...........2.4......3...42.......9.1..............
+....372...1.....7.....5....3.....5.8...6....9...4........1...4.2.6......5........
+....372..46................3..45....1.....7.....6.......2....3..7.....1....8....4
+....375..2..4.................6.5.4...12......8....3..53..6...........21.........
+....38.........54.....7....3...1..2....2..4..1..............73..5.6......4.5.....
+....38.......7.8...2..........6...1...32.....5.7.......6.1...........3.74.....5..
+....38.....4.2.....1.....5.65.7...........4.2......3..3.2......5......9....1.....
+....38.....7.2.....1.....4.54.6...........3.2......7..3.2......4......9....1.....
+....38....5....4..1...6.....2.4....5...1...3........6....2..8..3...7..........2..
+....38...2.....7......1.......4..26..31.............7.61.5........2..4..........8
+....38...2.....7......1.......4..26..81.............7.61.5........2..4..........3
+....38...2...7..........1..7..1...........53.........8..52..6...3.9......48......
+....38...4.....7......1.......5..46..81.............2.61.4........2..5..........3
+....38..52....6.7.............7...2..85............1..7..2.........5.3..4.......8
+....38.1.....1....4.........8.5..7......6.2...1.......7.24.....5..2............3.
+....38.2..54...................7.2...1.4.....8......3....6..4.1..6...5..3........
+....38.2.4.1...............6..7..5.....1...4..3........2....3.8...45..........9..
+....38.4.6.....2......4.......2...5........391...........9..6...53.......4....7..
+....38.4.65.......2...4....1..2..6...7.....8.............1..2...83..............5
+....38.5..24...................7.2...1.4.....8......3....6..4.1..7...5..3........
+....38.6..24...................7.2...1.4.....8......3....6..4.1..6...5..3........
+....38.6..24...................7.2...1.4.....8......3....6..4.1..9...5..3........
+....38.6..54...................7.2...1.4.....8......3....6..4.1..2...5..3........
+....38.6..54...................7.2...1.4.....8......3....6..4.1..9...5..3........
+....38.6..54...................7.2...1.5.....8......3....6..5.1..9...4..3........
+....38.6.2...5....1.........5.....7....1.4...9..2.......8...4........1.9.7.......
+....38.9.2.5...............6..59..........683......7..4..2..1.....1......3.......
+....382..1...2......5..7...5..4...6.......3...2.......783.............9....1.....
+....384...1...........4....67.2.....4.....5.3...1.....5..7...2.3..........8......
+....384...1....7..............16..5.8.......2...5...1.4.8...6.....2.....3........
+....384..7.......9.........63....58..5.4.........2....1.27........1...........8..
+....385..2..6.................7.5.4...12......9....3..53..7...........21.........
+....39.........68.....7....3...1..4....2..5..1..............73..2.6......6.5.....
+....39....1.....4........5..5...1......2..6....4...3..1.....98.6..3.........4....
+....39....5....4...........62.5...7........38...2........1..6..3.9......87.......
+....39....6.....4........5..5...6......2..1....4...3..1.....98.6..3.........4....
+....39...2.....8......1.......6..27..31.............8.71.5........2..4..........9
+....39...5.....4..........6...7...9.8..4............2....16.5...7....1...29......
+....39..5.1..4...........7....1.62..9.7......3........4......3....6..1.....2.....
+....39..5.1..5...........3....1.62..3.7......4........5......4....6..1.....2.....
+....39.2.7.......1.........1.54..........63..8.........32...9...4..8.......1.....
+....39.7..1...7.....6.......2.6..5......4...........3....2..1.84.....6..3........
+....392...1.....7.....5....3.....5.8...6....9...4........1...4.2.6......5........
+....394..1.......8.........63....59..5.4.........2....8.27........1...........9..
+....394..7.......8.........63....59..5.4.........2....8.27........1...........9..
+....394..7.1...............5..6.4.7........39....8.....9....2.....51.......7.....
+....394..8.......7.........63....59..5.4.........2....1.27........1...........9..
+....395...6....8....1.........8.6..431.......7..4........62....9......3..........
+....397.....64.....5....8.....8..23.4.1......6.........7.2.............1.......4.
+....398..2.1...............5..1...2..3..8....7.........6....34..9.5........2.....
+....4...1..52.....8........21..7..........58..4.....6....6..3..47..........5.....
+....4...1.6.....3.....2.......5..86.7.1............3.....6.8...1..3.....4.......9
+....4...1.7.2......5.9.....3.....47..2.6..............1.6.3....4......2.......5..
+....4...14..5...........2...71....4..5.3.............82.....35.....7.6.......1...
+....4...18..2.....7.........4..51...2.....98...6.........9..87..53...............
+....4...2.3..1.....2....6..5..2..7..1..8.....4......3.6.......8...6............1.
+....4...2.5....8.....1.........853....7....6.1...........7...1.4..2......8...6...
+....4...2.6..2.....8.....1....8.59..3...........1........9..58.2.3......4........
+....4...38.....6..1........6.....82..3..5.............24.8......7.....35...1.....
+....4...38.....6..1........6.....82..3..5.............27.8......4.....35...1.....
+....4...5....53..........8..45...2...3.8........6...1.7..1..6..1................3
+....4...5.1....2...........4.81........6.23.........6..2.3.........8..4.7.....5..
+....4...5.1....2...........4.81........7.26.........7..2.3.........8..4.6.....5..
+....4...5.1....2...........4.91........7.26.........7..2.3.........9..4.8.....5..
+....4...6.2....3......57.....76..2..5..........8.......6.3..1..4......5....1.....
+....4...61.....3..7........36.1..........8.54...........57..2...4..6...........1.
+....4...69.....7..1........7.....95..3..6.............25.9......8.....63...1.....
+....4...7..35......8.....6.....98.........53..........19......87..4..........32..
+....4...7.6.....3.....2.......5..86.7.1............3.....6.8...2..3.....4.......9
+....4...86......5......7...2.....4.71..5...........3.....2..19...86......4.......
+....4...87..3......5....1......512..3......6......9......7...34..1.......9.......
+....4...9.21.......8..........2..35.7...6....4......1.6.....4.7...8.1............
+....4..1..5....3....92......8.6....7....3..4.............5..6.84....2...1........
+....4..1..5....3....92......8.6....7....3..4.............5..8.64....2...1........
+....4..1..6....3....82......7.6....5....3..4.............5..7.64....2...1........
+....4..1..6....3....92......8.6....7....3..4.............5..8.64....2...1........
+....4..1.2.3......5..........75..2.8.4..6..........3.....2.3...16..........8.....
+....4..1.2.5.......36......3..17..........2.5......6..49..........8.5......6.....
+....4..1.2.5.......37......6..13..........2.5......7..49..........8.5......7.....
+....4..1.2.5.......37......6..18..........2.5......7..49..........6.5......7.....
+....4..1.2.5.......37......6..18..........2.5......7..49..........9.5......7.....
+....4..1.23..........8........7..8.3..15.....6.....2..5...1.....2....3......6....
+....4..1.3..5.....2.........6.3..5...1.8......7.......6.....3......7...2....19...
+....4..1.3..6.....2........5..3.27...4.5..........8....8..1..........2.5......3..
+....4..1.5...8....3.....2...4....98....3..5...1........9.6...4.2..5..............
+....4..1.57.......6..7........6..2...1.4......8.......3.....6......82.......1...5
+....4..1.58.......7..8........7..2...1.4......6.......3.....7......12.......6...5
+....4..1.9...5..........6..3..6..........1.5..7..........8..3.9.5.2.......4...7..
+....4..1.9...5..........6..3..6..........2.5..7..........8..3.9.5.2.......4...7..
+....4..1.97.......6..7........6..2...1.4......8.......3.....6......82.......1...5
+....4..1.98.......7..8........7..2...1.4......6.......3.....7......12.......6...5
+....4..1852...7............6.81..........52.........4....86....7.....5...3.......
+....4..186.3......5......7......13...8.7.....4........2.....5.....18.......9.....
+....4..2..3....7...1.......4...9.5..2.8.........8..1...7.3.....6......4....1.....
+....4..2..5....8...1..3....4.3.....16..5..7..2...........8.1..........43.........
+....4..2..5.9......1..........8..1.52...3..........9..49...2...3......6....1.....
+....4..2..57...............46..2.......5..7........1..2..1....3...7.8...6......4.
+....4..2..8.5......1.......3......7....1.7...4..6.....7.....1..2...3..........5.8
+....4..2.3.2......1.....7........654...1.3..........8..8.95..........1...4.......
+....4..2.3.8......1.....5........472...1.3..........6..6.82..........1...4.......
+....4..2.37.................6....7.1....2.3...9.......5..3.8...2..7.......4....9.
+....4..2.7.....3......1....3..5........3...8........1..14.6.......7..9...2....5..
+....4..273..8..............5....73......29.........8...9.1..5..84........2.......
+....4..3..57.......6.......1.....7.54...8..........2....67.2..........83...5.....
+....4..3.1.7......5..2......3.....6....7..5.....1.........6.24..8..3..........1..
+....4..3.7...2....1........5..1..7.....5...4...........49...2.....8..1...3.....6.
+....4..3.7...2....1........5..1..7.....5...4...........49...2.....8..5...3.....6.
+....4..3152.6......7.......15....2.......1.......3....3.8....4....2..5...........
+....4..362.9..................9.51.....28.....3.......5.....9...6..3.......1...8.
+....4..362.9..................9.51.....28.....3.......5.....9...6..3.......4...8.
+....4..3697..............4.6..1.87...3............5...2...3......5...8.....6.....
+....4..3751................23.........7...5.....6..1.....7.1...4.....8.....36....
+....4..378.2..................8.61.....29.....3.......6.....2...7..3.......4...5.
+....4..38.2....5....1......6...3...7......1..............1.92..37.....6....5.....
+....4..3857.2............1.6..5..1......3....7..........8..4......6..7...3.......
+....4..3912..............7.6..89....5.....2.....3..........15....97......3.......
+....4..3928..............7.6..89....5.....1.....3..........62....97......3.......
+....4..3978.2............1.6..5..1......3....8..........9..4......6..8...3.......
+....4..5.....29...3.....8.....8....1.24.......5.......8..6.........5..4....7..3..
+....4..5.....82.........1.........8132.......7..6......84.........1..7.....3..6..
+....4..5.....82.........1.........8132.......7..6......84.........3..7.....1..6..
+....4..5..21.........3.....5..1...4.6....2......8.....7.....1..4...9..........8.2
+....4..5.3.....7..6..8......48.1.........73...........75...3..........41...2.....
+....4..5.36.......2..........547......8.....3......2..1..2......4.....7......36..
+....4..51.9.7..............2.....3.....3..9..5.1.........621...84...........5....
+....4..521.8..................1.79...2..........8......5..2...47.....1.....6...3.
+....4..521.9..................1.78...2..........8......5..2...47.....1.....6...3.
+....4..573.1...............67......3...2.1......8......5..6..........12....5..8..
+....4..58.2...7............5.4....6...82..........37...3....2..4...5.......1.....
+....4..58.2...7............5.4....6...82..........37...3....2..8...5.......1.....
+....4..58.71.............3....1.72..83...2......6.....5...8.......2..7...........
+....4..58.71.............3....1.72..85...2......6.....5...8.......2..7...........
+....4..593..2.....1...........1..7...46......95...........56.4....8..3...........
+....4..6...1...9...2..7....67.....5....1.2......9.....45.8...........1..3........
+....4..6..2....7...1..3....8......3....7.6......2........51.2..4.......93........
+....4..6..27.......5.......8.....14....7.3......5.....4...6.3.....2....7......5..
+....4..6..3....8.......1....5.3.....4......5....7........8..2.31.4.6..........7..
+....4..6.2..5.....1...........1.2.........37....8......47...1........2.8.6..3....
+....4..6.3..7.....1........5..3..1......8..4...........4...72.....5..7...69......
+....4..6.6.....1.....73....2..8............4........3..4.1..8....5...2...39......
+....4..632.9..................9.51.....28.....3.......5.....9...6..3.......4...8.
+....4..685..3................25..3...78.........1.........68.2.1.....5...3.......
+....4..69.2.5............1..3....74....8..........6......73.2..6.....3..1........
+....4..7...5...3......2.......3..1.....6..5..4...........5.1..628.....4.7........
+....4..7..2......1..5..8...46.....3....5..2.....1.....7...3.8..3................5
+....4..7..3.....5.8..6.......725....4.....3........1.....1..83...5.......6.......
+....4..7.1..3...................7.2..5.6.....4.....8.....4..1.3..2.51....7.......
+....4..7.5.......8.2.1.....3..5..2..6...73.........1....52.....7......3..........
+....4..7.61........5.7.........6...14.....2........5.83......6....2.1......5.....
+....4..7.65........2..........3..6.81...7..........2.......253.7..8.....4........
+....4..7.8.....1.....2........8.12...4........6...........6..431..7.......3...5..
+....4..7315................56....1...2..7.........3.8....5..2..4.7.........1.....
+....4..738.2..................8.61.....29.....3.......6.....2...7..3.......4...5.
+....4..75318..................1.26..7.......2...8......2....1..5...7...........4.
+....4..781..2..............6.....1...7..8.........2..5.48....3....6.15...........
+....4..8...6...3......2.......3..1.....7..6..2...........6.1..752.....4.8........
+....4..8.1..5............2....3.7......1..5...2.....6.34....1......62.........7..
+....4..8.3.7.............5.1..3.8......2..6........4.5.6....2.7...1......4.......
+....4..8.3.7.............5.1..7.8......2..6........4.5.6....2.3...1......4.......
+....4..8.5....3...........13...7.6.....8...2...........781........2..5...4....3..
+....4..82.1.6.....3.........5....17.....23...............5..6..8.......42....1...
+....4..82.65..7............1......4..2.5........3.....8...3....4.....7.....6..5..
+....4..82631..................1.76..8......5....3......7....1..4...8.......2.....
+....4..837.1...............2..1.65...4.....9....7.....6..2..1...3..8.............
+....4..86..73......1..........7.23..8......4.............1....24...8....5.....7..
+....4..9..3........6..........3.17..4......8....9.......9...1.32...75.........6..
+....4..9..4...2...1......6....81......26......7.......3..1..5........2.7......4..
+....4..9..6.....3..7.......8.....5.6...32..........7.....6.51..9.2.........7.....
+....4..9..7.....3..5.......8.....5.7...32..........6.....6.51..9.2.........7.....
+....4..91..65...............85...6..7...1.........9.4..2.6..5.....3.....1........
+....4..9128.5.....3........5..3..2......1..76..........1..6.......2..5...........
+....4..9128.5.....3........8..3..2......1..76..........1..6.......2..5...........
+....4..95..1.......8..........8.63..5......7....2......1....8.26...59............
+....4.1....5...6..3.........1....87....3.2......9......6..5....9.......27......3.
+....4.1...3.6.......2.......7....64....2...3.4...5.......3.7...8.....5..1........
+....4.1...5.....3......2...1..7........3...5...4......6.....2.4.7.58..........9..
+....4.1...5.3......6.....2.8...7..1....2.............6...6..3.57.....4..1........
+....4.1...6...2.....5....8..3.57...6......2.....3........6...3.2.......71........
+....4.1..3......2......5....8.7........3...6..5.......7..21......6...4.5......8..
+....4.1..5....9..........7..4.8...3..91..............22..7....5...1..6........9..
+....4.1..6.....5...3..........27...6.4.....3...1......2..6.3.........48....5.....
+....4.1..6....5..........9..4.9...3..15..............22..8....6...1..7........5..
+....4.1.23..9...............21...5.....3...7...........8..12...7......93......6..
+....4.1.37.....6............3..1....8......7....9......61...5.....7.8.4....2.....
+....4.1.5.632..............54....8.....7.3...1........2..4...3.....1...........6.
+....4.1.62..5.................6.8.5..41...7....9......63.2.........1....7........
+....4.1.72..5...............71...6.....2..3............4..81...3......25.......9.
+....4.1.9.36..........1....52..9......87...3.............3.8...4.....2.....6.....
+....4.12..6....5..3..........456.....2......3.......7.7..3.1...........8......4..
+....4.16.7.56...............16...3.....7....8.2.......4......75....31............
+....4.2......67...5.........71.....6.......78...3.....2..5..3...6.....4.......5..
+....4.2......83.....1............12.48..........6..5..2..5.....87..........1....3
+....4.2...3....8....7.......4......12...8.......5...7...17...3.6..2..4...........
+....4.2...3.6..............7..3.5...2.....1.....8.....4.6.2...........53.1.....8.
+....4.2...3.6...........7.....3.1.5.2..5.....7.9......4...7.........8.3.........1
+....4.2...36............1.....6.2...2.....4.....7...8........375...1.......8...6.
+....4.2...69......71.......5..28....4.......6.......1.8.....3.....9.1......5.....
+....4.2...7......5....3.......7.8...3.....6.....5........9...176.2....8.4........
+....4.2...8..3..........1..2.....5..1..7............9.4..1.5......2...8..6.....3.
+....4.2..1.......753.......6..3...5.....2........9......2...4...1.5........6...3.
+....4.2..3..7.....1.8.......6..5...........3........7....1.86........5.9.4.3.....
+....4.2..5....1....7......3.....415...8....9..3..........38...61...........2.....
+....4.2..8..7.....1.........27....6....1.85.....3..........5.31.6..2.............
+....4.2.57.1..................76..4..5....8.....1......2..35...8......7....4.....
+....4.2.76.....8...3..1...........348..5.....2.........4.....5....2.6......8.....
+....4.2.8..1......3........7..3.6....5....8.....1......2..8....6......3....4..5..
+....4.23..69..........3.......6.1...2..9............5....8..1.653.......4........
+....4.23..69..........3.......6.1...2..9............7....8..1.653.......4........
+....4.3...1...5....89.........2...1956..3.............7.....54....1.....2........
+....4.3...2.....7...8..6...9.....6.4...2.....1...........8...2..3.7.....6...9....
+....4.3...2...8.....1......4......7....1...2.....5....67.2..........41..3.....5..
+....4.3...7...8.....1......4......7....1...2.....5....62.7..........41..3.....5..
+....4.3..7..2.......6.......35...1.....7..5...4.......2......87....13......6.....
+....4.3..8......2.1..........62.8....7....5.4...1......3..6.7.........8....9.....
+....4.3..9......2.1..........62.9....7....5.4...1......3..8.7.........9....5.....
+....4.3.8.61...............32....4.....6.5......7.......51...6.4...8..........2..
+....4.3.8.65..................6.1.5.3.....7.....5.....8..23....2.....4.........1.
+....4.3.85.1..................5.6.2..8....7...4.1.....6..2...5.7...8.............
+....4.32.7.1..................1.65...4.....3....7......2.38....6.......1......9..
+....4.36.7.56...............36...1.....7....8.2.......4......75....31............
+....4.38..5..7.....1..........5.2..86.....7.....1........2...1.4.7......3........
+....4.38.71..........9.......8...5.4...2..6.....7.....6...5....2......7.........1
+....4.39..5..7.....1..........5.2..86.....7.....1........2...1.4.7......3........
+....4.5........1.79........4......93.8.7........1.........8..2.6.1......57.......
+....4.5........7.31...........3..2.....2.7...4......6.....1...9.3.....8..25......
+....4.5...2.....6...1............4.3...2...........8..5..7...2..7.6...1.4...8....
+....4.5...2.....7...1............4.3...2...........8..5..7...2..7.6...1.4...8....
+....4.5...6..7......1.........1.24..7.....6.....3.....54.......2......3....8...1.
+....4.5..3.......61........9..8...1..2..5..............74...9....51.6......3.....
+....4.5.238...7....1.......4...65....2.....8..........5.....9.....8..6.....1.....
+....4.5.238...7....1.......4...95....2.....8..........5.....4.....8..6.....1.....
+....4.5.6.1...3...8...........82....6.....7....5....1..3.....4...4..5......1.....
+....4.51..37...............4..52...........83......1.....3.8..6...7..2..1........
+....4.51.8..25..........3...1..6.......7....2.5.......7..3.....2......4.......1..
+....4.52.6.1...........9...3.....6.....12..............5.7.3....1.....8....6..3..
+....4.57.....79...1...........2..6.8.9..3..........1...7.....3.6..1........8.....
+....4.57..31.......6.....4......6..12...5.............8.....4.....6.3......7..2..
+....4.58..36.......2.....4.8...25.........7..........6...7.61..2...........3.....
+....4.6....5...1..3.........1....87....3.2......9......6..5....9.......27......3.
+....4.6...2...7....1..........1...2.3..5.....6...8....4.....37.......4.8...2.....
+....4.6...2.7......8.......4...1...........3........2...73.5...6.....1.8...2..4..
+....4.6...3..5...........8..7.3.....6.....5........1.....8...395..2.....4......7.
+....4.6...5....8....1.............53...3...1.8...7.....3.1...2.6.....4.....2.....
+....4.6...8........3.......4...5..7....2...8.6.9.......1.8..........3..25.....4..
+....4.6..2.......8......7.....8.3.2..76.............1.3..2...5.....6.4.....1.....
+....4.6..2.5............1...6....4.....7...3......2....4..6..5....3....78......2.
+....4.6..3..8...........2.....7...8..46..............1.....653..89.1....7........
+....4.6..9......2.1..........82.9....5....3.4...1......3..6.5.........9....7.....
+....4.6..9......2.1..........82.9....5....3.4...1......3..8.5.........9....7.....
+....4.6.1.2.5...........7..7...6...........52.....1...1.....3..3..8........2...8.
+....4.6.2.87...............2..16.4..9.....5.........3....7.3.8....8.....6........
+....4.6.21.................3..5...1..7..6.4............42...7.....1.3.5....8.....
+....4.6.238...7....1.......4...95....2.....8..........6.....4.....8..5.....1.....
+....4.6.238...7....1.......6...95....2.....8..........4.....9.....8..4.....1.....
+....4.6.239...8....1.......4...65....3.....9..........6.....4.....9..7.....1.....
+....4.6.281...................72.5..9......1.............1.9.3.7.6...4.....8.....
+....4.6.3.7.5............2....2...8.6.....4..1............631...25....7..........
+....4.6.7.2.5...........3.......2.8.....73....1.......6..4...5.7..8.....3........
+....4.6.75..1.................5...3..67.........2.....32.....5......81....4.7....
+....4.6.75..2.................5...3..67.........1.....32.....5......81....4.7....
+....4.6.75..3.................5...2..67.........1.....32.....5......81....4.7....
+....4.6.9.831..............2...6..........53........8.6....24...5.8...........7..
+....4.6.95.1............2.....1.5.8.29..........7.....7..3...5..6..2.............
+....4.6.95.1............2.....1.5.8.29..........7.....7..3...5..6..9.............
+....4.61.2.53...........8..4......72.6..1.............3..5.2......7..1...........
+....4.61.2.53...........9..4......82.6..1.............7..5.2......8..1...........
+....4.61.2.93...........8..4......72.6..1.............3..5.2......7..1...........
+....4.62..37.......5.....4.3...25.........8..........7...8.71..2...........6.....
+....4.62..7....5..3..........452.....1......3.......8.8..3.1...........9......4..
+....4.62.1.................52.....1....8...3...4.9.....49...7.....1..5.......3...
+....4.62.3...2....1.........4..8.5.....9....3.........9..1.7....2.....6....3.....
+....4.62.5.1................6...3......8...5.7.......1...17...6.2....3.....5.....
+....4.63.9.....5..1.........7....3.4...1.2......8.........9...1.3.5............2.
+....4.67..5....3...1..........28...17.6......4...........1.9...8......6....5.....
+....4.67.5..9....................3.9.2..1..........5...7.....128..5.3......4.....
+....4.68.1..5..................683..5............2.......7...51..61....3.2.......
+....4.68.3...6....1.........5..8.2.....9....3.........9..1.7....2.....6....3.....
+....4.7....8.5....3.....1.....2...6..7....3....4......64.....5....7...8....1.....
+....4.7....8.5....5.....1.....2...6..7....3....4......24.....5....7...8....1.....
+....4.7...2.3......5.....8.4.1...6.....2.8...........33..56..........1.........2.
+....4.7...2.3......5.....8.4.1...6.....2.8...........33..56..........4.........2.
+....4.7...2.3......5.....8.4.1...6.....2.8...........33..59..........1.........2.
+....4.7...2.3......5.....8.4.1...6.....2.8...........33..59..........4.........2.
+....4.7...8.5.......1......5......184...3...........2.74....6.....1..3.....2.....
+....4.7..1.6...........8....7.3......2..5...........1....5..2.73..1.6.........4..
+....4.7..6.1...........8....7.3......2..5...........1....5..2.73..1.6.........4..
+....4.7..8.1......5.........4....2.7...1...........8.....6...35...5.2.1..6.......
+....4.7.85..3.................5...2..78.........1.....32.....5......41....6.8....
+....4.7.9.63..2.............2...6.3.7...........1.....5..71......8....6.......1..
+....4.72..63..................67.1....5.....32........78.....5....3.5......1.....
+....4.72.8..............4.....6.1..5.37.............9.1.....3.8...27.......5.....
+....4.73..1.8............5....2..1.93.5.7....6...........1..4..5....6............
+....4.73.1..6.....5.........3....54..2.1........9..8..9.......1.....7.......3....
+....4.73.5..6.....1.........3....54..2.1........9..8..9.......1.....7.......3....
+....4.75..13..6............2......4..5.1........8.....4.....6..5...2.......3....1
+....4.75..36...........1......7...362...............8.17....2......8.4.....3.....
+....4.75..36...........1......7...362...............8.19....2......8.4.....3.....
+....4.75..63...........1......7...362...............8.17....2......8.4.....3.....
+....4.75..63...........1......9...362...............8.17....2......8.4.....3.....
+....4.75..63...........1......9...362...............8.19....2......8.4.....3.....
+....4.75..81...............3..79...........8.2........64....3.....2.8..1...5.....
+....4.76.1..5..................283..5............7.......6...51..71....3.2.......
+....4.79.82...........7....63..9.......1....5......2..9..8...3....2.5............
+....4.79.82...........7....63..9.......1....5......2..9..8...6....2.5............
+....4.8....2.......5........7.....512...8..........3.....5.7.3.4.9...6.....1.....
+....4.8....2.......5........7.....516...2..........3.....5.7.3.4.8...6.....1.....
+....4.8....23.....3........78.....1....4.2......5.....6.....2.3.7..1..........4..
+....4.8...35............1.....5.2...1.....4.....6...7........362...8.......7...5.
+....4.8...6.1.......2...3...7.2...6.4...3.5..............6...1.3.5......8........
+....4.8...9.....7...2......63....5.....259......7.....4..81....1...............2.
+....4.8..1.5......7.........46...2...3.5........1............172.......5....9..3.
+....4.8..1.9............3......35..6.4....2....71......3.9.....5......7........1.
+....4.8..5.3......2........16.....2....39.....7..........2....5...5.1....8....4..
+....4.8.17.2..................7.5.4....2......1.......6..4..3...8..1....5......7.
+....4.86.27...........1.......2....6.4...9...7..........3....1....7..4..6..5.....
+....4.86.5..2......2.......3..7....81.....5......6.....64....9....5.1............
+....4.87..61..................6...312...7....4.........5.1.8...7.....2.....3.....
+....4.9....3.2.....1..........1.2..34......8.9..6.....8....74.....3............5.
+....4.9...16............1.....6.2...9.....4.....3...7........325...1.......8...6.
+....4.9...18......6........7.5...2..3..8........1......2......8....7..3........16
+....4.9...36............1.....6.2...9.....4.....7...8........375...1.......8...6.
+....4.9..1.6......8.........57...2...3.6........1............182.......6....7..3.
+....4.9..8.6......1.........57...2...3.6........1............182.......6....5..3.
+....4.9.5.2.7.....1.........3.2...6...8.....4.........4.5..8......6..23..........
+....4.96.78.................3.1....7..6.5...........8.2..7.3.....9...4.....8.....
+....4.97.1....8...2.........7.3...5.8..1.6.............5.28..........6.1.........
+....41..........73..........735....6....8.1...6.......8.....4.....7...2.4..3.....
+....41.........63.......2...15.....4.7.3.......4......3..6...7.....8...52........
+....41........9.6...5.8......25......8....1........9.4...3...2.84.......1........
+....41......53.....2....8..3..1..7....12.....4.........7.6............53.......4.
+....41.....5...2...........3......61....6..4..5.2........58.9...2.7.....1........
+....41.....7...5..............27.6..41......83........84..........7...2....5..3..
+....41.....9.....7.5....3........541...7.8..........6....53.2..1...........2.....
+....41....2......6......8..45.6....73......4....2...........41....57..........3..
+....41....2....6............7.....41...28...........3.3..5..2..5.16.....4........
+....41....2....6....3......7.1....5.4..8........2......7.6..8..5...3..1..........
+....41....2....6....3......7.1....5.4..9........2......7.6..8..5...3..1..........
+....41....2....7............8.....41...29...........3.3..6..2..5.17.....4........
+....41....2....7.........6.5..7..68..9.3............4.4.1.8.......2..5...........
+....41....2....7....3......6.1....5.4..7........2......7.6..8..5...3..1..........
+....41....2....8..............7..2..1...3....4......6.61......4...2..57....8.....
+....41....2....8....3......7.1....5.4..8........2......8.6..7..5...3..1..........
+....41....23.......8.......6...7..........2.3.......515..3.....4......7....2..8..
+....41....23.......9.......6...8..........2.3.......577..3.....4......8....2..9..
+....41....3.....6........2....62......43.....1.....7.....5..1........4.782.......
+....41....3....6.............29.78..4...........3........75...4......91.58.......
+....41....3....7....8......4.1....2.2..7........3..5.....68.3...2.......1........
+....41....3....7..2.........4.3............18.......6.6.15........72.3..8........
+....41....3....9.............29.78..4...........3........26...4......51.68.......
+....41....3....9.............29.78..4...........3........56...4......51.68.......
+....41....5.....3..........6..35....2......9.1.........7.86.......7..2........4.1
+....41....5.....7..2.....6....7...2...5...3..4........3.....1.8..65...........4..
+....41....5.....7..2.....6....7...2...8...3..4........3.....1.8..65...........4..
+....41....53......7........91..6.......5..38.......2..4......71..83..............
+....41....53......7........91..6.......5..38.......2..4......91..83..............
+....41....56......2...........5...734...............8.13....4......7.2...6.3.....
+....41....58........3......42....7.....89....6.....1.....5...84.......3.7........
+....41....58......2...........5...734...............8.13....4......7.2...6.3.....
+....41....6......3.27......5.....14....73...........5....2....61.....4..8........
+....41....6.....8...3......4.1...5.....8...6.7...........28.....2.6.....5.....4..
+....41....6....2...........32.6.........5..417...........2..3...48......5.1......
+....41....6....2...........4..25.3..1.8...............52.6........3...7........18
+....41....6....5...2......74..5..2....8......1.........5.2.....3......1.....6..3.
+....41....67......2........13....4......7.2..5..3........6...534...............8.
+....41....7....2.........6.5..7..68..9.3............4.4.1.8.......2..7...........
+....41....7....5............9.....41...57...........3.3..7..2..6.18.....4........
+....41....7....5.........6.5..7..68..9.3............4.4.1.8.......2..7...........
+....41....7....5..6........2.16..3......8....4...............48.8.....2..5.9.....
+....41....8....2........5.81.....6...5.4............7.7......4...1....3....25....
+....41....9....3...............7..41.2.3............9.1..5..8..7.4......6..8.....
+....41...2.......58...........2....743........1..7....5..6..3........14........6.
+....41...3.......5.6........14.2.......5...63...............42.6.....8..7..3.....
+....41...3......2.6.........193..4.....26..7..............5.1.92..7..............
+....41...3......8.7.2..........6.1.5..82...........4.....3...7.16........4.......
+....41...3.....2...........52.3.........6..847...........2..5...48......6.1......
+....41...3.....6............576....2..4.3.....1.5...........17.8..2............4.
+....41...3.....6........7..7..6....8....3..1..8.....4.51..........3..9.....2.....
+....41...3.....9..............8...152..3.....4.......8.1.65....7......4.......2..
+....41...5.....2.........8.75.....6.....3...12..........1.....4...5..3...8.2.....
+....41...52.................64.....3...5...7....2.....4.....82....6..5....1.3....
+....41...6......2..3..........53.4..7.......12..6......48...3.....2...6..........
+....41...6......3.9........8..6....5....5.4.7......2...72.........3...8..4.......
+....41...6......8.3.2..........5.7.1..82...........4.....3...6.15........4.......
+....41...6......9..8.......8..2....15.....3........4.7.41.7.......8...5..........
+....41...6.....2....7......35.2..6...41....7....3.....2..6.........8..1..........
+....41...6.....8........2..2.475..........3.........1..5.....4....6....58..2.....
+....41...7......2..5........3....4.12..69..........5..6..8......4....7.....2.....
+....41...7......8.3.2..........6.1.5..82...........4.....3...7.16........4.......
+....41...7.....6..1.........4.....1....3..7...8.......25.....4....73.......6..2..
+....41...8.....2..6....3....3.26.5...17....4.................712..9..............
+....41...9.....2..7....3....3.57.6...18....4.................815..2..............
+....41...9.....7......3.....6.2..5...43............27....9....8.......141........
+....41..385.....7.............7.59..2...........1......93.2..........51.6........
+....41..568.....7.....3.......2...5..4....3....1......8..6.....5....7.........1..
+....41.3..1..2.6...........7.93...........1..3........5..6.3.7..4.8..............
+....41.3..1..2.6...........8.73...........1..3........5..6.3.7..4.9..............
+....41.3..1..2.7...........8.93...........1..3........5..6.3.8..4.7..............
+....41.3..1..2.7...........9.83...........1..3........5..6.3.8..4.7..............
+....41.3..52.......7.............7.1..4...2..6....8......25....3......8....4.....
+....41.3.6.......5..........2....14.9..85..........2..8..69.....1..........5.....
+....41.6...9...5.......6...8......14...93....2...........8..3.7.1.............9..
+....413..8......6.............32.4..1..5................76...5..2.8......43......
+....415..6.....8...2.........54....7.1.....6...3......7..63...........2.......1..
+....4152.73...........9....3..6.5..........4....7......41.........2..8........3..
+....4156.73...........9....3..5.2..........4....7......41.........2..8........3..
+....4162.85...........9....3..7.6..........4....8......41.........2..5........3..
+....4162.85...........9....3..7.6..........4....8......41.........2..7........3..
+....4167.85...........9....3..6.2..........4....8......41.........2..5........3..
+....4168.95...........8....3..7.6..........4....9......41.........2..3........7..
+....417..8............3....3.28......4....1.....5.....5.....69....2....8.1.......
+....418..2.3...............6.....14.7..38...........6.5..7....2.4..........2.....
+....418..2.3...............6.....14.7..38...........9.5..7....2.4..........2.....
+....42.......3..1.........75...6..3.2..7..8.....9.......3...4.....5....2.1.......
+....42......3..4..1.....5..4..9............8........2....5..7.1.28.6.....3.......
+....42......53.....1....8....21..7..3..2.....4.........7.6............53.......4.
+....42....1.....7.......3...7.6...........4.9...1.....4.2...5.....78..6.3........
+....42....3....7........1..4.2....8....6.....8........5......29.6.17.......3.....
+....42....8....3....1......1..5..7......3....4........6......24...8...6..5.3.....
+....42....8....3....1......1..5..7......3....4........6......24...8...6..9.3.....
+....42..561................2.4.5.......7..1..5.....3.....1.8.7....6.....4........
+....42..8.1....6...........7......2....13.......6........51.3..2......4.9.7......
+....42.5.3.....9...........6.97........3....8.......4.14..........9..2...85......
+....42.5.6.....9...........3.86........3....7.......4.14..........8..2...75......
+....42.5.7.....9...........6.97........3....8.......4.14..........9..2...85......
+....42.6..1.....8..........2..7..5..9......4....13..........1.36....5.........7..
+....42.6..9....1...........5......2..3.7........9.....2.4.....8...15.3..6........
+....42.6.3.1...............6..1......4......7...9........5..31.48..7..........9..
+....42.8..3...........6.......1..3.52.4............7...5.3..1..6..5...4..........
+....42.896.5...1......9.....8.....243..7.................5..7...2.......1........
+....42.896.5...1......9.....8.....423..7.................5..7...2.......1........
+....42.9..3...........6.......7..3.52.4............8...5.3..1..6..5...4..........
+....42.986.5...1......9.....8.....293..7.................5..7...2.......1........
+....423.....81.....6....9.....9..27.5.1......4.........2.3.............1.......5.
+....425..1......3..........8..3...........4.2......71..25.........13.....4.6.....
+....425..1......7..........4..7...........2.8......65..25.........83.....6.1.....
+....425..1......8..........4..8...........2.9......75..25.........93.....7.6.....
+....426..85................1.....2...3.5.........9.......7...352.48............1.
+....427......6..5.1.........4....9.2..815.......3........8...1.27................
+....43.........1......5.....8.7...2..6......3.......4...58..6..4..1.....3.....5..
+....43.........1......8.....7.6...2..5......3.......8...47..5..8..1.....3.....4..
+....43.........1......8.....9.6...2..5......3.......8...47..5..8..1.....3.....4..
+....43.......1.9...9....2..4..6...3..2.8.5...............5..7.23........1........
+....43.......1.9...9....2..4..6...3..2.8.5...............5..7.93........1........
+....43....1..6.....2....8..8..7............46...1........5..21.3.4............7..
+....43....2....5......1....27.5............31.........6..7..2....3..8...4......6.
+....43....2....8........1...8.15....6......4........3.4....6.7....5..2.....8.....
+....43....6.....5......1.7....7..1...8.5...........3..1...2.4..3.2.............8.
+....43...6.......2.......1.1..5..7....26...........3.....28..9.34........7.......
+....43...7.1...............8..72...........35...1.....54...9......6..7...3....2..
+....43..1..9...6..............7..2..54.......1............51.4..67....3....8.....
+....43..6..1....7..5..2.......8...5.4.....3..2.6......3.....2.....1......9.......
+....43..8.17...2..............7..15.46............2...3...6..4....1.....2........
+....43..8.2.5...7..........6.....3.4...71..........9..4.....2.....2...5.3........
+....43..89...8..7.1..........29..5..7..............4.....2...9..4.1......3.......
+....43.2..87...6...........4..8..1.....1.....3............25.3..16.....7.........
+....43.5.7.9......6.....4...2.....1.4..9........7......5...8.........9.1....3....
+....43.6..9......87...2....4.6...2.....1.....3.........1.8.5..........3.......4..
+....43.7.2............7....8..6.5..........14...2......43...6.....8..2........5..
+....43.8..21...............3.....6.....5..4.......1...46..3.......2...517........
+....43.8.5...8......1......6..5......3.....4.......2.....1..5.72.......6.4.......
+....43.8.5...8......1......7..5......3.....4.......2.....1..6.52.......7.4.......
+....432...1................4.3.5.......7...16........85.....34..6.1.....2........
+....432...1................4.3.8.......7...16........95.....34..6.1.....2........
+....432...1................7.3.5.......8...16........95.....34..6.1.....2........
+....432..1...2......5..7...5..8...6.......4...2.......743.............9....1.....
+....435..2......8.1.........3..5.4.....7...1..........6..2......4....6.....1.8...
+....45.......6.9........2..5......4...82.............1...7..83.41...3....2.......
+....45....6..2.....3....8.....8..31.2..9.....4............7..6.5.......4...1.....
+....45....7....2........1...5.....4....16...........3....2..7.98..9.....4.3......
+....45....8....7..3...2....5......43...1..6..2.........1.7.6..........25.........
+....45.2.7.1.....................5.86..1......2.....4....3..1.6.4..9..........7..
+....45.3..61.......7.............4.1..2...6..3....8......26....8......4....1.....
+....45.3..62.......8.............2.1..7...6..3....1......26....8......5....7.....
+....45.3..62.......8.............2.1..7...6..3....4......26....8......5....7.....
+....45.3..62.......8.............2.1..7...6..4....9......21....8......9....4.....
+....45.3..76.......8.............6.1..2...7..3....4......27....1......5....6.....
+....45.3.1............2....6.81............243..6........9..8..7.....1...4.......
+....45.7.6...8.....3..........7..3.2..1......5........4......5......16...2.3.....
+....451...8.....6..........4.1..9.........62...........6.32....7.....4.....8....7
+....452...1......6......3.....31...75.4......8........2......5....7...8....1.....
+....452..1.3....6...9.......9.3....4...1...........7..54...7.......8..3..........
+....452..3.1................5....48....12....7..3........6....3.4..7...........7.
+....452..3.1................5....49....12....8..3........6....3.4..7...........8.
+....4563.....8....1...........26..7..54............2...6......47..1........7.....
+....46....2....7........1...7.15....8......4........3.4....3.6....5..2.....7.....
+....46....87..........2.....527.....1......4.......36.6.......2...5..8..3........
+....46...1......8.....3....2.....6.5.5.8...........3...13.........5...7.4.6......
+....46...3.....8........2....21...5..6......7.......4.47.....6....3..1.....8.....
+....46...6...2......1......72....4..3..5........1..8...3.....5....8...1.2........
+....46...7......8.....3....2.....6.5.5.8...........3...13.........5...7.4.6......
+....46...8......2.....5....14.3........2..96...5.......2......47..1...........3..
+....46..79.....3............4.....758....9......2......71.5.......3..89..........
+....46.1.9..7.....3.........4..1...62.....3......8.....1.....8....2..5.....3.....
+....46.3..2......6.5..........85.2....1.........2.....4....17........58.6........
+....46.5..1............7......8..1.3572...............6.....87.4..13.............
+....46.8..9....1..............3...4..2...9.....1....5.4..75....3.....9........2..
+....4613.....1.4..5...........5...82.1..........2.....8...3....2..7...........6..
+....462..1............2....7..1....6......43....35.....25.........8...1..4.......
+....462..1............2....7..1....6......43....35.....45.........8...1..2.......
+....463..7.....2...5...9...6.37.........8...12........3..6......8.....5..........
+....468...13...7..............3..1..6...2.....9.......5....9.2.4.......6...1.....
+....468...52......7.........1.5...2.....8.6...........4.6....5....9....38........
+....47.......5.9........2..4......7...89.............1...6..83.71...2....9.......
+....47.......6.9........2..4......7...39.............1...2..83.71...5....9.......
+....47...3......6.....5....14.8........2..67...5.......3......46..3...........1..
+....47...6.....1......5....1..63.....8......7.......5....2..68.45..........3.....
+....47...8......9.....3....2.....7.5.6.9...........3...13.........6...8.4.7......
+....47...9.1.......3.......76..2..........31.......9.....1.6.8.4.......6...9.....
+....47..6.5....8...2..1.......5..23.7.1...............6......148..2..............
+....47.1..8......3.........5..2..6..4.1.........8...........47.....1.5...2.3.....
+....47.2.9.1................2....1.....1....3...5.....5..38.....4....76.......2..
+....47.3.65.................8.2...........37.......4.....51...24.9......3..6.....
+....47.5...1.6.....3.......5..2..7.....3..6..........346....2.....1............8.
+....472..9...3.....6..........8...164..1.....3......8......94...8.6..............
+....473..1............2.......6...1...7...2...8...3...6..15.....4....7.....9.....
+....48.......6.5........2..4......8...92.............1...7..93.81...5....2.......
+....48....9....2...3..6.......2..1.96..7.....4............5.3..8......4....1.....
+....48...3.....5..............5..63..41.........2.........1..8456.3.....7........
+....48...79..........5.....5..31..........2.8......4.....7...1.2.8.......64......
+....48.2.5....7...1.........47...3.....6..1...2..........3..6.....92...........7.
+....48.5.7.....6.............1.5.......3..7...8........4.....813..7.6......2.....
+....48.6...3.1....7.......898.3...........24.......1..14..........7.9............
+....482......3.6..1..........31...5....6...17.4.......7..5......8....4...........
+....482..3.1..................1...39.4..5...........6..8.6..4..6..3.........7....
+....485..17.................4......6...2...1...5.3......3...4..9..1.....8..7.....
+....485..3.1..................67..3..8....2...4.1.....7..3.....2......5.......8..
+....49..........652...........52.....9....4...3.6.....5.61..........38..7........
+....49.6.83...............2.5.3...........89..........6...7.1.....2..3.59........
+....49.8.7.1...............2..1...........74....6.....68..3.....4......9...2..5..
+....492..5.1..................1...35.4..6...........7..9.7..4..7..5.........8....
+....492..53................6.....9...8.3........1........57...64.9....3...2......
+....495..61..................9...84....1.....3..........437.......6....1.2....9..
+....496...8.....2.............7..1.5.2.8...........9.....23..7.4.9......1........
+....5...1..37......6.......51..6.4......9..3.4......8.1.....2.....8........3.....
+....5...1..73......2.......51.....7.6..9..4.............4...63.8....1.......2....
+....5...1.3.6.....7...........3..78.1..4.....2.........8....3......1..6.....28...
+....5...13........9........41.3......5.2..7.....9...8.6......9..3..1..........2..
+....5...13......4..............815..4.3......2..9......1.49.......2...3.......6..
+....5...13.....4......28...1..6........7....5.......2....4..13..82............6..
+....5...16..3......8.......3..2...6...1...2..74........5..71.........32..........
+....5...2..37.................3..89..2.8.....6.........5..21...4...6..........13.
+....5...3.4.....7.2..6.....87..........1..6.....2.........73.4.6.....2....1......
+....5...36..1............9.8.....62.7....3.......4.....41..9......7..1...3.......
+....5...38......2.........8.9..4.5...3....6.........7...12.8...2..6...........1..
+....5...47.8...............8.....71.....46..........3..24.....5.5.7..3.....1.....
+....5...86..3...........4.....6...5..47.......2.....7.3.....16.....842...........
+....5..1........472.........31....6..5.............8..8.5...2.....3.16.....4.....
+....5..1...26......4..........7.26..51......3.........3..41......7...2......8....
+....5..1..2.4.....4........7.1.....3...52.4......8....3..6.7....5....2...........
+....5..1..26................3.2.6...7.......8...8...4.1...7..........3.2..5...6..
+....5..1..3......4.2..6.......3.72..5..4.....1............1..8.6.....7.....2.....
+....5..1..5..2.....4.....8....8..3........2..8........1.5...6.....4...7.2..3.....
+....5..1..9.2............3....8.27..14...9...3..7...........2.84...1.............
+....5..1.2..4.....8.7......4.....2......61....9...3......7..8.2.31...............
+....5..1.2..6.....9........7.....2......14.......3...841.8........2..7...3.......
+....5..1.2..6.....9........7.....2......34.......1...841.8........2..7...3.......
+....5..1.2.6.......48......7..31..........2.6......8..57..........1.6......8.....
+....5..1.2.6.......48......7..31..........2.6......8..59..........1.6......8.....
+....5..1.3..6.....2.........7.3..6...1.8......4.......7.....3......1...2....49...
+....5..1.3.2......7..4.....4...6.2...8..1................3..7.9.51.........2.....
+....5..1.32........8.............8.2....71...........6...8.63....12.....7......4.
+....5..1.38........2.............8.2....71...........6...8.63....12.....7......4.
+....5..1.6.....4..2..8......19....5..5...4......2.....3.......8...9..2......1....
+....5..1.6..2...............1.6..3.....4..7...98......3.....6.25...1........9....
+....5..1.72.......6..7........3..7...1.4......9.......3.....8......92.......1...4
+....5..1.82.......7..8........3..8...1.4......6.......3.....9......12.......6...4
+....5..1.92.......6..7........3..9...1.4......8.......3.....6......82.......1...4
+....5..1.92.......6..7........6..9...1.4......8.......3.....6......82.......1...4
+....5..1.92.......7..8........3..9...1.4......6.......3.....7......12.......6...4
+....5..1.92.......7..8........7..9...1.4......6.......3.....7......12.......6...4
+....5..12.3.8.................34.8..7.....3..1.........8.5..6......12.7..........
+....5..138..7.....2.........3.....54.9.8......1.......7.....8.....6..2......3....
+....5..14....71....8........6.4.3..........52...2........3..8..5.....3..1........
+....5..182..7.....36.......4.....27.....81.............15.....9...2..3...........
+....5..2..1....7..5.........781....3....6.....3..........3.74..6......5.2........
+....5..2..14.........6......7....4.1...5..7.....82....5.....63......1...8........
+....5..2..35.......9.......6.....57....8.9......3........4..1.92...1..........3..
+....5..2..38.......9.......6.....57....8.9......1........4..1.92...1..........8..
+....5..2..6...........1....74...2...1.....5.....3....8...6..75...34...........1..
+....5..2..6..2.....1.......6......5....7.3......1.....4..3..7..5.....1..2.8......
+....5..2..6..2.....1.......6......5....7.8......1.....4..3..8..5.....1..2.9......
+....5..2..6..2.....1.......6......5....7.9......1.....4..3..7..5.....1..2.8......
+....5..2.1.....8.....3......52.....9...6..7...4.......7..8.1...9......4.........5
+....5..2.6..7.....1..........3.4.6...4..28.........7...2.....4....6..3.....1.....
+....5..2.6..7.....1..........3.4.6...4..28.........9...2.....4....6..7.....1.....
+....5..2.9.....1.....3......52.....8...1..9...4.......7..9.1...3......4.........5
+....5..2.9.....1.....3......52.....8...6..7...4.......7..9.1...3......4.........5
+....5..2.9.....1.....8......52.....8...6..7...3.......7..9.1...4......3.........5
+....5..237.1...............26.....4....71.......8.....5.....1...2...4......6..8..
+....5..243.9..................9.61.....28.....4.......6.....9...2..4.......5...8.
+....5..261......5..78........4...8......2.......6.....7..1.83...2............4...
+....5..27.81...............6..3...9..4....1..7...2.......8.45..2...........1.....
+....5..273.1..................3.16..67.....4....8......2..7.......6..3..4........
+....5..2763...................172.........85....3.....1..4..6...52............3..
+....5..28.31...............6..3.47..8......4....1.....2...8.....4....3.....6.....
+....5..28.7..43.........1...436........1..2...............6..4.2..7.....1........
+....5..29.31...............7..3.48..9......4....6.....2...9.....4....3.....1.....
+....5..293.1..................7..13.46..8....5.........8......5.....34.....2.....
+....5..3...1.......7.......3..8.4......6..7........2......7.5.1.6.2.....5......4.
+....5..3...1...9...2..7....67.....4....1.2......9.....45.8...........1..3........
+....5..3..17............2.....1.4...6......9....7.....53..6......4...1........7.8
+....5..3..6..4.....8....9.....8.61..3..9.....5...........2....8.......549........
+....5..3..67...............53..2.......6..7........1..2..1....4...7.8...3......5.
+....5..3..8....7...1..........1.8...5......2....7.....2..43...53.....6........1..
+....5..3..8....9......2.......6..8..3.......12...........8.4..6..19.....7......2.
+....5..3..9.....8..1.4..........67..2...3..........1..3.....42....1.7......9.....
+....5..3.6..2..............1.....6.2....7.4...5..3.....7.....8....4.1...2..6.....
+....5..3.7......8.2..1......8...6.4....2..5.............5..72...3..8..........1..
+....5..31.72.................4...2..1...3.......6...7....5.46..83..........2.....
+....5..311..6.....8.........5.7...4...42..6...3.......7.....2.......1.......3....
+....5..312..6.....8.4.......73....5....2..4...............31...4.....2...5.......
+....5..314.7.............8....4.72...1............2...7.....6.2...31.5...........
+....5..321.6..................1.84...2..........6.....93..2....8..9..1.........7.
+....5..32617..................1.46..2......4....7......4....1..3...2.......8.....
+....5..32618..................1.46..2......4....7......4....1..3...2.......8.....
+....5..32716..................1.46..2......4....8......4....1..3...2.......7.....
+....5..36..1.........7........1.28..57.4.....3........64..3..........21..........
+....5..36..1.........7........2.18..57.4.....3........64..3..........21..........
+....5..368......4..2..........2.47..6....7.....1.......4....2..3...6.......8.....
+....5..372.1..................1.26..67.....4....8......3..7.......6..2..4........
+....5..38.24...............8...3.....5....4.....7...6...64.72.....1.....3........
+....5..382..6.......1.........1.47..35.................3.28..........14.......5..
+....5..3984...................2...7..1....4....9.3.......4.12....86.....3........
+....5..4.....78...1.........3.2........1..6...57..........4.2.38..6............5.
+....5..4...1...7...2..............35...1.9..........8.4..6..1.....2..6..8...3....
+....5..4...9..3...1........27.....8....1......5.......74..6.......2..3........1.9
+....5..4..9.2......3.....5.8....4..9......2.1....6.......1..3..4.6......5........
+....5..4.2...3....1........6..2..1.....6...5...........59...3.....8..2...4.....7.
+....5..4.2...3....1........6..2..1.....6...5...........59...3.....8..6...4.....7.
+....5..4.8..6.....1.........5..43.........18.....7...2...1..2....39......4.......
+....5..4.8..6.....1.........7..43.........18.....7...2...1..2....35......4.......
+....5..4.8..6.....1.........7..43.........18.....7...2...1..2....39......4.......
+....5..4.9..6...............5.87.....2....9........1..3.....27.1....9......2...5.
+....5..41.7.2..............3.....2......14....6....8..531.........7.9...4........
+....5..42.1...............55.8.2.......1..63.4...........6.31..2..7..............
+....5..423.9..................9.61.....28.....4.......6.....9...2..4.......5...8.
+....5..43276..................1.62..4.......8...7......1....6..5...4...........3.
+....5..46...7............8..12..6....7....2......4....3..2..7..8....4.........1..
+....5..47...4...3.1........6...8..........2......3.....3.2..5.....6..1...4...1...
+....5..48..13............7....23.1..86.......7........48...7......6..2...........
+....5..48.73.................2...35....84....1...........2.36..49............6...
+....5..48.73.................2...36....74....1...........2.31..84............7...
+....5..49..16............8....23.1..97.......8........49...8......7..2...........
+....5..4931..............7.6..89....1.....2.....4..........13....97......4.......
+....5..6..14...............7...6.3..5..8...........4.29......8....4.1......23....
+....5..6..3..2....9.....8.....9.16..7.....4...5.......6..4........3....5.......2.
+....5..6..42.........3.....6..1...5.7....2......4.....8.....4..5...9..........1.2
+....5..6..9.....3......1....3.4.....5.....1........2..1.....78...436.......9.....
+....5..6..9.....3......1....6.4.....5.....1........2..1.....74...836.......9.....
+....5..6.1...3...........2.31....7..7..2........6.8...846............1..........5
+....5..6.4.2...........1......3..2.4.18............7...5..6..1.7..2..4...........
+....5..614.3......8.........6.1...2....7.4.........5..5.....3.....6..4......2....
+....5..62..3....5..1..........1.38..65..........4.....9..84..........1..2........
+....5..62..3....5..1..........1.38..65..........7.....9..84..........1..2........
+....5..6241..............3.7.....85....2........6.......63.....1.....7......8.4..
+....5..6241..............3.7.....85....2........6.......63.....8.....7......7.4..
+....5..6241..............3.7.....85....2........6.......63.....8.....7......8.4..
+....5..6241..............3.7.....85....2........6.......63.....8.....7......9.4..
+....5..67.9.8.................4.98..6.1.........5.....7...63.........94.2........
+....5..7.....13...8.....6.........517..8........4........2..7....1.4.....4....8..
+....5..7...8..9....1..........2..81.32..6..........5..5.4.....3...1.....7........
+....5..7.4.....1..1..........2....3.6..4........7...5..5....6...3..2.......8..4..
+....5..71....24.....8....6.25....4.....1.....3..........16..........35...7.......
+....5..71....24.....8....6.45....2.....1.....3..........16..........35...7.......
+....5..7164...................6.32...71.........4.....3..2..6....8.7...........9.
+....5..719....3.........4...51.....4...2........9.....6.....93..3..1..........2..
+....5..72....82....1.........37.4..........65...6.....2.....7.....4..3..5........
+....5..721...............8..8..2....6.....1.....3....4...6.14...27...5...........
+....5..748.1................7.24....6.....1...........2..1.63...4.....2....8.....
+....5..764......8.2.........6.4.8....5....9.....2........1..3..8.....2......7....
+....5..764......8.2.........6.4.8....7....5.....2........1..3..8.....2......9....
+....5..781..2..............4.....1...7..8.........2..6.58....3....1.46...........
+....5..8...6...3......2.......3..1.....7..6..2...........6.1..752.....4.8........
+....5..8..4.....3...1......9..36..........4.2...7..1...1.4.2...8.....6...........
+....5..8.6.....2...1..3....2..7..4..3.8..............1..5....3..4.6........1.....
+....5..827..4.................1..4..3.8.......25......6....27...4..8..........6..
+....5..827..6.................1..4..3.8.......25......6....27...4..8..........9..
+....5..84.62......7........1...84....3....65.............6.32..8...........1.....
+....5..84361..................1.72..4.......9...6......2....1..5...4...........3.
+....5..9..81.............2.5..4...6....62.....3....7.......81.32..............8..
+....5..9.1............2......8...1.4..46..7...5..3.....2.....3.7..4........1.....
+....5..9.28.......1.........9.47.......8..3........1..6..1.3..........75......2..
+....5..912..7.....36.......4.....27.....91.............95.....8...2..3...........
+....5..9123.6.....4........6..2..3......1..87..........1..7.......4..2...........
+....5..9123.6.....4........6..4..3......1..87..........1..7.......3..2...........
+....5..9123.6.....4........6..4..3......1..87..........1..7.......3..6...........
+....5..9124.6.....3........4..2..6......7..5...........1..8.......3..2...5.......
+....5..936..1..............8.....64..9..35........7......4..8..27........3.......
+....5.1......38...4......7..8.6..5..7..2...........3.....7...24.51...............
+....5.1...4...2....3.....6....34..5.1..6.....2.......76.....2.....8.............4
+....5.1...4.6......2.......56.7.....3.....5.....2.....1...8...........24......67.
+....5.1...8.......7........4..2....7....8..5.......3...51...6.....7.4.2....9.....
+....5.1..3.....7......9....4..7...8........5......6......6..3.1.582......9.......
+....5.1..3.7............2..4..7...8......95......1.......3...76...4...3..1.......
+....5.1..4.7...........8...6..3...4........9..5.......2..7..5........8.13..4.....
+....5.1.284.7...........6...62...5.....3...4..............1.2..47.......3........
+....5.1.3.2.6.........4.....6.2...7.......8......3.......7..24.3.1......5........
+....5.1.3.2.6.........4.....8.2...6.......9......3.......7..24.3.1......5........
+....5.1.43.....5..2.........4..1.7.........3....6........3.2.6..17...........8...
+....5.1.47.83.....2.........1.64...........8........7....41.6..8.....9...........
+....5.1.72....8.........3......62.8..31...............6..8...4..7.1..5...........
+....5.1.73.84..............2......835...7..............74...5.....3...6..1.......
+....5.2......43....1.......6..1..7....38.....5........2......4........53.7.9.....
+....5.2....1.3....7......4.......1.7.6....5..4..8........7.6....25.........4.....
+....5.2...1.....6.....2....8...7.......4...1.2......5..4.1.3......6..7........8..
+....5.2...14...........6......82..4.56.......9..............6.13..4........1..9..
+....5.2...2......6......7.....2.6...5......4.3.........614.........1.35........8.
+....5.2...3....8......7......59.....2......7........1..74..1...5.......2...3..6..
+....5.2...4.....7....6.3...6.3.........7...1.5.........2.18..........3.4......5..
+....5.2...41.........3.....7......8.....16..........5..6....1.4...7..6..3..8.....
+....5.2...41.........3.....9......8.....16..........5..6....1.4...7..6..3..8.....
+....5.2...7..3......1...8...3.....548..2........1.....54.....3.6.2...............
+....5.2...9.6.................3...612.4......7............284...1.....3.5..1.....
+....5.2..1................768.....1...7.4...........3..24...8.....6.15.....3.....
+....5.2..1................768.....1...7.4...........3..24...9.....6.15.....3.....
+....5.2..3....1....8......4.....731...5....7..4..........84...61...........2.....
+....5.2..3..7.....1.........6..24.......6...3.......7..2....6.....1...8...43.....
+....5.2..3..8.....1.........28....7....3.16.....4..........6.43.5..2.............
+....5.2..4......3..............78..53.1...4..6...........3...6..8.1......2......7
+....5.2..48...........1....6..7.3.4....8.....1...............76.2.4......5....1..
+....5.2..5...3..........4..3.5....6.7..4..5.....2...8..2.1......1..............9.
+....5.2.3.61...........4......4.7.6.2..6.....5............3.8...4.1...........5..
+....5.2.6.843..................125.........84.........26....1.....4...7.5........
+....5.2.7.843..................625.........84.........26....1.....4...7.5........
+....5.2.8.943..................625.........94.........26....1.....4...7.5........
+....5.2.861............9.....74...1.3...2.......6...4.2.....5.....1.7............
+....5.23..498..............6...2..5.2................9...9..7.431.............6..
+....5.23..7.3.....14.......6...82...........1.......4...84.....5.....8.....7.....
+....5.27.....78...1...........2..6.4.8..3..........1...7.....3.6..4........1.....
+....5.27.13.6...........4..6..3....1....2..4.8...........8.1....27...............
+....5.27.18.6...........4..6..3....1....2..4.8...........8.1....27...............
+....5.3........7.2..6.1.....4.7......2...8..........1.1.32........8..4..5........
+....5.3...61......5..2.....2..93.....7.....8........461.....5.......4........6...
+....5.3...76............1.....2...6.8...1...........74...4.3.2.3.....5.....6.....
+....5.3...84...............3......16.5..7....7..........64.1...2.....5.....6..8..
+....5.3..1................27..1.4....3....8.....6..5..6..2...1...3.8...........4.
+....5.3..2......6......1......64...2..53......1.......6..2.8.........74.......5..
+....5.3..4...2.....7.........6...5.2.8.1...........4.....7...1.2..9.....5.3......
+....5.3..6......2....87....9..4.2...........1......5...35...7.....9...4..2.......
+....5.3..62................7.5...4....31........2.....18.6...2......3..6....4....
+....5.3.17.84.....2.........1.63...........8........7....31.6..8.....9...........
+....5.3.2.1....5..67.......2..6.3.........4.....1........3...6...8.4......4......
+....5.3.2.41..................1.9.4.2.....6...7........3.....1.5...2....6..8.....
+....5.3.61..6...........7..2.....54......3........6......24..1..3.....8...7......
+....5.3.7.1.6...........4..4.3...5.......1.8.7..2........1...2.3...4.............
+....5.3.71..7...........8..2.....64......3........7......24..1..3.....5...8......
+....5.3.82..7.....1...........2...6..8......4..........5..48.....6....7......32..
+....5.3.89..............7.....4.9.2.7.1.........2..........6..4.5.....9..3..7....
+....5.37.1.8................3....2..6..4........1.....4......51.6..3.........7..8
+....5.38.7.1................3....2..6..4........1.....4......51.6..3.........8..7
+....5.4....26......1.......7.....8.....3..9.....2.........48.2........315....7...
+....5.4....72......6.....3.54....9.......1......7.....8.......2...6...7.4...9....
+....5.4...1..........7.....4...2.3...6......1....9..2.3..1.....2.....8.....6.8...
+....5.4..92................7..6...1...5.4...........9..43...5.....9..82....1.....
+....5.4.17.2..................2.6.5....8......4.......5..7..3...1..4....6......2.
+....5.4.2.1....5..67.......2..6.1.........3.....4........1...6...8.3......3......
+....5.4.2.1.7...........8...6.....3.2....4......5..6.....63..1.8........4........
+....5.4.267.3.....1........21.....6.....4.53.............6.1.....5...8...........
+....5.4.271...................64.2..8......1.............1.8.3.6.2...5.....7.....
+....5.4.6.31...............54..6.......2...137.............3.2.4.....5.....8.....
+....5.4.7.6.3..............7.....8..4....6......2..........713.5...8.....2.....6.
+....5.4.8.6.3..............4.....7..8....6......2..........413.5...7.....2.....6.
+....5.4.8.76..................7.1.6.4.....3.....6.....8..34....2.....5.........1.
+....5.4.91...3....6.........57...9..8......1....2......3....7.....1.8......6.....
+....5.41...23......8....7.....9...3276................5...7.6.......1.....3......
+....5.42..1.............5.......73.12...4.............4.2....6....8.1..7...3.....
+....5.42..1.............5.......78.12...4.............4.2....6....8.1..7...3.....
+....5.6........2.19........5......94.8.2........1.........8..3.7.2......61.......
+....5.6.....7...5...1......4......17.8..2...........3.65....2.......14.....3.....
+....5.6....1.......7.......3......4....4...7.65..........7.12.....84....9.....5..
+....5.6...27............1.....2...4....3.8...1.....5.....4...238...6...........7.
+....5.6...6..7......1.........1.24..7.....2.....3.....54.......2......3....8...1.
+....5.6..1.4...........3....2.4......6..8...........1....3..2.63..1.7.........5..
+....5.6..1.4...........9....2.4......6..8...........1....3..2.63..1.7.........5..
+....5.6..1.7.............3..9..1...4...3...2........7.85....1.....7..3.......2...
+....5.6..8......4.......2...5......3.7.....1....2.4......73...54.1............8..
+....5.6.3.8.4........2.....1..7...4.5.3......6.........2.....7.....6.5.......1...
+....5.6.7..4.2.5..8........3..1...4..6..7..............5....1.....4.3......8.....
+....5.6.7.31...............56..4.......2...137.............3.2.4.....5.....8.....
+....5.6.8.1...........4....8...27......5...31............3.1.7.5..6..4...........
+....5.62..4.8......1......75...36..........84.....2...2.....3.....1.....3........
+....5.62.3...2.5..7........1..7.4.........2.....1......5..6..8....3....1.........
+....5.68.....89...1...........2..7.4.9..3..........1...8.....3.7..4........1.....
+....5.68...1...........2......14..7.62....5.....9.....35..........4....18........
+....5.7....1...........6...53.....4....1...2.7....2...6...4.....5....8.....2..1..
+....5.7...1.4......9.......7.623...........1.5........3.....8.7.4.6...........3..
+....5.7...2.6......4.......76.8.....3.....1.....2.....1...9...........24......68.
+....5.7...4.6......2.......76.8.....3.....1.....2.....1...9...........24......68.
+....5.7...6.3...........1.......2..84.5........7..........4.57.38.6............2.
+....5.7..4.....6.......1.......6...23..9............5..65...1...7.4..........3.8.
+....5.7..48...................4.32...25...1.....6........17....3......4...1.....6
+....5.7..5...3..........1.........82.6.....5..19.........9.74..2......3....1.....
+....5.7.4.26..................6.1...4.....5...9.2.......1....2....3..4..3...8....
+....5.7.93.1..................1.3.6.45....2.....7.....2..4...3..8..7.............
+....5.72.3...2.5..8........1..8.4.........2.....1......5..6..9....3....1.........
+....5.72.3...2.6..8........1..8.4.........2.....1......5..6..9....3....1.........
+....5.72.3...2.6..8........1..8.4.........5.....1......2..7..9....3....1.........
+....5.74...2...3...1.......4...7...........61......5.8...1.6.2.5...........3.....
+....5.74...3...2...1.......4...7...........61......5.8...3.6.2.5...........1.....
+....5.74...9...3...1.......4...7...........61......5.8...1.6.2.5...........3.....
+....5.74.18.3...........2......4.5..6.......1.........3..8.1.6...7...4...........
+....5.76.31..........8........4.1.2.7..6..............5...73.........4.1.2.......
+....5.76.91...........9.......1.84..2..4.....6.........8.3..1......6..5..........
+....5.78..61..........9....8...3..........4.63..4......8.6.2..........5....1.....
+....5.78.43...........1.......2..3....9.....47.........2.3.9...6......5....4.....
+....5.8...76............1.....2...6.3...8...........74...4.3.2.1.....5.....6.....
+....5.8..42.................75...2.....4.31.....6........18....3......4...1.....6
+....5.8..49.................75...2.....4.31.....6........18....3......4...1.....6
+....5.8.2.61..................1.3.5..7.6.....2........8...2....3......6....7..4..
+....5.8.63.1..................1.3.7.45....2.....8.....6..4...3..9..8.............
+....5.84.1...3....9.........8.1..5...2.....7....9.6...6.......1...78.............
+....5.89.16...................6.7...5......8.2..1......7......1...4..2....4.3....
+....5.9......4.6..2...........8...27..5....3..9........4....51.6..2..........3...
+....5.9...4.7......8.6.....6...12...3......47.......8.9.1...2.....4..............
+....5.9..3........6........1.......6.......23....4.5.....6.1.7..9.3......4....8..
+....5.9..7.....6....8..2...9..3............85.......2..52...1...4.6.........7....
+....5.92.74...6.............82....1......7..5...9.....3.....7.4....1.......2.....
+....51..........26...8.....28.9..7..3..............5...15...4.....23.........7...
+....51.........8.6............7...9.83........6.8.......4.1.35.2..6.......7......
+....51.........82.............24.3..51.......7..........23..67.4.......5...8.....
+....51.......3.8..6.....4...7.2..6....5.....3.2.......4..6...1........5.........7
+....51.......4.6....9.....261..........3...4.5.........832...........57.......1..
+....51.....2....8.4.........4.8........2..3..6.....5.....36..2.51.......7........
+....51.....9...6...........51.....3....98.7..2.........4.....5.8..6........7....9
+....51....2....3..............24..5.6.......1.3.7.....1.8....4....3..7..5........
+....51....2....3...........7......15...23.......4....8578............64.1........
+....51....2....8..............7..2..5...3....1......6.61......5...2..47....8.....
+....51....3.....8.......2..5.1.4...7...7...3.2........6.....5...2.8........3.....
+....51....3....9............2.3...467...4..1....9.....1.5.........8..2....4......
+....51....4.....3...........7.43.6..5.....1.2.........2..8........3...7.1.8......
+....51....4.....6.....2.....6.8..7..3..7...........2.....3..54.2.......3..1......
+....51....4.....9.....2.....6.8..7..3..6...........2.....3..54.2.......3..1......
+....51....4.....9.....2.....6.8..7..3..7...........2.....3..54.2.......3..1......
+....51....6....8............3.....515......4....2.....1.4...2.....63.7.....8.....
+....51....6....8............3.....519......4....2.....1.4...2.....63.7.....8.....
+....51....7....2...........5..26.3..1.4...............62.7........3...8........41
+....51....7....3...........1...4..6..3.2............545.1.........7..8..46.......
+....51....8.....2...........4.7..3.....8....1......5..5.1....6....24....3.....7..
+....51....8.....2...........4.8..3.....9....1......5..5.1....6....28....3.....7..
+....51....8.....2..........5.....7.4..32........8..6..1.....56..2.4.........7....
+....51....8.....9..4.......67....5.....84...3...9........3...4.5.....1..2........
+....51....8.....9..4.......67....5.....84...3...9........3...8.5.....1..2........
+....51....8....6........7..3...2..5..6.3...........4....5....127..6........8.....
+....51....9.....2...........4.8..3.....9....1......5..5.1....6....24....3.....7..
+....51....9.....2...........4.8..3.....9....1......5..5.1....6....29....3.....7..
+....51...1......6.8........7..6........2..5........2.3.5....1...2..3.......4...8.
+....51...2......7..........39.7........4....8......5..65....13...4.8.......2.....
+....51...2......9.43........18.6.......7...4.............4..1..7..3...........8.5
+....51...2.....6..9........4..6...5.....2...7.......31...2..8...13.......7.......
+....51...3......2........4.4..26.....1....7.....3.......7...1.82..6...........5..
+....51...3......2........6.4..26.....1....7.....3.......7...1.82..4...........5..
+....51...3.....7..........94.73............25.........65.....1....7..2...8..4....
+....51...3.....8..6........4.....65.....1..2..8.7.......18........9..3...2.......
+....51...3.7................1....54.6.23............7....7....21...4.....5....8..
+....51...4......3..........2..49.....6......17.....8...85...7.....3...4..1.......
+....51...4......9..........2..48.....3......16.....7...75...6.....3...4..1.......
+....51...4.....9...........7..63....8......15.......2..2.4..6...5......3...7.....
+....51...6......8...........4.8...6..52...1...............7.5.286.4.....3........
+....51...6.....4..2........4..6..3......8...1..........18.....5...4...7..5.....6.
+....51...6.....8..2........3..8..7.........1....4.......96..2...1.....9..5..7....
+....51...6.....8..9...........7...52....4..1....8.....25..........6..3...14......
+....51...7......2..........8..24....3.....5.1......9...9.7..6.....8...3...5......
+....51...7......4.3...........4...3.65........8...........2.8.54.27...........9..
+....51...8......4.3.....7...57.2.....1......6...4...3..2....5..6..3..............
+....51...8.....4...........3..69....7......51.......2.63.4........3..9..........5
+....51...8.....9..6...........7...52....4..1....9.....25..........6..3...14......
+....51..63......2......4.......3..8..5....4...1.......2..7....58..2...........1..
+....51..872........3..8......9.....1..43............5....2..46.1..............3..
+....51.2...34..............27..........3..9...1....4..8.5.2...........71......6..
+....51.2...94..............27..........3..9...1....3..8.5.2...........71......6..
+....51.3.8....6.......3.......4..8.7.6....4....1.......3.....154..2..............
+....51.6........82...........5...7.....86....9.4......2..4......8.2......3....1..
+....51.6........82...........5...7.....86....9.4......2..4......8.2......3....5..
+....51.6.42.................16..5......3..4.8..9......7..24...........1.......3..
+....51.8..63..................64.3..5.1......8.........2.3....7...7..4.........1.
+....51.8..63..................64.3..5.1......8.........2.3....7...9..4.........1.
+....512..4...6..7.3...........7...3...6.2.............79.4...........6.5...8.....
+....512..4...6..7.3...........7...4...6.2.............79.4...........6.5...8.....
+....512..83...................9...3.2.4.......51......6..37..........1.4...8.....
+....516..8......2...........15...3....62...7..4.8.....3..7...........1......4....
+....516..8......2...........15...3....62...7..4.8.....3..7...........1......6....
+....516..9......2...........15...3....62...7..4.9.....3..8...........1......4....
+....52........62..........11.3..........9.7..8.........2....46..9.1........8...3.
+....52.....1.....7..........731...6.4.....25.......8..62..........3....45........
+....52.....1.....7......4.....1...3.4..8............2.52....6.....71.8..3........
+....52.....9.....7..........731...6.4.....25.......8..62..........9....45........
+....52....6....3...1..........3..6.14..6....75........2......5.....4..8....7.....
+....52....7....6........1..4..3...........39.5............4..58..3....2..6.7.....
+....52...7......6..........8..41.......6..3........5.9.9...3......7...1..52......
+....52...7.....8........1.....6...53.5.....2..8.......1..7..6....2....4.....3....
+....52..1468..................4..36.2...7...........8..3.8.....5.......2......1..
+....52..1476..................4..36.2...8...........7..3.6.....5.......2......1..
+....52.3.7......1.2...4.....6.31....4.....2........8...3.6...........4.....7.....
+....52.3.81...6...7...4......17...........24.......5.....3....142................
+....52.4..8......3..6......5...7.1...4.............8..4..3...7....8..6....2......
+....52.4.3...1.........6.........1.67.....2..8..9........3...8..6......5.1.......
+....52.6..4......1.........2.....57...31........4..8......8.2...1.7.....9........
+....52.7...1..........7.....8.6..1..2.....3...........53.1.....7......2....4..6..
+....52.9.3....4...1..........8....72...3..6...5..........16.3....4.......2.......
+....5243.1...3................8...19.42......6........7..1......3....2.......8...
+....526..13.................7.1........38....4.....5..2.5....1....4....7..6......
+....53....4.....1........2.......5.6.2.7...........3....512....6..4.....3.....8..
+....53.4..72.................82.....4......5....9.....35..1.......7..2........9.6
+....53.7..81...........2...5.....43....82....4...........6..1.832................
+....53.7.1.....6..............6..1.48..2......5........3.....5...41.........8.2..
+....532..4.6......1..7......5.....6....8.9..........1..9....8.....6..3......4....
+....532..4.8......1..7......5.....8....2.6..........1..9....3.....8..6......4....
+....532..4.8......1..7......5.....8....6.2..........1..9....3.....8..6......4....
+....532..4.8......1..7......5.....8....6.9..........1..9....3.....8..6......4....
+....534...71..........2.......7.61..5..4......2.......6..8.....3......2.........7
+....534...71..........2.......7.68..5..4......2.......1..8.....3......2.........7
+....534..1......7......8...62.1.......5...3..............6...21.38.4.............
+....534..2......7......8...61.2.......5...3..............6...21.38.4.............
+....5347..1...........2....7..1.6...3.....2.....8........6....85.3.............1.
+....54........13..7.......2.4....1......7.......8.....2.73......5.....1.......64.
+....54....3.....2.....7....1.....5.....3...4.7.5.........6..1...2.8...........7.6
+....54...1.....7........3.......1.52.8........3.......2.5....4....83.6.....7.....
+....54...1.....7........8.......1.52.8........3.......2.5....4....83.6.....7.....
+....54...2......7.........39..2......3......1......5...51...4.....7..86....9.....
+....54...7......9.....1.....6.7...3....2..8....1......2..3..5........1.4.9.......
+....54..67.1...3..2............8.13..5...6............8..7............54...1.....
+....54.2.7.8......6.....5...2.....1.5..8........7......3...2.........8.1....3....
+....54.3...1...6...........3......58..47........1.....52..3.......4..7...8.......
+....54.3..12................891.2...4......5....6.....8...3..........9.1......2..
+....54.6..31...............6.....54.7..38.......9......9......2...1..3..4........
+....54.7.3.......12........45....6.....7..3..............3..28..7.1......8.......
+....54.8..61................3..89......3..1.........45...6..2..5.3......1........
+....54.8..61................3..89......3..1.........54...6..2..4.3......1........
+....541...2.......6........3..26......9...7.....8......8.....26.....75.........3.
+....542..6.8....1.............8..67..43......1........72....4.....1.............3
+....546..1............7....2.81...........5.9......4.....8...2..35.......4....7..
+....548..6...2....1...........9...1392.8...............4....2....31............6.
+....548..62...................2...463..9............1....6..9.3..5...7...4.......
+....549..16...................6..87..2.1...........4..5.9.........3....24......5.
+....549..62...................2...463..8............1....6..3.8..5...7...4.......
+....56.......3..8.1.........75...3.....1...4..6.4.....8..2....7......5.6.........
+....56.......3..8.1.........75...3.....8...4..6.1.....8..2....7......5.6.........
+....56.......7..9.........1......37..6....5..1..4.....4..1...8..5....7.....2.....
+....56....1...........2.....4.3..7..6.......59........2..1..3.....8..41.5........
+....56..21......8...........52....3...674.....4.1.....3..8...........5........4..
+....56..7.1....9...........5...8..6.3.....2..7.........9.1....8.2.9............5.
+....56.3.1.....4..............78.2...56.......3...2...4..9..1.....1............5.
+....56.3.2..4..5..8........1..3......3....7..........2...27.....6.....1.........8
+....56.4..1...........3....5.3.........1....87........64.2.......2...5........37.
+....56.4..1...3..8....2....5.3...2.....1.....6........48.7...........63..........
+....56.4..2......3.9..1.......2..9.75.1............3..8..9.....6......5..........
+....56.4.2............3....4.91............357..2........7..4..8.....9...5.......
+....56.4.2............3....7.91............358..2........7..9..4.....1...5.......
+....56.8......9...4........3..7..1.4.25............3..1..43.....6.....5..........
+....561...3.....7.....1....5.1.........2...3....8.........4.6.5.2.3.....7........
+....561...3.....8.....1....5.1.........7...3....2.........4.6.5.2.3.....8........
+....561..4.......98...........1....3.5.....4..1............57......2..8.3..4.....
+....561..4.....6..2...........2.7.4....3...........5...68.9...........27.5.......
+....563..4..2......7.....8..357............41.........1....4...8.....7......3....
+....569...21................6.2.8.........53....1.....5...7..6....4....29........
+....57.......3..6.1.........87...3.....1...4..5.4.....6..2....5......7.8.........
+....57.......3..6.1.........87...3.....6...4..5.1.....6..2....5......7.8.........
+....57....8.....1..3..4....7..8...3.5........4........2.....5.4.1.6...........2..
+....57.1..1....9......2.......4..63.5..8.....2........8...9...5.3.6..............
+....57.2.4.1..........6.....7.9...8..5....7.....1.....9..8.....3.....5........6..
+....57.3..16...4...........3......75.4.6.............88.....2..5.7.........1.....
+....57.4..2......9.6..1.......6..2.85.1............3..3..2.....7......1..........
+....57.6.3...1.....8..........2..8.45.1...........6....4.8.....7......5.......3..
+....57.9.3....4...1..........8....72...3..6...5..........16.3....4.......7.......
+....571......4....3.........6.9...8..57.............2.2.93...........5.6......7..
+....576...4.....3.............4..1.2.6.3...........7.....24..8.5.7......1........
+....58.......6..2.........12.13.....7.....56.3.........6....9...4.1..........2...
+....58.......6..2.........12.13.....7.....86.3.........6....5...4.1..........2...
+....58..4.7.2......1..........3..17.5......2.4...6.......1..2..6...4.............
+....58.2.7.16.................3..8.1.5....4..2........4..1......8.....5.....3....
+....58.4..2......9.6..1.......6..2.78.1............3..3..2.....5......1..........
+....58.4.2.1................4..7..853..2..............6..1..2.7.8.............3..
+....582.......78..4........6......13....2...........4..2.4..5.....1...6..8.......
+....584...61...............5.....3..2..1........6.7......3....2.7.....1.4...2....
+....586...7.....3.............7..1.2.4.3...........8.....24..9.5.8......1........
+....59....3.....2.....1....2.76.....1.....5.....2...3..8.7..4........1..........9
+....59.2.3.1..........4.6..7..8....1.2....4..............3...8..4....5.....7.....
+....59.3.24.......8...6.....19.....6...2.8..................91.5..7...........8..
+....59.8...1...2...........53.....7....4....1...2........17.4..95.......6........
+....59.8.2.1................5.....3.7..4........2.....6..1..2........4.6.9..3....
+....592..4.7................5..2.......8...6..7.......1.....5.98.67...........3..
+....593..12...................64..7.5.9.....83..............92..4.1........7.....
+....6...1..87.....4............2..8.7.....4......1....31.6........4..75..2.......
+....6...1.2...8.................382.6.7......1........4..71.....5.2...3.......4..
+....6...1.5..7....4........2.....67...4..1......5..3.....4.8.2...6.......1.......
+....6...1.85......3............3..8..5.....4.1...........8.59..7.6...2.....4.....
+....6...12...5...........3.8.....57......1.........2...312........7..8.4.6.......
+....6...12..4................3217...5.....84...........16....3....5..4...7.......
+....6...12.3......4..5......6..71.........53........4....4.32...7..........8.....
+....6...12.5......3..2......6..71.........24........8....5.23...7..........4.....
+....6...13.....2....1.5.....2..4..6.7..2...............8.7........3..7....6....4.
+....6...14....2...7.........3.51..........47....3..........784.2.5.......1.......
+....6...25......4......1...4..3........5..8........1.....42..7...8....3..1....6..
+....6...42......7......1...7..85..........6.1......9....47...3..6....5.....2.....
+....6...5.5....1...4...3...6....72..3......6....1........58..4.7.1...............
+....6...9.21.......8..........2..35.6...7....4......1.7.....4.6...8.1............
+....6..1.....43...2..............8.45..8...........3....42...7....1..25..6.......
+....6..1.....78...2.........359..8.....2......7.......6.....4.74..1...........3..
+....6..1...8...4...3..9..........2.81..............3..5..4...7.6..2........8.3...
+....6..1..2.4..............65....3......81..7............3.24..1.8......7..5.....
+....6..1..7.3.....4.2..........5.7.8...61..........2..15..........2..3.....9.....
+....6..1..8........3.......12..4.......2..8.56.....3.....3.72..4..5..............
+....6..1.2..7.....8........51.3........2..6...4.............8.2....4.7...5..1....
+....6..1.25.......4..3.........7.3..5....1.........8.7.3.8........2..4...7.......
+....6..1.52........9.4.....3.....2.5..617.......8.......8...4..2....5............
+....6..1.7..3.....5.........2..1.8..3.......5..........6....12.4..7......8.5.....
+....6..1.7..8.....2........51.3........7..8...4.............3.2....4.7...5..1....
+....6..1.8........9.........172......6.3........8..4..5.....3...2..1..........8.9
+....6..1.92.......7..5........7..3...1.4......8.......3.....7......82.......1...4
+....6..1.92.......8..5........8..3...1.4......7.......3.....8......12.......7...4
+....6..1.95.......7..5........7..3...1.4......8.......3.....7......82.......1...4
+....6..1.95.......8..5........8..3...1.4......7.......3.....8......12.......7...4
+....6..12.3.8.................94.3..7.....8..1.........9.3..5......12.7..........
+....6..1295..........3.......2..1....8....7.....9...4....6..5.81..............9..
+....6..135..7..................83.6.4.....5..2...1.......4..2...8.9......1.......
+....6..138.24.....7.........1......5...27.........3.........27....65..........8..
+....6..14.......2.7........5.....3.8...4.1......6........75.6..2.....7...1.......
+....6..1482..............5...4.1..6..3....2..............3.27.....7..3..1........
+....6..1482..............5...4.1..6..7....2..............3.27.....7..3..1........
+....6..18..24......3......5.5..1..........2.........9....5.37..9..2.....1........
+....6..2.....43...1..............9.45..7...........3....42...8....1..75..6.......
+....6..2..1..............7.4..2..8..6...3.1..7.2.5.......1..3..2...........8.....
+....6..2..1..............7.4..2..9..6...8.1..7.2.5.......1..3..2...........9.....
+....6..2..3..8...........4.6.21.....4.....5......7.3..2..5..8.....4.....8........
+....6..2.3..5...........8..6.....7.1....29......4......29....6....3..5...4.......
+....6..2.4..3.......1......36.1........2.8.5...........25..7.......4.3........1..
+....6..2.4..3.....1.........69.7..........4.5....2...8.2.....7....4..3.....5.....
+....6..2.5.....1.....3......62.....8...1..7...4.......7..9.1...3......4.........6
+....6..2.5..4.....9......1.....187..3.....5......2.....7.3..4...1..........9.....
+....6..2.8..4.....5......1.....157..3.....5......2.....6.3..4...1..........9.....
+....6..2.9.....1.....3......62.....8...8..7...4.......7..9.1...5......4.........6
+....6..2.9..4.....4......1.....187..3.....5......2.....7.3..4...1..........9.....
+....6..24.3.5..............79....3......2..........1..2.4....8....7.1.....83.....
+....6..24.9.5............7.4..32..........1..6...........1.95..2.......87........
+....6..241.7.............8.5..3..7...4..2................5..3.6...7..5...2.......
+....6..245..3.....7........1.....3...6...2.......4.....43..9.8....1..5...........
+....6..245..3.....7........1.....3...9...2.......4.....43..9.8....1..5...........
+....6..2453.........7.........3..54.21................6.....3....2.4.......8....1
+....6..27.51...............5..1.46..2...........5........3...8..4....1..7...2....
+....6..28.3.1.................5..14...63.......8......75....3......82...1........
+....6..28.51...............7..3...9..4....1..8...2.......1.46..2...........5.....
+....6..283...1....9.....7...62....1..7.5...........3..4..9........3..6...........
+....6..3.....42...1...........1..2.53..8...........4...24...5.....7...9..6.......
+....6..3....48.....12.........7..2.183.............5..4.....67......1..........4.
+....6..3....49.....12.........8..2.193.............5..4.....67......1..........4.
+....6..3....8..2..2..5........29.5...76............1.......7.645...............7.
+....6..3....8..2..9..5........29.5...76............1.......7.645...............7.
+....6..3...1............8..68.....5....4.1......2......7..3.6..2.....7.1........4
+....6..3...1............9..68.....5....4.1......2......7..3.6..2.....7.1........4
+....6..3...1...8...2..5....63.....4....1.2......8.....45.7...........1..3........
+....6..3...1...8...2..9....63.....4....1.2......8.....45.7...........1..3........
+....6..3..2....7.......1....7.4..2.....5..4......8....6......853......6....2.....
+....6..3..4..7............1.8.4..2..6......9....1.....5.....7.47.6......3........
+....6..3..8..4.....5....9.....5...1.7......6....2.....6...7.2.....8..5..1........
+....6..3..9.....8..4.5..........74..8...3..........1..3.....52....4.1......9.....
+....6..3.2........7...........7..1.2.5.............7...3....46...82.3......1...5.
+....6..3.2..9.....4...........4.52..86....1...3.......9..21.....5.....6..........
+....6..3.5.....8.......1......8..4..9..5............1....28.7...16.......3.....2.
+....6..3.54........1.......8..72.5.....8..1..........4...3.4...6......9....1.....
+....6..3.8.....4.....1.........5..62..2...3..4....7......8.41...6........5.......
+....6..3.8.....4...5..........7.82...6....3....1......2..8....5...5...6........1.
+....6..31.2.7..................13..8.4....2......5.......4..82.5..9.....1........
+....6..31.2.7..................53..8.4....2......1.......4..72.5..9.....1........
+....6..31.24.................5...4..6...1.......3...8....4.57..13..........2.....
+....6..31.24.................5...4..7...1.......3...6....4.58..13..........2.....
+....6..311..2.....9.........6.8...4...45..7...3.......8.....2.......1.......3....
+....6..312.8....7.4.............54.2.1....6.....2.....5..3..2......1.............
+....6..34..25......1.......6...3.8.......42..............2..57.3.......6...1.....
+....6..34.2.8.................5..2.73...9....6.............285..74......1........
+....6..3854...................2...7..1....5....8.3.......4.16....25.....3........
+....6..3854...................2...7..1....5....8.3.......5.16....24.....3........
+....6..4..27.......3..........65.2........8.7...1..........2..31....3...4......1.
+....6..4..5..2.....1.......6.8...1.....9....54...........5.32..7......6....1.....
+....6..4.8..7..................4.75.3.....6.......1......9..8.2.452......1.......
+....6..4.8..7..................4.75.3.....6.......1......9..8.2.542......1.......
+....6..41.82..................8.2.5.61..........3.....7...4.3.......18....9......
+....6..42731..................1.53..2......5....7......5....1..4...2.......8.....
+....6..42831..................1.57..2......5....3......5....1..4...2.......9.....
+....6..45.1.2............3....1.72..3.8......4..5.....6...3..........7.1.........
+....6..47.3.....8.9...5......86...........1...4..........4.3...5.....9..2..8.....
+....6..4738.5......1..........3.1..........26.............2.8....7...3..4.2......
+....6..5...4.8..........3.....2..4.71.......8.5.........24.....5..3......6.....2.
+....6..5...9...7..3.........8.5...4...19.................7..1.984..2..........6..
+....6..5..1....7..6...4....2......6....1.3......5.....4..75..........1.3........8
+....6..51.24.................7...2..1...5.......3...9....4.78..53..........2.....
+....6..51.24.................7...4..1...5.......6...9....4.78..53..........2.....
+....6..51.24.................7...4..6...5.......1...8....4.73..53..........2.....
+....6..51.24.................8...2..7...5.......1...3....4.89..53..........2.....
+....6..51.32.................4...3..6...1.......5...8....3.47..12..........2.....
+....6..51.4.7.................2..84.3..9.....1.........2..5.4.......37.......1...
+....6..51.42.................7...4..1...5.......3...8....4.76..53..........2.....
+....6..51.43.................7...4..1...5.......6...9....4.78..52..........1.....
+....6..51.84.................7...4..1...5.......6...9....4.78..53..........2.....
+....6..51.94.................7...4..1...5.......6...8....4.72..53..........2.....
+....6..521.8..................1.76...2..........8......5..2...47.....1.....6...3.
+....6..7...1..............485.....3....2..5.....4.1....7....2.15...3.6...........
+....6..7...82......1.......6...7......3...2........1.87......4.5..3......4.1.....
+....6..7.3..1...........8..8.....3.1....27......4......26....4....3..5...7.......
+....6..7.59.......8........1.3.7.......2..9.8...5........9...1...6...4...8.......
+....6..71.23.................4...3..7...1.......5...8....3.46..81..........2.....
+....6..71.24.................5...4..7...1.......3...8....4.53..13..........2.....
+....6..71.42.................5...4..7...1.......3...8....4.56..13..........2.....
+....6..71.83.................4...3..7...1.......5...8....3.45..91..........2.....
+....6..71.84.................5...4..7...1.......6...3....4.58..13..........2.....
+....6..72.3.1.................5..14...63.......7......85....3......72...1........
+....6..73.....3.8.1........27.5........1.4...............2..9....4...1...3..8....
+....6..745......3..2..........1.28....7..8...4.........1....2..3...4.......5.....
+....6..8..2.........1.......7....1.25...3..........4....42.1...3..7..6.........5.
+....6..8.9...5............1..81.4.........2.........3.65....7...2.3..5.....8.....
+....6..81..2...4..5..3.....7..2.5..........164.........1..3.......7..5...........
+....6..81..2...4..5..3.....7..5.2..........164.........1..3.......7..5...........
+....6..82.51...............7..3...9..4....3..8...2.......1.45..2...........5.....
+....6..841.72.....5........2..7.5....4.....3...........3..8.......3..7........1..
+....6..8754...................2...3..1....5....6.8.......4.17....85.....3........
+....6..9..25.......4.......6..71...38.....2........4..3......1....5.4......6.....
+....6..9..4....7......1.......7..3.86.95.....1.........3.8.4.........2.........6.
+....6..9..8....7......1.......2..3.46.95.....1.........3.8.4.........2.........6.
+....6..941.72.....5........2..7.5....4.....3...........3..9.......8..7........1..
+....6..94217...............6...4.2........7.8............8.75..4......3....1.....
+....6.1........2.5..7..8...12.4.........3..8..7.......5..2.......3....6....1.....
+....6.1.....3.4....98......72.1...........8.9......6..3..5...4........2.....8....
+....6.1...5.1.....27..............73.....4.2.6...8.......7.2...4.....8.....5.....
+....6.1..2....3.........4.7...7.4......1..8..6.........3..5..6...14............2.
+....6.1.27.83.....4............426..3......8...........1.5..........3.7....7.....
+....6.1.27.83.....4............496..3......8...........1.5..........3.7....7.....
+....6.1.4.2.7.........5.....7.2...8.......7......4.......8..35.4.1......6........
+....6.1.8.2.5......7.........7...32.....18............6..3..4.....2...5.1........
+....6.13..5.4..............37....6......21......5.....1.2.....4...8...5.6........
+....6.13..5.4..............37....6......21......5.....1.2.....8...9...5.6........
+....6.13..5.4..............37....6.....5.1.......2....1.2.....8...9...5.6........
+....6.13..8.2...........9...2.4....7.....16..............58...29......4.1........
+....6.14.7.52...............61...3.....7....8.2.......4......75....31............
+....6.14.72..........1.....4.....2.7......8......3....5.6....3.1..8..........2...
+....6.15.3..7......4......842.3.........5.6..............4...826.1...............
+....6.15.4.83.....2.........1..75........2.4...........3....9.....4....85........
+....6.15.4.87.....2.........1..35........2.4...........3....6.....4....85........
+....6.15.4.98.....2.........1..75........2.4...........3....7.....4....95........
+....6.2........3.6.4.5......1.....7.....2..5.3..........71.4...2.....8.....7.....
+....6.2........3.9.4.5......1.....7.....2..5.3..........71.4...2.....8.....7.....
+....6.2......4..8.1.........2....6.3...1..4.....7......62......5.......1...3...7.
+....6.2......41...97........5....12.3..8...........6.....7...58..1..............7
+....6.2......43.....1............12.46..........7..5..2..5.....68..........1....3
+....6.2...2......1......8.....8.1...6......4.3.........714.........5.36........9.
+....6.2...3.....5..4...1...8.6.2.......4...3.........15..7..6.....5.3............
+....6.2...3..8......1......76....8..2..4........1.......5...42....3...1.6........
+....6.2...5..7.....1..........8.4.1.2...........1.....3.7.2.6.....5....86........
+....6.2...5..7.....1..........8.4.1.6...........1.....3.7.2.6.....5....82........
+....6.2...71......5..2.....6..53.....5.....8........471.....6.......4........7...
+....6.2...79......5...........1...493...2....6........28....3.....7.9........4...
+....6.2...8.7.................3...812.5......7............425...9.....3.6..1.....
+....6.2...83..........7....2.....6.7...4..5.....8........3.1.8..4.....9.6........
+....6.2...9.1.................3...412.5......7............285...4.....3.6..4.....
+....6.2...9.1.................5...912.3......4.........6..1..7......23..8..4.....
+....6.2..1.8......7..4.....45..2.......8...1...........6....3.2...7.1....3.......
+....6.2..1.8......7..5.....54..2.......8...1...........6....4.3...7.1....3.......
+....6.2..3..9.....1..........865....7.......3.......1..25..3....8....5.....7.....
+....6.2..3.8......1..5......6....7.4.....3......1......5....81....34.........9...
+....6.2..5....3..........9....92.6..8......753.........9.7..1.......4..3.........
+....6.2..73.......5...........3..17...8.4..............82...6.....5...4....7.1...
+....6.2..8..3........5.....76..3.......4...8...2.....15......4.....2.7.......1...
+....6.2.1.3.4...........8.....7.3.4.6..5.....1.........4.....7......16......2....
+....6.2.1.3.4...........8.....7.3.4.8..5.....1.........4.....7......16......2....
+....6.2.1.3.4...........8.....7.3.4.8..5.....1.........4.....7......86......2....
+....6.2.1.53..................3.4.7.82..........7.....1..52......4....3.......9..
+....6.2.14.85..............3......846...2..............25...6.....4...7..1.......
+....6.2.15.47.....8........4..8...5..2..3..............3..2.6..7..5..............
+....6.2.15.47.....8........4..8...5..2..9..............3..2.6..7..5..............
+....6.2.35.4...............83....6.....4.1.........9.....5...17.6..3...........4.
+....6.2.389..4...............31..5.....7.9...6.........5.2...........68........9.
+....6.2.57.1..........3....56..2.......1...8.4......7..2....3.....8........7.....
+....6.2.57.1..........3....56..2.......1...8.4......7..5....3.....8........7.....
+....6.2.8.3.4...........1.....7.3.4.2..5.....1.........4.....7......16......2....
+....6.2.8.91...............3..64..7.2...........1.....8....2....4.....6....3..5..
+....6.23....1............8....5..7.1.83...........4.......3.86.1..7.....5........
+....6.24.8.7...............1......57.8..2.........43...2....6.....7...3....1.....
+....6.25..137...............8.1.3...9..8..4.........6.6...5............12........
+....6.3....52...........1...2.....846...3...........5.376.........5.4...1........
+....6.3...1.............9..5..4...1.7.3.............2.3.....6.54..1.2......8.....
+....6.3...1.............9..5..4...1.7.3.............2.3.....6.54..2.1......8.....
+....6.3...1......5...2.....2.6....4.4....8.......3.......4..82.53........7.......
+....6.3...1.7.....4.....2..5...2.....8.....9........1.2.....5..6..1........9.8...
+....6.3...2...........1....1.3.........5...2.6......4....2..75.3.....1...8.4.....
+....6.3...2.5.....7..4.....1...93..........52..6.......8.2...6.4.....9...........
+....6.3...5...8.....1......6.....48.3..5........2..9...23.....5...1............6.
+....6.3...7...8.....1......4......7....1...2.....5....62.7..........41..3.....5..
+....6.3...7...8.....1......8......7....1...2.....5....62.7..........41..3.....5..
+....6.3...72.......4..........2...48.......7.....1....1....56..3..4..1.....7.....
+....6.3...8........2.......1..3..75....4.2......8.....6.5.....23...1...........4.
+....6.3..1.4......89..........8.1....3....7...5..........2....89......1....73....
+....6.3..2.....8..67..........84....1......2....3.......3...57....2.1....5.......
+....6.3..5.4..................2...54.3..8......6......2..4.1...1..5......7....8..
+....6.3.24.1..................4.5.7..2....5.....1.....5......4..3..2....8..6.....
+....6.3.71..7...........8..2.....64......3........7......25..1..3.....9...8......
+....6.32....2...5..7........6..745..8............1..........7.12..8........3.....
+....6.34..51................7.1.3...2......6....8.....6.......34...9.......5..1..
+....6.34.7.52...............36...1.....7....8.2.......4......75....31............
+....6.38.4....7.2.9........1..2....4....3..............8...1..5.3....6.....4.....
+....6.4....1.......9.......58......7...9.1......2.....6....7.8.......29.4...3....
+....6.4....2....5......1......29....36.......4.........785........1..3.4......6..
+....6.4...16.......3.....7...2...5..4...8...........3.5.....6.2...7.3......1.....
+....6.4...7......2.35.............538...2..........17....7...3.4.....6.....1.....
+....6.4...8.....1.....35......7...2.3.1......6...........4..5.8.7.1...........3..
+....6.4...87............1.....2...7.3...1...........85...5.3.2.4.....6.....7.....
+....6.4...87............1.....2...7.9...1...........85...5.3.2.4.....6.....7.....
+....6.4..58..............7.4.6...2....38..........1....1.....83...5..7......4....
+....6.4.3.51..................2.1.5.3.....7...8........2.....1.6...3....7..9.....
+....6.41..2..8.....1..........2.3..57.....6.....1........5...2.6.8......4........
+....6.41..2..8.....1..........2.3..87.....6.....1........5...2.6.9......4........
+....6.41.83.7..............4..8..2..6.2...5.....3.........24..........73.........
+....6.42..1.7..............3..8...7...2...9.....4.........915..7...2....8........
+....6.48..12......5.........5.....12....7.........4...7.6...3..4..8........1.....
+....6.49..1.3.................1.35..6.9....4.2...........7..1.....8....39........
+....6.5...2...8....1......4...13..2.6......8.5...........2..4..4.....6.....7.....
+....6.5.1.9....4.....2........7.1.6.52.......4.........8.3...7.1...5.............
+....6.5.47..3...........8..2....8......1...8.6......3..3..4.........52...1.......
+....6.5.47..3...........8..2....8......1...8.6......3..3..4.........92...1.......
+....6.5.47..3...........8..2....9......1...5.6......3..3..4.........72...1.......
+....6.5.8.1...........4....8...27......4...31............3.1.7.6..5..4...........
+....6.5.84..3...........9..7....9......1...5.6......3..3..4.........72...1.......
+....6.5.84..3...........9..7....9......1...5.6......3..3..4.........82...1.......
+....6.51.2.43...........8..4......92.5..1.............3..4.2......7..1...........
+....6.53...871.............63.....4.5....2.......8.......3..8..3..4.............1
+....6.53.9.1..........4.....6.27....2.....8........9.....9.8....3.....6....1.....
+....6.54.2....7.................4.12.6.8............7.7.1.........6..8......5.3..
+....6.54.31.................7....1.3....28.........4..4.6....2...85........1.....
+....6.57.4.15......2.......6...37....3......1.........5.....8.....1...3....2.....
+....6.7.....43....8.5.......4.1............28.......5.73....6.....5.2.........1..
+....6.7....1..2....4.5.....78..3...........14.......5.6.....2..3..8........1.....
+....6.7....1..2....4.5.....79..8...........14.......5.6.....2..3..9........1.....
+....6.7...3.5......94.........4.3...7.....8.....2..4..1......2......9.3.....8....
+....6.7...4.2...........1...3.....28....74..........4.6.7...5.....3.8...1........
+....6.7...5....3.......1....8.5...4.....7...2.......1....4..56.1.2......3........
+....6.7...8.....3..5.......7..8.........4...1........54.1..6......3..85.......2..
+....6.7..2.....1.....3........65..3.1.......27..4......3....68..5...1............
+....6.7..2..3.....1............87..4.......12.......3..78...5...5.4........2.....
+....6.7.1.35..................4.3.5.2.7.........8......4....23.1...7.6...........
+....6.72.3...2....8........45.....6....3.9......8........4....3.6....1...2.......
+....6.73.8....2...1.........7...46........3.....8........1...28.6..3.......5.....
+....6.75.8.....1....34...........8.3.6..5....2..9..........32....6.......7.......
+....6.75.8.1...............65..2.......4..1...3......827.....6....8........3.....
+....6.78..31..........9....8...4..........5.34..5......8.1.2..........6....3.....
+....6.78.31..........8........4.1.2.7..6..............5...73.........4.1.2.......
+....6.79.2.....5..1..8........3...1..9.1......5...........52...3.8............6..
+....6.8........3.4..5.1....92.8............1..4.......8..4..2..1..9.......6......
+....6.8....1.......4........3.25....6.....9.....4..1.....7...4.5......2.86.......
+....6.8...5....3.......1....7.5...4.....4...2.......1....8..56.1.2......3........
+....6.8...7.3...........4...6....51.....8..3...9..4......5...728........3........
+....6.8..2.....5.......1....5.7..3...41.........2.....3..5...6.....2...4.......1.
+....6.8..3..1.................54...98.2......6..7..........86...1.....5..4..2....
+....6.8..41.........7......5......71...32...........9.6..4..2.......16.....7.....
+....6.8..7..4.....2.........9..3..........2.4.......57.6....13.3..2........7.....
+....6.8..7..4.....2.........9..3..........2.4.......57.6....13.5..2........7.....
+....6.8.17.2..................7.5.4....4......1.......4..6..3...8..1....5......7.
+....6.8.32..9.....4........53.....6....78.........1....8..3.1.....4...2..........
+....6.8.5.3....6..7........2..7.4....6....3.....1.....1..4...7........1..8.......
+....6.83.51................3.6..2..4....7.1..2...........1....54......2....8.....
+....6.84....1..............8.6...3.....2....14............43.5..21.....7.9.......
+....6.9......57...1...............548..9.............7..41..62..57.......3.......
+....6.9...2....3...4..........2.1.4.6.....5..9...............218..3........78....
+....6.9...71......5..2.....6..53.....5.....8........471.....6.......4........7...
+....6.9...87............1.....2...7.3...1...........85...5.3.2.4.....6.....7.....
+....6.9.1.7....3..2..5........7.5.2...1.........2.........198..54................
+....6.93..1.4.................5..2.13...8......6...........1.54.29......7........
+....6.95....4..3...1..........7...213.9...............4.....8.7...1.2.......3....
+....61...........9.......8.4..8...2.2.....6.....3.........7.1.4.85.......3....2..
+....61.........24........8..16...5.....83......7......25.4.....4.......63........
+....61.........54..........5.......1...9....2.8.4.....6.1...3.....38..7.2........
+....61.........82.1..........32..4.....9.............761.....5....34.2..7........
+....61.........9.7............8...5.93........7.9.......4.5.36.2..7.......8......
+....61.....4...5..7...........45.3..18.......6..3.....2......81...73.............
+....61....2.....5...........4.5..3.....9....1......6..6.1....7....25....3.....8..
+....61....2....3...........7...5..61.8.4............3.1..2..4..5..3.......6......
+....61....2....5...........14....6.....7..4..3..........7....18...24.......5...3.
+....61....2....8...........34......6...2..57....8.....6...1..3....4..2..1........
+....61....3.....4.......2.....32..5.6.1.....78.........4.5.....2..4...........6..
+....61....3.....4.......2.....32..5.6.1.....78.........4.9.....2..4...........6..
+....61....3.....5.............45..7.9.23.....6........8.....6.1.4.5...........2..
+....61....3.....7..........6.1....4....35....2.........8.7..2..5..4....1......6..
+....61....3....7..5......2........648..5........7........3..4....6.....12...7....
+....61....32.......8.......1..5...2.7...4..........38....2..8...6......45........
+....61....4....3...........6.1....2....73.4..5........2.......6.5.3........4..8..
+....61....4....3..2.......53..25..........71....8............63.17........4......
+....61....4....5...........6.1....2....73.4..8........2.......6.5.9........4..3..
+....61....5.....3...........8.5..2.....3..1.7........69..8...4.1...7....6........
+....61....5.....8..........38.7....5...2...........6.....89..4.6.1...2..7........
+....61....5.....8.....4....7.1...6.....9...5.......2..89.5...........43.........1
+....61....5.....9..3.......78....6.....54...3...9........4...5.6.....7..2........
+....61....5....4...........3.....6.1.4.58...........2.1.57........4..9..2........
+....61....7......25......3.....7.1..3..4...........8...1....6..2..3........5...7.
+....61....7.....2..........8..2..5.....3...7.1.....4...2.79....6.......1......8..
+....61....7.....3..........6.1...5.....75..8.4...........2..4.9.9.3...........1..
+....61....8.....3..........6.1...7.....85..9.4...........2..4.9.2.3...........1..
+....61....84......1........6.......2...5...3..5.4.....3...2..........4.8......57.
+....61....9.....3..........6.1...7.....75..8.4...........2..4.7.5.3...........1..
+....61....9.....3..........6.1...7.....75..8.4...........2..4.9.5.3...........1..
+....61....9.....3..........6.1...7.....85..2.4...........2..4.9.5.3...........1..
+....61....9.....3..........6.1...7.....85..9.4...........2..4.5.7.3...........1..
+....61...2......9.54........13.7.......8...5.............5..3..8..4...........1.6
+....61...2.....4..8.........6..7..134..5..2..............2..5...3.....6....4.....
+....61...2.....7..8.......9...9..2...14.......6........3.....6.....2..3.5..4.....
+....61...2.5......7............7.14.3..2............6....5..4.8.1......36........
+....61...3.......4.......8.7..3...5.....2.1..4.........1..5.6.....7....2...4.....
+....61...3.......7.......8.4..3...5.....2.1..7.........1..5.6.....7....2...4.....
+....61...3.......7.......9.8..5...4.....2.1..7.........1..4.6.....7....2...3.....
+....61...3......2..8...........8.6..2..3.....4.........7.2...3...15......6....4..
+....61...3.....2....4.........82.5...1......3..7.......6.....178..2............4.
+....61...3.....7..2.........6.5...187..3.................73.4...18....6..........
+....61...3.....7..8.......9...9..2...15.......6........4.....6.....2..4.2..5.....
+....61...4......9.........2.65...1.....9..3.....4...7.2..5....8......6......7....
+....61...4.....7........9..56.42....3......1.......8.....5....27..3............6.
+....61...4.....8..........376.....1....8....2.9..5....3.84...........62..........
+....61...5......4.........3....1.2.67.45...........8..32..........7...1..6.......
+....61...5......4...8.........5...7..27.......6.3.........2.3.61.....2..4........
+....61...5.....2............69.4.....1......3......7..8..3...4.7.25............6.
+....61...7......8...........4.8...7..62...5...............5.6.287.4.....3........
+....61...7.....3..............3...148..9............2....74.6..5.1...8...2.......
+....61...7.....4..............83.2...61.......5..9.......2...573..4............1.
+....61...8.....3..4........3..7..2...5..............1..12....5..6.3..7......4....
+....61...8.....4..............82.7...61.......5..7.......2...583..4............1.
+....61...8.....5.........3.....7.1........2.67..5......2.4...8..16........4......
+....61...9.....3..............6...148..9............2....74.6..5.1...8...2.......
+....61...9.....4..............83.7...61.......5..7.......2...583..4............1.
+....61...9.....4..............83.7...61.......5..7.......2...593..4............1.
+....61..4.8....5..3........2.......7...8...3..4.5.....6......8.....7.9.....4.....
+....61..5.8.....7......3...5.....3.1.2.84................2...4.6.....8....1......
+....61.3.57.................2.7............17......8.....42.9..1.6......3..5.....
+....61.4.59....3..7.........1.9..5...6.4.........2......2....6.3..5..............
+....61.4.8.....2............6.4..3...7.8......1.......5..23....2......7.........1
+....61.9..23.................73......4....5..6......1....8..3.71...7..........2..
+....612..3.9...........9.8.5..4...........61.7...........72...5.1..........3.....
+....612..4...5..8.3...........7...3...6.2.............78.4...........6.5...9.....
+....614...9.....7......3......92..5.1...............9.4.....3.6.8.2...........1..
+....615..7.2.4.............4..3...2..1......8.....5....6....1.....7...4....2.....
+....617..9......2...........16...3....75...8..4.9.....3..2...........1......4....
+....617..9......2...........16...3....75...8..4.9.....3..8...........1......4....
+....62.......4..3..1.......6.4...5..2..7........1...8.5.....4...2.8...........2..
+....62.......7..5...4....3...58...........2........6..6.....1.721........3.4.....
+....62....8.....4..........5.2.1.......4...736.........4.7.....1.....2.......35..
+....62...4......3.....7.......8..6.53..4.......6...7..1.....2...7.....6..5.......
+....62...5......4.......7...1.4........35.....6.......2.....67.3..5.........8.1..
+....62...5......4.......8...1.4........35.....6.......2.....67.3..5.........8.1..
+....62...7......9....5......36...2.....1...7.....8....1..7....4......6.2......3..
+....62..3.....8.6.1........7..5..1.....49...........2....1..3...62.......9.......
+....62..4.1....3...........5...4..2..7.1........8.......43..8..6...7....2........
+....62.4..1....8...........6.2....7....31...54...........15.3.....8.....2........
+....62.5.7.....4..............74.3...2....9....1.......5.....186..3............2.
+....62.8.1............8........3.1.5..21..4...8.......5..7..3...6..........3.....
+....62.8.1.3..................4..1.5....8.3...2............74...6.....2.5..1.....
+....62.8.1.3..................4..3.5....8.1...2............74...6.....2.5..3.....
+....627...41................3.1....45...7..........2..7.....6..6..3........4...8.
+....63.......7..4..1.......5.6.........8...3.3.........8.1..2..7.....6.5...4.....
+....63.....7...8......5....14.....5...27........2.....53..........4..1..6.......2
+....63....2....1.....7.....6.3..8......4..2..5.........9.12...........83......4..
+....63....95..................1..4.5.4....9..3....2...6.8.7..2....9.....1........
+....63.2.1............8....7..4..5......2..6.......7...62.........7..4...3.1.....
+....63.4..52..................21....3......2..7.5.....6.8..4.........5.7......1..
+....63.5.1.2...............36..5....9..8..1........8...4.....6....2.9......1.....
+....632..1..................1..9..8..4.7...........6.....8...746.29.....3........
+....632..4.1....7..........7..1....4.3..........4.....8..9.....5.....3...2....6..
+....632..71..............8.5..72..1.3...........4.....6.....4.3...1.8............
+....635..8..1.....7........4.....93....25................7...8..6......4.5...9...
+....637...1..5................14...26.5......7........3..2........4..1........58.
+....637..2.......91.........3..4.68....2.................5...12.64..7............
+....637..2.......91.........3..4.68....2.................5...21.64..7............
+....64.........1..5........7..5.8..2.......6....1........8..73.2.4.......6..3....
+....64.........1..5........7..5.8..2.......6....1........9..73.2.4.......6..3....
+....64.........1..7........8..5.9..2.......6....1........9..83.2.4.......6..3....
+....64.......2..5..7.....3.1..5.....4.....6.....8...7..5.1.3.........4........9..
+....64...3.....9.......2...1..8....6...3...5........42...71.8...5........4.......
+....64...5.....2..3...1.......3..5.9.1.8......6.......7.....4.....58...........1.
+....64...6...1.....2....7....73...8..5..............6....5..3.4...2..5..1........
+....64...7.....2..3...1.......5..3.2.1.8......6.......2.....4.....78...........1.
+....64...8.....2......5....3..1...7........4.........6..62..1...45.......7....3..
+....64..2.71...............8..7.........1..4.4.....3.....5..61.28...3............
+....64..23.1...............52...7.........18..4.....6.....1.4..7..3........5.....
+....64..32.1...............14..3.......5...2.......7...6....5.....2..8.....1.8...
+....64.3..81..................1.3..86...........8.....4...2.65..3.7...........2..
+....64.3.27....5...8..........23.......7...8.1......4.6....31........7...........
+....64.5..81...........8...6.....54....13....9...........7..1.342................
+....64.5.7.1.................87....1...1..9...6..........98.2..64.......5........
+....64.7..71...........2...6.....54....13....8...........5..1.342................
+....64.8..91...........2...6.....54....13....5...........7..1.342................
+....642...73...............42...8..........356..........172....5.....4.....1.....
+....642..7......5.1...........18...9.2....6.............8...3.....7...1..6...2...
+....643........5.8...........6....9..2.8.......71.........3.47.85.......1........
+....643...1.....5.....2.......1.5..73.2......6..7.....4.....2.........1....8.....
+....643...21................5.2...176....8..........5.7..1.....4.....6......3....
+....645..9......4.....1.......7..29..6.9......1.............8.67..2.........3....
+....65....2.....8..3.....4.......6.1..42.....7.....5....28...3.5..............7..
+....65....2.....8..3.....4.......6.1..82.....7.....5....29...3.5..............7..
+....65....2.....9..3.....4.......6.1..42.....7.....5....28...3.5..............7..
+....65...8......4..........4..7..5......2.6.13.........6...12.....4...3..1.......
+....65..4....8..1..........3.14.......9....7.......5..68....2...5.7........1.....
+....65..8.7....2.............3....15...97..6....2........7..3..82.......5........
+....65.1...8....7............37....8......3..6.........4.8..5..1..2.....56.......
+....65.1...8....7............37....8......4..6.........4.8..5..1..2.....56.......
+....65.1..48.....7.........2..3...5..7.8...........6..1.6.........4..8........3..
+....65.2..8....1............4.82....7......5....1.....6.5...8.....3....72........
+....65.2.4.7...3............9..2..6.3..7.................3..1...25......96.......
+....65.3.1.........8........7.4..2........8.........5....2..4.75.31.....6........
+....65.4.72...................3....7.5.....1...4..8......27.4....5...8..1........
+....65.7.1.......3.....8...35.4.....2.....1.........6....12......6...8...7.......
+....651...3....9...........5....8.6.6.2.........3..7...9.24...........8........5.
+....654...13..................31..2.45....6..7...............815....4......2.....
+....654..2.....6..8........1..2......4....3.....9.7....5..4...........81.......2.
+....657...81................3.1...8.5.....6...........6.....4.24..3........89....
+....658..42.................59.....7...1...4...8......7..41.......3...2.......5..
+....67....4....2......3.......2..47..5.1............63..8...1.57........6........
+....67..3.....2.6.1........3..5..1.....48...........2....1..5...62.......8.......
+....67.4..1..5.............4.7...2..6.......1...8..3.....12....7......8....3.....
+....67.4.2.1......3.........6..8.5.....9..1..................969..2........1....3
+....67.5..1...........4....6.4.........1....83........75.2.......2...6........34.
+....67.9.8...1.........2....2....6.....8...3..1.............1.29..4.....5.....7..
+....671....9....5..........67....5.....9...4.1.........2....6.7..8.4.......3.....
+....671...5.....8.....1....6.1.........2...3....9.........4.7.6.2.5.....8........
+....671...5.....9.....1....6.1.........8...3....2.........4.7.6.2.5.....9........
+....672...51...............3....9...6.....7.....1........53...17......3..4.8.....
+....672..1.............3......8..5...67........4......5..42.....2......7...1...3.
+....672..1.............3......8..5...67........9......5..42.....2......7...1...3.
+....672..51..................2.8.......3....16.....7..4..5.1.2..36...............
+....673...41..................425...6.....7.....1......5.9....4....3..2.7........
+....673...41..................425...7.....6.....1......5.9....4....3..2.6........
+....673..4.....6..1.........2....76....15...............5....8..6...9......4....1
+....673..4.1..........5.......2..9..67...........8.....1.9........4...5........64
+....673..4.1..........5.......2..9..67...........8.....2.9........4...5........64
+....674...2..5.........1......8...257.1...............4......3..5.2.....6.....7..
+....68....3....5......1.......24.3..8.......21........6......1..7.9.......53.....
+....68...1............5....3..1...4.2..7......4.....5..8..4..........1.7...2..3..
+....68.2..1....7......5...6..41..3..6......8.............3..1.482................
+....68.5.13........2..........2.5...6......8....4........5..2.47...1..........3..
+....68.7.52....9.............1.7.......5..2...4.......8.......69..2.......6....3.
+....682.......23..5........7......14....3...........5..3.5..6.....1...7..2.......
+....683...41..................425...6.....8.....1......5.9....4....7..2.8........
+....683...41..................425...8.....6.....1......5.9....4....7..2.6........
+....683..4.1...............23..5.......7...1.........864.2..........19.....4.....
+....685...41...............6.....3..2..4........1.7......3....2.7.....4.5...2....
+....6873..1...........2.......1..5.43.6......8..5.....2......6....4..1...........
+....69....3....5......1.......84.3..9.......21........6......1..7.2.......53.....
+....692...1......79........5...92......7....46......1..4.1...........53..........
+....694..12...................75..3.6.9.....84..............92..5.3........1.....
+....7...1.2.6..............1.3..8......2..56.7........5...1.3...4.....2....9.....
+....7...1.4....2..3...8.....6.45....7.1....8....2........1..4..8......3..........
+....7...1.4.3..............3.6.81....5....24..........1.7...6.....2...3.8........
+....7...1.4.3..............5.6.81....2....34..........1.7...5.....2...9.8........
+....7...1.82.......5.2.....63.....4....8..2...........4...61.........83.7........
+....7...1.9.4..................182..3..5......4.....9....6..43.1.2......7........
+....7...12.4......3..6......7..81.........63........4....4.53...8..........9.....
+....7...13......2.8...4.....4..6.5.....1...3.............3..8..5..2......7....4..
+....7...13......2.8...4.....4..6.5.....1...3.............3..8..6..2......7....4..
+....7...13....9...4.6......68..1.......8..4.........9......465..1..........2.....
+....7...13.8......2.............623..1..4..........5..5..2......4.5......6.....8.
+....7...14.5......3.........7..61......5...4.......23....3.4....6....8.....2.....
+....7...15.2...............61..4......3...5........27....3.5.8.46..........2.....
+....7...15.6......4...........5.6....9....7.....2......1.38....2......6.......45.
+....7...15.6......4.........7..13......6...5.......24....4.5....9....8.....2.....
+....7...16........5........2.3....5.....417.......8......2...6..4....3...1.6.....
+....7...16..3.................5..84.3.16......2...........413..5......9......2...
+....7...16.2...............51..4......6...3........27....3.6.8.45..........2.....
+....7...2.....5.8..1.......2...4..........15.......3..7.2.....6...4.3......1..5..
+....7...2.1.....7.4..6........5.63...8.....1....4.....6.5...4......1....3........
+....7...3..1.4.....5.....8.74......23..8........1...........21.6.....4...3.......
+....7...3.2.1......6.......7...8.6........21........5..5.2..1..4.......83........
+....7...36......5......1...5..4........6..1........2.....53..8...2....4..1....7..
+....7...4..1.5.....6.....8.75......34..8........1...........21.3.....5...4.......
+....7...5.6.....1..2......4...2.6.4.8..1.....5.....2..9...3..........7........6..
+....7...5.6..4.....1.......5..6.3...7.......2...1..4..2..8...........63........1.
+....7...6.2.5..........43...9.2...........45.......8.....1...823.4......7........
+....7...68..3......9....1......412..3......5......6......6...83..1.......2.......
+....7...8..1...3...6.......8..3.1...9......42...6.....72..5...........9.......1..
+....7...8..1...4...6.......8..4.1...9......52...6.....72..9...........3.......1..
+....7...8.7.5......4.....1....2.47..8..6.....1........2.....53.....1.....9.......
+....7...8.7.5......4.....1....6.47..8..2.....1........2.....53.....1.....9.......
+....7...86.....2.......5......6..13..47.........1.....4..28...........75......3..
+....7...89..3......4....1......462..3......5......1......2...93..1.......6.......
+....7...92......8.1.........96.3..........24..7....5.....2.8...8..4......3.......
+....7..1..2.4..............56....3......81..7............3.24..1.8......6..5.....
+....7..1..2.4..............57....3......81..6............3.24..1.8......6..5.....
+....7..1..3.2......8......5...8..3..7......4.1.........5......6...6..8..4...1....
+....7..1..3.2.....2...........3.85..67.4.....1........7...1........5...3......4..
+....7..1..43...............2..41......6...3.......2......3..5.2.1.8.....7.....6..
+....7..1..65......4....8......3.2....71...............2..5..4..3.....2.8....1....
+....7..1..8...4....9..........6..8...4....5..6...1....7..5....31.2...........8...
+....7..1..82..................2.84..3......7....6.....5...1...37.....6.....4..2..
+....7..1.2.6......3....5......5.2......6..2...7........8.14..........6.5......3..
+....7..1.4..6.....9........572.........4..3...1..........3..6.8.5..1..........4..
+....7..1.42........5..........2..4.68...1..........5..7...3....1..6........5..2..
+....7..1.5...2...........8.1.83.....4.....7.....9..2.....58....6.....5...2.......
+....7..1.6..3.....25.......4.3...5......18........6....81.....7...2..6...........
+....7..1.62........5.4.....3.....2.6..718.......9.......9...4..5....6............
+....7..1.7..3............95...6..3...91.......4.........5.4.2..6.....8.......1...
+....7..1.8..5........6.....4.....8.9...13.......2..5.......94..62........1.......
+....7..12.3.9.................34.9..8.....3..1.........9.5..6......12.8..........
+....7..14.5..............9.4..3.52..1...........6........2....8.3....5....9.1....
+....7..148..2.....6.5.........9..63..1......7.....5...9.....5.......4.......1....
+....7..2.....54...1..............9.56..9...........4....53...8....1..26..7.......
+....7..2.....54...3..............8.56..8...........4....53...1....1..36..7.......
+....7..2.....54...3..............9.56..9...........4....53...8....1..36..7.......
+....7..2.....83...1........2..6..4........3..........8..85...1....1..25..7.......
+....7..2.....83...1........2..6..5........3..........8..81...4....4..21..7.......
+....7..2.....83...1........5..6..4........3..........8..82...1....1..25..7.......
+....7..2.....83...1........6..4..5........3..........8..82...1....1..46..7.......
+....7..2.....83...1........6..4..5........3..........8..85...1....1..46..7.......
+....7..2...3...5..6........17.....4..4.8........3.....5.....8.3...24.........6...
+....7..2...38............1....3.46...1.............3..7.....4.55..12........9....
+....7..2..3....4......1.....6.5..3.....4.....7........1.7.....8...3.95..2........
+....7..2..3.4......1.......7..6.8...2......7....1........5..1.68...4..........3..
+....7..2..6.3......1.......7..6.2...2......8....1........5..1.68...4..........3..
+....7..2.4..6...............82....3....5.46.....1...........1.2.3..9....5.....4..
+....7..2.7...3...........4.1..4.8...64....3.....2..5...82.........1..7...........
+....7..21.54.................6...5..2...1.......7...9....5.68..13..........2.....
+....7..235..1............9..328.....1.....4.......9...6...3....4.....5.......2...
+....7..241.6..................1.69...2..........3......4..2...58.....6.....7...3.
+....7..241.6..................6.19...2..........3......4..2...58.....6.....7...3.
+....7..241.6..................6.59...2..........3......4..2...58.....6.....7...3.
+....7..245.1..................5..13..4.......8.........2.74.......2....86.....5..
+....7..25.1.6..............2.5....7....1..8.....3...........1.67.....3..4...2....
+....7..26....93............1265........6..7...8.......7.5...3.....2.....4........
+....7..28.4..5.....1.......8.....56....1.3......4....92..89..........4...........
+....7..3..1..............2.5..2..8..7...4.1..2.3.6.......1..4..3...........8.....
+....7..3..1..............2.5..2..9..7...8.1..2.3.6.......1..4..3...........9.....
+....7..3..21........4.......6.....9....2.1...7..5.....8...6.4........2.5......1..
+....7..3..8..4.....1....2.....6.18..4...3....5........3......7....8....5...2.....
+....7..3..8.5......1....2.....6..1..7...2....3.........5.1.....4......7......8..4
+....7..3..9.6.......2.........4..6.93..8.....1............3.9...4....2.....51....
+....7..3.46............1.....7....1..5.6...........4..1.8.5.......2..6.5......2..
+....7..3.8.....5.....1.........6..72..2...4..5....3......8.51...7........6.......
+....7..31..24..............17...3......6..48..5.........82.....3.......7......2..
+....7..31.2.5..................63..8.5....2......1.......4..85.6..9.....1........
+....7..31.24.................5...2..1...3.......6...9....4.58..83..........2.....
+....7..31.24.................5...4..1...3.......6...5....4.57..83..........2.....
+....7..31.264.................6.1....8.5.....7...........28.4....1...6..3........
+....7..31.42.................5...4..1...3.......6...9....4.58..63..........2.....
+....7..31.42.................5...4..1...3.......6...9....4.58..83..........2.....
+....7..31.64.................5...4..1...3.......6...8....4.52..53..........2.....
+....7..31.74.................5...4..1...3.......6...8....4.56..93..........2.....
+....7..31.94.................8...4..1...3.......6...2....4.52..63..........2.....
+....7..31.94.................8...4..1...3.......6...2....4.52..83..........2.....
+....7..3125.6............9....4..2....1.......3.......56....4..4..8.........3....
+....7..3164.................5....2.8...13.......6..........245.7.....6....1......
+....7..32.51..................16.4..2......8..8.5.....8.....1..3...2.......4.....
+....7..321.5................3.42....6.....5..........9...5.64.....1...8..2.......
+....7..326..................7.6..4...32.........1.....4....561.....29.........8..
+....7..354.1.2..............5.....8....2.........3....1..5..2...7...8......6..4..
+....7..354.9.2..............5.....8....2.........3....1..5..2...7...8......6..9..
+....7..36425..................5.14..3......7....2.....8...6.1...6.............2..
+....7..38..5....7.1........4..1.26...8...7....3.......2..5..1......3.............
+....7..38.24...............8...3.....5....4.....7...9...64.52.....1.....3........
+....7..38.51...............8...3.....4....5.....7...9...65.42.....1.....3........
+....7..39.24...............9...3.....5....4.....7...8...64.82.....1.....3........
+....7..39.3..1...........2..1....8..4..2........5.....5.2..........8.1....39.....
+....7..3954...................2...1..6....5....9.3.......6.14....85.....3........
+....7..4...1...6...3.5.....5...2.........48........1..72.....5....1....3...6.....
+....7..4..1....3...2....9..7....4.6......3..5...1........92.1..5........4........
+....7..4..1....8..5...2....2......5....8.3......1.....4..26..........1.5........3
+....7..4..1...2...5......7..2....6.1....4.2.....5........1.63..8........7........
+....7..4..1...2...5......7..2....6.1....4.2.....5........6.13..8........7........
+....7..4..5..2.....1.......7.2...1.....6....54...........5.36..8......7....1.....
+....7..4..6.4......5.3.....4...8.6.......2..5......1..8......3....1.5......6.....
+....7..4..8......2.3.1......1....3..5...4.......6.....4....2.6....3..1..7........
+....7..4.2..1..............13....2....5.4..........6.....6..1.8.74....5....2.....
+....7..4.3..1...........8..8.....3.1....24......5......47....5....3..6...2.......
+....7..4.3..6...........9..7.....8.1....24......5......41....7....3..6...5.......
+....7..4.3..6...........9..7.....8.1....24......5......42....7....3..6...5.......
+....7..4.31.......5.....2....4.2..........3.5......8...56....7....3.1......8.....
+....7..4.32..................4...57.6..3........1......47.5....1.....3.....8....6
+....7..4.6..5.....8.....6..34.....7....8.1..........2..2..4.1........8........5..
+....7..4.63........2.8.....4...85...1.......3......2..7......8....3..6.......4...
+....7..41.3........9.......4..5...2.1...8..........3...2.3.9...6.....7.....2.....
+....7..421..6............7.52.1.....3.....5......8.......3..6...74........8......
+....7..421.3................4.52....6.....1..........9...1.65.....3...8..2.......
+....7..439.1..................1.92..53.....6......8....7.43....8.....9...........
+....7..46..1.2..........3..42.....6.5..3........1.8......8..1..64................
+....7..46.8.1..................4.3...2......8..1.5....4.....65.3..8........2.....
+....7..465......3..2..........1.28....6..8...4.........1....2..3...4.......5.....
+....7..468.1..............5.4.65....3.....2.....7..........213..6.5..............
+....7..491.82.....6........2..1.5....4.....7...........3..4.......6..2........1..
+....7..5..16.......3.......5.....42....6.8......1........3..1.62...4..........7..
+....7..5..4..2.....1.......7.2...4.....6....15...........1.36..8......7....4.....
+....7..5..4..2.....1.......7.2...4.....8....15...........4.36..8......2....1.....
+....7..5.1.3......9.........7.84..........9.1.6.......6..3.9....2.....4.......5..
+....7..51.24.................3...2..1...5.......6...8....4.37..53..........2.....
+....7..51.24.................8...4..1...5.......6...9....4.98..53..........2.....
+....7..53....5..8.1...........1.2...73..........4.......2...4......8.1...5.9.....
+....7..53841..................2.18..3......6....4......2....1..5...3.......7.....
+....7..6...31......2.......7.4.6....5.....3........1..6...4..7..8.2........3.....
+....7..6..8.1......2..4....5...6..3..1....2.....4.....7.3.........2..4..6........
+....7..6.3.1.............5.8..3.5......2..4........7.6.7....2.1...1......4.......
+....7..6.3.8.............5.8..3.5......2..4........7.6.7....2.1...1......4.......
+....7..61.24.................5...2..8...1.......6...3....4.57..13..........2.....
+....7..61.24.................5...4..7...1.......6...8....4.53..13..........2.....
+....7..61.54.................8...5..1...6.......7...9....5.94..63..........2.....
+....7..618.4...............2.....45.....13.........8.....5..24..1.6......7.......
+....7..62.31................4.3.51..2......5....4.....5.....3..6...2.......8.....
+....7..62.8.3......1.......2...6..5.......3..............1.98..6.....4..5..8.....
+....7..62.81..................1.85..2......4....5.....6..32....9.......7......1..
+....7..624.1..................4..13..7.......8.........2.76.......2....85.....4..
+....7..6382.......4...........51..........2.85.....9....7....3..9...8......2.....
+....7..6841..........5....1....3.2..1.5......86..........8.1.........43..........
+....7..8...4.......2.........54.1...3.....6.........2.87..3.......7..4.5......1..
+....7..8..16.......2..........5..1.63....2.........4..7.....53....46.......1.....
+....7..8..6....5.......1...3.....6.....9..4..2.7..........3..72.4.6........5.....
+....7..8.3.....6.......2......51.9...42............1..5..3....7...9...2........4.
+....7..8.5.....2..9.........4.16..........5.7.7..8....2..5.3..........6....9.....
+....7..81.24.................5...4..8...1.......6...3....4.56..13..........2.....
+....7..81.94.................5...4..8...1.......6...7....4.52..13..........2.....
+....7..82.4..5.....1.......8.....56....1.3......4....92..89..........4...........
+....7..83.24...............8...3.....5....4.....7...9...64.52.....1.....3........
+....7..83.51...............8...3.....4....5.....7...9...65.42.....1.....3........
+....7..84.52......6........1...84....3....26.............2.35..8...........1.....
+....7..84.9.5......2.....1....6.92..8.1.........3.....3.....9..4...8.............
+....7..85.5..1...........2..1....9..4..3........2.....3.2..........9.1....58.....
+....7..854.3......6..............36..9....4.....1.........25....8......1...6.3...
+....7..86.1.3............9....4..1.56..2.....9.2......8...9..........5........4..
+....7..86.2.5..................63..7.5....3......1.......4..25.6..2.....1........
+....7..894.6...............3..5..4...8..2..........1.....3.46...72......1........
+....7..9..2.8......5.6.....8...31...4.....5.6......2..9.1....3....5..............
+....7..9..34.......5...........6.3.28...1.......5..4..7..2...1....3........4.....
+....7..921..3...............5..96...3.....4..............4..13..69..5.........8..
+....7..941.52.....6........2..6.5....4.....3...........3..9.......8..5........1..
+....7.1....4..5.........6..16.3........5...94.2............2.8.3.......5....1....
+....7.1...5.4......8..........8...541......6.7.......83...1.2...2.5..............
+....7.1..6....4...5......3..7.1..4.......58.....3......41.2.......6...5..........
+....7.1.2.4...8...5...........3.4.8...16.................21.6..38.......4........
+....7.1.28..............4...6.5.4.....2.........8......7..21...4.....58........3.
+....7.1.432............1...8.5.....9...2............8....5..2...4..9....9......3.
+....7.1.63.48.....2.........1..5.9.........3..........59....7.....3...4....2.....
+....7.1.63.48.....2.........1..5.9.........3..........95....7.....3...4....2.....
+....7.12.......3...6.......2..5.6.....7...2.....3.....15......6.......58....4....
+....7.12.6..4......5.......9..5..4..3.......6....1.....12....8....6....3.........
+....7.13.8.56...............17...3.....8....9.2.......4......85....21............
+....7.14.3..6......6......862.5.........4.7..............2...857.1...............
+....7.14.3..8......5......962.3.........4.7..............2...957.1...............
+....7.14.65............2......8.32...1.5...........9..3..6....5..2.1.............
+....7.14.8.52...............16...3.....8....9.2.......4......85....31............
+....7.19.5...2....6.....8.....3....5.7....9...1..........6...4.3..5...........7..
+....7.2...1.....4...3.........4.1....8.....5....3..7..2.6.5....7.......13........
+....7.2...3......6...1.....7...2.5.......8.3.1...........6..14..8...3.........7..
+....7.2...5..1..........43...32..6...7..5.............8..3...5.2..6.............1
+....7.2...65............1.....6...3.2..3.....4.....7.....5...68....4..5......2...
+....7.2..1................768.....1...7.4...........3..24...9.....6.15.....3.....
+....7.2..1..3.......8.......5..24.....3....6.........127....4.....8.1.5..........
+....7.2..5..8.....1...........53...1.9..6..4........58..6...3...7..........1.....
+....7.2..63........1.......2.....57....3..4.....1.8...5..4........6...8.........1
+....7.2..68...........1....5..6.3.4....8.....7...............35.2.4......1....7..
+....7.2.1.3.4...........9.....8.3.4.9..5.....1.........4.....8......16......2....
+....7.2.34..8...........5..6..4.8....5....7.....1......3..2....1......8........1.
+....7.2.36.4...............53....7.....4.1.........9.....6...18.7..5...........4.
+....7.2.4..5.2.6..8........3..1...5..4..6..............2....4.....5.3......8.....
+....7.2.4..8.2.6..5........3..1...8..4..6..............2....4.....5.3......8.....
+....7.2.4.1.5...........3.....1.5.8.3........2.........8.....5....6..1..4...2....
+....7.2.4.31...............4...2....6......3.......7.....3.5.1..8.6.....2..4.....
+....7.2.56.3...............42....7.....3.1.........9.....6...18.7..4...........3.
+....7.2.58.1..................86..4..5....9.....1......2..35...9......8....7.....
+....7.2.6.31...............6...2....5......3.......7.....4.3.1..8.5.....2..6.....
+....7.2.63.1................2..5.......4...3........8.4..3...1..6...25........7..
+....7.2.68.1..................81..5..6....9.....3......2..46...9......8....7.....
+....7.2.8.41...............2.....5.....4.1....3.6........5..34.8...2......7......
+....7.2.9.3.4...........1.....8.3.4.2..5.....1.........4.....8......16......2....
+....7.2.98.1...........9...4..1.5....2....7.....8.....5..6...1..7..3.............
+....7.23.14.........8.......72...3.....5.1............6...3...45......1....2.....
+....7.23.84.............7.....4.15..3.2.........8.....6..52...........14.........
+....7.24....1............3....6..8.1.43...........5.......3.47.1..8.....6........
+....7.24.9.1...............6......51.9..2.........43...2....7.....6...8....1.....
+....7.29.5......4..1.6.....2...95....3....8..........1...8.1...9..4..............
+....7.3......28...1........3..4...5........2.........8...1..6.3..25..4...7.......
+....7.3......28...1........3..4...6........2.........8...1..4.3..26..5...7.......
+....7.3...1...4....89.........2...1945..3.............6.....43....1.....2........
+....7.3...1...5...6..........26....1.7.....5.4...3.......9..28....1...........7..
+....7.3...2........9.......3...6.5.....7...9.1........6.5...4.....2.9..7...8.....
+....7.3...2........9.......7...5.4.....6...2.1........5.4...1.....2.9..6...8.....
+....7.3...49.......1.......6.....25.3....4......1.6......7...918...2.............
+....7.3...49.......1.......6.....25.3....4......1.8......7...918...2.............
+....7.3...8.1.................52...13.4...6.....8.....2...34...75.....8..........
+....7.3..1..2...........9..2.81......3....6.....5....45......1..7..3........4....
+....7.3..1..6.....4........2.51........4..6........7.9.8..93..........1..7.......
+....7.3..2..6...........5...3....18....2.9......4.....4......92.5..1......7......
+....7.3..4......5.....1.....5.6...2...1.........4......3....7.16..8.2.........9..
+....7.3..5......6....2........6.4.8..17.............2.....3.7.94..5...........1..
+....7.3..6..4...........1.9....39...8......4......1.....76..5.....2...8..1.......
+....7.3.2.81...............3..4.2....5.....1.2...6....6.....9.....1.5......8.....
+....7.3.24..8.....6.1.........1.45...7....2.....6......9..52..........1..........
+....7.3.46.....5..2.........3......95......2....1........6.5.8..4....7.....2.....
+....7.3.84.1..................4.5.2..7....6...3.1.....5..2...1.6...3.............
+....7.3.94.1..................4.5.2..7....6...3.1.....5..2...4.8...3.............
+....7.31.58.4...........6.......378.4..6.....2.........31.........2....5.........
+....7.31.6.45.....2............31.7.5..4..........8....1....8.....2....4.........
+....7.34.1.......8.........61.....5.....342..8..........3...72....1........6.....
+....7.35.8.4.6.............2..1....4.7..5..........6...3.....7....4.2......8.....
+....7.36.2.1.............8.4..1.2....6.5..............5.......2.3..8.......4..1..
+....7.4....5....2....6.....21.5.....7.....2.....38....47..6...........51.........
+....7.4....5..6.........1..14.3........6...75.2............2.8.3.......6....1....
+....7.4....5..6.........1..14.3........6...85.2............2.7.3.......6....1....
+....7.4...5.....2...61........8..1.6.2.......9............52.4.1.....3....3......
+....7.4...9....5......3.....4.9............8........3....5..2.18.3..6...7..2.....
+....7.4..16..........8............38.7..5...........1.3..1.2.....4...7.....6..2..
+....7.4.1.25..................5.9.2.4...........2.....1...4.3.....3..7..8......6.
+....7.4.152.................9.....5....6..3....4.1....3..5.9.....8....7....2.....
+....7.4.18..5..6..2........3......2......1.......4.....4....7.5...3...9....2.....
+....7.4.18.2..................8.6.5....2......4.......5..7..3...1..4....6......8.
+....7.4.91...3....6.........57...9..8......1....2......3....5.....1.8......6.....
+....7.43.1.......5.........61.....5.....342..8..........3...72....1........6.....
+....7.5....1......2........6......32...54.....7........9....87....3.2......6..4..
+....7.5...1.....3..4....6.....8.4..63.....7..2...........1....95...3...........2.
+....7.5...2.....4...61........8..1.6.4.......9............42.5.1.....3....3......
+....7.5...2.1.....6.....4..5...4.....9.....2........1.4.....8..7..3........2.9...
+....7.5..1..........8.........1.8..467....2.....3.....26.53...........1..5.......
+....7.5.21.................3..4...1..6..5.7............27...6.....1.3.4....8.....
+....7.5.8...4.....9........35..8....1.....49........6..28...7.....9.1............
+....7.51.2.43...........8..4......92.5..1.............6..4.2......6..1...........
+....7.51.2.43...........9..3......82.5..1.............6..4.2......8..1...........
+....7.51.2.63...........8..4......92.5..1.............6..4.2......6..1...........
+....7.51.84.3..............5..1..2..7.2...6.....4.........25..........43.........
+....7.53...1....8.2..3........2..6.4......7...8........5....4..4...8.........1...
+....7.53.6.1...............4..2.1....8....3.......6....5.93....2.......6.......4.
+....7.58.43................2..4.3.....7....9....1........6..2.4..8.5.....7.......
+....7.6.....3..5...1.......3..1.8.........72....9.....2.7.5...........184........
+....7.6.....5...7...1......4......19.7..2...........3.95....2.......18.....3.....
+....7.6...2.....4..5.1.....6.8.3.........5.2.........17....43.....2.....3........
+....7.6...2....1..4..2.......7..1....6....3.....8.....8......25.....6.4.....3....
+....7.6.1.35...............64..1......2....3....5........3.2.4.1.....2.....8.....
+....7.6.1.35...............64..1......2....3....8........3.2.4.1.....2.....5.....
+....7.6.1.4..35............6.72.....1......3....8...4....6..7...3.......8........
+....7.6.243................1.2..6....5.....1....4..8.....54..3.6...........3.....
+....7.6.31...3..........7..2..5...4.......8.....9........4.2.1..76.............5.
+....7.6.9.21................4.3...1.5...8....7...........1.2......4..8..9.....7..
+....7.61.2.43...........9..4......82.6..1.............3..5.2......8..1...........
+....7.61.2.53...........8..4......92.6..1.............3..5.2......4..1...........
+....7.61.2.53...........9..4......82.6..1.............3..5.2......8..1...........
+....7.62...54......1....3.....8...4563................2...3.1..........7..4......
+....7.62.5.1................2....4.....8.1......5.....46..2.......1....83......5.
+....7.62.8.1............3..4......58....3............4.6.4..7...2.5..........8...
+....7.64.31.................8....1.3....26.........9..5.7....2...26........1.....
+....7.8....1.........4.....6......14.5..2...........3.84....2.....5..7.....3.1...
+....7.8...6....4.......1.......5..12.4.3..............1.26........4..37.5........
+....7.8...9....3.......1....6.5...4.....4...2.......1....8..67.1.2......3........
+....7.8...9....3.......1....6.5...4.....8...2.......1....4..67.1.2......3........
+....7.8...9....3.......1....6.5...4.....8...2.......1....8..65.1.2......3........
+....7.8..1.....4..6..........24......5..8...........1..4....7.2..53.1......6.....
+....7.8..2..5...............18...6.....2..1..4..3..........1..43......2..5..8....
+....7.8..4..8.....2.........9..3..........4.5.......62.7....13.6..2........4.....
+....7.8.14.2..................2.5.4....9......1.......6..7..3...8..1....5......2.
+....7.8.2....28...1........5......4..7..6.......3........1..53..2....7.....4.....
+....7.8.49.1......3..............31....78....6..5..........3.9..2......7.4.......
+....7.85.43................2..4.3.....5....9....1........6..2.4..8.5.....7.......
+....7.85.43................2..4.3.....7....8....1........6..2.4..8.5.....7.......
+....7.86..41...............8..24..........13.............1.35..62.....7....4.....
+....7.9...2.6.....5.....3...4.....217...3................2.1.8.9.....7.....4.....
+....7.9..1.....4..6..........24......5..8...........1..4....7.2..53.1......6.....
+....7.9..3..6.....2.........4.....26.7..8................4...97..1...8..5..2.....
+....7.9..3..8.....2.........2..1..........4.3.......68.7....15.8..3........6.....
+....7.9..51..........3.....4..1.3.....7...2.....5........4...35..2.6.....8.......
+....7.92..54...........3...8....72........1.....4.....3...8..6....1....5.......4.
+....7.93.2..1.....4........68......4...5..2......8.......4.6....7.....9....2.....
+....71.........46..9..........43..2.5..2.....1.7............5.1.8.6...........2..
+....71.........56..9..........53..2.4..2.....1.7............1.4.8.6...........2..
+....71.........65.6.........2...7......4...8.1........5.....1.7..483..........2..
+....71.........82..........37..5.......2..49.1.........1.4...........6.3..9.....7
+....71.........82..........37..5.......2..49.1.........1.8...........6.3..9.....7
+....71.....3.....65......4.42.5.........8.1..6.........71...8..2..4..............
+....71.....5....6.........3.1....72....63.......4..........815.4.....2..3........
+....71.....8...5...3.......76.....1.2..9........8..4........8.51...2..........3..
+....71.....9...5...........17.....3....94.6..2.........4.....7.8..5........6....9
+....71....2.....4..........7.1...8.....46..3.5...........2..5.4.8.3...........1..
+....71....2.....4..........7.1...8.....46..3.5...........2..5.4.9.3...........1..
+....71....2....4..8...........6..2.31.4.5.............5......17.3.2............5.
+....71....2....8...........7......14...3...5.........7...24.6..13.6.....5........
+....71....3......4.......8.15....6.....4...3.2.........4.38....7.......1......2..
+....71....3.....5..28.........2..8.....35....4......1....4..2..1...6....9........
+....71....3.....8.2...........3..7.15..6...........4.....2...6...1.4.....75......
+....71....3.....9..........29.3........2..4........1..7.1...5.....68..2.4........
+....71....3....4...........1......72.4.6........35....2.8....5....4..6..7........
+....71....3....9............2.3...756...4..1....9.....1.4.........8..2....7......
+....71....6.....4..........2...5.3...8.6...........1.7...4...8.5..2.....7.3......
+....71....6.....9..4.......53....1.....64...2...9........3...6.8.....7..1........
+....71....6....2.........8.5..2..4..7.3........1..........3..7142.6..............
+....71....8......26......3.....8.5..3..4...........1...1....7..2..3........6...8.
+....71....8.....3..........7.......1.2..4.......8...6.5.8...7.....4..2..6..3.....
+....71....8.....3..........7.......1.2..4.......8...6.5.8...7.....9..2..6..3.....
+....71....8.....4.............4...521.32.....7.........4.5..3..6.....1......8....
+....71....8....2...3....6..5......43.6.8............7.1..2.....7.4..........3....
+....71...2......3..........4.15.......62...........7...8.36.....9....1.7......4..
+....71...2......4..........5.12.......63...........7...3.46.....8....1.7......5..
+....71...2......4..........5.12.......63...........7...8.46.....9....1.7......5..
+....71...2......6..........67.5...3..4....7.....2.......9...1.7...83..........4..
+....71...2......8.6........4..6........2..5........7.3.7....1...3..5.......4...6.
+....71...2.....3..4.8.........8..4...5.9............1..7.....516..42.............
+....71...2.....8..............26.4...73.........8........6...3764......5.......1.
+....71...26.................3.2...5.5.7....1.....4.6.....8..4.31..............8..
+....71...3......2.5.........193..4.....25..6..............4.1.92..6..............
+....71...3......5....6.....45.3.....2.....7........1.8.81.........42...........6.
+....71...3......8.2........5..3........2..6........7.4.7....1...4..6.......5...3.
+....71...3......9...........5.4..1........2.74..3.....617.........58.....2.......
+....71...3.....2............4....71.6..28...........4.5..3....9...62......1......
+....71...3.....8..2.........7.6...518..3.................83.4...15....7..........
+....71...3.....8..2.......9...9..2...16.......7........4.....7.....5..4.5..6.....
+....71...3.....9........8.....28..6..5....4...7.......2..9........3...7........15
+....71...4......2.......35.2..54....3.....1.....6....8.19.........3......8.......
+....71...5......3..4.......2..5..4........1.28..3......16.9...........2..7.......
+....71...5......4..8.........734.....1....62....5.....4..2.....6.....8........1..
+....71...5.....2...3.......7.1.6.......2..8..9.........8.5...4........17........6
+....71...5.....4...3........2.4........3..6...18......4..56....7......1.........2
+....71...5.....6...............4.2..1......7.3..6......7.....46.2.8........5....3
+....71...52................41..3.......2..65...3......3..6.......7.....1......82.
+....71...6.......24......3....23..4..1....5...8..........5..1..3..4...........8..
+....71...6......8.2.3..........5.7.4..82...........1.....3...6.75........1.......
+....71...6......9..........4..3..1........2.7.3.6.....517.........48......2......
+....71...6.....3...5........2.6........3..5...18......4..53....7......1.........2
+....71...6.....4...3........2.6........3..9...18......5..46....7......1.........2
+....71...6.....5..2.........1.....7....3..6...8.......34.....1....62.......5..3..
+....71...8.......43......2.5..2......4....1..........7..23...5..7..4.6...........
+....71...8.......43......2.5..2......4....7..........1..23...5..1..4.6...........
+....71...8.....4..2......6....2...5..13.......7...........8...7...6..3..65.......
+....71...8.....5...............6.31.2..4............6..17....2..3.5..4.....8.....
+....71...8.....5...............6.31.2..4............6..71....2..3.5..4.....8.....
+....71...8.3......4...........8...43.2......6.......8..7..6.9..5.....2.....3.....
+....71...8.3......4...........8...43.9......6.......8..7..6.9..5.....2.....3.....
+....71..38.....2............13....7.4..3.........8.5.....8..4...7..6.......2.....
+....71..65......3..............8.1..8..3.............7..74..2...1...2......5...8.
+....71..86.3...................4..712..6.....5.........4.5..62..1.............3..
+....71.3.2.8..................2...64.3.8......1.......4...5.7..9..4...........1..
+....71.4.2............3....58.6...........31.6.....2...9.2....5.41...............
+....71.5........82...........1...6.....85....9.4......2..4......8.2......3....7..
+....71.5..43..................26....1......4..8.3.....7.6..2.........8.3......1..
+....71.8..5.....1..2..........54.6....3....7.8...........4..2.3......5..7........
+....712.....28.....5......33.24............1.4.........17..3......6..4...........
+....712..43.................5.4...31..7..6..........8....35......1...7..2........
+....715..6.....4...2.........54....8.1.....6...3......8..63...........2.......1..
+....716...3.....2.............25..8.7.1......6.........2.8.....5..3.....4.....7..
+....716..5.9......3.........8....9..4..5........1.........2..45.......13.7.......
+....72.........48.....1.6..3.7.........6..2..1.........254......8.....3.........1
+....72.........49.....1.6..3.7.........6..2..1.........254......8.....3.........1
+....72.......4.8..1...........8..3...27.......5..........65..273.41..............
+....72....6.....4..........5.2.1.......6...837.........4.8.....1.....2.......35..
+....72...4.....3............273............89..8.1....54.1..6.........7.9........
+....72..38.1................2...9......6...8.......5..67....2.....14....5..8.....
+....72..651.....3..9.........2.8....3.....1.....5...9.4.......8...1...........2..
+....72.5...3...8...1.......5......72...3....9............8..36.2...4..........1..
+....72.8.1............8........5.1.6..24..3...8.......6..1..4...7..........3.....
+....72.8.3......6...1......4..3..5...9.....7.............6..3.4.7..4..........1..
+....72.8.3......6...1......6..3..5...9.....7.............6..3.4.7..4..........1..
+....72.9.1.3..................4..1.6....8.5...2............34...7.....2.6..1.....
+....72.9.1.4..................5..3.6....8.1...2............45...7.....2.6..1.....
+....721..46.5.................3...967.1......5.........8.63..........74..........
+....723...61...............3..5....7...18..6..4....2.....6...4.7.....9...........
+....723...61...............4..6.........5..3.2.....7...5.3....8...1...6.7........
+....723..18.......5...........89..7.4.....2.....1........9....8..2....6..3.......
+....724...51...............72..6.......5..1........83.4.......7...3...5....1.....
+....725...61................3.1...6.2...8..........7.....6...4.7..3.....8.....2..
+....726...51.....................2.8.4.1.....6.....7.....48..5.2......3....5.....
+....7265..9...........5....5.2.........9....46........1..8...........21..3.4.....
+....728..3.1...............4..5...3.....6...9.2.......6..3.4....7....2.....1.....
+....728..4.1...............6..51..4.37...................16..5..2....7.....4.....
+....729..3.1...............4..5...3.....8...6.2.......6..3.4....7....2.....1.....
+....73....2.....5..4..6....1......76...8.4.........3.....2....47.....1..3........
+....73....5....2...1..........4.2.3.6.......7...51.......2..1..3.8......7........
+....73...6.......4.........17....2...3...9......4....55..62..........83........9.
+....73..6.......8.1...........5..12..67............4......985..2..1.............3
+....73..8.41...2..............4..15.76............2...3...6..7....1.....2........
+....73.1.2.....6..8.........73.5.......6...........8..6..2..1....5....7..4.......
+....73.2..54...................6.2...1.4.....7......3....2..4.1..8...5..3........
+....73.2.1............8....5..4..6......2..7.......4...72.........9..5...3.1.....
+....73.2.1............8....5..4..6......2..7.......9...72.........6..5...3.1.....
+....73.2.1............8....5..4..6......2..7.......9...72.........9..5...3.1.....
+....73.4.......6.1.........6.52........6...3.1...........18.2...37.......4.......
+....73.5..81................4.....37....65......1..4.....8..2..7.4......1........
+....73.6..2...........1.....8.2...........31...9.........6..2.87..4....51........
+....73.6..21..........4.......9..2.17...........1.....3......7.....6.9...4.8.....
+....73.8..24...................5.2...1.4.....7......3....6..4.1..6...5..3........
+....73.8..54...................6.2...1.4.....7......3....6..4.1..2...5..3........
+....73.8..54...................6.2...1.5.....7......3....2..5.1..2...4..3........
+....73.8..54...................6.2...1.5.....7......3....2..5.1..6...4..3........
+....731..64.................9.41.......2...........3..3.7...5.....6....9.....8.4.
+....732...1.....7.....5....3.....5.8...6....9...4........1...4.2.6......5........
+....732...81..................4...1.7.......6....2.....4.1.6...5.....74....3.....
+....735...8...........1....5.62............71.4.......3.....62....9.1......8.....
+....738..2......6..........7.4.....1...53..9.8.........3....7...4...1......9.....
+....738..26................1..6.........4..8.3.....7.....5...61.4.2.....7........
+....74........5.6.........2....3.75.2.61.......9......54....8...3..........6.....
+....74........8.6.........2....3.57.2.61.......8......15....4...9..........6.....
+....74.......2...1.5.....3..6.3...........2.6......7..8.2...4.....9...5.7........
+....74..6.3.....8..2..1....4.....7.18..3.................2..35...1......7........
+....74.1.3.....6..8........2..5..3.....6..5...7........4.....7....32......1......
+....74.2.3.1.....................3.5.4...1.........2..5..36.......8..6...7.....4.
+....74.3.8.....2......5.......8...4........571...........9..1...53.......7....6..
+....74.6..81...............4.5..3.........2.83......1..3....6.....85.......1.....
+....74.6..81...............4.5..3.........2.83......1..3....9.....85.......1.....
+....74.8..21...............7......5....1.5......2.....4...3.5........2.4.9.6.....
+....74.8.23................1.4....7..5.2.........8.......6..3.5...1..2..7........
+....743...1.....5.....2.......1.5..63.2......4..6.....7.....2.........1....8.....
+....743..5......6........2.1.65.........8.4..2.........8.6......3....7.....2.....
+....745..3......8.2........6..3........28.....4....9.....6...2..7...5.....1......
+....745..6......3.1..2......7....2.....13.......9.6....4....7.....6...1..........
+....75..........28.........17...4......2...395............3.1....26.....4.....7..
+....75.........1.8.........3.7.4..5....1..3..6........2..6.3....1.8............7.
+....75.......2.5..4.......8......27....8..6..1..3........1...43.8.........7......
+....75.......9.7...6.......3.5.........6...1.7...8.....2.1...........5.29..4.....
+....75....1..2.....4...3...5.....3.2...8...1.......6.....1..48.2........7........
+....75....6.....3.....2....1.....6.....3...4.7.5.........1..2...4.8...........7.1
+....75...8.....2......4..........1743...........1........2..3.6.79.......4.....5.
+....75.2...1...6.............41......8.....5....3.....75......1...64.3..2........
+....75.2..41................3.1..6.4...6..3......2....2......8....4.3...7........
+....75.2.8......64.........3.....7...2.6........3..8....7...51.....2.......4.....
+....75.4.6.....2......4.......8...3........571...........2..6...43.......7....1..
+....75.4.8.....2......3.......8...5........371...........9..1...43.......7....6..
+....75.4.8.....2......4.......8...3........571...........9..1...43.......7....6..
+....754...13..................31..2.45....6..7...............816....4......2.....
+....76....4.....9..3.....5.......7.1..92.....8.....6....24...3.6..............8..
+....76....4.....9..3.....5.......7.1..92.....8.....6....54...3.6..............8..
+....76..1.3.....2.............2..35...84.....6........1.....6.7.5.3.....4........
+....76.13....3...92........5..2..8..8..4.................5..4...3.....6..1.......
+....76.2.1.........8........9.3..4........1.........6....1..5.96.28.....7........
+....76.3..82...4...........6......7....81......4......71...3......2..5.8.........
+....76.5.4..1..............86.....7.1..4.........5.......3..4.1.7.2...........3..
+....761..45................2..439...6..5...........7.....2....4.7.....3...1......
+....763......4.2..1.........23.........8...5...4.......7....4.38..5........1.....
+....764......4.9...1.......6.85........2...1.4.....3.....1...5.7...6.............
+....764..5.2..................51.3...8.3.....67.........82............65.......8.
+....765..1......4..........8..1............34......6.7.76.9.......4...8.......2..
+....765..82.................3.25.......4...8.......6..6.7...1.....8....35........
+....78......4..9........1.....32....6.8......7.............4.76.9.5......3.....8.
+....78....5....4..1...3.....2.4....5...1...3........7....2..8..3...6..........2..
+....78..4.....45...1..........12..6.8.3......5..6........3...1.7..............2..
+....78.1.5.....2.3............52.4...81................7...1.6.4.....5.....2.....
+....78.2.1.....5............284........5..6.1.7.......9..6.........4..8.......3..
+....78.2.1.....6............285........4..1.3.7.......6..1.........5..8.......4..
+....78.4.9.......6.........1.2..........4.8..6..9......4....78....1..5.....6.....
+....78.5..1......6.......3....1..2..7.3......4..6........2..1..5...3..........9..
+....78.6.1.....2..............14.5...87.........2.....4..51.........3..7.......3.
+....78.6.1.....2...........4..52.........3..7.......3....14.5...87.........2.....
+....782..4.1...............3..6...4.....2.....7..........1.3..5.8....7..6..4.....
+....782..6.1....4...........8..3.7..4..6.........5....5..1...6..7.2..............
+....783...41................6.5...1....4.3...7.......3...1...6.8.....7......2....
+....784........1......3......7....3..4.1........5....62...6..7.5..2.....1........
+....785..31................4..1...3.....5.2....76........3.4.....8...7...5.......
+....786..52..............1.1.7.....5...34....2...........2.1....4....9.....5.....
+....7862..4...........3.......4..1.982.......5..1.....3......8..1.9..............
+....79.3..1...........3....4..16....2......9....5..8.....8..6.43..............1..
+....79.3..41...............5..6....2...48....7........3.....7........95..2.1.....
+....794...8.....2...15.......6....319...4..............3.1..5..4.....9...........
+....795..3......8.2........6..3........28.....4....9.....6...2..7...5.....1......
+....8...1.2...7............6..3.2...5.1....6.8.........4....27....15..........3..
+....8...1.46.......2.......7..61....5.....2........43.8......5....4.3......2.....
+....8...13......2.9...4.....4..6.5.....1...3.............3..9..7..2......8....4..
+....8...13.2......4........57..1.......3..26.......4...1.....9....4.7......2.....
+....8...136.......4.........18..6......5..43..........2......5....4..3....7.1....
+....8...14.........7.......2.1.6..........73.......4...3.7.5.....6....9.5..4.....
+....8...14.3......5.........1..62......5...4.......73....3.4....6....9.....2.....
+....8...15.....2.....4........31..4.7..6.....29........4.....9......27....3......
+....8...15....4............36....54.7...1.......2.......27......1.....8......53..
+....8...15..7............2.4.....76......1.........5...81...4.....65...3.2.......
+....8...17..4.....5........4.....57..1..3..........2...836........7.5.9..........
+....8...18....4...2.........15.3..........24..........63....7.....1.5.6....9.....
+....8...2..5....3..1.......8..3....4.9...51..6..2.....2...4...........8.......5..
+....8...4.6...9.........3.....5.36..4.8......2........7..84..........91....2.....
+....8...4.6...9.........5.....5.36..4.8......2........7..84..........91....2.....
+....8...42.....6..1...9.....8..3.......7..2........7.....2.5....4.....8....6...5.
+....8...5....6.7...1.......3......4.2.8.........5...1....1.32..6.....3.....4.....
+....8...517.......3.2..........4.8........21..6.......84......6...2...3....1.....
+....8...7.3.....4..68.........3.26..7..4.....1........5...1.2.....7...........3..
+....8...7.4.....5..68.........4.26..7..5.....1........2...1.3.....7...........4..
+....8...74..3......5....1......512..3......6......9......7...34..1.......9.......
+....8...91.....3.......6......7..24..85.........1.....5..39...........86......4..
+....8..1..2..9....3........1.6........5...8.....2......7....4.96..1........3..2..
+....8..1..24......6.7......13..5.......4..7........2..5...3.......7..4.....1.....
+....8..1..3...9..........7......245.7..6.....1...........1..3.....57.....4....9..
+....8..1..36......57.......2.8.....4...3........5.....1...2....4.....5.....7..3..
+....8..1..4....7...........8....2..61.....5.....7..4...3.....8....45......2....9.
+....8..1..45.......3..........5.4...8......6....7.....6..31.7........5.12........
+....8..1..56.......3.......7.2.1....4..5..6..............6.45..2.......8...3.....
+....8..1.2.....3..5....1....84.3..........5...1..............987..3......9.2.....
+....8..1.2..4.....6........4..5.96...1....3..7.........89.1.......6..4...........
+....8..1.2..6.....5........4..5.96...1....3..7.........89.1.......4..5...........
+....8..1.4.....2..5....1....83.2..........5...1..............987..4......9.2.....
+....8..1.6..7.....9.........14.........6..2...8.......3..5.46......1...3.....2...
+....8..1.7.........4........7....3.2...61........4.7....57..6..1.8.........3.....
+....8..1.7...2...........38...4..5..61.........3...8..5.....2.....1.6......3.....
+....8..1.7..5..............59....7......21..............67.54...12.....6...3.....
+....8..13.2...9.......6.....9....8.75.....9.....1.....1..3...........42....5.....
+....8..16.54.............2.....34...62.......1..........86..3..9..2...........5..
+....8..2......35...1.......3...2...6...4...7........1.8.2...4.......19.....7.....
+....8..2.....43...1.........5....6.3.....24..7..1......34...5.....7...1..........
+....8..2.....53...1.........75...2...3...4......1...6.4..6....3......7.5.........
+....8..2.....93...1........6..7..2........3..........9..95...1....1..46..8.......
+....8..2.....93...1........6..7..5........3..........9..92...1....1..46..8.......
+....8..2.....93...1........6..7..5........3..........9..95...1....1..46..8.......
+....8..2..1....5...5..7..........9.1..6......2........4..3...8....1.9......5..3..
+....8..2..1...6...4.........3.9....1...25.....6.......2..4...8.8.....6........3..
+....8..2..14.........3......6....4.1...5..6.....82....8.....73......1...5........
+....8..2..14.........5......6....4.1...3..6.....82....8.....73......1...3........
+....8..2..4....5......1.....7.6..3.....5.....8........1.8.....9...4.36..2........
+....8..2..4....7......1.....6.7..3.....5.....8........1.8.....9...4.35..2........
+....8..2.3.1........7.......2..5..........3.6......74....3.71..5..4......6.......
+....8..2.54........6.......4..5.3......4..6........1.....6....42......7...8.1....
+....8..2.6...1.....3....5.....3..7..2.....4....1...........2.16.7.6............8.
+....8..2.7...3..........6.....5.12..3.......74..6.......62............43.1.......
+....8..215..................6.3..7.....5.74...2.......7..4..5......2..6........1.
+....8..231...............7..2.3.1......4...........5..4...5.6..6.7...1.....2.....
+....8..245..3.....6........1.....3...9...2.......4.....43..9.8....1..5...........
+....8..25.4.3...............2....34.6...1.....7...5......9..4..5.8......1........
+....8..257...1....3.....6.....6..3...8....4...1.......6..4........5...1........7.
+....8..257...1....3.....6.....6..9...8....4...1.......6..4........5...1........7.
+....8..275...3......1......6.....3........5.9.2.......3.....6.....1...4..7.2.....
+....8..276...............1.5.....6...7..1.......3.....21....3.....6.54.....4.....
+....8..296......5.74...........52...3.....7........1.....3..6...2.....4....7.....
+....8..3....46.....12.........9..2.163.............5..4.....67......1..........9.
+....8..3..6.4......1............96.17...3.5........4.....6..2..8......4.3........
+....8..3.1..5...........4..9.....5.1....23......4......38....7....1..6...2.......
+....8..3.1..5...........9..9.....5.1....23......4......38....7....1..6...2.......
+....8..3.1..5...........9..9.....7.1....23......4......38....6....1..5...2.......
+....8..3.2...1....4.6......5..4..2.......7.1....6......8..3.......2..4...1.......
+....8..3.2...1....4.6......5..4..2.......7.1....6......8..3.......2..6...1.......
+....8..3.2...1....6.4......5..4..6.......7.1....6......8..3.......2..4...1.......
+....8..327.1...............63..2....4.....7.....6........7.45...2.....4....1.....
+....8..327.1...............63..2....4.....7.....9........7.45...2.....4....1.....
+....8..34..26......1.......8...3.9.......42..............2..57.3.......6...1.....
+....8..34..27......1.......8...3.9.......42..............2..57.3.......6...1.....
+....8..35.61...............2......9....6..5.....1.4....4....1..5...2....3..7.....
+....8..365.2.............4....2.17..34.................6.53......4...2.1.........
+....8..4.....53...1........7..6..2..........5......3...52..6....3.4........1...8.
+....8..4....6...2..1.......7...3.5....2...1..........92.....73....1.9......4.....
+....8..4..27..............6...7..3..6.......8...5......3..61...1.....75.......2..
+....8..4..36.......2.......9.....81....2.5......6.....8....7..31...4..........2..
+....8..4.7..3..................4.35.3.....6.......1......6..7.2.542......1.......
+....8..41..27..............18...4......6..39..5.........93.....4.......8......2..
+....8..412......9...5........6...2...1..4.......9.....7..3.25...4............6...
+....8..412......9...5........6...2...8..4.......9.....7..3.25...4............6...
+....8..412..4.....5.........86.....9.....25.....3......1..9....9.....3.........2.
+....8..417..2......9.......6....37......41............5..8..2...3.9.......1......
+....8..4172.........9.......6....93.8...1.........4......6.92..1...........7.....
+....8..4175.........9.......6....93.8...1.........7......6.92..1...........7.....
+....8..42.6.....7.3...........1.75....4..3....2.......7.....3..1..6.........2....
+....8..435.1..................5.12..63.....7......9....8.43....9.....5...........
+....8..436.1...............2.....6...3..4.......7...5.5..6..2...8......4.....2...
+....8..436.1...............2.....6...3..4.......7...5.5..6..7...8......4.....2...
+....8..461...............9.6...5.7..3.....1.....2........1.32...49.........7.....
+....8..5..24.......9.......5..6..31.7..2........9...........4.96...1..........5..
+....8..517..2......9.......6....37......51............2..8..4...3.9.......1......
+....8..521.4..................1.76...2..........4......5..2...47.....1.....6...3.
+....8..561.4.....7............3..42..6........5.......8.....2.....1.6......75....
+....8..6.......3.29...........2.71..5......4.68.........2...7...7.3.........6....
+....8..6...4...3...1..........17.4..8.......52...........4.5..26......8....3.....
+....8..6..2....7.......1...6.....18..4.2..............1..73.......4....2..8.....5
+....8..6..4.2.......1...3..6..79..........4.1.8.......8....4...5......9....3.....
+....8..6.2.......51..............27....3.5......4..1......2.4.156........3.......
+....8..6.4.....1..1..........2....8.5..4........6...3..8....5...3..2.......7..4..
+....8..6.4..3.....1.........651........2..4...8.....5.....567........1.2.........
+....8..6.7.......3....1....35.....2....7..8..4.........68...1.....3....4...2.....
+....8..61.54.................9...5..1...6.......8...7....7.54..63..........2.....
+....8..617.4...............2.....75.....13.........4.....5..24..1.6......8.......
+....8..62.1.....5.............1.54....94.....2........35....1..6...2.......7.....
+....8..654.7...............3..5..4...6..2..........1.....3.47...82......1........
+....8..7...5...3......2.......3..1.....6..5..2...........5.1..648.....2.7........
+....8..7..25.......4.......6..71.3..8.....2..........43......1....5.4......6.....
+....8..7.2...1....5........4..2..3...6.....1....9........5....2.7...3....1....8..
+....8..7.5.9.......2.......83...1.........9.6......2....659....7......1....2.....
+....8..72.31................4.3.65..2......6....4.....6.....3..7...2.......1.....
+....8..72.54..................42.....3....5..9........7.2....6....5.31.....9.....
+....8..72.65..................6.15..2......4....5.....7..32....9.......8......1..
+....8..73.14...............7...3.....5....4.....6...2...64.52.....1.....3........
+....8..761..5..............5..4.1....7.....38...2........6..4...38............1..
+....8..9..25.......4.......6..71.3..8.....2..........43......1....5.4......9.....
+....8..9..45.......3..........5.4...8......6....7.....6..31.7........5.12........
+....8..9.1..6.....7.4.......8..63....2....7........1..5..4.1..........6....7.....
+....8.1......4....6........5......36.8.....7....9......41...7.....6.52.....3.....
+....8.1...2...5.........6..1.73........4.2...8...........1...279...7...........5.
+....8.1...29..................2.46..7.8...3.....5.....6...1.....4......2...6...5.
+....8.1...3......7...2.........73.2.5.1.......6............76..8......3.4..1.....
+....8.1...3.7...........9.....6...7.9..3.....1....5........94......2..5..7.....3.
+....8.1...6.4...............2.6.4...1.....8.....7.....5.6.3...........723......4.
+....8.1..1.......72..........95...........38.......4.....1.2..5.8.....3..4.6.....
+....8.1..3......6....5......81.5...........43......2..2..3.6....7....8.....4.....
+....8.1..6...3...........5.2..5....6..71.....4.....3.....7...2..3......5.1.......
+....8.1..7..4..............4..3...7.8...1..........2.....5.8..3.19....6..2.......
+....8.1.4.29............8..7..6..3..4...1...........2....2.9.5.1...........5.....
+....8.13..5.6..............1..5........2...7.4.3..........134...9......5...7.....
+....8.13..54.....6.........1..27.....9......4.......5.3.....2.....4.9......5.....
+....8.13.2...............5....2.9..478........3.4........6..9.25...3.............
+....8.14..5.6..............1..5........2...7.3.4..........413...9......5...7.....
+....8.15.6.2......3.........7...5..6.1.............2.....23.......1...7.4.......5
+....8.16.3.5......7........2..5....7...61..4...........1.4..........2..3......8..
+....8.16.3.7......5........2..5....7...61..4...........1.4..........2..3......8..
+....8.2...1....5...3.....4....6.34..8........7...........1....7.......892...6....
+....8.2...3.1.................6...918.7......2............427...1.....3.6..5.....
+....8.2...3.4......56......7.....12....34.......5....68....1..........53.........
+....8.2...3.5......67......2.....14....35.......6....74....1..........63.........
+....8.2...3.6.....5.......41...45.........37.......6..4......1..8.3........1.....
+....8.2...4......7......5.....4.7...2......1.3.........715.........2.36........8.
+....8.2...4.7..................32..7.5.....3......18.....5...642..4.....1........
+....8.2...41..........3.......6...175.....3.........4....4.7.6.8.....5.....1.....
+....8.2...45.......1.......3......41....65......7........4..57.8.....6.......1...
+....8.2...9.7.................5...712.6......8............296...7.....3.5..4.....
+....8.2..1.3......4.........2.5..7.....1.3........6....5.27....6.......3.......1.
+....8.2..1.3......4.........2.5..7.....1.3........6....5.72....6.......3.......1.
+....8.2..1.7......4.........2.5..6.....1.3........7....5.26....3.......7.......1.
+....8.2..4..7.............1.2..1.3..5......4...........82...6.....5.4.7....9.....
+....8.2..5.......73....6.....45......2....6.......3.5....72.4.....1............6.
+....8.2..6..4.....5.........7..23...4..5...6.........1.23...7.....6...5..........
+....8.2..8...3..........4..3.8....5.6..4..3.....2...7..2.1......1..............9.
+....8.2.1.35..................4..83.1...2.......6.......67.3.5..4.......2........
+....8.2.51..9..8............9..2....3......1......57..7..1...4..2..........3.....
+....8.24..61...............2..6.1...4.....3.....7.....5..23.....7......1.......6.
+....8.27.4.1...............5..6.4..1.7..3.6............2....8.....1.5......4.....
+....8.3......26.....1.........4..1..58.............9.687.....2.3..9........1.....
+....8.3...2......1....7.....516...........47.......8.....2.5.3.7..1.....4........
+....8.3...24..........1....6.8...1..3..5........2......7....53....4...2.8........
+....8.3...24.......6.....5.7..81..........46..........3.....1.8..56.2............
+....8.3...4.......6.........9.....74...6..5......3....8.1...6.....4.9.2....7.....
+....8.3...46.......7.......2...1...68......4....6...5......21.3...4...........7..
+....8.3...5........2...........6..253..5............4....7.41..8.....9....42.....
+....8.3...76............1.....2...4....7.9...3.....5.....4...628...1...........7.
+....8.3...9............1...8.3...7.....9..4.....2......4.3...2.1...6...5.......9.
+....8.3..14...........5......4.....6.83.............1....2.67.....4..8..5..1.....
+....8.3..2......7....2........7.5.6..81.............4.....3.8.95..6...........1..
+....8.3..2......7.4...3.......2.7..4.8....1..............4...62.31...5...........
+....8.3..4.........1..........5.7.1...3.6....8...........2..6.7.5...1......4..8..
+....8.3..4........1.........2..6.5....3....4....7........1.4..7.65...2.....8.....
+....8.3..4..7.....2.5.........4.31...6....8.....2......8..1..6........5.........2
+....8.3..5..4.....7........27.....5.....3.7.......1....38...6.....2...4....5.....
+....8.3..5..4.....9........27.....5.....3.7.......1....38...6.....2...4....5.....
+....8.3..5..6.......1....4.2..1...5..7..3................4.1.....85......3....7..
+....8.3..6......7....2........7.5.2..81.............4.....3.8.95..6...........1..
+....8.3..6.....1..4..2.....2..6...4......1.........5...58.3.......7...6..3.......
+....8.3.2.1.............6.....1.4.5.8.......7...6........5..14.3.2......7........
+....8.3.2.61...............2..73.....4.....6.......5..5..6.4.7....1.....3........
+....8.3.274...................7..1...6.....4.2....3......92..7.35.........1......
+....8.3.4.91...............5...2..4.3..7......6.....1....1.6...4.....8.....9.....
+....8.3.52.9..................1.2.7..3............9....6.53....1.....72....4.....
+....8.3.56.....4..1...........6.1.2..3.7.......42......5..4...........18.........
+....8.3.6..9...7...4..........4.91.....1.....8...........5...283...6...........4.
+....8.31..72.................6...4.28...1.......7..5..91..........6.3......2.....
+....8.32..61................89...4.....3....12...5....3......8....4.6......1.....
+....8.32.1.4..9.............3..2....7.......1.......5....1.7..9.2....7.....4.....
+....8.32.4.1..9.............5..2....7.......1.......3....1.7..9.3....5.....4.....
+....8.32.5.6......4...........73....7.......5.......6.18....7.....2.6........4...
+....8.35.9.4.6.............2..1....4.8..7..........6...3.....8....4.2......9.....
+....8.36...1.7.8..5........4.....5.1.6.................8.9...2....1.4......5.....
+....8.4......29...1........7..4...6........2.........9...1..7.3..26..5...8.......
+....8.4......94....3.......2..5...6.8.4..............171.6...........85....3.....
+....8.4....1.......5.......73..6...........51...3...2.3..2.4...8.....7.....1.....
+....8.4....1.......5.......73..6...........51...3...2.4..2.9...8.....7.....1.....
+....8.4....2....1..6.......59....1.....6.2.......7.......5...6.4..1.....3...4....
+....8.4....3.......9.......4......36.8..1...........2.5..2.3.....26..7........1..
+....8.4....7..2....1.......6..43...........178......2.5.....8.....6.7......9.....
+....8.4...1..7.....3..........3..2..4.....7.....5.6...5..1...6........31..2......
+....8.4...1..7.....3..........3..2..4.....7.....6.5...5..1...6........31..2......
+....8.4...59.......1.......7.....26.3....5......7.1......6...918...2.............
+....8.4...7......2.35.............539...2..........17....7...3.4.....6.....1.....
+....8.4..1..2...........3..2.91......3....7.....6....56......1..8..3........5....
+....8.4..3.2..........1....14..........5...2.........7.6....13....2..6.....7.5...
+....8.4..6................1.2..5.....5.....6....1...3......425.3.86...........7..
+....8.4.15.2..................2.6.5....9......4.......7..8..3...1..4....6......2.
+....8.4.172.6..............6.5....3.3..9.........1.....14...8.....3.....5........
+....8.4.2..16...........5.....7.3.1.24.......5........49..5.......1...7..........
+....8.42..5.6......1.......3...6.8.....1.................5.1..98.....3..4..7.....
+....8.42.5.....8...73.......2.....7....51....9........6.......1...3.2........5...
+....8.45.1.7...............2..3..6...4....8.....1..........9.17.6..2...........3.
+....8.46.7..2.....1.........4..6.8..........1............1.32..5..7......8.....4.
+....8.5....36................14.3....2....7.....1.....75..2.........4.368........
+....8.5...3....4....1......8......32...41..............6.3.2...5.....78....9.....
+....8.5...76............1.....7...3.5..3.....4.....8.....6...72.....4.6.....5....
+....8.5..1.....4..6..........24......5..9...........1..4....8.2..73.1......6.....
+....8.5..17..........9............39.8..6...........1.3..1.2.....4...8.....7..2..
+....8.5.32.4......6........8..59...........46...1..........6.2..7....9...3.......
+....8.5.417....................6.31.7.4.......2.......6..7.2.....5...8.....1.....
+....8.5.472.................3.....2.4...5..........6.....3.2.7..654.....1........
+....8.54.36.............2.....6.17..8.2.........4.....5..73...........16.........
+....8.54.96.............2.....6.17..8.2.........4.....5..73...........16.........
+....8.57.1...............3.6..2....1.3..5...........2..75...8.....1.6.........4..
+....8.6......27.....1.........4..1..58.............3.786.....2.3..5........1.....
+....8.6...1......2.75.............476...2..........51....7...3.3.....8.....1.....
+....8.6...2.....4...71........5..1.8.4.......3............42.6.1.....3....5......
+....8.6..7..5...........9.....2.4.7...6...3...1.......4......52....96......7.....
+....8.6..9.....1..2..3......5...1...3......2........8..645........72.....1.......
+....8.6..9..2............4....7..2.9.4....3....1.........34..1.2......5..5.......
+....8.6.2.1.............7.....1...345..4.....6........24.....1.....675...........
+....8.6.213........7.......5...6.4...1.3.................7.2.3.6.....5..4........
+....8.6.4....2.5..1.........82....1....5...3....6..........327.6..4..............
+....8.6.4....2.5..1.........82....1....6...3....5..........327.5..4..............
+....8.6.452...................3.5.9..84......1.........7.64....3......5.......9..
+....8.6.452...................3.5.9..86......1.........7.86....3......5.......9..
+....8.6.573.................9.8..4....5.6...........7.2..7.4.3....1.......6......
+....8.6.72.1............8..4..2.1.5.36..........4......7..6.......3...2..........
+....8.61.3.7......5........2..5....7...61..4...........1.4..........2..3......8..
+....8.63...1....9.2..3........2..7.5......8...9........6....4..7...9.........1...
+....8.63..1.7............4....2..1.93.4.6....5...........1..2..4....5............
+....8.63.5.12......7........2.1.....6......8..........8.3.4.......7..2..........1
+....8.64...2...7...1.......4...6...........31......5.2...1.9.2.8...........3.....
+....8.64.1..............3.....3.7..5..21......8....4..7.......1.4.....2....5.....
+....8.64.1........9.........7..4.5..3.......1...5........1.32...8.....7....9.....
+....8.64.91......................3.1...25.....2..........1.35..8.4....7....9.....
+....8.64.91......................3.1...25.....2..........1.35..8.6....7....9.....
+....8.67.1.2........4...........3..1.5..6...........2.3..1........4..9...7....5..
+....8.7....9...3...4.6.......54.6......1.....3..............2417...3.....8.......
+....8.7..1.....5...6..........2....1..9.5.....3.....6.2..1.6.........84....3.....
+....8.7..5.6........3......1..3...65.4..7................1.52...8....4.....6.....
+....8.7..5.6........3......1..3...65.4..7................5.12...8....4.....6.....
+....8.7..52................6..1.4......2..8....15......87.3..........654.........
+....8.7..6.5........3......1..5...36.4..7................6.12...8....4.....3.....
+....8.7.1.35...............74..1......2....3....9........3.2.6.1.....2.....5.....
+....8.7.12...6....9.........1.9..3.....2...4..........6..4...2..7..5.1...........
+....8.7.15.....8..4........2..5.4.6..7....1.....2........4...2..1...........3....
+....8.7.159...................4..3....9.1....6......5..4.5.1...2.....8.....9.....
+....8.7.425................9......2....5..8..6...7.....84...3.....2.9......1.....
+....8.72.5.1...............62......1...5...4.3...7.....7....3.....4.6......1.....
+....8.73.5.1...............27......5...4...6.....3....4..5......3....1.....1.2...
+....8.74.51...................1.7..63.8...2.....4.....9.......5....4..1....2.....
+....8.9..4.....5.......7....7...1.6.......48....3......3.....712..54.............
+....8.9.31...4....2.....7..8......1....96.........5....9....6...3.1........2.....
+....8.9.41...3....2.....7..8......1....96.........5....4....6...9.1........2.....
+....8.9.53...2....1.........5.69....7......1.......2...8....5.....1.7......3.....
+....8.92..16................89...4.....3....12...5....3......8....4.6......1.....
+....81.........3.6......7...84....1....35.....2.......7......2.3..6........2..5..
+....81.........52..........38..6.......5..49.1.........1.4...........7.3..9.....8
+....81.........95..........4.......8...7....4.2.5.....1.8...3.....64..7.2........
+....81.....5...3................6.48.2.....1..3.5........63.2..4.....7..1........
+....81.....5...7...4..........54.3..63.....1....7........3..4..1......8.2........
+....81.....6...8...7.......8.4.5..........7.6...3.....1.....38..2.6............5.
+....81....2.....3........6..6.3...2.7.....8...........5..9..7.....24....8.....1..
+....81....2.....9.......5.....7...2.4..2.....1.........5.36..........8.1....5.4..
+....81....2....5...7.......1.3....8....2.....8...........5..7.64...1.......6..2..
+....81....2....6..............6..7.95.8.4....3.........7.3.......4....8.1......5.
+....81....2....6..............6..9.75.8.4....3.........7.9.......4....8.1......5.
+....81....2....6...7.......1.4....8....3.....8...........6..3.25...1.......2..7..
+....81....3......5............35..476..4.....8........2.....81..4.5...........2..
+....81....3.....6..........4.....1.8.7.35................6..32.5..2.....8.7......
+....81....3.....6..........4.....1.8.7.35................6..72.5..2.....8.3......
+....81....3....7..............4...58..73.....6......1.58..6.......7..2..1........
+....81....3....7...........1.8.5.......6..2...........46.3...1....7...45........8
+....81....4......3..7..........4.78..3.6.....2...........3..5....8....6.1..2.....
+....81....4.....5.......2..1.8.....62...3.......4...7..5.7.....6..5...........1..
+....81....5......4............34..567..5.....8........2.....81..3.4...........2..
+....81....5.....2.........31.....8..3..2........9...5..2.5....67...4..........1..
+....81....6....2....9......4......83.7.5........6.....1..2..5..8.3..........6....
+....81....7.....2.............25..7.1.84.....3...........5..3..6.....1...4.7.....
+....81....7.....2..3.......2..4..5......9.1...........15.6........7...498........
+....81....7.....9.......5.....7...2.4..2.....1.........5.36..........8.1....5.4..
+....81....7....6...........5......28.4.7............1.1..3..5.....67.4..2........
+....81....9....4.......5....2.7...6...3.....5........8...4..73.5...9....1........
+....81...2......3..........5...6...34..7......2....8...16...4.....3...5..8.......
+....81...2......8..9.......7..2....45.....3........1.6.41.6.......7...5..........
+....81...2.....6..............5..41738.6.................26.3....7....2..1.......
+....81...2.....6..............5..47138.6.................26.3....7....2..1.......
+....81...2.3...............3..7..5...1......4...2........5..32..84.6...........7.
+....81...2.4......3...........32.....7....1...6....8..91..........6...4....5...3.
+....81...26.................5....81.6..27..........3....8....5.3..6........4....7
+....81...3........7........2..3......1.....4........52...72.6...84...3.....5.....
+....81...3.......5......6........48.6..3.....2......7....5..2.3.81.4.............
+....81...3......9...........6.3..1........2.87..6.....518.........47.....2.......
+....81...3.....5..............72.4..581................2.....876.75........3.....
+....81...3.....5........6..6..5....7....3..8..7.....1.41..........3..9.....2.....
+....81...3.....5..2.........6.2..3...1............4.....8....425..7.........6..1.
+....81...3.....6...........5.1...7.....64.3...2........7.....2....8...1.6..3.....
+....81...32................57.2.....4......1........98...34.5....86...........3..
+....81...36................5..4..62.7...2..........1....8.....2.1.6........3...7.
+....81...37.......4........2.47...........38.......5.....35...4.18....6..........
+....81...4.......6............6....2.3.2......1.....5.2..45..........31.6.....7..
+....81...4.....2............83.....7...2..4...........24.5...6.....7..389........
+....81...4.....9..................17...5...9.3..4.....57.2.........6.3...8......1
+....81...4.2......5...........7..28.9..4...........3..68.....1....2....9....3....
+....81...5.......9............92...6.4....73...1.........3..18.6..5...........4..
+....81...5.....2............83.....4...2..7...........72.5...6.....4..389........
+....81...5.....2............84.....7...2..5...........25.6...4.....4..389........
+....81...5.....3..............8...147..9............2....64.5..3.1...7...2.......
+....81...5.....4...7........2.7........3..5...13......4..56....8......1.........2
+....81...5.....6...........1.8...7.....63.5...2........4.....8....5...3.6..4.....
+....81...52.......3......9.2.63........7..1.4......8......2..5..41...............
+....81...53................4.8....5....32..7....6.....1.....4........6.2.2.5.....
+....81...6.......5......2........48.3..6.....2......7....5..6.3.81.4.............
+....81...6.......7......2...85....3....7....6.............5.81.7..2.....46.......
+....81...6......3...4.......2....8.57..4...........1.....65..4.3.9.......8.......
+....81...6.....2............4.2..7.....5....6.8.......5..67......4....18.......3.
+....81...6.....2.........9..38.........5..4...1.......5..47....2.......3.6.....1.
+....81...6.....3....5......73.2.........4..81..........41......58..........6..9..
+....81...6.....4...3........2.9........3..5...19......5..47....8......1.........2
+....81...6.....4...7........2.4........3..5...19......5..64....8......1.........2
+....81...6.....4...7........2.4........3..6...19......5..63....8......1.........2
+....81...6.....7...1.......2..7...3.....5...84........159.........3..4...8.......
+....81...64................5.1....6....43..9....7.....2.....8........7.3.3.6.....
+....81...7.....2.........9.64.....5.....3...82..........8.....1...7..3...9.2.....
+....81...7.....4...8........2.4........3..5...13......5..64....8......1.........2
+....81...7.....4..2........62.5.........2..13.......4....2..6....3.....8.1.......
+....81...7.....4..2......6....2...5..83.......1...........7...1...6..3..65.......
+....81...7.....5...........68..2.......5..7........1..4.37......6.....82...9.....
+....81...7.....6..3........2.37........4..1.5......8...5.6...3..1..4.............
+....81...76.................3.2...5.5.8....1.....4.6.....6..4.31..............9..
+....81...76.................3.2...5.5.8....1.....4.6.....7..4.31..............9..
+....81...9.....4..2......6....2...5..83.......1...........7...1...6..3..65.......
+....81...9...5.....3........6.2....3...3...1........5.8..4..2..5.....6..1........
+....81..65.4...3......9....2......613..4...............8.2..7...1..............4.
+....81..9.32......5........1.....57....3...6.8.........6.24..........1.....6.....
+....81.6.53....2.............87...1.2..3..............4..5..3...91.6.............
+....81.9.5.3......6..........753.....9.....2...........6...97..8.....3.....2.....
+....812..37.....6...........81.........6...3....5.....6..3.....4.....8......5...7
+....814..3.6....7.5...........2...6..9..4.....1.......2..3.......76...........8..
+....814..6.3....7.5...........2...6..9..4.....1.......2..3.......76...........8..
+....814..67.....3.9..........1.4.8...3.6..............2..7....6..5...1...........
+....815..67.....3.9..........1.4.8...3.6..............2..7....6..4...1...........
+....816...2.....5.............5...736..4.....8.1.......5.2.....3.....1..........9
+....816...37.......5..........23..5.4..7.....1........2....4.........1.8.......3.
+....816..4.3.....5..........6....12.7..4...6..........5..3....4.1.............8..
+....817...26.................23.....4......8....6...5.....4.2.675.............3..
+....819..4.....1......2....3...7..8.5..6............2..1.5........4..5....8......
+....82...1.....3............287............96..9.4....65.1..4.........8.3........
+....82...14.................27.3.......5...1...8......6..4.1.........7.3...6..2..
+....82..39.....54............64...1..8..7...........9.1..3...........8.2......7..
+....82.3..71...............3.....68.4..7........5..9...5......2...1..7..8........
+....82.3.1.....6............235........6..7.1.8.......9..7.........5..2.......4..
+....82.4.5.......3.............142..3......8.6.5.........1....6.2....7.....3.....
+....82.4.5.......3.............172..3......8.6.5.........1....6.2....7.....3.....
+....82.4.5.......3.............542..1......8.3.6.........1....6.2....7.....3.....
+....82.5..3....7...........6..4..1....5...4..2............5..28.743..............
+....82.5..31..................6..1.265..4.............7..3...4.4.....8.......1...
+....82.5..71......6........2......8....7..4.....1.3....3.4..7..8...5.............
+....82.5..71......6........2......8....7..4.....1.3....3.4..7..8...6.............
+....82.5..71......6........8......2....7..4.....1.3....3.4..7..2...5.............
+....82.5..71......6........8......2....7..4.....1.3....3.4..7..2...6.............
+....82.6..3....7...........24.7........3..1..6.8......5...6..8..7.4..............
+....82.6.94.................5.9..3....2....8.......1.....4..7.9..8.5....3........
+....82.9.1............9........5.1.7..21..6...9.......7..5..4...8..........3.....
+....82.9.1............9........5.1.7..21..6...9.......7..6..4...8..........3.....
+....823..1.......64.........2....6.....7...4....1.....5......7..3...6.......4...1
+....823..4.......75.........2....7.....4...5....1.....6......1..3...7.......5...4
+....823..475...............2..5....1....1..678.........1.7............2.......8..
+....824...1...............54.83........7...962........6.....8...7.1............5.
+....824..3.1...............5..6...3.....4...7.4.......7..3.5....8....2.....1.....
+....825........61..........3..6...4.2..1.....5.8.......7.4.........5.2...1.......
+....825..3.1...............6..1.5..3...7...4..8........2....8..7..3.........6....
+....826..7.1.............3.58.4........1...7..............2...43..7......6....8..
+....826..74...................5.93...28............1..1..46...........42...7.....
+....827..5.1...............42..........5....6.8...........7.24.6..1.....3......8.
+....829..4.1...............6..51..4.38...................17..5..2....8.....4.....
+....83....1..4.....2....7..7..6............48...1........5..21.3.4............6..
+....83....6....2..............62.5..3.4....1.8.............4.31.725..............
+....83..6.1....4..............1..29.6.37.....8...........42.1..3....5............
+....83.2..54...................7.2...1.4.....8......3....6..4.1..6...5..3........
+....83.2..54...................7.2...1.5.....8......3....6..5.1..9...4..3........
+....83.2.4.1.....................1.5.3...9.........4..5..17.......2..6...8.....3.
+....83.4..21..................1..2.53...7.......5..6...5.6.....4......8....2.....
+....83.4.65.......2...4....1..2..6...7.....3.............1..2...83..............5
+....83.5..21..................1..2.63...7.......6..4...4.2.....5......8....4.....
+....83.5..61..................5..2.43...7.......1..6...2.6.....8......7....4.....
+....83.6..2.......4..........673....2.....4........1...5.4.1..........38......2..
+....83.6..54...................7.2...1.4.....8......3....6..4.1..2...5..3........
+....83.6..54...................7.2...1.4.....8......3....6..4.1..9...5..3........
+....83.6.2.....7....4..........5..8173...................2.74...815..............
+....83.7...65......2..........6..2..39................7.....43...41........29....
+....83.9..54...................7.2...1.5.....8......3....6..5.1..6...4..3........
+....831....4.....9............92....36.......1.............531..794...........6..
+....832..5.1...............6..1....3...9...5..8....4........71..3..6...........9.
+....835..2......4.1........47.1......3....8.....26.......6...1..8...5............
+....836...52.................6...3.....5...2.7...1.........6..48.....7...1.2.....
+....837...5.....4.1...........6...253...2.......4......2.5.....8.....3..........1
+....84..........652...........52.....8....4...3.6.....5.61..........39..7........
+....84........9.6.........2....3.57.2.61.......9......15....4...8..........6.....
+....84.....1......5........6..53.........2.7........48.42...3.....3..1...7.......
+....84....1....6.........5..5.6..3.....1.............8...26.1..8.4....7.3........
+....84....2....6.........5..5.6..3.....1.............8...26.1..8.4....7.3........
+....84....2....6.........5..7.6..3.....1.............8...26.1..8.4....7.3........
+....84....6....7......2.4...3.4............8........5....7..3.18.52.....9........
+....84....7....1.......3...29......3...1............4....5..78.6.3.2....4........
+....84....9....5...1.......4...3..6.8.2.........7..9..6......8....5.1......9.....
+....84...7.....6...........53.6.....2......8.....1...4.81.........7..3.....5...2.
+....84..61.5...3..2........7..5............84...1.........7.13..8...6............
+....84..7.2.....5.............2...9.8.4......3........6..5..3......1.8...3.7.....
+....84.2...1.............3....5.16..3..7.....24.......82..3.......6..1...........
+....84.5..1....6...........4......83....2.......1........6.72..5..2.....8.9......
+....841..63..........91.......2...578...............3.4.....8...7.3.........9....
+....842...31..................5...3.8.......7....2.....5.3.7...6.....85....4.....
+....842...31..................6...3.8.......7....2.....5.3.7...6.....85....4.....
+....842..17......6.3..........7....1..2.4....6..........5...42....1............8.
+....842..5.1...............3..1.9....4....8...........68.72.......5...19.........
+....842..51................3.....4...7.5........1........36...54.8....3...2......
+....845...1.....7.............73.2..6.....4.8.........4..3.....2.8.........1...3.
+....845...29................6.9.7.........1.8.......2.4.....37....21....1........
+....845..2......9...1......7..2...6.9..............4...4....8.3.5.9........7.....
+....847..56...........7.....3.2...61..8..............51..6...........84...9......
+....85....7........6..........43....1.....5.....8..2..5.2..6......3...7.8......4.
+....85...9.....3......4.....81....4....2...7.........82..9..6........5.3.4.......
+....85.1.9...7.....2.........8.....7.1.4........2..9..3.....4..2..9.........1....
+....85.3..16...4...........7......85.4.6.............99.....2..5.8.........1.....
+....85.6.19.......7.....2...86..9......1..7..............72.....5.....8.3........
+....85.9.13...................34.7....8....5.2.........4....3.1...2..6....9......
+....851...67...3......4.....2.7..6.....1.....8........5......8431................
+....852...41.3................6.7.4.8.......7...2......7.4.....5.....8.........1.
+....853..1......4.....7.......4...6..5.2......3......72.....1..6.....2..........5
+....854..2.6................4....8.36..9........2........73..4..85......1........
+....856..1..............3...6....2.8...9.1...7..3............95.2..4...........1.
+....86...4......1.....3.....635...........24....1.....2..7..5...8....6..........3
+....86..3....5....1........64.1.....2.....8.....7..5..3.5.........2...6........4.
+....86..3.21....................148.8.....5.....2.....74..5.......7...1.3........
+....864..2.......7.........1..9........2...6.......8...86....3..4....7.....15....
+....865..9......1..........36....4.8.4.5.........2......27.....7..1...........8..
+....87....3......15......4.8.....6.....3....5...1.......2...87..1.9...........5..
+....87....4.....6..3.....5.......8.1..52.....9.....7....64...3.7..............9..
+....87...4.....6.......95..6..3.............1.......8...824.......6..3...1.....7.
+....87.4.9.......6.........1.2..........4.8..6..9......4....78....1..5.....6.....
+....872..5.......3........4.4.3..6.....1............7.....46.8.1.3......2........
+....872..5.......3........4.4.3..6.....1............8.....46.7.1.3......2........
+....872..51......6.3..........5....3..7.4....1..........4...78....1............4.
+....873...54................23.6.......4...1.7.......81..5........2...4.......7..
+....874..3......5.....1....5.....1.42..6...........7.....5...63.8........7.......
+....874..6...3....5........1..6..2.....5..8..............1....6.8.....3..4...6...
+....876..3......1..........47....5.8.5.6.........2......29.....1..3...........8..
+....876..9......1..........47....5.8.5.6.........2......29.....1..3...........8..
+....89...1.....6......3.......64.1...39....7..........6..2..5.........34...7.....
+....89..113.....5..........3..5...4.2..............8....9...2...6.4......8.3.....
+....89.2.1.....7............295........4..6.3.8.......7..1.........4..9.......4..
+....9...13.2......4........58..6.......3..27.......4...1.....9....4.8......2.....
+....9...14..5...............3....24....71.......6........2.3.5.1.9...8..6........
+....9...15.2...............61..4......3...5........27....3.5.8.46..........2.....
+....9...16.2...............51..4......6...3........27....3.6.8.45..........2.....
+....9...8......7..2........6.....52.....74..........6....5..21..873......4.......
+....9..1.2.....3..5....1....94.6..........5...1..............987..3......8.2.....
+....9..1.42................7.58...........4.2......6..64...2......13..5...9......
+....9..1.8.....4...9.5.........31..9.4.....5..2.......1..4.....3.......6......2..
+....9..2.....36...1.........5....7.3.....26..8..1......36...4.....8...1..........
+....9..2.....43...1.........6....7.3.....24..8..1......34...5.....8...1..........
+....9..2..38.......7.......5.....46....8.3......7........4..1.32...5..........9..
+....9..2..48................1....8.47.2.3..........5..3..2...9....5.4...6........
+....9..2.14.......6......8..3.6..4....2....7....1.....5.....6..4.....1......8....
+....9..2.41................5.2.8.......5..1..........63..1.2......6..4..7......8.
+....9..241.6..................6.85...2..........1......4..2...58.....6.....7...3.
+....9..241.6..................7.61...2..........3......4..2...59.....6.....8...3.
+....9..241.7..................1.68...2..........7......4..2...56.....1.....5...3.
+....9..271....................6..43..271......9...........82...4.....6.....5..1..
+....9..3..15..........2.7.....8....14........2.........6.1.5.........27....6..4..
+....9..3.51........7....4..8...2.......5..7........1.....4.7.6.9......8....1.....
+....9..3164.................5....2.8...13.......6..........245.7.....6....1......
+....9..31724................6....48.9...1.........3......4.82..1...........7.....
+....9..38.14...............8...3.....5....4.....7...6...64.72.....1.....3........
+....9..38.21................6.2.1...7..6...........9..8..5...6.3...4..........2..
+....9..4....7..2...1.......8.29........8....1.......3.....35...2.....8..7...1....
+....9..4.5.....3......1.......5..62..8.3......1.......2..7.4..........91......8..
+....9..4.8.....3...9.5.........41..9.3.....5..2.......4..3.....1.......6......2..
+....9..4175.................8....3.2...14.......7..........256.6.....7....1......
+....9..43...5...6..............175..94..8....6.........1....8..4..6........2.....
+....9..435.1..................5.12..63.....7......8....4.73....8.....5...........
+....9..438.1..................1.82..53.....6......7....4.63....7.....8...........
+....9..45..3..1....2.......9.....6..4...5...........2....2..3...6.4.....8.......1
+....9..46.71...............2......9....7..6.....1.5....5....1..6...3....4..8.....
+....9..5..17............2.....1.4...3......9....7.....53..6......4...1........7.8
+....9..5.1.3......8.........6.74..........8.1.9.......6..3.8....2.....4.......5..
+....9..5.7.....6......1....5..6...4..2......96........4.9.....1...8..3.....2.....
+....9..5.8.4..............1...8..4...1.....9....6......7..51...3.....8.6......2..
+....9..6..2.7......1.......6..1..83.9..5........2...........5.14...6..........2..
+....9..6..2.7......1.......6..2..83.9..5........1...........5.24...6..........1..
+....9..62.3.4.......1.......5.3..7..6...........1.....8...62.......8.34..........
+....9..62.5.4.......1.......4.3..5..2...........1.....8...26.......8.43..........
+....9..6241..............3.7.....85....2........6.......63.....1.....7......8.4..
+....9..8......3.7.6..........36..1.....2......7........4..79...1.....6.2......5..
+....9..83.14...............8...3.....5....4.....7...2...64.52.....1.....3........
+....9..871..5..............5..4.1....7.....39...2........6..4...39............1..
+....9..871..5..............5..4.1....7.....93...2........6..4...39............1..
+....9.1...8....2...3.......5......34....72..........8.7.1....5....3..6.....4.....
+....9.1..2..7...............6.3.2.7..19...8...........8...14...3..5...2..........
+....9.1..4.......7..........91...2.....4.3.5....7........2..6..3......4..2..8....
+....9.12.8..7...............9.8....6.1....4.....6.....7...1.........2.3.6.......8
+....9.2...4.7.....6.......51...56.........48.......7..5......3..9.4........3.....
+....9.2...4.7.....6.......51...56.........78.......4..5......3..9.4........1.....
+....9.2...4.7.....6.......51...56.........78.......4..5......3..9.4........3.....
+....9.2...51.......8.......2......7....5.1......6..4..3..17..........6.5.......8.
+....9.2.3.51...............3.....8.....5.1....4.7........6..45.2...3......9......
+....9.2.573.........1.........1.8.3.5...........7......8.....1......24..9...5....
+....9.28.4.1...............5..6.4..1.8..3.7............2....9.....1.5......4.....
+....9.3....4.......2..........46.2....81.....7.....9..5..6...1..3.....4.9........
+....9.3...2......1....7.....516...........47.......9.....2.5.8.7..1.....4........
+....9.3...5......2....8.....217...........48.......9.....2.6.5.8..5.....4........
+....9.3...8........2.......3...5.4.....6...2.1........5.4...1.....2.8..6...7.....
+....9.3..5.6..................2...65.3..7......9......7..5.1...4..6......8....7..
+....9.3..51........8.....7.6...2....3......8....1...4....7..6........2.9...8.....
+....9.3.25......4.1...........4.5....9.....2..3.1........6..1.....5..9..........7
+....9.3.62.1............4.....2.1.8.56............7....3.46....7......2..........
+....9.36.2.1.............5.7..8..4.2.3..5................2.4....6.1.....9........
+....9.4....1..............8...6...3..7..8....4......1.95....7.....1.62.....3.....
+....9.4....1..............87..6...1..8..5...........3.54....6.....1.92.....3.....
+....9.4....1..............87..6...1..8..5...........3.54....7.....1.92.....3.....
+....9.4....2....1..6.......58....1.....6.2.......7.......8...6.4..1.....3...4....
+....9.4....6...5..3.........1....97....3.2......8......9..6....8.......27......3.
+....9.4...7.....1..8....6.....7.8..54..1.....6.....2..2...6............3.......7.
+....9.4..3.8.............2....5.8.6.7......1....3........4..5.8....7.3...1.......
+....9.45..81...............4...5.3..6.......1...3........1.32..5......7....8.....
+....9.45.1.7...............6..3..2...4....8.....1..........8.17.9..2...........3.
+....9.5...7..3......8....1.3...5..2....6...8..........94....3.....8..7.....1.....
+....9.5...82......7...........6..48.1...3...........2.3.......15..2........7.8...
+....9.5.3.4....8..2........4..2.7.....5.......3.......7.....12....4...6.....3....
+....9.5.417....................6.31.7.4.......2.......6..7.2.....5...8.....1.....
+....9.6....1..............7...7...3..8..2....4......1.95....4.....1.42.....3.....
+....9.6....1..............7...7...3..8..6....4......1.95....4.....1.42.....3.....
+....9.6....1..............87..5...1..8..4...........3.64....5.....1.92.....3.....
+....9.6....1..............87..5...1..8..4...........3.64....7.....1.92.....3.....
+....9.6..12........7....3..5..4.2......1...........9....638....4......2........1.
+....9.6.325..................6.3.....8.....2.......1..4..2.8.7...3...4.....5.....
+....9.68.3...4.........27..4..1........7..3..9..........76......2......4.......1.
+....9.7...4..............1.1.7...2.....4.3......6.....73......4...5..6..8...1....
+....9.7...4...8....1..........4...187...3...........4....5..2..9....1...3..6.....
+....9.7...5...1....4......2.6....84.1...7................4..35.7..2.....9........
+....9.7...6..4......1.........1.84..9.....5.....3.....59.......2......3....8...1.
+....9.7..4......2.1.........68...3....74..........5....2.67...........45........8
+....9.7..5......2.1.........68...3....75..........4....2.67...........45........8
+....9.7..8......5............25.1....6....3.....8........2...8173..6....4........
+....9.7.526................3..2.......9...4.....6.8.......3.82.6.5.......1.......
+....9.73.5.......64.8.......7...1..........54..........1....2..8..5........46....
+....9.74.1.35.....8........2.....69..5...1......3......4..6.8..........1.........
+....9.74.1.35.....8........2.....96..5...1......3......4..6.8..........1.........
+....9.75.3......4...6........83..2.6.5..4................6.21..59................
+....9.75.3......4...6........83..2.6.5..4................6.81..59................
+....9.75.8.1................5....4.....8.1......6.....47..2.......1....63......8.
+....9.8....7...2...1..........3.1...9......4....5..6.........734...2.......7...1.
+....9.8....7...2...1..........3.1...9......4....5..6.........735...2.......7...1.
+....9.8...71........4.........7.1...5.....2.....3........1..43.6.......7.2..5....
+....9.8..4...2....5.1.......6.1..7.....5.4......3.....682.............54.........
+....9.8..4...5..........3.....2.4.6...8...7...1.......2......51...8...4....3.....
+....9.8..7.4......1.........5.48...........1..9.......2..6..5.....1.7.........3.8
+....9.82153.8..............4..7..6......1....7.........12.........4.5..........3.
+....9.82164.8..............5..7..3......1....3.........12.........5.6..........4.
+....9.86..2.......4........1......573....8......4........2..3....6.5.....8......4
+....91.........62.............24..7.3.......81.9......62.7......5....4..........9
+....91.........63..........1.9.....4...67.2.....8......7.3.....46..............15
+....91.........67.3.......25..63...........142...........2..3...1.8......4.......
+....91.........8.6............7...5.83........6.8.......4.5.31.2..6.......7......
+....91.........8.6............7...9.83........6.8.......4.1.35.2..6.......7......
+....91.....3....6.5......2..9....1.....3..4.....62....6..8.....74.............9..
+....91....2......5.......4.1.8....3.3..5........72.....4....7.2......1..6........
+....91....2......6.......4.5.8....3.1..6........72.....4....7.2......1..3........
+....91....2......6.......5.1.8....3.4..6........72.....5....7.2......1..3........
+....91....2.....3.......6.....8...2.5..3.....1.........6.47..........9.1....6.5..
+....91....2.....8.......6.....8...2.5..3.....1.........6.47..........9.1....6.5..
+....91....2....5...7.......1.3....9....2.....9...........5..2.84...6.......8..7..
+....91....2....6...8.......1.4....9....3.....9...........6..8.25...7.......2..3..
+....91....24................8.43....1.....96.......2..5..7...8.3..2.......9......
+....91....3.....2...........5.28....4.....6........1.9...7..53.6..3.....1........
+....91....3.....5.2.........7.48..........9.1......6..6.42........3...4.1........
+....91....3.....7..........75.6........2..4........1..1.9...5.....83..2.4........
+....91....3.....8..........28.6........2..4........1..1.9...5.....73..2.4........
+....91....3....5............2.56........7...1.5.....4.9..8..6..4..3.....1........
+....91....3....5...........4......92.5.76.......3.....2.1....8....5..7..9........
+....91....3....8...........1.9.6.......3..2...........47.5...1....8...46........9
+....91....3....8...........9.1.....6...84.7..2.........8.7...5....3...4.........9
+....91....5......7.........6.....91..8.42..........3.....7...852..8.....9........
+....91....5.....4...........4.6........5..1..7.......21.8...2.....43..6.2........
+....91....5.....4...........6.57.2..1.....9..............4...538..3.....2.9......
+....91....6.....3..........1.9...7.....85..2.4...........2..4.6.5.3...........1..
+....91....6.....3..........1.9...7.....85..2.4...........2..4.6.8.3...........1..
+....91....6....5..7...............81.2.6.............91.9....3.4...5.6.....2.....
+....91....7.....8..4.......56....1.....74...3...8........3...4.1.....5..2........
+....91....7.....8..4.......56....1.....74...3...8........3...7.1.....5..2........
+....91....8.....7.........3...52.6........1..7..........6...24.5..7.3......8.....
+....91....8....5............3.5...7.1...6...4.......2.9.....8..2..7........8..3..
+....91...2.....8..7.........3.6..4.....2...5........9....43.6..1.9......5........
+....91...3......7...........4.7...5..9....6.....2.........6.4.97..3.....2.....8..
+....91...4......2........8...58...4..6.2......1....6......3.1.72..............9..
+....91...4......3..........3.27.....5..3....8......9...9.84....6.....1.........2.
+....91...4......8.........2.39...1.....8..3.....4...6.2..5....7......9......6....
+....91...4.....2............13.....7...2..4...........24.5...6.....6..318........
+....91...4.....2...7..........85.9..7.1.......3.......6..2............31..9....5.
+....91...4.....3...........5.1...7.....68.4...2........7.....2....9...1.6..3.....
+....91...5......3..........3.27.....4..5....8......9...9.84....6.....1.........2.
+....91...5.....3..............8...147..9............2....64.5..3.1...7...2.......
+....91...5.....7..2........3..7..6.........1....4.......85..2...9.....8..1..6....
+....91...6......3..........3.27.....4..3....8......9...9.84....5.....1.........2.
+....91...6......3..........7.9...12.....4.......8.....23.6........5..9..8.......4
+....91...6.....2.........3.35.2...4.........92...........62.....8....7....9.....1
+....91...6.....2.........6..39.........7..4...1.......5..48....7.......3.6.....1.
+....91...7......3..........3.27.....4..5....8......9...9.84....6.....1.........2.
+....91...7.....2.........7..39.........5..4...1.......5..48....2.......3.6.....1.
+....91...7.....3..............3...148..9............2....74.6..5.1...8...2.......
+....91...7.3......4...........7...43.2......6.......7..1..6.8..5.....2.....3.....
+....91...8......5..........6.9...12.....3.......7.....52.8........4..9..7.......3
+....91...8......7..2..........56..2.1.3...4.....7......5.2...........9.3......1..
+....91...8......7..6..........56..2.1.3...4.....7......5.2...........9.3......1..
+....91...8.....3..............5...147..8............2....64.5..3.1...7...2.......
+....91...9.....3..............6...148..9............2....74.6..5.1...8...2.......
+....91.2.45.................6.4........8..5.........1....63.8..9.1...7..2........
+....91.3.72.................5.8........2..7.........1....54.8..9.1...6..3........
+....91.8.72....5..3........6..2..4......6..1...........1....2.....7....3.8.......
+....913..27......8..........51.3.......8...2..9.......4..2...6.......9..3........
+....92....5....3..6.....4..9..3............91.......2....5..67..2..8......1......
+....92....5....6......3.......7..4.83..4.......9.......46...1..2......9....8.....
+....92....7....8..6.....4..5..3............91.......2....4..56..2..6......1......
+....92...3.....6........1.....6..3.8.4.5......2...........7..421.5.............9.
+....92...5......1.........716.8.....7.3..........5.2...4.1.......2...9...3.......
+....92..37.8...9..1..........3..5.......4.7...2........5.....2.9..7........8.....
+....92..67....8.5.1...4....5..7...3..9.................2....9.8...1...........2..
+....92.3..81................6.4..8..5...3.............3..1...5....6.87..2........
+....92.6...4....8..1.......9.....72.....5.......4.....3....71........4.5...6.....
+....92.6.71....3..8........35......1..2.4.......7...........94....1.7............
+....921..43......68........65.3...........21...........72....9....46.............
+....924..7.1................5....2.....81.......7.....54.3...........6.93......2.
+....925...81...............9...5.2.....4...8.3........6..8.7....4....9.....1.....
+....925..3.1...............6..1.5..3...8...4..9........2....9..7..3.........6....
+....927..6.1...............5..4...6.....3.8...2.......4..6.5....9....2.....1.....
+....928..5.1................2..8.6.....5....4.........4..1...5.7.....2...8.3.....
+....93...2.....9..6...........4...6..3......1...2......71..5.......4.62.......8..
+....932..41................5.....3...8.7........1........46...53.9....1...2......
+....937...21..................1...243...5.....6.......7....6.8.5.....3.....2.....
+....94....2....1.........5..1.8..3.....1.............9...25.6..9.4....7.3........
+....94....7....1.......3...29......3...1............4....5..78.6.3.2....4........
+....94.3.51................6.3..8......7..9........1.....5...2....6....84...1....
+....94.5..23..................26....5......7..7.1.....4.8..5.........6.2......1..
+....94.5.13........2..........3.6...7......9....4........1..4.68...5..........3..
+....941..2...5....3.....6.....3....2.4.....5..1.......6..7........2...8.......4..
+....942...31..................7...3.9.......8....2.....5.3.8...6.....95....4.....
+....942...31..................7...3.9.......8....2.....5.3.8...6.....97....4.....
+....945..7.1...............3..71.....5....4...........24...6......3...18...8.....
+....947..12...................1.7.8..4.2.......9............4.15...3....8..6.....
+....95.......6.4.........2....7...1.5..2.....69.........18.....3.....2........6.5
+....95....8....1.......4...32......4...1............5....6..89.7.4.2....5........
+....95....8....1.......4...39......4...1............5....6..82.7.4.2....5........
+....95.4.2............3....4.81............936..2........6..8..7.....1...9.......
+....95.4.2............3....6.81............937..2........6..8..1.....7...9.......
+....951...7.....2...........237...........9.....3.....9.....56.1...4.......8...3.
+....951...8.....2...........237...........9.....2.....9.....56.1...4.......8...3.
+....951...8.....7...........237...........9.....3.....9.....56.1...4.......8...3.
+....957..6.......2.........4..2.8.........95........1.1..64.....3.7.......5......
+....96.......5.4.........2....7...1.6..2.....59.........18.....3.....2........6.5
+....97..451...........3......7....3....1....8.9.......8..2...........49.6.....7..
+....976..3......1..........47....5.9.5.6.........2......28.....8..3...........9..
+....98....3....4...51.........3.5...9.....8.....6.....2..17..........65.........3
+....981...345.................4...359...86..........2..5.2.....1.....8...........
+....982..3..1..............5......14.6..82..........3.1..4.......2...7...9.......
+...1............3..8...........875..6......7...3.2.....5....2.81..3..4.....6.....
+...1....2.7..6....4......8..5....6.....2.8......4.......9.3.5........74.2........
+...1....25..7......6.....4....51.7...4.............1......43.6.8...6....7........
+...1....28..3............7.4.8.7........9..1.5.....3......4.8.....6..5...1.......
+...1....3..7....8.2...3.......2..7..6..4......3........1..78...4.5...2...........
+...1....3.6.....8..............68.9.7..3.....1...........4..1.7.8..2....5.....3..
+...1....3.8.....6..............68.9.7..3.....1...........4..1.7.6..2....5.....3..
+...1....34......2.....8.....32..6.........85.1........65....4.....27.......3.....
+...1....34......6.7......5....32....6.....7.....8......3.5..8.......74...1.......
+...1....4.5....2...3.......1......6.....5.3..4..9............31.7..2....6..8.....
+...1....48.....7...3.8..........6.8..9..3..........1..6.....53...82.............9
+...1....5...2.4...3.....6...1.....4..5....8.....3............128...6....9...5....
+...1....5.36.............4....6.32..5.......1....4....8..9..6..1.....7.........3.
+...1....5.8.....3.4..7......5..4........6.4....1......6.....24......87.....5.....
+...1....524.......7........32..7.......5...86...........16...........21.....4.7..
+...1....57.....2..3...4.....6.....5.4...2........3.....1.5.8.........73....6.....
+...1....58.....2..3...6.....7.....5.4...8........3.....1.5.9.........34....7.....
+...1....6.24.......3...........83.........71.8........1..76.......5..24.......3..
+...1....64.....2..3...5.....7.....6.5...8........3.....1.6.9.........34....7.....
+...1....7..3...2...4...........32.4.79.......5...........9...3.1..7.........8.5..
+...1....7..3...2...4...........32.4.79.......5...........9...3.6..7.........8.5..
+...1....7.1..5...........2.34....5.....7...6....2.........481....6...3..2........
+...1....8..2.......5...........752..86..2....1....3...6..9...4..3....5...........
+...1....8.1..5...........2.34....5.....8...6....2.........741....6...3..2........
+...1....8.4....3...9.......6..2.........4.8....1......35..9...........167......2.
+...1....83......5.....2........6.74..21...............67......2...4..1..4..5.....
+...1....83......5.....2........7.64..21...............67......2...4..1..4..5.....
+...1....9.47..........8....9..6...........73....2...4.2.....8.....37........54...
+...1....9.7....2...........49..5...........81...4.........735..1.8....6.9........
+...1....9.8....2...........59..6...........14...5.........836..1.4....7.9........
+...1....99......3....2.....3...8...5..76..1..4............3..4..6....2...1.......
+...1...2....47....6.....8....1...3.4.2...8.......3.......6....18......5.3........
+...1...2....7.8...4.......5.2.56.....1....3......4....5...3..........18.......7..
+...1...2....8.5...4.......6.2.67.....5....9......4....6...3..........58.......1..
+...1...2...4...8...6...........6.4...5.7.....1......9.7..28..........6.13........
+...1...2..3....8..9........7.15........9..6.2......3......38...2......5.....6....
+...1...2..48.......9.......3..67....2.....4........9.56......3.....29........8...
+...1...2.4.......57.........1.3.9...6.......7......4..2...5........7.1...8.....3.
+...1...2.64.......7........4.....65....23........1.4...51...........78.....6.....
+...1...2.83.......6........3.....64....52........1.3...41...........87.....6.....
+...1...2.84.......6........4.....65....23........1.4...51...........87.....6.....
+...1...23.4..7...........5.3...9.6....5.............8.67....4.....5.2.........1..
+...1...26.3.7....5.7.....4.5...46.........1......2.......3..8..4........6........
+...1...26.5.....8...........7....5.4...2..7.....6.........7.3..6.2......1...4....
+...1...26.5..6.......7...4.....8.3..4.6......1.........9...28.....4...........5..
+...1...274..5.....6.......1.2....38..1.............6......3.8..5....4.......2....
+...1...294.8.7.............5...3.8...2.......6.........6.2.....3.....4.....9.1...
+...1...3.....8..2..57..........4.7........5.91........3..6...1......74.....3.....
+...1...3....7.3....4......8...6..7...8..2..........1..6.1...5......4..2.7........
+...1...3...9.7..........68....3.1..74.....5..2...........52.4...1........7.......
+...1...3..1.6............5..7....2......5........4....3.....1.74.5..8......2..6..
+...1...3..24...............1..64.....5......17..3.........8254.3..............2..
+...1...3..4....8..2........7.19...........2.4...3..6......48...1......7.....6....
+...1...3..6......27...5.....31....8.....479...........4.....7..2..3..........6...
+...1...3..6.....5.....2........9.4..5........1.........91...7.....5.62.....3....8
+...1...3.2...7............4....2.78...4..6....1.......7..3..5.....4....6......2..
+...1...3.7.4......2..............8.7.3.9...........2...7..4..6......51......27...
+...1...3.72...............83.......7...64..........2...61....5.....7.6.......84..
+...1...3.9..5.....2.4......4...6...9......5.7....2.1...1.6...........92..........
+...1...3.9..5.....2.7......4...7...9......5.8....2.1...1.6...........92..........
+...1...3.9..5.....2.8......4...6...9......5.7....2.1...1.6...........92..........
+...1...327.45.....8............874......2.6...1.......4.....7.....3...1..........
+...1...356...2.....8............83..7.....6..1..4.........7...1.3...6..........2.
+...1...37.4.52.............2..6..5..8.7.............1..1....6....3..7.......4....
+...1...38.4.52.............2..6..7..9.8.............1..1....5....3..8.......4....
+...1...38.4.56.............2..6..7..9.8.............1..1....5....3..8.......4....
+...1...382....5.............5....4..4...3.......7....6..1....5.....6.2...6...4...
+...1...3895..........4......2....56.......9.....8.........2.75.8....3.....1......
+...1...3975..........4......2....76.......5.....9.........2.85.9....3.....1......
+...1...4..2....8..3........7.15........9..6.7......2......28...4......5.....6....
+...1...4..2.7......38..........3..6.....82...1........6..4..2......5.9........3..
+...1...4..3..2.............1..4.6....5....3.7...8.........532..7......6.4........
+...1...4..3..2.............1..4.6....5....3.8...7.........532..4......6.8........
+...1...4.2.......7...5.8...6...3.2........15...........154.........2...6......3..
+...1...4.2.....6.....4.3....5..8.2....1............8.....5...1386..7.............
+...1...4.3.....5.....8.4.......7..1.6...5............8..72..6........3.5.1.......
+...1...4.3.....6.....8.4.......6..1.2...5............8..72..5........3.2.1.......
+...1...4.3.5..........2....21.6...........5.8...7....3.4....76.....83............
+...1...4.6............3....3.6.....5.....1.2.8..4.........5.8.6.1.7...........3..
+...1...435.8..6............2..47.....3....6......5...8.4.....2...6...5...........
+...1...45.5..6.......7...2.....8.3..4.2......7.........9...28.....4...........6..
+...1...45.5..6.......7...2.....9.3..4.2......7.........9...28.....4...........6..
+...1...46.523..................753..8...2....6........1..6......7....2.......4...
+...1...472..3......8...........2.3...4..8......6....1.3.....2....74.........5....
+...1...5........284....3.......4.3..12........5....1..3.....7.....28.......6.....
+...1...5...4..2...7.......3....7.96.......2.....3.....3...5...8.....64...1.......
+...1...5..4..7....3.......2....489..6........5........2..5........3...6..8....4..
+...1...5..7....3...........2...4.7..1.46...........8...8...7......2....15......6.
+...1...5.2.......8............4..13.6...7.....8...........26..5.1...8.....4...3..
+...1...5.2.......8...6.4...7...3.2........14...........164.........2...7......3..
+...1...5.2..7......6....3..3.....2.7...5...........4......32.8..5..6......1......
+...1...5.28.................3....2.7....1.3.....5.4.......6.83.5..7.....1........
+...1...5.7......4.....3....61....2.....7.5......4.....2...6.3....4...1..........8
+...1...5.8......4.....3....61....2.....7.5......4.....2...6.3....4...1..........8
+...1...5.8......4.....3....61....2.....7.5......4.....2...6.3....4...1..........9
+...1...543...2...........8....6..9..54........81......6.....3......74........8...
+...1...543...2...........9....6..1..54........98......6.....3......74........9...
+...1...56.8..3.............6.1..........4.8..52.......2..5.6....7.....9.......3..
+...1...563...2...........4....7..1..56........48......7.....3......34........6...
+...1...563...2...........4....7..8..56........41......7.....3......34........6...
+...1...6..4..8.....2.......6..75........2.4..3..............8.1...3..2..5..6.....
+...1...6..5......8.............3.2.51..7..........8...6.....17..3..95.........4..
+...1...6..53.......2.......8..6...7....43..........2......574......2.5..1........
+...1...6..8........4..........7.83..2......5.6...........62.8........9.41..5.....
+...1...6..8..5.....2.......6..74........8.2..3..............8.1...3..5..4..6.....
+...1...6..9..8.....2.......6..74........9.2..3..............9.8...3..5..4..6.....
+...1...6..9..8.....2.......6..74........9.2..3..............9.8...3..5..7..6.....
+...1...6.2............9.....913............72.3......86...57........24........1..
+...1...6.3.....2..5.........17...........38............6.71..4.2.....3.....6..5..
+...1...6.4...5....3.........627...1..1....8......4.......2.6.........5.4......3..
+...1...6.7...5...........4214.6..........78...2..........28....3.....7.....4.....
+...1...637....5............47....5..2...3.......6...1..1....7....98...........2..
+...1...64.7.2....5.......3....7..8..4.3......6........1....4...5...3..........1..
+...1...65738................4....3......6.......5.........247..1.7..3...5........
+...1...69.7......58......4..5....7..9..6..........1.......572..6............2....
+...1...69.7......58......4..5....7..9..6..........1.......573..6............2....
+...1...692.8.3....5...........6.4.7.3............2.....1.7...........2.5......3..
+...1...7....5..6..3........6.....3.8...21..........4...95....2..2..3.........8...
+...1...7..4..9.....2.......7..85........2.4..3..............2.1...3..6..5..7.....
+...1...7..5....2...............85..67......9...3.2....1..4.....46.............5.2
+...1...7..6..4.....2.......7..85........6.4..3..............5.1...3..6..8..7.....
+...1...7.5......4.....3....61....2.....4.5......7.....2...6.3....4...1..........8
+...1...7.5......4.....3....61....2.....7.5......4.....2...8.3....4...1..........9
+...1...7.6.....5..3.........18...........32............7.81..4.2.....3.....7..6..
+...1...7.9......4....2......2.5..1..7...3....4.....6...1....5..8....6.......4....
+...1...74...2...8.7...6....6..3..5.......4................7.6...1....3...4...8...
+...1...74.62................3.4.....5..7...........2......6.53.4....8.....1...6..
+...1...74.62................3.7.....7..4...........2......6.53.4....8.....1...6..
+...1...74.62................5.7.....8..4...........2......6.53.4....9.....1...6..
+...1...8.....74.......6....3..6.2.........5.7......4...42.........3...9.57.......
+...1...8..56.......3.......1..78....2.....5........4.67......4.....36........4...
+...1...8.5......4.....3....71....2.....8.5......4.....6...7.3....4...1..........9
+...1...8.9.....3.....4.6....56..........1.....4.......1.....7.52..63...........4.
+...1...837....5............47....5..2...3.......6...1..1....7....89...........2..
+...1...854........2.........8..5..3.7...4.6.....2......1.8...........2.7......4..
+...1...862....3...............67..1.42....3..5........3.....5....17...........2..
+...1...862....5...............67..1.52....4..3........4.....2....17...........3..
+...1...9..2.....5..6..4.......8..4.29..3...........6......627..1.............9...
+...1...9..6.....5..2..4.......8..4.29..3...........6......627..1.............9...
+...1...9.4...3....6.....7...91....5......4.......2.........64.3.5.8...........2..
+...1...9.5......3....7......1..5.8.....3..........2...2.3.4....6.....7........1.9
+...1..2......4..3....6........2.86...54............1......3..478......5.6........
+...1..2....7.8....5...........2...4...6.....7.1.......42....1.....67.3.......5...
+...1..2...4....6.......3........8.3.2...7....6........5..6..1.....24.....8.....4.
+...1..2...4....6.......3........8.3.6...7....2........5..6..1.....24.....8.....4.
+...1..2...4....6.......3........9.3.6...8....2........5..6..7.....24.....9.....4.
+...1..2...5....3..4....6....2..5...........14.....8...6.14.........2.5.....7.....
+...1..2...5..7..........3..1.26.7...3.....8......4..5..7.....4.8..2..............
+...1..2...6.....5.7........2.....1......35.......6...88..9............35......46.
+...1..2...7..4.................6..542.7......3......7....3.28...64......1........
+...1..2..3...7...........8.4......37.7.2...........5...21...6......43......5.....
+...1..2..3.6......7...............764..5........29.........7.39.5....4...1.......
+...1..2..3.7......8........41....6....5.37.............8.4............35.......79
+...1..2..35..........4.........87.3........75..1.........2..1.493.............6..
+...1..2..4......7..3.......2.1...6......39......4......9.....53....8.4.....2.....
+...1..2..5.9......6.........1.3.2..........65......4..34....1......5..98.........
+...1..2..53..........4.........65.3........85..1.........2..1.439.............7..
+...1..2..9.......8............3..17.6......3...8..........85..4.17.......2..4....
+...1..2.578.4...........6...52.6.......3...9..........3......1.....2.8..4........
+...1..2.578.4...........6...52.6.......3...9..........9......1.....2.8..4........
+...1..2.63.4..7............8.7.4....96....8........1...1.8............4........3.
+...1..2.863..5....7........5...2..6...84............3....8..4.......1...3........
+...1..23..46.5...........8.3.....7......4...6.5..........7.3...8.4.........6.....
+...1..25.6..4................2...51.....6........3.......5.28..36......79........
+...1..26..83.........8.....2.......1..5..4.......3....6..2......4.....3.....7.5..
+...1..3....8.7..........2......89.5.37.......1.........4.....98...3.2......6.....
+...1..3....9.7..........2......89.5.37.......1.........4.....89...3.2......6.....
+...1..3...48.......2.......6..3..1.....72...........8.....48.5......5..41........
+...1..3...5......8..........4..58.........21.....9....6......752.14.....3........
+...1..3...6....4......57....3.6.........2..8........5.2......7....4..6..5.8......
+...1..3...8......5..........4..58.........21.....9....6......782.14.....3........
+...1..3..2...6.....4.....7.6....4......7...3.......8......5.6.2.7...2.....1......
+...1..3..3.4......8....6...5...4..7........61........2.6.2.........3.8...1.......
+...1..3..3.4......8....6...5...9..7........61........2.6.2.........3.8...1.......
+...1..3..4....5...8.7.........6..5.32...7..........1.....24..8..1..............7.
+...1..3..4...5................3.8.2.7......9....6.....5.2.4........7...1.3....6..
+...1..3..4...5.....2.....8..4..28.........7.1............6...4.5.2......1..7.....
+...1..3..5..4.....27.......9...7..........4.5......16..81....7....52.............
+...1..3..52........4.......6....4.52....3...6...7...4...1...8......42............
+...1..3..6......8.4.............61.7..3...2..5...4.....7.2.........5..4..1.......
+...1..3..6......9.4.............71.8..3...2..5...4.....8.2.........5..4..1.......
+...1..3..6.5......2.........1.4............68.......5..9....14....26.........87..
+...1..3..9.....2.....58....2.3.........4...8..1.....5..5..7..1......26...........
+...1..3.4.95...............8.3...1.....59........2.....7.....964..3............2.
+...1..34..82.................7...2.8...4.9.........7..45..6..3.1............2....
+...1..38.4....7...2........6...3.5.....5...2....8..........46...8..7.....1.......
+...1..38.5...7.............6......25..8.....7.3.4........3..1..2...5....7........
+...1..4........6.93...........6.8...5......2.7..9......8..3..5..9..4.....6.......
+...1..4.....5...9..76......4..2..5..1............9........73.6.8.....1......6....
+...1..4.....5...9..87......4..2..6..1............9........83.7.6.....1......7....
+...1..4.....5...9..87......6..2..5..1............9........83.7.4.....1......7....
+...1..4....25......5....8...6..37...7...6...........1.4.....6.3..12..............
+...1..4....3....6..72.......6..3..7.8..4............2.1..5..8......2..........1..
+...1..4....3...7...2........5.....2.1....4.......7...8...52..9.6.....1....4......
+...1..4....65......8.......1......7.....8..2.....7..6..2..6.......3..1..4.....5..
+...1..4...5....2..3....6....2..5...........13.....8...6.13.........4.5.....7.....
+...1..4...6....1......35....1.4.........2..7........3.2......5....8..6..3.7......
+...1..4...6....2..3...5.......4.2..67......3......1.....2...1...8..7.......3.....
+...1..4...8....2..3...5.......4.2..67......3......1.....2...1...6..7.......3.....
+...1..4..5......7...........1.6......8.....5......3.9....38.1..9.2.5..........6..
+...1..4..5....7............67.2..1..3...8.......4..2......5..36.1..............5.
+...1..4..7......8.5.............91.4..3...2..6...5.....9.2.........8..5..1.......
+...1..4..7.....2..3.........4..2.......5...3.........9...75..2..6....8....9..3...
+...1..4..7.....2..3.........4..2.......6...3.........9...75..2..6....8....9..3...
+...1..4.3.2.......9..........34.........8.6...7.....2.4.6...1......27.5..........
+...1..4.5.2...7...6........1..56.....4....32............8....1.....23...5........
+...1..45.3...8....6........2..7.5......4....2......3...1..3.....4.....1.....6....
+...1..46..3....7...58..........2..4.....83...1...............239..7...........8..
+...1..46..3....7...59..........2..4.....53...1...............238..7...........5..
+...1..46.3..5......2..........6..19.24.......8..........1...7......28.......3....
+...1..48.32....................7.5.2..84.....1........6...23....57............8..
+...1..5.....7.5...6......4...52......1......3.......683...8........4.7........1..
+...1..5...2......4............7..81..34......5............64.238...2....1........
+...1..5...4...8..........9....35..1.67......4...2.....5...4....3.....2......7....
+...1..5...7....3......46....3.5.........2..8........4.2......6....9..7..4.8......
+...1..5...8....7.......4...2.6.7........38...1........5..2......2.....8...1....4.
+...1..5..2...5....8.........1.4..........8..3.......2.3....2.6.....7.1...7....4..
+...1..5..2...5....8.........1.4..........8..9.......2.3....2.6.....7.1...7....4..
+...1..5..3.......2.2.....4.6...4.7........1.......2.......6..83.1.3.......5......
+...1..5..3.4......7.........9....2......74........6.........637.1.25.......8.....
+...1..5.2.7...46...........2.5.3..........79.1........48.....3.....2.......5.....
+...1..5.2.7...46...........2.5.3..........79.1........68.....3.....2.......5.....
+...1..5.2.8...46...........2.5.3..........89.1........74.....3.....2.......5.....
+...1..5.23....6...7...........52....8...4...........6..5.4..2.......7.3..1.......
+...1..5.23..5.....6.4.........2..1..4...7..........8......3..4......7.6..1.......
+...1..5.3..7...2............84....7....65.......3.....35..2.........8.4.1........
+...1..5.32.......6.7...........78.4.3.1................8..4..7.6..3...........2..
+...1..5.349.............8..92.....6....5..7...............94.2.....6..4...1......
+...1..5.92..3.....4.....7......3..2..5.6......1.......9...2........4..8.......1..
+...1..5.93.2.4.................85.2.79.............6...2....8.....3.9......7.....
+...1..52.9..4.................5.28..39......76..........5...21.....3........9....
+...1..54..7....6..8...3........7.3.8.94.................54...2.7...........2.....
+...1..57.4.....3..6.........18....9.....4.....3.......52..6..........8.1...2.....
+...1..58..3.....4.26..........634...7.1..........2....3.......2...5...........1..
+...1..58.43...................5..4.3...7..6..2.........51....2...3.6........4....
+...1..6.....5.3...4.....2..76..2....3......5........1....8..4...71.......2.......
+...1..6.....5.7...4.....2..76..2....3......5........1....8..4...31.......2.......
+...1..6.....6.7....3.......1..7............236......9..8..3.5........4.6....2....
+...1..6....5....4.3..........1...2......3..8..6.4........5..7.183..4.............
+...1..6...4.....8..........5..7.....1......4.....8..3....5.91...32.4..........7..
+...1..6...4..2.....3....7......3..496....5...1.............85..8..6............3.
+...1..6...7.....3...28......4..72...6.....1...............4..27...3..5..1........
+...1..6...8....4...9.......1.346....7.............8....2.....9.6..3............85
+...1..6..3.4......2.....3.....54.....1....7.....6.........3..45.7...8..........2.
+...1..6..3.4......2.....4.....53.....1....7.....6.........4..35.7...8..........2.
+...1..6..5.4........8......1.....3.4.2.7........8...6.....35....8....2......4....
+...1..6..58........9.......1.....5......98.......7....4.26........2...7.......39.
+...1..6..59........8.......1.....5......98.......7....4.26........2...7.......39.
+...1..6..8........5.........41...2......5.8.......3.....72....4....6..3..6.....5.
+...1..6..8......7.........5.1.94......3....8........2..5..3.1..2....8.........9..
+...1..6..98...................6.51..3.....7...9.........148........3...95......2.
+...1..6.4......2..8...........47..3...2...5......1....31.....7....2.6..........8.
+...1..6.4......2..9...........47..3...2...5......1....81.....7....2.6..........9.
+...1..6.47...5....8.....1..3......7......8.4....6.......2.3.....1...7....6.......
+...1..6.72..3.....4.....8......5..2..6.7......1.......3...2........4..9.......1..
+...1..6.8.74................1...3.......7..4.6.....5..2..65......3....7.......1..
+...1..6.85..8.....2...........64.8..3......2...........1....7......53...9...2....
+...1..6.92..3.....4.....8......5..2..6.7......1.......9...2........4..5.......1..
+...1..62..4..........3.....6.1....5........873.........8..45.......7.4........1..
+...1..63....7.....2........43..5........2.1..5.......7.81.............54...8.....
+...1..64.3..5......2..........6..18.94.......2..........1...7......29.......3....
+...1..65.3...8.....5....2......3..7..6...2.....1......7..5.....4.......3.....6...
+...1..67.5.23......4.......3..5...6..6......2.........1.....8......27.......4....
+...1..67.5.23......4.......6..5...3..8......2.........1.....7......28.......4....
+...1..67.5.23......4.......6..7...3..8......2.........1.....5......28.......4....
+...1..67.5.23......4.......6..7...5..8......2.........1.....5......28.......4....
+...1..68.5.23......4.......6..7...5..9......2.........1.....8......29.......4....
+...1..7.....2.5...3.....8...2......59...7...........1..156.........9..4.......3..
+...1..7.....35.....27............2.96..5.....3.....4......24...5......8........6.
+...1..7...2......4............7..81..34......5............64.238...2....1........
+...1..7...2....3...4..8.....5...3.2.6..7..................2..387..6.....1........
+...1..7...4....2..3....5....2..4...........13.....8...5.13.........2.4.....6.....
+...1..7...5.....4......7...7.18....9.......5.........23..95....8.....4......2....
+...1..7...5...6....83......6..7............83.......2.2...4.5......35.........1..
+...1..7..3.9.........8......1....5......63.........2...2.5....44......3.....1..6.
+...1..7..3.9.........8......1....5......63.........2...2.5....44......6.....1..3.
+...1..7..4...7..........3......2..94..3..4....1.......9..5...6....3.8.........2..
+...1..7..6.....3.....49....3.6...5.....2...4.7........58...3....4.....9..........
+...1..7..8..4......5........3....25....74.........8...7.1...6......35.2..........
+...1..7.2.4..53............6..72.....5.....8.......4.......8.9.1.2......7........
+...1..7.3...4.8............6....5.9.3.7......2............3.2...9..2.....1.....8.
+...1..7.32..8.5.........4.....9...2.4.3.......76..........4.6...1.......5........
+...1..7.4...5.8............6....5.3.4.7......2............4.2...1..2.....3.....8.
+...1..7.85..3.....2............4..5..1.7..............68....1......5.43.....2....
+...1..7.85..3.....2............4..5..1.8..............67....1......5.43.....2....
+...1..72.5.6......3........2...5...6.4....1.....7......1.4.........3...5.......8.
+...1..73..54.....1...2.........482..1............3....7..65...........48.........
+...1..73.28.................4..2.......58......3...1......6..4...73.....1.......8
+...1..74.3.2......5........8.....5.3...4....1..........1.....7.....38......65....
+...1..75..3..4....8............63..47.1................6.....432..7...........8..
+...1..75.8.....4..3........1.....6.......3.......5.....7.62.....5...4..3.......8.
+...1..76.5.23......4.......6..5...3..8......2.........1.....6......28.......4....
+...1..76.5.23......4.......6..7...3..8......2.........1.....5......28.......4....
+...1..76.5.23......4.......6..7...3..8......2.........1.....6......28.......4....
+...1..76.5.23......4.......6..7...5..8......2.........1.....5......28.......4....
+...1..78.5.23......4.......6..5...3..8......2.........1.....6......27.......4....
+...1..78.5.23......4.......6..7...3..9......2.........1.....5......28.......4....
+...1..8.....4.2...7.....5.....38....2.6......4.........3.....64.1..5...........2.
+...1..8.....4.2...7.....5.....38....4.2......6.........1.....24.3..5...........6.
+...1..8.....4.2...7.....6.....38....5.2......4.........3.....24.1..6...........5.
+...1..8....94.....2........56.....2..1.3.........8....1...25.........4.3......7..
+...1..8...25..........6.......7.2...1.....4.....5.....8...9..7.......6.3.......52
+...1..8..3.....7..4.........5.7..........3.4........2..2.64......1...5......3...9
+...1..8..4...6....7........6...75....1....2...........5......74.3.2........3...6.
+...1..8..7.....5....4.6.......7..1...36.......5...2...5..2............43.......6.
+...1..8..7.....5....4.6.......7..1...36.......5...8...5..2............43.......6.
+...1..8..9...7....5.........8...62......3..4..1.......4..6...7....8.5.........3..
+...1..8.2.4..73............6..82.....5.....3.......4.......9.5.8.2......1........
+...1..8.32...4....57.......6...2..5..31...7..............8.1..........24.........
+...1..8.529.............6..1..5......7.....3..4.8.........36.2.8............7....
+...1..82.3...2....9.........7.2...6.5...3...........4..1....5........3.9...4.....
+...1..86.43................2......74..58.........3.....81...6.....54........2....
+...1..86.5.23......4.......6..7...5..9......2.........1.....6......29.......4....
+...1..87.5.23......4.......6..7...3..5......2.........1.....6......28.......4....
+...1..9....8...4...2............5.23...47...........8.1.....67.....32...9........
+...1..9...8....5.......4...7.6.5........38...1........5..2......7.....8...1....4.
+...1..9..5........9.........41...2......5.6.......3....8.2....7....6..3...7....5.
+...1..9..7.5......4...........8.3.6....9...2.2.......7....7...4.8....3...9.......
+...1..9.32..46....7.........8....1..6...2.................5..67.9.8............2.
+...1..9.563..8....7........5...2..3...94............6....9..4.......1...3........
+...1.2..........47.5........4..3....9.....2........8......7..358.26.....1........
+...1.2.........73....8.........5.4..8..6.....1.........4..3...2.57.4...........1.
+...1.2......4..6.........8.....85.2.3.......14............7.1.3.52............4..
+...1.2......4..6.........8.....85.2.3.......41............7.1.3.52............4..
+...1.2...5......6.........365..4..7....8..2..3.........12...8......6......9......
+...1.2...6..3......8.........2...51..4..7.......6...3.....8.4.51..............2..
+...1.2...8.....3.....7...6...75..4......4.8...1............6.124...3.............
+...1.2..5.8.3......4....6....6...34....7..1...........2.......7....4..8.1........
+...1.2..8.3.7.....4........5...4.6..6......2....8.........964...81...............
+...1.2..885....9.....4.....4..73...........1.3.........6..5.3...12...............
+...1.2..9.3....2..7..8...........43...9.5....1.........4..3....8.......1.......8.
+...1.2.3..4....7..............6...12.8..5.............6.13.........7.8..2.....5..
+...1.2.3.5...........8.........3.5.481.............3...2.....1....6..7..4...5....
+...1.2.3.5.......7...6......2.3..6......6...4.1.......7......8.4...7..........2..
+...1.2.3.5.......94..6.....8...4...7......2.....9.........5..4..2....6...1.......
+...1.2.3.8..7.....4.....9...1.3.........6.4...........6.9.4...........71....5....
+...1.2.3.8..7.....4.....9...1.3.........6.8...........6.9.4...........71....5....
+...1.2.4..35................6.75...........12......4......8.3.67.....5..1........
+...1.2.6..34...8............9.84...........51.........5...9.4..2.7......1........
+...1.2.6..4....7..............6...32.5..4.............2.13.........8.4..6.....5..
+...1.23...57...............32...6..........71....9.......75..4.2.....8.....4.....
+...1.23...64...............32...7..........41....5.......86..5.2.....9.....4.....
+...1.23...68...............32...7..........81....5.......86..5.2.....9.....4.....
+...1.24..3.8....5...........2.4..1..6...3...7.........5...8..3..1.7..............
+...1.25..43..........6........48..7.2.1..........3....74.............6.1......2..
+...1.25..46............7.....1....7.....9...3.2..........6...2.8...4....3.....1..
+...1.25..49............6.....1....6.....8...3.2..........3...2.7...4....3.....1..
+...1.27..43.................9..3.......6...4.......2..2.75.........4..891........
+...1.27..49..........8........69..5.2.1..........3....95.............8.1......2..
+...1.28..493................7.53....2.....1...............4..731..6............9.
+...1.3.........25....9.....7..6..3.185..2....4.........91..........4..8..........
+...1.3.........5.2......7..4.7.2.........6.3..5.......6.....18....35.......7.....
+...1.3....4......5...2.....3.2...1......4...68.........5..8..1.......32.......7..
+...1.3....9....7.....6.....6.....8..1..4.........5.9....4....12.2..9...........3.
+...1.3...2.....6.....8...7.4...6...........18.......3...75..2......8.9...1.......
+...1.3...2.....7.....6......63....8.....8.4...1.......7....9..25...7...........1.
+...1.3...2.....8.....6......63....9.....9.4...1.......8....9..25...8...........1.
+...1.3...2.....8.....7.........6.32..4.5.......1......35..8..........41.........7
+...1.3...4......7......5...72.8.....6..7..5........1......4..2...1.3....8........
+...1.3...7.....4.....6.....2...7...........36.4.....1..1.5.........2.7....9...8..
+...1.3...7.....9.....6.....2...7...........36.4.....1..1.5.........2.7....9...8..
+...1.3...7.5...............2...5...7.1.2.....6......4..4....13..3....8......7....
+...1.3...8......2....5.......5...3...4..2...........8..6....1.42...76.........5..
+...1.3..4..8...6...5.......9......1.6...4........5....31.9.........8.5.....2.....
+...1.3..52.....4.....6......1.....6.....4.7......8.......35..1.4.2......7........
+...1.3..58.....2.....6......1.....6.....2.7......4.......35..1.4.2......7........
+...1.3..6...4..2..8........7..65...........13.........2...8.5...1.....4.....7....
+...1.3..6...4..2..8........7..65...........13.........5...8.9...1.....4.....7....
+...1.3..62......8..5.7.........2..4...3...7...1.......8...4....4..6...........1..
+...1.3..748.....6..........9...5.2.......8..3.............4.59..31.........2.....
+...1.3..758.....6..........4...5.2.......8..3.............4.59..31.........2.....
+...1.3..758.....6..........4...5.2.......8..3.............4.95..31.........2.....
+...1.3..76...4.2..............5...134.2.6....8.........1.7............2.......4..
+...1.3..82......5..6.7.........2..8...3...7...1.......8...4....5..6...........1..
+...1.3..9...4..2..8........7..25...........13.........6...8.5...1.....4.....7....
+...1.3..97......8....4.....2...46......5..1..8.........3....4......8..2..1.......
+...1.3..97......8....6.....2...46......5..3..8.........3....6......8..2..1.......
+...1.3.2.6...........2......3.5..4...2....6......4.7..8...7....7...6...........1.
+...1.3.4.2.......3...5.........8.2.671.............8....3....1.6...2.......7.....
+...1.3.5..4...2...6.......8...5..13.8...2..............31..........6.2.....7.....
+...1.3.8.4......2..9.5......1....6.5..8.4.............5..7.....2.4............1..
+...1.3.8.46....5.....2.......182....7.....9.4.........5...4.6.........1..........
+...1.3.8.46....7.....2.......182....7.....9.4.........5...4.6.........1..........
+...1.35..4.8....2.....9....6.....3..2..8...........9...3......4...2...7..1.......
+...1.35..4.8....2.....9....6.....3..7..8...........9...3......4...2...7..1.......
+...1.35..6.84.....2...........54..6..1..............8......73.18...2.............
+...1.35..68....9.....2.....9..85...........1.5..........3.....2....6.7...1.......
+...1.37..284...................2..451..6............8.3.....1...5..4.......7.....
+...1.37..286...................2..461..5............8.3.....1...4..6.......7.....
+...1.37..78....4.......9......72.....13...............4.5.6....2..4............1.
+...1.38..294...................6..451..7............9.3.....1...5..4.......8.....
+...1.4....9....3...2.......1..3....6....8..1........54...72.8..5........4........
+...1.4...3.....2........5...4.....1..6..5.......32.......6...4.2.....7..5....8...
+...1.4...3.....9.....2.......15......9....8......6.3.........426...3....7......1.
+...1.4..582..........5......6..7.23...1.............8....6..4.13...2.............
+...1.4.6.8.......3...5.........8.2.7.1....5..............6..14.7.2......3........
+...1.4.9.8.2................9.6.........8...2..4...3.....5..14.2...7.....1.......
+...1.42..3......7....8.........3..56..1.2.....8........4.5.....5...6..........1..
+...1.42..73.....6....5.......4.....9....3..5..1.......9...5....2..8...........1..
+...1.43..87..........5........3..14.26.....5..............86..2..1..........2....
+...1.45..3......7...26............39.6.4......1.......9...3....2...9..........1..
+...1.456..2..........7......8..2....7.......1....8....1.4..........3..8....5..3..
+...1.456..2..........8......9..2....8.......1....9....1.4..........3..9....7..3..
+...1.48..2.....3.....9.....6..5...7.3...6...........1.....2.6...4.....9..1.......
+...1.5...........3.......2...7.3........4.2..3.....5..24.....6....7..1...3.8.....
+...1.5......2..5...4....3.........175...8......9....2.....3.4..27..............6.
+...1.5....2....8.....7.......74...5..6..2...........91....6.2..4.....3..1........
+...1.5....4....6..2.........3..4...........15.......9....73.4..8.1............2.6
+...1.5....4....6..2.........7..4...........15.......9....73.4..8.1............2.6
+...1.5....4.3......2.......5......1.....2...........8.8..5..7..6...9.2........4.3
+...1.5...2.....3.....7.....6...3..5..7......1.......8..3.4..6......6.2....1......
+...1.5...7......8....3......9..8..6...5...3...1.7.....3...2....4.......7......1..
+...1.5...7.....8.....3.....2...7...........19.3.....5..1.4.........2.6....3...7..
+...1.5..37......8....4.....2...46......5..1..8.........3....4......8..2..1.......
+...1.5.2.....23....4.....7....84.6..5........1........2.......1.8.6...........3..
+...1.5.6.9.....4.....3.......5....3.....9.8...1.......4...7.5.....6...1.2........
+...1.5.647.....3.....2.........4.8....1.......5........6.....214...78............
+...1.5.8.6...........8.....4.5.2..........17.2.....8......62..3.1...............6
+...1.52..34.....7....6.......5.....9....3..6..1.......9...6....2..8...........1..
+...1.52..34.....7....8.......5.....8....3..2..1.......7...6....2..4...........1..
+...1.52..64.....7....9.......5.....8....3..6..1.......8...6....3..2...........1..
+...1.53..6.......8...4........57..1.8.....6..2..........3....4.....8...2.1.......
+...1.54...2....8..3..7.....5..3....1.4..6.................4.62.7.1...............
+...1.54...2....8..3..7.....5..3....1.4..6.................8.62.7.1...............
+...1.54..84.....9....2.....6...89.........1......3...........68.15......7........
+...1.58..62.....9....3.....9...28.........1......4...........62.15......7........
+...1.58..62.....9....3.....9...68.........1......4...........64.15......7........
+...1.6.....4....8.7..3.........4.75.......3.2.1.......5..23..........6.1.........
+...1.6....5..2......4....8.1.....6.2...78..........5.....5..43..2.......6........
+...1.6...2......3.............23.....8.....5..1.9..........89.14...5....3.....8..
+...1.6..75.....2.....8.....3..6...1.2.9......4............2.4...8..9.....1.......
+...1.6..75.....2.....8.....3..6...1.4.9......2............2.4...8..9.....1.......
+...1.6.457.....3.....2.........4.8....1.......6........5.....214...78............
+...1.6.5.7...........9.....5.6.3..........21.3.....9......78..4.1...............7
+...1.6.7..5..2......3....8.....4.2.58..3.....1.........2....9.....8........7.....
+...1.6.7.4.2...3............1.8.........2.4..3........5...4.....6.....1..3......9
+...1.6.8.7...........8.....5.6.3..........21.3.....8......73..4.1...............7
+...1.6.9.7...........9.....5.6.3..........21.3.....9......78..4.1...............7
+...1.62..5......3.............2..8.134..5....7........628.............4.....3....
+...1.62..8......1.7..3.........7...2.1....3......8.......2..4...6..5...........7.
+...1.63....8..5....2...........7..2864.......5..............64.1..3.........2....
+...1.65..4.2.....7.........7...4...........2.......1......7..4351.6......8.......
+...1.65..82.....9....4.....9...38.........1......2...........83.16......7........
+...1.65..82.....9....4.....9...38.........1......2...........89.16......7........
+...1.7..........3........2...14..7..6...2..........5..32..6.......5..1.4.8.......
+...1.7...2......3.............23.....8.....6..1.9..........89.14...5....3.....8..
+...1.7...3.....9.....8.....5...9........4...8.......1..682......1....3....7...5..
+...1.7...6..4............9.1.48.........9..5.......6..95..3..........1.4.2.......
+...1.7...9.....2..8..........2.6.......4..5........7.1....3..8..7.5......5.....6.
+...1.7..32......4..6.5.........2..8..7....5...1.......8..3.....4...8..........1..
+...1.7..4.52...3.....9.........8..41.3..2...................52.7..6.....1........
+...1.7..56......3..4.2.....385.........7..1...........5...3..6...1...2...........
+...1.7.4.2..4.....86..........52.8........2...1............6.713...9.............
+...1.7.5..2....8.....4......6..5..3.7.......1...2.........8...4....3.6..1........
+...1.7.5.2.3......9...........5..71....42....3............3.8.2.1....6...........
+...1.7.6..2....8.....4......6..5..3.7.......1...2.........8...4....3.5..1........
+...1.72.....6.....5............5.48.62........1.....5.4..38..........7.1.........
+...1.72...46...............78...5..........61....9.......64..3.2.....7.....3.....
+...1.73..9......1.8..4.........8...2.1....4......9.......3..5...7..6...........8.
+...1.74..5.2......6........1..2....6.8.............7...73....8.2..65.............
+...1.74..6......3.............4..2.135..6....8........724.............5.....3....
+...1.78.....2.....4.........81.............34.......9.3..54.....1....2..6...9....
+...1.78..3.4......9...........9..7.5...2..1..6............3..4.....6..3..1.......
+...1.79..8.3......4...........8..7.5...2..1..6............4..3.....6..4..1.......
+...1.8......6....57.9..........3.24..1.............9..4..72...........81......3..
+...1.8.....9...4.......6..........61.43................2..3.7..6..5...8.1...9....
+...1.8....2.....3....5.....5.....1...6..2..........5.41..4.......3...2......7..6.
+...1.8....2....5.....6...3.....3.7..1.8......4..........6...4.1.7..5...........6.
+...1.8....5....6.....3.....8......3.....5...9.2.......3..79......4...56.......2..
+...1.8...2.....3.....7.........6.23..4.5.......1......35..2..........41.........7
+...1.8...3.....2.....7.........4.5.2.71..........2.......6..3...4.....7.8...5....
+...1.8...4.......2.........5.....14..78.3.............23..4.......6..87.9........
+...1.8..24.....6.....7.....3..2..5..6...3...........1.....4.3....8....7..1.......
+...1.8..245.......7............4.89..2..5......1............34....6..9.....2.....
+...1.8..27......3....5.........7..64.8....5...1.......4..32..........1..2........
+...1.8..52......7..4.6.........2..3...1...6...8.......7...3....3..5...........1..
+...1.8..63.2....7..........51.6......4....3......2..8.7...3............4......1..
+...1.8..76...4.2..............5...134.2.6....9.........1.7............2.......4..
+...1.8.3.6.5...2.....4......8....5.6....9.7...1.......7...5...........8.2........
+...1.8.3.7.5...2.....4......8....5.6....6.7...1.......6...5...........8.2........
+...1.8.4.6.7.................5.7.6..3.......1.1........4....51.2...6.......3.....
+...1.8.5..3....6..............5...82.4..3.............8.12.........7.3..5.....4..
+...1.8.6..73...............3......1..9..7.......5.....8.14.........5.7.9......2..
+...1.8.9.74.6..................4.27.1..............4...2..7......8.....1...3..5..
+...1.82...53...............89...6..........31....4.......75..4.2.....8.....3.....
+...1.82...57...............89...6..........71....4.......75..4.2.....8.....3.....
+...1.82..4.5......3.........1.2..7......5..3..........5...4.....6.....2....8..1..
+...1.82..6...........3........2..3.9..5.4....7........31...........7..5.....6..4.
+...1.83.....9.....5............5.64.71........9.....2.4..27..........8.1.........
+...1.83..4......6....2.....3...96.........7.1.............5..3.27........18......
+...1.83..5.64.....7...........3..81.6...7..............1.....4.....2...7........6
+...1.84..53...4....7.......4.12.........7..3...........6..3..5.2.....1...........
+...1.85...3....4.....6.........4.2.51.7......6........8..9...1..4..2.............
+...1.86...4....5.....3.........5.2.63.7......1........8..9...1..5..2.............
+...1.87...3.2.....6.....5......6.35.21................5..74...........81.........
+...1.9.....3....2...........5..62.4.17...........3.......8..1.72.6............9..
+...1.9....43........6..........6.4..1......5.....2....83.5........7..6.4......2..
+...1.9....62.........3.....94....3......2.5......7....8......241..5............7.
+...1.9....73........5..........5.3..1......4.....2....83.4........6..5.7......2..
+...1.9....82.........3.....94....3......2.5......6....8......241..5............6.
+...1.9...3......7...............62.47.....1......2.9.....73..8..495..............
+...1.9...32..........8.........3.5.2.7.....6...1......2..76..........41.......9..
+...1.9...6......3..4....8...19...6......2.....5..............512..7.....4...8....
+...1.9...8.....5.....4.........5.73..1........9.......7..2....43...6..2.........1
+...1.9..24.....6.....8.....7..2..5..6...3...........1.....4.3....9....8..1.......
+...1.9..78......3....4.........8..52.9....4...1.......3..67..........1..2........
+...1.9..82......3.6..4......8..9........2.6...1..........8...5.3.....2........7..
+...1.9.2.683...................6.3.41..7...........8.....58.4..9......1..........
+...1.9.2.684...................6.3.41..7...........8.....58.4..9......1..........
+...1.9.3.6.2...5...........4...2...........918.........1.3..2......5.4.7.........
+...1.9.5..36.4.................6.7.31..2...........4.....8..2..9......1.....3....
+...1.9.5.8.....2.....3.......9....3.....8.7...1.......7...6.4.....5...1.2........
+...1.9.7.5.....8...............382....4...6...1..........3...198...5...........4.
+...1.9.8.6...........2........8...134.7......5........21...........6.4......5.7..
+...1.9.8.6.2...................3.6.5.1.............2...9.8...1.3..4.....5...2....
+...12..........43.......5...54.........6....2.....8...1..27.........5.4.6.....3..
+...12..........67.........44...7.....8....1.........5....8.12..3.7......5..4.....
+...12.......6..8...9.......1..2...........4.36.....5....8.54........7.1..3.......
+...12.......7..3...4.......1..2...........4.37.....6....9.54........8.1..3.......
+...12....8......4...........215........3...8...........6....2.73....45......8.1..
+...12...31....5....4....6...32....5....6.7...............34....6.....8..7........
+...12..7..45..6...............3..4.571.............6..3......2.....14.....8......
+...12.5..46........8.........125.......3...7.6......4.......2.17....4............
+...12.6......3..8.49..........8....5..1..............975...4.........12.8........
+...12.6...43...8...............53.7.1............4.....5.....4.2..6........2....3
+...12.6..8..3...4.5.........21.6.....7...5.8..........4....8.....3...2...........
+...12.7..4..3.....8.........1....63......8..5.2.......5......84...61.............
+...129...63....5...........5..3..7....2......1........4......2..8.5............94
+...129...63....5...........5..6..7....2......1........4......2..6.5............94
+...129...63....8...........5..6..7....2......1........4......2..6.8............94
+...13......4...9.....6.....2......1......9.3..6........1.86....7.....4.9......5..
+...13......6........5.......7.2....4.....6.3.1........84..7.........365.......9..
+...13.....8....9.....5.7.......8.4..1.............9....28.6.......4....17......5.
+...13....1.....8.....9....7.4...8.......2.1...5..........7.4.5.28.......9........
+...13....1.....8.....9....7.7...8.......2.1...5..........7.4.5.28.......9........
+...13....3.....8.....9....7.4...8.......2.3...5..........7.4.5.28.......9........
+...13....3.....8.....9....7.7...8.......2.3...5..........7.4.5.28.......9........
+...13....4......7.....2.......5.8.4..6..1....23.............1.68..7...........3..
+...13....4......7.....2.......6.8.4..1..5....23.............1.58..7...........3..
+...13....8......2..........2.....1.3...4..5............3..24....51...6.......8.7.
+...13...42..5.....7.9......5....7.3.6.......8..........1.8...........25.......7..
+...13...74.2...5.....8.....6...92..........73.........5.....62..1.3..............
+...13...74.2...5.....8.....6...92..........73.........5.....92..1.3..............
+...13...8.9....5.....6.........497..1.............2...6.18...........42.3........
+...13...87.5...2...........2..6.4......5...13..............742..1..8.............
+...13..6..84.....7.........6..25.......3...1.......8..3.....2.......84......7....
+...13..8.4.2......5...........8.9..13..7...........4...1.....7.....4.3.......2...
+...13.2...5.....7..........1.4...6..2...7.........5..8...4..16..7...8............
+...13.5...28...............54.6............817.............2.9..6....4..1...8....
+...13.8...25...............3..5.2.....6...78....4......4......58...7...........1.
+...14...........583.........6....1.2...5...........4...12....3.....7.6..5....8...
+...14..........7.8.........1.4...3.....2.85..9.........2...7.......1..4....6...3.
+...14........23...5.....7..1......8........32...4........5..6...2....4...38......
+...14........26....7....9..4......27.5.8............1....5.73..2........1........
+...14........26....8....9..4......28.7.3............1....5.83..2........1........
+...14.......2....48............68.3..12................4.51....7.....3..6.....8..
+...14....5......7....3........9..3.12...6......7......813............42..9.......
+...14....8......5.....37...5.16...........42.6.....3...3....7...2.5..............
+...14...653..............4.8....57..2.....8.....3......1.....3.9...8.........2...
+...14..2.....8....3........1..7.3....2....85......6...6.....3.7.54...............
+...14..5..7.2......1............61.78..5...........3......73...5......2.4........
+...14..7....7.....5........2.....5.8...4...........3......256....4....1.37.......
+...14..7.2.....8...........83....6.....7...4...........41....5.....823.......9...
+...14..7.62.................8..29......4..6.........1.4.15...........2.8......3..
+...14..8.75.................9..25......4..7.........1.4.16...........5.9......3..
+...14.2...3.....6...9......2...36.5.1.............8......7..4.1.68...............
+...14.3...6...........8.........5.628.7...............7.....84..1.2.6...3........
+...14.3..2...6....5.............8.2..3..7.....1.......6..2...........4.8...5..1..
+...14.3..2...7....5.............9.2..3..8.....1.......7..2...........6.9...5..1..
+...14.5...72...............51.6...........32.6.......4....27...1.8...........8...
+...14.5..78.....6..........4.17............382.........9..86.........4...5.......
+...14.7...63.........5.....7...2..4.....39..........1.......3.94..8.............6
+...14.8...6...........8.......7.61.....3...5..32......5...2...........674........
+...142.6.7.8....5..........9..6...........8.2......3.....37.....42.......8.......
+...143...2......6....8.....5...6..7..1............5...6.....3.....4..1..7.2......
+...15..........6.3............6.37...1.7.....92...........1..584......1.6........
+...15.......2..6..8.....7.........213....7.............45.6......2...3...1.....8.
+...15.....3.....4.6..2.....1..6...........48........3.....7.2...9...3.........5.1
+...15...23......6....2......5....1.86...7....4....3....21............43..........
+...15...24......3....6......1....6.......4.7.....3....7.2.........8..1..3.....5..
+...15...4..17......6....3.....8.12..54................3...4..6...2...7...........
+...15...426...........3..........25..4...8..........1....7.68..3.5......1........
+...15..3.4.8...............6..8.4......5...7.......2..73..2..........8.19........
+...15..6.3..6..7......4....8..2............4.......3.....7..2.3.94.......5.......
+...15..6.3..6..8......4....1..2............4.......3.....7..2.3.94.......5.......
+...15..7.3..6..8......4....1..2............4.......3.....7..2.3.94.......5.......
+...15..7.3..6..8......4....8..2............4.......3.....7..2.3.94.......5.......
+...15.2..37...................2..1.593.............4.......8.36....4..7...1......
+...15.3...8..2..........4...2.....89...3...2....4.........8..7.3.....6..1........
+...15.3...8..7..........4...2.....79...3...8....4.........8..2.3.....6..1........
+...15.3..8.....2.....9.....62...3......4....17............62.7..91...............
+...15.6..8.7......3...........7.8.3..1....4............4..6.2..5......8....2.....
+...152....3.....4.............8..1.5.7....6...............76.2.8.1...3..4........
+...152...3.......8.....6...8..7...4.......6........5.....48..3...5...1...2.......
+...156.4.7.....2............6..3..5.1....................7..1.2..3...7...5.8.....
+...158...7......34..........25...6...4.3.........1.........25..3..4............6.
+...159...8.....2.....6.....7...8.....6......9.......1..1.5.........3.8..2.....4..
+...16........24....8....9..1......42.3.7............1....5.83..2........7........
+...16....7..5...........2..8..2.....9.......6.....5.3....4..52..3..9.....6.......
+...16....8......4.....37...4.15...........32.5.....6...6....7...2.4..............
+...16...42.7......3.........1.....8.....37......5.2......4...6.7.....8........2..
+...16...47...5....2........8....4.........15........7..51...9...3.7..........2...
+...16..3..4....8..5...9.....1.2.4...7......6....8...........2.46.3...............
+...16..5.94...........3....7....4...3......2....5......8.2...........7.3.5....4..
+...16.2..3......5....4......61...4.......2.3...........4....1.87...35............
+...16.3...45...............6..5.3...7.....8.....42....3....7..........25.......4.
+...16.4..38........2..........5...274...1...........8.6..4..3...7...2............
+...16.5...72...................2...1..4..7...1.....3.....5..48.62..........3.....
+...162...43...........5.......4...25.9.7............6.5.2..........8.7........3..
+...162...43...........5.......4...25.9.7............6.5.6..........8.7........3..
+...162.5.7.4....3..........8..5...........4.2......3.....37.....12.......4.......
+...164.8.3.2..........8.......7..2.9.4...............5.6.....4.9..2...........8..
+...165...42..........7........4..7.58.....1..3...8.....51..........3..9..........
+...165...42..........7........4..7.59.....1..3...8.....51..........3..8..........
+...17.....56.......4....6........5.41...3..........2.....5.2...8......7....4...3.
+...17.....9.3.......4...6..3..52..........4.9......8...8.6.....7......3......4...
+...17....2.....9............315......5.4..6........8....7.2...........318....9...
+...17....4.......8....3....23.............6.7.......1..5.6..2....7....3...3..8...
+...17....4......5....2.....35...8......6..1........2...6...5.3.....3.7....1......
+...17....5......3.......8.....9...128.37.....4............4.3...9......7.....8...
+...17....8.....3...........2.6...5.....4..2......1....37.....1..4...2......6....9
+...17...425...........3..........21..4...8..........7....6.58..3.7......1........
+...17...53......2....5.......164.....5....8....6......43...2.........1..7........
+...17..2.....8....3........1..6.3....2....84......5...5.....3.6.72...............
+...17..2.....8....3........1..6.3....2....84......5...5.....3.6.74...............
+...17..2.....8....6........1..3.6....2....84......5...5.....3.6.74...............
+...17..2.95...........3....8....5...3......4....6......1.2...........8.3.6....5..
+...17..2.95...........3....8....5...3......4....6......6.2...........8.3.1....5..
+...17..5..2..5....43.......6..91.....4....3..............8.32..5.1...............
+...17..5..2..5....43.......6..91.....4....3..............8.32..7.1...............
+...17..8.24........6...9.......4.6.58.1................2....4..3..8........5.....
+...17.4...26..........3.........8.527.4.............6..5.2.....1.....3.....6.....
+...17.4...56..........3.........8.567.4.............2..6.2.....1.....3.....5.....
+...17.5..4......3.2........6.......2.5.8............4..9....1......34......2.6...
+...17.5.43......6.............4..1.26.8.3....9.........1.5...........98..........
+...172...54...........6.......5...26.9.3............7.6.2..........8.4........3..
+...172...54...........6.......5...26.9.3............7.6.7..........8.4........3..
+...173....4.....86.........2.5...7..3..4........8......8.....5.....2.3....6......
+...176...52..........8........5..8.64.....1..3...9.....61..........4..9..........
+...176...52..........8........5..8.69.....1..3...9.....61..........4..3..........
+...18....2.....3...........3.6...2.....5..7......1....48.....1..5...2......6....9
+...18....2.....4...........3.6...2.....5..7......1....48.....1..5...2......6....9
+...18....4.....7..............2.46...58...4...3.......1..7............13....5..8.
+...18....4.....7............193..........742.......6.........192...4.......5....8
+...18....6.....3...........2.7...6.....5..2......1....48.....1..5...2......7....9
+...18....7.....3...........3.6...2.....5..7......1....48.....1..5...2......6....9
+...18....7.....4...........3.6...2.....5..7......1....48.....1..5...2......6....9
+...18...76.4...2...........2..5.3......4...81..............632..1..7.............
+...18..3..2........6.......1..5..4..3......8....6......4....6.25...1..........7..
+...18..5..9....4..3...7....6.....7.....5........4.........632...5......6..1......
+...18..5.4.....3.....6..........42...1...........3.....6.5...1.2.3......7.......8
+...18..9..42.....................2.48...3............56.....13....4.5...1..7.....
+...18.3...6...........9.........5.628.9...............1.....84..7.2.6...4........
+...18.4..5.9...3......7....3..6..5..2..................8.....47.1.....8....3.....
+...19.......8....74.....6......7..869.3......5.............63...8.....9..5.......
+...19..2.6..8....3.............2.95.3...5....1...........3.6....9....4...5.......
+...2....13........5.............854..2.1............3.4.8...3...7..1.......62....
+...2....13..7.....8.9......6...8.....4.....5.......2...5.41..........83..2.......
+...2....138.......6.........724.....5.....36..........1.4.8........3.72..........
+...2....14......3.............1.26..34....5.....7.....16..3......7...2.........8.
+...2....14......3.............1.26..73....4.....5.....16..3......5...2.........8.
+...2....14..7...........6.....3.85..61........7.....4.2.....3....5.7........1....
+...2....157........3.......2.41.........5..3.......97.36..7.......8..2...........
+...2....18......7..............7.54..61..........3....23....8..5..6........1.9...
+...2....3.6..4......8......3..5.2...7......6....3..1......6.84..1.......2........
+...2....3.7.....1.4.........1..56.......4.8........2....31...5.2.....6.....7.....
+...2....31....5...7......4..8..6.5...3......2....1....6.....1.....4...9....3.....
+...2....4.8..3...........1.3..6..5...7....3.....1.........9.8..1.4......26.......
+...2....43.8......7.........2..3.1...9......5.......6.1.....73....5.4......8.....
+...2....5.3.....6...1......5.......7....3.1............6....38....74.6..2..5.....
+...2....5.74............9......3.64.28.5..............5......72..6.4.........1...
+...2....53......8....1.....8.....34....6.5.........7...65.4.....2....6......3....
+...2....58....3.........6......8.4....5.7.....2.......17....8.....5...7.4..6.....
+...2....6.1.....5.4....7...1.....74....36.......8......6......37...2..........4..
+...2....6.35.............8....74..1.2..6...........3......315..6.......2......4..
+...2....64.....9..............7.4.2.9.3......8..5.........9.85..2.6......1.......
+...2....647........1....8..35.4.........6..1.2.....6......81..........43.........
+...2....7.......381..........5...9......83...4..1........5..62..7....1..8........
+...2....7.1....8..5...9.....72.....4....65.3..........4..7.....6......5.......1..
+...2....78.....3..1....5...5...4..6....3....2.............1.8...7.6......2.....1.
+...2....8...1.3....9.....5.....6.2...8..5..........1..1..4.......2...3..6......7.
+...2....8..5.6....3......4..67...1.....4..6.....3...5.42...........7.5...........
+...2....81....4...6......3..7..5.4...8......2....1....5.....1.....8...9....3.....
+...2....89.......4.......5.....153..8.....9..4...2.......8...7..5....6...1.......
+...2....91...............6..89...2......1..3.....5....6.....15..7.9.4.........3..
+...2...1...6.3....5...........1.4...9..7...........5......5.3.4.1...8....2....6..
+...2...1...9.6.....4.......6..1....3.5.7..4...............345..1....8...2........
+...2...1..38..........4....5.47......1....8.3.........26.1.........8.9..1........
+...2...1..38..........4....5.47......2....8.3.........26.1.........8.9..1........
+...2...1..4...9...5........3..62.....7....4.....1...........9.4..2...7..1..8.....
+...2...1..45..........6....8..3.......6...4.....1.7.......2.5.6.1.7.....3........
+...2...1..5....6.....7.....8.....5......7.3..2..4.....13..5.........8.42.........
+...2...1..9...4............5..13..........8.9......4..1..35.........67...42......
+...2...1.4....5.............126.........8.4.5......3..5...4.8...6.3.7............
+...2...1.4....7............5..13....2.....6.9....8.........47...1.....3..86......
+...2...1.4....7............5..13....2.....6.9....8.........47...1.....3..89......
+...2...1.4....8.............126.........8.4.5......3..5...4.8...6.3.7............
+...2...1.68..........9......3....2.75..1...........8....2.8........6.4..1....5...
+...2...1.8......4.5...7........8.3....1.......9........2.1.4......3..5..6.....8..
+...2...1.83..........4......5..3.6......95.....4........17.....2.....4........5.3
+...2...154..7.....6......3.2.....9......54........6....5.3.........8.4...1.......
+...2...165..4.....7......3.4.....8......65........7....6.3.........8.5...1.......
+...2...165..4.....7......3.4.....8......67........5....6.3.........8.5...1.......
+...2...165..4.....7......3.4.....9......67........5....6.3.........8.5...1.......
+...2...165..4.....8......3.4.....3......68........5....6.7.........9.5...1.......
+...2...175.46............9.3.....2..8...9.........7......3..5...7......4.1.......
+...2...18.......2.7........5...3.6...1.............3..3.4...7.....8.2...6..4.....
+...2...18.4....3...........2..8.6....5....4...........8.1....6.....475......3....
+...2...3...1...6.....9......4..687.........9.....4....93.5...........8.12........
+...2...3...6.....5.1............3..83..5...........6..7...3..4.....861..2........
+...2...3..1....4..8........2.36.......6...1..7.........4..81......5....2.......7.
+...2...3..12.......8....4...7....8..3..6........5....25......6.4...8........1....
+...2...3..5.....4...........6..5.8..7..3..................651..4....9.5.3.....7..
+...2...3..5.....4...........6..5.8..7..3..................651..4....9.6.3.....7..
+...2...3..5....7....7......8..3........4....5..1...4......671...3..9....2........
+...2...3..6.....4...........7..5.9..8..3..................671..4....5.7.3.....8..
+...2...3..6.....4...........9..5.8..7..3..................691..4....5.6.3.....7..
+...2...3..7.....4...........6..5.9..8..3..................671..4....5.7.3.....8..
+...2...3..8....2..7...1.....5.6.8.........9.1.2..........3...8.1.4......9........
+...2...3..82.......1....4...7....8..3..6........5....25......6.4...8........1....
+...2...3..9.....4...........6..5.8..7..3..................691..4....5.6.3.....7..
+...2...3.4.....5......3....1...64....7.....2......5....238.....5.....4.1.........
+...2...3.4.5.........6.........5..67.3.1.......8...4...2....1..7....8.......4....
+...2...314.9................2.51....6.8...4........7..7....5.......4.9...3.......
+...2...341......8...8......52....6........1.....3........51.7...34...........6...
+...2...341.8.6..............4.5...2.....1.8..7.........2.4.3...6.....1...........
+...2...35.41.............8....16.4..38..........7.....5....8...7.....2......4....
+...2...37...3.8.5.1........6...2.4.....7...............35.......8....9......4.1..
+...2...376..84....1............6.4..72........3..........3.7...8.....6.......5...
+...2...39.1.8......7........6..1.4..3......2.....5........7.1..2..3.....4........
+...2...4.......25...1.......6......8...7..1..5..4.....34.......2...8........1...3
+...2...4..1..6.....3..........5..1.8...4.9.........3..6...3.7....4..8...2........
+...2...4..1..8....5.....3..3.....7......4..8...........81....6....7.52.....3.....
+...2...4..7....3............1..7.5.....4...8.6......2.....3.1.78..6.....2........
+...2...4..8.....2..3......5....3.8..4..7.....1........7..4....2....5.6........3..
+...2...4..9.....2..3......5....3.9..4..6.....1........7..4....2....5.3........8..
+...2...4.3...7....5.......6....1..2.8....3.........7...2.4.6......5..3...1.......
+...2...4.3...7....5.......8....1..2.8....3.........7...2.4.6......5..3...1.......
+...2...4.5.....6...8....3......14.2.3...56.............247...........5.1.........
+...2...4.7.....8..1.........6.5..1...2.6.........7.3.......4.69....1...........2.
+...2...4.9.....3.......1.......5..68...7...2.1............931...2....7....6......
+...2...416..4............3..2.5..6...1.............5..7...1....5.....7......38...
+...2...416..4............3..2.5..6...1.............5..7...3....5.....7......18...
+...2...416.57............9.3.....2..8...9.........1......3..6...4......5.1.......
+...2...43.51...............6..3.4.........12...........7.61.5..4.....8......2....
+...2...436..........8......1.....85..2.3.7......4.....5...6.1......1.....3.......
+...2...456.3......1......7.....1.9...48.......7..........7.2...3.....6.....4.....
+...2...4561.4......8...........173..4......7.....8.....3....1..2..5..............
+...2...468.3......7......5.....1.8...51.......4..........5.2...3.....9.....4.....
+...2...48.9..3.............2.8..........7.9..4..6.......54.8....3.....7.......1..
+...2...4851.3......7...........163..8......2.....7.....6....1..2..4..............
+...2...5...4...1..8...........7...231...............7.....146...3..6.4...7.......
+...2...5..13.......6.......8......4....73........1.6.....5..1.72....4.........3..
+...2...5..3..7....8........5.21...6.....3....6.........4....3.7...5.1.........9..
+...2...5..43.......8....7..5......6.....47........6..11..5.........8.4..6........
+...2...5..7......6..8......4......1.....7.3..5........2..5....8.64...7.......1...
+...2...5..7..4......1......3.....62....81....2........56.3...........1.7......4..
+...2...5..7..4......1......3.....68....91....2........56.3...........1.7......4..
+...2...5..73.......6.......8......4....13........7.6.....5..1.72....4.........3..
+...2...5..8......4............72.....1....3.....5.....6....31..2.5.4......7...8..
+...2...5..8....7...........2..1......7....4.....5.6...5...3..6.....783..1........
+...2...5..8..4......1......3.....72....61....2........56.3...........1.8......4..
+...2...5.1......8.3...7.....8..3.....2.....4.......6........7.1...8.2......4..3..
+...2...5.6.....7...9....4......15.2.3...67.............258...........6.1.........
+...2...5.9.....6....8...7...2.4.........3.8..1.........1.....42..3.87............
+...2...516..7............3....8.64..75........3...........34...2.....6......1....
+...2...5164.................7...46...3.....2.....1.......8..7.31.....4..5........
+...2...518.4.....2.........7...6.8..3...........1......5....49.....7.3...1.......
+...2...518.4.....2.........7...6.8..3...........1......5....49.....8.3...1.......
+...2...537.1.....................87.9.....1.....5......5.43.....2.....6......17..
+...2...56..71......3..4....6......1.....78.......3....2..5...........3.8......9..
+...2...593......1..6..8....68....4.....52.......1.....7...6.8....1...............
+...2...6....3.5...1............7.41..3.8...........5...2......3.....47..6...1....
+...2...6....8.1...4.....5.........385...4...........1....47.2....3...9...1.......
+...2...6..1........7.......4...7.1..6.3..........8....2..6.4......3..5........7.1
+...2...6..1..4.............7.....24...3..1.......8.......6.5..1.8....3..9..4.....
+...2...6..1.5......4.......3.....5..6...8............1.7.3.5...2......8.....1.4..
+...2...6..1.5......4.......9.....5..6...8............1.7.3.5...2......8.....1.4..
+...2...6..3.8.....5.......4.8.3..1......6...7...............82...6.5....7...4....
+...2...6..5...4..........8....5..4.26.....5..3.........41...7.....63........8....
+...2...6..8........7.......4...7.1..6.3..........5....2..6.4......3..5........7.8
+...2...6.1.....7...........74......3...42....8.....1...62....4...5.8.........1...
+...2...6.4.......71...........69.2....3...4..7..8......2.....8..3...4.......1....
+...2...6.5.......4...7......2.6..7....6.4........5....3....91........28.4........
+...2...615..4.....7......3.4.....8......17........5....6.3.........8.5...1.......
+...2...64.1....3.....4...........93.5..7.....4.8..........39...2.......8....1....
+...2...64.31.........6......5..3.1..4......2..........2....85..7..4...........3..
+...2...641.9..8...5........37.6.........1.9............4.75..........13..........
+...2...643..6.....7........1.....3........27..4........2......8....31......57....
+...2...65..1.3...........4.....183..67.......4........26.4...........8.9.........
+...2...65.7.....3..1............78..6.....1..2..3.....4...6........51.....3......
+...2...65.81................4..3.1..6..5.2............5.....8......1.4.....7.3...
+...2...65.81...............67.....4......13..2........4...7.8.....64............1
+...2...657...4....3.............5.1...6.7....2.....8...5.8...........3.7.1.......
+...2...7........651..........7.6.....4....2........8.....1..43.6...3.....85......
+...2...7...1...6..8..........4.75.......1.8........2..23.6......7.....5.........1
+...2...7...3...6..4...........8...231...............8.....461...7..1.5...2.......
+...2...7...4...3...61..........614..3......2..............4.1.872.5..............
+...2...7...8...4...1........6....1.52..3...........8..9.3....2.....41...........9
+...2...7...85......1....6..3......2..4...9.......1......5...1.92..8...........4..
+...2...7..1.......6.........4..81...2......6.......3..5.96........7..4.1......8..
+...2...7..3.......1........5.....8.1...7..3.....6.4.......1.5.4..2....6..7.......
+...2...7..36.......4.......7..52.......3...1.......6.......64.5....48...1........
+...2...7..6........5.......4...5.1..7.3..........8....2..7.4......3..5........8.6
+...2...7.1.....6...4..........7.1....8......6.5....4..3.2....1.....6.5..7........
+...2...7.4....6...8.............84...7..3.....1..........71...2..16.....5.....8..
+...2...7.6.....5....1......2......34....16....7.........5...1.6.2.3...........8..
+...2...7.8.....6......5....1...48....7.....2......6....235.....6.....4.8.........
+...2...746.1...............3.....51.5..7..........4.......632...7......8....1....
+...2...75..3....8............8...4.....7.1......5..9..1...4.6..52........7.......
+...2...76...3.8.2.1........5...3.4.....6...............27.......8....9......4.1..
+...2...784.1.............2.3...145..67...........3.........34...8.7..............
+...2...785.1.............2.4...156..37...........9.........35...8.7..............
+...2...786..1..............1.6...5..53..........7..........564..7..8........3....
+...2...8.......35....6.4.........2.47..9.....5........14..7.....26..........3....
+...2...8...83......5....7..3......2..4...5.......1......6...5.12..6...........4..
+...2...8..1.......5............1.7.48...3......2...6...4....17....5.3......8.....
+...2...8..15.............9..76...4.....8..1..2..3.....8......2.....7.5......1....
+...2...8..3.....9....5.....2...4.5......3.7.......9...5.6...1.......8.3.1........
+...2...8..4......2.1.......2...3..6.....415..8........5..6...........3.4......7..
+...2...8..54..................613...8......5......4...2..78....1.....6........4.3
+...2...8..7....3.....6.........3.74.6..1.....1.........4..5...........26......1.8
+...2...8..9.3.............44.....7.1...5..3......8....3...41....6....52..........
+...2...8.1.....7..6.........853.............1.....7....43...8......16.9.....2....
+...2...8.1.3......5..3......6.82....7.....5........1.4....41....8.....3..........
+...2...8.4...7.....9....1......6..7..31..............1...1.95..7.8.........3.....
+...2...8.63..............9...7...64.5...3........1.....1....4....28........5..3..
+...2...8.7.....6......5....1...74....8.....2......6....235.....6.....4.7.........
+...2...8.7....4....3........7.81..........5.4......6.....1..32.4.5......6........
+...2...845.1...............64......7.....35...8.......2.....13....46........8....
+...2...845.1...............74......6.....35...8.......2.....13....46........8....
+...2...847.1...............3.....51.5..8..........4.......736...8......9....1....
+...2...85.31...............26............7.4.5..4.........3.1.64..7...........3..
+...2...874...6......1....5.38....9.....51.............6.....4.3.5.8..............
+...2...9...1.......3........6..21...5......4.....3.8..7..4.9...2.....1.3.........
+...2...9...3...5..6...8....1.....7.64..9......2.5......9.....2.7...6.............
+...2...9...4..6....1.....8.9..53.......4..7........1..2...81.........45..........
+...2...9..1.....3..5...8...2..9........4..5........1..4....6.2.....3.7......1....
+...2...9..3.....5..1.......6..8..71.9.....................134......5.3..2.......7
+...2...9..76...................685..8......3.....1.7..2.....6.14..9........3.....
+...2...9..8....3.....6.........8.74.6..1.....1.........4..5...........26......1.9
+...2...9..8....3..7...1.....3.6.8..........51.2.......1.4.........3..6..5........
+...2...9..8.4......5......1.....86..4......2.....1....7..3..5........4.82........
+...2...9.1.....7..6.........953.............1.....7....43...5......16.8.....2....
+...2...9.4.....1.....5.........6.4.7.8....6...5..........8.3.5.6.......4..1......
+...2...93.1.8......7........5..6.4..3......2.....1........7.1..2..3.....4........
+...2...93.1.8......7........6..1.4..3......2.....5........7.1..2..3.....4........
+...2...983..5.......4...6......7.3...1.......2..........7.36....9.....12.........
+...2..1...3..5....7........1.26..7......93...4.........8.....95...1............3.
+...2..1...48.......3...........6.72.....8.5.......4...7..5.2......3....41........
+...2..1...8....6..3........4...83.....1...9......5.....5.....78...6...4....1.....
+...2..1...94............9....2.....41..3............68....46.2.7.....5...3.......
+...2..1..37.............4......3..76....6..5...1.........1.42..65..........8.....
+...2..1..4......7..6..........5..2.68.....5.....3.........49.3..2......5..1......
+...2..1..4.....8.....3.1...5...4...........3........9.....7.5.1.396......2.......
+...2..1..5.....7.....3.1...8...4...........3........9.....7.8.1.396......2.......
+...2..1..6.....4..73...........3..7...1..............5...4.12..5......3..8.6.....
+...2..1..7.....4..36...........3..6...1..............5...4.12..5......3..8.7.....
+...2..1..7.6......9........5...6..7..2.....8....3........14.2..8...7..........3..
+...2..1..7.6......9........5...6..9..2.....8....3........14.2..8...9..........3..
+...2..1..83.............4......3..86....6..5...1.........1.42..65..........7.....
+...2..1.58....9.........4.......3.9.6...7.....1.......2.6....7....51.......4.....
+...2..1.7.9....6...4.......7...8..4.....34...1...........7.25.........3....9.....
+...2..1.853............6...4...3..5....8..7............82...6......54.7..........
+...2..14.37..................682....2.....5........7.3..4.6..8..1...7............
+...2..14.73..................682....2.....5........7.3..4.6..8..1...7............
+...2..16.9...4....5.....8...6.1...2.....5...9.1..........6..7..........53........
+...2..17.8...6..............715...........8.4.....9......6..3...9.....1.4...8....
+...2..18.9...6..............714...........9.5.....1......6..3...2.....4.5...9....
+...2..3......1.....5.......41....6.....3..7...8.......3.75.....2......8.....4..1.
+...2..3....3....6...4.......1.9.....2......4........8593....7......84.........1..
+...2..3....7....6...4.......1.9.....2......4........8593....7......84.........1..
+...2..3...4......8.1...........41.5.3.5...6......9....8..3.....2....7..........1.
+...2..3...5......4.1...........15.7.3.4...6......9....8..3.....2....4..........5.
+...2..3...5..4.....1...........1.5.43.....8..2........6..7...3....3...9.........1
+...2..3...6.4.....7........15.....7....36....2..........2.71.........4.3......8..
+...2..3...7.....5..1.......6.......2....8..1.3..6.......5.17..42.....6...........
+...2..3...76............1..2..5.........4..6........783....15......6..4....3.....
+...2..3...81...............23....7.....45........1........839....5....1.4..7.....
+...2..3..1.....4.....6.5......5...72.8.....6.3.........62....5.....1..........9..
+...2..3..1...4............572.3.....6......81..........53...2......61..........4.
+...2..3..1...4............682.3.....7......15..........63...2......71..........4.
+...2..3..1...4............878.3.....6......15..........23...8......61..........4.
+...2..3..1.9......6.........3.5.2....7.....6.........1.5.4..2......1..9.8........
+...2..3..1.9......7.........3.6.2....8.....7.........1.5.4..2......1..9.8........
+...2..3..5...7......1......7...54....8....2...........6......75...8...4..9.3.....
+...2..3..86..................5..72...1..6...........8.2.34.........5...1...3...6.
+...2..3..9......1...........7..5..4..28...........1...1.5.6.......3..2.7......8..
+...2..3.4.71..................3..57..29......4..6.....2.....4......79.......1....
+...2..3.48..3.....1...............85.2.....1..3.7.........15.......4.6........2..
+...2..3.57....64...........6.2....1....53.............43..8...........21......5..
+...2..3.61...8..........5......41.7..35...............74.....1...63..2...........
+...2..3.71...6..........5......81.6..37..................5..24....3.7...8........
+...2..3.91.5.....................61...8...5...9.7........451...83...........6....
+...2..3.98...65................4..57.1.3............4....1..2..5.6......4........
+...2..35.1.8.4....6........4....6..1.3.7...2...........7....5......81............
+...2..35.1.9.4....7........6....7..1.3.8...2...........8....5......91............
+...2..36.1....5...9.............47...2.....4...6.9....78....1.....63.............
+...2..38.7...4.................8...4....1..7..35.........5.62..1.......6...3.....
+...2..4......1.....6.......51....7.....4..8...3.......4.86.....2......1.....5..3.
+...2..4.....8.4.....1...7..1...7.5...23...............74......6...3...8........2.
+...2..4....3........6.......8...75..2...3........1.......5..63.95.4.............1
+...2..4....5....3..6...7......95...1.2.......7........3.....76...8.1..........2..
+...2..4...1....3.......7.6..4.6............8........7....3..1.97.8.5....2........
+...2..4...18.......5...........5...83..4............1.4....32.....6..3....7.1....
+...2..4...3....5...1.......5.....28.7..63.........1...4..9.......7.....3.......6.
+...2..4...6.....3......1...5.2..........8..6...4.........5..24.31..6..........7..
+...2..4...7....3...1.......8..3...2.......67........154...51.......7....9........
+...2..4..1.....3.......5....458......2.....7........1.6...71.........5.2....3....
+...2..4..3.....7.....6.5..........351...8...........2...6.4.1...52.......8.......
+...2..4..3...1......8.....5....7.13..5.............2..74.6........5.8..........1.
+...2..4..6.7......3.......71..5...3....4....8..........4...72...9..3...........6.
+...2..4..7.......53.........4....28.....3........5......24.1....6....53.........7
+...2..4..7.....6.....3.4...4...1...........8........3.....6.7.1.385......2.......
+...2..4..7....3...........58...7.......1..6........23..2...4....1.....6.....5...7
+...2..4..7....8.............2..6........1..7........38.4....6.11..7........3..5..
+...2..4..96.............1......3..8.....9..6...1.......7.1.2...8......3....4..5..
+...2..4..96.............1......6..8.....3..6...1.......7.1.2...8......3....4..5..
+...2..4.15.93............8.6.....52.7...1........8.....1......7...6..3...........
+...2..4.68.1...............34....7.....1.8.......5........4.58..2.6............3.
+...2..4.83.1...............62....7......81....5.......5......31...54...........7.
+...2..4.83.1...............62....7......81....9.......5......31...64...........7.
+...2..4.83.1...............62....7......81....9.......5......31...94...........7.
+...2..4.83.1...............65....7......81....2.......5......31...54...........7.
+...2..4.87.1..................8.4...9......3....5.....6...3..7..8....2...4..1....
+...2..41738.4...............71.........6..3...........5.....62.4...8.........7...
+...2..43.6....5...............43..8.5.6.....17.........4.8.....1.......6......2..
+...2..43.7.1...................76..5.3....8...2..1....6......718..3..............
+...2..45....13.....8....7...6..58...4.....2...........5......832..4..............
+...2..48.6...1...............8.....1.32..........9.6..72....5.....8.3........4...
+...2..4985...6.............1......65.2.4.......9.......4....2..3...5.......8.....
+...2..5.......83..1..........852...........1........6.61..4.......3..2.87........
+...2..5...17...................81.9.2.....4....5.......8.45....3.......1...6...7.
+...2..5...3....1.....8.9...1.....7....64.....5.2......27.....4.....1...........9.
+...2..5...3....1.....9.8...1.....7....68.....5.2......27.....4.....1...........8.
+...2..5...3..6.....9.......1..5...36...8.4..........9.5.8...4......3....7........
+...2..5...3.1......49......2..6....7.......48.......3....3.8...1.....2......4....
+...2..5...3.1.....6......4.2..7.............1.......3..4..38.......6.8....5...2..
+...2..5...4......7.1...........91...8.....3...........5..83..6.9.......1.7.....4.
+...2..5...46............1.37.1......3..6........4...8..2.....4.5...3........1....
+...2..5...46............1.37.1......3..6........4...8..2.....6.5...3........1....
+...2..5...61........8......5.....4.7.3..6.........1...9..4............31....8..6.
+...2..5..1.............6...4...81....2..5.3..............6...14.327............8.
+...2..5..1.....7.....3.5...5...4...........8........3.....7.4.1.386......2.......
+...2..5..1..7......3....8...5..3.4.....6....2.8.......2......1.6.7..........5....
+...2..5..16..............4..7.....81...3.5......4.........1.7.6..5...3..4........
+...2..5..3...6.....4....8..1......6....5...3...24.......5...4...7..3............1
+...2..5..4.....1.....3.5...8...4...........3........9.....7.8.1.396......2.......
+...2..5..4.....8.....3.5...8...4...........3........9.....5.7.1.396......2.......
+...2..5..6.....4.....3.6...7...4...........5........2.....7.8.1.321......5.......
+...2..5..61..............4..7.....81...3.5......4.........1.7.6..5...3..4........
+...2..5..7.......32............2..14.9.4............7...8..36......17.........9..
+...2..5..7.....3.....84....5...13.....6....8..4.......1..6...4.3.........5.......
+...2..5..8.......32............2..14.6.7............8...5..36......18.........9..
+...2..5..8.......32............2..14.9.7............8...5..36......18.........9..
+...2..5.31.9......4.........2.5.........4..9........1....3..2..6...1.....7....8..
+...2..5.6..8..3............1..56....3.7....8.....4..........79.65........2.......
+...2..5.6..8..3............1..56....3.7....8.....4..........97.65........2.......
+...2..5.684..................537....6......8.......2...9....74....6.1.......8....
+...2..5.7.8.....6..........1.5...4......36...2........76.....3....5..2.....1.....
+...2..5.8...61..........9....6..87...3.5......1.......2......1.4....9.......3....
+...2..5.8.4.39.............6...1.....9.....3......5...5.7..81.........9.1........
+...2..51.6...4.................8...4....1..6..35.........5.72..1.......6...3.....
+...2..56..31........7.........57.4..8.....2......1.....6.....312..4..............
+...2..56.4.1................6..2..3.....34...7......8.......7.1.2.5...........4..
+...2..58.39.......1...............934..1................25..1.......74.6....9....
+...2..6.......34..1..........362...........1........7.71..5.......4..3.28........
+...2..6.....13....6.....7.....5...2.3....7...........1.52....4.....8.3...1.......
+...2..6.....5.9...4......7.8.3.........9..5........1.........84.9.....3..5..4....
+...2..6...3...4.........1...4.....87....3..4....6.....2.6...5......73...1........
+...2..6...5.....4......1...1.27............85.........63..8........4.2.1......7..
+...2..6...7....4...1...........4..573..6.............1.....7.9.8...3....6.....2..
+...2..6...9....4...1...........4..513..6.............9.....9.8.7...3....6.....2..
+...2..6..3.4.......1......82.....7......8..4......1......76.5...6.3............1.
+...2..6..4......8...........62...1......47......3.....75.....4.....8.3....16.....
+...2..6..4...1.....8........3.9...........4.5.......71...6..83.5...7....1........
+...2..6..8...1.....9........3.8...........4.5.......71...6..93.5...7....1........
+...2..6.34..7.....1............7..4..2.6.................54..7..3....2....8.1....
+...2..6.5...81..........7....6..24...1.5......3.......2......1.4....6.......3....
+...2..6.51.7......4.........2.8.........4..7........1....3..2..7...6.....9....8..
+...2..6.51.9......4.........2.6.........4..9........1....3..2..7...1.....8....3..
+...2..6.51.9......4.........2.7.........4..9........1....3..2..5...1.....7....8..
+...2..6.71.4....5.8.........9....2..7....4.......1.....2.6........9...3.........4
+...2..6.817.4.....3........4.....52.....3.7......1......68............41.........
+...2..6.85..6.7....1.......8..53..........41..............14.3.6.....2...........
+...2..6.917.4.....3........4.....52.....3.7......1......68............41.........
+...2..61...9....4.7...5........6.3...2......7.1.......8....5...3.....9.....1.....
+...2..61..93.................5...4.91..8...........3.....739...65...........4....
+...2..61.4........3.........1.93........8...4......7..8.4....3..5......2...6.....
+...2..63..7....1..4.........1..79.......6...2.......5.2.38...........7..5........
+...2..63.8......9.1...4.....3.5.9.........8.1.2........7.3.....6...1.............
+...2..64.5.9......1........8..7....3...8.4.........5...7.....8..6..5........1....
+...2..65..1.....2.79.......3..54..........1.7...8.........61...8.5...............
+...2..67.1.86.....5.........3.....9.4...5........1.....7.3..2.......4..1.........
+...2..68........7.3..........6...25..9...3.......1....1.......37..8.....4.....9..
+...2..7.........3.9.........7.5..6.4....3..8..1..........1.42..3.9......8........
+...2..7.....6.9....5....8.........92.3..7...........4.6...3.1..2.1........9......
+...2..7.....6.9....5....8.........92.3..8...........4.6...3.1..2.1........9......
+...2..7...1...........1....5..7.4....6.....13.......8.4..5..2..2.7..........3....
+...2..7...3..8..........1..5.2..........6..4.7...........7.15.....5....3.4.....6.
+...2..7...38.......5.......7..14....6.....3........5..1..6...4......5..8.......9.
+...2..7...4..1....5.......8.97.........8.5......6.........4.17...8...3..6........
+...2..7...49.......3.......7..81....5.....3........4..1..5...6......4..9.......8.
+...2..7...49.......3.......7..82....5.....3........4..1..5...6......4..9.......8.
+...2..7...86.......3.......4..5.2..........81....6..3.2..4..5........1......8....
+...2..7...9..8..........1..7.2..........5..4.6...........7.12.....6....3.4.....5.
+...2..7..8...3....1......4..275............81..........5....2...3.6.....4...1....
+...2..7..84.............1.......6.4..72.............83...12.5..3......6....7.....
+...2..7..84.............1.......6.4..72.............83...72.5..3......6....1.....
+...2..7.152..4..............17....4.....3.....8.......6.....39.3..8..........1...
+...2..7.386.5.....4..............25.6...8.......1......27...1......4..8..........
+...2..7.4.31.........5.........36.5.7.......9.8..1....4..7............3.......8..
+...2..7.5...61..........4....6..78...1.5......3.......2......1.4....8.......3....
+...2..7.6....4..........1..2...8..5.6.7......1.........9.1......3.....4....6.3...
+...2..71...3....4.8...5........6.3...2......8.1.......9....5...6.....9.....1.....
+...2..71...3....4.8...5........9.3...2......8.1.......9....5...6.....9.....1.....
+...2..71...5..8....4.......3..6..4......1......8......27.1............85........9
+...2..73.81................2.3....5....41...........9......21.8...6..4...5.......
+...2..8.....5.6...1............4.26..5.3.....7......1..2....3.......7..4....1....
+...2..8....1.......5.......6..3...4......9.1.2.........3.64....7.....9......1.5..
+...2..8...3.....2...1......6...39..........4......1...24.5.........7.3.18........
+...2..8...47.......6.......8..3.2......6....41............7.28.....54.........3..
+...2..8...6....3...18......4..3.........4..5.........12.....47.....15........6...
+...2..8...6....3...4......52...7.1......46...8..........1....76...3............4.
+...2..8...6....3...4......52...7.1......46...9..........1....76...3............4.
+...2..8...7....1..3........4...73.....8...9......5.....5.....67...8...4....1.....
+...2..8...74.......3.......2..5.6..........31....4..7.6....25........1......3....
+...2..8...9....4...1.......4.....27.6..51.........9...3..8.......6.....1.......5.
+...2..8..1.....3.....5.4......4...62.7.....5.3.........52....4.....1..........9..
+...2..8..4.......7.5..9.......6..32.7...4....1..........8....94.2.3..............
+...2..8..41...................34...6.7.5...4...2....17....71...3.....5...........
+...2..8..45........1.......2......1....3.8......7....46...4..5...7...3......1....
+...2..8..6.7........5......4......6.....7..5....3......2....1.3.....42...7..6....
+...2..8..97...................1.62..4.....1...9.........157........4...96......3.
+...2..8.31.5.6....7.........8.43..........71..........24.3..........1.5..........
+...2..8.37.1...6..9.........2....5.....47........19.......5..7.1...........3.....
+...2..8.37.1...6..9.........2....5.....47........19.......5..7.1...........8.....
+...2..8.4...9..3..1........5....6.1.....4.........8....84.3.......7...5..2.......
+...2..8.4...9..3..1........5....6.1.....8.........4....48.3.......7...5..2.......
+...2..8.46.1...............7.....65..2.4..........8.1..8....3.....71........6....
+...2..8.96.4.......3.......7......15....38.......6.....2....34.1..5..............
+...2..83...1.......4...........16.5.3.....7......4.....6....2.12..3..........8...
+...2..86.1..5.....4........5.7.4........1..9..2....3..3.......1.8.6..............
+...2..9....1............2..3...4..5.8...1.....2....6.....7...18.9.8............4.
+...2..9....1.......3.......2..45...6...6...3.9.........7..31...8.....2.......7...
+...2..9...31........6.............182..5............3..6....25.7....84......1....
+...2..9...4....1..73.........6....74...1............3.8.9.6........74...2........
+...2..9..74.............1.......6.7..92.............43...82.5..3......6....9.....
+...2..9..8..6.....1.........7.3.5..........14........8....14.6..2....7......3....
+...2..9.61.4.7....8.........9.63..........81..........23.5..........1.4..........
+...2..9.75...4..........3....37..2......8.....7.......84.....5....3.1...6........
+...2..95.13..8.............7.5....2....43.........9...6.....3.1.4.5..............
+...2..95.83..6.............7.5....2....43.........9...6.....3.1.4.5..............
+...2.1.........3........6..5..1...7.3.67.....8.........9.....2..4..8........3.8..
+...2.1......3...5..5.....4.2.3..........7.5......8.......6..1.347.............2..
+...2.1......6....34......8..6....2......3..4..51.........5..6..8...7..........1..
+...2.1....3.....4......7.....6...1.2.5.73............8......97.8...5....1........
+...2.1....3.....9.............75..6.2.1......8..6......9..3..........1.3....4.8..
+...2.1....3....8..6.........5.37.......4...2..9.......4.1....6.....8.7..2........
+...2.1....4.....9.............75..6.2.1......8..6......9..3..........1.3....4.8..
+...2.1....4....3..7.........6.34.......5...2..9.......5.1....7.....3.8..2........
+...2.1....6....7...............6.3.....47....5......1....73.6..1.......285.......
+...2.1....7.....9.............35..6.2.1......8..6......4..7..........1.3....4.8..
+...2.1....74..................5...4716.3.............83.....25.2...7..........1..
+...2.1....8....4..7..9........7...9..4......6.5.......9......2.3...1........4.5..
+...2.1....84..................5...4856.3.............91.....25.7...8..........6..
+...2.1....84..................6...4817.3.............95.....26.2...8..........1..
+...2.1...3.....5..............34.6...19.........5.........3..1942..............27
+...2.1...5.....8............274.........5.7...1.6.....3......2.8...3...........61
+...2.1...5.....8............274.........5.9...1.6.....3......2.8...3...........61
+...2.1...5.6......7...........1..2.86...5..........4..3......7..2.4.........9..6.
+...2.1...6.3......7.........1....62.....3.7...9.4........1....45.....8......5....
+...2.1...6.3......8.........1....52.....3.6...9.4........1....45.....7......6....
+...2.1...7......3.............6..8.243..7.............5.2...1...6.4.........3..8.
+...2.1...7......4..5....9...12...7......3.....6..............613..8.....5...9....
+...2.1...7.3......6.........1....62.....3.7...9.4........1....45.....8......7....
+...2.1...8......3....7..6...216......7..3...........4.5.8.4..........2..4........
+...2.1...8......5............7.8..3..6....5...2..........64.2..9.......83..5.....
+...2.1...8.....6..7.....5.....3...2456..8..............2.....1..3.4.........6....
+...2.1..41..3......6......82......9.....7........6..........12.5.....3...74......
+...2.1..48......7...........216.........7.85..........5...8.3...4....6.1.........
+...2.1..65.4...3..9.........286......7..4..........5.....7...2.3...5.............
+...2.1.6.7.5...3.....8.....4...3.5..3...............2..2.6.........9.4...1.......
+...2.1.6.78....4..3............7.35...16..............43..8.......1....2.........
+...2.1.7.3.4...5.....8.....6...3.4..5...............2..2.7.........6.3...1.......
+...2.1.7.3.5...6.....8.....4...3.5..6...............2..2.7.........9.4...1.......
+...2.1.7.3.5...6.....8.....6...3.5..9...............2..2.7.........9.4...1.......
+...2.1.7.3.9...6.....8.....6...3.5..4...............2..2.7.........5.4...1.......
+...2.1.7.34................5...3......2....1.......8......6.3.5.615...........4..
+...2.1.7.34................5...3......2....1.......9......6.3.5.185...........4..
+...2.1.7.35................6...3......2....1.......5......4.3.6.186...........4..
+...2.1.7.35................6...3......2....1.......5......4.3.6.816...........4..
+...2.1.7.35................6...3......2....1.......5......7.3.6.186...........4..
+...2.1.7.4.5...3.....8.....6...3.5..9...............2..2.7.........9.4...1.......
+...2.1.7.8.5...3.....9.....6...3.5..3...............2..2.7.........6.4...1.......
+...2.1.7.93................5...3......2....1.......9......6.3.5.185...........4..
+...2.1.7.94................5...4......2....1.......9......6.3.5.185...........4..
+...2.1.8.3.5...6.....9.....7...3.5..6...............2..2.8.........7.4...1.......
+...2.1.8.45................6...4......2....1.......5......7.3.6.196...........4..
+...2.14...5..........7........36.1...3..5..........7.27......8.....3..6.1........
+...2.15..3.7...6..9............7..398.....4............1....2.....83.......4.....
+...2.3..........784..........35..2......7..........6..78..5.......6..31..4.......
+...2.3..........784..........35..2......7..........9..78..5.......6..31..4.......
+...2.3......6...1.7.....4........6.24............8........4.15..62.....3.7.......
+...2.3..58.....4..1..........6....32.2.....7.....8.....3.7.........4.1........8..
+...2.3..6.4.....1.7............8.45...1......2........3.......2.5..4.......6..7..
+...2.3..7.6....2.....1......5.74...........138............6.82.1............9....
+...2.3.147......6...8.........76.8...1...........2....6.....2..5....1......4.....
+...2.3.5..1....8..9........5......32...71................4..1.6....8.7..3........
+...2.3.6....7....21.........3..5........1.4...27.........6...7.8.....5......4....
+...2.3.7..15................5.61...........23....8....2.74.....3.....6........1..
+...2.3.7..91.........8.....3......2.4...1.......7......5..6.1.42..............5..
+...2.3.7.5.1...........9.......4.1.5.3......6......4..4..81.....2.....3..........
+...2.3.7.6.1...............5..41.....2.....9.....86.........6.5.3.8...........1..
+...2.3.7.6.1...........8.......4.1.5.3......6......4..4..51.....2.....3..........
+...2.3.7.6.1...........8.......5.6.4.3......5......1..4..61.....2.....3..........
+...2.3.7.8.1...........9.......6.1.5.3......6......4..5..61.....2.....3..........
+...2.3.8.7.1...........9.......6.7.4.3......6......1..5..71.....2.....3..........
+...2.3.8.9.1................3....6......7.1.....8.....6..51........4...2.9.....3.
+...2.36..1...........8.........5.4.762........8.....3...4.1...5......32..........
+...2.37..1.6...8.....4.....5...7.6......1.....2........3.....2....9...4.7........
+...2.37..1.6...8.....4.....5...7.6......1.....2........3.....2....9...4.8........
+...2.4..........678...........81..5.4.2......3..9......1....4...6.5...........3..
+...2.4....1....8...6.3.....3.9....2.....1...........4.......6582..7...........1..
+...2.4...3.....5.......7...1...6...........47.......2....13.6...4.5.......8...3..
+...2.4...3.....7........1......1.56..28..........3.......5...28.6.....4.7........
+...2.4...3.....7........1......7.56..48..........3.......6...48.7.....2.1........
+...2.4...3.....7........1......7.56..49..........3.......8...49.7.....2.1........
+...2.4...3.....7........1......8.56..29..........3.......5...29.3.....4.7........
+...2.4...3.....7........1......8.56..29..........3.......6...29.5.....4.7........
+...2.4...6..7.....91.......5...8.6....23...........1..1...9...........24.......3.
+...2.4...7.....5.......9...3...8...........62.......4....13.7...4.7.......6...8..
+...2.4...9.....3........1.....7...48.5.....2...3.......1..9.5..4......6.....3....
+...2.4..16.....3.............8.6..7..4......2...1.....72...5.......3.86..........
+...2.4..36.....1....78......5.3...2.1.....7..9............1.9...8........2.......
+...2.4.5..1............7...4......7.5...1.......6....9....8.6.13.7............2..
+...2.4.5.3.1...............7...6.3.....5....8.4........2....74....83........1....
+...2.4.7..81...............53..1....4......2....8.........3.7.52..6...........1..
+...2.4.8..71...............53..7....4......2....1.........3.8.52..6...........7..
+...2.4.9.3.1...............7...6.3.....5....8.4........2....74....83........1....
+...2.45...1......8...7..3..5...9........1..6.7.2..........6..4.......7.....5.....
+...2.45...73...............52...........7...3....6..8.2..5..4....6.3.......1.....
+...2.48..6.1...............7......65....83....4........2....31....56.......4.....
+...2.5....1....7...3.............3672..8........4..1..5......24....1...........9.
+...2.5...1.....7.....8...4.6...3.....8......5.......2...74..1......1.6...2.......
+...2.5...3.....8........1......8.67..42..........3.......8...24.7.....5.1........
+...2.5...3.....8........1......9.67..42..........3.......9...24.6.....5.8........
+...2.5...3.....9........1......9.67..42..........3.......9...24.8.....5.1........
+...2.5...6......4....1......27...1...5...........6....8...3.6..4..7...........5.3
+...2.5...9.....8........1......9.67..42..........3.......1...24.7.....5.8........
+...2.5..4.7.4...3..9.6.....6.....2...8....................9..8.5...1....2.....6..
+...2.5..7.91.............4.....3.16.2..8...........9..46..1....5.......2.........
+...2.5..761................4.73.....2......5.......18......12..3...6........4....
+...2.5..871................6.83.....2......5.......19......12..3...7........4....
+...2.5.4.7.....3.....8......384...........1....5......17..3....6.......2.......8.
+...2.5.7..81...............64..1....5......2....7.........3.1.42..6...........8..
+...2.5.7.68..........4.....2.....54.3...6........1.....1......6..47...........3..
+...2.5.8..91...............64..1....5......2....8.........3.1.42..7...........9..
+...2.51..8........7...........74...8.1.............2...6....51.4..8.........7..3.
+...2.53.....7...5..1...........4..8126................5.....2..3..6.......8.1....
+...2.54.....3...5..1...........8..914.3.......6.......2.....3..7...1.........6...
+...2.54.....3...7..1...........8..914.3.......6.......2.....3..7...1.........6...
+...2.54...9.....73..........3..7...6...4..5...........5.2...1......3..8.4........
+...2.56..4......1....8......5..1..7..3......8.2.......7.....4.....3....21........
+...2.57..84....................1..43..26............8..75...2..3...4.......1.....
+...2.6..........13...........2...7.6....1..........2..31.8........7..65.45.......
+...2.6..........484...........81..5.6.2......3..9......1....6...4.5...........3..
+...2.6......4...2...3......1...3.7..42........6..5.......1....4..9...5......8....
+...2.6....8.3......1...........7.18.6.35...........9..4...8..1.2.......3.........
+...2.6...3......4....5.......4.8..........7.2......5......3.17.26........51......
+...2.6..18......7...........213.........7.85..........5...8.4...6....2.3.........
+...2.6.5.8.1...............46....2.....71....3...8........7...8.2.5...........3..
+...2.63...51...................157..28...........4....6..3...4.8.......1.......5.
+...2.65.....3...8..1...........9..145.3.......7.......2.....3..8...1.........7...
+...2.65...7.....34..........3..4...7...5..6...........6.2...1......3..8.5........
+...2.7......3...4..8....5..3..1....2.6..5...........3.....4.6..7.2........1......
+...2.7......6....8......5..5.....3.4...7...2.1.........2.....3.....3.1...8..5....
+...2.7....34..................53.46.7......2.1............4.1.82..1...........5..
+...2.7....9.....4..3.1.........4.95.2....8...1........7.......2...6..3......5....
+...2.7...1..........3..........4.31.....3..8..2........7.5....25...1.......6..4..
+...2.7...1.....3...............631...5.4.......2...7..83..1.......5...24.........
+...2.7...4..5.....1.....8...7......2..6.3.......6..4......8.31..5.......2........
+...2.7...7..8...........3..2.6.....74......8.....1.....5..3.6...13.............4.
+...2.7...9..4............1..2..1.....5....4.......6...1.3...2..6...3.......5..8..
+...2.7...9..4............1..2..1.....5....8.......6...1.3...2..6...3.......5..4..
+...2.7..4.3.5.....6.....9..15..4.....2.....7.......3..8...6.......7...5..........
+...2.7..86.....3.....1.....4..7...1.3.9......5............3.5...2..9.....1.......
+...2.7..86.....3.....1.....4..7...1.5.9......3............3.5...2..9.....1.......
+...2.7.1..8....5..2..6.........4.3.8.3....4.....1.....6......2.....8........3....
+...2.7.3.5.....1..4..8.....1...54..........86.............2.4...8.6......3.......
+...2.7.3.5.....1..4..8.....1...54..........86.............2.5...8.6......3.......
+...2.7.4..1...5.........6....2.....1...4..3..4...6....7......85...31.............
+...2.7.4.1.8.........4.........6.1.5.2.............8...7....32.5...1.......6.....
+...2.7.4.8..6..............1...83.........2.74............1.86..37.........5.....
+...2.71..6......3....4......47..........8..6..2.......5..36....1.......8......2..
+...2.71..6......3....4......47..........9..6..2.......5..36....1.......8......2..
+...2.71..6......4....5......57..........9..6..2.......4..36....1.......8......2..
+...2.73...7.4...........8...2.....4.....3.1......1....6..5...9.8.3......1........
+...2.73..6.1...................1..868.......5.2........7.3..24.5...6.............
+...2.756.1..3..................1..5..2....3......8.......6..72.8.1......4........
+...2.76..4..6.....1............1...5......73.9..........5....14.6.8......2.......
+...2.76..5.1.........4.....3...1.....7....2.....6.........3..19.2......5.......3.
+...2.76..5.1.........4.....3...1.....7....2.....6.........3..51.2......3.......8.
+...2.76..9.1.........4.....3...9.....7....2.....6.........5..93.2......1.......5.
+...2.8......3...2.1.....4......9..3.5...4............2...6..1.5.83............7..
+...2.8......3...2.5.....4......9..3.1...4............2...6..1.5.83............7..
+...2.8.....1...4...5...........6.14..7....5..8..3.....3......28....1............9
+...2.8.....63......4....1.....9..4..8......2.3............7.6.52......3.....1....
+...2.8.....63......4....1.....9..6..8......2.3............7.5.42......3.....1....
+...2.8....3.5.......1......2.....5......3...1.6.......8..1.7.........23.....4.6..
+...2.8....34..................53.47.8......2.1............4.1.92..6...........5..
+...2.8...5..6.....3.....9...8......2..7.4.......7..5......3.41..6.......2........
+...2.8...8..9...........3..2.7.....84......9.....5.....5..3.6...13.............4.
+...2.8.1.645..................5..4.8.3....2..1........8......3....75........4....
+...2.8.4.71.................421.....3.......5......7.....3..6..5...7......4....1.
+...2.8.6..3......1..........4..3.......6...2....7..5......1...48.....3..2.6......
+...2.8.6.3.1...............5...1.3.4.2.4...........7...8.....2....7..6......3....
+...2.85..1.4......7........4...1..7....3....1.2.5......3....2..6...4.............
+...2.86..4.1...............3..54.....6....8......9...7.8.7............34.......9.
+...2.86..5.1.........4.....3...1.....8....2.....6.........3..15.2......7.......3.
+...2.86..6......4....5......58..........4..7..2.......4..37....1.......9......2..
+...2.87..1..6.................5..12.4.9......3.........2....6...7..4........3...4
+...2.87..5.1.........4.....3...5.....8....2.....7.........3..56.2......1.......3.
+...2.87..6.1.........4.....3...1.....8....2.....7.........5..13.2......6.......5.
+...2.87..9.1.........4.....3...1.....8....2.....7.........5..13.2......6.......5.
+...2.9.....3.......6...........3.56.2.......4....1.......7..63.94.8...........1..
+...2.9....63.........1.....94....2......3.5......7....8......341..5............7.
+...2.98..7.1.........4.....3...1.....9....2.....6.........5..73.2......6.......1.
+...21...........38.......9.8.6..7.......4.1..3.....5...1.6..7.......8......3.....
+...21...........65.........8.....3......6.1....9..5...36....7...4.5........9.8...
+...21.....3....7......56...5......1..4.3.......8......1...2....6.....3.....5..4..
+...21.....3....9.....5..4...7...9.........8.........5.5.2....1.....46..78........
+...21.....53.........6..8..6.....2......54.........1..1..7...4........53.8.......
+...21.....6........5..........5.64..8......1....3.....2.....3.97.1.2..........5..
+...21.....8....3..........4..5..37..2..6.....1.4.............51.6.3............4.
+...21.....9....4...7....6...6...45..8......2....9.....2.3....8.1...........4.....
+...21....4.....8.........9.6..5.9....7....1.3...4......23.........6...5...1......
+...21....6.....4..4..9...........3.7.2.1.......8...6...9..8..2.7....6............
+...21....6.....4..5..9...........3.7.2.1.......8...6...9..8..2.7....6............
+...21....7.....6...........6..5...3...4.....1.......5232........5.4..........78..
+...21..5.7.3...6...........4....37.....85..1.6.........1.....2......74...........
+...21..8.54...3...............7...2165.......3..........248..........6........5..
+...21.3..4.....2.....7.........84.6..71...............53...2......5....16........
+...21.6..43................7.1.6...........32.....9...5..3.4....8.5...........1..
+...2164..9....................3...9....5...3..1...........7.2.15.......63.8......
+...23..........1.....6......5...1....6.....3.....8......73...4.8.....6.21.....5..
+...23.......5..7..8...........4..25.1....6.........3......18.6..32..............9
+...23......6...8...1..........8..6..3..4...........7.12...1..3......7.5......6...
+...23.....1......6....5.1..16.4...........83..4.......5.3....7....6.....2........
+...23.....4....7......8....57.4.....3......8........1....9..5..8.2........1...6..
+...23....1.....7.....8..........561..82.........4.....5....14...3..6............2
+...23....4.......5......7..6..4.1.........82.......3...38.9...........41.7.......
+...23....4..7...........1.......16...82.......3.........7....321....65......4....
+...23..46.......2.7........1...7.5.........8.3..........6...7...2.4..........19..
+...23..5..6.4......1............61.83..5...........6..5......4.4...7.........8...
+...23..5..8......1.9.......5....1.3.....8.9..2.........4.6..8..7..5..............
+...23..5.6.1...............5...71....3.....2....4..6........1.6.2.8...........7..
+...23..5.7..1.................3..18.6....7...1.........32.5..........7.6......4..
+...23..6..1......5.8...........5.1.46..3...........8..7.....32....4.1............
+...23..6..15.............2.4..62.....7....8.....3..........15.73..............1..
+...23..6..91..................5..1.46..7...........9..3......2..4...1......68....
+...23..6.4.....8...........1...54....7.....2......8....326.....5.......4......1..
+...23..7..1......5.8...........5.1.47..6...........8..6.....32....4.1............
+...23..7..1......5.9...........5.1.47..6...........9..8.....32....4.1............
+...23..7..1.6...........4.....18.5..7......2..........2.7.........4..1..3.....6..
+...23..7..41................6.1..5........4.82........5.....12.3...84............
+...23..7.8.1.............6.4...5.1...3.7.....6.....8...2.....3......15...........
+...23..8.9.1....................41.5.3.7...........9..5...41....2.....3....6.....
+...23..9..15...............4.....78.2..1.5......6......2....3..3...8............1
+...23..9..51...............4.....78.2..1.5......6......2....3..3...8............1
+...23.4...5.....7....6.....2..4..........8.5.........16.....2...8...7.......5.3..
+...23.7...51....................6.1978..4................1.5.2.2.....4.....9.....
+...23.7...81................6.....853...9...........1....5.8...2.....3..4..6.....
+...23.7..6.7.........8.....1...46...7..............3..5......46.2.3............1.
+...23.8...61....................4.1789..5................7.6.4.2.....5.....1.....
+...24.......8...3.1.....7..5...16....8.....4...............71.6.2.4...........5..
+...24.......8...3.5.....7..1...56....2.....4...............71.6.8.4...........5..
+...24......3...7..7..5.......8.3.....4......5.......1..5.1.2...6.....8........3..
+...24.....8....7........1......78.....2....4.3......5.4..3...2..1...76...........
+...24.....9....5..7........6...3..........21.......9.54......73.2.9........1.....
+...24....3.....1............4.....92.....18...6..........96..2.1.3......8..7.....
+...24...7.65...3.................64.2..7..............7......281..36........5....
+...24..3..8..........3.....4...1..2..1...8......7..........68.12.6............5..
+...24..3..8..........3.....4...1..2..1...8......7..........68.16.2............5..
+...24..3.7.1................4....68.5..1.9......7......2..3..........5.1......7..
+...24..3.8.1...............5..3.1....3.....4.......2......7.1.5.4.6...........8..
+...24..3.9.1...............5..3.1....3.....4.......6......8.1.5.4.7...........9..
+...24..5..13...7...........5......896..1.7......3.....49.............1......8....
+...24..5..3.6.....9.........8....3.2....51............5.4....7....3..4..1........
+...24..5..3.6.....9.........8....3.2....51............5.4....7....3..6..1........
+...24..5..7..........3.....4...1..2..1...7......6..........58.73.2............1..
+...24..6..8..........3.....4...1..2..1...8......7..........61.83.2............5..
+...24..6..8..........3.....4...1..3..1...8......7..........68.13.2............5..
+...24..6..8..........3.....4...1..3..1...8......7..........68.13.7............5..
+...24..6..8..........3.....4...1..3..1...8......7..........68.17.3............5..
+...24..6.37.......5..6.....8....3.........42.....1..........8.5.2.7.............3
+...24..6.7.1...............8..4.1......6..3...2.....5..4..5..........1.8......7..
+...24..7.....5....3........1..6.3....2....84......9...5.....3.6.74...............
+...24..9..8..........3.....4...1..2..1...8......7..........68.12.3............5..
+...24.1..7.....5............283...........74......8....1.....326...75............
+...24.7...5....8...1...........75.6.2.....4..............3...19.....8.5.7........
+...24.7...91................6.....153...7...........9....5.9...8.....4..2..6.....
+...24.8...39...............6.....2.1...7.3...4.........7.5...3.2...8...........9.
+...24.8...5....2...7.......6..1.5.......7...92.....3..4......6....8............5.
+...24.8...61....................7.3189..5................1.6.2.2.....5.....3.....
+...24.8...71....................5.3189..6................3.7.5.2.....6.....1.....
+...248...95...........3.......6..2........8.3.1.......3.8......4......1....7...5.
+...25.......1..7..6.....8.........213....7.............21.6......5...3...4.....8.
+...25......4....3.....1.......6..1.2..8..4....3....7..21....5..6...............8.
+...25....7.1......4.....3...5.....26....41..........8..6.8........1..4..3........
+...25...476.....3.1............7.1...2..6.....4..........8...2.3.....6.....4.....
+...25..1..3.6.....8.........7....3.2....41............1.5....7....3..5..4........
+...25..4.1.....7..............1..6....5.3.....4.......6..7.1....8....3.5.......9.
+...25..8.1.6...............3.....24....58.........63.....3.17...5........6.......
+...25.4..1.8.................7..1....2....3..6...8....5......81.6.3............7.
+...25.6..1.8...............4..1.8....2....5.....4.....75..6...........31....3....
+...26...........8........5....3..6.19..7.....5.........64...2...1....4......89...
+...26..........75.....1....23.5.............15...........7.2.8..61...4....9......
+...26....6.....8...5..............274...3......1........21.4......6..4...7....3..
+...26....7.....1.....4..3...4.....2..5...1.........8.....52..4.8....3...1........
+...26...5..31......7....4.....8.13..65................4...5..7...2...8...........
+...26..1...7....2..4.......2.51......3....8.....7..4......4.3..1............8....
+...26..1...7....2..5.......2.31......4....8.....7..5......5.3..1............8....
+...26..1..3.5....6.......9....7.34..1.....8..9........2...1.....5....2...........
+...26..1..5.3....6.......9....5.34..1.....7..9........2...1.....8....2...........
+...26..1..5.3....6.......9....7.34..1.....8..9........2...1.....7....2...........
+...26..3..8.1.....5.....7..4...37.........8.1.........3.....67..2.8..............
+...26..5..13...7...........2...9.........48..........16..5...2..7.3.1............
+...26..8.9.4................8.5...6.7....9...........1.2.6.........3.9..1.....4..
+...26..9...1......7........5..1.7....6.....2....3.....62..8..........1.4......3..
+...26.3..1...4....5.8.......2.73...........1..4.............6.4...1.5.........2..
+...26.4...5...3....81......2..4..6..1.............8......74...........83.......5.
+...26.4...5...3....81......6..4..2..1.............8......72...........83.......5.
+...26.4...5...3....81......6..4..2..1.............8......74...........83.......5.
+...26.5...81..................1.8..35....7...24.............14.9...3...........5.
+...26.5..43...................3.1...7..4.......6...9...82.5...........14.......7.
+...26.7..84.......1...9.....735............1..2.......6.......1...3.4.........2..
+...26.8...9..7.....4.......7...1...52......3........49...9.3.........1.....4.....
+...26.9...4..7.....8.......7...1...52......8........34...4.3.........1.....8.....
+...27.....4.....6.............6.4.5...95.....7........1....37......8.2..26.......
+...27.....8.....6........1....3..2.81..6.....5............564...3....7......1....
+...27....4.....1.....3..4...2.....3..5...1.........8.....53..2.8....6...1........
+...27....8.....9.....4..3...4.....2..5...9.........1.....52..4.9....6...1........
+...27..1..5.6....7.......9....5.34..1.....8..9........2...1.....6....2...........
+...27..1..8......3.............394..6.1......2...........1..25..3...8...7........
+...27..3..81.................4.16..........27.....8...53.6..4........1..2........
+...27..3.8.1...............4..5.1....2.....7.......5......2.1.4.3.6...........8..
+...27..5..1.4..............6.4..3.......1..3.2....8.........1.85..7...........4..
+...27..5..41...............2......3......74....56.....47....1.....5....8....3....
+...27..6.4.9...5......1.....72..........8.1...........83.......1..5........4...2.
+...27.5...6...3....81......2..5..4..1.............8......74...........83.......6.
+...27.6..1.......54.........76....3....5....4.....1.......3.78.5..4..............
+...279...6.1.....3.........5.....24.....1...........7..3....7.....8....12..4.....
+...28.....9.....7........1....3..2.91..6.....5............574...3....8......1....
+...28..3.1.5...6.....9......8....32.7...1.............4.....1.5.2.8..............
+...28..4..71...............4.6....2..3...1......57....2..6...........1.3......7..
+...28..7..41...................614..7......2.5.........5....1..2..7........3....6
+...28.1..3...5....4......7..5....2..6....4...............5...34.81..............7
+...28.5..43...................7.1...9..4.......8...3...23.6...........14.......9.
+...28.6..5......4.3........7.......3.1.9............5..8....1......45......3.7...
+...28.6..91................5..4.9.....7.....8.......1..823...........57.......1..
+...28.7...56...............3...7...........45.......6..346.5...2.....8.....1.....
+...286...1......45..........36...7...5.4.........1.........36..4..5............9.
+...286...7......45..........36...2...5.4.........1.........36..4..5............1.
+...289...1......6..........62.7........1..8..5.......43.8.4...........2.......9..
+...289...63....5...........4..57...........811...........6..4...8.....6...9......
+...29..........81..............1..9248.......7.........6.5..4.....7.43....1......
+...29....5......3..3..4.....4......3...8...5.7........1..5.62........4.9.........
+...29..3..1..3.....47.........6..7.41..............8..9......1......45.....8.....
+...29..7..13..................513.6.94.........5......2..8...........3.4......1..
+...29.4..53.....6..1.........76.3...4.....2.......1...8...4.......7...3..........
+...29.4..53.....6..1.........76.3...4.....8.......1...8...4.......7...3..........
+...29.5..1.38.....4.............3..4.9....6.....1.....2...6.....6..5...........1.
+...29.5..1.38.....4.............3..4.9....8.....1.....2...7.....6..5...........1.
+...3....1..4.......9.........8...54.1..7...........9...7.15....3.....6......9..2.
+...3....1..4.5.............39.....8.....2.5..16..........1.3......9..2........45.
+...3....1..7.4.....2.........5...89.6..1........2.....31.....5.5...8.4...........
+...3....1..7.4.....2.........5...89.6..1........2.....31.....5.5...9.4...........
+...3....1..8.5.....2.........6...54.7..1........2.....31.....6.6...9.4...........
+...3....1..8.5.....2.........6...79.4..1........2.....31.....7.5...7.4...........
+...3....1..8.5.....2.........6...94.7..1........2.....31.....6.6...9.4...........
+...3....1.2........9...........2.67.1....5...3......8..4....9.....6..2..7..1.....
+...3....1.2....7...6..8....1.9..........2..8.3........45.1..........43.........2.
+...3....1.46.......2.......5..7...........84....1.........295......4.62.3........
+...3....1.48.......2.......6..7...........58....1.........284......5.62.3........
+...3....1.7..5.................3.42.6.1..4...8...........1.6.5..2....7.....8.....
+...3....1.8..6.................4.52.7.1..5...9...........1.7.6..2....8.....9.....
+...3....124........7.......5.16..........729.3............2.74.6..1..............
+...3....126.........4......3......6.....48.......5....71.2.....6.....5........48.
+...3....16.7......4........5......4....1..2.......76......24....2..6.....3.....8.
+...3....162.........4......3......9.....48.......5....71.2.....2.....5........48.
+...3....2.14...............8...2........5..1.3.....5.....7..16.2..8......5....4..
+...3....24.....5..1.........3.5.6......2...1........8.....714...2....6......8....
+...3....25..4............6......25..7.....4.....6......62.4........1.7...3.....8.
+...3....26......7.4..1.........75.6..1..6.....3.......7....4......2..8........1..
+...3....268..............5.2.95..........18....3.......7....14.....8.6.....2.....
+...3....4.......35.6............21..3.7......4.........8.5..6.....41..........27.
+...3....4...5...9..1.......6.....1.78..9...........2..4.5....3.....21.........7..
+...3....4.8.....5.29.............91.3..6........7.....7....5..6....9.2......1....
+...3....5.6.....8.27.......62....1.....5.8......4.........1.2..3.4......5........
+...3....51......4...7.......3....2.6.5....7......1.......2.3.8.4.....1.....5.....
+...3....6.......34.5............28..6.1......3.........8.4..5.....61..........27.
+...3....6.1..4.....5...........7.51.6..2.....3.....4..8..6.2........3.........1..
+...3....6.1..4.....5...........7.51.6..2.....3.....9..8..6.2........3.........1..
+...3....64......8.1........5.....14....2.3......6.......3...6.7....1.5...2.......
+...3....64..5...........7......7..4.2.....5.......1...53..6.....7......1...4...8.
+...3....7.1..4.....5...........6.51.7..2.....3.....4..2..7.8........6.........1..
+...3....7.6....5..............1...4352.....6..........1.3...7......528....4......
+...3....7.7.....1....5.....6...4..2.3.....5......1.....2......8...8..3..14.......
+...3....8...1.....9..........4...59..8.6..........7.2.2...9.7...6....3......4....
+...3....8.5.....2....4.........516..4.......7......3...6....15.3..72.............
+...3....9.6.....1....4.....5...7..2.3.....4......1.....2......8...8..3..61.......
+...3....9.8....7.....2.........891..3.6......5...........6..53..4..7...........2.
+...3...1...4........9.......6.7...3.3.....8.......9....8.61....5.....2.9......4..
+...3...1...4........9.......8.7...6.3.....7.......9....7.81....5.....2.9......4..
+...3...1...54.....2.....5..7....2....3.....8.....9..4.......2.6.4.6...........7..
+...3...1...65......2........5..7.6..7..1...................65.21...4....3.....8..
+...3...1..2.....4......8...4.71.....3.......2........6.6..25.......4.8........3..
+...3...1..5..4...........2.3.1....7.....6.4..2.........8.1..6....6...5.....2.....
+...3...1..6...4...2............2.4.7.1..8......3...5..5..6.....7.....2.....1.....
+...3...1..7..4....2.........4....6.7..51........8.....1.3..........7.5..86.......
+...3...1..7..9....2.........4....6.7..51........8.....1.3..........7.5..86.......
+...3...1..7.4.....8...........65.4..1.......62.........4..82....5....3......1....
+...3...1..76...............14.5........2..6.7........85.....28.....47...3........
+...3...1..76...............15.4........2..6.7........83.....28.....57...4........
+...3...1..8..2....5.........6....2.83..1........7.....7..5.........6.8..1.....4..
+...3...1..8..4....2.........4....9.8..65........1.....1.3..........9.6..57.......
+...3...1..94......2............9.4.61..2.....3.....7...5....9..6..1........8.....
+...3...1.2.....7..6...5.....81....4.....2.5...........39....6.....1.8......4.....
+...3...1.2...5........2....4..1.7...7.....2.....8...........6.7.8....4...13......
+...3...1.2...5........2....5..1.7...7.....2.....8...........6.7.8....4...13......
+...3...1.2...5........2....5..1.7...7.....2.....8...........6.7.8....4...19......
+...3...1.2...6........8....1.3...7......9.5..4.........8....6.2.9.1........4.....
+...3...1.25..............4.7..1...6..8....7.....4.........3.2.8....8.5....1......
+...3...1.5.....7..2...........625....3.....8..1...........4.2..7.....5.....81....
+...3...1.5....7...8.............85...2..4.....1..........12...3..27.....6.....8..
+...3...1.52........7..8....1..4.........2.7..3.............36..4..1...........2.8
+...3...1.6.......2.........2...6.5.....8..34..............526.7..3...4...1.......
+...3...1.6...2........8....1.3...7......9.5..4.........8....6.2.9.1........4.....
+...3...1.7.....4............61.5.........47....3.........12..3.84....5.....6.....
+...3...1.7.6......5..........3...7.2.1.4..............48...5.......765......3....
+...3...1.8...4....2..........96.........2.8...1........3.1.9...4..5..7........2..
+...3...1.8...5....2.........4.1.....7.....8........2...16.4.....3.6.........2.5..
+...3...1.8...5....2.........4.1.....7.....8........2...19.4.....3.6.........2.5..
+...3...1.9.....2..6...5.....71....4.....2.5...........38....6.....1.7......4.....
+...3...1247..............5......69....1.5.....2.......6..1.........27...8.....4..
+...3...1782..................174.....8....5........2..437..........96...1........
+...3...1782..................174.....8....5........2..467..........93...1........
+...3...19..7..8...2............2.6.5.1.............2.....194...5.....73..........
+...3...2...48......1....6........5.18..5...........7..3......84.7...6.......1....
+...3...2...9...4..4........6..5..7.....8.3...7.....1...2.....35....1...........8.
+...3...2..7....4...........41.6........2...785............541..2.3........9......
+...3...2..7.5......9...6...2......3......98......1........4.17.6..2...........9..
+...3...2.1......4.9....8...73....1.....25.......4......25.6.........18...........
+...3...2.1.....5...........5...41..........638..........367.....4.2...........1.8
+...3...2.4.....5......2....1...64....7.....3......5....238.....5.....4.1.........
+...3...2.5.....4......4.........46.8.3..7.....1..........1....36.....5..4......7.
+...3...2.5.....6....1...........51...3.....4.7...6.....2.43.........15.8.........
+...3...2.6.....7....1...........61...3.....4.5...7.....2.43.........56.8.........
+...3...2149..............5......67....1.5.....2.......6..1.........27...8.....4..
+...3...2167..............5......86....1.5.....2.......4..1.........27...8.....4..
+...3...24....2..5.1...........5.6...7.....6.....8.........7.1...5....3...2...1...
+...3...24.76...............4...1..3.8....7.......6.......5..7.62..8...........1..
+...3...24.76...............4...6..3.8....7.......1.......5..7.62..8...........1..
+...3...25.8..6.............41....8.....2.5...6..7.....5.3..........4.1....2......
+...3...28.15..................61.5..2.9.......4.......6....2.4.8..7...........1..
+...3...4........18....7.....5.....3..2....5.....1.....4...5.7......6.2..1..4.....
+...3...4........18....7.....6.....3..2....6.....1.....4...2.7......5.2..1..4.....
+...3...4........18....7.....9.....3..2....5.....1.....4...5.7......6.2..1..4.....
+...3...4........19....8.....7.....3..2....7.....1.....4...5.8......6.2..1..4.....
+...3...4........25..1......65..4....2.....9......8.1.....1..8...7.9.....5........
+...3...4....1......8.........6.8.3..3.4..........2....1..6.4....5....2.8......7..
+...3...4...1......2.........7..6.2...4.7..........85..8...25.........61........3.
+...3...4...5.....9...2.....23....6......1.....6..........6..73.8.1..4.........2..
+...3...4...8..2....1........5....67.3..4........8..1..6.....2..4...5........1....
+...3...4..2.4......1.......3......2.....1.........5...7..28.6..6.....1.5......8..
+...3...4..5.......7........1..5..2..2.....7.1...8....6.3.....5.6....7.......1....
+...3...4..6........5.......3.2......4..1.........8.6..1..4.2.........5.6....5.7..
+...3...4..69.......5.......4......82...75........6....2..6..1.......85........9..
+...3...4..7........6.......3.2......4..1.........8.7..1..4.2.........5.7....5.6..
+...3...4.1....5.............34.6.........25....7......5.....1.2....4..6..8.7.....
+...3...4.1.9.............2.....9.1.5.4.............9...3.4...7.8..2..6.......7...
+...3...4.6....8...1.........2.....8...5.1........9.....374........6..1........5.9
+...3...4.7.......19........5...1.7...2.4...........1.......76...4.2......3.....8.
+...3...4.8.1......95........3.42.......8....17.....9........53.1...9.............
+...3...4.9.1.............2.....9.1.5.4.............9...3.4...7.8..2..6.......7...
+...3...41.5...7.............27...5.....18..3.....4.........32..8..6.....1........
+...3...4125................1.4.....6...52....6...7.....8....53......1.........7..
+...3...4158................1.4.....6...72....6...8.....2....53......1.........8..
+...3...4159................1.4.....6...82....6...9.....8....57......1.........9..
+...3...458....6................1.8..62..........54.......1.72...43........5......
+...3...476......3...1..........681..2..5......7.......5.....6...4.7.........2....
+...3...49.17.............2.....695..47...........5..........1.6...4.2...9........
+...3...5........18....7.....6.....3..4....6.....1.....5...2.7......6.2..1..5.....
+...3...5........19....8.....2.....3..4....6.....1.....5...6.8......7.2..1..5.....
+...3...5........472...........7..2..8.....3.......5....4..8.1....6.3.....57......
+...3...5...1......4............4.8...7..2....53..........1..94..8.5.....6.....2..
+...3...5..4.2.......8...6..3.1...7......8.4...........5..74.....3.....8.........1
+...3...5..5.....7.6...8.....3.1..6........8.4.........8.4...2.....51.......7.....
+...3...5..61........2......3..95..........2........1...8..7..3.4.....68......1...
+...3...5..81...............32.6.....5..2...4.........1....1.6..7.....3......48...
+...3...5..9....6.........2.3..5.7....8....9.....1..4......96..81............4....
+...3...5.2......4....1.........2..6..3....5....8......7....81.....5..3..4.......2
+...3...5.2......4....1.........2..6..3....5....9......7....81.....5..3..4.......2
+...3...5.4........1...........2.68..9.....1.....5....4.6..1.9...3.....2...5......
+...3...5.4.......71.........3.....9.....4.1....5...........74.8.2.5........6..3..
+...3...5.41.......7..1..........61.35...7........4...8.3.8...........72..........
+...3...5.6..1...........2......274......4...81...........5...1..3......6.24......
+...3...5.6..1...........2......274......4...81...........5...1..3......6.42......
+...3...5.7...8....1........67..1.........5..3.......2...25.4......2..6........1..
+...3...517.4..................51...83...8....24............236..1.............2..
+...3...52.8..76............5.24...........61.1........4..5......6....7..3........
+...3...54.68...............52...........6.8......1....4..5...3....2..6.1.....7...
+...3...542...7....8..........16...........82..5........4..2.........5..13.....6..
+...3...5429................5.4....7....82....7...9.....3....9.6......1.....5.....
+...3...58...5...2.1.........83.6........147...........4...7.1...2.8..............
+...3...581...............4..4...63....52.........1.7..7.....1...8.5............6.
+...3...6...7...1.....8.....4...17...5......3.....9....36.2...........9.1.8.......
+...3...6..8........7.......6.1..4.......7.8......2....3..6.5.........7.9...1..4..
+...3...6.2.....7....1..........8...1.5..2...........3..8....4.2...1..5..9..6.....
+...3...6.8.....5.....1......31..........8.4...2..5.......6..23.9...4...........7.
+...3...6.8.4.........5.9.....7...4.8.5.6...........2..2...8.1...9.....3..........
+...3...6125....................2.74...6...5...1...8...4...7.2....36..............
+...3...6125....................2.84...6...5...1...9...4...7.2....36..............
+...3...6125................4....25..1...7......6....3..2....8.....64.......1.....
+...3...617...42............2.....4.....1...8..4.......53...........8.2....16.....
+...3...617...42............4.....2.....1...8..2.......53...........8.4....16.....
+...3...68.41...................2..5.8..6.......7...1......517...6.4.....2........
+...3...695.1.4....8........4...7.1...2.6...............9.2...3......15...........
+...3...7....8.4....1..........26..1.5.4......8........3.....4...7..9........1.5..
+...3...7..1..9.....6.....5......41........8.93..5.........1.62.5........4........
+...3...7..2........4.......1.....6....37...........4.1...524.......6.2..8......1.
+...3...7..2.....3...1.......4..2.1..6....1.......8....7..5.3......4..6........2..
+...3...7..2....6..1.........1..62..........43......5..3.74.........1.2.....8.....
+...3...7..4.....8.2..........57........4..2..9.........6..2.1....7....4.....9.5..
+...3...7..6....4....1.........2...5.7......3..1..8....3..5.4.......6.1........8..
+...3...7.1..............4.....72....5.....8..2..6......73.4.....6......1.....85..
+...3...7.1.....4......6.........169..3........5.......9.4...1.....53...2...8.....
+...3...7.15..........2.7...2..7....36.8.............4.....1.6...4....1....2......
+...3...7.24..............1...317.....5....4.6...8.....6....45........2....1......
+...3...7.24..............1...317.....5....4.9...8.....6....45........2....1......
+...3...7.4.....2..5.8.......7.....3.....54....1.......2.....4.....1.3......76....
+...3...7.4...8................8....2.3.....5.1...4......6..74...735...........1..
+...3...7.54..............1...317.....6....4.9...8.....4....65........2....1......
+...3...71.4..9.............3.1..........5.9..76.......2..7.1....8.....9.......4..
+...3...782.1.............3.4...215..67...........4.........42...8.7..............
+...3...782.1............4...7..61...5.....9......2....68.....1....5.2............
+...3...8......6.4.1...........74.2..96......3...8........5..9...47........6......
+...3...8...1.......6.........4.17...2......6.......5.....5..1.483.2...........7..
+...3...8...5.....9...2.....23....6......1.....6..........6..73.9.1..4.........2..
+...3...8..14...................9.1.48..2...........9..2..84........1...63......5.
+...3...8..4.......7........6.....7.1...42.......8......5...72......1.6....3....4.
+...3...8..4.......7........6.....7.1...42.......8......5...72......1.6....3....5.
+...3...8..4....2...1.......3......5.....41......6.2...7..85....8.......2......4..
+...3...8..4..2....76.......8.1..........6.4.........5..2....6.....8....13..5.....
+...3...8..51........2......8..93..........2........1...7..6..3.4.....57......1...
+...3...8..9....5.........2.3..2.6....7....9.....1..4......95..71............4....
+...3...8.2...5...........1..817.........9.6....3............5.2.4.1.....6.....9..
+...3...8.24..............1...318.....7....4.6...9.....6....45........2....1......
+...3...8.41.......2..1..........61.35...2........4...7.3.7...........52..........
+...3...8.41.......2..1..........61.35...2........4...7.3.7...........92..........
+...3...8.54..............1...318.....7....4.6...9.....6....45........2....1......
+...3...8.6..8.....1............5.1.7.8.4...........2...5.....3.....1.6....7..2...
+...3...8.9...5...........1..817.........2.6....3............9.2.4.1.....6.....5..
+...3...9..51........2......9..73..........2........1...7..6..3.4.....58......1...
+...3...9.15..........2.9...2..7....36.8.............4.....1.6...4....1....2......
+...3...9.15..........9.2...2..7....36.8.............4.....1.6...4....1....2......
+...3...9.2.1........4......47.6...........1.2......8......814...3.....5.....9....
+...3...9.51..............2.....6.1.4.3.8..............4...1.6....9....3....7..5..
+...3...917.2.6....8...........5..6.4...1.9............41...........2.7.........8.
+...3...965.1.4....8........4...7.1...2.6...............9.2...3......15...........
+...3...97452................3.9...5.....8.4...........8...4.2..19.7..............
+...3...97452................7.9...5.....8.4...........8...4.2..19.7..............
+...3..1....2......5........6..1....4.1.8.....7......5.4...5..2..3....8......6....
+...3..1...23.......7..4.....5...9...6.....3......2....9..6...8........721........
+...3..1...4.....5.7....8.........36..2..7..........8.....64..2.8.1..............7
+...3..1...4....3..2.............6.82.3..4........5....7.21...........45....9.....
+...3..1...5....7...2.......9..7.1..........543..8.........5..261.9...............
+...3..1..2...4................5.3..67......2.8..1.........72.4..5....6...1.......
+...3..1..28........6......45..1..2...3.....6....9.....7.1..........64.......8....
+...3..1..5.8......7........13.6........2...86.9...........4..5.....58.........3..
+...3..1..62.................59.8...........26.......4.24...6......17.9..3........
+...3..1..72.................69.8...........27.......4.24...7......51.9..3........
+...3..1.26.9..5................76.5..1.......8.........2.1.....7......6.....4.8..
+...3..1.2645...............2.....3..3...5........7..4..7.....5..8...1......2.....
+...3..1.4.9..8..........2..56.....8......2......1.......1.54...2.....7.........5.
+...3..1.5.6..7.................5..7.3.4......1.........72....6....1.83.....4.....
+...3..1.58..4..6..9........2...8.......7....3.............9..8..5...2....3.....4.
+...3..1.65....4...........7..627........1.3..4......8....5...4..1........7.......
+...3..1.69....4...........7..627........1.3..4......8....5...4..1........7.......
+...3..1.74...7..........5..61....3......48.2..5.......2......48...1..............
+...3..1.74...8..........5..61....3......49.2..5.......2......49...1..............
+...3..1.762...................54..6..8..6......1.....94.....82....7.1............
+...3..1.762...................54..6..8..9......1.....24.....82....7.1............
+...3..1.78..2...........4..6.....38..71.4.............32.....5.....71............
+...3..1.8..2...4..6............7..6..4..5.....1.......7......9.2..4........1.3...
+...3..1.84.....2......7....5......3.7..6........1.2.......5..7..2....6...1.......
+...3..1.86.....5............4..7..2..13..................4.13..5.7....6....2.....
+...3..1.86...8..........5..71....3......46.2..5.......2......64...1..............
+...3..1.86...9..........5..2......64...1..............7.1...3......46.2..5.......
+...3..1.97.2.4....8...........1..3.54...........9.........2.67..1..............2.
+...3..16.4..............7...3...8..4.1.6............2.2.4.....5...71....5........
+...3..18.2..4.....7......5..1...3......6....2.8............15..4...7........2....
+...3..2....4....6.7...1.....5..3.1.7.96..................6.2.9.1...........8.....
+...3..2....5....1.....8....23.4............85.6.........7.51.........3.64........
+...3..2...1..4.....78......3..26....4......7.........16.....3...5...7..........8.
+...3..2...1..4.....79......3..28....4......7.........16.....3...5...7..........9.
+...3..2...31.......9.......4..7.2..........91.........2...6..5.8.....7......39...
+...3..2...4..2......6.....1...6.4....5....8..2.....5..3..1...7...8.............4.
+...3..2...4..7................6.29...17......3............1..8765.4.....2........
+...3..2...4..8................6.23...18......7............1..8965.4.....2........
+...3..2...4.7......1.......5..2..3......4...8.....6.......1.64.2..5.....3........
+...3..2...45.......1.......7..82....2..6...4.9.......1....51.........83..........
+...3..2...6.4......5....6..3..5...........7..2............1..568....7.......6..4.
+...3..2...61.......7.......3......87....1...........6....2.61....9...4..5..8.....
+...3..2...76.......9...........67...4.....8..........43..14.......2...9.......56.
+...3..2...8....5...9........1..4....6..5............1.2.7...3.53.....6......8....
+...3..2...8....5...9........1..4....6..5............1.2.7...3.53.....6......9....
+...3..2...9..5................7.23...15......8............1..5476.4.....2........
+...3..2...9..5................7.28...15......3............1..5476.4.....2........
+...3..2..1.......5.....7......45..1..37.........8...........7264...1..........3..
+...3..2..1.7......6.........2....53.7...1................8.2..34......1....5....7
+...3..2..4.....6.......8....8.5.1.........43.....6.....6.....817..42.............
+...3..2..4.8......7........6......87...53.......1..........7.24.2....3...1.......
+...3..2..47........1..........2....75......1....8.6.......1..5.8.3.......2....6..
+...3..2..5......7.....1.....3.86...........45..1......4....5.........3.1.7....6..
+...3..2..5......9.1.6.......23...7......51............4...6...5.7.....8....2.....
+...3..2..5......9.1.6.......32...7......51............4...6...5.7.....8....2.....
+...3..2..6.1......8........5...61....4.....3.....5.....2.7.4.........6.1..9......
+...3..2..7......5.......8...3.2....61.......4...6...7.4...7.....2....3......1....
+...3..2..8...4....1.4...........174.52...6.............6.27...........81.........
+...3..2..8..2.....1.........3.6.5..........14........8....14.6..2....7......3....
+...3..2.7.....76..1..........8.5..1..7.2...........3......18.4.62................
+...3..2.85......4.1.........8..6.7...2...1.......54.....92............15.........
+...3..21.7..6...........8..3.....6.95...4.........2......5....7.2.....4..1.......
+...3..28..1.....7.4...5.......6..3.4..1.........2......5..17...2.....6...........
+...3..28..1.....7.4...5.......6..3.4..1.........2......5..17...3.....6...........
+...3..29..1.....7.4...5.......6..3.4..1.........2......5..17...2.....8...........
+...3..29..1.....7.4...5.......6..3.4..1.........2......5..17...3.....8...........
+...3..4....2....6.7...1.....5..3.1.7.96..................6.2.9.1...........8.....
+...3..4....2....6.8...1.....5..7.8.1.36..................6.2.9.1...........9.....
+...3..4....2....6.8...1.....5..7.8.1.63..................6.2.9.1...........9.....
+...3..4....2....9.8...1.....5..7.1.8.93..................6.2.7.1...........9.....
+...3..4...1....5...65......2.....8......71......6.5...4...2...7.......1....4.....
+...3..4...6.5.....9........2......698.74............1...3...2...4..9........1....
+...3..4..1.9......7.........4.2.6....8.....7.........1.6.5..2......1..9.3........
+...3..4..1.9......7.........4.6.2....8.....7.........1.6.5..2......1..9.3........
+...3..4..1.9......8.........4.7.2....5.....8.........1.6.5..2......1..9.3........
+...3..4..6....2.....7...1.......6.82.1...........5.......17.3..8......6....4.....
+...3..4..8..5.....7.6.......3....1......6.........8......15..7.......2.9.......86
+...3..4.2......1..8........9....6.5.....42......1........53..8...1.7.....2.......
+...3..4.26...8....1............1..3..2......97...........2..1..5......8..4.9.....
+...3..4.852.............1..3...8..5......9.6.....1.......6.2....18........4......
+...3..4.869.............1..5...8..9......9.2.....1.......6.2....18........4......
+...3..41.72.....................82.6..1..............72..54....68...........1..3.
+...3..48.1.........5.......9......612...5.......4.......3..82......19....4.......
+...3..48.61...........7......4...37.5....6.......2....2....1..6...4.....7........
+...3..5....1.......8.......53.7............81.......4.2...5.6..3....4.......21...
+...3..5....6....7.1....8....7....3......6...1..4..1....5..3.......7...4.2........
+...3..5....6...2...7.8.....4..1...3...2.9.............3...6.....1.....8.5....2...
+...3..5...17.......4....7......5..183..2..................81.4.2.....36..........
+...3..5...4.....6....2.....2..8.......5....4........19.6...47..8.....2......1....
+...3..5...7........6..............723..5........4...9.1...7.8......2..6.5.....4..
+...3..5...7.6.....4.8......3..7...........8.4......1..26.....7......8.6.....1....
+...3..5...8.....2..........1..4..3...6..2.........7...5.31.........6..724........
+...3..5..1.............6...4...81....2..5.3..............6...14.937............8.
+...3..5..2......7.6..........7.26....3....4...5..........1...8.8.......2....54...
+...3..5..2...8..............375.....1......4.....3..2.6....2......1....4.8....3..
+...3..5..2...8..............375.....1......6.....3..2.6....2......1....4.8....3..
+...3..5..2...8..............635.....1......2.....3..4.7....2......1....4.8....3..
+...3..5..2...8..............635.....1......2.....3..7.7....2......1....4.8....3..
+...3..5..8..6.....1.........3.2.5..........81........6....86.4..2....7......4....
+...3..5.62.8.....4.........75....4.....82........1.....3...7...6......8........1.
+...3..5.642.1......7.......5.....3......7.8......2.....6.....1.3..5............2.
+...3..5.842.1......6.......5.....3......6.7......2.....4.....1.3..5............2.
+...3..5.87.1............2......14.9.82...........9....4.....61..8.2..............
+...3..5.87.1.........6...4..5..12...6......9..........28....1.....96.............
+...3..5.97.1.........8...4..5..12...6......8..........29....1.....68.............
+...3..51.7.8.6.......8...9..5..4.2...1................8....1...2.....4.....9.....
+...3..54....5.6....1...........2..183..7.....9.........6..18...5.....3...........
+...3..54....5.6....1...........2..198..7.....3.........6..19...5.....3...........
+...3..54...1..6................81..976.......5........37.4...........81.....2....
+...3..54...15.....2............9...1.4.7.....8............81.6..3....4.......2...
+...3..54...18.....2............6...1.4.5.....7............71.6..3....4.......2...
+...3..54...19.....2............8...1.4.5.....7............71.6..3....4.......2...
+...3..54.8.7......6...1....2....6..7.8....3.....5......3.4...1.........6.........
+...3..56..274......1...........1..2.8..5.....3.........6..2....4.....3........8..
+...3..56..274......1...........1..2.8..5.....3.........6..2....4.....3........9..
+...3..56..7...1.....4.....832.6.........5.4...........9.....13.....84............
+...3..57..1.6...8.......2.....9....17.2......3........53...........27.......4....
+...3..57..284......1...........1..2.9..6.....3.........7..2....4.....3........6..
+...3..57.8...2..............43...6.......8..2.5..1.......7.53..1...........4.....
+...3..57.8...9..............43...6.......8..2.5..1.......7.53..1...........4.....
+...3..58..1.....7.4...6.......5..3.4..1.........2......6..17...3.....2...........
+...3..58..1.....7.4...6.......5..3.4..1.........2......6..17...5.....2...........
+...3..58..1.....7.4...6.......5..3.6..1.........2......4..17...5.....2...........
+...3..58..1.6.....42.......3..81.........9.72.........8.....6.......7.......2....
+...3..59..1.....7.4...6.......5..3.4..1.........2......6..17...3.....8...........
+...3..59..1.....7.4...6.......5..3.4..1.........2......6..17...5.....8...........
+...3..6......7.5...1.......3..1.8.........72....9.....2.7.5...........184........
+...3..6.....4.7...5......2.1...6...........73...8.........2.16..43............5..
+...3..6.....7.2...1.........7.6..4........1.58............15.8..3.....2.....4....
+...3..6....5........9.......4.....577..2............1.83....2.....65.4.......1...
+...3..6...2....7....1..........2..1967.......3...........6.45..8......2....9.....
+...3..6...4..7................6.29...17......3............1..8725.4.....6........
+...3..6...8..5..........1..1.6..........8..5.3...........1.27.....9....4.2.....8.
+...3..6..4.....2...7..5........1..735........2...........2.4..6.1.....8....5.....
+...3..6..8......4....2......2.9............85..6....1.4....87...9....2......1....
+...3..6.25.1.........1......3....1......5.........7...7.....45..8.2.........4..3.
+...3..6.27.1.......9...........4..7..6..1....82............23..4......1....6.....
+...3..6.27.1.......9...........4..7..6..1....82............29..4......1....6.....
+...3..6.45.....1...2.8......36....2.....91............1.....7..7..2.........3....
+...3..6.45.....7...2.9......36....2.....71............7.....8..8..2.........3....
+...3..6.48.....5..2.........3.9........4..8..7......1.....8..7..4......9....1....
+...3..6.487...........1.........275.4..6.....3.........1....27........8....4.....
+...3..6.8..72......1...........7..153..6.....2........6.....3.......5.4.....1....
+...3..62.4.5............8......7..94.62..................25.1..7.......3.4.......
+...3..65...1..7................14..987.......6........38.5...........41.....2....
+...3..67..1..........7.....6.....1.54..8.....7............152..3.8....4..........
+...3..7.........1.7.........5..4..6..38...5......1....16.2........8..3..4........
+...3..7.....4.7...6.....5......2.1...4.9.......78.........6..491...............3.
+...3..7....4.6..........1.....5.13...8.....4....7.........4..685......2.1........
+...3..7...19.......6.......2.....8.53..6.........1....4..7............19.....8.5.
+...3..7...4..8................7.23...18......6............1..8925.4.....7........
+...3..7...8.....4....2.........5..8.2..6.............13.1...6......8.2...5...4...
+...3..7...8..2....5......1..2....4.....1...6......3...9.16...........2.8....5....
+...3..7...85............1.........65.4..1........2....2.7...4..1..6........5.8...
+...3..7...9..5................7.28...15......3............1..5426.4.....7........
+...3..7..2......5.1.........3....46....81.........2......62...1.7..3..........5..
+...3..7..2.....5.....1.8...5...4...........1......5.......7.4.2.816......3.......
+...3..7..4.....2...3..5........1..365........2...........2.4..7.1.....8....5.....
+...3..7..4.....5.....2.7..........861...9...........2...7.5.1...28.......3.......
+...3..7..6......5..........56.....4....1.7..8.2.........1...9.....45........62...
+...3..7..94.......6....1...8...4.......72..........1.......5.98.7.2............4.
+...3..7.1.5..8.............7..6..2......5..4.1........3..2......4.....8......7..5
+...3..7.82...5..........1.....1.53..4..8.....62........81..........2..4..........
+...3..72.5.6............9......8..45.72..................26.1..8.......4.5.......
+...3..8.....2.6....1...........5..173...8....2...........1..5..6.....3...7..4....
+...3..8...15...........7.....7....153..2............4.94....6........2.8....1....
+...3..8...16...............35....2..2...7.........1.......6..175..2...4.........6
+...3..8...2....4....1...........5.1237................7..6..3.....42....8......5.
+...3..8...4....2...16......8..5.........4..6.........12.....57.....68........3...
+...3..8...4.8.......1......6....9.2..7.....1.8............25...3.....7......1.4..
+...3..8...5...7.....1......3.....26......43..8...5.....4..1...5...2............7.
+...3..8...5..6..........1......2..7...1........9......26.....5.7..1...2....9..4..
+...3..8...5..6..........1......2..7...1........9......26.....5.7..1...6....9..4..
+...3..8...6....1...4..5....5...6..4.3.8...........1....2.....6.7..8........7.....
+...3..8...9..5................8.23...15......7............1..5426.4.....8........
+...3..8..1.7......2........49....2.....6..4......1.....3.5...6......4..7.......1.
+...3..8..4.2......5.....6...3.6.8..........51...7.........5..2.1...4.....6.......
+...3..8..5.........2.......26.....5....1..3..4..8.........45.2.....6.7....1......
+...3..8..5.4......1.........7....64.....1.....8.......2..4....5...6.2.........31.
+...3..8..54........16......6.....2..3...4........1.......6...547..2............1.
+...3..8..6.2......4.....5...3.5.8..........61...7.........6..2.1...4.....7.......
+...3..8..7.....2.....1......3.5...1.....6..........7..6...7.4.9.1.....5.....2....
+...3..8..75............1...2......543..8........6...7..8..5.....6..4..........1..
+...3..8.25......4.1.........8..6.7...2...1.......54.....72............15.........
+...3..81.2.6.4....7........4......26...8..................6...2.9....1...1.5.....
+...3..84..51.........6......8..19...4.....3......5....3..2...6.....7...5.........
+...3..84..61.........8......7..19...5.....3......6....3..2...5.....7...1.........
+...3..84.1....7...2.............6..1..8.5.....4...........4..6..1.8.....6.....7..
+...3..84.61...........7......4...37.5....6.......2....2....1..6...4.....7........
+...3..86.7....8...14.......2.....5......15....6.....3.5.......1...64.............
+...3..9...17...............36....2..2...8.........1.......7..185..2...4.........7
+...3..9...4...6.....1..........217..36.......8.........2......65..9.........7..1.
+...3..9...61.......7............3.5........168..9.......58..2..3.....4......1....
+...3..9...61.......7.......3......87....1...........6....2.61....9...4..5..8.....
+...3..9..1.5......2.........6.7...8......4..5.......1.43....2.....8..4......1....
+...3..9..48..........1.....67..2...........51.2.....3.5.1..........8.4.....7.....
+...3..9..54..................3...24.....85....9.......6..7....11......58...2.....
+...3..9..7......8.1...5....62.4.....5.......7..........3....42..8..7.........1...
+...3..9..7...2..........1......5..7..8.....6...1......23.7.....5.....4.....1.6...
+...3.1..........4.......7..1.3....5.5...7.2..6.........8..2.....4......6...6....1
+...3.1..........4.......8..1.3....5.5...7.2..6.........9..8.....4......6...6....1
+...3.1..........4.......9..1.3....6.5...8.2..7.........6..9.....8......7...7....1
+...3.1.........25....8.....2..6..3.157..2....4.........81..........4..2..........
+...3.1.........25....8.....2..6..3.175..2....4.........81..........4..7..........
+...3.1.........52.............42..6..8..3......1.........7..8.34.....1..6...9....
+...3.1.........54.5.....6..731.........49......8.......1.....832...6.............
+...3.1.....4...6...7..........5...81..674....2........83...........5.4..1........
+...3.1.....54......8....7..3......1.....8..5....62....7.....2.41..............8..
+...3.1.....9...7.........4....5..3.1..8.6.......4.....2...4..8.13........5.......
+...3.1....2.....4..5....7..1..6..3......7.......5.........4..526....8...3........
+...3.1....2.....5..........6.....7.53.14............2....82....9.....1...4..5....
+...3.1....2....4...5.8.....6......17....2............67.1..........3.2........54.
+...3.1....4.....5..........8...2.......5...4.1.2.......7.65..........8.3....7.1..
+...3.1....4.....7...........8.27.6..........1....4....1.6..5...5......4.3.....8..
+...3.1....4.....8...........7.24.6..........1....8....1.6..5...5......4.3.....7..
+...3.1....45.......9.......72.....8.....5...9.........6.....21.3.....7.....94....
+...3.1....5.....8...........4.25.7..........1....8....1.7..6...6......4.3.....5..
+...3.1....5.9.....7......2.....8.64..1.5....................1.52...7....4.....9..
+...3.1....52.......6..........56..429................6...82..........91.3.....7..
+...3.1....8.....7.......5..74..2.......6..3.1.........3.12.........5..4.6........
+...3.1...2......4...7.......31..9.........6.........2..6....8.17..24........5....
+...3.1...2......7...........345...........16...8.......5....3.41...2....9...6....
+...3.1...2.....7...............7.8.2.6...4.....1.......3....61.7..25...........4.
+...3.1...2.....7.......68..9...4...........1....7.........5.4.2.314......6.......
+...3.1...2.....8.......74..9...4...........1....8.........6.5.2.315......7.......
+...3.1...4......6................3.1.2......85...4.......46..5..18...2.....7.....
+...3.1...4.....5..............6...235...4....8.......7.2.....1..3.7.........5.8..
+...3.1...4.....5..............6...238...4....5.......7.2.....1..3.7.........5.8..
+...3.1...5......2....4.......1...3...5..2...........9..6....1.42...83.........7..
+...3.1...5......7................3.1.2......86...5.......47..6..18...2.....5.....
+...3.1...5.7........2......14......3...62.............38.4.........6.72.......5..
+...3.1...6.....2...........7.5.4.68........3.4.........31.....5...72.....8.......
+...3.1...6.8...............31......4..6.8..5..........43.7.........5.86.......2..
+...3.1...6.8........2......14......3...72.............39.5.........7.82.......6..
+...3.1...6.9...............38......4..6.9..5..........43.7.........5.96.......2..
+...3.1...7......8........5.....8..2..6..2.....3....6..4.....1.....9..3..5.8......
+...3.1...9.....2...........7.5.4.68........3.2.........31.....5...76.....8.......
+...3.1..748.....6..........9...5.2.......8..3.............4.59..31.........2.....
+...3.1..758.....6..........4...5.2.......8..3.............4.59..31.........2.....
+...3.1..758.....6..........4...5.2.......8..3.............4.95..31.........2.....
+...3.1..8.......419............295...68..........4....2.....9...1.8............2.
+...3.1..85......7....4.....2...46......5..3..7.........3....4......7..2..1.......
+...3.1..86......7....4.....2...46......5..3..7.........3....4......7..2..1.......
+...3.1..97......8....4.....2...46......5..1..8.........3....4......8..2..1.......
+...3.1..97......8....6.....2...46......5..3..8.........3....6......8..2..1.......
+...3.1.2.6.....4...9.......5..49...........81............7..5...21......3.8......
+...3.1.4..82..................6..8.24..5...........9..7...9..3.3.....5......8....
+...3.1.5..2.5...........8..1.34.........8.2...........26..9...........318........
+...3.1.5.26..........7........42...36...5.................4.26..31............8..
+...3.1.6..4...2...7.......8...5..31.8...2..............31..........7.2.....6.....
+...3.1.8.62..........8............137..4.....5...6........4.6.5.1.............2..
+...3.14..25......8............4..19.7.....3..8.2.......1.6.........8........7....
+...3.17...56....8.4........3.8..9.......5..6...........4..6....9.....3.....8.....
+...3.2.....9...8.....4.....4.......2....7..6.1.........7.26.....3....54.......1..
+...3.2....4.....8....6......1..4..........2.3......8......7.51.2.......63.9......
+...3.2....6....7...5.......3..4...........67.......1.....16.5..8.......32...7....
+...3.2....7....8...6.......3..5...........18.......7.....17.6..2.......34...8....
+...3.2...4.....1...8.5........7...3.6.7......1.......5.3.....5.....7.6......1....
+...3.2...4.....5.....1........6...2.8...1...........83..3.4.1...2.....5.......7..
+...3.2...4.....7...............472....36......8.......75..1.......5...38.......6.
+...3.2...5.......1...6.....8..17...........2.......6.....58.4...76...3......1....
+...3.2...8.......7.......9..4..1......5...2......7.......8..53.79.6.....1........
+...3.2...8.....7.....4........1...362...5...........4..65...1......7.2...3.......
+...3.2..5.71...6...............1..7.4.3......5........3..4........5..8...6.....1.
+...3.2.6.1.4...5..8...........7...3.5...1..............236......5..4..........1..
+...3.2.6.8.....7..1...........41.....3......5....8........5.41..2.6...........8..
+...3.2.7...1......5.........2....63.4...5.......9......3....2.1....8.4.5.........
+...3.2.9.65........8.......3......2....54........81...2..7.........5.8........1..
+...3.24...71...........6...3..4...192...5..........3.....91....63................
+...3.24...91..................15..8.2............9....42...6.........71.6.......3
+...3.24..5.....2..1...............18.3.2.....9......5..2....6..8...1.......4.....
+...3.24..5.....2..1...............18.4.6.....9......5..2....3..8...1.......9.....
+...3.24..5.....2..1...............18.4.7.....9......5..2....3..8...1.......6.....
+...3.24..91.....8...........321............675........6...57.........3......6....
+...3.25...61....2.8........3..7......8.4............6.9.....4......6...8....1....
+...3.25...9.....74..........4..7...6...5..2...........3.2...1......4..8.5........
+...3.26...7.....45..........4..5...7...6..2...........3.2...1......4..8.6........
+...3.26..51..........6........25..4.7.3....8..........4...9.7........3.2.........
+...3.4......7...6..91......2..4...8.35...........1....4.6............1.9......5..
+...3.4....2.......5...........85..7..41.............9...4...1.32...7.6........4..
+...3.4....2.......5...........95..8..41.............7...4...1.32...7.6........4..
+...3.4....6......1...2...5.......2.4.5..1..........7..7.2...4......8..6.3........
+...3.4...5.......1...2......32...4.........56....1.......4..72..8....3..6........
+...3.4...5.....9.....8......4.1....36...............8.....5.67...3.2.5...8.......
+...3.4..7...5...1.8............826..3.....4...1........7.1.....2.....8......6....
+...3.4.1...2...5...........4...7.6...1..5....38.........5...2.7...8........1.....
+...3.4.1...2...5...........4...7.6...1..8....39.........8...2.7...1........9.....
+...3.4.1...8...5...........4...5.6...1..2....37.........5...2.6...1........7.....
+...3.4.6..1..........8.....6.3....4.....152..7............2.5..3..6.....4........
+...3.41..8..5...6.9.........3.2..4......8..2..1.......6...9.....7....3...........
+...3.46...576..................2..5732..............8.4..1.....2.....4......5....
+...3.46..7......2....8......6..2..1..3......5.9.......2.....4.....5....31........
+...3.46..72.................5.12......4...3.........9.....7..82..36.....1........
+...3.5...6......1....4.........7.52..4...........1....261.........8..4..5.......3
+...3.5...8......1....4.........2.56..4...........1....261.........7..4..5.......3
+...3.5..17......8....4.....2...46......5..3..8.........3....4......8..2..1.......
+...3.5..81.....9.....8......3.62....7.....41..............14.7..8.5..............
+...3.5.6..81...................8.1.734.............2..5..4...3.2...1.......6.....
+...3.5.8.4.1................3....85.7...4.......6.....6...1.4.2.5.8..............
+...3.54..7.1.........1...........53.2...7.............63.....7.....8...2.5.4.....
+...3.546.8...........7.....753.........4...1.......2..1...8.....7......3....1....
+...3.56.....2...5..1...........4..8127................5.....2..3..7.......8.1....
+...3.56..4..2.....8.........6...1....3....2......8...41...4..2....7..3...........
+...3.567.9...........8.....853.........4...1.......2..1...9.....8......3....1....
+...3.6.........7...8.......1...7.5..4.3.5......6...2.........41...4...3..2.......
+...3.6.........7...9.......1...7.5..4.3.8......6...2.........41...4...3..2.......
+...3.6.........7...9.......1...7.5..4.6.8......3...2.........41...4...6..2.......
+...3.6........28...8....4..1.6....2.....7.5..3..5............31.4..9.............
+...3.6........28...9....4..1.6....2.....7.5..3..5............31.4..9.............
+...3.6......8...4.1........46..1..........2.3......7...237.........4..5...6......
+...3.6...58........1....9.....71.8..6.....5....4......2......63.......4....8.....
+...3.6...7.....8..1.........3.5.........4.1....2.......6....5.4...2...3.4...8....
+...3.6...9.....5........1.7.68....3.....1......2.........6..25.17......4.........
+...3.6..8.1.....4...........7..1.2..8.......6......5......4.17.6.28..............
+...3.6..9.1.....4...........7..1.2..8.......6......5......4.17.6.28..............
+...3.6.2.7.8......4..5......3.....5..7..8........1.......2..7..1.....4....5......
+...3.6.5..81...................8.1.734.............2..6..4...3.2..5.........1....
+...3.6.7..4...8...5.........2.14....6......3.......5......9.4.2..1......3........
+...3.62..4......8....2.....1...42...8.....5.............6.7..4..2.5.............1
+...3.62..4......8....2.....1...42...9.....5.............6.7..4..2.5.............1
+...3.62..7.1...4..5........8.....9.3....1.............96.8........2...1........5.
+...3.64...81...............3.....2.....58.......1.....27...4...6...7..1.........3
+...3.65..1.....8.....4.........2.1.7.3.7......6.......2...15..........4........3.
+...3.67..4......2....8......6..2..1..3......8.5.......2.....4.....5....31........
+...3.67..4......2....8......6..2..1..4......8.3.......2.....5.....4....31........
+...3.67..5..4.....8.........7...1....3....4......8...51...5..2....2..3...........
+...3.7.........4.8...6...1.4.2...3......1....6...........4..72..18.......5.......
+...3.7........25...8....4..7.3....2.....8.6..1..5............31.5..6.............
+...3.7......6...4.5.....2.........768...9............3...28.4...39............1..
+...3.7.....92......1....5..7..8...........9.46.....1..26.....3.....1...........7.
+...3.7...2......8....4.........6.27..4.1.....3........5...2.1........6.4.7.......
+...3.7...3..6...........1....4.8..2.7.......3.......7..9..1.5...2....6..........4
+...3.7...4.....5........2..2...5.4.....8...6...1.......3.....79.8.....3.....2....
+...3.7...5.....6........1.8.79....3.....1......2.........7..25.18......4.........
+...3.7...9..2............1..2..1.....5....8.......6...1.4...2..6...4.......5..3..
+...3.7.4.2..4.....1.........4.9...........2.8......1......25....7.....3.....8.6..
+...3.7.6.8.....2..1..4.....2...8.1...4.....3...........735.........1.....9.......
+...3.7.6.8.1...............26.....7.....4.1..5...8.....7.6........2..8........4..
+...3.7.8.1...........2......8.....235...14................5.1.9..3...4...6.......
+...3.71...65............3..7.38.........4..5........2..4..5..6.8.....7...........
+...3.71..6..4.....2......8..7.1..4..5...2.................6..2843................
+...3.71..8.......2...5.........2..56.3....4...1.......6...5..........73.2........
+...3.74..1.9......6...........45.7.........1....6.....83....2......9...5.....1...
+...3.74..25.......1..........3...7......26.......5....51.....2.6..4.............8
+...3.74..5......2....8......7..2..1..4......3.6.......2.....5.....6....71........
+...3.76...4..5..9..........6.32............41..........1..4....2.....3..78.......
+...3.76..24..1...............165.....8.....2....1.....3...42.........1.5.........
+...3.76..7......2....8......6..2..1..4......8.3.......2.....5.....4....31........
+...3.78..5......2....4......7..2..1..4......3.6.......2.....5.....6....41........
+...3.78..5......2....4......7..2..1..4......3.6.......2.....5.....6....71........
+...3.78..8......2....4......7..2..1..4......9.3.......2.....5.....6....31........
+...3.8......5..9..1.....6......4..822...6.....5.....3.7.9...1.........5..........
+...3.8.....97......1....5..8..6...........9.47.....1..26.....7.....1...........8.
+...3.8....1.4......5....7......2.51.4..6...........2.....2..3..8.......4....5....
+...3.8...46.......5..............15.....64.........3....812.......5..2...7......4
+...3.8...9..5............1..2..1.....6....3.......7...1.4...2..7...4.......6..8..
+...3.8..52.....1............83....4.....1.6...........6..5..2.....4...3.1...7....
+...3.8.2.5.1................3.2...........5.9......1...8..4..6....1..7..9...5....
+...3.8.2.6.1.........5.....38.2.........7.1...............6.7.123...........4....
+...3.8.4..65...2...........31.4...........5.9...7.....7......3.4...6........5....
+...3.8.4.2.........6...........5.2...4.....7...3......5..6..1..7.....5.2...4.....
+...3.8.6..75...2...........31.6...........5.9...4.....6......3.4...7........5....
+...3.81....25.....6.....7..7...1.6.........3.4.........3.2...5..1...........4....
+...3.81..24.................5..4..2..381.............76..72....1..............3..
+...3.85..2.1.........1...6........31.5..2........4.....3.6.....4...7..........2..
+...3.85..69....2.......7....38....7....14.............2...6.1.........8.4........
+...3.86..24.................5..4..2..386.............76..72....1..............3..
+...3.86..42..........1.........4.52...1.............7....6..3.127.......8........
+...3.86..7......2....9......5..2..1..4......3.9.......2.....4.....4....91........
+...3.86..7......2....9......5..2..1..4......9.3.......2.....4.....4....31........
+...3.9....1..........5........2..68.9......3..7..1........6.1.73.5............4..
+...3.9....4..........6........2..78.9......3..1..4........7.1.43.6............5..
+...3.9...4......5..............85.7..31...2..6...........1..3......4...259.......
+...3.9..7.1.....4...........6..1.2..8.......3......5......4.16.3.27..............
+...3.9.4.2.........6...........5.2...4.....8...3......5..6..1..7.....5.2...4.....
+...3.9.5.2..6.....4.7......7...4...........36......2...3.5.........8.4...1.......
+...3.9.6..1.....2...4......3.....5......1.....6.......62.5.....7.....1.....8..4..
+...3.9.6.1.4...2..7..5.........1.7...3........5..........6..85.2...7.............
+...3.96..2......5..........5...8.......4..7..........1.13...4.......5.3..7..2....
+...31..........82..........4...6...18.5......2.....7...7.....63...5.8......2.....
+...31.....6......2.5.....8.1.7..2...3.....4.........5..2.9........5..1..4........
+...31.....8........4..........5..61..5...8...3......7.1.....2.......4..86...7....
+...31.....8......7......2..2......6....6....45.1..........2.13..4...8.........5..
+...31....2.....5..9.........47....6.....9.8...1..5.....3.4...1.5..8..............
+...31....59...................8..13.42.......7.....8.......5.74..16.............5
+...31....8.....2...........73.5...........81......76......82..4.5.....39.........
+...31...47......3.6...........5...8..1....7...4..2.........3..18..6...........2..
+...31...47......3.9...........5...8..1....9...4..2.........3..18..6...........2..
+...31..4.2.5...6..7.........8...5..2.1.4..................52.........83.6........
+...31.2...15...............2...58...7.....4......6....32.4............65...9.....
+...31.5..8.6...............1..6.8......7..2..4........52..4...........76.9.......
+...31.6..4..6...5...........3...4.8..1....7.....5.........7.1..2.9......5........
+...31.9..2..7.....4.........3.5.9..........4..1.......8....4.6.......5.3....2....
+...32.....4....8......6....57.4.....3......6........1....8..5..6.2........1...4..
+...32.....7....5......8....76.4.....3......8........1....5..4..8.2........1...6..
+...32.....8.....4...1......3.....5...4.8...........2.....4.8.1.2...6....5.....7..
+...32....1.......7.......5...8...3...3..7.........1......8..23.7.4.......5....6..
+...32....5......9....6.......34..6.......7.5..1.......7...85.........3.6......1..
+...32....54..................36..1.7.....4..82.........8.1.........7..2.......54.
+...32....6......7........1.....4.2.85.3...4..7...........7.1....2....8.....6.....
+...32....6.....1..4..9...........7.1.3.2.......8...6...9..8..3.7....6............
+...32....7..6.....1.....8......81....6.....3........2...4...1.7.3.4...........5..
+...32....85........1...........16.........2.3.....5.9.......61.3..4.....2..8.....
+...32....85........1...........16.........3.2.....5.9.......61.3..8.....2..4.....
+...32....86........1...........41.........2.3.....6.9.......41.3..5.....2..8.....
+...32....86........1...........51.........3.2.....6.9.......51.3..8.....2..4.....
+...32....9.....5........8..42..1.......5...3....6..7..8..7......7.....2.........1
+...32....9.....5........8..42..1.......6...3....5..7..8..7......7.....2.........1
+...32....9.....7.....5..........18...34.......2....5..1....6.4.....7..3.........2
+...32...4.81..................1.7.5.2.............8...42..6..........71.6.....3..
+...32...4.81..................1.7.5.2.............8...42..6..........91.6.....3..
+...32..15...6...3..8........4....7.....5..8.......1...3.1..........7.4..2........
+...32..4..17.....5....9.........1..62.....3...........3.....49..658..............
+...32..4..17.....5....9.........1..72.....3...........3.....49..658..............
+...32..4..71.....5....9.........1..72.....3...........3.....49..658..............
+...32..4..91.....5....8.........1..62.....3...........3.....48..657..............
+...32..51...6...3..8........4....7.....5..8.......1...3.1..........7.4..2........
+...32..6..91..................1.47.........2.3........26..3.......5..1.48........
+...32..7..1......5.8...........5.1.47..6...........8..6.....32....4.1............
+...32..7..1......5.9...........5.1.47..6...........9..8.....32....4.1............
+...32..7.14....5..8...........73...24.....1.....9..........16....7....9..........
+...32..7.8..5...4.1..............1.6......8.....7.......6..12...2.....5..3.......
+...32..7.8.1.............6.4...5.1...3.7.....6.....8...2.....3......15...........
+...32.1.....4......7.......1..5..2...5...8...........92.1...........7.3.6...9....
+...32.1..7.4.....85.........1....6......7..5.............1.32..4......7....6.....
+...32.4....1............2.....1.8.3..5....6..4..7.....26..5...........81.........
+...32.4..6.8............1...2..4.3...4.....5....1..........8.671...............8.
+...32.5....1............2.....1.8.4..6....7..5..4.....27..6...........81.........
+...32.5...81...............24..5........4..7.........16..1.8...3.....2.....7.....
+...32.5...81...............24..5........6..7.........16..1.8...3.....2.....7.....
+...321...54.................6....12.3..48..........6.....53...8..1.........7.....
+...327...1.....6...........4..1...2........37...6....5.76.........4..8...2.......
+...34.....6....8...........1....62..4.3......7...8.....8...2......1...3....5...4.
+...34.....9.....6...........1..67...4.....5.3......8..3..8..........9.2.5.7......
+...34....5.....1.........6....8.17...42............3......6..298..5............4.
+...34....6......7.....8..........4.21....5.........3.....1.6.5...8...2...4.7.....
+...34....7.....6.....9..........72....4.......9.......61......75...3..9.2..8.....
+...34..5..2.6.....9.........8....3.2....51............5.4....7....2..4..1........
+...34..5..2.6.....9.........8....3.2....51............5.4....7....2..6..1........
+...34..5.1............2.....35...1.......67.2..4.......2.....4.7....1......8.....
+...34..6..17...............5.....69.3..1.7......8......2....3..6...9............1
+...34..6..21................5....7..4...6..........2.1...2.7...8......3.3..5.....
+...34..6..21................5....7..4...9..........1.2...2.7...8......4.3..5.....
+...34..6..71...............5.....69.3..1.7......8......2....3..6...9............1
+...34..8..67.......1..2.......7..1.58..2...........6.....5.1...2......3..........
+...34..8.2.1.........6.....7...25....4.....3......1.........7.2.3.9...........5..
+...34.1..29.......8..1.......3...4.7...6.9............95.....8.6............1....
+...34.1..62....4...8........7.5...2.4...1...........8.1.....3.....7.2............
+...34.2.71...........6........1.9.8..42......5.........7..2....6......1.......8..
+...34.2.71...........7........1.9.8..42......5.........7..2....6......1.......8..
+...34.5....1............2.....1.9.4..6....7..5..8.....72..6...........91.........
+...34.5..28..........1.....5.....41.6....2.......7......14......7......2.......6.
+...34.5..29..........1.....5.....41.6....2.......8......17......8......2.......6.
+...34.5..29..........1.....5.....71.6....2.......8......17......8......2.......6.
+...34.5..6.8...1..2........7.....3.......1.......8.....4..5..8....7...2....9.....
+...34.7..2.......18........5..6...2..3..7..................2.8..7.1......5....4..
+...34.8....1............2.....1.9.4..6....7..5..4.....72..6...........91.........
+...34.9..6.8....7.1.........49...2.....1......2.......3......1......9..8....2....
+...3471...26....8............82.5...4.....7...........75..3.......6...2..........
+...35....4......1.....9....8..6.1.........9.7......3....3...5.4.9.7............2.
+...35....4......6.....2..........8.56....1.........3....81.4....3....2.....6...7.
+...35...12.....4..5..7.........41....3.....7.......2..4.......8...6...5..2.......
+...35...219.......4............9.58..2...1....3.........62.....8.....4.........9.
+...35...219.......4............9.65..2...1....3.........42.....8......4.......9..
+...35...7.21....................281.3.........6.......7..5...6.4..73..........2..
+...35..2.4.....6..7..1.....8....4...........5.......3.....7.8...3.2.....6.....4..
+...35..4..76.................5...7.63...2..........1...1.7.6...8......2....5.....
+...35..6...1...5...7.2.........41...62..................4...1.........385..7.....
+...35..6..1......7...............2.16...3........4....5..1.7...2.....94....8.....
+...35..6..2.7.....8.........8....3.2....61............6.3....1....2..7..4........
+...35..6.8.7................3..47.......6.2........1...6.....431..2........8.....
+...35..8..21................7....9..6...4..........1.2...2.9...8......4.3..7.....
+...35..8.4...2....16.........58..2........1.4..........4...1...6......3.7........
+...35..9.71.................43....2...5..1......67....2..8...........1.4......7..
+...35.1..29.......8..1.......5...3.7...6.9............94.....8.6............3....
+...35.1..4.......87....8...6..2...3.......5........2.....6....4.5.....8..1.......
+...35.2...91...............54..6........8...7..2....1.3.....5.....7.9......1.....
+...35.2..6.1...............97.4.....8......6....9......2....7......81.......6...3
+...35.2..8.1................5.4..3..6....1......7..........4.16.3..6...........8.
+...35.2..9.1................5.4..3..7....1......8..........6.17.3..7...........9.
+...35.2..9.1...............25..6........4...7.......1....7.9.4..3....8.....1.....
+...35.4...81...............54..2........6..1.........76..1.8...3.....2.....7.....
+...35.4..6.....2...1..7.....7..1..5.2..4.....................714..2.....8........
+...35.6..71.......2............7..41.....8.2...65.....1....2.........3.....4.....
+...35.7..12.................53.4......8...6.........1.6..1.2.........4.8...5.....
+...351...2.....8......4....73.1............56.......4..65.........2..9....3......
+...357...2.....8......4....43.1............56.......7..65.........2..1....3......
+...357...2.....8......4....43.1............56.......7..65.........2..9....3......
+...358...2.....9......4....73.1............56.......4..65.........2..1....3......
+...358...6.....1...........16......5...7...3.2....4....3.5...7.....1.2...........
+...36....2..5.....1.....7...3.....9......1..........6...8...2.7.6.4.........3.1..
+...36...2..9....8.5........4.....51....27.......6..........19..36........2.......
+...36...219.......4............9.58..2...1....3.........72.....8.....4.........9.
+...36...219.......4............9.65..2...1....3.........42.....8......4.......9..
+...36...219.......4............9.65..2...1....3.........42.....8......7.......9..
+...36...7.1....2.....7..........581.7.46.....3.............85..6............2....
+...36..1.7.1.........5......4.6..3..8..............6..23............7..4.65......
+...36..2.4...........2......9.65....7.....4.8......1..1...74..........63.........
+...36..2.41....5...7..........6...8315................6.82..........41...........
+...36..2.41....5...8..........7...6315................6.72..........41...........
+...36..2.41....5...9..........8...6315................6.87..........41...........
+...36..5.4.....2..1...........4.2..........78...1......76.8..........3.4.5.......
+...36..7..1......5.8...........5.1.47..6...........8..6.....32....4.1............
+...36..8.2.1.........5.....7...24....3.....6......1.........7.2.6.9...........4..
+...36..8.7......3..1.......2..9.....8.6.........1..5..4...8..........1.5......9..
+...36.2...91...............72.4........9...1.........53...5.4..2....8.......1....
+...36.2..4.......31..........27....8.5.....4....2.........5..1..3....7......4....
+...36.2..8.....51........8....67...31............4.....3.5.1.....6.....4.........
+...36.4..2.....1.73..5........2...5..1.......6.........7..1..........62..8.......
+...36.5...1..........7......7...1...5.....4........3.6.....8.7.4......2.3...4....
+...36.5..4.......21..............71.2..8......8.5......3....6......14.......7....
+...37.....5.....8.4...2.....7...8......6..1........2..3.21...........75.........4
+...37....6.....1..4..9...........4.1.3.2.......8...6...7..8..3.9....6............
+...37....9.4................3....21.5..4............7.17..6.......5..4.9..8......
+...37...5..1...2.....8......8.53....4.....61........2.93............61...........
+...37..2...8...1...........4....17..63........2.......5.1.....8...23.......6.....
+...37..5...1.............6.56..2.......4..9.17...........1.93..82................
+...37..5.4.....2..1...........4.2..........68...1......76.8..........3.4.5.......
+...37..5.4.....3...6..1....2..8......7.....1.........6...5..2..8.....9.......1...
+...37..5.4.....3...6..1....2..8......7.....1.........6...5..8..8.....9.......1...
+...37..5.4.....3...6..1....2..8......7.....1.........6...5..9..8.....2.......1...
+...37..5.4.....3...6..1....2..8......7.....1.........6...5..9..9.....2.......1...
+...37..5.4.....3...6..1....2..8......7.....1.........6...5..9..9.....8.......1...
+...37..5.68....4............371..........89..4........2...4...........71........3
+...37..6..21....................15.23...6.....8.......7......3....8..4..5....2...
+...37..6..5....4..2........84...5.........2.3.......1...316..........5.........7.
+...37..8..1......6.9...........6.1.58..7...........9..7.....42....5.1............
+...37..8..16........5......84....3.......1.........2..5..23...........61...8.....
+...37.2..8.1...............42..5.........8..1.......6....6.4.2..3....5.....1.....
+...37.2..8.1...............72..5.........8..1.......6....6.4.2..3....5.....1.....
+...37.2..9.1....................5.16.2.4............9..7....3.....28....6....1...
+...37.4..81.....................2.613.7.5...........9...5...3...6...1......2.....
+...37.5...41...............5..2..3.....8.4...7.........6.....482...6...........1.
+...37.5..12.................65.4......4...3.........1.8..1.2.........4.8...6.....
+...37.5..82................3..4.......58............26..6.21....7..6..........8..
+...37.6..54...................4.2...1..5.......7...9...83.6...........15.......4.
+...37.8....1............2.....1.9.3..5....6..4..7.....62..5...........91.........
+...37.8..52........4.......7......43.....6.2.....1....8.....1.....5.2......4.....
+...38.....4......7.......1.5...2.8..3.........7.......6.2...3.....7.45.....1.....
+...38.....4......7.......1.5...2.8..3.........7.......6.2...3.....7.46.....1.....
+...38.....5..6....4......7.......6.53.4............8.....1.3.4....7..2...6.......
+...38.....6....5..7.............61.54........3.........18...6.....43..2....2.....
+...38.....7..6....5......9.......7.63.4............5.....1.5.4....4..2...6.......
+...38.....7..6....5......9.......7.64.2............5.....1.5.4....4..2...6.......
+...38....4......1.......9...3.75...8.......4..........1.4.6.......2..5.39........
+...38...24......5.1.........3.2...6..87...4................41.32...5.............
+...38..2.2.1...7...........4...17..........53.........63.5........4....8......1..
+...38..5.7.1............3...4.5.....5.....6..........7...2....1.8.....4.6....7...
+...38..7..21...................621..7......3.5.........5....2..3..7........4....6
+...38.1..5.2...............8..2.5...1.....4.....6.....91..4........3..6........2.
+...38.4....1............2.....1.9.3..5....6..4..7.....62..5...........91.........
+...38.4...2.....7..........4.....6.1..92.7......5.....8...1.....1.....2.......3..
+...38.5....1............2.....1.9.4..6....7..5..4.....72..6...........91.........
+...38.6...1.............2........47.6...5............13.61.7...2.....5.....4.....
+...38.7....1......4...........2.4....3....8......16...5......1437..............2.
+...38.7..5.9......4........6..2.9....2......1...4...........34..3..1...........9.
+...39.....1.......4...........5.1.8.6......3....2.....8.3.6.........51..9.....2..
+...39.....6....4.....7..8..9....46..3...2....5.........4...8.1....5....3.........
+...39.....6....5..8.............61.54........3.........19...6.....43..2....7.....
+...39..2.1.....7..8.........3..2..4....5..1..6.....8.....7.1....2.....3..........
+...39..2.16....7...8..........4...9371................4.95..........61...........
+...39..4.2.....6..1...........1.25...49.....8..........7..4..3....6..1...........
+...39..5...2...7...4.......9..8....3......4........2.....642...31............7...
+...39.2..1.5......7.........8..2.3.......4.1....6........5.1.7..2....6...........
+...39.2..5.1......7.........8..2.3.......4.1....6........5.1.7..2....6...........
+...39.6..54...................8.2...1..5.......9...4...84.7...........15.......2.
+...39.6..8..5.....2........1......527..6............4...5...3...4...2.......1....
+...39.8...25...............3..5.2.....6...78....4......4......58...7...........1.
+...391.2..6......4..........7.56..........13..........3.1...5.....74....2........
+...391.2..6......7..........4.56..........13..........3.1...5.....74....2........
+...391.2..8......6..........7.56..........13..........3.1...5.....74....2........
+...4....1..4.2.....1.......5...3.2..68..............7.3.....52...71........8.....
+...4....1..4.2.....1.......6...3.2..79..............8.2.....65...81........9.....
+...4....1..4.5.....1.......5...3.2..68..............7.3.....52...71........8.....
+...4....1.5........6...........5.27.1.3..........8....4..1.7......3..6........52.
+...4....1.5........6...........7.24.1.8..........5....3..1.8......3..6........52.
+...4....1.52.......3.......9..8...........62....1.........235......6.73.4........
+...4....1.57.......3.......9..8...........27....1.........236......7.53.4........
+...4....1.7....4....2......43...6.........72.....5....1......65...97......8......
+...4....1.9.....6.52.............93.4..7........8.....8....6..7....9.2......1....
+...4....12...3....6.........4.1.7.........25..9.......3...5.62..18...............
+...4....123................3.....26...51.9..........8....56.7...14..........2....
+...4....19.........6.........71..5...8....36....2.....2...5........3..8.1.4......
+...4....19.........6.........72..5...8....36....1.....2...5........3..8.1.4......
+...4....2.81...............2..63........8.1.........754....57..6..2............1.
+...4....2.81...............4..63........8.1.........752....57..6..2............1.
+...4....5..2..3....1....6..4.....9..3...6........1.......8...1..7.....2.5..9.....
+...4....5.3....1...2......67...81.6.4............3.......2..3..6..5............8.
+...4....5.9.....6.21.............13.4..7........8.....8....6..7....3.2......1....
+...4....58...2....1.........436...........78....5...2..5....6.3....8........1....
+...4....58...2....1.........463...........78....5...2..5....6.3....8........1....
+...4....58...2....1.........496...........78....5...2..5....6.3....8........1....
+...4....65.....9..1.........432......6.83..........1..7...1..3........2.........4
+...4....7...93..........1...8..21.........4.3.........42.6...........58.6......1.
+...4....7.6....5....1...........263.8........7.........3.52........6..1.4.......9
+...4....8.6..9..........3.....1...7..9.....5....3.....3.8...1..7...5..6.......2..
+...4....8.72............1........27.....5.6..8..9.....93......4....21..........5.
+...4....8.72............1........27.....5.6..9..8.....83......4....21..........5.
+...4....8.76............1........27.....5.6..8..9.....93......4....61..........5.
+...4....8.76............1........27.....5.6..9..8.....83......4....61..........5.
+...4....9.6.....2..1.......4..3...7......28.....5..6..3.......5....6.1..9........
+...4....9.82............1........28.....5.7..4..9.....93......6....21..........5.
+...4....9.87............1........28.....5.7..4..9.....93......6....71..........5.
+...4...1....16....5.....3........2.8.1.6...........5...4...3.7.2...58............
+...4...1...32......52......1....6.......3.2........8......4...9.6....3..7..1.....
+...4...1...59.....2.....7..8....2....3.....9.....1..4.......2.3.4.6...........8..
+...4...1...6..3....5............53.24.....6..1...9.....8.72.......1...........5..
+...4...1..3..7....9........6..15.....8....3.....9...........7.31..5.........2.8..
+...4...1..35.............2.4..2.1.........3.8...7.........356......6.7..1........
+...4...1..6....7.....2.....8.....6......4.3..2..5.....13..6.........8.52.........
+...4...1..7..3.....6..........5..3.75..1......3....6..1.8..........2.7..4........
+...4...1..8..2....5.........7....2.83..6........1.....6..5.........7.8..1.....3..
+...4...1.2....6............7.....6.5.8.13..........2..64....7...31.........8.....
+...4...1.2...6......35......4..18........75........2.9...2..3...1.......7........
+...4...1.2...7........9....6..3.5...7.....2.....1...........6.8.3....5...14......
+...4...1.3...2........8.....14.......5.6...........7..7..5..2..2.....3.8...1.....
+...4...1.3...8........2.....14.......5.6...........7..7..5..2..2.....3.8...1.....
+...4...1.5....7...8.............85...2..3.....1..........12...3..27.....6.....8..
+...4...1.6....5............5..13....2.....5.8....7.........46...1.....3..87......
+...4...1.6...2....7............6.2...1..3.....4.....5..5.1.....2.....7.....8..6..
+...4...1.6...5....3............2.5...7..3.....1.....4..4.1.....2.....3.....8..7..
+...4...1.6...5....7............7.2...1..9.....4..........3..6.5...1.9...8.....7..
+...4...1.7...2....5............7.5...1..3.....4.....6..6.1.....2.....7.....3..8..
+...4...1.7...5....8............7.5...1..3.....4.....6..6.1.....2.....3.....5..7..
+...4...1.7...5....8............8.5...1..2.....4.....6..6.3.....2.....7.....1..8..
+...4...1.7..3.....2............3.7.5.9.1...........8.......72..64........1..5....
+...4...12.9..8.................935..1..............9...6....85....2.1...4..7.....
+...4...128...6..............2.3.1...4.....7.....5...8..19..........7.4....3......
+...4...1285...3............6...9.8.....1.....4.........72....4..1..8.3...........
+...4...137.2.6.............6....75.....1....89.........1.3...........62.......7..
+...4...153....7............584...........92...1.......6.2...7.....15........9....
+...4...158.6......9........2..51..........63.....4.......7.38..61................
+...4...17.1...........2....6...5.2........83.7........2.6...5.....1....4...3.....
+...4...175......8.....6........326..1.4......7.........2.1......8....3.......7...
+...4...2........43.1...........5.1..7.3......2.....8..8.....5.....31.......7.6...
+...4...2..1.............3......31..86......7......5...4..27.......6..1....8...5..
+...4...2..1......659.......4..7....8......1.....3.....3....6.7.....2.9......1....
+...4...2..1.....8..3...7...6..28.....7....3........1..5.4.........91....8........
+...4...2..5.8......1....3..7.6....8.....1...5....3........9.1..8..6.....2........
+...4...2..56...............2.879....4......1.....6....71.3...........6.5......9..
+...4...2.3.......1..6......1.8.6.......2..74..............3...654........7....1..
+...4...2.3.....5..1............561......3...8.9.....4.....1.3...4.2........7.....
+...4...2.83.......1........35....1.....2.4..7...6.......4...65.....1..........3..
+...4...238.6...................1.8...21.......3.......7.....61....5.3..4...2.....
+...4...25.8..6.............13....8.....2.5...6..7.....5.4..........3.1....2......
+...4...26.5.....8.............65.7.....2.1....8....3..7.6..........3.5..2........
+...4...27.8.5.3..............7.2.....4....5.......8...6..1..3....2.4....3........
+...4...271..3.....6.9......5...6.2...3.....8.....1.....4.8.............3......1..
+...4...293...............5.....1.67..59...........6...8....43.....52..........1..
+...4...3.....6..5..1.......8...9..........4.7......1.....1.72..3.9......5..2.....
+...4...3..25...........1.....8.2.6.........4.......5......5.1.234.7.....9........
+...4...3..52...............6.....78.....15...3........41.6........7..2.5..6......
+...4...3.1.....8...........5...29....1.....7.6.......4..75.........8.2...34......
+...4...3.1.5........7............1.7.3.2...........6..82.....4......75.6....1....
+...4...3.2...1...........78.8..5.4...3..............2.4.1...5.....3..6.......7...
+...4...3.2...8............1..6...8......2.5...3.......7.....24..4.1.3......5.....
+...4...3.2...9............1..6...9......2.5...3.......7.....28..8.1.3......5.....
+...4...3.65..............1...431.....2....5.9...8.....7....56........2....3......
+...4...3.8.....5.....7.....52..8...........416..........73.........5.2...41......
+...4...3.8.....5.....7.....52..8...........416..........73.........6.2...41......
+...4...368.1..........2....7.....8...3.6.........4...2...5.81...4.....6..........
+...4...37.2..............8.4...8.1...6....2.......3......5..61.3.7.........1.....
+...4...37.2..............8.4...8.6...6....2.......3......5..16.3.7.........1.....
+...4...38.2..............9..1..9.2..4.....1.......3......5..67.3.8.........1.....
+...4...38.2..............9..1..9.2..4.....1.......3......5..67.8.3.........1.....
+...4...38.2..............9..1..9.2..5.....1.......3......5..67.3.8.........1.....
+...4...38.51...................1.5.74..3......2....1..3..8...6.2..............9..
+...4...5..79.......2.......6....5.3.....2.7..5........3..6..1......8.2.9.........
+...4...5.1.....2..6.9......2.....6.1...5.3......7......4.....85....1.....3.......
+...4...5.5......2..6.3.....1...28....7....3......5.......6..7.48..............6..
+...4...5.6.....3....1.......4.....7..2..6........3...14.......6...5..2.....2..9..
+...4...5.8.1......96........4.53.......2....17.....9........64.1...9.............
+...4...529...7...............5.3..6..4....8...21......8.....3.....2.5......1.....
+...4...529...7...............5.3..6..4....8...21......8.....3.....5.2......1.....
+...4...561..3..................793..64.......5......8...9...7...5.6.........2....
+...4...6....6.3...8.....5.........392...4...........1....78.2....3...6...1.......
+...4...6....8.1...4.....5.........387...4...........1....75.2....3...9...1.......
+...4...6....8.1...7.....5.........382...4...........1....67.2....3...6...1.......
+...4...6.1.7.............3..6.....2.....8.5....4.1....84....1.....6..7.....3.....
+...4...6.23............1...7..52..........81.....7.3...146...........2....5......
+...4...6.3.....7.....3........6...195...8...........4.....572....4...8...1.......
+...4...6.3..8.....1.5.........7..2...8.....4.......5......5.3.1.4...6.......1....
+...4...612....3............5.....27....19.................875...41...3...6.......
+...4...615..1.....23.......3....82...7.6..................2.5...1.....4...6......
+...4...637...82.............546...........7.2......1..2...3.......5...1.9........
+...4...65.12...............5......97.2.8.1......3.....4.....8....5.7..........1..
+...4...65.12...............5......97.2.8.1......3.....4.....8....6.9..........1..
+...4...65.7...1............6.52.........3.7..4.........8....17....52..........3..
+...4...653...8....2..........17...........32..6........5..2.........6..14.....7..
+...4...6731.......8.....4....2...54.....1...........2..6....3.1...2.5............
+...4...7.....9..3.1........8.9...2.....5.3..4...7......53.........6..8...9.......
+...4...7...17......5......36......8......54......37...48...........2.1..7........
+...4...7..5..3.....1.....9.......5.12..7...........3.....35.6..7....8...4........
+...4...7.2.....8..1............826...4.....53..........5.7........5...4.....1.2..
+...4...7.6.......318...........5.82.3...1......7.........3..1....27......5.......
+...4...7.6......5...1..........813...5....6...........3.....1.2.4.57.......9.....
+...4...7.6....2...........1.45...2...7..1.......6..8..3..2..6......7...........5.
+...4...71.26...............7..31......5...2................263..1..9....5.....8..
+...4...71.8..3.............5..1.4......6..8...9.....3.....2.9..7.4......1........
+...4...7152.................8....63.....75.......4.......6.82..7.....5....1......
+...4...7152.................8....63.....75.......4.......8.62..7.....5....1......
+...4...781..3.....2.6......5....62...3.....9.....1.....4.9.............3......1..
+...4...7821................5.8....3....21........6.5....73......3....6........1..
+...4...8.....2..5..1.......8...3..........7.1......6.....1.72..3.8......4..2.....
+...4...8.....6..5..1.......8...3..........6.1......7.....1.72..3.8......4..2.....
+...4...8.....6..5..1.......8...3..........7.1......6.....1.72..3.8......4..2.....
+...4...8...2...7...6.......85.....4.....2..3......1.......6.2.94..5...........1..
+...4...8..17.......2.......5....8.3.....2.6..8........3..5..1......4.2.7.........
+...4...8..6....7.....2.....9.....6......4.3..2..5.....13..6.........9.52.........
+...4...8..6....7.....2.....9.....6......7.3..2..5.....17..6.........9.52.........
+...4...8.1.......76..3.....3.....4.......7..2....1.....5.6..3....7....6..2.......
+...4...8.1.3........5.......8.2...........6.3......1..72.....4......35.6....1....
+...4...8.1.3......7.........5....94..6..1......8.........2....73.....1.....8.4...
+...4...8.7.....6.....1........53.....4.....1......7...2.4...5......8.7.3.1.......
+...4...815.7...................215..4.3...6......8.......2..7..62........1.......
+...4...823...7...5.......1....63.9...8........1..........5.8...7.....4.......2...
+...4...826...7...5.......1....63.9...8........1..........5.8...7.....4.......2...
+...4...832.5.7................52.6..13.....4..........7.....2...4.3..........1...
+...4...836..7..............7.4...5......6...2.....1.......3..7..3.2......1....6..
+...4...9..56...............2.378....4......1.....6....71.3...........6.5......8..
+...4...9..58...............7..6.2.........1.8...7..5......1...53......4.47.......
+...4...9..62.......3....7..9.....61....5.2.......3....8..91..........3..5........
+...4...9..7...1..........5....8..7.25.....1..3.........21...6.....53........9....
+...4...9.1......3.5........7..2..5...3.8.9.........1....9.1.....86............7..
+...4...9.23............1...7..52..........81.....7.3...146...........2....5......
+...4...9.3.2........5......58.7...........2.3......1......215...4.....6.....9....
+...4..1........3.7.9..2....7...6..5.1..............8...28....6....1...4....3.....
+...4..1........3.7.9..8....7...6..5.1..............2...28....6....1...4....3.....
+...4..1...3.6.....78.........41............2........7.2...7..3...6...4......8.5..
+...4..1...3.7.....85.........41............8........2.2...8..5...7...4......5.6..
+...4..1...6......37.....5..2......4.....51..........7..31...6.....27.......8.....
+...4..1...7..3..............3...7.2....1..6..7............2..836.15.....4........
+...4..1...72........8......54....2.......87.....6.....3..5...6........89....1....
+...4..1...73...............6.5....3.....7..2.4..6.....16....4.......5..8....3....
+...4..1..2..3...........5.7....5...21......3.....76......8..4...65.............1.
+...4..1..2.9......7......5....8..3..6......9....1.........6.8.2....95....1.......
+...4..1..25.......6...5.....7.3........8....4.......2.4...2.....3....7.......6.1.
+...4..1..25.......6...5.....7.3........8....4.......2.4...2.....3....9.......6.1.
+...4..1..6......2.............3.6..4..2...8..7..5.........2..73.14.......9.......
+...4..1..7...5..........2.......17..6..3.....3..9......8...2....1.....9.....6..3.
+...4..1..9...3..........2.......16..6..9.....5..8......4...2....1.....9.....5..3.
+...4..1..9...3..........2.......17..6..9.....5..8......4...2....1.....9.....5..3.
+...4..1.26...3............5.75....3....1......2.......1....2...4.....6......7..8.
+...4..1.57...3............2.85....7....1......2.......1....2...4.....6......8..9.
+...4..1.6.8.....5..........4.7...3......25...1........65.....2....7..4.....1.....
+...4..1.67.......52...3........7..2.58..........1...........37..6.5......1.......
+...4..1.75.2...............17....3......8..2..6..5.........1..2..6....5....3.....
+...4..1.763..5..........2..5....3.9.8...........1.........8..6..7.2.......1......
+...4..1.763..5..........2..5....4.6.8...........1.........8..9..7.2.......1......
+...4..1.863..7..........2..5....4.9.7...........1.........5..6..8.2.......1......
+...4..1.9.3..8................53..2.4......7.1...........1.94...8....63..........
+...4..12.3.5.......6.........8....53...1..6.........7.41....2......85............
+...4..15..8....7..3............2..637.1...............63......8...1..4.....9.....
+...4..15.37..................684....2.....5........7.3..4.6..8..1...7............
+...4..15.73..................684....2.....5........7.3..4.6..8..1...7............
+...4..17.8....5...2.........7.62.4.....1...........9......8..3..4...9...........8
+...4..18..95......7............23..9....5..6.1.........2......58..1...........7..
+...4..18..95......7............53..9....2..6.1.........2......58..1...........7..
+...4..2........5.4.1...........23.1.4.8......5...........819.........63....2.....
+...4..2......65...8.........6.....7....2..3...1...........71.5.2.4.....83........
+...4..2.....1...7..8.......1..2.............3........9.5..38.......5.14.7.....6..
+...4..2....1.5....9......7.7...19.........4.31.........483............9..2.......
+...4..2....1.7....9......5.7...19.........4.31.........483............9..2.......
+...4..2...3.....1.....8..........83.4..7.....5..6......5..31.........4.7..2......
+...4..2...5....6...1...........5.73.9..8..............2.86.....4......1.....7..5.
+...4..2...76.......8...........76...2.....1..........43..14.......3...8.......57.
+...4..2...76.......8...........76...2.....3..........43..14.......3...8.......57.
+...4..2...81...............6.....9......17......3.8...4..2...7.5...6...1.......8.
+...4..2...83..............6.1..7....6.....4.......83..5..32......7....8........1.
+...4..2..1...7..........9..5....6.8....3.2....7..........16..5..92...3...........
+...4..2..15.......6.........827............31.........4...16........592.....3....
+...4..2..2.8........1.......6.7.2..........51.......8.7..6..3...4....5......1....
+...4..2..3.........1.........25...........16.......3.8.74....5.6....3.8.....1....
+...4..2..3......7..........7.4....5........36...8......2..6.1.....53.....1....8..
+...4..2..5.7........6.............65.8.1.............11...76....2....4........83.
+...4..2..6.5........8......1.....3.6.2.7........5...4.....38....5....1......6....
+...4..2..6.5........9......1.....3.6.2.7........5...4.....39....5....8......6....
+...4..2.3......4...6.........37.4..........1....8.....5...16...71..5..........3..
+...4..2.365...8.........7..1..5...6.....3....8...........1...9...3.7.....2.......
+...4..2.5.6....1...7..8....73.....6....2.1............8...6..7.5.2...............
+...4..2.5.71...................6..7.8...3....2.....5...6.....1.4..5........2.8...
+...4..2.6.83....................5.8...1.7....2...3.....5...4.3.6..2...........1..
+...4..2.618.5...........7...62.7.......3...4..........5......1.....2.8..4........
+...4..2.638.......5.........5.....38...62...........9...1...7..9....8.......3....
+...4..2.689.5...........7...62.7.......3...4..........3......1.....2.9..4........
+...4..2.7.61..........8.......56..1.2.....4...3.......7..2..........5.6.......3..
+...4..2.7.9....5...1...........39.6.2.......48...........1...3.7..2...........8..
+...4..2.78.1................4.7.2...3......8.............18..5.52....6......3....
+...4..2.81..7.....3.........8.2..5...4..6...........1.6...3........15.........8..
+...4..2.93..............6..17.....8....2.....8.........42...5.....61........8..3.
+...4..23.87..................2...5.8...19........7..6....2.54..76................
+...4..23.87..................2...5.8...19........7..6....5.24..76................
+...4..27.8.1...................15.3..4....6......8....5.....4.1.2.9.............6
+...4..29.6.83.....1.........3.7.2..........6.........8.9....7..5...8........1....
+...4..29.6.83.....1.........3.7.2..........8.........6.9....7..5...6........1....
+...4..29.6.83.....1.........5.7.2..........6.........8.9....7..5...8........1....
+...4..29.6.83.....1.........5.7.2..........8.........6.9....7..5...6........1....
+...4..3.........85...2.....6...5...94.3......2..7......7..9..........24..1.......
+...4..3.....7....6..1.......8..12...3.....4..............3..75.6...8.....1.....2.
+...4..3.....7....6..1.......8..12...7.....4..............3..75.6...8.....1.....2.
+...4..3.....7....8..1.......6..12...3.....4..............3..75.6...8.....1.....2.
+...4..3...5..7......8.2.....2.....586..1........3.........5..2.3.....4..1........
+...4..3...6.5.....2.....7......3.2...5.....6.....8.......6.1.5.3.7..............4
+...4..3...8........2..........5..12.9....7...4..6.....3.....5......12.......8...9
+...4..3...8....5...1.......4.....27.2..61.........8...3..2.......9.....1.......6.
+...4..3...91...................2..813..5......4.......2.8...7..7....1......69....
+...4..3..1.7......5........2...7...5.6....4......2........5..1..8.3......4.6.....
+...4..3..1.8......5........2...8...5.6....4......2........5..1..4.3......7.6.....
+...4..3..2...5....1.........38...4.....12........6.8...4.7............29.......5.
+...4..3..3.....2...58.......4.2.3..........71...6.........5..8.6...1....2........
+...4..3..3.....2...58.......4.2.3..........71...6.........8..5.6...1....2........
+...4..3..5.8.......2.......47....5......28......6.....3..1............276...5....
+...4..3..7....5.....8....1....61..9.5.........3........962...........5.7......4..
+...4..3..7...2....1.........38...4.....17........5.8...4.6............29.......7.
+...4..3.6..7.8.............46...1....2..5..7.3.....2....9....1....3........6.....
+...4..3.621...................7.5.1.4.3......6...........638.........52.....4....
+...4..3.8....7.2...1...........91.6.3......4.2..........9....1....3..5.......6...
+...4..3.8.42...............3...7.5....8....4.....1.....1....67.6..8........2.....
+...4..32.61..................3...1.6..48...........7...7...1...3......8.....5..9.
+...4..35.1...2....8.........3.7..4..2....5.............496............21....3....
+...4..39.82................6..3..1.5...2...........6...74....2.....1...8..3......
+...4..5........46...1.......7......23..5........8...1.4...2.3......1..5..6.......
+...4..5.....1.2..........6.....5..3.4.2........8....9.1.....2...7....4...3..6....
+...4..5.....5....7.1..........6..48.1......2.7...3....3...12.....4...6...........
+...4..5....1.2....9......7.7...91.........4.31.........483............9..2.......
+...4..5..6...3....1.........425........2...61........8....86.7..2....3...........
+...4..5..8.....4......3.....6.....3.2..7.............1...5..24..13.6......8......
+...4..5.273.................5.2.........6..7...4...1..6.7....3....5.8.......1....
+...4..5.6.1....2...7..8.........1.7.5..2.............86..5.....3.....4.........1.
+...4..5.81..2.....3.....7..2...19.........8......3........6..1..8.5......7.......
+...4..51........3.8...........17.6..2.......83.........6....1.4....32....7.......
+...4..51.73................2...6..4.1.5.3.........8....8....3.6...1.............7
+...4..52.1.8................5.34....3.......8...2...1..4....3..6...7.........1...
+...4..52.7.1................5.34....3.......7...2...1..4....3..6...8.........1...
+...4..56.1..............4.....512.........3.9.....7....8.63...........21..5......
+...4..57.......1..9........39......8...51....6......2......3..9..57......4.......
+...4..57..1..3.............5.....1.34..6.2.........9..7......2...2.1.......8.....
+...4..58..1..........9.....6......135..62.................13..54.....2......7....
+...4..58.7..5.....1.........5....2......6..3.....1....6.......1.8.2..........37..
+...4..59..1.....7.3...6.......5..2.3..1.........2......6..17...4.....8...........
+...4..59..1.....7.3...6.......5..2.3..1.........2......6..17...5.....8...........
+...4..6....1.......2.......4..7....16......3........287..6..5...3..1........2....
+...4..6....1.......3........7..5..138..2............7.6..5.92..4............3....
+...4..6....1......5...............35.7.8...........21.2...53.......1...7.6....4..
+...4..6...2.....7..............38.2...4....5.1........93...2......65.4........1..
+...4..6...3.....7..15......8..2.7..........31.............1..5.4.....7.....6..2..
+...4..6...37............1..2..1.........5..3........786....14......3..5....2.....
+...4..6...5....2......1.......2..78.1.3......9.............9.63.7.5............1.
+...4..6...7..8.....1.......6.2...5.....17..3....8.....5....2...4.....8..........1
+...4..6..3...2..........1...48....3........27.6.......7.....51....9.4......6.....
+...4..6.17.5.8............3....5..1..3....4..2........4..3..2.....1............8.
+...4..6.37..1......2...........82.....6...4..............6..15.37.......2......8.
+...4..6.58..5.....2.........63...4.......832.....1....7......8..4.6..............
+...4..6.8..5.9.....1...........5..9.6.....4...........8..6.27..1......5.......3..
+...4..6.8.73.................1.3.5..6..2..................5.17..2.....3.8..6.....
+...4..6.85.72...........1..3...7..5..6..18............2..5...3..8................
+...4..61..8..5.................3.5.71.2......6...4.....3....7.....2.8......1.....
+...4..65.3...1.....8....2.....3.5..1.......8....7.....4.....7......82....2.......
+...4..67.1..............5.....612.........3.9.....8....4.53...........21..6......
+...4..67.1..............5.....612.........3.9.....8....4.53...........21..7......
+...4..67.1..............5.....612.........3.9.....8....4.73...........21..6......
+...4..7.........2.7.........5..2..6..48...5......1....26.3........8..4..1........
+...4..7........1.48.........4.13......76............2.2....5.8.....82.........6..
+...4..7........1.48.........4.13......76............2.3....5.8.....82.........6..
+...4..7....1.......2.......4..5....16......3........287..6..5...3..1........2....
+...4..7....1.......2.......4..5....18......3........297..6..5...3..1........2....
+...4..7....1......2........3......82...67.........1....7....64..4...35......2....
+...4..7...2....5....1...........6.1235................8..7..3.....92....4......6.
+...4..7...2....5....1...........6.1247................7..5..3.....92....8......6.
+...4..7...5....2......1.......2..67.1.3......8.............8.43.6.5............1.
+...4..7...5....2......1.....6.2...5......8..3.......1....7..64.1.3......8........
+...4..7...6..8.....1.......3.....2.....7.9.......6........5..167..3.....4......8.
+...4..7...7....2......1.....6.2...5......8..3.......1....5..64.1.3......8........
+...4..7...9....2......1.......2..67.1.3......8.............8.53.6.5............1.
+...4..7..59........3.......2.4...6......8.2.....39....1..7............85.......9.
+...4..7.153..2..........8....16.........8..9........3.39..........1.7...2........
+...4..7.162..........7......6....32....1............5......256.4.1..........8....
+...4..7.8.1.......6..........8..35......6....7............9..17..28......3.....6.
+...4..7.82.1...................12.5.38....6......9....5......2..4.8..........6...
+...4..7.82.1...................21.5.38....6......9....5......2..4.8..........6...
+...4..7.95.....8..1.........4.....5.....3.........8......51..3..98...6.....2.....
+...4..76..81......5..2.........6...1.3.7.....4........2.....4......8..5.....1....
+...4..76.1..............5.....512.........3.9.....8....4.63...........21..5......
+...4..76.1..............5.....512.........3.9.....8....4.73...........21..5......
+...4..76.1..............5.....512.........3.9.....8....6.73...........21..5......
+...4..8....1.......3...........95.3.....1..7.2.....6..4..8..2...9.....1....2.....
+...4..8...1.......7..........3....725......6....1........3.74...82...1......6....
+...4..8...2....5....1...........6.1248................8..7..3.....32....9......6.
+...4..8...2....5....1...........6.1295................8..7..3.....32....4......6.
+...4..8...7...3.....8...2..5...7..3.2.....6......1.....1.....7.4..2........3.....
+...4..8...8....2......1.......2..65.1.3......7.............7.43.6.5............1.
+...4..8..1..3......2..6...........254......6.3..1......5..72.........1......5....
+...4..8..2....6...5.........7.3......4.....2.....5.........71.48...2..6.......3..
+...4..8..95.............3...7.15..........49...1..........2..754.86..............
+...4..8.129...3...............16.4..37.....2.9..........15..6.........3..........
+...4..8.136..2..........9....15.........9..7........3.73..........1.8...2........
+...4..8.157..2..........9....16.........4..5........3.25..........1.8...3........
+...4..8.23.1..............45...73.6..2...........5....9......3..8.2...........5..
+...4..82.5.1.6....7........1...7.....8....2............9.2.8..........41...3.....
+...4..85.1.7.2....3..6......9.3.4..........71..........8....4..5...7.............
+...4..85.6.1.2....3..7......9.3.4..........61..........8....4..5...6.............
+...4..86.2....3......7........82.6..3....1.............64.9...........31.8.......
+...4..9...7.8.....2........3....1.......2..7...1...6..15......2..46............3.
+...4..9..1...5....8............21....9......5.4....3.........21...37.......6...8.
+...4..9..1...5....8............21....9......7.4....3.........21...37.......6...8.
+...4..9..18.......6.5......2......9........48...1.....74....3......85.......6....
+...4..9..52.......3.........1.68..7........25...1.....2...75.........3....4......
+...4.1..........53............6..12.37..5....8.........41...6..5...3...7.........
+...4.1..........53............6..12.38..5....9.........41...7..5...3...8.........
+...4.1.........26.3.....7...145.........6.82..9..........3....42...8.............
+...4.1.........28.......6..5.1..........2.8..4...........56...423........8.7.....
+...4.1.........6.95.....8..65.2........7...3.8.........2.....4...3.6......4......
+...4.1.........63..........64......15..73..........2..3.8.6.....2.....74.........
+...4.1.........8.3........5...58.2...1..3.....9.....4...76...9.8........3........
+...4.1.........8.65.....7..65.2........5...3.7.........2.....4...3.6......1......
+...4.1.........9.6......2.....3...7269..5....8..........75...4.2...6.............
+...4.1........38...2....5..1.7....2.....5.6..3..8............71.5..8.............
+...4.1........38...2....5..7.1....2.....5.6..3..8............71.5..8.............
+...4.1.....6....7.......8...5.....14...82............3...27.6..31.......4........
+...4.1....2.....9..3.......4.5...3..1...9........2..7....8..1..69..........5.....
+...4.1....2.....9..3.......4.5...3..1...9........2..7....8..4..69..........5.....
+...4.1....3.....5..........15..3.....7......4...2..6......5.81.4..6.....2........
+...4.1....3....2...........45..7...........18...6........73.6..1.8....4.5........
+...4.1....3....2...........45..7...........81...6........73.6..1.8....4.5........
+...4.1....3....5..2........6...7.3....4....8....5.......16...4..8..5........3....
+...4.1....3....7..2........5...6.3....4....8....7.......15...4..8..3........7....
+...4.1....5.....1.83..........7..4.6.1..8..........2......3..5.6..2.....4........
+...4.1....5.....2.............26..5.4.3......8...7.....7..2..........4.1...8..3..
+...4.1....5.....2.............26..5.4.3......8...7.....9..2..........4.1...8..3..
+...4.1....5....2..............65.8..2...9......1.........7...413......7.52.......
+...4.1....57........8......13....2..6..2..4......7...........81....5..7.2........
+...4.1....58........7......13....2..6..2..4......8...........51....5..7.2........
+...4.1....7.....2..........4.....1.6...52........7.8...2..5..6.9..3...........4..
+...4.1....83...............15.7.......6...2........3.8...63..4.4......5.....2....
+...4.1...52...................6..81.9..37..........4...34....7.....5...3..1......
+...4.1...7.......6......8...41.....5...78.....3.......6..52..3.......14..........
+...4.1...7......3..........2..75..........1.8......4..6..27........3..7..4....6..
+...4.1...7......5.............6..2.453....1......8........3..9..42......1.6......
+...4.1...7.2................6..8...314.....5..........2.3.7.......5..41.......2..
+...4.1...8.......6......7...41.....5...78.....3.......6..52..3.......14..........
+...4.1...8......3...........6....2.13...9..........4..64.....5..2.1.....7...8....
+...4.1...8......3..........64.....5..2.1.....7...8.....6....4.13...9..........2..
+...4.1...8......5.............6..2.473....1......8........3..9..42......1.6......
+...4.1...8.....3..2........6...3.2.8.4.7...........6.....58.....1.....4..7.......
+...4.1...82...................65.2..1.....3....7.8.......7...45.5.....7.2........
+...4.1...82...................65.2..1.....3....7.8.......7...46.6.....7.2........
+...4.1...82...................65.2..1.....3....9.8.......7...46.6.....9.2........
+...4.1...9......5...........1.3..2..3...5.....8.......6..27..........4.1....6..8.
+...4.1...9.....5.....8......4.2...1.....7.3...1.......7...5.6..5...3...........8.
+...4.1.2..85...................2.5.614.............8..3..7...4...6.8.2...........
+...4.1.2..85...................2.8.614.............5..3..7...4...6.8.2...........
+...4.1.2.73..................1....4..6..3.......5..7..4.....3.7....8.6.....2.....
+...4.1.3..75...............31.6.........7.5..4.......9...3...1...8.5..........2..
+...4.1.5.36...................76.2....1....4.5............8.6.3.72.........1.....
+...4.1.7..8.6..............4......1..2..8....3........1.63.........5.2.8......9..
+...4.1.9.8.2................9.6.........8...2..4...3.....5..14.2...7.....1.......
+...4.12....3....5..6..........73..2.1............5.........81.4256...............
+...4.12..5.....8...3..6.....7.....13...8........2.....2.....5......3..7.4........
+...4.12..8..6...1.3.....5...4.1..7..2...3.................2..8..1..............3.
+...4.12..8..6...4.3.....5...4.1..7..2...3.................2..8..1..............3.
+...4.13.6.2.......7........1.6.2.......5..83..........2......71.8.3..............
+...4.13.7.2.......8........1.7.2.......6..93..........5......81.9.3..............
+...4.137..6.2.....8...........52.4....1......7........6....7....4....5......8....
+...4.15...69...............5..26.3..4...........9.....73...8..........49....1....
+...4.15...69...............5..26.7..4...........9.....73...8..........49....1....
+...4.16..23.......7.........2..3..7...46........8.....5...2..3...8...4...........
+...4.17..9..6...1.3.....5...4.1..8..5...3.................2..3..1..............9.
+...4.17..9..6...1.3.....5...4.1..8..5...3.................2..9..1..............3.
+...4.17..9..6...4.3.....5...4.1..8..5...3.................2..3..1..............9.
+...4.17..9..6...4.3.....5...4.1..8..5...3.................2..9..1..............3.
+...4.2.........83....1.........6.5..4..7.....1.........5..3...2.68.5...........4.
+...4.2......1..6.........8.....85.2.3.......14............7.1.3.52............4..
+...4.2......1..6.........8.....85.2.3.......41............7.1.3.52............4..
+...4.2...13..........8........5..7.1.2....6........3..8......4.....7..2.7...3....
+...4.2...3.......1...5..8...2..6..4..4......5....1.......7...2.1.....3..8........
+...4.2...6.......3...8.....36.....7....5..4..1..........4...25..2..3........1....
+...4.2...6.......3...8.....36.....7....9..4..1..........4...25..2..3........1....
+...4.2..87.1..................6..15..8.2...........7...4....3265...1.............
+...4.2.5.61........8.......3......2....61........87...4..5.........7.6........1..
+...4.2.5.8.....7......6.....2.7..4...6.3...........1.........38....2..6.1........
+...4.2.7..15................5.61...........24....8....2.73.....4.....6........1..
+...4.2.8..95......3........2..68..........5.1..........1.75....4......2.......3..
+...4.21..89....5..7............87.3..2..9......4......5.......7.......9....1.....
+...4.21..89....6..7............87.3..2..9......4......5.......7.......9....1.....
+...4.25...73................1..7.......3..4..6..5.........6..712.4.............8.
+...4.25..6.....3..1...............18.5.2.....9......6..2....4..8...1.......7.....
+...4.256....7....3.1.......6...98.......1............4......18.4..3.....2........
+...4.26..53.................246...........8.5.......1.1..75......8...2......3....
+...4.27..3.1................2.7..4..5...3.......8.....6...1..35.......9..4.......
+...4.3..........65.......7...98..3..7...6..........1.....7..92.6...2.....5.......
+...4.3.....1...6...5.............1.6.2....5..4..3.....3......24..8....7.....1....
+...4.3..157.........2..........8.26.4..............7..1......34.6..2.......9.....
+...4.3..67.....9..2..1......3.5...1.6............8.....41..........7.2......5....
+...4.3..9.2................4..6..1........25...3.......7.12....8......43....5....
+...4.3.1...9...5...........4...2.6...1..9....38.........7...2.9...8........1.....
+...4.3.1...9...5...........4...5.6...1..9....38.........7...2.6...8........1.....
+...4.3.1...9...5...........4...5.6...1..9....38.........7...2.9...8........1.....
+...4.3.1.76................5.3....4..2..7.......1.........6.8.24..5...........7..
+...4.3.2.7.....5...........1.....6.7.4.2........8.....5.7.6....6.......3.......4.
+...4.3.658.4.............1.37....8.....5.....2..........51.........2.3...6.......
+...4.3.9..1....6..8..7.........5.1.24..9.....7.........2..1...6.......4..........
+...4.31..7.2..................62....4...7.....3....5.....2...875.6.......1.......
+...4.32...81.............9.5...7.6..6.......3...8.........1..8.2....6....4.......
+...4.35.....15...........2.6...2..7.4.3......5.........8..7.......5..4...1.......
+...4.35..81.....9...........431............279........7...26.........4......7....
+...4.5....7......1...2...6.......2.5.6..3..........8..4.2...5......1..7.8........
+...4.5...2.....7.......83...485.........3.2............6.1...4.3...7...........1.
+...4.5...7.....3........1..3..7.........8..6.....3...5.65..8......2..7...4.......
+...4.5..2.3.....8..............1.7..2.4......6.........7....13....28.......6....7
+...4.5..382.....6..1..........3..4..6...8....2..........49..5......2..8..........
+...4.5.2..1.7......6....8....4....57....6....7............9.1.35..............6..
+...4.5.6...1......2............237...6.....4..........84.6.....3.....2.....51....
+...4.5.7..261......8...........2.6.8.....35..1........5......1.....6.......7.....
+...4.5.8.32....................7.3.1.94............2..6.5....4.1...3.......2.....
+...4.5.8.37....................7.3.1.94............2..6.5....4.1...3.......2.....
+...4.5.9.3.1......2........6...1.2...7.....4...........4.7..8......3...1...9.....
+...4.5.9.3.1......2........6...1.2...8.....4...........4.7..8......3...1...9.....
+...4.51..9.7............2......9..73.1..............9....84.5..3......6....1.....
+...4.57..6..7.....9.........7...3....5....2......9...61...6..2....8..5...........
+...4.578.9...3....1.........48...2...3.....5....1.....6...5...9...8..............
+...4.6...2.....7.......83...451.........3.2............6.5...4.3...7...........1.
+...4.6..51...........3.....7...18.........3.4..........3....27....59......8....1.
+...4.6.2.8...1....9.....5...6.3.54...1..........7.........9...15.....3...........
+...4.6.2.8...1....9.....5...6.3.54...1..........7.........9...15.....7...........
+...4.6.3..7.5................42.3...2.....7..........181..7..........54.....3....
+...4.6.5..31...............6.52.........7.3..1.........8.....24....15.........7..
+...4.6.5..31...............6.52.........7.3..1.........8.....24....15.........9..
+...4.62...71.........5.....3....2...4.....6......1.....5..8..17.......8.6........
+...4.62...71.........9.....3....2...4.....6......1.....5..8..17.......2.6........
+...4.62...9.1.......8..........3.7.9.5.......1........6.....81...3.9.......5.....
+...4.62..5...1....7.....3...63.........87.....2.......1......5........19...3.....
+...4.62..5..2.....1.........4.3.........5..9...8....1.....1.7...2......4....9....
+...4.65...8.....2..3.1.........82..34.1...............7..5.....6.....4......3....
+...4.67...1..........7.....6.2....7.....1..8.....5....3.....1.24..8...........5..
+...4.69..1.2......3............2..3..4....7......1.....8.7....56......1....9.....
+...4.69..5......1.2..3......9..8.4..1...5.......2......4....3......2...5.........
+...4.7...2.....8.......53...465.........3.2............7.6...4.3...8...........1.
+...4.7...9.......3...8...5..7..3...9.2....1...4.......3......8....2..4..5........
+...4.7..382.....6..1..........3..4..6...8....2..........49..5......2..8..........
+...4.7.2..56.....8.3.........3...5..7..1........2.........8..4.....5.3..1........
+...4.7.2.31..................4...57....81.............5...24.........3.8...6..1..
+...4.72..3.1..................5...36.2.1.............8.7....5......8..1.6...3....
+...4.73...1..........6.....6.2....7.....1..8.....5....3.....1.24..8...........5..
+...4.73..2......1....3........26.5..9.1.............8.....19.6..3....4...........
+...4.76...1.....3....2.........3..819......5.2........7..6..2........4......8....
+...4.76..3.8...................5..3124..............8...1.3.5...7....4.....2.....
+...4.8...6......2......5...1.6.7.......3..5.8.........2...1..6..8....4..3........
+...4.8...7......2......6...1.2.7.......3..6.8.........2...5..1..8....4..3........
+...4.8...7.....6.........3.2...7..5........48.1..........62.7...43............1..
+...4.8..17.....5....23......8.1...........76.......3..1..6.........7.2...3.......
+...4.8..6.5....27..1.............52.3..8........6.....8.......4....5.1..6........
+...4.8.2..3....5.....1.........3.6.54...7....1.........5..6.7.....2............4.
+...4.8.2..35...................1.3.68..6........7..5..6...3....4......8.......1..
+...4.8.2..35...................1.3.78..6........7..5..7...3....4......8.......1..
+...4.8.2..56...3..1........54.2...........7.1.........3.7.1.....2.....4..........
+...4.8.5.6.1.........3.........7.6.138.............2...4.5...8.2...6.............
+...4.8.6.2.....5.....6.....5.....63.1...2...............8.7.2...6.3.............1
+...4.82..6.......3...9........2..84.5.3.6....1.........4.....9.....1....7........
+...4.82..6.3...............4...6.....8....1.....53.......3...65.27......1........
+...4.83...1..........6.....6.2....7.....1..6.....5....3.....1.24..7...........5..
+...4.83..1..................489...........72..9.....1.5...26.....3...4......1....
+...4.83..1.....4..5...............168......5....2......4.6..2...9.....7.....1....
+...4.87...1.....3....2.........3..916......5.2........8..6..2........4......9....
+...4.9....8....2...1.3.........8.6.17.....5..3........9......3....7..4......6....
+...4.9...5.....7.........3.2...8..6........49.1..........75.8...43............1..
+...4.9...7......6....2...5.1...63.....8...4..............82.9..34.......6........
+...4.9..67.....1..3..5......9....2......7.......8.........6..17.4.2............3.
+...4.9..87.....3.....6.....2.......5...8...9.3........14..3.....9.....6.......2..
+...4.9..87.....3.....6.....3.......5...1...4.2........19..3.....4.....6.......2..
+...4.9.2..35...................6.3.79..7........8..5..7...3....4......9.......1..
+...4.9.6.2.....8.....6.....5.....63.1...2...............9.7.2...6.3.............1
+...4.96..21..........5.....3......278......1....9.......4.6.9..7...2.............
+...4.97...1.....3....2.........3..819......5.2........7..6..2........4......8....
+...4.98..13...................35..1...8.....42.........6.23......7...9......1....
+...4.98..7.1................9....3.....52....6...7....3......2..8.1............67
+...41.....5.....2..6..........8.5.6.7.....3..4..7.....1...3.4...2...6............
+...41.....6.....2..5..........8.5.6.7.....3..4..7.....1...3.4...2...6............
+...41....5.....7.....2......4.7.....2.....6....8...5..32.....4.6....5..........1.
+...41...57......3.6...........3...8..1....7...5..2.........3..18..6...........2..
+...41...57......3.9...........3...8..1....9...5..2.........3..18..6...........2..
+...41..2.53................8..9.71..7..8...........3...1..3.........5.8...2......
+...41..6..2..6....53.......7..94.....5....3..............8.32..4.1...............
+...41..6.7.3...............2....7....4.....1.......3..6.....5.2.8.1........2..7..
+...41..7.5.....3....6.9..........41.8..2.....2.........7...5......6..8...1.......
+...41..8..52......6.............5..31...6....4.........3.7.2......3..1........4..
+...41.2...16...............3...68...2.....5......7....42.5............76...9.....
+...41.2...8.....5....6.....7.....6......85...........16..2.....13............4.8.
+...41.5...37...6......2....4......21...7.3.8..........1.......5...8..7...........
+...41.5...76...3......2....4......21...6.3.7..........1.......5...7..8...........
+...41.5...83...6......2....4......21...6.3.8..........1.......5...8..7...........
+...41.5...83...6......2....4......21...7.3.8..........1.......5...6..3...........
+...41.5.67...8.....9.........15............78.......2....6..4..37.......8........
+...4153...68..........3.....2.6.7.........1.....2.....1...4...........765........
+...4153...78..........3.....2.6.7.........1.....2.....1...4...........265........
+...4153...78..........3.....2.6.7.........1.....2.....1...4...........275........
+...4153...86..........3.....2.6.7.........1.....2.....1...4...........765........
+...42...........15...6...8..3..7.....4....6.......1......3..7..1.....4..6.8......
+...42......1...3.....8..........516.8..7.....2............6.52..7...1...........8
+...42.....1.......5.............561...4.3.....8.........6...2.43..8.1.........7..
+...42.....1......5.............7.2.........46.5...1...6..3.5...4.....78....1.....
+...42.....3....7.....6.....1.6..........9.2..4...........1...45......16..7...8...
+...42.....6.....9........1...4...2.8..7...4.......1...31.5.........6.7..9........
+...42....6......9.....5.......5..2.49....8.........8....23..5.......6.7..1.......
+...42....8.....7.....3..........14...35.......2....6..1....6.5.....7..3.........2
+...42....9.....8.....3..........14...35.......2....6..1....7.5.....8..3.........2
+...42...38.1............2...4.3..5..7......8....2.........68.1..3...7............
+...42...6.1..........6.........6.31.4..7.5................31.5.2.6............8..
+...42..3..15.............2.4..63.....7....8.....2..........15.73..............1..
+...42..3..16.............2.5..34.....7....8.....2..........16.73..............1..
+...42..5....1...8.7.......3...6..1..25.......3.............3..2.1....4....8......
+...42..6..1..............5.3.65........3..1..4.....7......72.......1.8..6........
+...42..6..17...............2..36.......5....97.....1...98..1.........4.........2.
+...42..7..1..............5.4.75........3..1..6.....8......82.......1.3..7........
+...42..7.6.1...............24....5.6...83..........1......56....2.....8....1.....
+...42..8..91..................5..1.38..7...........9..4......2..3...1......63....
+...42..9..87..5............5..6..1.....2..4..........8....87...6......5.....3....
+...42.5..18........3.......5.2...7.....3.8.......6.......1...347...5.............
+...42.6..38.........5.......246............31..............2.5.7.....4..1...3....
+...42.6..71................3.65............81.......9..82...7.....3.9.......1....
+...42.6.18..7......3........12....8....5..9...........7.....4..5......7.....1....
+...42.7..58....3...1.......7.....2.6...5..........8......6...8.2...7...........1.
+...42.8..5.1.........9......4....2..6....5.......3....37.....65...2...3..........
+...43.....1.......5...........6.1.8.7......4....2.....8.4.7.........61..9.....2..
+...43...2..1...7......2.....8.6.1..........23............5..61.37.......4........
+...43...2..1...7......2.....9.6.1..........23............5..61.38.......4........
+...43...671..............3.2.......5...1..6.....3.....5.8.2.........7.4.......1..
+...43...681..............3.2.......5...1..6.....3.....7.5.2.........8.4.......1..
+...43..8.7.1...3............4....52.5..1.7......6.....6.......1.8..2.............
+...43.2..5..2.....16...........71....2....4...3.......7......51.......8....6.....
+...43.2..58....3...1.......3.....6.7...5..........8......7...8.2...6...........1.
+...43.6...29.......8.6.....7..5..1.........39..............9.281...........7.....
+...43.6...71..................1.75..3.....8.....2........5...1748..............2.
+...43.6..97.......2.........36.5............1.......2.1.82..........9.7.......3..
+...43.7...5.2.....6.8......2..7............81.......5.47....3......81............
+...43.7..1..6...........9..5......16....7........6.......1...8.29........7....3..
+...43.8...5.....2...........9...1...2.....4......5....6.48........2..95.........1
+...43.9..6.1.........5.....14.....6.....8...2.3.7...........53.2....6............
+...432.........5.1............62..4.73.......1........5....1.....2....3....7..8..
+...45..........8.7......1...24....5......1.....8..........6.28.17.3.....9........
+...45.....6.....1........8...4...2.5..7...4.......1...31.6.........2.7..8........
+...45....1.....6......8....6..7.1.........3.8.......4..482......7....1....9......
+...45....3.....2..8.........6.5...4......3..........1..51.6.......2..3.8......7..
+...45...9...2.....8.........5.74....6.....8.........1.1...6.....4....2..3....8...
+...45..2..7.6.....31............17..2..........4......6..2...........1.8....4.5..
+...45..2..7.6.....31............17..2..........4......6..2...........5.8....4.1..
+...45..2..7.6.....31............17..2..........4......6..2...........8.5....4.1..
+...45..6..1.......2............817....5....4.6.........8....1.2...5..3....6......
+...45..6.7.....2.....1......4.61..........3.7.1.......8....3...3...2...........4.
+...45..612....7...3...........34...8...1.....7..............27..6....4...1.......
+...45..7..1..............6.3.76........3..1..4.....8......82.......1.9..7........
+...45..7..1..............6.4.76........3..1..3.....8......82.......1.9..7........
+...45..8..16...............7....1.3.....6...4.2.......3..8..9....4...6.....2.....
+...45.1..7....3...6........34....8.....62.........7..........23.1.9............7.
+...45.2...6.2......37......4.8...5......31...................179..5............3.
+...45.2..3......7.8........4..1....3....2..4....6......2....6.......3..8.5.......
+...45.3...1......6...2..........1.782.4.3....5.............8.1.4.....2...........
+...45.3..29..........1.....6.....13.7....2.......8......13......8......2.......7.
+...45.6....52.....2.......1...8...5.1.....3..79...........31..........82.........
+...45.6..12.....7...........7..21.....8...4...........6..3..5....48............2.
+...45.6..32.........7.......546............31..............2.5.8.....4..1...3....
+...45.6..32.........7.......645............31..............2.4.8.....5..1...3....
+...45.6.71.....3.......9......86.5..91.......2..........63............2........1.
+...45.7...1.............9......13.8.7...6.4..2.........6.....1.9..7........2.....
+...45.7..2......8.6........1...2...6......3............7.5.8....4......2...7...1.
+...45.7..91.................6......1....8..3...7.2....2..3.9.....4...8.....1.....
+...46....2.4......1........9..71...........65.......3..3...9....6....1.....8..2..
+...46....3.....2..8.........4.5...6......3..........1..51.4.......2..3.8......7..
+...46...3.21.........5.....78...2.........51.........66..3.....4......8.......2..
+...46...93.....1.....2.....9...8...5...7...4.1.........6.....2......13...4.......
+...46..5..71............3.....1.74.....2.....8........65..8..........12.3........
+...46..5.83................7.6.2..........3.9......1...4.3.8.....5....2....1.....
+...46..8..21......7.........8...2...3......5.....1.3..5..8........3..6..........1
+...46.1...3.....2..........1...7.6..42................7.1...5.....2.3.8....9.....
+...46.1..2..5......3.....7.....72.3...1...5..............1..4..78.......3........
+...46.1..2..5......3.....8.....82.3...1...5..............1..4..78.......3........
+...46.2...85...............1.....6......53...2..........7....53.4.62.......1.....
+...46.3..2.8......7............28.7..1....5............3.1..4..6......2....3.....
+...46.3..2.8......7............28.7..1....5............3.5..4..6......2....3.....
+...46.3..8.2......7............28.7..1....5............3.1..4..6......8....3.....
+...46.3..8.2......7............28.7..1....5............3.5..4..6......8....3.....
+...46.5..8.....9..1.........4....7.......8.9.....2.....6.5....49......8........1.
+...46.7..38.2......5.......7.2...3......51............4..7............18.......5.
+...461....3......5.........2.6.7..........3.41...........3...2..8.5...........16.
+...461...82..........7........2..7.49.....1..3...5.....41..........3..5..........
+...461...92..........7........2..7.48.....1..3...8.....41..........3..5..........
+...4675..28....4..............3..2...76...............4..15...........873........
+...47.....1....6...2.........5...28.7...9.......6..1..4......79.....1..........3.
+...47....2......5....1..........596..41...............58....2..6...3.......7....4
+...47...2.1..........2.........2.31.8..6.5................31.5.2.4............8..
+...47...2.1..........2.........2.31.8..6.5................31.5.2.4............9..
+...47...2.1..........2.........4.31.8..6.5................31.5.2.4............8..
+...47...2.1..........2.........4.31.8..6.5................31.5.2.4............9..
+...47...53.........2..........5..63..71............2..6..3.....8.......7....9..2.
+...47..2...1.3..........5..4......7..2.5........1.....67......3...8..1..2........
+...47..3..15.............2.4..32.....6....8.....7..........15.63..............1..
+...47..3..15.............2.4..32.....6....9.....8..........15.63..............1..
+...47..3.5.1.............8.2....56...7.3............4.......1.2.9..4..........5..
+...47..3.5.1.............9.2....56...8.3............4.......1.2.7..4..........5..
+...47..5.2.1...............3...21....7.....4....5...........1.3.4.8.....6.....2..
+...47..8..1..5...........2.8..3...........6.....2.........615..4.....7..2.8......
+...47.1...5.2......3......86...1.7....4..3..........5....7...3.1................4
+...47.1..2......6..........5..2.3....4....7.......6...6......32..7.1.......8.....
+...47.2..138...................38.2.5.....1............4.....376..1........5.....
+...47.2..138...................38.4.5.....1............4.....376..1........5.....
+...47.2..3.1....................1.37.4.6............5.78....4.....52.........3...
+...47.5........36.............98...7.53..............2.....312.96.......4........
+...47.5..63.....................2.314.8.6...........5...7...4...1...3......2.....
+...47.8..69.2......5.......8.2...3......51............4..8............19.......5.
+...471....35...8...........2...6.......3..6..7........1......7..6.5............24
+...471..38............3.......5..86..1.............2..53......16..8............4.
+...473....12...6...........38..5..........21......7...5.3.....74...........1.....
+...48....7......1.......5......3.4..1......7.2.........452..3...3....6.....1.....
+...48..1.6...7....3........5..2.3..........74...6...........3.5.4....2...1.......
+...48..2.1.................82.5........7..1.9......3...5....64...9.31............
+...48..2.1.9.....57........63..2..........1............4.....3....1..7...6.5.....
+...48..3..15.............2.4..32.....6....9.....8..........15.73..............1..
+...48..3..51.............2.4..32.....6....9.....8..........15.73..............1..
+...48.2..56..3...................43....7.6......1..........1.6.8.4......2.......7
+...48.3....1.......2........6.2.1......5..7..3.....8.....6...2.7.....4..8........
+...48.3..1.2......6.........3....74......1....7..........34..5.2.......1...7.....
+...48.3..7.2......1.........9.2............51.......7....5.1....4....8.....76....
+...48.5..1.....8..7........6..7.2....5....3.4...1......4..5...........2........7.
+...48.5..93........1.2.....8...9.2......61...................362..8............1.
+...48.6..32.........5.......645............31..............2.4.7.....5..1...3....
+...48.7....1............2..25..........6.9......1...8.72..5...........913........
+...481...4......2...........15.........7...9..8.......7..2.6.......5.1........8.3
+...487.....2.....1..........635.....5......7.......28.48..........3..6..7........
+...49.....5......8.......1.6...2.9..4.........8.......7.2...3.....8.54.....1.....
+...49.....5......8.......1.6...2.9..4.........8.......7.2...3.....8.57.....1.....
+...49..2..13..................613.7.95.........6......2..8...........3.5......1..
+...49..3...1.......8.......62.....9.....18......7..........27..9.....1..3..5.....
+...49.6..3.2...............8..2.3...6.....9.....7.....91..5........8..7........2.
+...49.6..51....7....7......2..3.6...3.......9.......1....8..2....4.......9.......
+...49.8..3.1...............7..5.3....4....9...........6..2...53.8..1...........7.
+...492...53....1...........7.86...........9.14.........92.3.......7...4..........
+...5....1..5.3.....1.......6...4.2..79..............8.3.....64...81........9.....
+...5....1..9......6..........5...89..3..1.......2.....12..4.........856.3........
+...5....1.2..4....6..........6.3.7..1.5....2.8.........3....94....8........1.....
+...5....1.29.......3............62..8..1........7.........2.35.7......4.1...8....
+...5....1.8.3.....7........6.....47....1..8....2..........74.6...5.9.....1.......
+...5....13...4....7.........5.2.1.........36..9.......4...6.73..28...............
+...5....18........3........6......8..9...3....5.1.......476..........23....4..8..
+...5....2..6....4..7...........637..5.....8......4....89.1...........63.2........
+...5....2.1.....7...3........7...16....8..4..5..2.........1.3..86.......2........
+...5....24.....1...3.......1...43.........6.7.......5..526...........48...7......
+...5....24.....1...6.7......5.....7......84......1.......3...5.67.......1.8......
+...5....27......3.....8........9.1..2.8......3.........1...46.....2..8.....3.7...
+...5....3...9.8.........14....2...7.3.....6..1.4..........1.3.8.2........9.......
+...5....3...9.8.........41....2...7.3.....6..1.4..........1.3.8.2........9.......
+...5....3.45.......8....2..7..1...........3.........8....7.8.4.3...2.6..1........
+...5....31...2...........7.....1.2...3....4...5......62...6.1.....7...8....3.....
+...5....42......3...1.......5......76...1........27....8.3...........61....4..2..
+...5....6.4.1.......7...2...2..78..........51.............4.72.6..3.....1........
+...5....6.4.8......1....7........14.8.....2..3..9.....5....6.8.....1........7....
+...5....63..2...........7......7.3..8......2......1...53..6.....7......1...4...9.
+...5....78.3......9..2.....1.....93....6..8.........1..5......2....39.........4..
+...5....8.2....4..1....7....8.74..........31.............6....49......7.3...8....
+...5...1........397..........9...6.....2..7...1.......6....45..2...19.......3....
+...5...1...2.6...........3....74.2..5..3......1....6..85...........2.4..3........
+...5...1...2.6...........8....84.2..7..1......3....6..85...........2.4..1........
+...5...1..2..8....7........2...7.8.36.14...............3....7....51...........9..
+...5...1..2..8....7........2...7.8.36.14...............3....9....51...........7..
+...5...1..2.6........8.....5..41.....8....6......3..........8.21...4....3.....7..
+...5...1..2.6........8.....5..43.....6....8......1..........6.21...4....3.....7..
+...5...1..36.............2.8..2.5.........4.3...1.........367......7.8..1........
+...5...1..6.1......7....3...3....7.24..8.....5........1.8....4.....2........7....
+...5...1..8....6......7.......6.82..7.....4..1............4..73.6.3.......5......
+...5...1..8...2.........7.....64.2..1.3........5.........13..5.72....4...........
+...5...1..82.......6...........6.2.34..1........7..8......2.9..1.4......7........
+...5...1.2........7.........183......5..9........7.4........9.2.3.1.....6.....7..
+...5...1.2...4........3.....15.......6.7...........8..8..6..2..3.....4.9...1.....
+...5...1.2..3........7.....5..41....7.....3......8..........2.3.8....6...1..4....
+...5...1.2..6........3.....5..41....6.....3......8..........2.3.8....7...1..4....
+...5...1.3...6......42......5..18........73........2.4...3..4...1.......7........
+...5...1.4...3....6.....7...91....5......4.......2.........64.3.5.8...........2..
+...5...1.4...6....7............7.6...8..4.....5.....3..1.3.....2.....4.....1..8..
+...5...1.4...6....8.............24...3.1.....6.....8...173.........4.2...5.......
+...5...1.4...7....8............8.6...9..4.....5.....3..1.3.....2.....4.....1..9..
+...5...1.4...8....9............9.6...8..4.....1.....3..7.3.....2.....4.....1..5..
+...5...1.4...9........3.....15.......6.7...........8..8..6..2..3.....4.9...1.....
+...5...1.5.3......4......9.....8.2......7...3.1..........9.4...6.....8.....1..7..
+...5...1.6...2....8............8.6...1..3.....4.....7..3.1.....2.....5.....4..8..
+...5...1.6...2....8............8.6...1..4.....3.....7..4.3.....2.....5.....1..8..
+...5...1.6...4....7............7.6...1..2.....4.....3..5.3.....2.....7.....1..8..
+...5...1.6.7......2...7........2.5.43.....2..18........4.1...........7.....3.....
+...5...1.7...2....8............7.2...1..4.....5.....6..6.3.....2.....8.....1..7..
+...5...1.7...6....4............2.6...8..4.....1.....5..5.3.....2.....4.....1..8..
+...5...1.7...6....4............7.6...8..4.....5.....3..1.3.....2.....4.....1..8..
+...5...1.7...6....6............7.4...1..2.....4.....3..5.3.....2.....7.....1..8..
+...5...1.7...6....8............8.6...1..2.....4.....3..5.3.....2.....8.....1..9..
+...5...1.7.3......4......9.....8.2......5...3.1..........9.4...6.....8.....1..5..
+...5...1.7.6......2......8.....7.2......2...3.1..........8.4...3.....7.....1..3..
+...5...1.7.6......2......8.....7.2......5...3.1..........8.4...3.....7.....1..3..
+...5...1.7.6......2......8.....7.2......6...3.1..........8.4...4.....6.....1..3..
+...5...1.7.6......4......8.....9.2......6...3.1..........8.4...2.....6.....1..7..
+...5...1.8.....2..2...3.....61....4.....2.7...........35....8.....1.6......4.....
+...5...1.8...6....4............2.6...9..4.....1.....3..7.3.....2.....4.....1..5..
+...5...1.8...7....4............8.6...9..4.....5.....3..1.3.....2.....4.....1..9..
+...5...1.8.6......4......9.....3.2......6...3.1..........9.4...2.....6.....1..7..
+...5...1.9...8....4............9.6...8..4.....1.....3..7.3.....2.....4.....1..5..
+...5...12.3................6.5....2.7...4....2...3.....8....3.4...6.1.........9..
+...5...1278................3.....64......1.......7........6.43...52......1....7..
+...5...137.....8....2.........4...658...2....3............7.2...5.3......1.......
+...5...146..9......8...........832..5.1..............77..1......2....8.........3.
+...5...16..2.7.....8...........3.9..14..........6.....5..1.......3...2.....4.6...
+...5...16.2...7....1.......6...4........2.7..8........3..6...........42....8..5..
+...5...167.....8....2.........4...358...2....6............7.2...5.3......1.......
+...5...1693..8...........4.8.....2.9...1...........3......29....16......7........
+...5...187....4..........3..81....5......72......4....2...6.4........9.....1.....
+...5...189...7...........6..8.6.4.......2.3...1.......3.....9.....13....2........
+...5...2........48.3.......5....43...6....1......2.......63.7..2.8.........1.....
+...5...2.....9..6..1.............8.39...7..........1..2..1.3......8..4..5......7.
+...5...2....2.1...8.....6.........359...4...........1....78.2....3...4...1.......
+...5...2....7.4..........3..28.6.......1..9...3....4......3...58.....7..1........
+...5...2....8.4..........3..21.6.......7..9...3....4......3...57.....8..1........
+...5...2.1.....3...7...6...3...81.........75..............3.1.9.524..............
+...5...2.3.....7.....4.6...1...3...........5........4..6..8.3........1.9.48......
+...5...2.3...7.....8....1..5..2..6..7....1.........4...4.1.........4...3.......7.
+...5...2.31........74......74..1...........9....8.....2.96.........3.7........1..
+...5...2.4.....8.....6.7...1...3...........6........5..7..8.3........1.9.58......
+...5...217.6..................1..5..8......3.....67....214......3....1......7....
+...5...23.8..6.............2......7.....4.8..3.5......1..3.5....7....4.....1.....
+...5...2378...................15..4..6....8......2.......6.37..2.5......1........
+...5...24.1..............7.4...61........71..8........2..4......7....3.....85....
+...5...248.1................5.4.2.6.3.....8..............78.1..6...3.....2.......
+...5...274.1...............3...4.1......8.4...2........5.2.....6.....3.....7.9...
+...5...2836..7.....1...........416..2......7....3......7....1..5..8..............
+...5...287...3................2.5.6.1....8...4.7..........4.1...2.6...........4..
+...5...291...6....37..........8.2.........35.4.....7.....43.....92...............
+...5...294.1..................8.26....6...3........41.75......8....1.....9.......
+...5...3..27...............3..1.....6.....2........8.7.98.2....1......5....47....
+...5...3..6.7......2....4..9.1....7.....2...6....4........8.2..7..9.....3........
+...5...3..9..2....1..........37......5......1.6....2..7.....58.8...14............
+...5...3.4.....6.....8.1...3...2...........51.......6...8...2.7....6.4...1.......
+...5...3.4.....7..8.........36...........42............5.31..6.2.....4.....6..8..
+...5...3.6...1...........7.....4.8..2.3............1...4....6.9.5.3.7......2.....
+...5...3.7.......8.....1....3..4..2.......1......7....4.....7.6..82..5.....3.....
+...5...3.7.....8..6...4.....31....5.....2.7...........27....6.....3.1......4.....
+...5...3.8...1...........7.....4.6...23............1..5..3.7....6....4.9...2.....
+...5...31.4..7............8....246..8.....2..1...........1...2..2....5.....3.....
+...5...312..7............6....8..4...31.......2.......4...6.2..7.......5....1....
+...5...34..74......1...........28.......1.7..8.......63.....21.4..6..............
+...5...34.2.1.....7.........35....6.....781...........8.....7..4..3.........2....
+...5...34.2.9.....7.........35....6.....781...........8.....7..4..3.........2....
+...5...341...8....2...........7.12..53......6.4.............12....4...........7..
+...5...38...94....1........7.....4.6...3...........9...38....2.....6.7...2.......
+...5...4..1...........1....4.5.....6....8.1.72........5..4..2........38....6.....
+...5...4..3......1.2...6...5..47.....6....3.....8.........3.2..4......8.7........
+...5...4..8....3...1.......7..4.2......6..1..3.......8..2.8....4.......6.......7.
+...5...4..8....6..3.........9..81.........3.........5....7..8.15.42.......9......
+...5...4.2.......6.......2.......38.1.6.........4..5...3..7.1......62....5.......
+...5...4.2.....6..3...........45.1....87.....6.......2....2...6.4.....7..1.......
+...5...4.3.8........1......57.6...........2.4......8......213...4.....5.....8....
+...5...4.7..8.....6.9.......1..3..5.....97.........2...5.1..6..........9......7..
+...5...4.8.....6...............2.3.81..4.....75........4.....1...2..8.......36...
+...5...4.8.....6.....4.....62..8...........517..........43.........6.2...51......
+...5...4.8.....6.....4.....62..8...........517..........43.........7.2...51......
+...5...4.9.....6.....8.....62..9...........517..........83.........6.2...51......
+...5...4.9.....6.....8.....62..9...........517..........83.........7.2...51......
+...5...416......8.....7........327..1.5......4.........2.1......8....3.......4...
+...5...421...6.........8...6.....18.....3.......4......247......5....3........6..
+...5...421...6.........8...6.....18.....3.......4......547......2....3........6..
+...5...421...7.............9.....63......1......2......4..3.7...52........8...1..
+...5...423.1................4.7.....6.....1........3.742.....5.....8.6.......1...
+...5...43.1..9....7......6.12....8.....4......9...........2.1....36.....4........
+...5...43.17...................761..4.......62...1..........92.3..4........8.....
+...5...48.2..............9..1..9.2..5.....3.......4......3..67.4.8.........1.....
+...5...48.2..............9..1..9.2..5.....3.......4......3..67.8.4.........1.....
+...5...48.7.....5...1.......3....6..5..8........9.....8.....9......3.7......2...6
+...5...483...1..............94.....5....3.2...........2.....13..6.4.5.........7..
+...5...6...7...1.....8.....4...17...2......3.....9....36.2...........9.1.8.......
+...5...6...71......2.......47..6....6.....5..........15..3.........2..7...1...8..
+...5...6..27...................278..69.......5.....2.....65..9...3...7.....1.....
+...5...6..4....2....1..........8.1..5..3......6.....7.....124..6......53.........
+...5...6..4....2..1...7.....3..42.........85..........5.61........3..4.........7.
+...5...6.43.......2.........4....21....93........7.......8.1..9......3.29........
+...5...61..9...2..7....6...64.8.........1.7..3.............7.3..1...........2....
+...5...612..3............4.3.....59......1.......6.....57...8...6..4..........2..
+...5...613......5.....3........4.2....6..7....1.......4.....9.....2.6...8..1.....
+...5...62..1.....7....3.....8....13....2.4........6.......5.8..24.......6........
+...5...62..1.3...........4.....713..45.......6........26.4...........8.7.........
+...5...63.8..7........4.....7....1.5......4.....6.....6.3....2......17..5........
+...5...634.1...............53.2.........8.1...........2..6.9....7....81.......4..
+...5...634.1...............56.3.........8.1...........2..6.5....7....81.......4..
+...5...637...8....1.........5.6.2......3....74.....8......7.4...6.....2..........
+...5...64.8..27............1.63.....7.....2..........8.2....7.....6...1.....3....
+...5...649.1.........3...........3.9.6.7...........2..3....25......1..8.....9....
+...5...7....6..1...8........2.....48...1.7..........3.7...8.2..1.....5......4....
+...5...7....8.6...2.........5.6..1...3....2......1.4..4...23..........65.........
+...5...7...1....3..4...6...68....2.....71....4........7.53...........6..........4
+...5...7.3...6....6...2.....5....3........1.6...7......8.....2.....34......6.1...
+...5...7.6...2...........1.3.2...6........9...7.......4.....2.3.5.7.1......8.....
+...5...7.6..2............8......13..5.4......7...8........4.2.7...7..6...1.......
+...5...713...8................7.1.4.6..4.....25...........238........2...1.......
+...5...72.1..6............8....3.61.8.42.....5........2..8.........1.3...........
+...5...741..6...............7....31....2..5...8..4....5.2......6....3.......7....
+...5...741..6...............7....31....2..5...8..4....6.2......5....3.......7....
+...5...748...92.............657...........8.2......1..2...4.......6...3.3........
+...5...79.21..................42..6.8.....3..9..7.........321..7.........6.......
+...5...8....4....51..........6.3.71..5.2..............3...176...2......4.........
+...5...8...47.....1.........5.4..2..2.....6.1........33....2....7.....4.....1....
+...5...8..2.....7..6..........4.23..8......5.1..............2.4...71.......3..6..
+...5...8..4.....3...1......6...2.5..8....3.......1....53.7........4..1........2..
+...5...8..4....6....71.....3...6........4..7.........156....3.....7..2..8........
+...5...8.1......2.7....3.......1.7.964........8........5.4........82..........1..
+...5...8.2.1........7......45.3...........1.2......6......612...3.....4.....7....
+...5...8.3.1...................432....8....7.....2.....6....3.12.....4...5.7.....
+...5...81.7..4................67.2..5.....7..1..........21.8....6....4.....3.....
+...5...8126..........1.........63.9.1............2.....3....7......7.6..9..8.....
+...5...82.7..3...........1.36....7..8..1...........5......7.6..14..........2.....
+...5...83.72...............5..3..2...1....6..........71.3....5.....764...........
+...5...841..6...............8....37....2..5...1..4....5.2......6....3.......8....
+...5...841..6...............8....37....2..5...9..4....5.2......6....3.......8....
+...5...841..7...............8....36....2..5...1..4....7.2......5....3.......8....
+...5...841..7...............8....36....2..5...9..4....7.2......5....3.......8....
+...5...842..4...7.1.............21.6....9.2...8........4.8...........9......3....
+...5...846.2.......7...........2...98......3.....7....5..1..6...8...3.........2..
+...5...9.....8..2..1.............7.38...6..........1..2..1.3......7..4..5......6.
+...5...9..2..8....6.........5....2..4...6.........1...7.9....1....25.8.....3.....
+...5...9..46.......3.......8....2..41..9...........3..9.....81....73........6....
+...5...9..61........2......9..35..........2........1...8..7..3.4.....68......1...
+...5...92..6.3....1........3...1.6..8..4......2.....7..9.7.2.........1...........
+...5...932.6.8................62.7..13.....4..........8.....2...9.3..........1...
+...5..1....4...2..8.........1....5......3..6.7...4.....63....4....2...7....1.....
+...5..1...2..3....6......4.....7.2.35..1.....4...........8.6....5....3.....4.....
+...5..1...32.........1.........7...45.....6......3.....7....53......9.8.2..4.....
+...5..1...32.........1.........7...49.....6......3.....7....53......6.8.2..4.....
+...5..1...7.....3..3.8.....5......4........72....1.......4.7...1.....8..9.....6..
+...5..1...83..................487...1.....2.......3...5..61..7.4.......8.......3.
+...5..1..2..6.....43.........5...6......32...........8......532...48...........7.
+...5..1..23.......8...........1.65..3...............4...1...62....48........3...7
+...5..1..23.......8...........1.95..3...............4...5...62....48........3...7
+...5..1..48........7......31....36......7..2.....4.....2.....7.5..6........1.....
+...5..1..6...7....8........3..4....9.....5.8....1.2.......8..6..5....4...1.......
+...5..1..7................839...........4...7.5.....4.1...78......2...9..6....5..
+...5..1..7...3....9.........5.2..6..3......9....1.....4...9..7..8....2...1.......
+...5..1..76.......2.3.........3...764..8............2..5....8....6.2........1....
+...5..1..8...3..........4.9.4.6...5.....8..3..1..........4..6..3......7.2........
+...5..1.347..2..........9....16.........5..8........4.24..........3.1...8........
+...5..1.364..2..........9....17.........5..8........4.42..........3.1...8........
+...5..1.367..2..........8....17.........8..6........4.26..........3.1...4........
+...5..1.368..2..........9....17.........5..8........4.82..........3.1...4........
+...5..1.437..2..........9....16.........5..8........3.23..........1.4...8........
+...5..1.46.7.3...........2.3..6..7..8..4...............4...2.......9.3...1.......
+...5..1.463..2..........9....17.........5..8........3.32..........1.4...8........
+...5..1.467..2..........8....17.........8..6........3.26..........1.4...3........
+...5..1.468..2..........9....17.........5..8........3.82..........1.4...3........
+...5..1.47.8.3...........2.6..7..8..9..4...............4...2.......6.3...1.......
+...5..1.72....8.........3......64.8..31...............6...3..4..7.1..5...........
+...5..14...3...5...6.......5..13..........7.6.2...........67.2.1.............8...
+...5..164.9.....2....3.....1..4..7...2................6...28...7.....3......9....
+...5..2....1.4.....9.......2.....68.5.4..........9...........913..6......7.3.....
+...5..2....1.4.....9.......5.....68.2.4..........9...........913..6......7.3.....
+...5..2...1.............8..36.....1....4..5.7...2.........9..6.5...3....2.4......
+...5..2...13.......4..6....4..2............17.......3...74..6..5.....8......3....
+...5..2...3.....1.7...4.....4.....63..52........6....7....31...2.....8...........
+...5..2...6.....8....1........3...9.5.7......2............7.5.2.8..4.........21..
+...5..2...8..........1.........72..31.5....4.6.............7.1..2..3....4.....5..
+...5..2...8..........1.........72..35.1....4.6.............7.5..2..3....4.....1..
+...5..2...81...............6.....9......17......3.8...4..2...7.5...6...1.......8.
+...5..2...96.......1.......4..1............39.......6...34..1......76...5.....8..
+...5..2..1.3......6............31..6....9.4........7.....8.6.1..2.7.....9........
+...5..2..3......8...64......5.2............36......7......361..47...........8....
+...5..2..4......8....1........6..1.57...3..........9...2...8.3..1..7......5......
+...5..2..4...7..........9..1....6.8....3.2....7..........16..4..92...3...........
+...5..2..4.1......3............416...5....8...........6..2...3..3.8.........7..4.
+...5..2..41.......6......3..7..8...4..2...5......1.......3...7.8.......1...2.....
+...5..2..6...4....1.........532........3...61........8....86.7..2....4...........
+...5..2..6..3...........1...1...6....2.....7....4...3.....28...3.7......4...7....
+...5..2..6.1................5.7.2...3......1........6.4...16....2..3..........7.8
+...5..2..7......6.1...........416....2....3......7...........16..39......5......8
+...5..2..7......6.1...........416....9....3......7...........16..38......2......5
+...5..2..74.......1......3.46.2.5......8............1.....13.....2.7..........9..
+...5..2..9.....4..1.............9.3..2..4.....5....6..8..26.......7...1........9.
+...5..2..9.7......8.........5.3....746.2............1..3....6......19.......7....
+...5..2.16...4............3.72....4....1......3.......1....3...5.....6......7..8.
+...5..2.18...4............3.72....4....1......3.......1....3...5.....6......7..9.
+...5..2.4......7..3...........46..3...2...5......1....81.....6....2.7..........9.
+...5..2.4.91...................9..8.6...3....4.....6...8.....3.7..6........4.2...
+...5..2.48.1................2.7.6...3......8.............18..6.54....7......3....
+...5..2.48.1................5.2.4...3......8.............18..7.64....5......3....
+...5..2.48.1................5.6.2...3......8.............18..7.64....5......3....
+...5..2.48.1................5.7.4...3......8.............18..6.24....7......3....
+...5..2.49.1................2.8.4...3......9.............19..7.64....8......3....
+...5..2.49.1................5.2.4...3......9.............19..7.64....8......3....
+...5..2.49.1................8.6.2...3......9.............19..7.64....5......3....
+...5..2.6..1............5......4..1365........7.......3...18......2...4.......7..
+...5..2.61..............9...9.7.56.....8.....3........8...3..1..6...1.......4....
+...5..2.61..............9...9.7.56.....8.....4........8...3..1..6...1.......4....
+...5..2.7.1.............9..7..42....5......18.......3.4.96.........18............
+...5..2.7.41............3......84.6.1...6....7........2..7......6.....1....3.....
+...5..2.7.8.6...........3.....1...852.7.3.................72...65..............4.
+...5..2.7.8.6...........3.....1...857.2.3.................72...65..............4.
+...5..2.768.3...........4...27.4.......1...9..........3......1.....2.5..1........
+...5..2.864.1...........4...28.4.......3...5..........5......1.....2.7..3........
+...5..2.867.1...........4...28.4.......3...5..........5......1.....2.7..3........
+...5..2.867.3...........4...28.4.......1...6..........3......1.....2.7..1........
+...5..21.3...4..6.............2.85..6.4.....37.........2....8......6.....1.......
+...5..24.1...6.............48.....1....2..57....3.....6...18.....2...3...........
+...5..24.8.1............3...4.2..5..1...6.................7..18.24..............6
+...5..26..4.8......1...........47.3.5.....6......1..........3.46..2.........3....
+...5..26.4.....3..7.........51....9.....4.....3.......68..7..........5.1...2.....
+...5..27..4.8......1...........46.3.5.....6......1..........3.47..2.........3....
+...5..27.1...4..........6...2.6..4..9.......8.............8..31.672..............
+...5..28.74.......6...........3.2.5.1.......4...8......2....3......6...7....1....
+...5..3......74.........5..1.7....4.....3......4...........6.7153.2......8.......
+...5..3.....4...6...1..........87..13.....5...........25....4......76.1..3.......
+...5..3....1.......9........6......72...8........1.9..3......815..9........6...4.
+...5..3....74......2.......39.1............625.........8..26...1.....9......7....
+...5..3...3....2......1.......3..75.1.4......8.............8.64.2.6............1.
+...5..3...3....2......1.......3..76.1.4......8.............8.54.2.6............1.
+...5..3...8.4......76..........7..2.5.....4.......1...9..26...........17......5..
+...5..3..1...8..........2..6....7.9....4.3....8..........17..6..32...4...........
+...5..3..12........9...........2..41...6..........7.....3...65.2...41.........8..
+...5..3..2.....6......4.....7.....4.3..8.............1...6..25..14.7......9......
+...5..3..2.1......6.........5....19....46........2..........726...8.1...........4
+...5..3..4...6.....1..........3..12.....4..........7....82.1...7......64........9
+...5..3..4..7.....1.........7.95.....2.....9........418....1....9....5......6....
+...5..3..7....4.........2...5.32......8.....1...6.....4...71.........62........5.
+...5..3..7..3......6.............4.7..38.....4......6.....671...95..........2....
+...5..3..8..4.....1.........95...2...3..6........8....7.....6.8...3.2..........1.
+...5..3.147..2..........9....16.........9..8........4.84..........3.1...2........
+...5..3.164..2..........8....17.........8..9........4.49..........3.1...2........
+...5..3.168..2..........9....17.........5..6........4.26..........3.1...4........
+...5..3.19.28.....4........7..63...........2........9.....84....1....6.......9...
+...5..3.192...............786.....4.4..7........1.3.......6..9...1............5..
+...5..3.192...............786.....4.4..7........1.3.......8..9...1............5..
+...5..3.4..1..7.........2......46.8.29........3..8....3..2.....6......1..........
+...5..3.6...3..4...1........4..1...26..4............1.8.....5..5......7.....2....
+...5..3.692...................82.6....9...4..1..7.........49.1...3.......6.......
+...5..3.81...7..........6......91.7..83..................6..24....3.8...9........
+...5..3.87..2.....4.1.......5....8......16.......7.....2.3..4..6......1..........
+...5..3.982.............1..76.....4....19....4..3.......1...5......2..8..........
+...5..31.24........8.........13..5..........4......8......84..23......7....6.....
+...5..31.24........8.........13..6..........4......8......84..23......5....7.....
+...5..32..41.........6......7..48...3.....2......1....5..2...6.....7...4.........
+...5..32..41.........6......7..49...3.....2......1....8..2...6.....7...4.........
+...5..34.1..6.....8............1..9.6...8.....5....4..2...7.....4.3.............1
+...5..37...1......2........47.2........4..1........8...3..16...6......2.....8....
+...5..37..21..................62...13......5..4.......7..4.3...8.....4..........2
+...5..37.6.....4..1.2..........1.2..5..8......4........7.3.........6...1.......8.
+...5..38.6.1.........2.....2...6...4.3.....9.5.........9.7...........2.1......6..
+...5..4......8.6..2...........1.2.7..6....3...4.8.......5....21....6....1........
+...5..4.....1...8.3............2..36.1...............22.9..3...6.....5.....7..1..
+...5..4....1..2....3........8..9..315..3............6....61....2.....5..4........
+...5..4....1.6.....8......3..61.8...5.....7........2..42..7...........1.7........
+...5..4...71...................16.7.....7.5..4.........9.....168..4.5......2.....
+...5..4...9....2......1.....7.4...6......8..3.......1....2..75.1.3......8........
+...5..4..1.6......8........2...6..1..3.7........3...8..9......5.5....7......1....
+...5..4..1.6......9........2...6..1..7.8........3...9..3......5.5....7......1....
+...5..4..1.6......9........2...6..1..7.8........3...9..8......5.5....7......1....
+...5..4..2......3....8.1.......3..62.45.......8.......7...6.1........5.....2.....
+...5..4..2.1............1..8...21.........5.9....8.....5.3...7..46.............2.
+...5..4..62.......3........1.8.3...7......56....7......542............31.........
+...5..4..7....8.............2..6........1..7........38.4....6.11..7........3..5..
+...5..4..8...3..........1.9.4.6...5.....8..3..1..........4..6..3......7.2........
+...5..4.18.3......7.........6.2.1...5......3...........1.4..2......3..8.....7....
+...5..4.6..7...1...2.......4.3..........7..2.....1....6..4........3...7..8...6...
+...5..4.62.1..6...3.........5.4..3........78.....1...........217..3..............
+...5..4.7.1.2.....7.....6.....95..1.8........4.........5.....9......48......1....
+...5..4.7.8.....6..........5.4...3......26...1........76.....2....4..5.....1.....
+...5..42....7.1............2.3.4....6..3...........1..48...........6..3..1......7
+...5..42....7.1............2.3.4....6..3...........1..48...........9..3..1......7
+...5..42.7..1.....3............38....4.....5.....7....15.6...........8.3........2
+...5..43.1..7.....2.........3.48....6.......1.......2.....61....4....5........8..
+...5..46.39..........1.....6...92...7.....5.1......8......3..7..8.........1......
+...5..47.1...........3.....4.....1.2.5.63..........7......82....7.....6.....1....
+...5..48.9..3................8...31.....2........9....29....6.......8..57..1.....
+...5..6....1.......4........8.2...5....4...1.5.....7..6...97.......1.3.........4.
+...5..6....2...1..3...7.........42..5..1........6.2.......8..39.1..............7.
+...5..6...13.......6....8..2.....56......1.......7........4..375..2............1.
+...5..6...13.......7....9..2.....56......1.......8........4..385..2............1.
+...5..6...6....2......1.......3..52.1.4......8.............8.74.3.6............1.
+...5..6..2.9.........64........21....4....8..7.....3.....7...2........19.3.......
+...5..6..2.9.........84........21....4....8..7.....3.....7...2........19.3.......
+...5..6..4......3.1.........5.62....3.......4.......1..8....2......34......1.7...
+...5..6.2......3......9....67....4......1..8.2.........8.....913..6........2.....
+...5..6.2...3.8.........4..2..1...3.9...7....5............4.9...3...9....1.......
+...5..6.23.1......4.........2.7..4.....6...1.8.........7....2......81.......3....
+...5..6.3.4..7...............532..........71......8.4.42..........6..9..1........
+...5..6.3.4..7...............932..........71......8.4.42..........6..5..1........
+...5..6.7.31.........2...........39.5..8............1.62......5....194...........
+...5..61..42......3...7....2......53...1.....8..........6...4......3...2.1.......
+...5..61.7.8.3...........2.....783...1................45.1.....3.....7.....2.....
+...5..61.7.8.3...........2.....873...1................45.1.....3.....8.....2.....
+...5..61.7.9.3...........2.....473...1................45.1.....8.....9.....2.....
+...5..61.82.................16....9....3.2......4.....4.....3.8..7.1..........2..
+...5..62..1..7.................8..3.6.5..............1...6452..93..........2.....
+...5..62.3.8................6.2..5......7..4.1.......3.5....2..4...3.........1...
+...5..62.3.8......1...........2.7..56.....3.....4......2.....4..4..3........1....
+...5..64..3..7...............52.........8...34.....7.....6.4.5.38.......1........
+...5..64..71..........8....8.....3.......45......1.....6.....172..3............2.
+...5..64.1...8....7........2....3.......6..5.........1...2.7....5....3...4.1.....
+...5..67.28.........41.....5..6............38........27.....1......34.......8....
+...5..67.3..4.....1........9...8...3.2.6............5..6....2......39.......1....
+...5..68..1..3.............6.....1.34..7.2.........9..8......2...2.1.......4.....
+...5..69.71..........8.......5.16...4......2.....3....8..2...........1.3......7..
+...5..7......4..3.1.........6..93...2.....8.5......1...431........2.......9......
+...5..7......7.8...1.......6..1.4......3...5.4.....2...3.....4.7...2...........1.
+...5..7...4...8....1.......5..2....17.3..........3..4..6..1.........45..2........
+...5..7...8.....6..........5...81...2.....9....7...3....536.....4.....81.........
+...5..7...83.......2.......7..1..6.........35...4.....4....61......8..2.....3....
+...5..7...9....2......1.....6.4...5......8..3.......1....2..64.1.3......7........
+...5..7..43........2....8.........325..1............9...8..41......62.......3....
+...5..7..8.....3......4.....6.....4.3..7.............1...3..27..14.6......8......
+...5..7..8.....3..2........14........7.6.........8..2..5.4..1......31..........8.
+...5..7.128...3...............15.4..36.....2.8..........14..5.........3..........
+...5..7.184.......6........36.....8....75.........2.....1...2.....36........8....
+...5..7.2..1......3.........5...6.4........3.2...........31.8..67....9.....4.....
+...5..7.2.61...................63.5.4...8....7........2..7......3.....8....1..4..
+...5..7.2.61............3......84.6.7...2....1........2..7......8.....4....3.....
+...5..7.21.6......3.........8.4.2.........13..5.6.....7...1...........54.........
+...5..7.3.81............2..7..3......4.....8.3............84.6.2.......5....6....
+...5..7.31...........8.........12.6.7.3...4............2..6..1...43......8.......
+...5..7.4.8..1..........6......3..2.4........7.........2....31..3.6.....6..4.....
+...5..7.91..............2...7.6.59.....8.....3........8...3..1..2...1.......4....
+...5..7.91..............2...7.6.59.....8.....4........8...3..1..2...1.......4....
+...5..71.32..4.....8.......4...2...31.7....5.............1..6...3......2.........
+...5..71.32..4.....8.......4...2...31.7....6.............1..5...3......2.........
+...5..71.8.2...............4......8265..7........1.....1.3..5.....4..........8...
+...5..72.43........9..........7.8.6.1.......4...2.......7...2..3...9........1....
+...5..73..61...............78....4......7.2.......6..........91...3...6.5..4.....
+...5..73.2...4..............1.3.5...6.....2.4........8...62.....3.....8...1......
+...5..74.6..2...............1..83..9.4..6..........1..3......62...4.........9....
+...5..76........4.8...........19.3..2.......84.........3....1.5....42....9.......
+...5..8...1....4..2..........874.....5.....3....6...2.6...32...........1......5..
+...5..8...34.......9.......7..2...........5.3.......645.....17.....36.......9....
+...5..8...4....2......1.....7.4...6......6..3.......1....8..75.1.3......2........
+...5..8...4....2......1.....7.4...6......8..3.......1....6..75.1.3......2........
+...5..8...4....2......1.....7.4...6......9..3.......1....2..75.1.3......8........
+...5..8...4....6..3...........6..53..1..4......7..........7..415.82..............
+...5..8...6....2......1.....7.4...6......9..3.......1....8..75.1.3......2........
+...5..8...73.......4.......2..1.5..........36....4..7.5....26........1......3....
+...5..8...8....2......1.....6.2...5......9..3.......1....7..64.1.3......9........
+...5..8...8....2......1.....7.4...6......9..3.......1....6..75.1.3......2........
+...5..8..1..3......2..7...........265......7.3..1......6..24.........1......6....
+...5..8..2.....3......4.....7.....4.3..8.............1...6..28..14.7......9......
+...5..8..7.....3.......1....41.......3.6.........7.5..3..26...........14.......9.
+...5..8..9.....3......4.....6.....4.3..2.............1...3..27..14.6......9......
+...5..8.12.3.6....9........6...7..3..4.1...............8.4..5......3..2..........
+...5..8.4..1...5...3.......46..3.........1.........2..5..2...7.....4...6.......3.
+...5..81.2..1..6..3............27....1...........3......58..4..7.......3.8.......
+...5..81.2..1..6..3............27....1...........3......68..4..7.......3.8.......
+...5..82..41.........6......7..49...3.....2......1....8..2...6.....7...4.........
+...5..84..17...............6..34....3.....2..........1.2..17...5......3....6.....
+...5..84..61.........8......7..69...5.....3......1....4..2...3.....7...6.........
+...5..87..1..2..........3......61..27...9....3...........3..48.........6...2.....
+...5..87..1..2..........3......61..28...9....3...........3..48.........6...2.....
+...5..87..12......6..3.........7...1.4.8.....5........3.....5......2..6.....1....
+...5..9......6.8...1.......6..1.4......3...7.5.....2...3.....4.8...2...........1.
+...5..9.....68.....1.......5.2....7......1.9.....3....6..7....4.....41........3..
+...5..9.....68.....1.......5.2....7......1.9.....3....6..7....4.....43........1..
+...5..9.....7.3...1...........4...379...2...........4..3..6.........81...45......
+...5..9..24.............1..7..1........3...8......6.2.....24....39......5...8....
+...5..9..24.............1..7..1........3...8......6.2.....24....39......6...8....
+...5..9..62.................1..86.....3...4......2....7..3....8......12...49.....
+...5..96.7.4......8.........1.....3.....27......8.4......36....4.......7......5..
+...5.1..........846..........2.4.......3..6..1......5.58.7.........6.4.2.........
+...5.1.........2.83.....6...54.6.....7.....1.....8.3.....7...4.2........6........
+...5.1.........24.8.....7...156.........3.47..9..........3....54...8.............
+...5.1.........43.4.....2..615.........39......7.......5.....712...8.............
+...5.1.....2....4.8.....3.....28..6..1......73.........6.4....5......1......6....
+...5.1.....2...7...8....6..3..4...15....2...........3.1..6.........7.2..........8
+...5.1.....9....3..........6.4.....5....9.2...7..3....15.8...........79.8........
+...5.1....2....6...........14......5...72..8.....6........7.2..38.......5..3.....
+...5.1....24.......3.9.....9.....2.11..8...........3....6.2....8......6........8.
+...5.1....3....6............6.23......7.....8...4...1.8.5....4.....6.2..1........
+...5.1....4.....6..9.......3......74.6..2..........1..5.2...3..1..8.........9....
+...5.1....84..................1...4857.3.............91.....26.2...8..........7..
+...5.1....84..................2...4817.3.............95.....26.6...8..........7..
+...5.1....9....8...6.......4.1..........7..9........3.8.....1.5...2..4.....36....
+...5.1...2......7..........51..........4...6..3..7....6.....8.14..72..........3..
+...5.1...2.....6....8......7.6.2.......1...34.......5..4..6.....1.4...........8..
+...5.1...2.....6....8......7.6.2.......1...35.......4..5..6.....1.4...........8..
+...5.1...27.......8..............1.46...2..........5...354........3...2.....7..8.
+...5.1...3......8........6....2..1..64.............5.7...68......5.3.....1....7..
+...5.1...3.....8.....9........23.6...7....4....1.......4.....756...2...........1.
+...5.1...3.....9.....7........23.7...8....4....1.......6.....852...7...........1.
+...5.1...3..7......2........8..6..4....3..5..........2....2..6.7...4....5.....7..
+...5.1...4.....2............537.........2.46...........1.....35...6....78...4....
+...5.1...4.....2............597.........2.46...........1.....35...6....78...4....
+...5.1...6.......23.....7...4.....1.2...7........3..4....2..3...5.8......1.......
+...5.1...6.......7.......82.5.4........62.....31............65.7...8..........1..
+...5.1...6.2...............45.....7...3.2............1....6.23.17.4...........8..
+...5.1...7......4....8....3.9..4...7.2....5...1.......3......2....2..1..4........
+...5.1...7.....4..2........6.83......5.8...1.....4.7...3.....5.....7........6....
+...5.1...8......3.9.....6..2..64...........57...8.........3.4...17.......5.......
+...5.1...8.....4..2........43..8......6....59...2........74.8...65...............
+...5.1...8.....4..2........6.73......5.7...1.....4.2...3.....5.....2........6....
+...5.1...8.....6........2...7..2.4...9.....3..........4.6....5....7...1.2...4....
+...5.1..34..6.................7..24..31.............6.....134..25...........8....
+...5.1..4.6.....2..........4..3....1.7..6..........8....1....7.....2.6..5..4.....
+...5.1.3.6.2...7...............6.2.745.3...............1.....5....82....3........
+...5.1.4.78.................6....3.7...48.......2...6.....3.6..4.5......2........
+...5.1.6.......2.....8.........3.45.....7.3...1..........4...712.3......8........
+...5.1.9.4..9..8...............3.4...1........5.......68..4.......2....53......1.
+...5.12..7..3.....8......4..5..3.6...1..............9.9...8..........3.7........5
+...5.16..8......3.4.........1....2.....34....7...8...........42.5.6...........1..
+...5.17.......9.3..4.2.........4..6.5..8.....1..............1.2.9..6..........5..
+...5.2....1.....4....3.......4.7...12..9............8..8..1.9..3.....5........2..
+...5.2...4.7......1.........3...9.........48.......1..6..14.....5......2....7..3.
+...5.2...6......1..4.3......5.7..3..4.8......1.........3....5......8..6.....1....
+...5.2...6......9......8....42..........9..1..8.......1..6....5....3.7.8......2..
+...5.2...7.....1.....6.......53..4...2.....19.36......4...1...........26.........
+...5.2...8......9......7....42..........9..1..7.......1..6....5....3.6.7......2..
+...5.2...9.....4.....7..8.....17..5.4.....6..3............4.3...5.....2..1.......
+...5.2.1.6.3...............42.1.........6.37.......8...1.4....2....3......7......
+...5.2.1.6.3...............42.1.........6.38.......9...7.4....2....3......8......
+...5.2.6..3......1..........4..3.......6...2....7..8......1...45.....3..2.6......
+...5.2.7..81...............34..1....5......2....7.........3.1.42..6...........8..
+...5.2.7.9.8...............42.1.........6.38.......9...7.4....2....3......3......
+...5.2.8.6.3...............42.1.........6.37.......9...5.4....2....3......7......
+...5.21....8.....26..1......5....76.....84................3..8471................
+...5.23..4.1......7............4..2..3....9......1.....6.3....82......4....9.....
+...5.23..43....7.....1.....64..7..1........2..8.............4.8..2......5........
+...5.23..7......4.............14..6.2.5.....83.........7..6.......3..2...1.......
+...5.23..7.8..................4...8.1...7.....5....2..4..6...7..3.2.............1
+...5.24.....6..8...1.......5......63.......1.....8....4.....75....31....2........
+...5.26...3.....1...........7.13....6.....2......8....4.26.....5.......3.......8.
+...5.26..18......34.........3.7...1...26................9.8.5......1....6........
+...5.26..3.1......................348......1....6......5.34.....2....7.1....8....
+...5.26..3.1......................348......1....6......5.43.....2....7.1....8....
+...5.267....4..2...1.......2......8....9....14.3..........2.3..5............8....
+...5.27..8..6...1.3.........2...7..5....3..8..1..........1..2..4...8.............
+...5.27..8..6...1.3.........2...7..6....3..8..1..........1..2..4...8.............
+...5.28...46...............83.7........8..6.4.......1.2......3.....6.7......1....
+...5.28...46...............83.7........8..6.4.......1.2......3.....6.9......1....
+...5.28...64...............83.7........8..6.4.......1.2......3.....6.9......1....
+...5.28..1.8.....3.............3..16.5.7.....4.........2....65....4.........1....
+...5.28..1.9.....3.............3..16.5.7.....4.........2....65....4.........1....
+...5.3....8....6.....1.........8.7..5.....1..9.3.......4.....35...41...........2.
+...5.3...6.....4.....1......1.4......3......6....9.7..9.2.6.........85.........1.
+...5.3...6.....4.....8...........3817...6......4..........7.26..8.3......5.......
+...5.3...6.....7.....9...........3918...6......4..........8.26..9.3......5.......
+...5.3..86...........1........2..5.14...6......7..........7.34.....2..6..1.......
+...5.3..86...........1........2..5.14...6......7..........7.36.....2..4..1.......
+...5.3..87...........1........2..5.14...7......6..........2.34.....6..7..1.......
+...5.3..87...........1........2..5.14...7......6..........2.37.....6..4..1.......
+...5.3..94.1...................1.74.25.............6...2.....356..84.............
+...5.3.2.6.1................3.4...5.7...1..........3......67..1.5.2...........8..
+...5.3.2.7..2.....8........4...8.7......1.....6.............8.4.2.3......5....6..
+...5.3.8..2....94..........3.1..........9.6..5........8..1....3.9..4..........2..
+...5.32...61.........4......4..7..16.......7.5........8..2.....3.....5......1....
+...5.32...61.........4......4..7..16.......8.5........8..2.....3.....5......1....
+...5.32...61.........8......4..7..16.......4.5........9..2.....3.....5......1....
+...5.34...61.........2.........4..765...1....2.........7.68....3.....5...........
+...5.36..71...................4...1.8...7..........5......1..48.563.......2......
+...5.37..81...................4...1.9...8..........5......1..69.573.......2......
+...5.4.........1.6.........4.2....5.....1......5.......1.2..7..86....3.....9...4.
+...5.4....8....7.....7.....4..2.......6...8........1...1..3..2.5......4.....8...6
+...5.4...13..........8.....2...1.4......6..7........5...6...1.3.4.7...........2..
+...5.4..82.1...............6.....17..3.8...........2...5.....4.7...2........61...
+...5.4.2.38....................7.3.15.9............8..6.4....5..1..3.......2.....
+...5.41..7.....26.9.........4..9...8...7...3..1.......3..2....5......4...........
+...5.412.7..3...............4.6........7....3.1.......3.6.8..........41.......5..
+...5.42...1..........2.........8..3946..1..........5.........617..3.....2........
+...5.43...1..........2.........7..2946..1..........5.........165..3.....8........
+...5.46..3.9......1.........7....2...4..3........1....2..7.6......2...8.........3
+...5.6...3.....7.....2.........7.3...45.......2.......1...85.........621.......4.
+...5.6..27..3.....8........1.....78....64.................8.5...2...1....6.....3.
+...5.6..7.32.......8.......5......74....28.......1..........23.4.....1.....1.....
+...5.6.142...7................1.46..7.2...3..8.........1.....6....82.............
+...5.6.3.7..4..2..............1...652...7....8.........54..........8.7.......3...
+...5.6.4..31...............6.42.........7.3..1.........8.....52....14.........7..
+...5.6.473...1....2......5.1.....3.....8........4......47..........2.6...8.......
+...5.61..2......8....1.........8..7..5.6......1..........4..5..8.2......7...3....
+...5.617....8..6...2........4..3..2....1..................24..81.....5..6........
+...5.62...91...............54.6...........71...38.........93...4.....8......1....
+...5.62..1...........7.....4..21.....2....6......3..8.3...4..1..6....5...........
+...5.63...1..2....4.......8.7.....51....43............6.....82....1.....3........
+...5.64....8....1..........2.....5.61.7.8..........3.....71....65........4.......
+...5.68..1..2.....3.........5.48.....6.....3.........1.4.....2.7...3..........5..
+...5.68..1.2......3............2..3..4....7......1.....8.7....56......1....8.....
+...5.7....9....2...1....9..5.6....42....1....7........43.2........6...7..........
+...5.7...6.....4..4..1.......7...1...3..6.......4..8......2..751...............3.
+...5.7...8.......6...9...4..7..6...8.9....2...5.......4......1....3..5..6........
+...5.7.1..9..2....48.......1.....8.25..3...........9..6..1.........84............
+...5.7.2..31...............58.....7.....31.......9....6.....9.42..6...........1..
+...5.7.3.6.....................6.1..4...1.....53......2.....6.1...8..4...7.3.....
+...5.7.8..42.......9..6....7......1....64.......3.....2..1...........9.6......4..
+...5.71...83.2.............6..4..7..1............8...........83...1...2.7....5...
+...5.72..7..4................4....7...26.........9...118..3..........45..2.......
+...5.72..8..3.....1.....6..3.....45.....1.................2..8..7.....1..2.6.....
+...5.72..8..4.....1............6..19.5..2......43......7..1.......2..5...........
+...5.73..6..2.....4.8......1.....84..2.3...............5......2....4..6.....1....
+...5.8....2....4.....6......8..4...........35......61.5.31.........7.2..1........
+...5.8...3..7...........2......6..34..8....7..1.......4...2.6.......185..........
+...5.8...6.....4..4..1.......8...1...3..6.......4..7......2..351...............8.
+...5.8.2.7.1.........4.....24...........3...6......7.....2..1...8.....4.6...7....
+...5.8.3..41...2............6..1.4..57............2...8..7....52............4....
+...5.8.3..61......2.........3.7.....7.....2........1...5.....746...1........3....
+...5.8.4.6.2......1........7.....2.9.5.4........3.........7.1...3.....5.....1....
+...5.8.6.7..3...........1..52......7....1.4...3..........2...134...7.............
+...5.8.9..42.......6..7....8......1....64.......3.....2..1...........7.6......4..
+...5.82...13...................7..4153.............6....4.1..3.8.....5.....2.....
+...5.82...91...............54.6...........71...34.........93...4.....8......1....
+...5.82..1................9...29..7..3....8..4...1.....826............14.........
+...5.82..3.....1.....4.....6..17..4.72..............5.....3.7...85...............
+...5.82..4.1..................3...46.2.7.............9.8....1......9..3.6...4....
+...5.84..61.....7....2.........1..3..8....2...5.......7..3.....3...4..........5..
+...5.9..1.4.6............9.....246..97..8....5........1..9............2.......4..
+...5.9..6.1....7.........4.8......952...7.......31........3.1..5..6..............
+...5.94..61.....7....2.........1..3..9....2...5.......7..8.....3...4..........5..
+...51...........683......2....7..4..8.2......6.............8..2.5....1...4.3.....
+...51......8....7.......9..2.64..........71.3.5.......53..........6...4.1........
+...51.....4....7..3...........8...51.9.2.....7............943....5.7....8........
+...51....2.....3.....4....232......1...7...4.6.............36...4.....8...7......
+...51....2.....3.....4....731......5...7...4.6.............36...5.....8...4......
+...51....2.....6..8.......2...3..8...75........1.......3.....1......8.4.6..4.....
+...51....4......9....3...........1.8..7....4..3.7..........26...5....3..1...4....
+...51....4.....2...........85.3...........41......5..7....426...7.....53.........
+...51....6.......97...........2....7..3....8..1............731.28.4...........5..
+...51....7.....4..3......2.56.2............18......3....8..2......3..7...1.......
+...51...33......7......6....5....6...1..3.........7.2.7.......4...8..5..2........
+...51...36..4.....7.8.......1.3...........26........7.4.....5..2....7.......8....
+...51...4..6....2.7............2.68..4...6....5..........1..7.52..............3..
+...51...62.....3.................24..8..6......1.......7.....154..2.9........3...
+...51...72.....3.................24..4..7......1.......8.....156..2.3........9...
+...51...8..2...4.....9.........326...8.....75.........5..8...........32.1........
+...51...97......4...8.2....6..7....8......1..3.........9.4...6..1.............2..
+...51..4..3......8............8.3..96....5...1..9...........16..8..2..........5..
+...51..6.8.......74...9....37.6...........21.......9...91.........3.8............
+...51..6.9.....8..2..7......6....2.7....43.........9...1.....4....2..........9...
+...51..7..6..3.....4....8..7......3....2.4......6...........2.4......6.51........
+...51..8.6.....3....7.4..........51.9..4.....2.........8...6......7..2...1.......
+...51..9..62......7.............6..31...7....5.........3.8.2......4..1........5..
+...51.6..34....7..2........4...8..3..7.6............2....8.3....6....1...........
+...51.9..3......6..........9.5.....2....64.8.1.........2....1...4...8......9.....
+...512...9...6.....3.......87.1.....3......4........2...2...1.....3..8.......4...
+...519.6...8....24..........2....9.7..42..............97....3..1...........4.....
+...519.6.3.8...5...........7..38...........1.2...........2..4...9......8.1.......
+...52...........7........6....3..5.1.8.2......7.......5.4...2..1.....3......68...
+...52..........1.6......7...34....5......1.....7..........5.27.16.3.....8........
+...52..........1.6......7...34....5......1.....7..........5.27.16.4.....8........
+...52........8..6.3.....4...863........4..7...2..............817.4......5........
+...52........8..6.3.....7...863........7..4...2..............817.4......5........
+...52.....3....7.....4.....1.5..........9.2..4...........1...46......15..7...8...
+...52....6.....3....4......3.....14..1..5..........6...7.....25...8.6...........7
+...52....7......3.....6.4..9..1...........2........6...46....1...57...8..2.......
+...52....7....4.........3...29.7.....5....1....6...4.....9...261...............9.
+...52....8.....1...4.9..........98....27......3...........3...29......7.1....8...
+...52...81.....3...............6..2.3..7......8..........3.16...29....4.5........
+...52..1.71..........8.....3.5..7.......8..2.......4..4.....6.3...2...........7..
+...52..4.6.1................2..7..5.3...81......4...........1.3.4.2...........6..
+...52..7...3.....8.1...........681..2......5.....3....5..1........4....6......3..
+...52..7.8..4...3.1..............1.6......8.....7.......6..12...5.....4..2.......
+...52..9.71..........8.....3.5..7.......8..2.......4..6.....7.3...2...........1..
+...52.3..6.1.........8.....7......64.8.2............1.45...6.......7.2...........
+...52.4...1.....7....3..........8.1.5..6.....2........4.3...5......1...2.....7...
+...52.6...84...............2..6......1......4...7...3.1...3.2......48.....7......
+...52.6..14....................71....8....2..3...4...........84..68.......53.....
+...52.6..14....................81....7....2..3...4...........74..63.......57.....
+...52.6..14....................81....9....2..3...4...........49..69.......57.....
+...52.7...8....4......1.....5.7.............1.......6.1.96........4..38.2........
+...52.7..3.1...............4..1.3....3....6.....8.....27..6.........4.1.........8
+...52.7..3.1...............4..1.3....3....6.....8.....57..6.........4.1.........8
+...52.8...41..................68....5.....2.......1....3...4.162..7............3.
+...52.8...41..........3....63....7..5....4......1.9...2.......3...7...4..........
+...527....9....8.3.........6.7....5....8..1..2........4...6..7..8.3..............
+...528....3....1......4....4......25.1.6.......7....8....1..3..8........2........
+...529.6.163...............92..........7...4.5..............2.1..74...........9..
+...53......4...1..............1.45..36......2.8.......23..6..........71.8........
+...53......4.6.....1....7.....2..1.73..8...........4..52.....9......1..........3.
+...53.....1.....4.....8....9.2...3.....7...6.8.........7.4.1.........5.9......8..
+...53...2..1...4......2.....8.1.4..........23............6..14.37.......5........
+...53...476.....8.1............7.1...5..6.....4..........4...2.3.....7.....2.....
+...53..2.17....8...9..........6...5381................4.32..........71...........
+...53..4....4..26.......7...1......8....67.......4.......1....52.6......7........
+...53..7...1.8....2.....3.....6.29.....7......8........5.4.....9......8.........1
+...53..9.2.....1..............96..5.4.1......8..7......3......7.....18...5.......
+...53..9.2.....4..............96..5.4.1......8..7......3......7.....48...5.......
+...53.1..8......2...........164........2...8.......7......7...14.....6..2...8....
+...53.2..68.......1.........257........1...6..........9....6.8.....24.........7..
+...53.2..8.1................5..4.3..4....1......2..........6.14.3.7............8.
+...53.4...1.......6........2......86...41...............5...17......23..8..6.....
+...53.4...71.....................6.4...1.7.....82.....42..6....5.....3.........1.
+...53.4..1......7...............7.81..62......3........4....5.32...81............
+...53.4..2.1...............7.......1.3.8........4..5..6...12.7..5....8...........
+...53.6...1..........7......4.....15...3...4.2............48...6.....2..3....1...
+...53.6...12...............5.....8....7..1.......2.....5.4...213......7....8.....
+...53.6..7.1..................2.1.7.4.......8.5........3....2......57......64....
+...53.7..41................3.76............12.......4..23...8.....4.9.......1....
+...53.7..41................9.76............12.......9..23...8.....4.9.......1....
+...53.7..81................4.76............12.......9..23...8.....4.9.......1....
+...53.7..81..........6.....2......84.....91.....3.......5...3..4....8.......2....
+...53.8...6.....2...........9...4...2.....5......6....4.58........2..96.........1
+...53.8..7..6.....4........1...24.........63...........5.3.1..........42.8.......
+...54..........1.6......7...24....5......1.....7..........5.27.16.3.....8........
+...54..........1.6......7...34....5......1.....7..........5.27.16.3.....8........
+...54....6......2..7.3......3....4....51............8.......5.1....5.3..2....6...
+...54...2.6.2......3....7..4......3.......8.....1.........83.6.2.1..............4
+...54...8.1....7...........9......2....41........67...2.53...........61.3........
+...54...8.1....7...........9......2....41........67...2.83...........61.3........
+...54..1...2.8....3.....6.....7..3...4....5...1.......7..2.....5....3..........4.
+...54..2.1.9.....68........73..2..........1............5.....4....1..8...7.6.....
+...54..2.6.1................2..7..5.3...81......4...........1.3.4.2...........6..
+...54..6..2.3.....8.........7....3.2....61............6.4....5....2..4..1........
+...54..6..2.3.....8.........7....3.2....61............6.4....7....2..4..1........
+...54..6..2.3.....8.........8....3.2....61............6.4....7....2..4..1........
+...54..6..21................7....8..6...3..........1.2...2.8...5......4.3..7.....
+...54..6..21.......7....8..9......35.....1...............3..1.76...9..........2..
+...54..7..21................6....8..4...9..........1.2...2.8...8......4.3..6.....
+...54..7..21.......8....9..7......65.....1...............3..1.86...9..........2..
+...54..7.12...................2.1....8.3............653.7.6......4...5........2..
+...54..7.318...............7...9..........8.3......4...6.3.8...2......4....1.....
+...54..7.6..2......8....1.........26.9..8.........3...2..4.....5.....9........8..
+...54..7.62.................8..29......4..6.........1.4.51...........2.8......3..
+...54..9.2.....3..............96..5.3.1......8..7......5......7.....38...4.......
+...54.1..3.....9..7.........6..1..3.5......7.........2.1....6.....7.2......8.....
+...54.1..6.8...5..2........7.....3.......1.......8.....4..5..8....7...2....9.....
+...54.2..18........3.......4.2...7.....3.8.......6.......1...357...2.............
+...54.2..3.1....................7.38.4.6............1..5....4.....27....8....1...
+...54.2..3.1....................7.38.4.6............1..5....4.....29....8....3...
+...54.32.8........1.........4.2...3.7....1...............6..1.7.2..5............8
+...54.7...82............1..3..6..5.......2..........9....3...864...1...........2.
+...54.7..2.6......1.............248....31.........65.........61.5.7..............
+...54.8..3.1...............6....213..8..5.............2..3.6....7....4.5.........
+...56...8...2..7..1...........62.5..41.....3..7............4.1...63..............
+...56..172...4....3..............2.4.7....5...1..........3.6.8....1.....4........
+...56..2.4.7...3...1.......6..2..4.....8....7.............37..12......9..........
+...56..2.7.1............5..28..3..........4........1..6..1.7....3.....9....4.....
+...56..3...2...4.....7......8.....47....12............3..4.....6.......25.....1..
+...56..3..4.....2.8....1...1.5...4.....37.......2...........8.1.73...............
+...56..4..71.................8...1......93.........8.752...4.3....1.....6........
+...56..4..71............2.....1.7...4......3......8...63..4.......2..1.5.........
+...56..4.2.......31.........584........7....6......2......231...4.....5..........
+...56..412....7...3...........35...8...4.....7..............27..4....5...1.......
+...56..7..41.....................1.27..3......2....4..6.2....8....4.9.......1....
+...56.1..2....8...7........48....9.....73.........2..........24.1.6............7.
+...56.1..2.3......7.........1.4.........32.........8.....81..........42.3......7.
+...56.1..49..2..........7...51..........3..2..........2......3....1..8..8..7.....
+...56.1..7....8...2........48....9.....73.........2..........24.1.6............7.
+...56.2..3..7.....5...........4..1.62....9..........8..6.....5..1..8.........3...
+...56.2..8.....7..1.........5..3...4..6....1........8....7.8....2....6.....4.....
+...56.2..9.1..................3...18.2..7...........9....24....8....1....6....5..
+...56.2..9.1..................3...18.2..7...........9....74....8....1....6....5..
+...56.3......3...81..........2..1....6....5.....7...4......2.13.5.......7........
+...56.3......3...91..........2..1....6....5.....8...4......2.17.5.......8........
+...56.3......7...91..........2..1....6....5.....8...4......2.17.5.......8........
+...56.3...81...............5..1.8.........24....7.....36..2....4.......1.......7.
+...56.3..2.1............7..7...18.........42...........6.2....8.3.4............1.
+...56.4..7.8................6.....833..2............1.45....2......8.5.......1...
+...56.7..32.........8.......756............31..............2.5.1.....6..4...3....
+...56.7..4.8......3.........3.7...2.6......8....1.......2.84.........1...7.......
+...562...34....7...........1.8.........3...2.6.........254...........6.1....7....
+...5634..81...........4.......7...216...............5.......6.3..29.....5........
+...564.........7.1...2.........1.3....2....6.4........716.........8...4..3.......
+...57.....1.............2..8...2..........1.4......65.7.2....4.3..6........1...8.
+...57....2.8......1.........3.94....9....82........1...5.7...4......1..........9.
+...57...32.....4.....1.....4...9...6...8...5.3.........7.....1......42...5.......
+...57...416.....8..3............13..5.2......4.........8....1.....23.......4.....
+...57..1..8....3...4.............8.45..6........1.....6.....25.7...3.........8...
+...57..1423.6.................8..3...4.....9...1......8.....5..3....9.......4....
+...57..2..1...4............2.7.5..........1.3...6..8..7.....48....1.3............
+...57..2..1...4............2.7.5..........1.3...6..8..7.....48....3.1............
+...57..2..86...............71..9.........16..........5.....84..5..4.....3..6.....
+...57..4..31....................16..7......8..2..3......6...3..5..6........4....2
+...57..4..91............2.....1.9...7......3......4...83..6.......2..5.1.........
+...57..4.8.....5..1.........4..68.........2......1...........61..32......5.4.....
+...57..4.9.1...............3..7.16...7.2...8................1.3.5..4..........9..
+...57..8..2...6....1.......5..6.1...7......3....4.....3...4..........2.6......1..
+...57..8..6...2....1.......5..6.1...7......3....4.....3...4..........2.6......1..
+...57..9..6......8.........1.87........8..2.6......3...2...6...5......7.....3....
+...57..9..86...............71..9.........16..........5.....84..5..4.....3..6.....
+...57.2..138...................38.2.4.....1............2.....356..1........4.....
+...57.2..3.8................74....3..2..1............66..3.8...8..4...........1..
+...57.3......6...91..........2..1....6....5.....8...4......2.17.5.......8........
+...57.3..2.9......8............29.8..1....6............3.6..4..7......2....3.....
+...57.3..9.2......8............29.8..1....6............3.6..4..7......9....3.....
+...57.6..31................4..1.3....7.4...........2..2.7.6.........8.1.........5
+...57.8...7.3......4.....1.....61.........53.2...........4..7..1.......6..3......
+...57.8..619...............43.2........4...57.......9.5.....2.......1.......9....
+...572...3..............1......3..874..6....5.......2....9..6...87.......2.......
+...572...9..............1......3..874..6....5.......2....9..6...87.......2.......
+...58........4..3..3......7.7.1..2.........8..........5..6..1..2..7.....4.8......
+...58....7......2.......4.....63.5..4..1.....2.......3.5....1...3...2.......7....
+...58....7...2.....1.......9.32............61.......4..6...4........65..8.....3..
+...58...1.43......7........2.....74....1...........9......6.27..153..............
+...58...1.43......7........2.....74....1...........9......6.27..513..............
+...58..1..6....2............9....6.2...71.......4.....5..1...7......23..1........
+...58..1.2...4.....7............37.6..1......8.........6...73..4......8....2.....
+...58..3..76.............2.5..32.....6....1.....8..........16.73..............4..
+...58..4..31....................31.78...4..........3..5..6...2.27..........8.....
+...58.2..1..............6...67.3....4......19...........3...7...2.4........1.9...
+...58.3......6...81..........2..1....6....5.....7...3......4.21.5.......7........
+...58.4...91...............81..........7...2....3..6......1...55.....7....2..9...
+...58.4..2.9......7............29.7..1....3............3.4..1..6......2....3.....
+...58.7..4.9......2............49.2..1.............3...3.7..1..6......4....3.....
+...581...7......29..........68...1..5...3.......2.....2..9......4.....5.......8..
+...584..6.31....7..........5..7...3.4.....8...........2.....6.4.7.1..............
+...5842...91..................6.7.1.8.....7.....3......6.1.....4.....8......2....
+...59..........1.8.........24.....7.9.....3.......1......4..25..81.5......6......
+...59.....1.....8........4.....6.5...5....7.......4......7..3.18.42.....6........
+...59....6.....8...........1.....6.77..2........9..........642...9....5..3..7....
+...59..1.43.......7........8..9..6...7......4....2......1...2.....8.4........7...
+...59..1.7...8....3........6..2.3..........84...7...........3.6.9....2...1.......
+...59..2.14....8...3.......6......52....41..............53..4..7..2..............
+...59..2.16....7...8..........2...9371................4.93..........61...........
+...59..3...1.......8.......24.....9.....18......7..........27..9.....1..3..6.....
+...59..4.73........2.8.....1....32....5...3..............64...92...............1.
+...59.2...4.....3..........2...7.1..53................7.1...6.....3.4.8....9.....
+...59.2...87..................678.........91....4........3.6..724.......9........
+...6....1..4.2.....1.......5...3.2..78..............4.2.....53...61........8.....
+...6....1..4.5.....1.......5...3.2..78..............4.2.....35...61........8.....
+...6....1..4.5.....1.......5...3.2..78..............4.2.....53...61........8.....
+...6....1..4.5.....1.......5...3.2..89..............4.2.....75...61........9.....
+...6....1.2..8.............194..........328...........7..1...5.6..4...........23.
+...6....1.3.......8........5.....89.7..4........1......1..8..5.....2.3...46......
+...6....1.3.......8........5.....98.7..1........4......1..8..5.....2.3...46......
+...6....1.39.......4............73..8..2........1.........3.46.2......5.1...8....
+...6....1.4.......8........3.....98.7..5........1......1..8..2.....2.3...56......
+...6....1.4...7............3...5..6..8..24...............7..48.1.65...........2..
+...6....1.4...7............3...9..6..8..24...............7..48.1.65...........2..
+...6....1.8....7......4........843..6.9......2........12....5.....9...6....1.....
+...6....1.8..4.....3.......2..1...6..4..8.............6..5.9...4.....87.......3..
+...6....12......4.....5......67..5...1.....2....3.....8...24...4.....6........3..
+...6....12.3......7.........1.4..5.....8.6..........3..5....4......32.......7..8.
+...6....12.8......3........5..23.....1....4......8.....7.1...........52..4.....3.
+...6....123.......97.......4..5.........7.3...............9.27.5..1.4..........3.
+...6....13......2..4.7.....1...5..3....4..6...........2...3.....6....7......2.8..
+...6....14...2....2.........6.1.9...7......4............32.8.......4.7...1....5..
+...6....14...5........7....7.....35..2.8...............6.1.2...3.....57.......4..
+...6....18...2....2.........6.4.1...7......8............32.9.......8.7...1....5..
+...6....18...2....7.........135.........7.89..........2.....48..5.3...........7..
+...6....182.......93.......4..5.........2.3...............8.29.5..1.4..........3.
+...6....2..3.4.....1.....7.6..2...........45.......3..4.....1.8....53......7.....
+...6....2..4....5..7...........347..6.....8......5....89.1...........43.2........
+...6....23...7....14...........8.43..12......5..........5...87....1.4............
+...6....24..3.....1.7.......6.47..........18........5.5...1..........2.6......3..
+...6....3..1..2....2.....7.34.7...........1..6..........8...24.5..39.............
+...6....3.2.....8...1......5..41..........25....3.........821..34....7...........
+...6....3.2.4......8........5.....2.......98.1............851..6.......73...2....
+...6....35....4..........1.46.....2......84...1..3........2.5..7.....8.....1.....
+...6....35....4..........1.46.....2......85...1..3........2.4..7.....9.....1.....
+...6....37....4..........1.46.....2......85...1..3........2.4..5.....9.....1.....
+...6....4.3.2......8........5.....3.......98.1............852..6.......74...3....
+...6....41....8..........3..7..3.....4....8.......2.......4..752..1..6..8........
+...6....5.8....1...3..4....2..1..6...7.....3....8.....5...3..4...1......6........
+...6....51..4.......3....7.......1.4..7...3...8...........37.2..4....6..5........
+...6....7.8..1.....5.....4....5.81..4.......33...2....7..4............2.......8..
+...6....8..3.4.....1.....7.6..2...........35.......4..4.....1.2...7.3.......5....
+...6....8.23.......1............342.7.......5....1....6.57...........31.......8..
+...6....8.5..7...........1....8..25..4....7.....1.....1.8..9.........53.6........
+...6....83...5...........4.....7.2...61......48..........1.25........37....8.....
+...6....9...3..7...1..........5..38.9...4......1....2.....12.4.3.....6...........
+...6....9.23.......1............342.7.......5....1....6.57...........31.......8..
+...6....98......2......1....9....4.....52.....6....1..2.7.8.......3..6..5........
+...6...1...5.4.....9.......6...8.4..21.3...........5..32.1.......7...8...........
+...6...1...5.7.....3...........4.7.32.....5..1...8....8..1......5....3.....2.....
+...6...1..2.....3..7..........5.24..9......6.1..............2.5...83.......4..7..
+...6...1..2..4....3.........4....2.9..81........3.....1..5..7....6.8.4...........
+...6...1..23......5.4......26.....7.....34.......9....4.....3.8...1...........2..
+...6...1..3....5..9............35..91......8.....2....7.18........4....3......2..
+...6...1..35.........2.....1..8.......6...2........4.3....345...4..7....2........
+...6...1..35.........2.....1..9.......7...2........4.3....345...4..8....2........
+...6...1..37..................453...1......8.....7....4..2..5..6.......3.....17..
+...6...1..4...2....3....8..1......5..2..4.......7....6....3.4..6..5.....7........
+...6...1..4...2....3....8..1......5..2..4.......7....6....3.4..7..5.....6........
+...6...1..53..........9..........2.31...4..........5..685...........78.....2.3...
+...6...1..7..2.....48......5..3.1....2....8.....5.....3.......5....4.7..6........
+...6...1..72.......8..4....5..3.9.......7.8..6........3..9....5.4....7...........
+...6...1..8........7..........8..7.35..3...........4..6...4..5.....7.6..1....2...
+...6...1..9.3.....2............594..1.6................4..8.5..7..1....2..9......
+...6...1.3...4....2........16...........3.5.....5.......8...3.4.....27...9.1.....
+...6...1.3...5........8.....26.......1.7...........4..5..2..3..4.....5.8...1.....
+...6...1.3..4.....2...5.....4.1.8...5.....2........3...18....4.....2.7...........
+...6...1.4.7......2..........3.....6.1..5.........27..5.....2...8.1........83....
+...6...1.42.......8.........5..4.8....9.2......1.........1.6..73.....4.....9.....
+...6...1.43........8.9.....5..2.1.........4.8......7......4.8..1.2......6........
+...6...1.5...7....2........73.9...........2.....1.........2.5.3.1..4.....9....8..
+...6...1.7...4....3........27....3.....1.8......4......5..7.2...18.....6.........
+...6...1.7...4....3........27....3.....1.9......8......5..7.2...19.....8.........
+...6...1.7...5....2.........314.........7.5.............61.3...58....7........2..
+...6...1.7..2.....32........46...8......71............8...9..........5.2.......64
+...6...1.79..........2......3....2.85..1...........9....2.9........7.4..1....5...
+...6...1.8...5....2.........314.........2.5.............61.3...57....2........8..
+...6...1278................3.....85......1.......7........5.43...62......1....7..
+...6...14.25.............8.....375..1............2....4.71......5....7.....8.....
+...6...14.35.............8.....375..1............2....4.71......5....7.....8.....
+...6...1482...................3..8.7.1.............2..3.1....6....5.2...5...4....
+...6...149..8.............76...7..5.3.....8......1.......9..2...45.......1.......
+...6...158..4............3..6..3.2.......74...1.......7.....3..4..5.........1....
+...6...174..8............2.5...27...3.....5......1.....6.3..4...1.............3..
+...6...1753.....................258...17......6.......25....3..4...8.......1.....
+...6...192...........8......7..5...3.1...4.......2.4..4......2.3.....8.....3.....
+...6...2...17.......5......96.....4.....1..........7..7..9.2....8....3.1......5..
+...6...2...4...7..5........1...5.2...3..8.....6........2.7.....3......8......4..5
+...6...2...7...3...1...........7..813...5....2........6..3........2..4........5.7
+...6...2..3....5....1......6......4.....3.1...7.5.....2..4.6.......1.3..........8
+...6...2..3....5....1......6......4.....3.1...7.5.....2..4.6.......5.3..........8
+...6...2..4....1...3.8.....6..2....87......5..1...........453..8............1....
+...6...2.1...3.............54..1.......3....8..6....7..627.....3.....5........1..
+...6...2.13..........5..3....5....9..7.....6.....41...3.....1.8......4....9......
+...6...2.3........9........47.....6..6.51........9....5.....1........9.3.2.8.....
+...6...2.5.............1.......9.7...6.....4.8...5.......8..5.2.143...........9..
+...6...2.5...3....4.......9.9.2.........4.3............7....43...61...........58.
+...6...2.5...3....4.......9.9.2.........5.3............7....53...61...........48.
+...6...2.5.3......4.........6....13.....4.5...8..........1.6..2......4.7...3.....
+...6...2.51........8.......426..........1.5.........3....2....87.....1.....4.3...
+...6...21.5...4............2.3.7.........54...........1..23.....7....5........84.
+...6...2134..8..........7..8.......45.....3.....1......12....6.....3.5...........
+...6...2134..8..........7..8.......45.....3.....1......12....6.....3.8...........
+...6...2134..8..........7..9.......45.....3.....1......12....6.....3.5...........
+...6...2134..9..........7..8.......45.....3.....1......12....6.....3.8...........
+...6...231....4.............8.3.........2.7..4.....1...63....5......14......7....
+...6...238..4............1.6.....4...7..3........1.......7..5...23......5.1......
+...6...258.1................5..2..7.....8.1..3..4..........38...6.5..........4...
+...6...2891................2.8....5.....743......1......42......7....1.......9...
+...6...29.18..................581...36...........7....4..2..7..23.............1..
+...6...3........42.4...7....5....7......4.......3.....6.3...5......851..2........
+...6...3....4....61..........8.3.51..6.2..............7...518...2......4.........
+...6...3...2.7.....5.....4.7..4.3.........5.16..8.....84...........5.2...........
+...6...3...2.9.....5.....4.7..4.3.........5.16..8.....84...........5.2...........
+...6...3..7...1...8..........1...26.3...85.........7...6.4..1....5.3.............
+...6...3..82.......1....4...4....8..3..7........5....77......5.5...8........1....
+...6...3.21........8...5.........1.87.....2..3..9........21....6......4.....5....
+...6...3.7....1...2.........8.....6.....5.7......2.....314........7..2.4......5..
+...6...3.7...1...........4.....5.8..2.4............1...5....7.9.6.4.3......2.....
+...6...3.7..3.....4.....7...61....5.....4.8............3.5...6.....782...........
+...6...3.8.....2..2...4.....31....5.....2.7...........46....8.....3.1......5.....
+...6...317.5.2....8.........9.3..........48...........43.1.........8.5........2..
+...6...318..4............2.6.....4...7..2........1.......7..5...13......5.2......
+...6...318..4............2.6.....4...7..2........1.......7..5...31......5.2......
+...6...321....5.............8.3.........2.7..4.....1...63....5......14......7....
+...6...328..4............1.6.....4...7..2........1.......7..5...23......5.1......
+...6...34..8..2....1.....5.7.54...........1..3.........2....8..4...7.......5.....
+...6...34.51..................78..5.4.....1..6........78......6.....52......3....
+...6...351..2.....4.........69.....3....1..........2...5.3.........8..4.7.....1..
+...6...35421................7....1..5..3.........5....3......7......12.....48....
+...6...357...4..1.2.........5..2.7...3.5......8.......4.....2....1.........3.....
+...6...38.4..7.............1...5.7..3.61.......8...4...7....2.....3...6..........
+...6...38.4..7.............1...5.7..6.31.......8...4...7....2.....8...6..........
+...6...4.......81...3......4...21.....6...5..........3...57.6..81........2.......
+...6...4....5..8...19.......4.....6.7......2.....1.........43.92..7...........1..
+...6...4...82......7..4....6.....2.8....3.1..............8.15..43.....7..........
+...6...4..1......8.3.......8..5.6......2..3..4......1..7..1....5.......6......2..
+...6...4..3......1.2...5...5..41.....7....3.....8.........3.2..6......8.4........
+...6...4..8.....3..1.......4..32....6...5.........18..2..4...........1.5......7..
+...6...4.1......2.8....3.......1.8.974........5........6.5........42..........1..
+...6...4.7....3...1.........2.....6...5.1........9.....384........7..1........5.9
+...6...4.8........1.........9.....3....1.2.......78....4.53...67.....8........1..
+...6...4.8...5......1.........4..2.35.....1............4.3.1.........78..6.....5.
+...6...412.9.3....5...........7.4.8.3............2.....1.8...........2.5......3..
+...6...4128......5.......2...4.21....3....8..............36.7..1...........8.....
+...6...4213.......5..........2....8.....3.1......1.....7.8.4...9.....5.....2.....
+...6...437.1..........8.....8.96....5.....17.......2...3......64....7............
+...6...438.1..........7.....7.96....5.....81.......2...3......64....1............
+...6...45.7...1............6.52.........3.7..4.........8....17....59..........3..
+...6...451...5....7.2......3.......8...2.1..........5..8.9......4....1........7..
+...6...453....7............6.......7.....25...4..8......1.5.....2.....6....7..3..
+...6...47.1..............8.4...9.2..7.5.3....6.....1...2....3.....8........7.....
+...6...471...3..............94.....6....1.2...........5.....13..7.4.9.........8..
+...6...478..3............1.5.....3...3..2........1.......5..6...21......4.7......
+...6...4781..3..............6.4.2...5.....8........1....47...2.3...1.............
+...6...487...3...........1.23....7.....4.6...5..1.........5.2...8........4.......
+...6...49.71...............9..8.........5.7........2.......715..8..2....4......3.
+...6...492.8.3....5...........7.4.6.3............2.....1.4...........2.5......3..
+...6...498...3.................243...9.....5..1.......3..7..1.....5.9...2........
+...6...5...4...2...8........23...4..9..1..............1....8.9.5...3........42...
+...6...5..1.....3..4.2.....6..53....8.....7........1......14...2.......8....7....
+...6...5..3....1............21...4.....7...6....5.........182..7......3.6...2....
+...6...5..3....2............21...4.....7...6....5.........281..7......3.6...1....
+...6...5..38.......4.....7.6..5...........4.2...1..3......4.7......23...1........
+...6...5..38.......4.....8.6..5...........4.2...1..3......4.7......23...1........
+...6...5..8.....2.4....1....5.32......6...1........4.....27........5.8..1........
+...6...5..81...............62.3.....5..2...4.........1....1.6..7.....3......48...
+...6...5..9...1...............2..4.95.....1..3...8.....41...6.....53..7..........
+...6...5.4.......176.........2...6...3.7........1...7.1...5........2.8..........3
+...6...5.4.....7.....1.....8...2.4.....5...6...........36....1.....4.2...8..7....
+...6...5.7.....1.....3.....1...7..8....2....34........63...8.......1.4...2.......
+...6...5.8.....1.....3.....1...7..9....2....34........63...9.......1.4...2.......
+...6...51.8...7....2.....4.1..46.....7....3.....5.........2.8..5........4........
+...6...52..8....3..4..7....3..2.9.......4.1............71...4..5..3..............
+...6...576...1...........2..572......3..8..........1..1.....8..4....7......5.....
+...6...57928................1....8..7..5.........7.........821....93....5........
+...6...58.1..............9.6...4.2..8.7.3....5.....1...2....4.....8........9.....
+...6...7...1.4.....8....3..3.6....5....1.8...........452..7....9..............1..
+...6...7..3......1..6.5........9.8..1.....5...7.......2..1.7.........94....3.....
+...6...7..8.....2..4..3........4.5..2......6.1........7.92........5..4........3..
+...6...7.1......4.35..........2....3...4.7...5.....1...67........4...8......1....
+...6...7.9...2...........1.5.2...4........9...7.......4.....2.3.6.7.1......8.....
+...6...712.9.3....5...........7.4.8.3............2.....1.8...........2.5......3..
+...6...714...7............8516..........3.2...8...4...2.....43....1..............
+...6...718..3.2............6.....2...4..7.......8.....2......5...7.1........4.3..
+...6...72.51...............6..7.9....3....1...............1.58....23....7.....4..
+...6...734.1...............67.5.........9.1...........2..7.5....8....91.......4..
+...6...74.21...................21..867...........5....3..4..5..7......1.......2..
+...6...748..3............1.5.....3...3..2........1.......5..6...21......4.7......
+...6...753.1..................83.4...5.....19.........8.....2......13....7...9...
+...6...781.2.............4.....2.1.9....9.3...7..........4.8....8.7.....9........
+...6...8....1.2...5........4..83....7.3.............6.61...........7.4......5.3..
+...6...8...1....3..5.........8...3..6..4..........7.1.7.....2.5.4....6......1....
+...6...8..1......7.3.......7..5.6......2..3..4......1..4..1....5.......6......2..
+...6...8..4...2....3....9..1......5..2..4.......7....6....3.4..7..5.....6........
+...6...8.1......4.35..........2....3...4.8...5.....1...78........4...6......1....
+...6...82.51...................4.5..8......3.2..7......4..5.1..7....8......2.....
+...6...823...14...............73..5.1.4............7...8.2.9.........1.....8.....
+...6...835.2......7..4......4.....6.....2.5......1.....8.3.7...1.....2...........
+...6...837.1.............2.5.....4...3..8................4.75..2..5..1...8.......
+...6...847.1...............3.....2...8.4........9.....5...2.7......371...4.......
+...6...853...7.............2.....6.37..4........1.8.......2.7...8.....4..1.......
+...6...9..2.....3..7..........5.24..9......6.1..............2.5...83.......4..7..
+...6...9..2..8....7.........6....2..5...7.........1...1.9....4....26.8.....3.....
+...6...92....2..8.3...........4.83...2.7..5....1..........13...46................
+...6..1.....7..2..4.9......8...4..5......16.....2.........5..43.1..............9.
+...6..1.....8..2..7.4......9...4..5......16.....2.........5..73.1..............4.
+...6..1...3...7.........9...7.....321..4..............6..12.4..8.....57..........
+...6..1...3.4.....78.........41............2........7.2...7..3...6...4......8.5..
+...6..1...32.........1.........7...45.....6......3.....7....53......9.8.2..4.....
+...6..1...35............7.48..1.4.........69....7.........95.3.....2....1........
+...6..1...4.2......3.....7.5......841.2......6............89.......3.6..........2
+...6..1..2..8.....43.........1...6......32...........9......532...79...........4.
+...6..1..3...7..........5.84.2.........8..6.....1......8...3.4.....4..7..1.......
+...6..1..3.9........8.......2.4............83......5..2...83....7....46.........1
+...6..1..4......2.....8.......2.4.6...87......3............58.1....1.3..6........
+...6..1..4....8...73.......2.6...5......37....5..4...........42...1............3.
+...6..1..4..2.....32.......5......2.....38......1....7.71..........4.3.........6.
+...6..1..8...3..........9..4......82.....1...2...........84..5..9....3....17.....
+...6..1..83...................1..95.32......84..........19.8.......2...3.......7.
+...6..1..83.......5........2.....43....1..2.....75.....71..........8..5.....3....
+...6..1.2.8..7................2.14...4...3..........7...6.5..4.3.2......1........
+...6..1.28....5.........4..56.....3....4.......2......35.....8....21....7........
+...6..1.42...3..............1.4..5..7......2...6..........72.3..84...6...........
+...6..1.5.8.2.....74.........17............58.......4.2.....3......56.......4....
+...6..1.5.8.2.....94.........17............58.......4.2.....3......56.......4....
+...6..1.53.2.7..........4......3..8..1...................1.56..7......2.8..4.....
+...6..1.57....3.............19...2..6...5.........7...4......37...2...9.....1....
+...6..1.57...3............2.85....3....1......2.......1....2...4.....7......8..9.
+...6..1.73.2............2......43....71..........8....45.....3.6......8....1.....
+...6..1.79..2.....3.....8...7....24.....95......1......1..8............5.......9.
+...6..1.79..2.....3.....8...7....64.....95......1......1..8............5.......9.
+...6..1.84...3..5..........3.8......7......4....1......16...2...2..47............
+...6..13..54.......9.......7..1..2......8.6......5....3..2..........9..4.......5.
+...6..13.72........9.........15.........8...7.......9.....27...3.....8.....4.9...
+...6..14..3.....8.25..........583...7.1..........2....3.......2...4...........9..
+...6..15.23................5...3.......7..8...4....6..1......32..58............4.
+...6..2.......8.......1....4......71..52.........6.......3..54..6....3..71.......
+...6..2......4..3....1........2.86...54............1......3..478......5.1........
+...6..2......8.9..1..........71.5....2....3.....4........7....14......5..9..3....
+...6..2.....1.5.........4......4.8.26...9....1.........8..3.....4.....6....7...5.
+...6..2.....3.2...1...........5..3.24...8..........6....8.7..4..3....5......1....
+...6..2.....7.4.....1......65..............13........8.4..1.5..5.....46.....8....
+...6..2.....7.8...4......3.27.1.........3..5..8......43...5..........8........7..
+...6..2....4.1.....5.....9.32...8..........417........8.....3.....45.......9.....
+...6..2...1...........5....1...4..35.6.7.................2..71.5.3..8...4........
+...6..2...1...........5....1...4..35.8.7.................2..71.5.3..9...4........
+...6..2...19.......4.....5.7..1.....8.....3.....4.5...2...3........6...4.......1.
+...6..2...19.......4.....5.7..1.....8.....3.....4.5...2...6........3...4.......1.
+...6..2...3.4...........5..7.5....8.....1....2...........7.26...14....3....5.....
+...6..2...4..........1.........82..36.1....5.7.............9.6..2..4....5.....1..
+...6..2...47.......3.......3..1............45.......7...53..1......87...6.....9..
+...6..2...5.....4....7.3.......5..1.6.4......3.........8.19..........6.3......4..
+...6..2...5.....8..3...1...6..4...2.....3.57.1...........28..........1..........3
+...6..2...5...4....1........7.....4.....1.5..8...5....6.93....7.......1.2........
+...6..2...97.......3.......8..2............49.......7...45..1......17...6.....5..
+...6..2..1............3.......2..6.971..........8.......95.4....8....3......7..1.
+...6..2..3...4....5...........2.1..98......5....4......2...74......5..3..1.......
+...6..2..4.3................62...8......41...........317.....4.5...9.......2...7.
+...6..2.17...4............3.82....7....1......3.......1....3...5.....6......8..9.
+...6..2.18...4............3.72....4....1......3.......1....3...5.....6......7..9.
+...6..2.4.1.............5..7..42....4......18.......3.6.75.........18............
+...6..2.4.1.............9..7..42....4......18.......3.6.95.........18............
+...6..2.478.3...........5...42.5.......1...6..........6......1.....2.8..3........
+...6..2.478.3...........5...42.5.......1...7..........3......1.....2.8..1........
+...6..2.478.3...........5...42.5.......1...9..........3......1.....2.6..1........
+...6..2.478.3...........5...42.5.......1...9..........3......1.....2.8..1........
+...6..2.478.3...........5...42.5.......1...9..........9......1.....2.8..3........
+...6..2.479.1...........5...42.5.......3...6..........6......1.....2.8..3........
+...6..2.479.3...........5...42.5.......1...6..........6......1.....2.8..3........
+...6..2.479.3...........5...42.5.......1...8..........8......1.....2.6..3........
+...6..2.7..1............6......4..1375........6.......3...18......2...4.......5..
+...6..2.8.1.............4..6..48....2......19.......3.7.65.........19............
+...6..2.84.1.........3.....5...1..4....8...............8..75....9....6......4..5.
+...6..2.875.4...........5...28.5.......3...6..........6......1.....2.7..3........
+...6..2.879.4...........5...28.5.......3...6..........6......1.....2.7..3........
+...6..23..1..........3......5..14...2......7.....8........5.1.43..7.....9........
+...6..23.5..3.....16.......42.7............91..........8....4......59.......1....
+...6..24.1.5.........3..........21.5.8.............7...3..4..8.5...71............
+...6..24.85.......7...........4.2.6.1.......5...3......2....3......7...8....1....
+...6..25.3.1............4...5.2..6..1...7.................8..31.25..............7
+...6..3........1.........7....5.8...1.......42..3.........1.24..8......5.3..8....
+...6..3........4.65...1.........3.2.2......5....4.......715.....3....8......2....
+...6..3.....5.2...........4.1....58.....3...........2....2..19.4.3.7....6........
+...6..3.....5.2...........4.1....58.....3...........2....2..91.4.3.7....6........
+...6..3.....94.....1.......6.2....4.....1..2......8...3.....1.57..4...........8..
+...6..3....25.....4........36....8......2.7.......1.....7....21.8.3.........4....
+...6..3...2..........1......7...5.4...3...1......2........74.5.1.6.....38........
+...6..3...24............8......1..7..5.....4.....8....3.....6.12..4.7......5.....
+...6..3...4....1...2..7........4..218.....5..3........1..8......7.....4....3.....
+...6..3...4..2......7....1....7.1.3.25.......4............5.2.4...1...........8..
+...6..3...4..2......7....1....7.1.3.52.......4............5.2.4...1...........8..
+...6..3...42.........1.........8...53.....7......4.....8....64......7.9.2..5.....
+...6..3...5.4......72..........7..5.6.....4.......1...8..25...........17......6..
+...6..3...52............8......1..7..4.....5.....8....3.....6.12..5.7......4.....
+...6..3...7.4.......1..........6.17.26.5............4.3...8....6.......2.....7...
+...6..3..2.8.......5.....1....2....4...7.4....3.....5.7.....2..4...5........1....
+...6..3..4......2.8.............76.1..3...2..5...4.....6.2.........5..4..1.......
+...6..3..4......8.9.............16.7..3...2..5...4.....6.2.........5..4..1.......
+...6..3..5...8..........2..1....7.9....4.3....8..........17..5..32...4...........
+...6..3..5..4.....87.......2......58...1............7...3...64.....82.........1..
+...6..3..5.1......4...7........5.74..63...........1...2......5..7.8........3.....
+...6..3..7....8....4...........2..48..3....1.6..5......2.14..........7........6..
+...6..3.2.4...1............2.3.5..........48...6......81.....5.....2.7.....3.....
+...6..3.2.4...1............2.3.5..........49...6......81.....5.....2.7.....3.....
+...6..3.2.9...1............2.3.5..........49...6......78.....5.....2.1.....3.....
+...6..3.24.1...................47.1.5...8.....3.......6.....74..7.3.2............
+...6..3.4...17..........8..61..2.........85...9.......4......1.2....3......9.....
+...6..3.4.1.4......5...........127..6.....2......5....3..7.........4..8........1.
+...6..3.412....................21.8..74...5......9......34........3..6..2........
+...6..3.42....8.........1......27.5..31...............7...4..2..4.3..6...........
+...6..32.51..................6...1.5..38...........7...7...1...3......8.....4..9.
+...6..34...18......5........8..57...4.....6......1....6..9....7........1.......2.
+...6..34.5.1...............76....2......1...9.3...4.......8..152...........3.....
+...6..34.7.1......2........5...2...1.3.....8.....1.....8.3.4......8...........7..
+...6..35.1...2....9.........3.8..4..2....5.............687............21....3....
+...6..35.4...2...........8.2..3........8.7...1............1...2.8...4....5....6..
+...6..35.41.............8...5.4.1...1..2.......3...7..2.......4....8........7....
+...6..35.7.82.....1.........3.....4.2...7........1.....8.5..2.......4..7.........
+...6..37.1...2..........45.2.....8.9...7.3...............29...5.4........3.......
+...6..37.8.1.........2......7..1..6......45..2...8.....6.7.........5.8...........
+...6..38...15.....9.........3.18....4.....9........7..7...29..........1........6.
+...6..38..4.1...........2...1....76.2...3.....5..2.......4....18........3........
+...6..38..5.9......1...........57.4.6.....7......1..........4.53..2.........4....
+...6..38..5.9......1...........57.4.6.....7......1..........4.58..2.........4....
+...6..38.4..3.....1.........8.54....7.......1.....92...3....5......1........7....
+...6..38.5.1...............73.....4....15........8....6.....2.1.4...7...........8
+...6..39..1.2.....7........5...87....6.....1..........4.....5........7.8.2.1.....
+...6..39..1.2.....7........5...87....6.....1..........4.....7........5.8.2.1.....
+...6..4....5.8.....2....9.....2..6..3.8......9.............1.35.4.7............8.
+...6..4....9.2.....1.......6.37.....8.....5......1....47.8............19.......2.
+...6..4...2..7..........1..1.45.........3..8...6......38.....2....4..5.........7.
+...6..4...3..8....4.....7......3..816..4...............1..5..3....2..6.....7.....
+...6..4...3.5.......8.....62...9..8.6.7............3..45....6.......1.......8....
+...6..4...3.5.......9.....62...8..1.6.7............3..45....6.......1.......9....
+...6..4...57.......1.....3.2......1....46.......7..5..8...31.........76..........
+...6..4...6....2......1.....7.4...6......8..3.......1....2..75.1.3......8........
+...6..4...8..5...........2..2.3...8.6..4..7...1...........81...4.....6..7........
+...6..4...9....2......1.....7.4...6......8..3.......1....2..75.1.3......8........
+...6..4..1......6.8.........7.2.5...6......8.........1...31......2...7...4....5..
+...6..4..1.7......3...5........3..7..2....8..5.........6.2.4..........31.....8...
+...6..4..23.......8...........1.46..3...............5...4...12....58........3...7
+...6..4..5.9........1......6.....8.2.4.7.........1....92.3...........75........1.
+...6..4..6..2.............315..........7..2...3.....8.4...5.1......38.....2......
+...6..4.1.....3...7........3.....75.....4.......8......5....23...841...........7.
+...6..4.17..23..............16..4.......8..3.5.............16..3......2..7.......
+...6..4.32.9......1........74..5...........2........9....1..8.....8.2....5....7..
+...6..4.7.23.........5.......1....2.7..3.........8.5......21....5....6..4........
+...6..4.8...3..2...1.......5...17...6.....3..2.........7.....1....25.....8.......
+...6..4.87.5................4...1.........32.6......5.43....1.....57........2....
+...6..42..31.......8.......4..72............1.......7.7.....2......31......5.8...
+...6..42.5.1.........3.........17...6...5.....4.....9.......7.5.6.2...........8..
+...6..42.5.1.........3.........18...7...5.....4.....3.......8.5.2.9...........7..
+...6..42.5.1.........3.........18...7...5.....6.....4.......8.5.2.7...........9..
+...6..42.5.1.........3.........58...3...1.....7.....9.......8.1.2.7...........9..
+...6..42.5.9......1.........3....7...6..5........1.......3.4..82..7............5.
+...6..42.7...9.................73..5.4.....6....1.....9...8...7.2.4...........1..
+...6..43..41...............32....7......41.......8.........5.186..2.....7........
+...6..43.1.9......8.........3.....2.....9.8......1.....5.2....67.....1.....3.....
+...6..47.1..4.....2........5......82.7.3.9.........1...4....9......8........2....
+...6..5........1..4........3...19.........62......3.5..597.........8...4.6.......
+...6..5........46...1.......7......23..5........8...1.6...2.3......1..5..4.......
+...6..5...2...8....7.........3...1.....2....75..4.....2...7..5.......38.....1....
+...6..5...8.....2.3...1........7.1.3.5....4.....2........5.2.8...1......4........
+...6..5...8..3..........1..6..4...3........82.....1...5.....7.....39....1.2......
+...6..5..48........2.......5.3...6......7.1.....28....1..3............74.......8.
+...6..5..8...2......1....3....49.2....3.......6..........3.1.7.92....6...........
+...6..5.12..1........4..8......9..23.61...............3...2..7..4....6...........
+...6..5.12.3.7....9........7...8..3..4.5...............1.4..6......3..2..........
+...6..5.271.............4.....2.5...8......9......4...3...9........1..7...24.....
+...6..5.3.81..........3....4..2.7.1.2..............8...5..8....6.......2.......4.
+...6..5.3.81..........3....4..2.7.1.7..............8...5..8....2.......7.......4.
+...6..5.3.91..........3....4..2.8.1.2..............9...5..9....7.......2.......4.
+...6..5.371....................71.2..53...4......8......43........2..6..1........
+...6..5.371....................71.2..53...4......9......83........2..6..1........
+...6..5.4.8..1..........7......3..2.5........4.........2....31..3.7.....7..5.....
+...6..5.48..4.....2.........53...6.......832.....1....7......8..4.5..............
+...6..5.7.91..........3....4..2.8.1.2..............9...5..9....7.......2.......4.
+...6..5.8......2..7...........37..1...2...4......6....61.....3....2.5..........7.
+...6..5.84.1............2......17.4..5.....3..........3......7..8.5........3..6..
+...6..5.9.31.......8.......2..56..........71.............431...9.....2.......8...
+...6..51.6..3...........7..3.....4.8....1....2...........4...23.5..7.....1.......
+...6..51.74.8.....2..........8.7.3...5....9......2.....6.9.....3.......7.........
+...6..51.74.8.....2..........8.7.3...6....9......2.....5.9.....3.......7.........
+...6..5237.1.............6.3...25....8......4....7....5.....2...3.4..............
+...6..54..18...............4.....96.3..28........1.......7....2.9...8...5........
+...6..54..71..........8....8.....6.......42......1.....5.....172..3............3.
+...6..54..81..........3....3.....2.......46......1.....4.....182..3............7.
+...6..54.1..9.....7........24.3.....3.......1..........8...24......1..3.....7....
+...6..54.8.1............2..65....4......31...7...8.....4.2............8.........3
+...6..59.18.................36...2......17...4........7.93...........48.........1
+...6..7........4...8.......1.7.4........2..9.6........42.....5..5.7........3..6..
+...6..7.....57....8........1......48...2............3.5.7.3.........12...2....6..
+...6..7....1.....3.5.2.....6.....2..74..........1.....3....7.......5..1...8...6..
+...6..7....1.8.....5....4..27...3..........15.......8.6..2.....73...........1....
+...6..7...12...............34..6........9.2.1......8..5..8.2...6......3........1.
+...6..7.154..8....3...........7.16..8...5.4.............72............5........4.
+...6..7.2...5.8....1.......2..79..........13........5.....134..6.5...............
+...6..7.2..13...............8...5......1...3.7........25..7....6.....3........41.
+...6..7.2.198......5.......32....6......1..9..........8..3.....7.....4.........1.
+...6..7.2.4.5.8.............6.....5.....2.4......1.......3..68.2...7....1........
+...6..7.241..8......9.......3....51.7..2..............6.....24......1.......3....
+...6..7.31..4.8.............3..7.5.....2...8..56......2......4....1.........3....
+...6..7.32..8.1.........4.....9...2.4.3.......75..........4.5...1.......8........
+...6..7.4......5..2.........5..42.......3..2..1..........1..6..3..5.....4......8.
+...6..7.4.1.4......5...........128..6.....2......5....3..7.........9..3........1.
+...6..7.41..3.....5.........4.2..6..27..............1.....18...3.....8......5....
+...6..7.5.3....2..8...........51.6..34.....8.9..........52............3......4...
+...6..7.51.9......4.........2.7.........4..9........1....3..2..5...1.....8....6..
+...6..7.58...2..........1.....54..2..7.....3..1............76..2.3......4........
+...6..72..43.....6............5.31..48.......7............84...2......5.....3....
+...6..72.4.1........8......5...8..4..7.3.............1...2..6...3....2......1....
+...6..72.81...........4....2.....8.1..45...........2.....3...6.7...8...........5.
+...6..72.91...........2......52..8..7...1..........3..4......19.......5....3.....
+...6..73...1.........2......7..41..........82.............951..26....8..3........
+...6..73...1.........8......7..41..........82.............951..86....2..3........
+...6..73..1..........3......5..14...2......7.....8........5.1.43..2.....6........
+...6..73..1..........3......5..14...2......7.....8........5.1.43..7.....6........
+...6..73..1..........3......5..14...2......9.....8........5.1.86..2.....9........
+...6..74..2.7......1............7.1.5.......29..4.........28.......5.4..3........
+...6..74..31.........7.........5.3.268.4..............4...1..9.....32............
+...6..74.8...5..........1......3...5.7.....2..1.......3.2.........7..4..5..1.....
+...6..75.1...2....9.........6.3..4..2....5.............847............21....3....
+...6..75.8.1...........5....2.....3......4.......8....5..2....8....1.4...6.3.....
+...6..78.29.........51.....6..7............39........48.....1......53.......9....
+...6..8....1.......5........3.....51...8....46......7.9.....2..3...1.......45....
+...6..8...3......2.9.......6.27.........3..5........1.4..1.6.........3.5......9..
+...6..8...4....2......1.....7.4...6......8..3.......1....8..75.1.3......2........
+...6..8...4....2......1.....7.4...6......9..3.......1....2..75.1.3......8........
+...6..8...4..7..........1..3...4..2......2.....1.........1..5.392.....4....8.....
+...6..8...7....4..9........2....7.5.8.....6......1.....14....7....8....2...3.....
+...6..8...74.......3.......2..5.6..........31....4..7.6....25........1......3....
+...6..8..1.5......7...9.....6.4.2...3......5....8...1..4....2......1..........4..
+...6..8.129...3...............15.4..37.....2.9..........14..5.........3..........
+...6..8.129...3...............16.4..37.....2.9..........14..5.........3..........
+...6..8.13...2..........4..7...4.5..2......9....8.........7..2..8.4......1.......
+...6..8.2..14.....7.........6....9......13...5...7....3....4.1..8.2..............
+...6..8.235.................1.....3...82.....4.....6......31.7...2...4......5....
+...6..81..32...............5.....47.1..8........4....38.....5......32.......7....
+...6..81..32...............5.....47.1..8........9....38.....5......32.......7....
+...6..82.3.1...............4....23...5..7.....6........2.....7.....3...15..8.....
+...6..83...7..9....2.........5.27...3.....1......4.....4.....27...1.....5........
+...6..83..21...................24..135.....7.8..........9...2..4..3........5.....
+...6..83.21...........9......67..5........4.7....1.........6.124..5..............
+...6..84..31.........8.........5.3.279.4..............4...1..7.....32............
+...6..84.2.9..................1..7.2.4.56.....3.......3...27..........5......9...
+...6..84.2.9..................1..7.2.4.56.....3.......4...27..........5......9...
+...6..85...42......1...........13...6.....5......4....5..7...2...3.....1.2.......
+...6..85..43...............5..79...........419........7.....2......34......5.1...
+...6..85.1...2....3.........5.8..4..2....6.............847............21....3....
+...6..85.1...2....9.........6.7..4..2....5.............874............21....3....
+...6..85.7.32.....1.........3.....4.2...7........1.....8.5..2.......4..7.........
+...6..89.74.......2.........153...........2.1..8......4...7........28..........3.
+...6..89.74.......2.........153...........2.5..8......4...7........28..........3.
+...6..9...4....2......1.....7.4...6......2..3.......1....8..75.1.3......9........
+...6..9...4....2......1.....7.4...6......9..3.......1....8..75.1.3......2........
+...6..9...9....2......1.....7.4...6......5..3.......1....8..75.1.3......2........
+...6..9..3...4....5.....2...1.2............38.....1.5..6.1..7......38............
+...6..9..58........4..........3...2........451............581....9.7.6.......4...
+...6..94..2....8..5..1.......6....51.9..8.................9.4..2..7.....1........
+...6..94.2.8..................1..7.2.4.56.....3.......3...28..........5......7...
+...6..94.2.8..................1..7.2.4.56.....3.......4...28..........5......7...
+...6.1..........23.......7..9..2.5..81...........3....7.24...........6.93........
+...6.1.........2.83.....5...46.5.....7.....1.....8.3.....7...4.2........5........
+...6.1.........48.............28..7.41...............3.3.1..5.69...4..........1..
+...6.1.........8.3......2.....1...6428..5....7..........64...3.5...2.............
+...6.1......4...2.78.......6.1...4..3.....6......8.....9.7......2..5..........1..
+...6.1....2.....8.............48..5.3.1......6..7.....5...2..........7.1.4....6..
+...6.1....2.....8.............48..5.3.1......6..7.....5...9..........7.1.4....6..
+...6.1....2....5....5.......6.52....3......1.........81.4.3.......7..2..8........
+...6.1....24.......3.9.....8.....2.11..5...........3....7.2....9......6........5.
+...6.1....3....2.....7.....7..2.......9...3........1...1..3...56......4.....8..7.
+...6.1....3....7..2........4...5.3....1....8....7.......64...1..8..3........7....
+...6.1....3....8..5.....2..4.62.....1............7.....7......6.8..2.......5...1.
+...6.1....4.....2..........6.13...........24.3.........7.52..........7.1....8.4..
+...6.1....4.....2..........6.13...........24.9.........7.52..........7.1....8.4..
+...6.1....4.....2..........7.13...........24.6.........8.52..........8.1....9.4..
+...6.1....4....5........7.4.5.7........2...6........2.6.8.1........5.3..2........
+...6.1....4....5...2.......3...7..1..5..2....7........1..5........4..2....8....7.
+...6.1....5....4............7..85.2.2......6.....4....6.23....81..............5..
+...6.1....7.....2.......3......3.28.6..1.....4...........4....653........2..7....
+...6.1....8.....2.............57..4.3..4.....1.6......6.....1.5.2..8..........3..
+...6.1....8.....2........4.1.3...7.....84.......2.....7.....6.3...5..1......2....
+...6.1....8.....9.............57..4.3..4.....1.6......6.....1.5.2..9..........3..
+...6.1....8....3.........2.5..2...1..7..4.............1.25.........3.8..6.....4..
+...6.1....8....9..3...........78.2...16......5........92..3.......4...65.........
+...6.1....9.....2.............2..1.698.............3..6..54......1...7......9..8.
+...6.1....9.....2..........1.64..8......2....8...........53.6...2..9....7.......1
+...6.1....9.....5.............2..6.198.............3..6..54......1...7......9..8.
+...6.1....9.....5..........183......6.......4.......9..7.25....4.....1......9.8..
+...6.1....9.....7.............2..1.698.............3..6..54......1...7......9..8.
+...6.1...3.....2............1.....7..4..5........2...55.8...3..2..7........4...6.
+...6.1...3.....5.....8........25.8...9....4....1.......7.....962...4...........1.
+...6.1...3.....5.....9........25.3...8....4....1.......7.....862...4...........1.
+...6.1...3.8......7.........2..5...7.6....5.....4...........61....3..4..8...7....
+...6.1...4.....7............6.7..3...21..........4..8.9...8...........21......5.6
+...6.1...4.....7.........8..16....3....52.....2.......5.....2.63.4.8.............
+...6.1...4.2......7........53.1...........4.2......7.....38..5..64..........2....
+...6.1...5.....3...........7...2.....1.....4.........6.6435.......4..7....8...2..
+...6.1...5.....7..4...........54.2...1......6..3.............13...2...4.8...7....
+...6.1...7.......3......5..4.....61.2..53.......8.........2...7.6.....8...5......
+...6.1...7......3...........612............73.2....5..9..43........8...7......1..
+...6.1...7.....8..2.........1.4...653...2........7.....645.........3.2...........
+...6.1...72.............3..8......7.2...4...........86.51...4.....83.....6.......
+...6.1...8.....2.....3.......1.4........2.8...53......72....4.....5....1.......3.
+...6.1...8..3.....4.....2..1...7.4.....5...6...........65..4.......2.9...3.......
+...6.1...8..3.....4.....9..1...7.4.....5...6...........65..4.......2.7...3.......
+...6.1...9.....7..............7...462...5...83......1.....9.2...6.4.......1......
+...6.1..5..42......3.....9........576..8...........3......3.4..57...........1....
+...6.1..74.....3..8.........5.7..1........24..........2...4..8..6.5....9.........
+...6.1..74.....3..8.........6.7..1........24..........2...4..8..7.5....9.........
+...6.1..774.....9....3.....2...3.......8..6..9............9..2...6...3...1.......
+...6.1..9.23.............1.......23.8..9........5..8..6.......4....2.7..9........
+...6.1.2.5.8...7......4....3..75.....6.....12.........71..........3..8...........
+...6.1.3.5.....4..2..............21.68...................42.5...3.7......1......8
+...6.1.4.3.2..................4..17.5.......32.........1....8......36......52....
+...6.1.4.3.2..................4..18.5.......32.........1....6......37......52....
+...6.12..5......8..............3..41.76...............3...5.7..4..8........4....6
+...6.12..9......8..............3..41.76...............3...5.7..4..8........4....6
+...6.13...25..................72.....4..5....1.....8.....2...513.8............7..
+...6.13...25..................72.....4..5....1.....8.....2...563.8............7..
+...6.13..85.............4......7..523.1.............8..2.....7....1..6.....9.....
+...6.14...7.....8.............72...134.......6...........57..2.1.....3......8....
+...6.15..7.3....4..............4..27.1.5..............46....1..2...7.......8.....
+...6.15..7.3....8..............8..27.1.5..............46....1..2...7.......9.....
+...6.2.........7..8........42....6.....3..1..5...1......61.........9..2.....8..5.
+...6.2......5..6..1........3...1.4......8...5......2...7.....81.9.4............3.
+...6.2.....83......1....4..2..7...........86.......1...5.....326......7.....1....
+...6.2....3....6.....5.........1.7.32..4.....9.........1..8....6......2......9.4.
+...6.2....9....6.....3.........5.1.32..4.....8.........1..7....6......2......8.4.
+...6.2...2..7............5.63....2..4.....7......1......1.5..3..58.........4.....
+...6.2...3.......1...4..8...2..5...4.4.....6.....1.......7...2.1.....3..8........
+...6.2...3......8....51........8.1.69.4......7.....2...1....6.....7...4..........
+...6.2...5.....1.....3.....1...4.7.3...8...2...........2.....6.4...7........1.5..
+...6.2...5.....1.....3.....1...8.7.3...4...6...........6.....2.4...7........1.5..
+...6.2...5.....8.....7.....4...1...........7........6..6....1.5.732.........8.4..
+...6.2...8.....1.....7......634.........8.2...7..5.......3...7........641........
+...6.2..48..5...3....1.....7.....2.13..............6......7..8..6..4.....1.......
+...6.2..83.4......7..8...........1.61...3..........2......1..7..6.9............3.
+...6.2..87.1..................3..15..8.4...........7...2....4365...1.............
+...6.2.4..34...............6..1...2..8..3.......7..5......5.3.82..............9..
+...6.2.5...1.......9..........8..5..2......6..3..1........7.1.36..4...........9..
+...6.2.7.......14....3.....583.........2....4.1.......7...1....2.......3......8..
+...6.2.7..81...4...........7..5...6.4...1...3.............8.1..6..3......5.......
+...6.2.8..45.......9..7....5......1....74.......3.....2..1...........9.7......4..
+...6.2.8..5..7...........1.84.1.........5.7..2.....3......3.5..1..9..............
+...6.2.8.3......2.1..7......8.2......4....3........1..5...3.....7..8.........4...
+...6.2.8.5.3......1...........9..3.5.7.2...........1....7.3...8.2.....6..........
+...6.2.9..45.......7..8....5......1....74.......3.....2..1...........8.7......4..
+...6.21..5......4.2.8.........2...75.1.3..................1...87...5..........3..
+...6.21..7...........4........1..4.23.8.5....5.........4....2......3..8.6........
+...6.23..41......5.7...........1..7.8........3.........4.....1....3..6..5..8.....
+...6.23..57................1.5.7..........69.2.........6....2.8....5..1....4.....
+...6.24..1.....3....5.........3...17.4.2............5.32....6......1...........8.
+...6.25...41..........3....6......74....9............148.7...........91.2........
+...6.25..8.1................2.5..6.....7...4.....8........9...376...........1..8.
+...6.27..5..8.....94..........31..5..6..............1.......2.31...4..........6..
+...6.27..5.1...............3..14..5..2......67.........8....2.....31........5....
+...6.29...1..........8.....2......6....1...3..4..5........1.7.48.......26........
+...6.3....5....7......1.......58..2.3......9.1.............53.6.2.4...........1..
+...6.3....5....8......1.......54..2.3......7.1.............73.6.2.4...........1..
+...6.3....5....8......1.......59..2.3......7.1.............73.6.2.4...........1..
+...6.3...7......4....5.....5.....1268...4..........3...36.........25.....1.......
+...6.3...74..........1..6........13..5..8....2.....4......7..24..1..............5
+...6.3..478.....9....2.....9...1.......8..6..5............9..1...3...2...6.......
+...6.3.1.74....5.....8.....45.2.....2...1...........6.....7.2...63...............
+...6.3.2.1.8...4.....7.....4.....8.1.6.3..............5...1...........62.3.......
+...6.3.4..72...............3......6.8..4.........7......5.8.7.261.............5..
+...6.3.4..82...............3......6.7..4.........8......5.2.7.861.............5..
+...6.3.4.1.....2............73..4.......5.1........8..5..12.....4.....7....8.....
+...6.3.4.2..4.....1.........4.9...........2.8......1......25....6.....3.....8.7..
+...6.3.5.2.8................6.1...3....4..1..7...2........4.2.7.3.............8..
+...6.3.571..................37.....8....914......2.....5.7...3.9.....1...........
+...6.3.7..51..................51.2..36....8.....4.....6......4.....4...58........
+...6.3.7.2.....5....4.......3.4.7.........2.8.6.......8..15...........3.....2....
+...6.3.9..72...............3......6.1..4.........7......5.8.7.261.............5..
+...6.3.9.1...........2......7.....235...14................5.1.8..3...4...6.......
+...6.34...5..........4.....2...5...8.64..........1.......7..63.18.......5........
+...6.35..2...........7.....5...84...4...2..........1...1.3......3......2..7....4.
+...6.35..8....................2..3.61.8.7....4.........3.5..2......1..8........1.
+...6.35..82.................9..2.......18....7.....6..5.64............29......1..
+...6.37.....4..5...1.......7.3...6......1..2.4...8........2..8.6..5..............
+...6.37..41..................6...3.7...51....2.........5.24..1...3..........8....
+...6.38..1.............9...5.6...4.....72.....4..1.....68.............15.......7.
+...6.38..5.1.........8...........63.2...5.............16.....5.....7...2.3.4.....
+...6.38..5.1.........9...........63.2...5.............16.....5.....7...2.3.4.....
+...6.39..5.1.........7...........73.2...5.............17.....5.....8...2.3.4.....
+...6.4...2......1........7..8...1.......2..5..4....3.....9..4.....3..9..1...5....
+...6.4...3......2....5......4..2..7..587.......6...3.....1..6.51.................
+...6.4..578.....9....2.....3...1.......8..6..9............9..1...4...2...6.......
+...6.4..775.....9....3.....1...2.......8..6..9............9..1...4...3...6.......
+...6.4.2.8..5..3..1...........37.8...54.................2....5..3..8........1....
+...6.4.371..................37.....8....915......2.....4.7...6.9.....1...........
+...6.41...37.......9.......8..7...2.......53.........94.....6.....39........5....
+...6.415....3......7.......12..7..........63..............8...14.3......65.......
+...6.42...31.........2......5..8..31.......8.6........5..7.....4.....6......3....
+...6.42...78...5...9.......3..2..1......8.................7..89...3...6.1........
+...6.42...87...5...9.......4..2..1......8.................7..98...3...2.1........
+...6.42...97...5...8.......4..2..1......9.................7..98...3...2.1........
+...6.43....1...7.......8...64.2.........7.1...8..............483...5...........5.
+...6.43...1..........8.....6.2....7.....1..6.....5....3.....1.24..7...........5..
+...6.43..1......5.8..7......3....2.7.42..........1.....7.3............8.5........
+...6.43..1......5.9..7......3....8.7.42..........1.....7.3............9.5........
+...6.43..7.1.............2.2......51.6.3........4.....5...1...7.4....8...........
+...6.45..8....................3..4.61.8.7....2.........4.5..3......2..8........1.
+...6.47..5.1.........2.........8..3162...............83...1..4..4....2...........
+...6.47..9....................3..4.61.9.8....2.........4.5..3......2..9........1.
+...6.5......72....1.....8..4....8.......5...7.......1..65...2.....3..4...7.......
+...6.5....1....7.....8.....2.5...6........2.7..8.......7..1..4........853........
+...6.5....2....3..8.....1..7..21...........54............9..2...34......6.5......
+...6.5....73..........2....4.51.....6......8........7.52....4......37.........1..
+...6.5...2.....4............76....4....1..2.....83...........57.....4..61...2....
+...6.5...2.....8.......73...465.........3.2............7.4...6.3...8...........1.
+...6.5...2.....9............76....4....1..2.....83...........57.....4..61...2....
+...6.5..1..8....4...........5..7.3..1...4....26.........4...87....2........1.....
+...6.5.7..81...............3.....26.2...4.........1...76.2.........8...1......5..
+...6.5.7..91...4...........5......683..2.........9........1.9..6..8......2.......
+...6.5.7.43................29..3.......48......5....1.......3.2..61...........4..
+...6.5.8..4....1.....7.........1.9..7........6.........1....25.39..........8....6
+...6.51..7.......3...4......6.5...4.....78....1.......8...2..........56.3........
+...6.53...4.2.....8........4..7.3...1......8.........9..2...6...9..8........1....
+...6.53..3.......8...9........17..6.8.....5..2..........6....4.....8...2.1.......
+...6.54..9...8................7..3.68.2.9....1............1..8..3.4............9.
+...6.7......5...3.8.....1...762...........8...2.......4...1......5....7.3.......6
+...6.7.....24......3....8...5..3..2.6.......4....1....7.....3..4..7............5.
+...6.7....4.....8..........6.12...........54.......8...5.38....7.......12...4....
+...6.7..3..1....8..........67...2.........15.2...........15.4..79...........8....
+...6.7..8.1....4.....52....2.......5.....4.......8....7.82...........31........4.
+...6.7.1..8...2...3............5.4.86.....2....1......2......6..4..8.......3.....
+...6.7.4.3.....5...............5.3.2.8.7......6..........4..86.2...3......1......
+...6.7.4.8..5..2..............1...762...3....9.........16..........9.8.......3...
+...6.7.5.3.1................6.....742...3..........5......1.3.2.7.2...........8..
+...6.7.8.4.1.........5.........3.1.437.............2...6.7...5.2...4.............
+...6.7.81.3..........1.....1.2.9..........7.....5.........34.9.67.............2..
+...6.7.9..8....1...........6.97...........2.83..4......1..28..........6.....5....
+...6.71...43...............1..8.........2..4...6...7......34.51.2.......6........
+...6.71...52.......4....3..1.....6.......3.......4........5..428..1............7.
+...6.71.3.2..........1.....6..34.....8....25..............259..1.3...............
+...6.72...43.......1...........34.5.....8.7..1........2..1....6.......43.........
+...6.72..53.4.....1.....7...7.....1..2.8............5.....1...84.....6...........
+...6.724....4..6..8........1.....7....5.3....3.........7.2............31.4.......
+...6.73...1..........4.....6.2....7.....1..8.....5....3.....1.24..8...........5..
+...6.73...1..........8.....6.2....7.....1..9.....5....3.....1.24..9...........5..
+...6.73...2..5..........1.....3..64..5.......8..........4....587..1............2.
+...6.73...31.........4.....8..29..........415.............15.9.64................
+...6.73...31.........4.....8..29..........615.............15.9.64................
+...6.73...8..........4........7.5.1...2.8....3.....6...5.....82....1....7........
+...6.73...81.........4.....8..29..........415.............15.9.64................
+...6.73...81.........4.....8..29..........615.............15.9.64................
+...6.73..2.1.....5..........3....8..7...2........1......5....1..7.8.....4..3.....
+...6.73.1.2..........1.....6..34.....4....25..............258..1.3...............
+...6.74...1..........4.....6.2....3.....1..8.....5....3.....1.24..8...........5..
+...6.74...1..........4.....6.2....7.....1..8.....5....3.....1.24..8...........5..
+...6.75..21.....4....3.........2..8..7....3...6.......8..1.....4...9..........6..
+...6.78...42..................35...2.7.....1.6...4......5.2....1.....7.....9.....
+...6.8....1....4.....7......4..2..3.6.......7....1........3.1........24.7..5.....
+...6.8....24.......3.9.....9.....2.81..5...........3....1.2....8......5........6.
+...6.8....24.......3.9.....9.....2.81..5...........3....1.2....8......6........5.
+...6.8....24.......3.9.....9.....8.21..5...........3....7.2....8......5........6.
+...6.8...2.....3............65....4....1..2.....73...........58.....4..61...2....
+...6.8...4.....3............65....4....1..2.....73...........58.....4..61...2....
+...6.8..4..17...........3...7.1..85.34.......2..........6....7.....4........2....
+...6.8.3.14................49.5..1.7...3...........4....8...24....71.............
+...6.8.3.2.1..................51.2...8.......7.........6....34.4...2.......3.7...
+...6.8.7..49.......3..5....8......1....74.......3.....2..1...........4.3......5..
+...6.8.7.4.1.........5.........3.1.438.............2...6.7...5.2...4.............
+...6.81..43.................78...9..2..3........45......6.9...........32.......4.
+...6.83....1...7.......4...68.2.........7.1...4..............483...5...........5.
+...6.83...1..........7.....6.2....7.....1..9.....5....3.....1.24..9...........5..
+...6.83..7.1...............5...71....3....6...........2...4...1...3...4..6.2.....
+...6.84...1..7...........9.....2...13.9......8.....7..6..9...3.........7...5.....
+...6.84..5.1.........3.........2..7536..............1..8....3.....75....4........
+...6.84..5.1.........3.........2..7536..............1..8....3.....75....7........
+...6.87..4.1............3..5...2..4..3...7...........6.8....9.....41.......5.....
+...6.87..4.1............3..5...2..4..3...7...........6.9....8.....41.......5.....
+...6.9...2.....8.......73...561.........4.2............7.5...6.3...8...........1.
+...6.9...5..3.....7.........6.2..1...2....4........7.54...5..8.....7...........3.
+...6.9...7..3.....5.........6.2..1...2....4........7.54...5..8.....7...........3.
+...6.9..57..4.....1......8.......12..5.3......4.......2...1.....3....7..........3
+...6.9.2..1......5.........7..2........8..3........14.6.3..........1.4..2...5....
+...6.9.3..21................7....1.26..3........4..8..4...8........2.5..3........
+...6.9.3..21................7....2.16..3........4..8..4...8........2.5..3........
+...6.9.5..1.....2...4......3.....8......1.....5.......52.3.....6.....1.....7..4..
+...6.93...8..........4........7.5.1...2.8....3.....4...5.....82....1....6........
+...6.97.43......8....1.....5..7..6..8.2...................8..5..6..9.....1.......
+...61......2...4...8.......64.3........7..2........8.4...5.2.9.1......6..........
+...61.....2....4........3...3.4....25......1........8....2..7..1....9...8.6......
+...61.....2....7..3.........5.2.7..........41.....8...4.1.6..........28.6........
+...61.....3....9.....2..4...7...9.........8.........2.6.2....1.....45..78........
+...61.....9......45...3.......7..5....1....3......9...64.2...........18.......3..
+...61....2.....3.....4....232......5...8...4.5.............37...6.....1...4......
+...61....2.....3.....4....232......5...8...4.7.............37...6.....1...4......
+...61....2.....3.....4....831......5...8...4.7.............37...9.....6...4......
+...61....2.....8............17..4....3..7..........6....35....46..2.8..........1.
+...61....2.....8............17..4....3..9..........6....35....46..2.8..........1.
+...61....4.....3........5..57.....6......42...1.8.........7...89....3..........1.
+...61....7.....2.............35..6...1.3......4.....8.6..2.7...8.......1.......4.
+...61....8.....3............5.4...6.3....7......2....1..5.3.....1.....4......82..
+...61....8.....3............5.4...6.3....7......2....1..9.3.....1.....4......82..
+...61..2.5.....4.73..........27...8....5..3...1.......4.....5......8........2....
+...61..5.4.8......3...........15...67..2...........4...1.....2......43......8....
+...61.2...85......3........1...25....7....4............4.9........4...3.6......5.
+...61.2...85......3........1...25....7....9............4.9........4...3.6......5.
+...61.2..5.3......4.........1....7......34......9.5..........43...2..1..9........
+...61.5..2......4.....8....4.......23..7.........5.1.....4...3..6....8...1.......
+...61.5..2......4.....8....4.......23..7.........6.1.....4...3..5....8...1.......
+...61.5..4.3....2...........6....1.....28....7....4...2....3.4..1.5..............
+...613...59...........4..........4.32.....1..7..8......31.........2...8.......5..
+...614...37....2.............1.6.......5..3...4.......2..3.7..........495........
+...618...97...........3....5.....3.8.2.5...........1.....4..72.8.1...............
+...62..........14....3......4...15..2.....3..6.......7.51.........2....3.......8.
+...62..........45.......1...7....2.3.2.54.......1.....5......6.....7...81........
+...62......3...1..............1.36..42......5.8.......25..4..........71.8........
+...62....1.....5.....3.......7..1....6.....3.4.........3.76....5.....1.8......4..
+...62....5......8........1.....4.2.97.3...6..8...........7.5....9....4.....8.....
+...62....5.....3..8...........1...763.9..4................354...6....5...1.......
+...62....5.....7........3.......75.3.1........6..........1...647.9....2....8.....
+...62....6......9..........4..5....7....3.2..9.........2...85...31.........4...3.
+...62....7.....3..4..1.........547...1............8....2.....15...4...2.3........
+...62...13......4.8........7..5..6.......98.2..........2....5.....3...8..1.......
+...62...17......3.8........3..5..6.......87.2..........2....4.....3...7..1.......
+...62...17......4.8........3..5..6.......87.2..........2....5.....3...7..1.......
+...62...17......4.9........3..5..6.......87.2..........2....5.....3...7..1.......
+...62...18......4.9........7..5..6.......78.2..........2....5.....3...8..1.......
+...62...18......4.9........7..5..6.......98.2..........2....5.....3...8..1.......
+...62...34.....1..8........1..5.4....3.....8.....1..........54..2.7..........3...
+...62...74..5.....1...........4..18..752...........3.......3.1..2.7..............
+...62...81............8.........731...2....7.58..........3.14...95...............
+...62..1.79........3.......1..24...5...8...........9..2.....8.......93......5....
+...62..3..87.............2.6..35.....7....1.....2..........17.83..............4..
+...62..4.1............8....5.6....3....7.9....3...1.........7.5.6....1....4......
+...62..5..7..........1.....2.....63.4....7.......1....5.3..8.........2.1.4.......
+...62..5..7..........1.....2.....63.8....7.......1....5.3..9.........2.1.4.......
+...62..5.1......9.8....7...2....18...3.5...............5.3......4..9..........1..
+...62..5.7......1.8.........3.5..4..4.....8............6......3.5.1..........87..
+...62..5.7.1..............94..7...........12...........6.4..3...1..8..........7.4
+...62..7.5.1...6..8.........2.3.........4...1........86.....3...3.....9......1...
+...62..7.8.1...............3.....1.8....7.4...2........6.....3....15.......4.8...
+...62..7.84...................3.4.5.1...........8......5....3.1..2.7........1.8..
+...62..8...71.....4.8.......3.8...........25.......4.......47..5...9.....2.......
+...62..8..73.....................3.1.2....7..6...4......13.7...5......4....2.....
+...62..9.7.1.........7.....39...........84........1...5..2......2....4........1.8
+...62.3...14................5.....416..3.......7....8.....81...2.....7.....4.....
+...62.3...71................5.....716..3.......4....8.....81...2.....4.....7.....
+...62.3..1..............9...37.4....5......81...........4...7...2.5........1.8...
+...62.3..8.9...1..5...........1..7...6.3.....4......8.....89..5.1................
+...62.4...1.............2..2...8..5.........3.......1...71.3...6.....78....4.....
+...62.4...1.............2..2...8..5.........3.......1...91.3...6.....78....4.....
+...62.4.8......2..3.........4..52.......1..7..2.......1..7..........68.....3.....
+...62.7....9...2...1..........4...132...............9.6...31...4.....85..........
+...62.7...3.1......4.......2......945..8............3.......8.1..7..4...6........
+...62.7...95...............2..7......4......5...8...3.1...3.2......59.....8......
+...62.7..4.1......9............418...2....3...........5..2...9..8.3............1.
+...62.7..41....................81....5....2..3...4...........54..73.......65.....
+...62.7..41....................81....5....2..3...4...........54..75.......63.....
+...62.7..41....................91....5....2..3...4...........54..75.......68.....
+...62.7..5.1........8.......3.7..4.........1....4.....2...5..8..6....3.......1...
+...62.7..5.1........9.......3.8..4.........1....7.....2...5..9..6....3.......1...
+...62.8...19...............23....7.....4.1...6...........5...147...3...........9.
+...62.8..3.1...............4..1.3....3....7.....9.....58..7.........4.1.........9
+...62.8..41..................62.4...3.......5...1.....5...3..........62.7......1.
+...62.8..534....................3.471...6...........5.2.....1.....4.7......3.....
+...62.8..741..................7.1...3..............2..68..3.......5...1..2.....4.
+...62.9..8.1...............4..1.8....3....7.....2.....59..7.........5.2.........1
+...621...54.................7....12.3..49..........7.....54...9..1.........8.....
+...621...54.................7....12.3..59..........7.....45...9..1.........8.....
+...6247..5.1...............2......6543..8..............8....3.....5.1......2.....
+...629.7.173...............92..........8...4.6..............9.1..45...........2..
+...63......7...4...1.........2.54...5.......6.......1.3.....5...6...9...2..8.....
+...63....4.....7..............2...635....1.............6...71...23.8......8...5..
+...63...4.1.5............8.6..2..7........1......4.........521.4.8......3........
+...63...4.1.5............8.7..2..5........1......4.........621.4.8......3........
+...63...51.9......7.....2.....2.7....8......3.....6....5..4..........67........1.
+...63...87...1...........2..482...........1...5.......1...6.7.....4...5.3........
+...63...91......5..4........2....8.......1.......9.......7..24...62..5..9........
+...63..1..75...................784..6......3.1.........4....7.8...3..5.....2.....
+...63..1..75...................874..6......3.1.........4....7.8...3..5.....2.....
+...63..172.8..................9..4.2.1.............9..9.....83....517............
+...63..2..1......4....9.......7..1.85.3......9..............73.2..4...........9..
+...63..5.9.....7.....1.....4...8...........36.....2........48...6......1.35......
+...63.1...5.2......48......3..1..6.......8.5..........7...6...........45........2
+...63.1..2.3......5.......4.8....7......5..2..1..........1.6...4......5....8.....
+...63.1..56.4............2.....28.7..1....6..............1..3..2.8......7........
+...63.1..58....4...........3.6.8.......9..2.1.........8....5.3..2.1..............
+...63.1..7....8...2........58....9.....74.........2..........25.3.1............7.
+...63.2..8.........5.......4.....83...25..........1......2....5.1.....6.7...8....
+...63.2..8.1...................41....3....7..2.........4.3....5...7...1........84
+...63.2..8.1...................41....6....7..2.........4.3....5...7...1........84
+...63.2.78...........7.......2..5.......4..8..7.......1..2..5...3.....4.4........
+...63.4..2..8.....1...........271....3....9.......5...5......17.4..............5.
+...63.5..82................6.35............21..........15.2.......7...8.4.....3..
+...632...4..............1......4..825..7....6.......3....9..7...82.......3.......
+...632...9..............1......4..825..7....6.......3....9..7...82.......3.......
+...634....9....5......2.....1.7.9..........53.......4.2..8.....4.3............1..
+...6345..72.....4...........4.....28..63................3...6......72...1........
+...6371...25....8............62.4...3.....7...........74..1.......5...2..........
+...638..7.41...2..............1..54.3...7.............8......39...45.............
+...639....2.....4.....1.....4....2.1..82.............9...7...8.9.....5..1........
+...64........5.7..1.........6.52..........1.3......8.....3.1.2..5.....4.8........
+...64.....2.....3...1..........32.7.6.....5...........43......5...5..6.1......8..
+...64...1.37......5........2..8.......3....4....1..7......7.53.81................
+...64...52......7........1..4..6..........2..1........3..1.7........28...9....3..
+...64...52......7........1..4..9..........2..1........3..1.7........28...9....3..
+...64...58.....2............6.1...7.2.....3...........4...23........8..1.5.....6.
+...64...8.31...................93.7.4.......52........6..8...........13....2..9..
+...64..1.82.................1......3..4.7.........82....5...74.3....2......1.....
+...64..3..15.............2.4..32.....7....9.....8..........15.73..............1..
+...64..3.2.1.........9......4....5.2.6....7.....8.....5...72...8......6..........
+...64..3.529.........8.....38.....7.....91..................2.14..3...........9..
+...64..3.91...................4..56.2....9............5.3.8.......7..1.2......9..
+...64..5.3..2..7..1............71....6.....4..5......88.....1........3.....5.....
+...64..5.3.1............2..7...2.4..8.......3....1.....5.....1....8.9......3.....
+...64..8.513...............8...9..........5.3......4...7.5.3...2......4....1.....
+...64.2...91...............27..8....4......7.........15..1.9.........82....3.....
+...64.2..1.8....3............7.18....6....5...........3......1.4..2......2.5.....
+...64.2..1.8....7............7.18....6....5...........3......1.4..2......2.5.....
+...64.2..1.9....7............7.19....6....8...........3......1.4..8......8.5.....
+...64.2..138...................38.4.5.....1............4.....367..1........5.....
+...64.2..138...................38.4.5.....1............4.....637..1........5.....
+...64.2..138...................38.6.5.....1............4.....367..1........5.....
+...64.3..5.1............8.....5...217...3................2.5....3...1....4....7..
+...64.3..5.1............8.....5...217...3................2.5....6...1....4....7..
+...64.5...13...............7.5..9...4..8.........1.....2.....4......3..18..7.....
+...64.7....5....4..3..1..........1.36.2.......8..........2.5.6.1...........7.....
+...64.7....8....9..3..1..........1.36.2.......4..........8.5.2.1...........7.....
+...64.7..38.2......5.......7.2...3......51............4..7............18.......5.
+...64.9...5................68.5.....7.....3.......1......2...854.3.7...........1.
+...641...2.....7.....5......6...3.5.....7.8...1.......7.......3...4...6.8........
+...65..........23.....1....23.4.............17...........7.3.8..51...3....6......
+...65......9...8.......4....6.12.7..54.......3..........17............49.......5.
+...65...18.....2...7.9......9....75..3...8......1.........4..3.1........2........
+...65...18.....2...7.9......9....75..3...8......1.........7..3.1........2........
+...65...18.....3...7.9......9....25..4...8......1.........7..4.3........1........
+...65...19.....2...7.8......4....75..3...9......1.........7..3.2........1........
+...65...3.1....8...........9......2....51........78...2.64...........71.3........
+...65...4.1....8...........9......2....51........78...2.64...........71.3........
+...65...92..7.....1.........5....7.......1.......8.....6.3.9.....4...18.......2..
+...65..1..2.3.....8.........7....3.2....81............1.5....7....2..5..4........
+...65..1..2.3.....9.........8....3.2....41............1.5....7....2..5..4........
+...65..1..2.3.....9.........8....3.2....91............1.5....7....2..5..4........
+...65..1..3.7.....2.........7....3.2....41............1.5....8....3..9..4........
+...65..1.8.....2..4..3.........715..3.......4............4...63.21...............
+...65..2..81...............5...18...2......9.....4.......3..5.77..9...........1..
+...65..3..21................8....9..7...4..........1.2...2.9...9......4.3..8.....
+...65..3.8.1.........9.....7...82....5.....6.......4..4.....8...6.3...........2..
+...65..7..2.3.....1.........8....3.2....71............7.5....8....2..5..4........
+...65..7..2.3.....1.........9....3.2....71............7.5....8....2..5..4........
+...65..7..2.3.....8.........8....3.2....71............7.5....1....2..5..4........
+...65..8..3....6...1..........4..3.72...8..........1..8.2...........37..5........
+...65..8.31.....4..7.......2.6...5......31............7.......3...5..7.....8.....
+...65.1..2......4.....1....4.......23..7.........8.5.....4...3..5....6...1.......
+...65.2..8......3....1..........4.7..62........1......7...3.....3....1.......8..6
+...65.3...71...............54..3..........21.6...........1.7..4...2.8...2........
+...65.3..8.72......4.......6..3............41.......7.32....5......41............
+...65.7..4.1................2..7...53......4.....8.......3.1....8....2..6..4.....
+...65.8..7..1......3.............51..2...3.......7....5......3.4.......2..85.....
+...653...18....7............43.2.......7..1...........4......329..1............5.
+...67.....8....4...2..1....6..5...2....3....1.....8...1...4..........68.......5..
+...67...51.9......3.....2.....2.3....9......4.....8....6..4..........81........3.
+...67..142...5....3..............2.5.4....6...1..........3.7.8....4.....5........
+...67..2..31....................358.7.......624.......4..7........5..3........1..
+...67..2..31.................8.31..........69.....8...64.7..5........1..2........
+...67..2..31.................8.31..........96.....8...64.7..5........1..2........
+...67..3..5.....2.8....1...1.6...5.....43.......2...........8.1.43...............
+...67..4..1..............6....5..1.24..2...........3..2...3....6.9..........1.8..
+...67..5..1.......4........3..5..8........2.1...9.....5......94..8.1........2....
+...67.1...3......25....4...25.8...........71.9...........52......1...4...........
+...67.1..4.5......8.........1....2.....3.5......8.....3......98.....4.5.....2....
+...67.1.2.......5.....8....4.52.........6.3..9.........1....8.....4.5........9...
+...67.2...15...............24..6........4...3..7....1.3.....4.....8.5......1.....
+...67.2..13.....4..........4...13...2.....6............5.....1...72.......68.....
+...67.2..13.....5..........4...13...2.....6............5.....1...72.......68.....
+...67.2..31.....4..........4...13...2.....6............5.....1...72.......68.....
+...67.2..31.....5..........4...13...2.....6............5.....1...72.......68.....
+...67.3...5........4.............24.1..8........9..5..3...25...7...4...........8.
+...67.3...51.......8..........2..63.7..4.......5....8.....51...2.....4...........
+...67.3..5.8................3.2.......4.....7.....1.5.....589..26.......1........
+...67.3..9.3............1...6.1...8.........4.......9..1....62.....94...5........
+...67.5...7....6...1.......4..1.3...8.....2.....7.....6...2......4....3.........1
+...67.5...7....6...1.......4..1.3...8.....2.....7.....6...2......8....3.........1
+...67.5..4.......1.3.8.....1.5...2..2..3............8.....51....6.....3..........
+...671...23.....5..........7.......4...3..6..8..........1...3......8..7..6.5.....
+...68..1..3........2........5....3.47...6..........2..6..4..8..1..7..........3...
+...68..4..21..........3....73...1...8......9....2..5.....4..1..6.......3.........
+...68..4..21..........3....73...2...8......9....1..5.....4..2..6.......3.........
+...68..4..32...............5.....26..1..3.............8.94........5..3.1......7..
+...68..4.2.......1.........5..2.1......5...8.......3...89.7........3.2...4.......
+...68..4.2.1..................521.3.76................3.....1.7.8.9...........2..
+...68..4.72.................5..12.....8....9....7.....3.....7.2..64...........1..
+...68..9.7..2......3.....1.....5.2...9......7..1......2....3...4.....8.....9.....
+...68.2..1.9......7.........6.2............41.......7....4.1....3....8.....75....
+...68.3..1.6......7.........3.2............51.......7....5.1....4....8.....76....
+...68.3..7.6......1.........3.2............51.......7....5.1....4....8.....76....
+...68.4..9.2......7............29.7..1....3............3.4..5..6......9....3.....
+...68.5..39................7..3.9.........2.6...1......15.2....4......3...6......
+...68.7...13........2.......5.....1.8..2........4.7.......13.5.4.....2...........
+...681...7.....2...........26.7............84...5........34.6...81......5........
+...69....7.....8........3.....24..6.3......1.5.............35...6.1......2......7
+...69...38......2...........3.4..5.......2.8......1......38.4..2.1......7........
+...69..4..73.................65....71...4.2..............7.38..92.......4........
+...69.2..31...............7..4..15..2.....8.....7...3.8..2.............4.......1.
+...69.7...21.......3.......9.....6.4....21............5..7...8........31...4.....
+...7....1..4.2.....1.......6...3.2..89..............4.2.....65...71........9.....
+...7....1..4.6.....1.......6...3.2..89..............4.2.....65...71........9.....
+...7....1..5.3.....1.......6...4.2..89..............5.3.....62...71........9.....
+...7....1..5.6.....1.......6...4.2..89..............5.3.....62...71........9.....
+...7....1..83.....2......6..7.13...........2.......4..5...62....1....7........8..
+...7....1..83.....2......6..7.13...........2.......4..5...62....3....7........8..
+...7....1..83.....6......2..7.13...........6.......4..5...62....3....7........8..
+...7....1.38.......2.......5..1.4...4......3.......62.1.....9......23.......6....
+...7....1.42.......5....6..9..8...........52....3...6.1.......8....5.4......1....
+...7....1.6.....4....1.........4.65.1.....3..7........25......4....68......3.....
+...7....1.6....5..3..8.....2...5.3..4......2.....1.....1....6.....4...3...7......
+...7....1.67.......2.......4..1..7......52............3.....52.1..48...........6.
+...7....1.8....5..3..6.....2...5.3..4......2.....1.....1....6.....4...3...7......
+...7....128........3.......8.15........4..63........2...9...4......85.......3....
+...7....13.....2...5..6.....8....65....1...2......4...1..2.........8.5....7......
+...7....13.8......6............3.62.5.14......7.............28..4.1...........3..
+...7....134.......5............5.63..174..............2...6.3....81............5.
+...7....146..........2.........6.21...85......3.....4.1...43.....7...9...........
+...7....152.................731...........54.6.....2..4...56.....7....8.....2....
+...7....18...2....3.........6.1...5...2...3...........51...8.......3.84..7.......
+...7....18...3....2.........6.4.1....3....58........2..4.6..7..3...8.............
+...7....18...3....2.........7.4.1....3....58........2..4.6..7..3...8.............
+...7....18.2......4..2.........432...7.....5.....8.....5.1...6.3.....4...........
+...7....18.2......4..2.........432...7.....9.....8.....5.1...6.3.....4...........
+...7....183.................5..34...6......2.....9....7.12........4..35.......9..
+...7....19.........5.........41..3...6....85....2.....2...8........3..6.1.7......
+...7....19.........5.........42..3...6....85....1.....2...8........3..6.1.7......
+...7....19...3....2.........8.4.1....3....59........2..4.6..7..3...9.............
+...7....19...5....2.........8.4.1....3....52........9..4.6..7..3...2.............
+...7....19.4......5............5.34..2.1...............7.6.1...3.....49....2.....
+...7....2..5...1.....8.....4....635.27...........1.....13...5.....2...8..........
+...7....2..5...1.....8.....4....653.27...........1.....13...6.....2...8..........
+...7....26...3.....4....8..4.....36......1......2........56..4.12.........7......
+...7....3..1..2....2.....8.34.8...........1..7..........9...24.5..63.............
+...7....3.1.....7.49.............91.3..5........6.....6....3..5....8.2......1....
+...7....3.8.....4...15.....7.....5..3...6........1....23.4...........18.......6..
+...7....32......8....1.....3....5.......2.4...7..8......4...76..5.3...........8..
+...7....32......8....1.....3....5.......2.4...7..8......9...76..5.3...........8..
+...7....38....4..........1.57.....2......96...1..3........2.5..9.....4.....1.....
+...7....38....4..........1.67.....2......96...1..3........2.5..4.....8.....1.....
+...7....4....4.6....1.......8.....1.4...5...........9....2.17..75....3.....9.....
+...7....4...3...8..1.......5.....1.67..8...........2..4.7....3.....21.........5..
+...7....4...5...2..6..........36.7..2.......61..........4.82....3....5.........1.
+...7....4...6..7....1......3.....21..8.4............9.75....6.......9.3.....1....
+...7....4.2.....5..1...........2.1..9.......34...........38.2..7..4...6.......5..
+...7....42....8..........1..14...........29...6..9....3..6..8.....15..........2..
+...7....438................26.....3.5...4.......17......14...........28......63..
+...7....5.6..1.....4...........4.61.5..2.....3.....4..7..5.3........2.........8..
+...7....5.62.......1....3..9..8...........13....4...2.5.......8....2.6......1....
+...7....52..4...........6......6.4..7......2......1...43..5.....6......1...2...8.
+...7....53..8...........6......6.3..7......2......1...43..5.....6......1...2...7.
+...7....54.....3..8.........1.5..2..6......4......1.......4..8..5..3.....7......6
+...7....6.8.....3..4.2.....5..1....2.....84......3....7..5.....6......8.......2..
+...7....648.............1.......2.8...69.....7.....3..82.....4....67........5....
+...7....648.............1.......2.8...69.....7.....3..82.....4....68........5....
+...7....8.5..3...........2.2.8....4.....6.5.......1...7..4..3...6....1.....2.....
+...7....86...1....3......5.1...6.2...8......4....5..........63....4.9......8.....
+...7....9.23.......1............342.6.......5....1....5.76...........31.......8..
+...7...1...23......4..6........2.8..1......3.5....1.........2.43..5...........6..
+...7...1...6.......4.......7..5.1.....8...4..2...........24.6...3..8....1.......9
+...7...1..24......5.6......37.....8.....64.......5....6.....4.9...1...........2..
+...7...1..24......6.5......37.....8.....45.......6....5.....4.9...1...........2..
+...7...1..28.......9.......5.64.3.......2....7............4.8.23..1...........9..
+...7...1..3....4..5............34..96......8.....2....7.18........4....3......2..
+...7...1..35.........2.....1..9.......7...2........4.3....346...4..8....2........
+...7...1..4.8......6.......2..5..6...3....4...............345..7.......21...6....
+...7...1..5..6....4.........6....5.3..81........4..6..2....5...1.7..........3....
+...7...1..5..8..............8....5.24..3.1............3.74.........2.8..1.....6..
+...7...1..5.8............2...83.45..19....6..2........6...1.....3....8...........
+...7...1..5.8............2...85.43..19....6..2........6...1.....3....8...........
+...7...1..6..8.....3........4..6.3..2..1..............1..5.2.......3.8..7.......9
+...7...1..8........2.......5...3.7..1......4.....85...6.41........2....8......3..
+...7...1.2........9.........5..3.6....7...2......9.....83....5....2.94.....1.....
+...7...1.2...8.............5...9.3....1....6.......8..3.....5.9.7.6.1......4.....
+...7...1.2...8....6.........4.1....53...6.2............1.5.4.......2.3...7.......
+...7...1.2.5......3..........4.....7.1..6.........25..6.....2...8.1........84....
+...7...1.3........6............2.3.8.5.1...........6..51..6.....7.4..........34..
+...7...1.3.......9...8.2...6...1..........8........7.....14..6..7....2...85......
+...7...1.3.2......46........1..8........3.2....5......2.....3.....5....8...1.9...
+...7...1.4........9............4.6.2.1.3.9....7.......5.....8......6.4...3.1.....
+...7...1.43........5.......6.81........6..2........3.9....25...7......4.....3....
+...7...1.43.......8...5....2....68.....1....2...3.........8.4....1..2....7.......
+...7...1.6....5............5..13....2.....5.9....8.........46...1.....3..98......
+...7...1.6...3....2........84.9...........2.....1.........2.6.3.1..5.....9....8..
+...7...1.63........8.9.....5..2.1.........4.8......6......6.8..1.2......7........
+...7...1.83.......4...5....2....68.....1....2...3.........8.4....1..2....7.......
+...7...1.9...5....2.........314.........2.5............6.1.3...5.8...2........9..
+...7...1.98................1.7.4..3...652.........8....2....8.4...1...........9..
+...7...1246...................5.84...2....6....1......8.....53.....26.......7....
+...7...132.6...................295........2.9.1.......5.....67....314............
+...7...137..48...........5.91..........2..4...3.......4...9.2......51............
+...7...16.......5.4........2.4...3.....1..8.....5.....6...4.2......3..7..1.......
+...7...163......5.....3........4.2....6..5....1.......4.....9.....2.1...8..6.....
+...7...2........36.1...........4.1..8.3......2.....9..9.....4.....51.......6.3...
+...7...2........49.3.......5....43...6....1......2.......63.7..2.9.........8.....
+...7...2...1.4.....8....3..3.7....6....1.8...........452..9....9..............1..
+...7...2..3..............5.2...58....8....4......6.3..1..3........4..7..6.5......
+...7...2..3..............5.2...58....8....4......6.3..1..3........4..9..6.5......
+...7...2..3....6....1......7......4.....3.1...5.6.....2..4.7.......5.3..........8
+...7...2..3....6....1......7......4.....3.1...8.6.....2..4.7.......5.3..........8
+...7...2..5....4..6........2......8.....35.......1..7....6..5.17..4...........3..
+...7...2.1.....4...........4.6...1.....38...75............54....2...1....3.....8.
+...7...2.1..3.....43........57...8......21............8...9..........6.3.......75
+...7...2.1.3......4.........782...........3.1...6.....5...39....6....94..........
+...7...2.3.5......6...1.....4.....9.....3.1....2......1...5.3...8.2........4.....
+...7...2.3.5......6...8.....4.....9.....3.1....2......1...5.3...8.2........4.....
+...7...2.41..............3..6....4....72........3.........4.15.8.2..........8.6..
+...7...2.61........3....7..4..2..5........8.3........92......6.....19.......3....
+...7...2.63..........1......6....4.3...28........1....1.7...5.......43..2........
+...7...2.8.....6.....1.......75......3....8......6.4......2..174....3...........5
+...7...215...3...............2..8..4....4.9...1.......4....15.....2...6.......3..
+...7...236.1...................416..5...6.....2.......43.2...5.......4...8.......
+...7...238.1......4........5..6..1...8.2..........3....2.....6.....4.5......1....
+...7...3........42.4...8....5....8......4.......3.....7.3...6......651..2........
+...7...3....58....9........1.....9.2.4.86..........3..7....2....5.....8.....9....
+...7...3...1.......9...........925..3......6...........5....9.27..46.......3..8..
+...7...3...1......8........5.6.1........3.7..4......2.......6.1.4.2......7...5...
+...7...3...2.......8.........1.62.........47.........85...4.1..37.5...........2..
+...7...3...6.......8.........1.62.........47.........85...2.1..37.5...........6..
+...7...3..1....6..3..2.......7....2.....81....4.......5.....1.8..25...........4..
+...7...3..12.......6....4...4....6..3..8........5....88......5.5...6........1....
+...7...3..2....6...1..........51....3......9.....7.........61.28..4.....7.....5..
+...7...3..4....8...1..........3....5.......472............146..7.....2..5...8....
+...7...3..6....5.....4......2..9........5..4.3......1.4..1.8.......6.9........2..
+...7...3..9.1......4....6..7..2..5..1..............4....8.3..1.....64...........9
+...7...3.14.......6..2.......73.5.......4...1.........51..6..........87.......2..
+...7...3.2.....4......5....65....2.....1...7....3.........246...7.....8...1......
+...7...3.4.5......1...5....6..51..........28....4...........4.1.7...8....2.......
+...7...3.8.....5.......1...2...8.6.....3...7........4...1.5.2...37.......4.......
+...7...3416..8.............3.42.........5.1...........51....6.....3...2..8.......
+...7...3479..5...........6....4.6......8..2..1.........2..1.5....6..3............
+...7...38.1.....2...............85.47...2..........1..3.2.........1..4..6..5.....
+...7...4........583........6...2.3......5.........8...15.6........3..9...87......
+...7...4........586........3...2.6......5.........8...15.6........3..9...87......
+...7...4....5..6....1......3...12.......3...........8......62.1.7....3..58.......
+...7...4..15.......8.......7.....43......1.......8........5.2.13..4..6.........7.
+...7...4..3....8..62..........4.3...2......1....8.....5...6.2....4.....8....1....
+...7...4..4....9..2...8.....591.........6...2....3..8.7..5..1..8.................
+...7...4..9.5......1.......6..2.7...4.....8.9......1....3.9....7......2.......5..
+...7...4..9.5......1.......7.4....5.6....28......1........9.3.15................2
+...7...4.5.1...................5..61.2.4.......7.......4.2..7..3...6.........18..
+...7...4.6.....2..5..........3....1.....65....4...........74..3.8.1.....2.....5..
+...7...4.6.....9..5..........3....1.....65....4...........74..3.8.1.....2.....5..
+...7...4.8.2......1.....3...5.3.....4...9............1.6....73..7...1.......8....
+...7...4236.......5..........4....9.....5.6......1.....8.9.2...6.....1.....4.....
+...7...4265.2......1...........183..7......9.....5.....8....1..2..4..............
+...7...428.19............6..4...2...9.....1......6.....2..7.......8..3..5........
+...7...43.21................6..291..3..5....7.........5..3...........62.4........
+...7...46....3..1..............5.3.287.......4.........32...5.....4..2.......1...
+...7...491.2.............5.....2.1.8....8.3...9..........5.4....4.9.....8........
+...7...493...1..............74.....5....3.2...........2.....13..6.4.5.........8..
+...7...5...4...2...8........23...4..9..1..............1....8.9.6...3........42...
+...7...5..2......4.1..........16.2..7..3.......4...9..8......3.5...9........2....
+...7...5..23.......1.....8.5..1..2........3.6...8.........624..1............3....
+...7...5..49..................34.9..68.5...........1..5......8.2...1........92...
+...7...5..8..4......1......7.....62....91....2........56.3...........1.8......4..
+...7...516..9............3....6.74..85........3...........34...2.....6......1....
+...7...538..2.....4.........7.34..........81...........5....2.76....1.......8....
+...7...583...1..............56.....7....4.2...........2.....14..8.5.6.........3..
+...7...583...2..............56.....7....4.2...........2.....14..8.5.6.........3..
+...7...593...1..............75.....4....3.2...........2.....13..6.4.5.........8..
+...7...6...5...2...8........23...5..9..1..............1....8.4.4...3........52...
+...7...6..4....1............21...5.....8...7....6.........142..8......3.7...2....
+...7...6..4....2............21...5.....8...7....6.........241..8......3.7...1....
+...7...6.3.......4.2.........8...24..5..3........1....1.....3..6..4........8....5
+...7...612..3............4.3.....59......1.......6.....57...8...6..4..........2..
+...7...612..3............4.7.....58......1.......6.....53...7...6..4..........2..
+...7...62.31...............6..2......4....3..........9....451..9...3....2......8.
+...7...62.51...............6..8.9....3....1...............1.59....23....7.....4..
+...7...623..4.................1.34..56......8..2......4.....51.....6........5....
+...7...683.1................6.8.1...5......3.......2..2...15....4....8......3....
+...7...684.....1....59......8.1...3.2.....5...............52....7......6....4....
+...7...684.....2....59......8.1...2.3.....5...............53....7......6....4....
+...7...8...1.4.....9....3..3.7....6....1.9...........452..8....6..............1..
+...7...8..3....6....5.1....1...95.........32.......4..68...3...........1...2.....
+...7...8.3.5........2......78.4...........2.3......9......315...4.....6.....2....
+...7...8.5.....4..1.4......3...4.1...6.2........8.........51....8.....2...9......
+...7...8.5...6....1.........83....4.....2.5.1......6...4.8.3.........2.....4.....
+...7...815.....2....69......8.1...4.3.....6...............63....7......2....5....
+...7...82.51...............6..8.2....3....1...............1.56....23....8.....4..
+...7...82.51...............6..8.9....3....1...............1.56....23....8.....4..
+...7...84.31...................615..84.....3....2........43......6...1..2........
+...7...84.35...................516..84.....3....2........43......1...5..2........
+...7...845.1...............74......6.....35...8.......2.....13....46........8....
+...7...846.........5.......2.....31.1..5..6.....4.........1.2...4..3.....7.......
+...7...85..4..8....1.....3.....164...3.......5........7..2..6........1......5....
+...7...856......3.1..2......8.4.3....5......6......1..2.....4......6........5....
+...7...8914..............3.....1.2.6....6.4..8...........3.9...9..8......6.......
+...7...9.....8..5..1.......7...2.6....9...1..........42.....73....1.4......5.....
+...7...9...5...2...8........23...5..9..1..............1....8.4.6...3........52...
+...7...9.3.............4....249...........3.5....1....7..8..4..5...3.....9.....2.
+...7...9.45........3.......6.91........4..2........3.7....35...8......4.....2....
+...7...9.52........1.8.....3.7....4.....1..........3..6.....1.2...4.9.......5....
+...7...946.1...............3.....21....9.4...2............635...9......8....1....
+...7..1.....53..........6.2...1.2....3....4...4.......2...8..9.1......5...6......
+...7..1.....53..........6.2...1.2....3....8...4.......2...5..4.1......5...6......
+...7..1.....83..........6.2...1.2....5....4...4.......2...7..8.1......5...6......
+...7..1...3.4.....85.........41............8........2.2...8..5...7...4......5.6..
+...7..1...62................3.2....6.5.....3.1..4.....4.....28.....65...9........
+...7..1...8.....4..........6..2.9..........837........1..5..2......8...7.3..4....
+...7..1...9..3.....6............6.924..5.....1..............36....42.........89..
+...7..1..2..3......3......65.7....3.4...1....9...6..........92..1..........4.....
+...7..1..3......5............725.........8.3..9....6.....4..7.183..2.............
+...7..1..4....8...36.......2.7...5......36....5..4...........42...1............6.
+...7..1..53.......8........2...35.....61...............7....6.1....8..5...14.....
+...7..1..6..2......4.....5.......7.1.3..4..........2....218....5......34.........
+...7..1..62.........3....5.7.......9....8..3.1..4........15....4.....7......3....
+...7..1..69........5.......2.4...7......8.2.....39....1..6............85.......9.
+...7..1.28.3............7...6.2.1...3......85.........4...8..5.......2......3....
+...7..1.31.....6...8........2.....856..3..................28.4.3.1..........5....
+...7..1.328..4....5..........1...6.74...2..8................42......1......3.....
+...7..1.45..6..............4......56.....23......1.....1....2..3...8.......4...6.
+...7..1.53.2.8..........4......3..9..1...................1.56..8......2.9..4.....
+...7..1.68.4......3.........1.6..2........53...........5.....8....2.1......43....
+...7..1.83.2............2......43....81..........9....45.....3.6......9....1.....
+...7..1.982...................1.93..58.....2.4........3.96.........5..8..........
+...7..15.8...6..........4......3...6.4.....2..1.......3.2.........1..5..6..4.....
+...7..18.5..3................7...41.....5........2.......4.17..25......69........
+...7..18.5..4................7...21.....5........3.......1.27..35......69........
+...7..2........5.4.3.......78.....3....94........2.........1.8.26.......5.4......
+...7..2.....3.6....1.......8..6....44......19.......5.3.....7...5..9........1....
+...7..2.....3.9....1.......3..6....44......18.......5.6.....7...5..8........1....
+...7..2...2....3..4...6....6..8...4.5.1.........3..1......5..6..3........7.......
+...7..2...3........5.......8..9.5...2......1....6...3.7...4.5.......39......1....
+...7..2...3..9..............9..83.......4.6..1........6..5...3........987..1.....
+...7..2...4....8..6........1......6......2..3....4..5...2...4...3.6........17....
+...7..2...5.....8....1........3...9.2.6......7............6.7.2.8..4.........21..
+...7..2...54.......3.......7.....1.28...3.......6.5...1..2..6......4..5..........
+...7..2...54.......3.......7.....8.29...3.......6.5...1..2..6......4..5..........
+...7..2...6.4......58......1.....7......86..........3.7.21............56......4..
+...7..2...65.......8...........65...2.....7..........13..17.......3...8.......46.
+...7..2...8....3...4......52...3.7......46...9..........1....46...3............8.
+...7..2...81...............5.....9......16......4.8...2..3...6.3...5...1.......8.
+...7..2...9.3......1.......6.....4......9.........5......41..397......1.2.......5
+...7..2..3.......6...4.....81...3..........4.......7...2.61......7...53........8.
+...7..2..38........14.........531.4.2.7...6..................316..2..............
+...7..2..6.3......1.....3..5.......1...2...7..8.4.....3...5.....2....4......1....
+...7..2..6.3......1.....8..5.......1...2...7..9.4.....3...5.....2....4......1....
+...7..2..7..3.............426..........8..3...4.....9.5...6.1......49.....3......
+...7..2..8...5....1...........48..5..72...6...3..........6.23.........1.........8
+...7..2.15.81......3...........38.5.2.....7...............4.68.1..2..............
+...7..2.16.4..................17.3..5......4.8............35.6..2...4....1.......
+...7..2.169.8.....4........8......9....23..........76..12..........86............
+...7..2.3..1....6..........7..2.....6......1........4.25....7.......19...8..4....
+...7..2.41..8.....3.........7.2..5...4..6...........1.8...3........19.........4..
+...7..2.518.4...........6...52.6.......1...3..........4......1.....2.8..3........
+...7..2.518.4...........6...52.6.......1...7..........7......1.....2.8..3........
+...7..2.518.4...........6...52.6.......3...7..........7......1.....2.8..3........
+...7..2.538.4...........6...52.6.......3...7..........7......1.....2.8..4........
+...7..2.539.4...........6...52.6.......3...7..........7......1.....2.8..4........
+...7..2.589.4...........6...52.6.......3...7..........3......1.....2.7..4........
+...7..2.589.4...........6...52.6.......3...7..........7......1.....2.8..3........
+...7..2.589.4...........6...52.6.......3...7..........7......1.....2.9..4........
+...7..2.6.1.............9..6..42....5......18.......3.7.96.........18............
+...7..2.6.7..8............52..3.5....4.....8......61..6.1..........5..4..........
+...7..2.635...............7....32.9..41..........8....2.....83....4.6............
+...7..2.8.1.............6..7..42....5......19.......3.8.46.........19............
+...7..2.8.1.............6..7..42....5......19.......3.8.76.........19............
+...7..21..89............4..2..4..7......58...1............6..58........3...2.....
+...7..21.4..6..............1.....6.4.85............7......53.8.62...........1....
+...7..23..1..........3......6..45...2......8.....1........6.1.53..8.....9........
+...7..23.1.9......4..8......2.....8.....9...4....1.....8.6...........5.9......7..
+...7..24..61.........5......8..69...5.....3......1....4..2...3.....8...6.........
+...7..24.6.1............3..32....4......18...5...6.....4.2............6.........8
+...7..25.1.......4...2.........4.6.1.57...............4...81....2....73..........
+...7..25.1.......4...2.........4.6.9.57...............4...81....2....73..........
+...7..3.....5.2....1.....6..84.6............1......2..2.7...5......8..4.6........
+...7..3....1......8........23.6......6.5....1.......4.....48.7.5.....2......1....
+...7..3....24......5.......39.1............657.........8..26...1.....9......5....
+...7..3....8..6....1.............91.3..2.....2........4..59..........68.....4...1
+...7..3....8..6....1.............91.7..3.....2........4..59..........68.....4...1
+...7..3...2.3.....41.......6..2....4.......85.......1...4..8...7.....2......1....
+...7..3...2.6........5....4.8..1.6......9.........4.........82.9.....7..4....5...
+...7..3...2.8.....41.......6..2....4.......95.......1...4..9...7.....2......1....
+...7..3...24.........1.........8...55.....7......4.....8....64......1.9.2..5.....
+...7..3...46.........1.........8...56.....7......4.....8....64......3.9.2..5.....
+...7..3...51........9......7..9.3....6......5.......1.4....62......8.9......5....
+...7..3...6.......1.........4.....51..78..........3...5...16.........82.....4.7..
+...7..3...6......4..1.........2...867..1.....3........5.....7......6..1..8..4....
+...7..3..1.2......6.........37...4.....51........6..2.2......1..4.3...........8..
+...7..3..2.1......4.....9..6......2....8...4....3....5.3....8..5...2........1....
+...7..3..3.......8.6.4........64..7.8.....5..2............8...2.7.....4...1......
+...7..3..4........1.............17......8..4..3....2..57.....1....63...9...2.....
+...7..3..4.....6..2.........3.5..7..8....4..........9..7.13...........48..5......
+...7..3..5.....2...8..1.....6..8..4.2..3......1..............813..5.....7........
+...7..3..5...2....1............1.65..83............2.....3.8..44......1....2.....
+...7..3.1.4........5...........6.24.1.5...............3.....46....28.......5....3
+...7..3.14.....7...8........2.....867..1..................28.5.3.1..........6....
+...7..3.2.51...............4..23.8...6.....1..........7...46.5......5...2........
+...7..3.24..................3.12.........5.4.6...........23.7..5.4....6.8........
+...7..3.28.1.6....9..........4...7...2....5......8.....5.2.....6......8........1.
+...7..3.8.14................95...6.....2...4.8..3.....2.....8......49.......1....
+...7..3.85.................1.6....5.4..2..........3..7.8....2...3..6........1..4.
+...7..31.42........5..........354...6.....9.............18............54......6.2
+...7..31.5.46.....2........4...5.8...6....1......2.....3.1.....6.......5.........
+...7..32.4.1...............6.....4.1...2.8....7........3.....8....54........16...
+...7..34...28......1.......3..91..........6.2.......5.7.....9.......6.8.....2....
+...7..34.28................5...21.....7....3.....8......34..1...1......26........
+...7..35..1..........9.....2.3...1.48..6...........7......47...5......6.....1....
+...7..35..81.............4.5..64....3.......8......2..62..........18........3....
+...7..38.14.......5.....6....326...........51.........4....5......3..8...2.......
+...7..38.5.1.........2...........5.6.7.4...........9..3...56....8..1..4..........
+...7..39..6.3......1...........68.5.3.....8......1..........4.69..2.........4....
+...7..4...3.....6..15......8..2.6..........31.............1..5.4.....6.....4..2..
+...7..4...6....2......1.....8.4...6......9..3.......1....2..85.1.3......9........
+...7..4...6.3......1......5.....46..8......1.3..5.....2.....5....7.8........1....
+...7..4..2.6......1.....8..6......1....3.8......4.....5...2..6..4....3......1....
+...7..4..23.......9...........1.46..3...............5...4...72....59........3...8
+...7..4..3......6............726.........8.3..1....5.....5..7.183..2.............
+...7..4..5..3.....1.........7.2.8.....2....5........61....63....9....7......1....
+...7..4..5.8........1......3.....7.2.4.6.........1....82.3...........61........5.
+...7..4..5.8........1......3.....7.2.4.6.........1....82.3...........65........1.
+...7..4..5.8........1......3.....7.2.9.6.........1....82.3...........61........5.
+...7..4..6...2.......8...3..8.3.....5.....6..........1.32....7.....615...........
+...7..4..8..2.....5.........46..5....7.....2.....3......217..........5.3......8..
+...7..4..8.1......2.........9....3.6.4..3.......82....7......2..6.9..........4...
+...7..4.2.8....5...............81.6.72...................35.8..4..2.......1....7.
+...7..4.21..9.....8........5...1.3...4...52......8....3......1..6.3..............
+...7..4.27...3.5..............4.28..13.......6.........4.5.........1..6........1.
+...7..4.28..3..6........1..25........14.........9.....3......7.....4..5.....1....
+...7..4.8..1....5.2..3.....6...5..1.3.....9......8.......2..3...8........7.......
+...7..4.82.1...................12.5.38....6......9....5......2..4.8..........6...
+...7..4.82.1...................21.5.38....6......9....5......2..4.8..........6...
+...7..41.2...8.............6......23..7.....8.4.5........4..1..3...2....8........
+...7..41.6..8..5...............12.9.3.8......5.........1....2.....3....6....9....
+...7..42..6.8......1.......4.....6.85...39.........1..3......9.....2.......6.....
+...7..43.1.9......8.........3.....2.....9.8......1.....5.2....64.....1.....3.....
+...7..45...2...1...6.......3......864..1..............58..6.......21..........7..
+...7..45.8....2.............436......5..1...8.......2.7..3..6..2............4....
+...7..46..31..........2........83..16.....7...5.......2.......34..6............5.
+...7..49.6.53......1.............8.7...2.............5....5..2.7...1....43.......
+...7..49.6.53......1.............8.7...2.............5....5..2.7...1....93.......
+...7..5......4..8.1.........6..83...5.....1.2......9...485........2.......3......
+...7..5....6...7...1..........6...187..2............3.5...3.4......19...2........
+...7..5...1.8.......6......7...6.2....5..1..........7.2..35.....4.....8.........1
+...7..5...9....2...3..8....6...1..4.7.2......5...............31...5.2......9.....
+...7..5..1...4.................8..12.563...............3.5..6.72...1..4..........
+...7..5..28................5.7...3.....62....3...1......43............81.6.....2.
+...7..5..3.1................2.5.7......6...8........3.8...31.........2.64...9....
+...7..5..4.......192.........5...6.....4...2.1..3.........6..8..4..2..........1..
+...7..5..64........2.......1..3............86.......4.5.3...7......8.1.....2.4...
+...7..5.3.41...............8..3...........42.5.........2..4.61.3..8....7.........
+...7..5.3.46............1......6.24.3..5.....1........5....2.......4..8....3.....
+...7..5.98..3.....4.....1......6..8..9.5......1.............92.3...8........4....
+...7..51.63.................8..63.........19.....4....4.....6.3..91.....2........
+...7..51.83................2...6..4.1.5.3.........9....9....3.6...1.............8
+...7..52...623....1........3.8.....1.7.5..............45....7......81............
+...7..52.8..9..6..3............3.1.8.5........7.......4.......3...5...4.....1....
+...7..52.8..9..6..3............3.1.8.5........7.......4.......3...5...9.....1....
+...7..52.86.......1..........75..4........1.......6...2......68...34...........3.
+...7..53...6....1.2...4........9.4.2.31...............4..6..8.......1....7.......
+...7..53..2.4.......8......61....8..5..3.........2....3.5....7......1.......8....
+...7..53..21...............6..5..7..3...6.4...............82..174..............2.
+...7..53.2.8.......6....7......23....14..........6....3.......28......5....1.....
+...7..54.2...........4.....6.5...2..7.......3...8......14....8.....32....9.......
+...7..58.63.................5..63.........21.....4....4.....6.3..81.....2........
+...7..59.83.......4...........28......9...1......4....2..5...6..4......8.....1...
+...7..6...24.......8.......6....41......2...7....58..........28...3...5.1........
+...7..6..2...4....1.........7.5..36.....1..........8.....6...21.9...5...........4
+...7..6..8.2............1...1....4......8..3.5........3..5.1......4...2........89
+...7..6..8.2............1...1....4......8..3.6........3..5.1......4...2........89
+...7..6..98...................6.51..3.....7...9.........148........3...95......2.
+...7..6.2.81...............4..2......3.....1.6.....7......13.5.2.......4....8....
+...7..6.2548....................134.2..3.....6...........65.....1.....8.....2....
+...7..6.3......7..8........51.....4..4....2.....3.........54.1...7....8...6......
+...7..6.4.15.........2..9..6..9.....7...8...........1..3..14.........2......5....
+...7..6.8..9...5..1..2......8....4......18...3...9....46..............1....4.....
+...7..6.8.7.3.....6.....2.....5...4.2.....8..1.........4.....35....21............
+...7..61..2.9..............7.6.8..4.1............2.....5....8.2...6.1.........3..
+...7..61.7..3...........8..3.....4.5....1....2...........5...23.6..8.....1.......
+...7..62..43.....1............5.31..48.......6............84...2......5.....3....
+...7..62.9..3............1....8..3..24........15...........5.4.3.....8......1....
+...7..63.1.82.....5.........3.....4.2...5........1.....8.6..2.......4..1.........
+...7..63.1.82.....5.........3.....4.7...5........1.....8.6..2.......4..1.........
+...7..64..51..........8....8.....7.......43......1.....6.....152..3............2.
+...7..64.5.1......3......8..4.2..5.....69..........3......31....2......9.........
+...7..8....9...3.......1..........17..6.3...........4.5...6.2..31........4.2.....
+...7..8....9.1....6........1...62....4....9......3....3.......6...9...4..8.5.....
+...7..8...1..6....4.........5.1.4......5..2........3.76.2.3...........1...3......
+...7..8...2..5....4......6..5..7.......4...1.......3..3.16...........5.2.....3...
+...7..8...6....2...3.4.......4.6..8.....1....7.............1..38..2.....5......6.
+...7..8...94.........2.....7...9.....1.....5.........4..5.41...6.....72.......3..
+...7..8..1.3......65........2.....37...1.....4........2.7...4......35.......6....
+...7..8..2....6...5.........7.3......4.....2.....5.........41.78...2..6.......3..
+...7..8..4....6.........2...8.2......3.....6.....5..4.6...2..5....8..3....1......
+...7..8..4.6......2..9.....6....3....8....9......4.....6.52...........43......1..
+...7..8.31.....7.............6..9.4..38..........1....2.....51..4.3............9.
+...7..8.32..1.5.........4.....9...2.4.3.......86..........4.6...1.......5........
+...7..8.35.1............2......65.4.23...........4....6......54.8.3..............
+...7..8.36.1...............13.5.....4...1..6........29.8....7......6.........4...
+...7..8.43......6...2.9........5.24.16.................4.6.3......1..5...........
+...7..82.61....................41..52.8...3......9....3..2.6..........41.........
+...7..83..1..........3......6..45...2......8.....1........6.1.53..2.....7........
+...7..83..1..........3......6..45...2......8.....1........6.1.53..8.....7........
+...7..84...1......9........5.....2.1.3.9...............4...6.3.....2.7......51...
+...7..84.5.1......3......9..9.2..5.....67..........3......31....6......7.........
+...7..85..21...............8..4.7......6...92.3.......3...1.4......9.........2...
+...7..9.....58.....1.......5.2....6......1.9.....3....7..6....4.....41........3..
+...7..9...82.........1............583...............2.74....1....5.2...6.....83..
+...7..9..4....8...1..........3....84...52...........1..5....2......14....9.6.....
+...7..94.6...2..........1......3...2.9.....6..1.......3.2.........9..5..8..4.....
+...7..95.83.......4...........28......9...1......4....2..5...6..4......8.....1...
+...7.1..........42.3.......2...6.......3..9..8.4.........13........24....7....5..
+...7.1..........52............6..91.32..5....8.........41...7..5...2...3.........
+...7.1..........586......9..27...1...3.4.........8.......6..3..8...5....9........
+...7.1..........83............63...2.51...4..............1..75.24.......3...8....
+...7.1.........24.8.....6...715.........3.46..9..........3....14...8.............
+...7.1......5...4........89.48.........2..6...1....3..3...5.1......8....2........
+...7.1....2......46.....9...5....13..6..4...........7.3.1......7..8.........5....
+...7.1....2....5..............32.6..1...5.4..8........6......87.3.4............1.
+...7.1....3....4..2........5...6.3....1....8....4.......75...1..8..4........3....
+...7.1....3....4..6..5...........9.37.....8..1........5..2...7..8..9...........1.
+...7.1....5.....2..........1.3...4.....86..5....2.....4.....7.1.6..5..........3..
+...7.1....5....2............4.52...6.......1.....8....1..64....7......3.3.....8..
+...7.1....5....3..............4..6.782..5..........1....7....2.....3.5..4..1.....
+...7.1....6.....2..........1.....7.5...42........6.8...2..4..5.9..3...........1..
+...7.1....6....3..............4..5.782..6..........1....7....2.....3.6..5..1.....
+...7.1....63.................4.6.5.....23..6.1........5.....1.8.2.3...........4..
+...7.1....83..................2...3846.1.............91.....25.5...8..........6..
+...7.1....83...............15.4.......6...2........3.8...63..5.4......7.....2....
+...7.1....9......5.........1.7...8.....23....6........52..9....4.....76........1.
+...7.1....9....5............3.58....6......7.....9....7.46...........9.21.....8..
+...7.1...2.......9.............5..73.18.........4.....5..34.....6....81.......2..
+...7.1...2.......9.............5..73.81.........4.....5..34.....6....81.......2..
+...7.1...28........4.......6...2.31...54.............23.1...5.....28.............
+...7.1...3......6..............6..38.7.2.......5.......1.5..7.49...3..........2..
+...7.1...3......6.......8..5..4....14..63..........2...18..........9..3..2.......
+...7.1...3.....2..............32.6...41....5...........5.....748..6.........3...1
+...7.1...3.....2............4.....8..5..6........2...66.9...3..2..1........4...7.
+...7.1...3.....9..8........56....4.....1...3....2......12.4........6.8...7.......
+...7.1...36........2.........8...3.6..14.........6.2..8...3.......5...4........7.
+...7.1...4......2.53...........3..4..7.........8......3..25..........1.8...6..7..
+...7.1...4.8......9........63.5.........4..89............2..6...7....3....4.8....
+...7.1...5.......6.............6..35.1.4......7.2.....6...8..........24.....3.1..
+...7.1...5.......6.............6..85.1.4......7.2.....6...8..........24.....3.1..
+...7.1...5......2.............3..1.72..65....8..........7...4...3..8........4..5.
+...7.1...5......2.......6...47.........8...3..1.......6..32....3...5...4......1..
+...7.1...5......2.......8...47.........8...3..1.......6..32....3...5...4......1..
+...7.1...5.8...............17......3..5.8..4..........31.6.........4.85.......2..
+...7.1...6......8.5......2...72..4......6..5..3........5....1.3....8..........7..
+...7.1...6.....2...............5..813..46...........7..8..2.....15.........6..4..
+...7.1...8......3.............48.....12........7...5.....6..2.753..4..........1..
+...7.1...9......3.............45.....12........7...5.....6..2.783..4..........1..
+...7.1...9......3.............48.....12........7...5.....6..2.783..4..........1..
+...7.1...9.....4...............5..813..24...........7..8..2.....15.........6..9..
+...7.1...98.............2.....1...9.....5..3...1.......4..83...2.....1.7......6..
+...7.1..38..9......4.......1.3..........2.5..9.....6...7.64...........1........9.
+...7.1.3..5....6...........7.42........4..8..3.....5...8..5...........74....9....
+...7.1.8.3.......6.........96..3.......5..17.......2...5..6...4..1...........2...
+...7.1.8.3.......9.........96..3.......5..17.......2...5..6...4..1...........2...
+...7.1.8.9.....4.....3.........5.9..5.....6...7.8.....6...9.........2.7.........1
+...7.12...85..................25......4.8....3.....1..72.6............38.......4.
+...7.13..9.......2...8.....4...5.6.....3...1.2.........1.....8.....49.......2....
+...7.14..65.............1.........82.4.3.........8..5.2...5..6....9...........7..
+...7.16..5...8................6..7.12.8.9....4............2..5..7.3............8.
+...7.16..9...8................6..7.18.3.9....2............2..9..7.4............8.
+...7.18..293...................5..341..2............9.6.....1...4..3.......8.....
+...7.18..293...................5..341..6............9.6.....1...4..3.......8.....
+...7.2.......3..8........1..2.3..6........7......1.......4..3.21.8.5....9........
+...7.2.......3..8........1..2.3..6........7......1.......4..3.28.1.5....9........
+...7.2.....4....5....1.......6.4.89.71......23........12...........9.4...........
+...7.2...6.....2.....1......72...1......8.5...4.......8...6..3....2....4.......7.
+...7.2...8.....6.....3........1...352...4...........7..54...1......6.2...3.......
+...7.2...9.....2.....1......72...1......9.5...4.......8...6..3....2....4.......7.
+...7.2..4...6...2.1........5...1.3..2.......7...4.........8.15..76...............
+...7.2..58......4..........6...5...3...1..2..1..4.........6..1..32............7..
+...7.2.3.8..1.....5.....9...7.3.........6.5...........6.9.4...........71....5....
+...7.2.5.84.....3.1........4...3.8...6.5...............256.........8.1...........
+...7.23...41...............2..6..7..3...4..............5..1..648..3............7.
+...7.23...8.....6...........5..86...6.....7......4..........1487.23..............
+...7.24..6.1...................1..368.......5.2........7.3..24.5...6.............
+...7.24..6.1...................1..868.......5.2........7.3..24.5...6.............
+...7.26..1...........4........1..4.23.8.5....5.........4....2......3..8.6........
+...7.28.....9..4.2.3.......9......61..85............3.4.....9......1.....1.......
+...7.28..4.9...............3...4.....7....9......1....1......43...9...5....6....1
+...7.28..5.1...............6..51.....7....2......8.....2.4.....3......1........56
+...7.3..........684..........35..2......6..........7..68..5.......2..31..4.......
+...7.3....8....4...5.....2....18.2..6.....9..3..........1....67.......3.....9....
+...7.3...1..6............4.4..21..........3.6.9...........5.81.26............8...
+...7.3...1..6............4.5..21..........3.6.4...........5.81.26............8...
+...7.3..2.65.........4.....34.1.....2...6.5........9....9.8...........4........3.
+...7.3..2.65.........4.....34.1.....2...6.8........5....8.9...........4........3.
+...7.3..2.8.....4..........7.25.........4.8.........1.6..3....5.1..8..........2..
+...7.3.2.4.5...6..9.........3.2..8.....1..4...............5..9.6...4............1
+...7.3.6.5.....2...........25.4........3...871............2.5...67..........4....
+...7.3.8.5.....4.....1........9...5723.......4............5.2....7.8.....1.......
+...7.32..9....................2..3.71.9.8....4.........3.6..5......1..9........1.
+...7.35..1.....8.....4.........2.1.6.3.6......7.......2...15..........4........3.
+...7.4....5.2......3....1......3.65.2...8....7........4.......7....6.5.....1.....
+...7.4....5.2......3....8......3.65.2...1....7........4.......7....6.5.....1.....
+...7.4.1.2.....5..3.........4.....7....82......1.......7.4.........5.2..8.....6..
+...7.4.2.3.....9..6.........4....87....16................9..6.1.2.4...........3..
+...7.4.2.8...........6.....5...8.....7.....4....9....2....3.5.8.46............1..
+...7.4.3.51........8.3.....2.....1.5...4....6.........6...1....4......7.......8..
+...7.4.3.51........8.3.....2.....1.9...4....6.........6...1....4......7.......8..
+...7.4.3.85....6.....1.....56.2.....2...1...........7.....8.2...74...............
+...7.4.5.1...........5.....3...1.....4.....7....9....2....2.3.8.76............1..
+...7.4.5.3...........6.....8...3.....4.....7....9....1....2.3.8.72............1..
+...7.4.5.8...........6.....3...8.....4.....7....9....1....2.3.8.67............1..
+...7.4.5.8...........6.....3...8.....4.....7....9....1....2.3.8.97............1..
+...7.43...51...............2....3..........65...4.....32....9.....51....4...8....
+...7.43..9....................3..4.71.9.8....2.........4.6..5......2..9........1.
+...7.46...31.............2.....1..837..6......5.......2...3....4.....7.....5.....
+...7.46..9....................3..4.71.9.8....2.........4.6..5......2..9........1.
+...7.46..9...8................6..4.18.3.9....2............2..8..1.4............9.
+...7.486.1...........9.........15....4..8....9.........6.3.....2......9.......1.5
+...7.5..........42.3.......2...6.......3..9..8.4.........13........24....7....5..
+...7.5....6....8.....9.....2.5...7........2.8..9.......8..1..4........953........
+...7.5...8.....4........1...7.....3.....1.6...2..........3...724......5...1.8....
+...7.5..12......4.3..8.........2.3...1.9.....68..........1...7.9.....2...........
+...7.5.2..31...............58.....7.....31.......9....6.....9.42..6...........1..
+...7.5.2.4...........6.....8...4.....5.....7....9....2....3.4.8.76............1..
+...7.5.2.68..........4.....2.....47.3...6........1.....1......6..41...........3..
+...7.5.3.4...........6.....8...4.....5.....7....9....2....3.4.8.67............1..
+...7.5.6..81...4...........6......733..2.........8........1.8..7..3......2.......
+...7.5.6..91...4...........6......783..2.........9........1.9..7..8......2.......
+...7.5.6.4.1.........3.........8.1.437.............2...5.6...7.2...4.............
+...7.5.9.416...................6.2.17..3...........8.....2..4..5......7.....1....
+...7.51..3.....6.....4.....6..18..4.82..............7.....3.8...75...............
+...7.51..4.....8..9...........2...458...............9...61..3...5..4.....2.......
+...7.53..4.1.............2.2......64.7.3........5.....6...4...1.5....8...........
+...7.56..2......3..8.......34.2..........61..8..........1...5.....43........2....
+...7.6....3.2......1.....4.6.2...7.....8............3.45..3....7.....2......1....
+...7.6....3.2......1.....5.6.2...7.....8............3.45..3....7.....2......1....
+...7.6....4.....8..........6.12...........34.......8...5.38....7.......12...4....
+...7.6....8.2......1.....5.6.2...7.....9............3.45..3....7.....2......1....
+...7.6.3..1....5.....2.......9.1.8..2..............4..6......72...98....7........
+...7.6.8.1...........4.......7...3.1.2.6..5...........4...13.......9.8.........7.
+...7.6.8.3.....5.....1.....1...25..........67....3.....879...........2...6.......
+...7.6.8.54................39..4.......51......6....2.......4.3..71...........5..
+...7.62...41.........3.........18.9.....9...62........6..2......8.....1.......7..
+...7.63...1..........4.....6.2....7.....1..8.....5....3.....1.24..8...........5..
+...7.63...1....5.....3.........1..848......6.3..............75.6..4.........2....
+...7.64...1..........4.....6.2....7.....1..8.....5....3.....1.24..8...........5..
+...7.64..2...........1.........28.6.57................1...3.5....8.....2.4.5.....
+...7.64..9...8................6..7.18.3.9....2............2..8..7.4............9.
+...7.65...4......1...3.........5..243......8.7........6.....3...2.4.........1....
+...7.65...4......1...3.........8..243......8.7........6.....3...2.4.........1....
+...7.658....4..7..1...........92.4..3.1.......8...........13...47................
+...7.8.........6.14.....2..65..1.........3.7.2.........3.....5....46.......2.....
+...7.8...9..1.....2.....8...1.56..........39.......2...7......1....2..4.....3....
+...7.8..34.....65.1.........3..5........4.1...7........2.3.....8.....4.....9.....
+...7.8.4..1....7...........8......3....12....9...5.......5..1.26.3..4............
+...7.8.4..1....7...........8......3....12....9...5.......5..2.16.3..4............
+...7.8.4..5....3.....1.........2.6.57...6....1.............4.7..2..5.......6.....
+...7.8.4.5.3......1...........6..3.5.9.2...........1....8.3...9.7.....6..........
+...7.8.5.3.1................7.....842...3..........5......6.3.2.8.2...........1..
+...7.8.9.3.1................7.....842...3..........5......6.3.2.8.2...........1..
+...7.81.....2.....4.........71.............34.......9.3..54.....1....2..6...9....
+...7.81..62....................6..23..74......5.........8...71....52....1........
+...7.82...3.6......1.......54.....1.....7...32..4...........46.....1....8........
+...7.82..1......4...........8.....2.4...3.......5..7......14.3..75...6...........
+...7.83...1..........3.....6.2....8.....1..9.....5....3.....1.24..9...........5..
+...7.83..1.....7..4...............456......1....2......3.5..2...8.....6.....1....
+...7.83..4......9....2.....3...46.........7.1.............5..3.21........78......
+...7.84..32..........9.....5......32.3.....1....8.....6...1......7...8........9..
+...7.84..5.....6..1........6...5...4.8....3............7.8............12...3...5.
+...7.9......8..3........1.......2.4.8......9.3...1......96...7..4..3.5...........
+...7.9....4.....2....8...........1.43......6.7..3.........3.7...6..4......5...8..
+...7.9..64....................3...951.4.8....2.........9.6...7.....2.4........1..
+...7.9.3.2.1................3.65...8......1.....4.....89...1.......2.4.........6.
+...7.9.4.3...........2.....4...1.....5.....7....9....2....3.4.8.27............1..
+...7.9.5....6...2.1.........9..8.4...6.5.........1....4.....1.3...2...........8..
+...7.9.5.8...........5.....4...8.....5.....3....9....2....2.4.8.93............1..
+...7.9.6....6...2.1.........9..8.4...6.5.........1....4.....1.3...2...........8..
+...7.9.8..45...................2.4.18.73..............3.....27..1..4.6...........
+...7.91..5.2......3........2...3..8....1..9............1.4............52......6.3
+...71..........43.......2...2......5....6.3.......4...4.35........2...876........
+...71.......6....98......4.1.3..4.........7........6..54.2.........6.3...9.......
+...71......2...4...9.......7..5...31.....2.8..........13.6...........2.4......9..
+...71......4....9.5......2......61.3...4...........7..35..8..........24..1.......
+...71......5...8...3..........3.64..2..4.....15..............127..8............6.
+...71.....4.2......3.....8.5..4.8....6....2..........11.2............94.7........
+...71.....9......8.......2.1.5..6......2...43..7.......2.4.....4.....5........1..
+...71....4.....5..3......2.67.2............18......4....8..2......3..6...1.......
+...71....6.....4.........9..19.....8...2..6...5.......3..4.6..........517........
+...71....8.....5..3......2.67.2............19......4....9..2......3..6...1.......
+...71....8.3......2..5........2..47..1......5.....9...4....36........9......5....
+...71....9......4.3.......8...8...9..72.......1.......6..2......5....1.......95..
+...71...58.....2.................83..7..5......1.......6.....143..2.8........9...
+...71..2.6.....4..3...........4.68...1..........8.........2..1547............3...
+...71..3.26................58......2...4..1..6..........1...8.....5.6.......92...
+...71..3.26................58......2...4..1..6..........1...9.....5.6.......82...
+...71..4..6........5.......2.....5.61...8..........3...3.5.6...4......8....2.....
+...71..4.6.9......2.........1.....9.....25......3.6...8.....3........2.6...4.....
+...71..6..25....................32.87.6.4....1.........4...53.....2............7.
+...71..6..25....................38.27.6.4....1.........4...53.....2............7.
+...71..8.5.6......4...........89...23.....5.....1......9.....1......54...8.......
+...71.2..4.....5..6.........2..8.1......5....3...........3.4.6....6....9.1.......
+...71.3..48.....6...........5..48.....2...7...........1.73.....6......4....2.....
+...71.3..48.....6...........5..48.....2...7...........6.73.....1......4....2.....
+...71.4..9......5...........81...........2.6....5...3.....4.1..2..6...........8.9
+...71.5..3......4.....2.....5.3...8......6.9...1......86...9.........2........1..
+...71.5..38.....6...........4..38.....2...7...........1.72.....6......3....5.....
+...71.5..38.....6...........4..38.....2...7...........1.72.....6......3....9.....
+...71.5..38.....6...........4..38.....2...7...........6.72.....1......3....5.....
+...71.5..38.....6...........4..38.....2...7...........6.72.....1......3....9.....
+...72.....1...8..........7.....15..97.4....6.3..............5.82..4...........1..
+...72.....4....1..............4..93.51.......8........7.2....6.....14..5.....3...
+...72....5..6.....8.1......4.....15..7.3...........6...6......3.....1.8.....5....
+...72....7......9..........4..5....8....3.2..9.........2...56...31.........4...3.
+...72....8.....3.....1..........34...25.......7.......3...46.........17....5....2
+...72...145........8.......7..31..........5.....8..........473...16...........4..
+...72...145........9.......8..31..........5.....9..........483...16...........4..
+...72..15...8...2..4..........1..3...6....4......5.........36..7.5......2........
+...72..3..16.............2.5..34.....8....9.....2..........16.83..............1..
+...72..3.1.8............7..5.....4.1.62.3..............3.....284..1..............
+...72..4..56.................7...5.63...4..........1...1.3.6...8......2....5.....
+...72..4..56.................7...5.63...4..........1...1.8.6...9......2....5.....
+...72..4..8.........5......4..6...3....5.8...1............7.2...3..1..........5.6
+...72..4..81...............4.6....7..3...1......58....2..6...........1.3......8..
+...72..5.6.8......3...........5..43..2......6.1...........68...4.....7.......2...
+...72.1..5.....8.48........6..4...7.......2............2..6..3....5....8.1.......
+...72.4..8.....9..1.........2....58.....31.6.............6....3.5.4............1.
+...72.5...3.....6..........2.4.........3...1.8......4.....4.2.7.9...1.........8..
+...72.5...39.......8.5.........3..821...........4.....4..6..1......8..3..........
+...72.5...6....2...48......8.....1.......4........3.......5..637..1............4.
+...72.5..8.1................2....3......98.......1....65.3........6....94......1.
+...72.6...31...............5.....42..8.3........1..7..7...4....2.......8.......3.
+...72.6..841..................8.1...3..............2..67..3.......5...1..2.....4.
+...72.8...19...............63....2.....4.1...7...........5...142...3...........9.
+...72.9...37.......5.......2..6..4.....3.5...1...............36....8..1.....9....
+...723...9.1..........6.......8..51.2......4.63..........4..8...2......3.........
+...724...659...................9.6.2.1.8...........4.....3...1.9.4......2........
+...73..........1.....6......8..41....5.....2......9...1.....4.7...3...5.9.7......
+...73.......9....84.....6......8..967.2......5.............62...9.....7..5.......
+...73......6...3...54..........84...2......8........1.78.2...........4.6......9..
+...73......9...6......1....7..4...1.2.............6....8.1.4....3....5.7......2..
+...73.....5....9......8.......2.46..3......7.1...........4....1.......83.6...5...
+...73.....6.1......2....9..3.....8......12...1...............42.....8..6...5...1.
+...73....1......8.9......2..3...9....7....6.....2.........4.5.62.1............3..
+...73....1..8.....4.............613.57.........8...6......9.2...8......7.....4...
+...73....2.....8............35..1....4..5..........7....46....37..2.8..........1.
+...73....3..8.....4.............613.57.........8...6......9.2...8......7.....4...
+...73....6.....4...........4..2..7...3..8...........1.....1..392..5....87........
+...73....8......1.......6......4.3..1......8.2.........462..5...3....4.....1.....
+...73....9.1...............37.....6....2.1....8.......63..4.......5..1.9......5..
+...73...2.4.8.....6.....1...5....91....2...........4......51...2.7......3........
+...73..4..56.................7...5.63...4..........1...1.3.6...8......2....5.....
+...73..4.8..5.....1..............8.1.....26...3.4.........1.2...4.....7......6...
+...73..5..2....1...8........4....2.16..3...........8..5....2...3......7....4.....
+...73..6.21....4...........5...21...6......7...........476........8..2....3......
+...73..8..21..................2.1.6.74....5....5......3...9..........1.4......2..
+...73.2..5.1................2.6..3.....1...4.8....5....3..2........4...6.......1.
+...73.4..1.....2..8........2......8....5...1..4.3.....63....7......51............
+...73.5..4.81.....2........6..5..1.......2..8................42.7.....3..1.......
+...73.5..4.81.....2........6..5..1.......4..8................24.7.....3..1.......
+...73.6...81...............23..5........8..1.........46..4.9...3.....2.....1.....
+...73.6..2..6.....81.......5.....4.6.....1.........5...31....2....5.........4....
+...73.6..21........4.6.....5.3.....8...4.1............8...5.7........24..........
+...73.6..21........4.6.....5.3.....9...4.1............8...5.7........24..........
+...73.6..21........4.6.....8.3.....5...4.1............9...5.7........24..........
+...73.6..21........4.6.....8.3.....9...4.1............9...5.7........24..........
+...73.8..1.6......5........2...6..5..7....2.......14...4.8............1....2.....
+...732...4.1....8...........2.5........6...4.........167....5..5.....2......4....
+...74..........56.......1...4....2.3.2.65.......1.....6......7.....2...81........
+...74....7..9...........1..5......92....61..........7..16...8...3....5.....2.....
+...74...2.19...3............5....91.7..2..............4...6..8.3.......7.....1...
+...74...3.21...............83...1.......2.7........6..9.76.....6......4........2.
+...74...382........9.......3....2...4.......5...9...1.......94....6..2......5....
+...74...6.3....5...18......6......72.....1...............4..13.2...3..........8..
+...74...61.4......3.....2.....2.3....9......4.....8....6..5..........81........3.
+...74...68.....3...9..1....5..6.32...1..........2.........9..1.3.6...............
+...74..3..1..........3......6..215..3............5.........62.18..4.....7........
+...74..5..19...............72.3........5..8........1..5...6..7.....1...2.....9...
+...74..5.6.......3..........415........8..6...5.......2...6.1.......3.4.7........
+...74..6.12.................56.3.........81....4.....79....2.........43....1.....
+...74.1..8......3...25........3...8261....................186...4....7...........
+...74.1..8......3...25........4...8261....................186...5....7...........
+...74.2..1.8....3............6.18....5....7...........3......1.4..2......2.5.....
+...74.2..1.8....3............6.18....5....9...........3......1.4..2......2.5.....
+...74.2..1.9....3............6.19....5....7...........3......1.4..8......2.5.....
+...74.2..9.1..................6...18.2..3...........9..4..5.7..8....1......3.....
+...74.3....1......5.........8..61.........52...........6....4.87....3......5...1.
+...74.6..8......5.2............6.7.45....2.........3.......5.8...73......1.......
+...7481...26....3............23.5...4.....8...........85..1.......6...2..........
+...75......8...2.......4....5.12.6..74.......3..........16............78.......4.
+...75...93.....4.....2.....4...9...6...8...7.1.........7.....2......41...5.......
+...75..2.31....8..6........8.....1.....4.........2.......6.3.7..7...1....2.......
+...75..3..2....6...1.......7.....2..8...4..........1.5...2.6...5......8....1.....
+...75..3.1.6......8..3......2.....4....6..8.......1....4..9....3...4..........1..
+...75..8...1.......4........2...14...3....7..5...8....6....2...7......5....4.....
+...75.2....1....9.....3....2..6.9....5......3............8..16.34.......5........
+...75.2....4...7..8.........2.6............43.......8..7.1..5..3....4.......6....
+...75.2....4...7..9.........2.6............43.......9..7.1..5..3....4.......8....
+...75.2..3......6.8........4..1....3...2...4.....6.....5....1.......3..8.2.......
+...75.2..81................2.48............61.......3.5.....7.....4.3.......61...
+...75.2..9.1............1...2.8...6.........3.......9..7....82.....93...4........
+...75.2..9.6............1...2.8...6.........3.......9..7....82.....93...4........
+...75.3...1......4..............2.517.36..............8.....73.....14......2.....
+...75.3..4.......21..............61.2..8......8.3......3....9......14.......6....
+...75.4...1.............2..7..2...6...5....1......3..82.....73.....18............
+...75.4..2.....7..1...............28...3...1....5.4.......26....7....3...4.......
+...75.6...1.....8..........4..1.8...6.....2.....3.....5.6.2.........4.31.........
+...75.6...1.....8..........4..1.8...6.....2.....3.....5.7.2.........4.31.........
+...75.6...1.....8..........4..1.8...7.....2.....3.....5.6.2.........4.31.........
+...751...4..2.....8......3.39..6.......1..2........7..5...3..9...2...............
+...752....8....4..............6...2375..............1...61.....2.....5......4.8..
+...752...8.1..........3.......6..14.2......5.37..........4..6...2......3.........
+...752...9.1..........3.......8..14.2......5.37..........4..6...2......3.........
+...7524..3.1.....8..........2....65.8..3.................1...3965................
+...753...9.....2...............928...76........1.........1...7.4..8......5....9..
+...76....9.1...............26.....5....2.1....8.......57..3.......4..1.9......4..
+...76...2...3.....8........4..1.8..........56......3...26...1........84.....5....
+...76...34.81..............1..4.82...3.......5.........6..3....2.....4.........1.
+...76..2..1....5..8.........4.5.1...3......6.......8..6...2...4......1.....9.....
+...76..4...1.....8............5..1.368.......9........49.....6....31..........2..
+...76..4...1.....8............5..3.168.......9........49.....6....31..........2..
+...76.2..4..8.....15............1.4..3....8...2..........2....36......1.....8....
+...76.2..4..8.....15............1.4..3....8...2..........2....37......1.....8....
+...76.2..8..2.....4.........6....73......4..5.2.......5......84...61.............
+...76.3....1......8.........2..9...........41......5.8.3....27.4..6.1............
+...76.3...24...................41...3.....5..7...8....57.9........2...4........8.
+...76.3...4....1....5...........4.5613..................7....4.9...3....8..9.....
+...76.3...8.....1..........4..3..6...1.2..............7.3...5..6....1.......8..2.
+...76.3...8.....5...1......3.....6.8......2.....4........5.1.7.62..............4.
+...76.3...9.....5...1......3.....6.9......2.....4........5.1.8.62..............4.
+...76.9..53.2......4.......8.6...2......41............2..8............41.......3.
+...78...61.7......3.....2.....2.3....5......4.....9....6..5..........91........3.
+...78..1..5........9.......74.3.....2......8....5..........45.91...6..........3..
+...78..3..2....6...1.......7.....2..8...4..........1.4...2.6...5......8....1.....
+...78..5.24.................6..12.....8....9....4.....3.....4.2..75...........1..
+...78..5.9.1......2............16....3.....4......9...45.2........4..8........1..
+...78.1..2.4......5.............2.45.3.9.................654....1....9......7....
+...78.2...6.2.....45.........51...........3.6.......4.3.7..........4..6......1...
+...78.2..9.....4..1.........7..3...6..8....1........9....6.9....5....8.....4.....
+...78.3..45................26......4....3..1.5.....6....1....3....2.5........4...
+...78.5..3......2.2.........5..1.7..6....3.............7.5.4......2...3.........1
+...79....5.....8...........1.....5.66..2........9..........547...9....2..3..6....
+...79..1..2....6...........1.....359.4.2.6............5.9.3.......8..2...........
+...79..4..81.................5...8.63...2..........1...6.8.1...4......2....5.....
+...79..4..86.................7...8.63...2..........1...1.8.6...4......2....5.....
+...79..5..21...................6.1.45..8...........2..7..6...9..4...1......3.....
+...79.3....1.......2............4.123...8...........9..6.5..7..9.....4.....2.....
+...79.3..1.2......8.........7.2............51.......8....5.1....4....9.....86....
+...79.3..1.8......5.........7.2............51.......6....6.1....4....9.....58....
+...8....1.2.......6.........1..3.5......6..7...8......4.3....6....1..3..7..2.....
+...8....1.3.......6........1.8...3......72.4.5.........2.....7.....3.4.....1.6...
+...8....1.35.......4.......6....4.......2..9.....53.........32.7..6.....1.....5..
+...8....1.5.......6........1.8...3......72.4.5.........2.....7.....3.4.....1.6...
+...8....1.53.......4.......6....4.......2..9.....53.........32.7..6.....1.....5..
+...8....1.69.......2.......4..7..9......52............3.....52.8..41...........6.
+...8....1.7.....4....1.........4.75.6.....3..1........25......4....79......3.....
+...8....1.7....2...4.3......5..6..7....1..4..3............2..4.8.9......1........
+...8....12.....5...........41..5......3....8.......7.....1.8.4..2.3.....5.....6..
+...8....125.........4......1.87...........34........5.6.....7...3..4........25...
+...8....13.........9........7....95...41........3.....6...9..7.....2.4..1.8......
+...8....13........9........6......9..8...3....5.1.......476..........23....4..9..
+...8....13.4......2........5..63.....7....4......5.....8.1...........32..6.....5.
+...8....135.......7.........8...62........73....1.....5......76...23........4....
+...8....156........27..........5.76.4..1.3..........2.....6.2..3..4..............
+...8....16.....5...........4.1.5.....3.....8.......7.....1.8.4..2.3.....5.....6..
+...8....162.................135...........64.7.....2..4...67.....1....8.....2....
+...8....162........3............362.4...5.............5..41.......7..2........38.
+...8....19.....5...........41..5......3....8.......7.....1.8.4..2.3.....5.....6..
+...8....2.3....5....9.......7....31....9...5.6..2.....8.2......4...3........1....
+...8....2.5....7....1.........4..8..1......9....2.....72....5......13.6.....9....
+...8....2.8...6.....7....5.1..7..6....5.2...........3.64....8.......3.......5....
+...8....21.....3..74..........2.35..5......1....6.........1..7.32........8.......
+...8....23......8.1...........2.7.5.7.....1.....4.......6.1.3...8......4.2.......
+...8....26.....1...3.2......2.....3......74......1.......3...8.54.......1.7......
+...8....27........6.........8.2.5.......6.4.........8..215.........4.67.......3..
+...8....3...4...9..1...........125..3.......8....9......5...21.4..7..6...........
+...8....3.9.....4...15.....8.....5..3...7........1....23.6...........19.......7..
+...8....32......7....1.....3....5.......2.4...1..7......4...16..5.3...........7..
+...8....32......7....1.....3....5.......2.4...1..7......9...16..5.3...........7..
+...8....37......4......5....3...61...4..2......8......2...7.5........86....4.....
+...8....4..2...3..6........3......2..4.5........4..7....7.2..6..8......5....1....
+...8....4.5....7....1.........4..8..1......9....2.....74....5......13.6.....9....
+...8....4.7......1.......5.25....3.....1..8..7..4.........5.63...1..........2....
+...8....43.7......6.........2..3.1...8......5.......6.1.....73....2.8......5.....
+...8....5....6.2..1........42.1...........67........3..67...3.....4.5.....2......
+...8....5..1......7.........5......42...7........3.1..6.....37....5...2..8.4.....
+...8....5.4......6.37..........236..1............7....5..4...3....1...2.......7..
+...8....5.7..1.....4...........6.71.5..2.....3.....4..8..5.3........2.........6..
+...8....5.7..4.....1...........6.71.5..2.....3.....4..8..5.3........2.........1..
+...8....5.7..4.....1...........6.71.5..2.....3.....6..8..5.3........2.........1..
+...8....5.7..4.....1...........6.71.5..2.....3.....9..8..5.3........2.........1..
+...8....532................47.....2.6...5.......18......15...........27......43..
+...8....6.......4........3..3....7.....2..8...41......2...5.1......43...7....1...
+...8....6.1..4.....5...........7.51.6..2.....3.....7..8..6.3........2.........1..
+...8....6.1..4.....5...........7.51.6..2.....3.....9..8..6.3........2.........1..
+...8....741.......2............2.34...7.....65........3......2....5.3......7..1..
+...8....77......2....1.....2...6...4..65..1..3............2..3..9....8...1.......
+...8....935.......7.........8...62........73....1.....5......76...23........4....
+...8...1...5...4.....2......823.........4.7........5..51..7....6......3........2.
+...8...1..23......6.4..........4.2.59.................5..1.9......7..3...8....4..
+...8...1..4.....7.62.......8..9.1......7..2........4..9.7..........6...3....4....
+...8...1..4.5......7.......2..6..7...3....4...............345..8.......21...7....
+...8...1..62.......5.......1..62....9.......3....5.7...4....5..3..9...........2..
+...8...1.2.6......5.........4...3...7...5........62....1.7...........2.5..3...6..
+...8...1.2.9.......64......3..51..........2.9......4.....749...85................
+...8...1.25........36..........653..74...........2....1..4.......2.....6......2..
+...8...1.3..9............4.2.6.5.3.....1..9..5...4.........26...1.......7........
+...8...1.4........3............4.7.2.1.56.....8............74..6.....3...5.1.....
+...8...1.4........7.........15.2.........94....6.......2.15..........9.3...6..7..
+...8...1.43................2...43.......1..69.....5.....7...3....16......5....4..
+...8...1.5..9............4.2.7.6.3.....1..9..6...4.........27...1.......3........
+...8...132.6...............31.7......8.....4.....9.6....5...2.6...1...........5..
+...8...1325.......6........94....5.....1.7.........2....3....7....92........6....
+...8...142.6................81....6......32......7....72....3..5.......7...1.....
+...8...156...............3.76.5.....9.....2.....1.........9.6....5.2.....1...3...
+...8...156...............8.76.5.....9.....2.....1.........9.6....5.2.....1...3...
+...8...16.......5.4........2.4...3.....1..8.....5.....6...4.2......3..7..1.......
+...8...17.6.3....5.......2....6..4..7...2....1.........4...7.....3...8......1....
+...8...2........37.1...........4.1..2.3......6.....9..9.....4.....51.......7.3...
+...8...2........39.1.......4....35...6....1......2.......61.7..2.9.........5.....
+...8...2........49.3.......5....43...6....1......2.......63.7..2.9.........1.....
+...8...2....9.4...5.....6..4...5...........38.......9...6.7.4...9.3...........1..
+...8...2...6...3...4.2.......3...6.15..9.....8........29.....5.....7........6....
+...8...2..4........9.......1..3..5........4.9..6......2.3....6......51......4..7.
+...8...2..6....4....9.......1..65...7......8....4..5..8.32.............1......6..
+...8...2..7....5....9.......1..76...5......8....4..6..8.32.............1......7..
+...8...2.1.....4...........4.6...1.....32...75............54....8...1....3.....9.
+...8...2.35........14......73..5...........9....7.....2.96.........3.5........1..
+...8...2.64........1.......528..........1.7.........3....2....49.....1.....5.3...
+...8...2153..................1....892...3.........64...6....3......2.5.....1.....
+...8...235.1......4........6..7..1...5.2..........3....2.....7.....4.5......1....
+...8...243.1...............6..2..73..2.5.4............7...3.1...4......5.........
+...8...249.17............5..4...2...6.....1......5.....2..8.......9..3..7........
+...8...259.1................5.4.2.6.3.....9..............79.1..6...3.....2.......
+...8...3....5..6..4............42.....8....1..3........5.18..........2.47.....3..
+...8...3...24............7.75....1.....2..6..3....8....1..7...9....5..........4..
+...8...3..5....6.....4.....3......7.....8..4..1..5....2...6.5..4..7...........1..
+...8...3..6....4....9.......1..65...7......8....4..5..8.32.............1......6..
+...8...3..7....5....9.......1..76...5......8....4..6..8.32.............1......7..
+...8...3..92.......1....4...7....9..3..6........5....25......6.4...9........1....
+...8...3.2..4.....1.6......5...6.2...4.7...........1...3..5........12..........4.
+...8...3.2..4.....6.1......5...6.2...4.7...........1...3..5........12..........4.
+...8...3.25..........1......3....71....6...8.7...4........5.2.4..1............5..
+...8...3.4.....5.....2.........6.4.1.8.3.......2.......73....8.5...41............
+...8...3.4.....6.....2.........6.4.1.8.3.......2.......73....8.5...41............
+...8...3.5...7..........21.....2.5.7..8...4...1..........1.9..62...........6.....
+...8...3.5..3.....1............215...43....7..............65..1.7.4...........2..
+...8...3.64.......1.....2.........847....6.......1.....283.....5.....7..........6
+...8...3.74................3.8....6.....4.9..6...2....5.....2.4...6.1...........9
+...8...31.24.................6..42..3..1...............8..3.5........46.1..7.....
+...8...326.1.............4.....476.....1..9..93........2..3..........75..........
+...8...34.52................9..6.5........27....3..........51.63.4......8........
+...8...37.2..6.................5.42.7.19...........6..9..1.7.........2...4.......
+...8...4........653........7...2.3......5.........6...16.7........3..9...52......
+...8...4........657........3...2.7......5.........6...16.7........3..9...25......
+...8...4........657........3...2.7......5.........6...16.7........3..9...52......
+...8...4....4...6..1..........2..1.37...3..........5......152..4.7......6........
+...8...4....5..7...19.......4.....5.8......2.....1.........43.92..6...........1..
+...8...4...1.......3.......4...2....8.....5......1..7....6..1.364.5...........2..
+...8...4..1...........1....4.8.....6....9.1.72........5..4..2........39....6.....
+...8...4..1.......6........3...76.........15.2...........5..6.3.291...........7..
+...8...4..3....9..67..........4.3...7......1....9.....5...6.2....4.....9....1....
+...8...4..6.1...............5....1.68...7........4.3..2.4....7....6.35...........
+...8...4..9.5......1.......4.8....5.6....27......1........9.3.15................2
+...8...4.5......3.2.8..........5.2...4...9....1.......7.....5.....46.......1.3...
+...8...4.6...4......3.....5.1....62......5.......3....4..6..2.......73.....1.....
+...8...4.7.....5.....2......12..........7.4..68..........1...685...3....9........
+...8...4.9.....6.....5.....62..9...........517..........83.........6.2...51......
+...8...4.9.....6.....5.....62..9...........517..........83.........7.2...51......
+...8...45.......1.6........7.2...3.....1..8.....4.....5...3.2......7..6..1.......
+...8...5....3..4..2.........98....3..5..1........2....7.....2.1...5.9.........6..
+...8...5...4...3..9........89.2...........6.45.........1..4...........89....36...
+...8...5...9....4..........86....1......4.2...3..5......4..2..13..6..7...........
+...8...5..32.......6...........264......5..8.1........8..7..3.....1....2......6..
+...8...5..7..3.....4.....9..6..147..2....9...5...........3..4..8..5..............
+...8...5..9.2......1....7..7...3.4..2..6...........9..5......2........68....1....
+...8...5.4.....3..63..........7....6.5.....1......4.......532..8.......4....1....
+...8...5.6.......9.....1...2..73....9......1.....6.4....85......1....6...4.......
+...8...5.7.....3.....2.....1.....7.4.2.13..........6..6....4....1.....2.....7....
+...8...53....4..8.............6..7..93........5.3.....4...9.2......51...6........
+...8...53.72...............5..3..2...1....6..........71.3....8.....764...........
+...8...596..4.....2.........5.9.....7.....6........1......6..3.4...2.....8......4
+...8...6....5..1...7........2.....47...1.6..........3.6...7.2..1.....5......4....
+...8...6..25......4.3......37.....1.....35.......4....6.....4.5...1...........2..
+...8...6.4.....7.....1.........7.2...36.......8.........7...59.2...4.......3...8.
+...8...6.8..3.............1......83..15.......7.......4.....25.....7.4......16...
+...8...613......4.2.........1.98...7.6.5...........2......13...5..............3..
+...8...63....5..8.............7..4..93........6.3.....4...9.2......61...7........
+...8...634.1...............36.5.........9.1...........2..6.5....7....91.......4..
+...8...6742................3.7....5.....924......1......67......9....2.......1...
+...8...694......2.3..5...........3.1.6.9...............9..31.......4.2..5........
+...8...7........3194.......45..6.2......1....3..........17........3..4...6.......
+...8...7..4....5....1......7....6.3.....2...8....1....86.3........4..1........2..
+...8...7.3..2...........5..1.......4....5..3.....76......4..1.3.65............8..
+...8...7.4.....6.....2.........6.4.1.8.7.......2.......73....8.5...41............
+...8...7.4.....6....1......3..2..5........3.4...1......8..45....7.....2.....3....
+...8...73.9.3......4.......7..59....6.....41.......2......41...3.5...............
+...8...745.1..............23...156..2...3.....8.............53..4.2..............
+...8...9..2....4...5.6......3..5....6......3......1.......7.5.29..3.....8........
+...8...9..2.3.............44.....7.1...5..3......9....3...41....6....82..........
+...8...9.4...3....6.....7...91....5......4.......2.........64.3.5.1...........2..
+...8...9.4..3......36..........26...8......5......4...7..15..........6.2......3..
+...8...912.5.........6..........243..1..9.....8.......4.....27.......5.....1.....
+...8...94.35...................516..94.....7....2........43......1...5..2........
+...8...945.1...............64......7.....35...9.......2.....13....46........9....
+...8...97.65.4...........1...2...3...4.7..........1.......2.5..9..6.....7........
+...8..1...2.............7...5..3..247..1..............1..6.5...8.......7....2..3.
+...8..1...2.4...........3.....52..4.3.....6..1.........5.....28..7.63............
+...8..1...3........5.......4..1..2...2..5.......7.........6..538......6.1...3....
+...8..1...35............2..7..1........2...5........391....64......3..6.8........
+...8..1...43............2..7..1........2...3........491....65......3..6.8........
+...8..1...7.3.....6......5.2...95.........86...........81...3.....6.2.......4....
+...8..1...9..3.....2......7.5.....2.4..1..........6...1....76......2..9.8........
+...8..1..2.6......3.........1.5..6..5..3............2.....2..7.....46...4.......3
+...8..1..2.7......4.........1....8......45.......2....59.6...........72....3....4
+...8..1..23.......9...........1.65..3...............4...1...62....49........3...7
+...8..1..24.......6........42..6...5...1..83............871...........64.........
+...8..1..26.......5........62..5...4...1..83............871...........52.........
+...8..1..37................4.2....9.....37.......5.......2..68.53......71........
+...8..1..4.7......2.........1....8......45.......2....59.6...........72....3....4
+...8..1..5.7...................35.8.2.....6......7....61.4......4.2...7.........3
+...8..1..7.......94...3........6.54..9.....3..1............26..6.....3.....9.....
+...8..1..79........3.......6.4...8......5.2.....39....1..4............75.......9.
+...8..1.2.4.6...........3..3.1...2.....7.6...9.........6.....57....1...........4.
+...8..1.27.4..................28.6..5......4.9............35.7..2...4....1.......
+...8..1.374....................726...34.................143....2.....57........6.
+...8..1.4...7.....3...........4.98..6.3....2.5............3..6.74...........6....
+...8..1.4.2....7...............23.5.6....7...1.........3..5..2...41..6...........
+...8..1.473....................726...13.................431....2.....57........6.
+...8..1.564...............3....26.7..51..........4....7.....46....3.5............
+...8..1.6.2.............4..1...7.6......32...4.........5.....23..8....5....1.....
+...8..14...3....6....2.....89...........7.........3....67.5....1.....2........8.9
+...8..14...3....7....2.....89...........6.........3....67.5....1.....2........8.9
+...8..2.....3.6....1.......3..6....44......19.......5.7.....8...5..9........1....
+...8..2.....3.7....1.......3..6....44......19.......5.7.....8...5..9........1....
+...8..2....3.......7.......6...4.1...2...5........3.....7...5.32..61...........4.
+...8..2...3.......9...............368..5.......2....4..4..6.1.......75......43...
+...8..2...4.....9..........6..2..1.7.5......4...3.....1.....3......49.......5..7.
+...8..2...4..9..............9..74.......5.3..1........8..6...4........972..1.....
+...8..2...4.3.....73...........49.......7.6.........3...21..5.........796........
+...8..2...5.9.......4.....1.4..5..7.6.....3......1....3..6............952........
+...8..2...7..4.................6..542.7......3......7....3.28...64......1........
+...8..2..3.7........1....5..2....6......1.......4.....59.3..........5.17......4..
+...8..2..41..................26...7..9..1..........8..5..7.4.........31....5....9
+...8..2..41.......6......3..5..7...4..2...5......1.......3...8.7.......1...2.....
+...8..2..45........7.......1..3............64.......5...2..61.....75....3.....8..
+...8..2..5...2....1.....9...8.3............6........5....4.1.3.6...5.....2....7..
+...8..2..54.......1............5472.8....6.......1...........41.7.3.......4......
+...8..2..7.4............1.......751..2........6.......5......73...68..4....2.....
+...8..2..7.4............1.......751..2........6.......5......73...69..4....2.....
+...8..2..74........3.......5.....6.8....31.......4.......4...3.6..1.......2...7..
+...8..2.17.4..................18.6..5......4.9............35.7..2...4....1.......
+...8..21.59....7..4...6.....2.7............56.1..........1..8..6.3...............
+...8..24..61................8..12...7......9.........55..93...6......1..3........
+...8..24.5.1......3......9..4.2..5.....67..........3......31....6......7.........
+...8..24.5.1......3......9..4.2..5.....76..........3......31....6......7.........
+...8..24.5.1......3......9..4.2..5.....78..........3......31....6......7.........
+...8..24.7.1...................175...8.....3..4..5....6.....1.7...4.....2........
+...8..25..41................8..42...7......9.........66..93...1......4..3........
+...8..25.1.......6...2.........4.7.9.58...............4...61....2....83..........
+...8..3.....74.....9....1...6.....48.....1..........5.1.3...2.....45....2........
+...8..3...2.3.....41.......7..2....4.......16.......5...4..5...8.....2......1....
+...8..3...2.6........5....4.7..1.6......9.........4.........82.9.....7..4....5...
+...8..3...2.9.....41.......7..2....4.......16.......5...4..5...8.....2......1....
+...8..3...6.......1.........4.....51..87..........3...5...16.........82.....4.7..
+...8..3...65.........1.........4..65.....2.4.8........2.....8.1...3..7......6....
+...8..3...65.......4.......8.....2.17...4.......3.6...1..2..7......5..6..........
+...8..3...7.2......61.........5...614....3..........7.8.....52.....1..........8..
+...8..3..2..4.....1..............6.27...1.........98...9..7..1...56......8.......
+...8..3..25........4.3.........59...8.....9......4....7..1....6.......45.......2.
+...8..3..4..7............2..21....5....4.........3.....6....2.7....2.4..5....1...
+...8..3..4.5......7........1...5..7..6.2........3......3....8......7..4..9..1....
+...8..3..41.......6......2..5..7...4..3...5......1.......3...8.7.......1...2.....
+...8..3..5......4....2........6....87...5....4.....9...3..4..5...8.....2.....1...
+...8..3..5......6.2..........6.25....3....4...8..........1...7.7.......2....34...
+...8..3..5..1.....2.4.............24....4..5.....97....8....1.6...2...........7..
+...8..3..5..3.....2.4.............24....4..5.....97....8....1.6...2...........7..
+...8..3..5.4......6.........2.1............46.......2..7..5.1.....26.........47..
+...8..3..6......2.....5.......2.6.8...19......5............75.1....4.7..8........
+...8..3..6......2.....5.......2.6.8...39......5............75.1....4.7..8........
+...8..3..6..4.......1......53....7.....12.....7....6..4......18....3...........2.
+...8..3..7..4...........5.2.39.2.......1...6..5............9.7.....53...1........
+...8..3.1.4........6...........2.74.1.6...............3.....57....24.......6....3
+...8..3.2.41...............2..3..8...5.....1......2...6...17.4.....5....3........
+...8..3.2.41...............6..2..7...5.....1......9...3...56.4.....4....2........
+...8..3.24.1...................46.8.5...1.....3.......6.....54..7.3.2............
+...8..3.59.2...7...4..1.....1.....2....5..9...........5..3.........2..4.7........
+...8..3.7.21...................2.5.....74....3........54.....2......16..7..3.....
+...8..32.1.4.........6......3....86.....47.........2..7......54.8......1.........
+...8..32.4.1.....................7.1.8.5.....2.........2...3.6.....1.5......47...
+...8..32.71....................41..62.9...5......8....3..5.7..........41.........
+...8..35...1......9........6.....2.1.4.9...............5...7.3.....2.8......61...
+...8..36.9.1.........5..1...8.1..5..4...9.............7.......2.......49.3.......
+...8..37..1.......4..........8.1.5...739.....9........2.......1.......94...3.....
+...8..4...2.5.....1........9......13...72...........9..4....7.8.....36......1....
+...8..4...2.7...........1....36...7.5......2.1.4..........4.5..78...........1....
+...8..4...31...................16.7.....7.5..4.........9.....168..4.5......2.....
+...8..4...67...................17.6.....6.5..4.........9.....718..4.5......2.....
+...8..4...71...................16.7.....7.5..4.........9.....168..4.5......2.....
+...8..4...71...................16.7.....8.5..4.........9.....168..4.5......2.....
+...8..4..1.3.......65......74.2.........6...5.......1.9.....2.....35........1....
+...8..4..1.3.......75......24.6.........7...5.......1.6.....2.....35........1....
+...8..4..1.5......7........2.7.6.......1..95..6........4.3.9...........1.......7.
+...8..4..12.......7..3.....6...2..7..8.5............1.2...7..........5.3......8..
+...8..4..23.......9...........1.46..3...............5...4...12....59........3...7
+...8..4..5..3......2...........29.6.4.....3....1.......9.....2.1..4.........5.7..
+...8..4..6.....3...1.......4.32........5...1.7.......92...4........1..5.....9....
+...8..4..6.....5.....2......4..7......3....2.........12..3.1....8.....4.....6.7..
+...8..4.17.9...............28....5......91....4.....6....23..........6.9.......7.
+...8..4.259..3.............35.....9.1...........4.....7.42.6..........5.......8..
+...8..4.29..3..7........1..26........14.........5.....5......8.....4..6.....1....
+...8..42.1..................25.73.....4...2...8..9....9......63...4.............1
+...8..49.15.......6.....7....347...........61.........5....6......3..8...2.......
+...8..5...1..........4.....6.4.1...33....2.............7....21.4..63..........8..
+...8..5...12...................29.7.....7.6..5.........9.....218..5.6......3.....
+...8..5...31...................17.9.....8.6..5.........9.....178..5.6......2.....
+...8..5...31...................19.7.....7.6..5.........9.....318..5.6......2.....
+...8..5...4....3......7.......5..61.7.2...........4.......9..7243..............8.
+...8..5...6....2.......3...4.31...........62.1.........5.72........9..6.........3
+...8..5...71...................19.7.....2.6..5.........9.....178..5.6......3.....
+...8..5...76.............2....4.6...3.....8........1..8...5..4.....3...7.....1.6.
+...8..5..1........7........38......1...65..4....2..........1.3.....9...7.5....2..
+...8..5..1..9.....7.3.......5..6...4....7..3...........2.4...........1.3......76.
+...8..5..3.1...............47.5.........6...2.8.....1.6.....4....2..1......4...3.
+...8..5..4......3.1.........5.62....3.......4.......1..9....2......34......1.7...
+...8..5..7...2......1....3....49.2....3.......8..........3.1.7.92....6...........
+...8..5..9..4...........7..17....6.....3...9..2.........3....4...5..7.......2...8
+...8..5.17.2.9....6..............37..5.1..............9...7..2..3..5.......4.....
+...8..52.71....................31..62.5...4......9....4..2.7..........13.........
+...8..53..71......2........54.6........4....7.......2..5....4..3...2........1....
+...8..54.63.........9......7.....6.....4....3....2........761...84....5..........
+...8..54.7..6...........2.....1...26.35.......8...........5.3..6...4............1
+...8..54.7.1...................7..123..5..............65....3...4..21........7...
+...8..57.21..........5.....7..92...........13......6...7...3...9.....8......1....
+...8..57.21..........5.....7..92...........31......6...7...3...9.....8......1....
+...8..57.4..2......1.......2......6.....17.......3....6..4...........1.3..8...7..
+...8..6...3....4...5.....7....13....9.....8......75.....26.....6.......5.......3.
+...8..6...54.............2....4.7...3.....8........1..8...6..4.....3...5.....1.7.
+...8..6...7.4.....2........3....1.......2..7...1...4..15......2..46............3.
+...8..6...7.5.....3..........5...8...1..7........4.3....36.2...4.......7.......1.
+...8..6..14........7.......3.8...5......1..7..6.......2......1....3.5......6....4
+...8..6..17........4.......3.8...5......1..7..6.......2......1....3.5......6....4
+...8..6..2...4....1.........7.5..36.....1..........9.....6...21.8...5...........4
+...8..6..2...4....1.........8.5..36.....1..........9.....7...21.7...5...........4
+...8..6..4......3.1.........6.72....5.......1.......4..9....2......51......4.3...
+...8..6..4......7..9........869...........34.91.......2...57.........8......4....
+...8..6..49........3....7.........325..1............4...6..51......43.......2....
+...8..6..5..........4......2...5..4..6.3.......8....7..1.6..3.87...4.............
+...8..6..7......3.......5.....7...9..25.......3.1.........543.21............2....
+...8..62..41................5....3.46..2.....7....8.......13...2......7.....4....
+...8..65.3.2................5...7.9.....42...8...3....4.....3.2...1......9.......
+...8..65.3.2................6...7.9.....42...8...3....4.....3.2...1......9.......
+...8..7...1.............2......1..6...2..4...5.....3..6..25.......3...1........49
+...8..7...1.............2......1..6...2..4...7.....3..6..25.......3...1........49
+...8..7...3.9.......1......8.....26.....4.5.....3.....74...5.......1...3.......9.
+...8..7...9.5......4...........4..5.7......2......1...25.3.........9.1..6.....4..
+...8..7..2...4....1.........5.6..37.....1..........9.....7...21.6...5...........4
+...8..7..2...4....1.........8.6..37.....1..........9.....7...21.6...5...........4
+...8..7..63.............1..7.....2......51.......3.....5.....34..87........4...6.
+...8..7.1.5.......4........2.....54....1............6..71...2....863.........4...
+...8..72..35...................53....9.....4.....6....2.6...5.38..4...........1..
+...8..72..41......6.........3.....9.....12.......6....2.......1.5.3.....7.....8..
+...8..73..41...............2...5...6....3..1.........435....2.....9.1...7........
+...8..74.3.1...............57...6..3....3...2.........64....3......1..9....2.....
+...8..74.5.1......3......9..9.2..5.....68..........3......31....2......8.........
+...8..9...7....4....1..........1...68...3....2........64.2........5...17.......3.
+...8..9..1.3......54........2.....83...1.....7........6.8...2......34.......5....
+...8..9..1.3......65........2.....83...1.....4........7.8...4......35.......6....
+...8..9..1.3......65........2.....83...1.....7........2.8...4......35.......6....
+...8..9..26.......5........41..26.....7...8..............7...5.3..9............21
+...8..9.1.25.......3.5.....8......7......2.3.....4........8.4..5..7...........2..
+...8..9.1.35.......4.5.....8......7......3.4.....2........8.3..5..7...........2..
+...8..96.45........3.......6..24......9....1.....3....7....1.........3.4........5
+...8..97.21..........9.....7..63...........14......5...7...4...9.....2......1....
+...8.1..........64..........8.5..1......6..3..5.7.....2.6.4..........8.74........
+...8.1.........2........5..4..6...9.2.54.....7.........9.....1..3..7........2.7..
+...8.1.........25.3.....6...814.........5.72..9..........3....12...7.............
+...8.1.........3........6..5..1...8.3.62.....7.........9.....2..4..7........3.7..
+...8.1.........3........6..5..2...1.3.61.....7.........9.....2..4..7........3.7..
+...8.1.........3........6..5..2...8.3.61.....7.........9.....2..4..7........3.7..
+...8.1.........43.4.....5..617.........39......8.......7.....812...5.............
+...8.1....2....4..............34.6..1...6.5..9........7......98.3.5............1.
+...8.1....2....5..............73.6..1...5.4..9........6......98.3.4............1.
+...8.1....7......5.........3..75...41.6...2..............2..81..4..7...........6.
+...8.1....7....2.........4.8.3..........2.4..1.........2.45....6.......3...7...1.
+...8.1....9....5............7.35.....3......15......4.1.26.........2.7..4........
+...8.1...2.......3...........8....7..5..4......6.3.......7..16.32.......4.....9..
+...8.1...2......3.6...........6..7........2.15...3.....1745...........2..8.......
+...8.1...3.......6.............6..84.12.........3.....7..43.....8....51.......2..
+...8.1...3.......6.............6..84.21.........3.....7..43.....8....51.......2..
+...8.1...32.......5.........78.....2...53..6................15.4...2.......7..8..
+...8.1...4.....2..............32.7...51....6...........6.....853..7.........4...1
+...8.1...4.5......2...........65.3...1......7....4....79.3...........56........4.
+...8.1...4.5......7...........6..1.85...4..........3..2......7..8.3.........6..5.
+...8.1...5......3.64...........4..5..8.........2......4..36..........2.1...7..8..
+...8.1...5.....2............183...4.....2.....4.......26..5....7.....3.....6...8.
+...8.1...5.6......7...........1..2.86...5..........4..3......7..8.4.........9..6.
+...8.1...6.....3...2.7.....4...3..56.7..............2.1.....7.....2..8......5....
+...8.1...6.....3...2.7.....4...3..56.8..............2.1.....8.....2..7......5....
+...8.1...6.....4...........58........2.7.........4.3.....2...813...6....47.......
+...8.1...6.4......3.........2.....1.4...3..........78....65.4...8.1...........3..
+...8.1...62................1...5..2...84......3.......27..6.......3..8.9......4..
+...8.1...7......3.4.....8..5...6...2..9.............1.....7.9...18.......2.5.....
+...8.1...7.....4...............4..513..67...........8..6..2.....51.........4..3..
+...8.1...7.....5........2...6..2.4...9.....3..........4.5....1....6...8.2...4....
+...8.1...9......3.............45.....12........8...4.....6..2.853..7..........1..
+...8.1...9......3.............45.....12........8...5.....6..2.843..7..........1..
+...8.1...9.....2...........6..72.......3...613......4.....5.9...18.......4.......
+...8.1...9.....3..7.....6....8....1..4.2.........6.......4...8263..5.............
+...8.1...9.6......4........73.5.........6..49............2..7...8....3....4.9....
+...8.1...92...................65.2..1.....3....4.9.......7...46.6.....8.2........
+...8.1..2.3.5............7.2.4.7..........1....7..........2.64..1....5..8........
+...8.1..9.3....5..7..9......42.3...........78...............43.9..5.....8........
+...8.1.2.7.3...6............8.2.........7.5...1.......4..63..........98.3........
+...8.1.3..6....7...........8.42........4..6..3.....5...5..6...........84....9....
+...8.13..7..9.......5.........73...218.................3.....4.......89...2.5....
+...8.13..7..9.......5.........73...281.................3.....4.......89...2.5....
+...8.13..9..7.....2...........4...8........527.........1..3...9.8..2..........7..
+...8.14..72....................5..2.4......7...1......26..7.......3..1.85........
+...8.14..73.....5..........35..7.......4..8..2..........8...6.1...2.........3....
+...8.15..37.....4..........43..7.......5..8..2..........8...6.1...2.........3....
+...8.19...76..................24......3.6....1.....5..85.7............36.......4.
+...8.2..........63...5....776.....4....9..2..3.........8....5..6...3........1....
+...8.2....1.3......4.....7.7...5..........2.8......1......46.1.8.....3..2........
+...8.2...1..........5.......7.....9.....3..4.3...5.....2.7..6.....2..5.1......3..
+...8.2...1..........5.......7.....9.....3..4.3...5.....8.2..6.....7..5.1......3..
+...8.2...1..........5.......7.....9.....3..4.3...5.....8.7..6.....2..5.1......3..
+...8.2...2..6............4.67....2..3.....8......1......5.4..1..41.........3.....
+...8.2...3.......1...4..6...7..5...4.2.....8.....1.......7...2.6.....3..1........
+...8.2...3.......1...5..7...4..6...5.2.....8.....1.......9...2.7.....4..1........
+...8.2...3.......1...6..7...2..7...5.4.....8.....1.......4...2.1.....3..7........
+...8.2...3......7....1...4...15..2...78..........6....63..7..........1..4........
+...8.2...3.....1...7.4........6...2.5.6......1.......8.2.....4.....6.5......1....
+...8.2...4.....1...7.3........6...3.5.9......1.......2.3.....8.....9.5......1....
+...8.2...4.....1...7.3........6...3.5.9......1.......8.3.....2.....9.5......1....
+...8.2...4.....1...7.3........6...3.5.9......1.......8.3.....8.....9.5......1....
+...8.2...4.....7...............472....86......3.......75..1.......5...38.......6.
+...8.2...5.....1...7.3........6...3.1.9......4.......6.3.....8.....9.4......1....
+...8.2...5.....6....1.......2.....14....5.3...7.6..........4.716...3.............
+...8.2...5.....9.....7..4..1...6.2...8.3..............6...5..4........38........7
+...8.2..47.6...3...........3...7..1....1....8.......2.82...........6.4...5.......
+...8.2..65......4..........7...5...3...1..2..1..4.........7..1..32............8..
+...8.2..65......4..........7...5...3...1..8..1..4.........7..1..83............2..
+...8.2..69......4..........7...5...3...1..2..1..4.........7..1..32............8..
+...8.2..69......4..........7...5...3...1..8..1..4.........7..1..83............2..
+...8.2.4.1.6.........3......2......3....1.7...8.......5...9.6..7.....9.....2.....
+...8.2.5...4....3..1........9....4.37..5........2.........9.1..8...3....5........
+...8.2.7...6...3..5........63..5.....7.....8.....1.....2.7.....1.....5.....4.....
+...8.23...5.....7...........1..75...6.....8......4..........1458.23..............
+...8.23...71...............8..3..4.........5.4.........6..75.1.2.....8......1....
+...8.25...1.............8..7......135..4.................69.4..2......7...1.3....
+...8.25...1.............8..7......138..4.................69.4..2......7...1.3....
+...8.26..3.1................2....5......3...47...........51..3.4.....7...6.2.....
+...8.3..........54....2.......7..16.2..9.....4.5.......1....87.....4..........3..
+...8.3..........794..........35..2......7..........8..79..5.......6..31..4.......
+...8.3.4.2.1...............5...1.......7..4...3.....8....52...7....6.1...8.......
+...8.3.7.6.....2...........26.4........5...981............2.6...58..........4....
+...8.34....1....7.2.........7..25....8....3...........6...1..2..3.4.....5........
+...8.35..17.....6.4..7.......7.1......8....3.......2..6..3......2......7.........
+...8.37..4.5...6..1........25.6........9...4........1.....4...2.3....8...........
+...8.4...........2......7.....1..34.5.2......7............761.....52.....3.....8.
+...8.4...........5......7.....1..34.5.7......2............561.....72.....3.....8.
+...8.4..........19...6........4..75.3.9......1.....4...2....8..68...........1....
+...8.4.....1...6........5......31.7.2...............4.....6.1.547.2......8.......
+...8.4....5.2......3....7..4......8....6...9.....1........7.1.52....9...8........
+...8.4....9....2.....3.....51..2...........8........3....73.5..458......6........
+...8.4..2.1.....6....5.....7.....13....62.................135..4.6......8........
+...8.4..7..16.....9.......5...7..48.2........5............9.3...8.....6.....2....
+...8.4.6.9..5.....2.......1....2.93..61................7.6....84.....2...........
+...8.4.9.71....................7.3.15.8............4...64....8.3...1.......2.....
+...8.43..1.....4..5...............169......5....2......4.6..2...8.....7.....1....
+...8.5....3.....7....1.....1.53..4......7..2.8........27..6..........1......4....
+...8.5....62.........1.....83....5......2.4......7....9......231..4............7.
+...8.5...1......6....2.........7.14..2.5......8....3..4...1.6..........2..3......
+...8.5..2...7..9...1.......8.2......9..5............6.....36.1.2.....8......1....
+...8.5..296....................6.19...8...5...2.7.....5...9..3....2.....7........
+...8.5.1..2....6...........8.15.........7.9.43.........4..2.......3..7.........8.
+...8.6....2.....9....1.....1.63..4......5..2.8........59..7..........1......4....
+...8.62...3.....9..7.1.....8.1..........3..7......2......57....6.....1..4........
+...8.67...1..........4.....7.....3..8..7.......5....1.....15.2.34...........2....
+...8.7....4.....9..........7.16...........34.......9...5.39....8.......12...4....
+...8.7...3.....5.....4.........5.23...8...6...1.......2...6..7....3....8........1
+...8.7.3.6.1.........2.....5...4.6.178.............5......65....2.....7..........
+...8.7.6.1.....5.....4.....5..31..........78.........2....3.1.9.84...............
+...8.73....6..9....1..........56..1.79................4..9....28.....7......1....
+...8.73..4.9...............2...6..41.85.............9.1...4.....7....8.....2.....
+...8.73..4.9...............6...2..41.85.............9.1...4.....7....8.....2.....
+...8.74..31................7...13..6......85............842...........63...5.....
+...8.9....1....5.....7......2..3..4.7.......8....1........6.2........31.8..5.....
+...8.9...1......3.......4.....5..8.136.......2.....9...4..3......8...5......2....
+...8.9.1..2......3..........3.5..6........2.........9....74...86.....4..9.1......
+...8.9.1.3.....6..5..4.....9.....3...4.1...........2......3.5...8.7.......1......
+...8.9.1.73........5.......4.....3.5...1...........2..6...4..9...8.3.........5...
+...8.9.316..2.....4.........3.....4..8.9...........6..5...4.2......13............
+...8.9.5..1....7.....3.........1.4.25.86.....3............2.1..8......3..........
+...8.9.516..2.....3.........1.....3..8.9...........4..4...3.6......51............
+...81...........727.....4.....9...8.4.3......61............13...8.2.....5........
+...81.....2......5.......2.1.4..6......5...73..8.......7.2.....5.....4........1..
+...81.....2......6.......2.1.5..7......6...43..8.......7.4.....6.....5........1..
+...81.....4.....7.........3.6....3.1...7.4.........9.....5..62.3.1......9........
+...81.....8....3..........5..6..49..2..7.....1.5.............16.7.9............5.
+...81....1.......45.....3...876............13.........3....2....4....6.....7...8.
+...81....2.......76.........831...........5.2............3..48.79...6..........1.
+...81....3......4..........67.1.....5.....93....2.....4.8..3....2......1......6..
+...81...5.76...2..............3..7..4...............1.8...27...1......43...6.....
+...81..6..25....................32.98.6.7....1.........4...53.....2............8.
+...81..7........631.........73..........2.4..6........92....8.....4.6......3.....
+...81..9.7.....4............19.3..........6.7.2.......5..7.4...4..6............1.
+...81.2...64........9.........9.4..712..........5...........35.7...4...........9.
+...81.6...53........9.........9.3..718..........4...........24.7...3...........9.
+...82.....3....6..6.....4......3..214..7.................3..78..21......5........
+...82.....3....6..6.....4......3..219..7.................3..87..21......5........
+...82.....4.......3........6...93.....8.....2.......4......437..251...........9..
+...82....1......3................26.95........8.2.........31..94.....8.2......5..
+...82....1......3................26.98........5.2.........31..94.....8.2......5..
+...82....5.....1.....4..........168..72........4.........23..4.61....5...........
+...82....5.....3..6...........1...293.7..4................354...2....5...1.......
+...82....9.....4.....5..........168..75........2.........23..5.64....1...........
+...82..4..1....3...........2.93...........5.1......6.....751...4......9......6...
+...82..5.1.......3...........2...86..9.3..........14...7..5.2..3....7............
+...82.1..5.....9.46........7..9...8.......2............2..6..3....5....7.1.......
+...82.3..5......1.4...........3....47....5.........6........175.32.6.............
+...82.7..3........1.........7....82.9....1.......5.......7....3.8.4............91
+...83......4...6......1....8..7...1.2.............9....7.1.4....3....5.8......2..
+...83.....9....2..6..7.....8..2.....1......3.......4......19.8..2......7.4.......
+...83....2.....6..........1...37..8.4.5......6...........2..4...7.....3.1....4...
+...83....4.....1............289.........1.7...6..........2...895......3.1....4...
+...83....4.....5............3.26.......7..4..5.....1....2....38.8.....6......1...
+...83....51.......6........2..6..7.....4.2...........1.43.1..........52........8.
+...83...5.41...............5......23....74.................816.3..2..7........4..
+...83..1.7.....4..2..6..........72.9.3.....6..1.......5.....7.....3............2.
+...83..4..21..................2.1.7.85....6....6......4...9..........1.5......2..
+...83..4..51...............4......2.....5.9..3.........9....5.16..3..7.....4.....
+...83..4.12....9..7............21...5......7...........8....2...4.7.....6..5.....
+...83..4.9..5.....1..............9.1.....26...3.4.........1.7...4.....8......6...
+...83..6.4.1......5.........7.....2.9....1.......4.......9..5.8.3.2...........1..
+...83..7.64.........5..........23.........5.8......4.....5.41..2......3..7.......
+...83.1..92........7.......8.5...6......74...1...............73...5.6..........2.
+...83.2...15.....6.........7...8.3...4.....1....2..........1.5.3.6......8........
+...83.2...4....71..........3.2.6...........4.8........67.5...........3.2.....1...
+...83.4...12...5...3.......5...12...8.....6...........67.4............1....6.....
+...83.5...16...............87....4..4...2.........1...3..5........7...2........61
+...83.6....1...................1.29.64....8.....5......8.6.....3......1......2.5.
+...83.6..51................17.5.4...4.....3........2......9..1...26............4.
+...84..........1.6......7...24....8......1.....7..........5.27.16.3.....9........
+...84..........7.6......1...24....8......1.....7..........5.27.16.3.....9........
+...84......1...7..9..........3...1...7....3.....45.....5.....486......2......1...
+...84.....1.............7......173..8.....2.....5.6...5.27.....4......6........1.
+...84.....1....6...2.........5...27.8...9.......6..1..4......89.....1..........3.
+...84.....27.........6...........16..4....7..8..5.........7.2....1..3...6.......8
+...84.....73.......8.......5...1..........23......47..4.......12....7......3...6.
+...84...23.........7........28...4.......1.3..........6.....31.1...7.5.....2.....
+...84..67.......3.1.........76.....8....2.1.......5...54....2..2...........6.....
+...84.1..7.3...6...............73.5.21........6.......4......87.8.1..............
+...84.2..1.7.................6..1....2....3..5...7....4......71.8.3............6.
+...84.2..1.9....3............7.19....6....8...........3......1.4..6......2.5.....
+...84.3...91...............5..1.9.........64......3...63..2...........517........
+...84.3..2.1.......5........7...9.5.8..3...............6..95.1.3.....4...........
+...84.5..1.3.......2.......6..3.1..........2.......4...45.7...........16......2..
+...84.5..3.1.......2.......6..3.1..........2.......4...45.7...........36......2..
+...84.5..73.....................6.314.8.7...........9...9...4...1...3......2.....
+...84.6...1.......5........6..7............91...3...7.7.....5......92...3...1....
+...84.7..1.9...5..2........5.....3.......1.......9.....4..6..9....5...2....3.....
+...84.9...5................46.5.....7.....3.......1......2...658.3.7...........1.
+...842...5......3..............7.4..2..3.....3.......6...5..82..4..6.....1.......
+...85......3....4..1..........4.37.......85........2..8..6...3.5...2...........1.
+...85....2..3.....4.....7.......42...5......8.6..1....7....31.....6...5..........
+...85....3.....6..............2...845...3....7.......16...7.5...8.1............2.
+...85....7......2....1.......1...8...2...4......3..5..6...72.........1.8.......4.
+...85...3..1...2.....9......9.53....4.....71........2.65............71...........
+...85..1.24.......3............423...89.................79...8.9..1...........2..
+...85..1.32.......4............324...89.................79...8.9..1...........2..
+...85..2....2...4.6........3....76...8.....5..............367...24............1..
+...85..3...1....4..2.......3..64..........1..7...........7.12..54.........9......
+...85..3...1....4..2.......8..64..........1..7...........7.12..54.........9......
+...85..6.7..2.....1.........63.4..........7...5........4....1.62....3..........4.
+...85.1...6.2.......3........4..7.36.......2.8........1.....8......43....7.......
+...85.1..4.2...............8..2.4...1.....3.....6.....91..3........8..6........2.
+...85.6...3.....7..1...........1...87....3...4.....5.....5....4.....6.3.2........
+...85.6...3.....7..1...........1...87....3...4.....5.....5....4.....9.3.2........
+...85.6..2..9..............9.3..7...8.......1...6..5.......2.3..5..1...........9.
+...851...4..2.....9......3.63..7.......1..2........8..5...3..6...2...............
+...86....9..7......5.........6.2.8...3...5.........1.......4.3.6......5...81.....
+...86..4.2.1.........2..........57.83.....1..6.........5..3..6..7...1............
+...86..7.35.............1..2...94..........5.....3.....875........1..3..........9
+...86.1..42......3.........158..........72.....6......3....4.7.......6.....1.....
+...86.1..52......4.........418..........92.....6......3....5.7.......6.....1.....
+...86.3..4.......21..............71.2..3......8.5......3....9......14.......7....
+...86.4...23.......5....7......42...1.....6................5.326..1............8.
+...86.4..2......5....1.....5....43.....2....6..............572...6.3.....1.......
+...86.7........1.4..........36....5......1.....2..........3.28.14.7.....5........
+...87...1.2.5......4...........4..6.3.............1...1.....64.8..3.........5.2..
+...87...61......3....4........54.7..3.......12.........5....82..7...1............
+...87...93.....1..4..6............617....3.......2......91......2.....3.......7..
+...87..2.6.1...............5....61.3.8..4..........5...7.2...8.1....5............
+...87..3.52.......4..........3.9..7......54...8.......2.....5.....3....9...1.....
+...87..4..1....6..2..5.......6...1.35..4...............8..31.........25..........
+...87..4.3..5.....9.........8....2.......1.......9....61......9.4.2.........5.3..
+...87..5.3.1......4.........9.....2.7....1.......3.......9..4.6.8.2...........1..
+...87.2..4........1.........7....83.9....1.......5.......2....4.8.3............91
+...87.2..64.2......5.......8.7...3......51............3..7............51.......4.
+...87.3..4.1...............6..1.4.........73......5...53..8.....2.....7.........1
+...87.5..3......2.6.........7..1.8..4....3.............8.5.4......6...3.........1
+...87.6..2...........1......6..54..........214.........7.....5....2..3..5....1...
+...87.9.15.....7..2..4.........19...3.....8..............3...2..9.....3..7.......
+...89..3...1......5........43.....7.....512..6........29....5.....3........4.....
+...89.1..5.2...............8..2.5...1.....4.....6.....91..4........3..6........2.
+...89.2...3....71..........47.....5.....2...8............6.1...8.6......9.2......
+...89.5..1.6................7.6.1...5.....4.....2.....95..4........7..6........2.
+...89.5..2.6................9.6.2...5.....4.....3.....75..4........1..6........3.
+...894...1......7..........71.4........2..9..6.......53.9.5...........4.......8..
+...9....1.4.....2.53.......7..61....4.....8......2......13.8.........5........4..
+...9....134........65......7..1.2.......3.54..............4.65.2..8..............
+...9....135.......7.........8...62........73....1.....5......76...23........4....
+...9....14.2......3...........7..26..1.8...........3..5....24...6.....8.....3....
+...9....15.....6...3.......2...56........1..9....7..8..914............5.......7..
+...9....15.4......8.....6..7...2..4.....56....1.......2......5....1..9.....3.....
+...9....16.7.......2...........25.7..3..6....1.....8..4..1.3.........62..........
+...9....163.........4......3......9.....48.......5....71.2.....2.....5........48.
+...9....17..4............5.3.....7.8...1.5.......2........7.23.4.....6...1.......
+...9....38......6.1......5....2.54........17....3.......5.1.8...3........9.......
+...9....4...6..5....1......3.....21..7.4............8.95....6.......8.3.....1....
+...9....4.2.....5..1...........2.1..9.......34...........38.2..7..4...6.......5..
+...9....4.2....6...1.......7.35...........16.......2..4.5..8...9..7.........2....
+...9....42.7......8.........4....65.....81....1.......32.5...........87.....3....
+...9....54......8....6.....1.3...4...6.2.........8..7.7....3....5....6......4....
+...9....8.2.6......3.....7..5..4.7..6..8............2.9.1..........7.2..8........
+...9....83...2....1.6.......4.5.8....5....3........1...9.8...5.2...3.............
+...9....851.......2............2.35...8.....76........3......2....6.4......8..1..
+...9....851.......2............2.45...8.....76........3......2....6.4......8..1..
+...9...1..32...............56..4........32.....4..7...8.....2..1..5...........7.3
+...9...1.2.3......7........54.....8.....63....8..2....6.....4.3...1...........2..
+...9...1.4........3............4.8.2.1.56.....9............84..6.....3...7.1.....
+...9...1254.......3........83....4.....1.6.........7....2....6....74........3....
+...9...1284.7................1....3....6..4...2...........28...5.....8..7.......9
+...9...2....3..6...85......3......9.....1..4......5.......6.1.84..7...........5..
+...9...2..1.3......4....6..2......3.....5..7.....4....8...6.4..3..7...........1..
+...9...2..3.4.....1.........2..1.........75....9....6.7.....1.8....3.4.....2.....
+...9...2..5.............4...7....5.16..4....7...2.....2.....34.....5..8.....1....
+...9...2..65.......4.......2..7...8.3....2.......4.6..8..3..1........4.5.........
+...9...2..7.3......1....5..2......3.....4..6.....7....8...5.7..3..6...........1..
+...9...2.3..5.............6..4.7.1.......2.........5..82..6.......4..3...5.....9.
+...9...25.6...1....37......1..5...........34.......7......7.8.32.4...............
+...9...3....5..8...14......8..3...7......9.1.........496....3......1..........2..
+...9...3...7...4.....2......4..687.........9.....4....93.5...........8.12........
+...9...3..12.......8....4...7....8..3..6........5....25......6.4...8........1....
+...9...3..4.......5.........1..47....8.....2..........6..2....53.....7.4...8..1..
+...9...3..41.........2......7..4.1..2..3...........5......1.67.9......8...5......
+...9...3..5.....8...1.........6..1.598.7...........2......25...79.......3........
+...9...3..5....6....1.......7.83....2.......4...5..1..4...12.........95..........
+...9...3.6..4......1.......3.....7.5....8.1..4.5......2......9.....18........7...
+...9...3165.7...................2.8.5.....7......3......3.....28...1.......5..6..
+...9...329.18............4..3...2...6.....1......4.....2..8.......7..6..7........
+...9...4.2..3.............1.14....5.......63..8.......6...1.7......84.........2..
+...9...4.2.3......5.........4..3.91.....5.........2....6.1..8..7.......28........
+...9...4.5.....8..6..........2.5...6.4.....3......1......46.2..7.......5...3.....
+...9...4.5.....8..6........3.6...5.....4.2.............2..6.1...94....7.....5....
+...9...418.27.....3...........15....7.....8........2......32....1.....9.........5
+...9...431.7...5..3.........2....69.....1...........2.8.....7.1...2.4............
+...9...5.2..4.............1.15....4.......63..8.......6...1.7......85.........2..
+...9...51.2..6................5.1.4.76..........4.....9...3.6.8......2..5........
+...9...51.6..2................5.1.4.72..........4.....9...3.6.8......2..5........
+...9...6...5...2...8........23...5..9..1..............1....8.4.6...3........52...
+...9...612..3............4.9.....58......1.......6.....53...7...6..4..........2..
+...9...7........241.........29.....5.....16...4..8.......43....5.....8.....2.....
+...9...7...1.......5........3..1.5..6..4.3.........2.87......94....35............
+...9...7..6....3..25.........4.....1.....5.......3....8..14..........53......26..
+...9...72..6.1....5.........2.7...8.....6.5...........4..8.2...3.....1.......7...
+...9...8..3......57.........83.........2..7....9...3..6....51......48.......3....
+...9...8..3....4..62..........4.3...2......1....8.....5...7.2....8.....4....1....
+...9...8..45.......3.......9....2..41..8...........3..7.....91....63........5....
+...9...8..7.....3.2..5......83.6.......2..4........5..4.....2.9.....1.......8....
+...9..1...32...............47..5..6........3.....8....1.....4.89..3.6......2.....
+...9..1...32.........1.........7...49.....6......3.....7....53......6.8.2..4.....
+...9..1...36.......8.......5.....2....4.7........3..8.9..2.1..........73......4..
+...9..1...37.......8.......6.....2....5.4........3..8.9..2.1..........34......5..
+...9..1.8.24............3...756...2.8..1...........9......25...1............4....
+...9..2....1.......3..........63.71..5...4...9........2..87....4.......5.......3.
+...9..2...3.......8...............367..5.......2....4..4..6.1.......75......43...
+...9..2...3.....7..46......8.....6.1....37........4...2..1..5......8...........3.
+...9..2...41...............82.5........3...6.........19...6..3.2....45......1....
+...9..2...8.4......3.....5.9..75....6.....1.3......8..2.....4.......1.......3....
+...9..2..13.......4..........86.7...........1.......4.5...24....6....7......1..3.
+...9..2..13.......4..........86.7...........1.......4.5...24....7....6......1..3.
+...9..2..45.......1..........86.7...........1.......4.5...21....7....6......4..3.
+...9..2..65.......3.1.......2....5.......3.6.....1....7......3....2....4...5..8..
+...9..2..74........3.......5.....6.9....31.......4.......4...3.6..1.......2...8..
+...9..23..4...5......8......1..34.........9......1....6..2..8..2.9.............1.
+...9..28.1..6.....4.....5.........91.5.8.....3..........8.4........13....2.......
+...9..3.....7....6..1.......8..12...3.....4..............3..75.6...8.....1.....2.
+...9..3.....7....6..1.......8..12...7.....4..............3..75.6...8.....1.....2.
+...9..3...42.........1.........7...51.....6......4.....7....14......3.8.2..5.....
+...9..3...57.......4.......8.....16....4.5......7..2..2...6..8.........4....3....
+...9..3...71.........2.....5.8.1....2.....6........4...4..7..8.3..6............1.
+...9..3..6..4.......1......53....8.....12.....8....4..7......19....3...........2.
+...9..3..7..4...........8.2.38.2.......1...6..5............5.7.....83...1........
+...9..3..7..4......1..........381...3.....4........5..2......8.5.9.............16
+...9..3..8..4.....1.........95...2...3..6........1....7.....6.1...3.2..........8.
+...9..3..8..4.....1.........95...2...3..6........8....7.....6.8...3.2..........1.
+...9..3.2861...................47.6.....1.4..3.........4.....1.9....2......3.....
+...9..3.6.1....................41.7.5.3.....2....8....6.....14.3..2...........8..
+...9..36..4..2..........9..1.3..........84.............5.....487..39.......1.....
+...9..4...18.......2....3..3...6.5.......2.8............7....126..34.............
+...9..4...2.....7..........4..3..6...5..2..........1......5.7289......5.6........
+...9..4...3.......5..........6....5...38............181..4.5....2....7......6.3..
+...9..4...75.........1......2...7.......2..1........6.3.....7.5....8.2..9..6.....
+...9..4..5.8........1......3.....7.2.4.6.........1....82.3...........61........5.
+...9..4..5.8........1......3.....7.2.4.6.........1....82.3...........65........1.
+...9..4..86........75......1..34...........769...........256...3.....1...........
+...9..4.136.......5............4..3...1.2.....8..........1.6...4......5....8..2..
+...9..4.251................3.8...9..4....2.......1.......39..7.6......51.........
+...9..4.261................3.5...9..4....2.......1.......59..8.7......61.........
+...9..4.38.1................9.45....2......8..........6...78.1..4....5.......2...
+...9..4.67.....5..1.........4....62....813...............7...1..6..5............3
+...9..42.81....................31..72.5...6......9....4..6.8..........13.........
+...9..48.7.3......1............1.8.3.4....7..5..6............51.7.4..............
+...9..5...1..........3.....6...7.4..5.....3......8......7.1..8........124..6.....
+...9..5...84.......3.......2..6.7..........31....4..8.7....56........1......3....
+...9..52.8.4......1............1.9.4.5....8..6..7............61.8.5..............
+...9..6.....2...4..1.......7..3.5.........1.89............814..3......7.....2....
+...9..6.....8...4..1.......7..3.5.........1.29............814..3......7.....2....
+...9..6....1.........2.....96....3......3.5......4.....2.8.5...7......43.......1.
+...9..63..1...........2....2.6..5...8...4...3.......1....1.9...4.....5.....3.....
+...9..65.3.2................8...7.6.....42...9...3....4.....3.2...1......5.......
+...9..65.3.2................8...7.6.....42...9...3....4.....3.2...1......6.......
+...9..7........13.6..3.........7.5......15...4.......8..82....6.1..............4.
+...9..7...6....4..8........2....6.5.7.....3......1.....14....6....7....2...3.....
+...9..7.4.12.........6.....9.6....3.....2..1.7..8......3..1....8.....6...........
+...9..75...12.....3..............8.3.5.4...........9...9...8.2.7...3........1....
+...9..76...12.....4..............8.4.6.5...........9...9...8.2.3...4........1....
+...9..8...6......2.5.......9.27.........3..5........1.4..1.9.........3.5......6..
+...9..8...74.......3.......9..2............35......7.46.....12.....38.......4....
+...9..8..54........6.........9.2.1......6.7.......4...2......64...5...3...1......
+...9..8..54........6.........9.2.1......6.7.......4...2......64...5...3...7......
+...9..8.14...........2.........38.5.....4..3..1..........1.69..3.4......2........
+...9..81.3..4.....2.........8.7.6....1.....2.........3.6..1....9.....7......2....
+...9..82..46.........1.........45...2...6..........1..3.....9......7..6.1..8.....
+...9..83.51.........6..........1.9.6.2.4.....8.....7.........219..8..............
+...9..84.5.1......3......9..4.2..5.....67..........3......31....6......7.........
+...9..84.5.1......3......9..4.2..5.....76..........3......31....6......7.........
+...9.1...2.......3...........6....9..5..4......8.3.......7..16.32.......4.....5..
+...9.1...5.....4.....2.........4.5....3.6.....9........1.3...9.7.....6..4...8....
+...9.1...5.4......37..........5...41.6.2............3..8....2..4...3..........9..
+...9.1...5.8...............17......3..5.8..4..........31.6.........4.85.......2..
+...9.1...6.....5............7.2...1........29....3....4...6.7.55.....8.....1.....
+...9.1...7.....4...............4..153..67...........9..5..2.....12.........8..7..
+...9.1...8.......5...........245.....7....6.....8...3.5...2..........19..1....7..
+...9.1...8.....4...............7..513..68...........9..6..2.....51.........4..3..
+...9.1..8.3.....6....5.........3.84...9.4....5...........2..5..1.......9.4.......
+...9.1..8.3.....7....4.........5.63...9.7....4...........2..4..1.......9.8.......
+...9.1.2.3...8.............84.....1.7...3.......2.........7.3.6.1.5...........8..
+...9.1.6.5..4..................7..194.5.2....3.........1.6.7.........5........4..
+...9.16...8.....5............1...3.56..2.........4..8.9..7..1...4..8.............
+...9.2..........3.6.........7....8.21...6..........9.....15..6..2.3.......9...4..
+...9.2....3....8...5.......1.....4....9....6.....8.5..7......29...43............1
+...9.2...1..........5.......8.....7.....3..4.3...5.....2.7..6.....2..5.1......3..
+...9.2...1..........5.......8.....7.....3..4.3...5.....9.7..6.....2..5.1......3..
+...9.2...3......8....1...3...14..6...89..........5....53..8..........1..7........
+...9.2...6.....7....1.......2.....14....6.3...5.7..........4.857...3.............
+...9.27..34......5..........1..5..3...21......9.......6...3..8.......9..7........
+...9.27..34......5..........1..5..3...91......2.......6...3..8.......2..7........
+...9.28..7.....5.....1.........7.36..2........1.......3...6..7.4.......9........2
+...9.3.........1.....8.....1.6.5...........927........54.2......9.....3.....1.6..
+...9.3.........5.4......2..7.3....9...28.........5.......1..72.45........6.......
+...9.3....1....7.....6.....6..2.......7...8........1...4..1...53......2.....3..6.
+...9.3..7..16.....8.......5...7..39.4........5............4.2...9.....6.....8....
+...9.38..6.....4....1.......3....95.2...1..............8.3............127......6.
+...9.4...........2......7.....8..34.5.2......7............761.....52.....3.....9.
+...9.4...........5......7.....8..34.5.7......2............561.....72.....3.....9.
+...9.4.........3.....8.....1.3.6...........927........65.2......9.....4.....3.1..
+...9.48..57...................8..91.76.5.....2............7...5..1...4......2....
+...9.5..........3.6.........7....8.24...6..........9.....14..6..5.3.......8...2..
+...9.5..6.1....7.........4.8......952...7.......31........3.1..5..6..............
+...9.5.3.1...........2......7..8...4.5....1....36.....4...1..........25.6........
+...9.5.4.8.2.........1......6.....5.3...2.......8..9......7...3.59............2..
+...9.56..1...........7......6..2........4...2.9....7.....8..91.2.3......4........
+...9.6..8.4........7........5.6..74.8..2.....1.....3..2...8........1..........4..
+...9.6.2.4.1................2....95.5...4.....6...7......31.4...8.......7........
+...9.7....6.....4....1..........238.14...........3....7.1...5.....42.6...........
+...9.83..4......6....2.....7...65.........9.1.............3..7.21........98......
+...91...........234......6....1..89.2.3......5.........8.4..7........1.......2...
+...91....7.3......5..6........2..59..1......6.....5...4....78........2......6....
+...91.4..76......8...........9...12....54.........6...65...7.........9..3........
+...91.8..4.3......6.........8....7.1...6.3.........5..3......6....57...........2.
+...91.8..5.3......2.........8....7.1...5.4.........6..4......5....67...........2.
+...92.....3....6..6.....4......3..219..7.................3..87..21......5........
+...92....5.....4.....6..........179..86........2.........23..6.74....5...........
+...92....8.3......7......5......73...9......1...5.....1.....87..6.24.............
+...92....8.3......7......5......83...9......1...5.....1.....78..6.24.............
+...92..5.1.6......4.........9.....2.7....1.......3.......8..1.9.3.2...........4..
+...93....2.....5...6........3.....16...4...8....2.....4.....2.7....6.3.......1...
+...93....5......1....4......39...2.......6.5..........1..7.5.......2.9..6.....4..
+...93....5......1....4......39...2.......6.5..........1..7.5.......8.9..6.....4..
+...93..6.4.1......5.........8.....2.7....1.......4.......8..5.7.3.2...........1..
+...93.6..2.....3..1.........6....82....4.1......7......3..6....7.......4.......1.
+...93.8...47...............56..2.......8...7.3........9..7.4.........2.5...1.....
+...93.8..61....4...2.......3.....5.......1.......6.....7.....2....3...1.8..5.....
+...94.5..1.6.......2.......7..3.1..........2.......4...45.8...........17......2..
+...94.5..21............8...3.21...........4..8.........4....85....2...3.....6....
+...94.5..21............8...3.21...........4..8.........4....89....2...3.....6....
+...941...3.....78...........9.8..2......6.5...4.......5..7.....6......4.........1
+...95....2..3.....4.....7.......42...5......9.6..1....7....81.....6...5..........
+...95...87.....3.....4.....3...4...6...7...5.1.........9.....4......31...5.......
+...95.3...1......6...3..........1.7.94.......3.2.........2..9..6...3...........4.
+...95.3..81..........2.....6....8.4...5.....2.........7...24.........9.5.......1.
+...95.4...1.............2..7..4...6...5....1......3..89.....73.....18............
+...95.6...3...1............54....2..2..3........1.........4.83...1.....97........
+...96..2..4.....3.7..8.........31.....2...8..........7...2..9..31.......4........
+...96.4...1.............2..4..5...7...6....1......3..86.....53.....18............
+...96.4..1..7.....2.........6.....23.....2..1.5..........6..84.....3.7...........
+...96.5..2......3...47........8...4216....................126...9....8...........
+...97.1..5....4...2........3.4....2....18.9.....7......1....7......25............
+...97.3..2.1................7.8..6.....3..9...........5...4..12.....2.4..9.......
+...97.86.3..1...........7..56..1..........3..2.........7.....1...8..3......2.....
+...98.....4....2..5.........32..5......7....8.......1.8.9....7.....1.3..7........
+...98.....4....6..5.........32..5......7....8.......1.8.9....7.....1.3..7........
+...98..3..1..............5.3.85........7..1..6.....4......12.......4.2..7........
+...98.5..6.1....................1..2.9.....1..3......6...87.3........74.2........
+..1.....2....9.7............7....61.5...8.......4...2....1.2..8.6....3..9........
+..1.....4.....37......2....5..14.....2....63....8.....6..5....1.8.....2..........
+..1.....4.....37......2....5..14.....2....93....8.....6..5....1.8.....2..........
+..1.....5.3.....4....26....7.....2.8.....1.........6.....4..71.6...9...........3.
+..1.....6.....7.5....4.....38.............2.1......7..75.....3....12....4..6.....
+..1.....7...5...3........46...17.2..34..........8.....63...4...5.....1...........
+..1.....8....9..4....5......4.7..6....8.......9.......9...81...3.....75.......2..
+..1.....8...5..7.....3.....8..2.........3..1..7.....4..9...4...5.....3......1.6..
+..1.....8...5..7.....3.....8..2.........3..4..7.....1..9...4...5.....3......1.6..
+..1.....84....7.......3....3.....2...6.8........1......5....37...85...6.......4..
+..1....2.....6...5...8.....2.....18..5..4..........3..56......9...3.1........7...
+..1....2.....73.........6..46....7..5..2..........18..37..4.......5...1..........
+..1....2.....83.........6..46....8..5..2..........19..78..4.......5...1..........
+..1....2....6...7....8.....1...27...4.....6......3....62..........5..8...3....5..
+..1....2....73................5..7.362.............4.....4.1.8.53.......2...6....
+..1....2....9..6...............12..76.....4...9.......8.....51.....3...2.5.7.....
+..1....23.7.4............6.3..9..5.........8...2......59....4......62.........1..
+..1....28.5.9............1.3....2...69...........1....2.84..7.....6..9...........
+..1....3.....8.6......4....2.....4...6.3........9.....64..7.......1...9.5.......3
+..1....3....2.7......5.........8..1.26.......5........47..3..........6.2...4..5..
+..1....3....27........4....75.4...........81.2...........8.36..42......7.........
+..1....3....6....5...2...........4.25...1..........6......3.87.42........6.7.....
+..1....3....6..5...........2.......6....3..1....8...4.68....2......1.3...7...4...
+..1....3....6.5........8...56.2..4......7..1..8.............6.84...3..........2..
+..1....3....6.5........8...56.2..4......7..1..8.............6.89...3..........2..
+..1....3....6.8........5...56.2..4......7..1..8.............6.89...3..........2..
+..1....3....7....9.........84......6....31.......5.8...6.2..5..9.....7.........1.
+..1....3..8..6........2....6.....2....34.........5.8...2....54.7..3........1.....
+..1....32....65............25....7.....1...4.7........4..3......3......5...8..6..
+..1....346....9..........7.....2.6...37.......5...8...4.....2.....73.......1.....
+..1....356....9..........7.....2.6...37.......4...8...4.....2.....73.......1.....
+..1....366....8..........7.....2.8...37.......5...4...4.....2.....73.......1.....
+..1....367....4..........8.....2.7...38.......5...9...4.....2.....83.......1.....
+..1....367....9..........8.....2.9...38.......5...4...4.....2.....83.......1.....
+..1....4.....2.3..............4...1752..............8..5..3.6.....1.8...6.....2..
+..1....4.....2.6..............4...18.7.....3.25.......6...5.7.....1.3.........2..
+..1....4.....3.5.............42.1...6.....3..8........53..6.......7...12.8.......
+..1....4.....3.5......7....36..5.7.....1....25..4......8.2...1.7.................
+..1....4.....3.6.....7.........54.8..3...1...7...........6..2.184.......5........
+..1....4.....5..6....8........3..1.764.......2........56..4.........13.......9...
+..1....4.....5..6....8........3..7.164.......2........56..4.........13.......9...
+..1....4.....6..5....8........3..1.745.......2........56..4.........13.......9...
+..1....4....2..6.....3.....32.6..7......18...6........25....3......4..1..........
+..1....4....3.8......2..3..7...6.4..8..5...........9...9..1...........82.......5.
+..1....4....5....2...3.....31.6.........4.78.5.........4..7..........6.3......5..
+..1....4....7....3...9.....24....6.....1..5...3..2........46.5.8.....7...........
+..1....4....7..6.....2.........13.5.6...4.....2.......84..5.......6..3........9..
+..1....43....75.......6.......4..21.65.................8.2..7..4.....5.6.........
+..1....45....2..7.6............8.3...5........4.......3..1..6.....4.7...2....5...
+..1....45...73.............36....7...2..4.........8......2..38...4..5...1........
+..1....5.....2.3..............5...1824..............9..6..3.7.....1.9...7.....2..
+..1....5....68.............2.....4.6..73...........8.....5.1.3..4..6....78.......
+..1....5....69.............2.....4.6..73...........9.....5.1.3..4..6....89.......
+..1....5....8..3...........5......2143.7..............3....67...6..15.......2....
+..1....5..4..9.............6..1.5.7.93............7.......2.3.9..58...........4..
+..1....5.4...3.......6..2......6.3.4..5...1...8..........5.1.7..2.......3........
+..1....56....73..........2....52.....3....7...4.6..........84..2.5......1........
+..1....56....73..........2....52.....4....3...7.6..........84..2.5......1........
+..1....56....73..........2....52.....4....3...8.6..........94..2.5......1........
+..1....56....73..........2....52.....7....3...4.6..........84..2.5......1........
+..1....56....73..........2....52.....8....3...4.6..........94..2.5......1........
+..1....56....73..........2....52.....8....3...7.6..........74..2.5......1........
+..1....6.....5.3......28...54......23..6..........9......7..61.2.........5.......
+..1....6.....5.7.....8......6.....144...3...........2.75....3.....1..5.....2.....
+..1....6.....5.7.....9......6.....184...3...........2.75....3.....1..5.....2.....
+..1....6.....7.5............7......4.....2..16..1......5....21.3..74..........8..
+..1....6....48.............2.....5.4..73...........8.....6.1.3..4..5....78.......
+..1....6....49.............2.....5.4..73...........9.....6.1.3..4..5....89.......
+..1....67...53.............52....3...4..8.........6......2..58...6..7...1........
+..1....67.5..3..............3....52....7.8......6.....8..1.........6.3..7.....4..
+..1....7.....2.......8........1..5.63.....2...4...7.......31.5.82.......4........
+..1....7.....5.4...........54..2....6.......1...4...9.3..1.7....8....2.....9.....
+..1....7.....6.4...........54..2....6.......1...4...9.3..1.7....8....2.....9.....
+..1....7.....8.3..............2.19..53............7...34..5.......6...218........
+..1....7....25.......8........41.5..76....2..3............67.3.82................
+..1....7....6.2.......3.......4..81.53..7.....2.............2.67..8.............3
+..1....7....8...2.....5........1.3..8....6....7.......26.7..........41..3.....5..
+..1....7..3.5.........4.6.....18....64.......3..........73.1.........2.8......4..
+..1....7.2...6.......3....8....4.15.38.6...............3....4.6...51.............
+..1....7.4...3.......6..2......9.3.4..6...5...7..........7.1.8..2.......3........
+..1....8.....3...7............1.45..72..........8........6..14.67..2....3........
+..1....8....4..3..9..2.......8.16....2......4......9......3..1.43.......5........
+..1....8....6....9.........92......4....18.......3.7...5.2..3..4.....6.........1.
+..1....8....7..3...........54.8........9..61.........2.7..15...3.....9......2....
+..1....8....7..4...........54.8........9..61.........2.7..15...3.....9......2....
+..1....8....8..3...........43.7........6..51.........2.6..14...3.....8......2....
+..1....8....9..5..............6.7.3195.2...............6..18...4.....2......3....
+..1....87.6.3.2............25....6......84...4...........5..2....7.3....8........
+..1....9....4........3.........7..1.32.......4..6......8..1.2.....59..........4.8
+..1...2.......78...7..3....3...74....6....51........2.2..5....4...1..............
+..1...2......43.........4.837..........6..8...4.........61...5........379........
+..1...2.....5....8......3..6..4...7.28..........1......7...8.........51.....3..4.
+..1...2.....7...4..5...6...4.32............65......8.....41.3...6.......2........
+..1...2.....73....4...5.....7......8..24............3.6....14...3.....5.......1..
+..1...2.....8.3...7..4......5.6...........12.......7..6......58.4......3....1....
+..1...23.8..7............5....6....9.....2..71.........2....3.....48.....5.1.....
+..1...3......2..5..6.4.....5......4......1........7....3....1.72..85..........6..
+..1...3......5..4.....3....2..8......6....7........1..53.....2.4..7........1...8.
+..1...3.....2....5...8.........3.71.52................26.5.........1.47.8........
+..1...3.....2....5...8.........7.14.52................26.5.........3.71.8........
+..1...3.....2...7..........85.....2.....61.......4...57.....1.6.2.3...........4..
+..1...3.....6........5.........9.2..5..7.....46........7..23...8......5......1.6.
+..1...3.....8....5...2.........3.71.52................26.5.........1.43.8........
+..1...3.....8.9.....72.....8..5...........1.6......7..24.....8..5.....9.....1....
+..1...3...57.......6.4..........615.3..8...........6..9......24....1............8
+..1...4......6........7....5......67.4.2............8.7..42....68..........1..3..
+..1...4.....36................2.1..875.....3....4..........42..3...5....69.......
+..1...4.....39................2.1..875.....3....4..........42..3...5....69.......
+..1...4.....5...6.....6........8..5124.......3...........3.42..76............1...
+..1...4.....85....9........2.....97..5.6...........1...8.....35....4..8......1...
+..1...4...2.1.............68...34.......7..2...........7.6.1...4.....3.....2..5..
+..1...4..2.....8......6.....7.4....246..5.......3..1..8..1............6........5.
+..1...4..3...7................2..1.4.3..6....7...........5.12..6......3..8.4.....
+..1...4..5...8................2..1.4.3..7....8...........6.12..7......3..9.4.....
+..1...46.2....8.........1......25..8.14..........3....53..........6..7.....1.....
+..1...46.5....8.........1......25..8.14..........3....23..........6..7.....1.....
+..1...5.......2.4.....3.....4....1.62....8.........7..35.....2....71.......4.....
+..1...5......6..4....3......6.....3.2....1......7.9...54..8..........2.1......9..
+..1...5.....3...........6..86..1....4......3........9.5.....2.1.7.9.3......4.....
+..1...5.....6.........7.......32...16....5....4.....7......12..38.......7..8.....
+..1...5.....6.........7.......32...16....5....4.....7......12..39.......7..8.....
+..1...5.....6.8........2...5..9............86.......4..4..7.2..28...........1.3..
+..1...5.....8.........7.......32...16....5....4.....7......12..38.......7..6.....
+..1...5.....8....7.........83.6...........14........7.6.....2.3.5..3........14...
+..1...5.....8....7.........83.6...........14........7.6.....2.3.5..3........41...
+..1...5.....8...3..........82.7........2..1.4........3.6..15...5......7.....4....
+..1...5.....82..........6..72..4....5.......3......1..3......2..8.6........1...4.
+..1...5.....9.........7.......32...16....5....4.....7......12..38.......7..8.....
+..1...5...3.4.................12..3.5....8....7.......64.3.....2.....1.5......8..
+..1...5..2.....4......7.....8.5....247..6.......3..1..5..1............7........6.
+..1...5..8...3..........1..32.....8....5..7.....4.......514.....6.....32.........
+..1...53.8..2.........9...47.....68..3..4.........1......8..1...94...............
+..1...54..238..............4.....16....3.9........2...7...1.....9......2....5....
+..1...54..238..............4.....16....9.2........3...7...1.....9......2....5....
+..1...56..6....1...7.4.....4..2.3......8...........7......7...22......8.....1....
+..1...6.......2.4.....3.....6....1.32....4.........7..84.....9....17.......5.....
+..1...6.......9......5.........16....4.....5.....8..3.35.2........7..1..4.....8..
+..1...6......3...2.7.......8..9...7....6.1...43.......2...5.9.....2............1.
+..1...6......3..7.....2.......14...8.3.6.....5......2....8..1..27.......4........
+..1...6......34......5.2...27.....4....1....84.........4..8....3......2.......5..
+..1...6......41.......5.......6...48.8.....2......7...42.3.....6.....7........1..
+..1...6......7...4...2.....45..6.3........81.7...........1...2.6..5......7.......
+..1...6......7..5..........54.....7......1.2....3.....7.....1.8...2..3...8..4....
+..1...6.....2....7.............3.14.72.5......8.........6.41...5......82.........
+..1...6.....25.....3........7....3.6....8.1..5..4..........1.4.9.......5.......2.
+..1...6.....3.........8.......52...17....6....4.....8......12..37.......8..4.....
+..1...6.....3.........8.......52...17....6....4.....8......12..37.......8..7.....
+..1...6.....3.........8.......52...17....6....4.....8......12..37.......8..9.....
+..1...6.....3.........8.......52...17....6....4.....8......12..39.......8..4.....
+..1...6.....3.........8.......52...17....6....4.....8......12..39.......8..7.....
+..1...6.....3.........8.......52...17....6....4.....8......12..39.......8..9.....
+..1...6.....7.........8.......52...17....6....4.....8......12..35.......8..3.....
+..1...6.....7.........8.......52...17....6....4.....8......12..35.......8..9.....
+..1...6.....7.........8.......52...17....6....4.....8......12..37.......8..9.....
+..1...6.....7...2.....4....5...31....2.....7......9...85.4...........3.1......9..
+..1...6.....7...2.....4....5...31....7.....9......8...76.4...........3.1......8..
+..1...6.....73..................681.72.4..................15.8.47......23........
+..1...6.....8.........3.......52...17....6....4.....3......12..37.......8..9.....
+..1...6.....8....5...2.....85......2....1..4.....6........3.1..4......3..2.7.....
+..1...6.....9.........8.......52...17....6....4.....8......12..35.......8..3.....
+..1...6.....9.........8.......52...17....6....4.....8......12..39.......8..3.....
+..1...6.....9.........8.......52...17....6....4.....8......12..39.......8..4.....
+..1...6.....9.........8.......52...17....6....4.....8......12..39.......8..7.....
+..1...6.....9...2....3........27.4..3...4....98...........6.5.123................
+..1...6...8..7.........2...2.....3.75.64........1......3.6..5.........1.7........
+..1...6...9..8.........2...2.....3.85.64........1......3.7..5.........1.8........
+..1...6.32...5.4...........56....2.....7.8......1........6...7.8......1.....4....
+..1...6.33...5.4...........56....2.....7.8......1........6...7.8......1.....4....
+..1...6.5.32.8.................2..7.6.......4...1..........43..5..6......1.....8.
+..1...67.....4.......2.........5..42.7...6.........3..25.3..........18..4........
+..1...7......23.................5.8276..........8........7..81.25..3..........4..
+..1...7......43......52.......1..6.934.......2........48.....2....6..1...........
+..1...7......89.......2....3..5..4......6..9........2....7..1..62........9.3.....
+..1...7......89.......2....3..5..4......6..9........2....7..1..62........9.4.....
+..1...7.....2........9.....6..3...2.7.......3....8........418...2...7...59.......
+..1...7.....2..1.....4.....25.....4......8.5.....7....43.6.........1.8..5........
+..1...7.....2.3......4........1..8..24........9.......4...6..3........42....7...5
+..1...7.....3.4......5.....4..2..6......8.1..58.......3......54.6..7.............
+..1...7.....4.5.......8.......71.6..52.....8.3........84...2......6..1...........
+..1...7.....52........8.4.....3..1.529.......8.........8.....2.4..6..........7...
+..1...7.....52.......64.........31.728.......4.........4.....2....7..3..6........
+..1...7.....8...2.....4....5...31....2.....8......9...46.5...........3.1......9..
+..1...7.....8...3....3......6..4....5......2.....91...3..2..6........1.4.8.......
+..1...7.....82........3....28.3..........61..5...........4.76..39.....2..........
+..1...7...6.3.........5.........7.56...1............2.85..2....2.....3.....4..1..
+..1...7..2..3........6...4..4....57.65.8...........2..3.......6....5........7....
+..1...7.345.1..............2......4....6...5...7..........372..68...........2....
+..1...7.6.53.9.................2..8.7.......4...1..........43..6..7......1.....9.
+..1...8......2.......5..........713.6..4......5.......54......6....1..7.2....8...
+..1...8......62.......3.......4.51..38.......6........2..7........5....4.6.....3.
+..1...8......62.......3.......4.51..68.......3........2..7........5....4.6.....3.
+..1...8.....2.4......3..........2.64....7...3.......2.5...1.7..46........2.......
+..1...8.....5...2....4........12...675.....4.....8....34.......5.......7......1..
+..1...8.....5.2......3........78.6..2.......35............7.18.35........4.......
+..1...8.....6..2......7....28.5.........4..13.6...........3..746..2..............
+..1...8.....62........4.......5..1.347.......2...........3.8.5.62.....4..........
+..1...8.....63........4.......5..2.147.......3...........2.8.5.63.....4..........
+..1...8.2...5..4...........6..3...5...4.8...........1....42.7..53........1.......
+..1...8.4.2..6...............74.5...6......3....1...2.4..9.....36.............1..
+..1...8.42..6..7.............4.5........3..6..8.......35.....2.6....1......4.....
+..1...9......85.............4.6...8....9.1..........2.28..7.......3..1..6.....5..
+..1...9.....53........2....38......5...6...2......7......7.16..24.......5........
+..1...9.....56.....8........4.8.1...5.....67........2....4.3..86...7.............
+..1...9.....58.....7........4.7.1...5.....68........2....4.3..78...6.............
+..1...9.....86.............35......8...2.1.4....9.....67..5.........92..8........
+..1...9.....87.............35......8...2.1.4....9.....67..5.........92..8........
+..1...9..5..2..............28.5.....4.....3.9......1.....6.1.5..9..3....7........
+..1...9..5..8..............28.5.....4.....3.9......1.....6.1.5..9..3....7........
+..1...9.2...5..4...........7..6...5...4.9...........1....42.8..53........1.......
+..1...9.46..7..8.............4.5........3..7..9.......35.....2.7....1......4.....
+..1..2...........5.......6.....5.3....9...2.....67.....7....13.8..4.....65.......
+..1..2.......6.7..5......8.36....4..2..5........1.........3...2.7.....1...6......
+..1..2.......7.8..6......9.37....4..5..6........1.........3...6.8.....1...7......
+..1..4.......8.3............6...7.543......6.........1...36.2..84..........2.....
+..1..5......7...4.......8..46.2.....8.......3...5..1...4..1..6.2...3.............
+..1..5....7......3...2...4.2..9...........58.......1.....71.6..5.8.......4.......
+..1..6..........25.......4.....3.6..4..5.....8............613..54.2......7.......
+..1..69...7.1...............3.....81....92..........7.9.6...4.....75....2........
+..1..7......3...9......9...2..51.....9.....4.....8.......6..8.143.............2..
+..1..7....4.....8....6...5..5.2.....6.....7........1..3..5...2...7.3.4...........
+..1..8.........73....7.....5.....6......14....9...........4..1876.5.....2........
+..1..8......7..2.........7.6......5.....14....9...........4.1.875.6.....3........
+..1..8...2...4..............9....78....6...5.....2....6.....4.3.3...7......1....2
+..1..8..7.......41....3.....2.1.....3.....2.......5....9.42..........38.7........
+..1..9.........32...........6.25....4.......9....3..7.7..3......2....5.......8..1
+..1..9......5..4...........42.7.....6.......3...8...1..4..1.2......3..9.7........
+..1.2...........57.......6.2.....4.....5.7......9.....45....2...7.3.........1.8..
+..1.2...........83.........4...7.15..6....2..3...........8.3..962..........9.....
+..1.2.........4.3........65....7.2...3.6...........8.....5...1.2..3.....4.....7..
+..1.2.........4.3........65....8.2...3.6...........9.....5...1.2..3.....4.....7..
+..1.2........3.7..8........26....3.....1....2.7.4........8...1.53.........4......
+..1.2.......6...8..............724..6......5.8........56.3...........7.1.4....2..
+..1.2.......7...9..............825..7......6.9........67.3...........8.1.4....2..
+..1.2.6...7.5..............6.....4.1.5.3.8......7..2..2...4...........3........7.
+..1.2.6...7.5..............6.....4.1.5.3.8......7..2..2...4...........8........7.
+..1.2.6.8.5.7......4.......3...6.1.......1..........7....4...5.2..5.....6........
+..1.3.......4...5..........5......72.3.16.......8.....2....76..45....1...........
+..1.3.......5..7........2..27..1.....4....5.........8....4.5.6.6......3....7.....
+..1.3.......6..4.........8......8..3.2.7.....4......1..5..4.6..6.....2.......1...
+..1.3.......6..4.....7...6.5.....3.1.7.2.............986.....2.....1........9....
+..1.3.......6..8...............4..32.8.5.....6........34....7.....1.95..2........
+..1.3.....6....2....8......3...7..2..4....8...........5......734..8....5...1.....
+..1.4..........56........2.2..65....7.....3..........145.2..........3..8.2.......
+..1.4..........73..........75....6......1...83.........2.....945..7.6......3.....
+..1.4.........3.6..........36.....9....12....5.............72.1...8..4..93.......
+..1.4.........6.3..........36.....9....12....5.............72.1...8..4..69.......
+..1.4.........6.3.......5.....12...7.3.5.....4......6....7..1..38.......6........
+..1.4........2.7.........5362.....4....8....17.........7.3.....5.....2.....1.....
+..1.4.......3...7.......2...7..3..642................1...2.75..84..........5.....
+..1.4.......3..6...........5......14.8.2............9.63....2..7....1.......9.5..
+..1.4.......3..6...........5......14.8.2............9.76....2..3....1.......9.5..
+..1.4.......6....8.........4.....12..6.3...........7......12.7.65......38........
+..1.4....2......6.....8.5.....2..1...8....4..3..6......4..5..7....3...2..........
+..1.4....5.....9...........49..5.......8...1.6......3....1.8..27.....4.....3.....
+..1.5..........3.4........663....4.....71..5....2........8...2.49.......3........
+..1.5.........4.3.......2.....7..1..38.......4...........16...753.....4....2.....
+..1.5........4..9..6..........7.8..1.4....2..9..6.......81..3..2......4..........
+..1.5........6...8......1.....2.1..756.....4.3........4.....53..8.7..............
+..1.5........6..3.......8.....42.1..95.......3...........1....2.7.8.....4......5.
+..1.5........6..8.......3..62......5...4..1..8........2......6..8.3......9.1.....
+..1.5.......6....2......3.....1...8423........7...........275..6......4......3...
+..1.5.......6..3...........68....2...3...1.......4.7..7......158..2............4.
+..1.5.......6..3...........68....2...3...1.......4.7..7......159..2............4.
+..1.5.......8..3...........68....2...3...1.......4.7..7......158..2............4.
+..1.5.......8..3...........68....2...3...1.......4.9..7......158..2............4.
+..1.5.......8..6...........68....2...3...1.......4.3..7......158..2............4.
+..1.5.......8..6...........68....2...3...1.......4.7..7......158..2............4.
+..1.5.......8..6...........68....2...3...1.......4.7..7......159..2............4.
+..1.5....7.....6...............4..1.37.......6.............74.1.2.6.9......3...8.
+..1.5..62.38..................3.74..2......7....8......7....3..6...2.......1.....
+..1.58....2....6..............4..26.8...3..........7..5......31.6.7........2.....
+..1.6...........32....3..7....54.1..28........6.......3..2........7.8.........4..
+..1.6...........47........3.7.5...........82.4....3......18.6..35.......7........
+..1.6..........2.5......3..32............1.6.....7..8.5..2..4...6.3............7.
+..1.6..........2.5......3..32............1.6.....7..8.5..3..4...6.2............7.
+..1.6..........43....8......7..1....8.....3......2....64.7........3..51.........2
+..1.6..........5.3......2..52............1.6.....7..8.2..3..4...6.5............7.
+..1.6........4.3.......8.7.54......6...2...1.3........2.....4...3.7........1.....
+..1.6.......3..7...........4.....26......1..8.5.9.........8..1.2.....4..37.......
+..1.6.......4...7........5.....1.3...8.....4.5........93.5........7..1........6.2
+..1.6.......5....8.........3.....17..5.2...........9......91.6.54......28........
+..1.6.......7...4...........6..5.1.348.2..............7..4...2.....1.5..2........
+..1.6.....3....7.....4.....4...8...6.7.....5........3....3.71..6.....2.....5.....
+..1.6.....4.....5.........3.7....68....5.3......2........49.1..2.....8..3........
+..1.6....4.....2.........8........367..5.........8..1....2.45.....7..4...1.......
+..1.6....4.....7.........8........362..5.........8..1....2.45.....7..4...1.......
+..1.6..243..1..............7.....1...8...5.......2.......7..3...2.....6...93.....
+..1.68....4....7..............5..47.8...3..........2..6......31.7.4........2.....
+..1.7...........25.......4..2.4......4....7......6.3..3..5.2...6.....8.......9...
+..1.7...........32.........62.....7....81....3........47...6......5..8.1......9..
+..1.7.........98......5....64.....3....1...2.9........4..3........2..1...9....5..
+..1.7........3.5..........2...8..61.52................75.6..........5..14......7.
+..1.7........6.2.........5.32....6.....2............1.87....3.....1.9...4..5.....
+..1.7........8.2.........5.82....6.....2............1.67....3.....1.9...4..5.....
+..1.7.......2...5....4.....56.3...4.2..............9......917..42.......8........
+..1.7.......4...5..........34.5..6.....3....1......2...6..18...5......9.....2....
+..1.7.......4...8........6.....1.3...4.....5.6........43.6........8..1........7.2
+..1.7.......4...8........6.....1.3...4.....5.6........43.6........9..1........7.2
+..1.7.......6....8.........4.....17..6.3...........2......12.4.65......38........
+..1.7.......8..4...........49.5...6........31...2.....2...16....4....5......3....
+..1.7.....2....3...4..........2...4...73.....5.......18...51.........26.......4..
+..1.7.....4....3...2..........2...4...73.....5.......18...51.........26.......4..
+..1.7...42.....6..............3.25...7.....1...46.....3.....2...8..4.......9.....
+..1.8...........36........2.3...2.......7.5..8........62.3........5..14.7........
+..1.8...........36........2.3...6.......7.5..8........62.3........5..14.7........
+..1.8...........43.........45......72...1.6..3...........4.2......3...1..9....8..
+..1.8...........43.........73.....8....12....4........58...7......6..2.1......9..
+..1.8...........5.........432.4........7...16......8......1.2..4..5.....97.......
+..1.8..........34..........32.....6.5...1...74...........4.51...9......8...3.....
+..1.8..........6.7......3...5.....4....2...8....6.3...37....2..2...4.........1...
+..1.8........2.3.........6.32....7.....3............1.78....4.....1.9...5..6.....
+..1.8........6.7.........5.72....6.....2............1.87....3.....1.9...4..5.....
+..1.8.......5..2...........65......4....3..1.2.............173.54.2...........8..
+..1.8.......9...2.......3...5.....48...2..6..7....3.......4...128.......3........
+..1.9...........68........3...21.7..48.......3........6..3...........92..5...8...
+..1.9.....4.....3..........52.4.........1.8..3..........6...1.7...5...2....3.9...
+..1.9.....8....6.......4.5.87.....2.9...6.......1........8.7...4.......9......1..
+..12.............3.......7....5.1..64.....2...8..3.......6..1..3......8.74.......
+..12............36..4......68..3..........1.....5........1.72..5.....7..34.......
+..12...........56........4....5..2.146..8....3........68..4.......7.1............
+..12...........56........4....5..2.164..8....3........48..6.......7.1............
+..12..........54.........9.....9.71..2.......3.........5.3..6.24...1..........8..
+..12.........5.4..............3...1247.......5...........6.8.3..5..4.7..6........
+..12......8.....5........7....3.16..47.......5..........4...2.3....7.1......4....
+..12.....7.....3...........38....7.....7....64..........6..5.1.....43....2..8....
+..12..6..3...7.............8..43.....6....5..........1.257..........5.3........8.
+..12..6..3...8.............7..43.....6....5..........1.256..........5.3........7.
+..124.....6....3..............4...21.3...8..........7.....359..8.7......2........
+..128...........7........6.76.3.....4.....8.....5..1......1.5...4..6....2........
+..13............46.........6......873..51........2....4....85...7....1...6.......
+..13............49.......2....63....24..........5.....78....3......1.6..9....2...
+..13...........45....8.....42...6...6.......3....7..1..4.15....2.....6...........
+..13...........47.9.....8..74...8.......9...1.......2..8....3..6..1........2.....
+..13...........94.8.....7..94...7.......8...1.......2..7....3..6..1........2.....
+..13...........96.8.....7..94...7.......8...1.......2..7....3..6..1........2.....
+..13.........8...7.......2.76.2........1..3..8........4...6.5........19..7.......
+..13........5...3..7.....2.3..2..6....8...7........1......71...54...........6....
+..13........5...3..7.....4.3..2..6....8...7........1......71...54...........9....
+..13........6..5...8.....4.62....3......8.1......4....7...2..8.3..5..............
+..13......2....4.....8.7...2......37.6..2...........8...4.1.5........1..8........
+..13......23............57.57..6...........1.4........8.....6.....7..4.....1.2...
+..13......23............57.75..6...........1.4........8.....6.....7..4.....1.2...
+..13......47..........2..5.7...65.........3.1.........28.....6....1..2.......8...
+..13......7.....2.........9.5.6.73..21..........4.....8.....46.9...2.............
+..137...........54.............9.3..58.......64.......4..6.5.....2...7.....1.....
+..138...........54.............9.3..75.......64.......4..6.5.....2...8.....1.....
+..14..........8..6......2.....2..14.57.......6...........1...7.3.......5.2..6....
+..14.........3..2.............1.65..7......3.2........32..7.......6..1...8......4
+..14.........7...2......3.....1..84.25........3...........52..67......1......3...
+..14.........7...86.....1..3..2.5...5....1..........7..7....24..8...........3....
+..14.........7..2.............1....57.....1..2...3.....8....23..4.5.1......6.....
+..14.........7.6..4.......83..1..2......5.71.............2...43.7........6.......
+..14.........9..2.......3...7..3.6.84..............5.....2...4165..........9.....
+..14.........9..8........3698..3.......1..2..............2.1......5..4..86.......
+..14........5...3.9.......2.5....48..3..2........9....1...8.......7..5..2........
+..14......3.....7........2...4.3.1..2...7..........9...8.1..4..7..5...6..........
+..14.....6.......5....3.2...2..8.9.........1..........39....8..2..1........6...4.
+..14.....9......6........5...7.8.1...5..6..........4...6....82.2..1........3.....
+..14..5...37...............4..1...7.65.2.............8....73...5...8..........2..
+..14.2....3....5.....1.....4...8.7....6.5.8...........2......4.87..............1.
+..14.9...5.....8.2...........61...4.....2.3......5....32..........7...1..8.......
+..143....7......8.............7.2....14.........6...2.....6.4.185.............3..
+..143.6..3......5....8........2.1...75........8.............4.8....75.........2..
+..143.7..3......5....8........2.1...56........8.............4.8....65.........2..
+..15............4.......2...4.3.....26..........1..7..8....6..4....2..3.......51.
+..15..........13........8........69....7...2.3....8......21....84........3..6....
+..15..........2.3..........23..4..7....61....9...........8..6.134.............5..
+..15..........63........8......3.1...5.7.....84..........2...4........576...8....
+..15.........2.7.........9....4.3.6.28.......7..6......4.1...........2.3......4..
+..15.........2.7.........9....4.3.6.28.......7..6......4.1...........2.8......4..
+..15.........3...8......9.....1..6.27......5..4..8.......2...1.37.......8........
+..15.........3..7.....2....23....6.....8.4.1.5.........7.1.9...6.....2...........
+..15.........7.4..............1...8273..4................2.1.5.46....7..3........
+..15.........7.8...........5......167...2...........3....1.6..347....2...8.......
+..15.........7.8...........5......167...2...........3....1.9..347....2...8.......
+..15.........8..3.......7..36.....2....4.3......1......7....1.58...2..........4..
+..15........1..4.........3..7..83.........1.6.......2....64.5..83.......2........
+..15........2...9..8....4..2......5..3..8........4....6..1....3....7.8..5........
+..15........2...9..8....4..2......5..7..8........4....6..1....3....7.8..5........
+..15........4..3..2........63..7......4..2..........1..4.15..........2.8......6..
+..15........6...4.8.......2.6....53..4..2........8....1...9.......7..6..2........
+..15........8...7........9.3.....5.8.....74......2.......68.3..72........9.......
+..15....8.7...................462...8.....1.......7....4....27.5..38...........6.
+..15...64.7..3.................2.37.4..8.............532....7.....4.1............
+..15..3.......4.8..........84...........2.6...9.........623....7......94...1.....
+..15.2...7......9..........63.....8..8.2........15....4...9..........1.3......2..
+..15.2...7......9..........63.....8..8.2........15....4...9..........3.1......2..
+..15.6.......3.2..28.......3...42..........51.........74....3.....1...6..........
+..15.6.......3.2..28.......3...72..........51.........74....3.....1...6..........
+..15.7.......3.2..29.......3...62..........51.........84....6.....1...7..........
+..157.....2....8..............3..6..7...5......4...2..53.....7.6..2............1.
+..157....2......3..............6.7.453.............1.....3.2.8..64.........8.....
+..16............82.........32......5...1.94..7...........4..61.2...3.....5.......
+..16...........2.8...3..5.....2.8...9......4.....5.......7...1..5....3..48.......
+..16...........8........2.....45..7.2...7....38.......4....8......1....6.2....5..
+..16...........8........3...6.2.1...3.....5.4...7......4.....2.....8..1.8...5....
+..16..........9.3..........73.....4....81....9...........5..1.8....2.6..42.......
+..16.........3.8.........2....5.4.7.39.......8..7......5.2...........3.4......5..
+..16.........3.8.........2....5.4.7.39.......8..7......5.2...........3.9......5..
+..16.........4..5..........58.....2..4.7.1......3.....4.....1.69...2..........3..
+..16.........4.3..............2...6137.......4...........5.8.2..4..3.7..5........
+..16.........7..5..........59.....2..7.8.1......3.....4.....1.67...2..........3..
+..16.........8.9...........5......168...2...........3....1.3..748....2...9.......
+..16........1..5.........4..8..43.........1.7.......2....75.6..34.......2........
+..16........7...4..........48.....3....2.15...9.......7.....2..3...4........8...1
+..16.....2.....4......7..3..8.2..1..3...5............673.....5....1.4............
+..16..2......3..8..........58..4..........7.1.3.......4......5.3..7........1.2...
+..16..3.......8...............21.7...8.3.....4......5..9...4.8.3...7..........2..
+..16..5......3..9.2........83..2............1......7....61.5....4.....3....7.....
+..16.7.......3.2..28.......5...42..........61.........34....5.....1...7..........
+..16.8.......3.2..29.......5...73..........61.........34....7.....1...8..........
+..16.8.......3.2..29.......5...74..........61.........34....7.....1...8..........
+..17............4.......5..4.....3.....6....7...18....34...5...2.......1.5.....6.
+..17............53.........53..2.......1..7.86........42...5.3....6..1...........
+..17............53.........53..2.......1..7.86........42...5.3....6..8...........
+..17............53.........53..2.......1..8.76........42...5.3....6..1...........
+..17............53.........53..2.......1..8.76........42...5.3....6..7...........
+..17...........2.4......6.....8...1.26........5...........65..2....4..3.7....2...
+..17...........24.....3.6.....24.....7......5.....6......8...1365.......4........
+..17...........34....8......4.13....2......6..........42..6.........51..6.......7
+..17.........8..5..........65.....2..8.9.1......3.....4.....1.78...2..........3..
+..17........1..4.........3..8..93.........1.6.......2....64.5..93.......2........
+..17........2...3.......8...3...2.......5.4..7.....6..25.....7....41....3........
+..17........2..5...8.....6.....86.4.7.....2.................78129..3.............
+..17........6..8..............4.1.7.85....3..2............5...46......2..3..8....
+..17........6..8..............4.1.7.85....3..2............8...16......9..3..5....
+..17.....5......6.....3..4..4.....3....1..7.....2.....7.2...1...6..4..........8..
+..17...5.3.....2..............5...7123..4....6........4...2.3.....1.8............
+..17..2......3..8..........68..4..........5.1.3.......4......6.3..1........5.2...
+..17..5..6..8.................2....4.5.....3..9...4...2.....8..4...3........5.9..
+..17..8..5.3.......4.......82.1............4........3.2.....1.....64........53...
+..17.36..3...........9......956............84....2....1...4....84.............5..
+..176..........24....1..9...8.35....4.....79...........5......39....4............
+..179....4......2....8..6.....17.....6.....5.......3..3....2....2......7........9
+..18.............6........562...........3..8....1..4...7....31.2...56........9...
+..18............24............12.3..74......5.........45...7......3...1.6.....8..
+..18............25......6.4...7..51.23.......4.........8....3......64.......2....
+..18............34..............21.534.......7........5..64.....3....8......2..1.
+..18............74.........5..2.8....4....63....1.....67..3....4.....2..........8
+..18............79........6...49.3..62........7.3.....7....6.5.4.....8...........
+..18...........2.6......9..65..2...........143..7........1.4.5.92................
+..18...........3.4......6.....2..15.43.......7........67...3.......4...2.......8.
+..18...........3.4......7.....2..16.53.......4........75...3.......4...2.......8.
+..18...........45........3....4..1.853..7....2........37..5.......6.1............
+..18...........5.3......4..5...43....4..7...........8....6..29.23..........1.....
+..18.........2.4...........47..5.6..2......3....9........3...1864.......9........
+..18.........7.2...........74....5.......18.....3......7..9..6.2.......1.......53
+..18........5..7...4....6..7.....3.....34......5.......3..62...8.......5.......1.
+..18..2...6.4......57............4153..2..................15.7.4.....3...........
+..18..6...2.5..................617...4......25...7.......4...5...7...1..3........
+..187.....6....4...............14.6.8......3...........5....1.72..3.5.........8..
+..19.............7........672...........3..9....5..4...8....35.2...67........1...
+..19............25......6.4...8..51.27.......4.........9....3......64.......2....
+..19..6...8..........5......7..82...5.....1......7....2.......87..6.........9..3.
+..19..8...2.5..................617...4......25...7.......4...5...7...1..3........
+..197....8.....5.....3........13..4.58....6...2..............316....5............
+..2.....3....5.4...1.......7..64...........1.4...........1.29..56....8.....3.....
+..2.....4.....37........5.....8...2..1.6............9....78.1..93.......2...4....
+..2.....8...5..4......3....15.4.....3......216.........4....75.....28............
+..2....1.....5.3..9...4....59.............62..........84......9...2.6...7..1.....
+..2....1.....8..........7..1......28.6.5........4...3.74....5......23.........1..
+..2....1.5...4........9....6..1.3...3.....4.....8.........2.6...8.7......1......3
+..2....1.6...5........9....7..1.3...3.....5.....4.........2.7...1.8......4......3
+..2....14.6.7..............4...81...57....6........3....8.2.......6..7..1........
+..2....19....4..5....7........6..8..74........5.......6.8...7..9....1.......5....
+..2....19....84.............1.....5...92..........78..87....6.....93....1........
+..2....4.....3..9..8.1.....35..4.........28........1..4..7...3....8..6...........
+..2....4.....5.........7....3....1.6..84...........5..35....7..6..24.......8.....
+..2....4..3...9.......1......84...........1.9......3..6..2...5.4..8......1....7..
+..2....4..5.7.........1.......2..79.61.......3..........84.2.........1.6......3..
+..2....4.3...8.........7........65.14..3.....8.....7.....24.....5....6...1.......
+..2....49....1....7........16....5.....4....38.............581..946..............
+..2....5.....18.......7.4..3..2.....9.....8........1.....3...69.7.....2..8.......
+..2....5.....18.......7.4..6..2.....3.....8........1.....3...69.7.....2..8.......
+..2....5.1...4........36.........4.6..92...........1..64.7...........89..3.......
+..2....54.1.6..............4..3..6..7.5.2..........1.....1.2....8....3......5....
+..2....59....1....8........17....6.....5....43.............613..957..............
+..2....6......1.5.8...........38.2...5....4...6.9.....3...9.7..........1.....5...
+..2....6......1.5.9...........93.2...5....4...6.8.....3...8.7..........1.....5...
+..2....6.....5...3.7..4..........71.3..8.....5.....4...4....2.....3.1......6.....
+..2....6....5..4..6...8......7.2.....8....5........1..3..4...2..5.1............7.
+..2....614...5..............3.5..7...16..........4....8.....42....3.1........2...
+..2....7.....13....6..4.......2..9..3.....1....7......1.......454..........8...2.
+..2....7.....5...3.6..4..........41.3..8.....5.....6...4....2.....3.1......7.....
+..2....8.....53.......1.....7....15.......3.4..89.....16...7...3...........8.....
+..2....8..3.7......51.........1.35..9......4....5.....7...86.........1......2....
+..2....8.3..7........1.....13....5......4..2......8.........163.94............7..
+..2....9.3....4.......7.5..8..2......4.....3....1......5....7.4....8.6.....3.....
+..2....9.7...4........1.....8.2...5.4.....6...........6.....1.4.3.5........9..7..
+..2...1........85..6.7.........213..54............9......46..7.1...........3.....
+..2...1......34...5...6.....4.....3....5....6..8......76.2...........84.......9..
+..2...1......37...6...8.....7.....5....6....3..4......53.2...........74.......8..
+..2...1...3..7.............74.....3.8..5........2........6..5.9...1..2..4...3....
+..2...1...7.4..........38..3..5.........6.2...4.......6......43...15...........7.
+..2...1...8.4......5...6...6...2...........34.......8.1.....7.6..7...2.....8.....
+..2...1...8.4......5...7...9...2...........34.......8.1.....7.6..7...2.....8.....
+..2...14....85..........3..73.4.....8..6...........2......21...6.......5.......8.
+..2...1469..3...........2..8.....53.1....6.......7.......5...2..7........6.......
+..2...3...47.........1...........42....3..7..9..5.....86...4...1.......5....2....
+..2...3...7.8.........4..1....7.56..4......5.1.........5....7......1...3...2.....
+..2...3..1..8........4...7...56....1.7....................7.25.....3.1..64.......
+..2...3..7...4..........59.15.3.........7..86.9..........9.5...8................7
+..2...3.4.4.7........1.....6......57....4...........1.....2.8..7.5......16.......
+..2...4...4..5........3..5.5..31....8.....6........2...7.2.6..........1....4.....
+..2...4..5..3..........1......5...39.2..............5....64.2...1....8..3...7....
+..2...4..8...7........1.....8.4.9..........3.........7...5..92.37.6.....1........
+..2...4.5.5.3........1.....7......61....4...........3.....2.7..1.6......38.......
+..2...4.5.5.7........1.....6......17....4...........3.....2.6..7.3......18.......
+..2...4.6.....93..7..1.....8......1.....63............136.........42.....5.......
+..2...4.7.....93..8..1.....9......1.....73............637.........42.....5.......
+..2...5......3...1.....8...1......83...2.7......4........5..76..8..4..........2..
+..2...5...4...3.......6.....2.1.........7.8..3.....2..6..5....3.....2.4....8.....
+..2...6........94....1......6.5......9....4.....3.1...8......31....9...72........
+..2...6.....1...5..4.......8..3.....1.....2........4.7.7..46...5......3.........8
+..2...6.....7....4.8..3....47.3...........21............1.2.5..7.......3.......6.
+..2...7......8.4...1..5......47.....6......5........1.3..4..6...5......2.....3...
+..2...7.....3.5.........1..18....4...3.5........62....7...1...........658........
+..2...7.....6.4......3.....61.....4........96....2.......58.1........3.74........
+..2...7.....7....4...1.....96............32..1.........1.64..........38.....5..2.
+..2...7.....8....4...1.....68............32..1.........1.64..........39.....5..2.
+..2...7...5...9......8...6......8.957..4.....1...........7..4...9..2........3....
+..2...7..1...4.......5..8..4..31.....7....2......6.....8.7.....6.......3.......1.
+..2...8.......63...7..4......38............746........1..3..5...4.....6.........8
+..2...8......36....5..........5.9..2.1.8.....6......3.3...8.......7..5..4........
+..2...8.....3.5.........1..17....4...3.5........62....4...1...........657........
+..2...8.....6....4...1.....71............92..6.........6.74..........39.....5..2.
+..2...8..7..5.........4.....6.41..5..8....3...........3....8...2......4....6....1
+..2...8.46..3.1............5.....13..7..2...........6.1..6.........4...2.8.......
+..2...84.36.7........1.....1.....3....4.2.........5..775...........4..2..........
+..2...85..6.7.4............3.5.2.......3..1.7.........4...5..2..1.......7........
+..2...94.....71...............65...7.4....1..3..4.....91......8...2...3..........
+..2..1..5.......3..........6.....1.27..3...........8.....52..9.41........8.7.....
+..2..1..7.......3..........6.....1.28..3...........9.....52..7.41........9.6.....
+..2..3......7..4...1............1.324..96....7...5....6..4..9.........1..........
+..2..3...9......7.....1.......7..2.385.6...........1.....98..4.6.........3.......
+..2..65...18...............5.....3.....84........1.......2...413....5...76.......
+..2..7.9.5...1................8..3.....2.9...1........69..4....3.....8.........25
+..2..8.4.....6.5...1..........1...2.5...3....6........3.....6.....7..3.....2....8
+..2.1.....3....6.......73.....3..5..4....5...1...............28....4..1..8.6.....
+..2.1.....4....2.....9....8...8..31.9..5..................26.9.85.......3........
+..2.1.....4....7........9..4..6..2..1.5......3..7............35.9.8............1.
+..2.1.....8....4.......6...1.5....7....4..3..7........64.3............51...8.....
+..2.1..8..5...63............4.5....26......1....3.....8...3.......7..5..1........
+..2.3...........5........4...6..17..2..4...........3..45.2.........7.6.1.8.......
+..2.3.....7....4.......6...3.1....2....9..5..8........65.4............31...7.....
+..2.3....4.......8.......1..37...2.....6..5.....1.....18.....6....52.3...........
+..2.3..4.....8...5.1.........4...38.6..5....7...1.....8.....2..75................
+..2.385..7.6......................29.1..4.......6...7.13....4.....2........7.....
+..2.4.....8.....6......3.5..6.2...........3.7......4..5..6..1..3...7.......8.....
+..2.4.....9....1...........61....7..4...5..8.3..........8....24...1.6......9.....
+..2.4.6...18...............34..6...........81......5..7..1.8.........36....2.....
+..2.5........9..4..3.....8...7...5.98..4........3.....74.......9.....1.....2.....
+..2.5........9..4..3.....8...7...9.58..4........3.....74.......9.....1.....2.....
+..2.5..4.3......7.....1.....1....5.82..6........4.....4..2.7.........8........1..
+..2.5..416..2......8.......1.5.........7..3..4.........7....82......1.......4....
+..2.6....5......4.........14..5.1.........2.....9.........3.62..6....8..1..7.....
+..2.63.........4.1..........3....56.4..8..................2.63.17.4.....8........
+..2.7..........3........1...784..........34.....1.....5...8..2.13......6.......7.
+..2.7..........3........1...785..........34.....1.....6...8..2.13......5.......7.
+..2.7........3.8..4.........8.....37.....5.2....4.....5..1..6.....2..4...1.......
+..2.7.......4..8....8.......5.....273..1............6.94....1......6.5.......2...
+..2.7.3...35..........1....48.......6......1.......2..1..5...4....3.2......8.....
+..2.71....4....8..............46...27......1..3.8.....3...5.......6..4..1........
+..2.76....1....5...........247............83.6........45.1............72...9.....
+..2.76....1....8...........247............93.6........45.1............72...5.....
+..2.8.......1....5.9............928.1..7...........3..51......7.....2.4.....3....
+..2.87....6....1...........248............93.7........45.1............82...5.....
+..2.87....6....5...........248............93.7........45.1............82...6.....
+..2.9........5.8...4........6.....423......7....1........4.61..8.....5.....2.....
+..2.9.....94.............5.71....83.5....6.......4..........4.98..7........3.....
+..2.9....5......7......1....4....1..7..4...........2...6.37......1...84....5.....
+..2.9.3..5.1......7.........9..6..4........17........5.8....2..4..5........1.....
+..2.9.3..8.1......5.........9..6..4........18........5.7....2..3..5........1.....
+..2.9.3..8.1......5.........9..6..4........18........5.7....2..4..5........1.....
+..2.9.3..8.5......1.........9..6..4........58........1.7....2..3..5........1.....
+..2.9.3..8.5......1.........9..6..4........58........1.7....2..4..5........1.....
+..2.9.7.....6..8...4.......73....5.....8.1.......4....6..5............13.......4.
+..21...........6.7......4..64..........8...5.3..........5.3..2.....473...1.......
+..21.....3........7........1..2..7...6....3.....5.4.......32.......8..2..5.....4.
+..21...8.7....6...............83....4.....5......2....61...5.........72..3......8
+..21..4...83...............5..4..7..6...2.....1............8.631..7............8.
+..21..5..63..................5...41.2...39.........7...9......3....8.6.....4.....
+..21..6......4.9..7........2......58.4..3...........7..6....3.....7.5......2.....
+..21..6......4.9..7........2......58.4..3...........7..9....3.....7.5......2.....
+..21..8.9.6.............5........46.5..9............2..3......14....6...8...4....
+..213....6.....7..........5...3...817...............2.....674..5....4....1.......
+..217........36....8.....9....2.8.5.3.....6..1.........4.5...........3........1..
+..23.............1.......4...7..92.....2..8..4........14..5.......6..37..9.......
+..23............85.....7.....6.7.3.....15.......8.....1....42..85........4.......
+..23...8......7.1.7..5.....26....5......1....5...........2..7...1....4....8......
+..23.17..8.......5.........54.......6...5..........1....14..2......8..6..3.......
+..23.4..........4.........558......1...2..6..1..4...........32.7...5........1....
+..234....6.....85.............2..1.35....1....4........3..5..7...6...........8...
+..235....4.....61....8........52....16.....................189...5.....3.4.......
+..235....4.....61....8........52....16.....................189...5.....3.7.......
+..24.........3..7.6.....1.....6..2.4.7..8.............53.....8.7..2..........1...
+..24.....1.....5.....2...7.5.....1.8.4.6...........3..3...8.....6.....4.....1....
+..24.....1.....6.....2...7.5.....1.8.4.5...........3..3...8.....5.....4.....1....
+..24...5..18.............6.....21...3...7....5........67.5........6..8........1..
+..24.8.6.5.....3...........1...7.......6...8...........862......4....7......3.5..
+..243........5..81..........7..18....9....2..............6..47.5..2.....1........
+..25...........1..3...........1...257...3.....4......6....4.73..856..............
+..25...........1..3...........6...257...3.....4......1....4.73..851..............
+..25..........1.3..7....4.........81.4..7....6...........7..2..3.8......1..2.....
+..25.........7..1..4.....6....1.4...3.....8..1..6......6....2......3...7......5..
+..25.........7.3..1.........3....6.....2..7..6..4.........31..8..4....2..7.......
+..25.....1.....3.....4...7.6.....1.3.5.2...........8..3...8.....4.....5.....1....
+..25.....1.....3.....4...8.6.....7.3.5.2...........1..3...7.....4.....5.....1....
+..25.....1.....6.....4...7.6.....1.8.5.2...........3..3...8.....9.....5.....1....
+..25.....1.....7.....4...8.6.....3.7.5.2...........1..3...7.....4.....5.....1....
+..25.....7.....2.....4...3.6.....7.1.5.8...........3..3...7.....4.....5.....1....
+..25...1..9....4........7..78..4.........9..2.......5.6..1..3.....2.....4........
+..25...3.1...6.................4.7.8.93............1.....3.2.5.74..........9.....
+..25...6..4...7............6.....15......38....9.4.....3..2...41...........6.....
+..25..4...6.7...........1......1..634....8..........7.8.....21.....3.......6.....
+..25..8......3..1..5..........6.8.4.1...........2.........7.5.234..1.............
+..25..8...4.3..............37.4...........2.61..........5.82.......6..7........3.
+..25..8...4.3..............73.4...........2.61..........5.82.......6..7........3.
+..25..8.9.7.............6........47.6..9............2..3......14....7...8...4....
+..25.8..........71...4.....51..7....6.....8.........3.76..........9..5..1........
+..256...........1....4.....17...8.........5.9.8.......3...71.....5...4........2..
+..257....6......1....3.....81.9.....7.......9......2...34...5......81............
+..26........4...7..3......135....6.....9....28........7......3.....2.5......1....
+..26......5.....8...........9....61....37.......2..5..8...41...7.....2.3.........
+..26...3.4...1.................8.7.4.35............1.....3.2.8.74..........5.....
+..26...3.4...7.................1.4.7.83............1.....3.2.6.75..........8.....
+..26...3.4...7.................1.7.5.34............1.....3.2.6.75..........8.....
+..26...5..4......1.........15.3........4..62.8........3.....7......8.2......1....
+..26...5..7......1.........15.3........4..72.8........3.....6......8.2......1....
+..26..5...7..3......8......6..2.5..........41.....8...34..1...........5.......2..
+..26.1..........43............43.....9....1...3..7....2..5..6..8.7..........4....
+..26.1....7.....8.............3..6.28.....1...5..7....4...8..5...6............2..
+..265...........1....4.....17...8.........4.9.8.......3...71.....4...6........2..
+..27......3.4............1..7....2.46....8.......1....1.....63....3..5..8........
+..27......5....3..........11...3.6......5.4....8....7..6.8...2....2.....3........
+..27......9....1........3.75....34....8....6.....1.......8...2..3.2.....1........
+..27.....3......5.........1..3...2........46..1..5.......23.......4..7..85.......
+..27...6..8....5...1.3.....6..4.2...5.......1......8..3......4.....1..........3..
+..27..36..4....8.....5.....3..2.........1.4..........1....4..9.5......7.....8....
+..27..36..4....8.....5.....9..2.........1.4..........1....4..9.5......7.....8....
+..27..36..8....4.....5.....9..2.........1.8..........1....4..9.5......7.....8....
+..27..5..3...........5............31.....9.8..4.6......5....6..8...1....9...3....
+..27..8.......345.....1....5......394..9.............131..........6..7...........
+..276.....4....8...........71.....2.3....8.......45..........682..5...........4..
+..28...........4.7......6..64..........5...1.3..........5.3..2.....473...1.......
+..28.....1.....5.....4...2.5.....1.7.4.6...........3..3...7.....9.....4.....1....
+..28.....1.....5.....4...6.5.....1.7.4.2...........3..3...7.....6.....4.....1....
+..28.....3.....1........65..6..1......7.....2.....3......7...9.8..2......1....4..
+..28.....4......7........5..6..5........3.8....1...2...5....36.7..2........1.....
+..28.6....9....4...........41....9..7..5........2.....3...4...6.......58.......2.
+..289..........4.1.8..........3...2.16.......4........7....16....8....3....5.....
+..289..........4.1.9..........3...2.16.......4........7....16....8....3....5.....
+..29.....1.....5.....4...7.5.....1.8.4.6...........3..3...8.....6.....4.....1....
+..3.....1..5.6.....1.5.....6...4..7.28.............3..7.....64....8........1.....
+..3.....1.1.6.......6.4....4...5..7.28.............3..5.....74....8........1.....
+..3.....1.1.7.......7.4....4...5..6.28.............3..6.....54....8........1.....
+..3.....15...9......7......24..6..........38..6....1.....3.4...7......9....1.....
+..3.....15...9......7......24..6..........38..6....1.....4.3...7......9....1.....
+..3.....4....7.6...1.......8..96...........1.6...........1.39..72....8.....4.....
+..3.....6...8...4...........6..3.5..4......1.....9.......7..1.374.2...........9..
+..3.....9....6.7...1.......8..94...........1.2...........1.39..62....8.....4.....
+..3....1..2.6........5.....5.....2.47.1............8...5.2..6..4...1........3....
+..3....1.2...8.......7......4.6.9...8.....5.....1...........8.2..13......9....7..
+..3....1.2..7........2.....3.....7......9..4......1......85.2...91...6...4.......
+..3....1.4.2.........6.....1.....7.4.6.3...........2...8.....3....25........47...
+..3....1.8..7...............14.3.......9..2..7............14.5.97....8..2........
+..3....12...49...........8.....7.4.3.1.............6.....1.2...7.....5..5..3.....
+..3....2....4.7......9.....4.....6.7....8..........4..71.5.........1.23........8.
+..3....21.6.7..............2...81...57....6........4....8.2.......6..7..1........
+..3....214...7................1.2......6..9..7.....4..562.........38.....1.......
+..3....214...8................1.2......6..7..7.....4..562.........39.....1.......
+..3....214...8................1.2......6..9..8.....4..562.........73.....1.......
+..3....214...9................1.2......6..8..8.....4..562.........73.....1.......
+..3....216...4................1.2......7..8..8.....4..572.........39.....1.......
+..3....216...4................1.2......7..9..9.....4..572.........83.....1.......
+..3....216...8................1.2......7..6..8.....4..572.........39.....1.......
+..3....216...9................1.2......7..6..9.....4..572.........83.....1.......
+..3....27...4.1................7..1364.5.....8............3.5.....8..4..2........
+..3....275..8..............6.....1...9..2..........5..42.....3...71........5.6...
+..3....4......1...5...........34..7..2.8.....1.....6...6....2.8....5.1....4......
+..3....4..5.....7.....21....4.3...5.1.....6....7......2.....1.8...4...........2..
+..3....4..5.7.....7..6.........23.......8..3.1.........82..5.........1.7......6..
+..3....5.....1..4..6...9........78.65..2.....1.........7.6..3.....35.............
+..3....7......2..8.9..6....24...5......8...3.5...........73.1........2........5..
+..3....7......4..8.9..6....24...5......8...3.5...........73.1........4........5..
+..3....7....1..6..5..4.........7..231...............8....5.94...8..2..........1..
+..3....7....6..8...5.......2..18.....7.....54...3.....6...54.........1..8........
+..3....7..1......8...25..........63.5...7.......4...1.6.....2.4.....1.........5..
+..3....7..5.....4.....21....4.3...5.1.....6....7......2.....1.8...4...........2..
+..3....8......6.4.5..1......4...8.......3.5........1...8..7..2.2..5..6...........
+..3....8....2..7...4.......2..17.....6.....54...3.....5...46.........1..7........
+..3....8..5..2.......7..1..1.6...7..7...5................6.14...2.....53.........
+..3....82...41.....6.......7.....1.....3.8......5..2..42..........6...3.1........
+..3....82...7.1....6.........9.2....7.....1...........5...6..2....3..5..14.......
+..3....82...7.1....6.........9.8....7.....1...........5...6..2....3..5..14.......
+..3....852..1...............65.3.......7..1...8.......4....2.6.3.....2......8....
+..3....9....1.4......7.........3..8.4....5...6.....7.....6..1.4.2..8..........6..
+..3...1.....2.4....6.......7..5...4........9.....3....47.8...........3.12.....6..
+..3...1.....4...2..7..2.......3.5...2......8....1.....6...41.........3.5......7..
+..3...1.....56.............5..24.....8....71........3.65......2...7.1...4........
+..3...1..5..4.......4.......1....6.3.2..9.......5...4.7......85....61............
+..3...1..6..4.......4.......1....7.3.2..9.......6...4.8......65....71............
+..3...1.6.6....8......2....4.5....2....1.3...7........2...5..4..1.6..............
+..3...15.2....7.........3......24..7.31..........8....42..........5..6.....1.....
+..3...2........4.9.1.3......5.....1.4...8........2....2.....6.....1.7......53....
+..3...2......18..........5.84......1...2.........6.......7..32.6..3..5...1.......
+..3...2......6.4..5..1.....74..2.........3..5.......1.12....8.....6........5.....
+..3...2.....1....45........17.8...........93.4............39.5.61...........2....
+..3...2.....6....45........16.7...........83.4............38.5.69...........2....
+..3...2.....9....14........12.7...........83.6............38.4.59...........2....
+..3...21.4...7................5.1.8.72....................6.7.4.153...........9..
+..3...4......6........5.......4..3.86.....7..1...........3.8.4..2.7.....5......1.
+..3...4..6..2..........1....8.....12...46.............2.....74.....3.6...1.5.....
+..3...4.25...1.............7.46...........81.............2.4..618.....7..3.......
+..3...4.25...1.............7.46...........91.............2.4..619.....8..3.......
+..3...4.26...1.............8.47...........15.............2.4..715.....8..3.......
+..3...4.26...1.............8.47...........15.............2.4..715.....9..3.......
+..3...4.89.....3.....2.........43....5.....2........9.6...7.1.....6...5..2.......
+..3...42.....98...............43..7.18......92.........7......5.....18.....2.....
+..3...45.....6..8....2.....24...3.......5.....9..........4..1.26.....7....5......
+..3...45.....6..8....2.....27...3.......5.....4..........4..1.26.....7....5......
+..3...47.....61....8.......62..5.......4..3...........1.43.....5......26.........
+..3...48.....51....6.......12..6.......8..3...........7.43.....5......21.........
+..3...48.....71....6.......72..6.......4..3...........1.43.....5......27.........
+..3...49.6..7........5...2......38..52...........1.....5.2....6..8...3...........
+..3...54..1...8.........3.....4..63.1...7....28..............71...35.............
+..3...6.2...45.................763..41........5.......7.....15....8...4......2...
+..3...6.87.....3.....2.........36....4.....2........5.5...7.1.....1...4..2.......
+..3...6.87.....3.....2.........36....4.....9........2.5...7.1.....5...4..2.......
+..3...6.89.....3.....2.........36....4.....2........9.5...7.1...2.....4....5.....
+..3...7.......5.4.1...6....6..3..1...4............2....54....2....18.6...........
+..3...7......5..1..8.......5...4.2.........38..1......1..7.....46..........1.3...
+..3...7.4...5.1....8.......6......1.....2..4....37.......8..3..54.......1........
+..3...75.....21...4........67..3....2.......1...8...9..9.5........4...........2..
+..3...75.....6..9....2.....21...3.......5.....8..........4..1.26.....8....5......
+..3...75.....6..9....2.....24...3.......5.....8..........4..1.26.....8....5......
+..3...8.....5..4...1.......72..1...........34......5..5..6.8..........17...3.....
+..3...8.....9..7...1.......7...48..........1.....3....62.1.......5.....3...2..4..
+..3...84.7..5...........3....41...7....6.7....8........2..4....6.......1....8....
+..3...86....9.1............4.7.8...........9.3.........2..6.4..59......1...2.....
+..3...89.....61....7.......12..7.......9..3...........5.84.....6......21.........
+..3...9.....5.6....4.1.....6.....31...8.4.......2.........8.7.4.2.......1........
+..3...9..4.....5.....2......2.16..........48....8.....7...54........7.2.........1
+..3..1...5......6.......4...1.5..2...9.6..............2..47....3.......1....8..9.
+..3..2.4.....6.5..............9...3.56.......1............7.6.1.542...........8..
+..3..2.5.....1.6..............5...4.76.......1............6.7.1.253...........8..
+..3..2.5.....1.6..............5...4.78.......1............6.7.1.253...........8..
+..3..5.187..4.................6..73..18.........2.....42....6......1..........4..
+..3..5.816.47.................2..7...8.....4..1...........1...52.....4..7........
+..3..6...7.....3......1....4......168..2.........9..5..5.8..2...1..........3.....
+..3.1....4......6.......7..5..6.8......7....23.....1..62........1.....8....5.....
+..3.1..5......26...8.........135....4.....2........8..62.7............1.5........
+..3.1..7......56..8.........5....8.19..3.........4.......9..23...4.......1.......
+..3.175......4....9.........5....2..........1...9........2..63..1.8.....4......9.
+..3.2.........65...4..........34....6.....1...8.7............2357.......9......4.
+..3.2.........65...4..........34....6.....1...9.8............2357.......8......4.
+..3.2.......9...8........6......32..81...........4.....7....4.59..8.6......1.....
+..3.2..8....46.....1.......6..7...5....1.9............4..28..........9.1......3..
+..3.2.6..8......4....6......1..3.......4....57......8.5..8...........1.2......3..
+..3.2.7..4.6................9....3.25..4.........1.......6..84..2...9...1........
+..3.4..........51.8........9.......4...7.1......5.....6172...........35..2.......
+..3.4........8.2..6.........2.7...1..5.........4......7..2.1......6..3........4.5
+..3.4.....2....9......17...7.......1...5..3.........6....2..53.4..8.....1........
+..3.4...82..7............1....6.25...8.....4....5.....6.....7..5.....6......1....
+..3.4..7..2.1.................5..1..3.4......76........5....2......3..4.1..8.....
+..3.5.......4..7...6............8.63.2.....5.9..1.....4.....1..1....3.......6....
+..3.5.......8..4...6............8.63.2.....5.9..1.....8.....1..4....3.......6....
+..3.5.......8..4...7............8.73.2.....5.9..1.....8.....1..4....6.......7....
+..3.51.9..2....8..............8.42..5...........2.....8...7..1.6.......5.4.......
+..3.6...........5........4...6..17..2..5...........3..45.2.........7.6.1.8.......
+..3.6...........5........4...6..18..2..5...........3..45.2.........7.6.1.9.......
+..3.6........2.5..1........56.4........7...1...........5....6.23..1.9.........8..
+..3.6.......4...2..1....7......4..3675...................7.15..2.....86..........
+..3.6.......5..1...7............9.73.2.....6.9..1.....1.....4..5....2.......7....
+..3.6.......5..9...7............8.73.2.....6.9..1.....5.....4..1....3.......7....
+..3.6.4...7.....2......1......2...7.1...5....6...........7....34.....1...2.8.....
+..3.6.4...8.....2......1......2...8.1...5....4...........8....37.....1...2.7.....
+..3.6.4..5.2...............67..4..........3851.........1....6.....2.5......8.....
+..3.6.7..5.8...............67..4..........3521.........1....6.....2.5......8.....
+..3.7...........1........6....5..3.26....4....9....7.....23.5..4..8.....1........
+..3.7...........6........5....4..3.25....1....8....7.....23.4..6..1.....1........
+..3.7.......6..9...1.......9..8.4..5.......1.2........67....2......31......4.....
+..3.7....6.......2....4.......5..13.2...............7..1....34....2.8......6..5..
+..3.7....6.......2....4.......7..13.2...............7..1....34....2.8......6..5..
+..3.7...2.5.....1........46....3.8..6..4.....1...........1.2....7....5.....6.....
+..3.7...5.6.....1........42....3.8..2..4.....1...........1.2....7....6.....5.....
+..3.7..8.....41............4.68........3...2.15.............4.1.8.5...........9..
+..3.76...5.......1.......2.1..5...4.....3.6..2.........76...3.....1......8.......
+..3.8.....2....6........71.....3.5.4...42....1........6..7............23...1.....
+..3.9.5..4.......8.............6.42..1....6..87.......7..8.4......1...........9..
+..31........4..7...5.....2..6..53...2...6..........4..7..8..1..4...............5.
+..31...454......2.........6....26.........1......8....2..7........3..8..64.......
+..31...6..8.5................7.6.2..2.......1...4..5......82.3..4.......5........
+..31..2...4.....8....2.5.......56.4.1............4.....5......37.....1.....8.....
+..31..2...45..................35....2.....1..6...8....17.6............48.......5.
+..316....2......7.............5..3.1.7...2...4.....6....13.........7..4..8.......
+..32..........5.1..7.......1...8.7..46.............2.3...73....5......4..9.......
+..32..........5.4..7.......1...8.7..46.............2.3...73....5......1..9.......
+..32..8......4..1..2..........6.8.5.1...........3.........7.3.245..1.............
+..32.46...18...............2..3............85.......1.67....3......25.......1....
+..326.....5.....8......17...2.54..........1.....3............356....8...1........
+..326.....5.....8......17...2.54..........1.....3............536....8...1........
+..326....4.....1.....3............327....1........8...18....5.....47..2..........
+..34...........1..7.........4.5...321...6................3.2.4.61....7..8........
+..34........1...8..5.......98.....7......24......3......9...3.21..8.........5....
+..34......5......1.......8.71...2.........3.5...........6...42.4..7..6......1....
+..34......5....6........1....8....4.....2..7.....1.5..16.8........9...3.2........
+..34...1......8.2.8..6.....37....6......1....6...........3..8...1....5....2......
+..34...6.5.......1............7.64..8.......2...3.....12..8..........63..5.......
+..34...8.1.....6...........79....1...3.5........84........9.2....8....5.....1....
+..34..6.....8.3.........1..61..5.......7...3.2........1...6.....5..2...........8.
+..345.....7....2....8.......2..76..........415........4..1..........27.........3.
+..346...7.......5....2........83.6..91.......5........1....5....4....2.......9...
+..347.....6.....9......18...2.65..........1.....3............367....9...1........
+..347....2.....6........1....75...3..1...6..........4..6..2....4..3.....8........
+..35...........2.6.81......56..2...........1.7...........1...8....3.6...4.....7..
+..35.....8......2..............27.1.....8.3........6.....6..5.321........7.4.....
+..35..2...8..4..........9......8..471...............8.74.....6....2..1.....3.....
+..35..4.6.4....1..2..7........2...7..1..............8.....16.......4.3..5........
+..36..........47..2.........7....4.....3..1..5...2........8..26.54.............5.
+..36.........2..8........4.2.....6.......95......4.......7..3.148.2......9.......
+..36........2...7..8....5..2......6..7..5........8....3..1....4....4.8..6........
+..36......5.....2..........7..1..6.3.2..8..........4......29.5.6.4...........7...
+..36......71..............52.....64.....87..........9..8....1.75..4...........3..
+..36...2..5..4.....1.......6..3.2...4.....5........1...4..5....7..8............3.
+..36...4..1........9.......4......636...2........1.....2....9.....7..1..5..4.....
+..36..2......9.8...7.......2..5..1......7..4......3...6..2......4.....7....1.....
+..36..41..75...............12.....6.....54............2.....5.78..1...........3..
+..36.1...7.....9.2...........85...6.....2.4......7....42..........3...1..9.......
+..36.17...7....8.....4.........8.2..4...5......6.........3....48......5..2.......
+..36.8....2....5............4.25....7......89...1.....8....3.......4.2....9......
+..367....4......2........5....84.3..2........9.........1....7.....2.5.......94...
+..37...........35........2..4......7....5.6...2.......3..1.2...8.....5.....4....8
+..37...........62.4.........6....8..5..3........4....7.2..6..5...4.....3....1....
+..37....8.......1.............6..5.318.4.....2........5.....7......2.3......1..5.
+..37..1.....2..5........8.618..6...........7..5.......2.7....4......1.......8....
+..37..4.8.2.............7..4..1.8..........2.........5...92..3..5..6....8........
+..37.2...1.....8.....4.....51.....2........376.........72.....4....1.6...........
+..371..4..2.............5..5..2.6..........3.........7...13........74...8.....2..
+..38...........51........7..1...7.........2.45...........23.4..76.......1..4.....
+..38.........7.4...........42..6.......1....35......8.64.....7....3.1.........2..
+..38......4....2......2....1...5..........3.8......4..52.....1...64..........3.7.
+..38..5...7..9..............4.....7.8..5........2.......9.71.6.6.....2......4....
+..38..7...6.............4..8.7..4.......65.2.............73.1...5.....6.2........
+..38.1..........6.......4..42..3.....7....5.........8.....4.7..6..9.......8....5.
+..38.1......6..8..7......9.5..42...........31..........6..93...4.....2...........
+..38.5..........1..5.......2..71....6.....5........4..1..2...7.....6.3...4.......
+..39............76......1..4..2..3..67........1.......2.8...5......74.......6....
+..39...25....1...........9.14....6.....2.....6........8...4.1....23......9.......
+..39...25....1...........9.14....8.....5.....6........8...4.1....53......9.......
+..398.2...5................3..5.1...2.....6.....4......4......5....9..3...8.6....
+..4.....1...3.6............6.....35.8.....6......1....25....7..7..1........94....
+..4.....8.26............3......5.42.8....7..........6.73....1.....56.......2.....
+..4....1....78.....2.......6...3.8..7.1..................1.4..953....6.....2.....
+..4....1..2...3..........4.35....2.....1...........9....641....7.....5.3...8.....
+..4....1..7...3..........4.35....2.....1...........7....641....2.....5.3...8.....
+..4....1..7...3..........4.63....2.....1...........7....541....2.....6.3...8.....
+..4....1.5..6......7..........8..6.5..23......1...........147..8.....5......2....
+..4....1.5..8......3..........7..3.5..23......1...........146..7.....5......2....
+..4....1.5..8......6..........7..5.3..23......1...........146..7.....9......2....
+..4....1.5..8......9..........7..3.5..23......1...........146..7.....5......2....
+..4....1.5..8......9..........7..5.3..23......1...........146..7.....9......2....
+..4....1.5..9......6..........8..6.5..23......1...........147..8.....5......2....
+..4....2.6...1...........8.3.....1.7...2..6.....8.9....2.4...5.......3......6....
+..4....2.7..3........1.........42.8.36..7..............82..5......6..3........1..
+..4....215...1....7......4..863...........7...2.......1.....5.....6.2......4.....
+..4....23...6.1...........5.8....17....53........2.......4..8..36.......2........
+..4....23.5...6................156..2......8...37........34.....6....5..1........
+..4....23.5...6................756..2......8...31........34.....6....5..1........
+..4....3....1.2........9......5..1.2.3..7..........6......4.58.2..6.....1........
+..4....3.5.2.........7.....1.....8.5.7.4...........2...9.....4....26........58...
+..4....3.8..4...........16...78......1.....2....5......3...62..5.....8......1....
+..4....32...9...6..8..1........9.7..2..6.....3........71........9....1.....3.....
+..4....39.2..5..............6....74.5..1........3.9...1.....8......7.2..9........
+..4....5.8......6....8.....62..........4..7..9..1.....3...6..........4.7....2.1..
+..4....6.3.......5............13.8...62..........5....75....4..1....6......2.9...
+..4....62.178..............65..9....3...6..........7.....7..8..2......9......1...
+..4....7....85........1.6....73......4....5........1..85.....3....9...2.1........
+..4....7....85........1.6....93......4....5........1..85.....3....7...2.1........
+..4....7..1..4........3..5.5..4.2...63..........8.......57.....2.....3........1..
+..4....89....31............3...5.6.....2...4..........7.....5.3.2.4........8..1..
+..4....9..1..5........3..6.6..7.2...83..........5.......89.....2.....3........1..
+..4...1......26...5...7.....6.....5....8....2..3......82.1...........63.......7..
+..4...1......28...5...6......3....5....7....8.2.......78.1...........23.......6..
+..4...1...5.2...........3.21.....6.....5........4.....7...1..8..2..6..5......9...
+..4...1...9.2..............2..7.8......1..5...3......4..5.4....7......6.....9..2.
+..4...1...9.2..............2..7.8......1..5...3......4..5.4....8......6.....9..2.
+..4...15.3....7.........4......23..7.41..........8....23..........5..6.....1.....
+..4...16.2....8.........4......25..8.41..........3....53..........6..7.....1.....
+..4...2........3.5.1.4......6.....1.5...2........3....2.....7.....1.8......64....
+..4...2......1.......8.....9.......3...5.4.......62....7....42.18.3...........6..
+..4...2......4.5...1..6......78.....5......6........1.3..7..4...6......2.....3...
+..4...2......8..7......3....419...........73.......8..76.2..5..........13........
+..4...2.....7........6......15.4..........86......1...6..3...7.38...........2.5..
+..4...28....7.1..........5.3.....1.7...25............6...42....61.......7........
+..4...28....7.1..........5.3.....1.7...28............6...42....61.......7........
+..4...28....7.1..........5.3.....1.7...38............6...42....61.......7........
+..4...29....7.1..........5.3.....1.6...85............7...42....61.......7........
+..4...29....7.1..........5.3.....1.7...85............6...42....61.......7........
+..4...3.......2........6.....3.1.4...7.....6....4.....26......7...35.1..8........
+..4...3.16...7.............7.....26......4.8....3.....543.........92.....1.......
+..4...3.16...7.............7.....28......4.6....3.....543.........92.....1.......
+..4...5.....2....7......9......35.6.7.....2..1.........6..8..4..5.7.............1
+..4...5...8..7.........1...1.....67...35........9......2.3..4..7...5...........2.
+..4...5...9...8.......3....1..4..2...8..5.............7.65............38...6...9.
+..4...5.3.....9.1..2..8.......24....5......9....7...........2.4...5..6..1........
+..4...6...6..5.........1...1.......5..7....8....63.......4..26..8....3..5........
+..4...6.3.5...1............7.6...1.......8.2....3.....28.....5....46........9....
+..4...6.3.5..7........1....1......37...4...5.8..6.....7.....2...3..........9.....
+..4...6.31..2...............2.17....5......4.....3.......5..82...3..6....7.......
+..4...7.....6.2.........1.......1..5.6.....2...3.4....25.3.........7.4..8........
+..4...7.....6.5.........1.......8..2.6.....5...1.3....25.3.........7.4..8........
+..4...7.....6.5.........1.......8..2.6.....5...3.1....15.2.........7.3..8........
+..4...7...2..6........3.5.....4.2...1.....6.....7........1....46......2.5......9.
+..4...7...3.2........1.9...1..6......8....3........4..2..5...6...7.4...........1.
+..4...7...6...2......5.....2...78....5....4........1....1.4...63......2....7.....
+..4...7...8.6..............1..3..2.....5....6..3..........243..6......1..5..7....
+..4...7.3.5..6........1....1......36...2...5.7..4.....6.....2...3..........8.....
+..4...7.3.5..6........1....1......36...8...5.7..4.....6.....2...3..........9.....
+..4...7.86....5...............27....1......3....4.........63.5..72...4...1.......
+..4...71..6.2...............5.....622...7....3....8......6....37.....8......1....
+..4...73......1......2.........4..6.15.......2........8..9..2.....5....1.9..6....
+..4...78.....61....3.......35......66..8........4.....1...3......7...2.........4.
+..4...78.....61....3.......35......66..8........4.....1...3......9...2.........4.
+..4...8......3.5..1..7........1.2.4..5....3..............4...1236..5.............
+..4...8...1.6........8.......2....7.....5..1.8...2....3.....2.....1..4...5.7.....
+..4...8...1.7..............5..3..2.....6....7..3..........243..7......1..6..8....
+..4...8...2...1......6..7..6.....5.......4.......8....3......49...17.......5...2.
+..4...8...3.2........1.7...1..6......9....3........4..2..5...7...8.4...........1.
+..4...8...9.2..............2..7.8......1..5...3......4..5.4....7......6.....9..2.
+..4...9...5.2..............2..68.......1..7...3......4..7.5.........4.2.6......8.
+..4...9...7.5...........1..72.....6......93......1.......7...528..6.......9......
+..4...9...8....2......1....7......15..52............8.3..6..4...1...5..........7.
+..4..1...2......3........5....37.8...1..........2.....7..52..........4.6.....61..
+..4..1...3.....2..........8...32...15......4.............46.5...8.2......1.....7.
+..4..1..6.2..3...........8.1.....35...67...........2...3....7..8..6........4.....
+..4..1..6.2..3...........8.1.....35...67...........2...3....9..8..6........4.....
+..4..2.7.....6.1..............8...5.36.......1............2.6.3.154...........7..
+..4..27.....6....3.1........5..4..2.6.......8.........8......4.3..8........1..5..
+..4..3.......2..6..5.....1...2...7..6..5........1.....3.....2.8.1.7...........4..
+..4..3.......2..6..5.....1...2...8..6..5........1.....3.....2.9.1.7...........4..
+..4..5...1......7.....3....2..7..4.....8...1..5..6.....3....5.6...1...........3..
+..4..5.16...2............5.2.....8......41...3...........36.2.....7..3...1.......
+..4..7..........26....3....7.8...4.....95.......2.....12.6..........18...9.......
+..4.1.....6....7.....5.....2..3...........6.1.....74..83.....2.....4..9......6...
+..4.1....6.....3..............7.82..5..3.....1.....4...7.2......8.....5........17
+..4.1.2..3..6..............6..75..........32........1.81......5...43.........2...
+..4.1.2..3..9..............6..75..........32........1.81......5...43.........2...
+..4.1.2..7..9..............6..75..........32........1.81......5...43.........2...
+..4.1.2..9..6..............6..75..........32........1.81......5...43.........2...
+..4.1.7...52...............1.....8.....3.2......54.....3.....258..6.........7....
+..4.2.......1....6.......3.....8.4..6....5...1.........3.5..7.......48..5..6.....
+..4.2.......1....7.......3.....9.4..7....6...1.........5.6..8.......49..6..7.....
+..4.2.1.....8...5..........85.....3......4.9.....7.....6....4.21..3...........7..
+..4.27....1....6...........452............83.7........56.1............42...9.....
+..4.27....1....8...........452............93.7........56.1............42...6.....
+..4.27...5......6............8...4.....6...3..2...........4.7.236.5.....1........
+..4.3...........768........1..5..2......8.4...6........3.6.7.....2...8.....1.....
+..4.3.......5...2..1....8......4..3186...................8.16..2.....97..........
+..4.3.......6...9..7.......5.....38.1............7.....2....7.4...1.9......5..2..
+..4.3.......9...8........7......27..81...........4.....9....2.46..8.7......1.....
+..4.3....2.7..............1.9....63....2.4................6.47.81.5...........2..
+..4.3....2.7..............1.9....63....2.7................6.47.81.5...........2..
+..4.36...1.....5............62..........5.7.....8..2.......2..47......3..5.7.....
+..4.38....2..4..........1..6..7...5........34...1.....7.....6..1..5.........2....
+..4.38....7....4...........5......38.6.27...........1.1..9........7..2..8........
+..4.38....7....6...........2......38.5.67...........1.1..9........7..2..8........
+..4.39....7....6...........2......39.5.68...........1.1..8........7..2..9........
+..4.5.......2...8.........13..1.......7...5........4......6.35..2.7.....81.......
+..4.5.....3....8........1.......13..5..2.......6.........46...591.....2......7...
+..4.5..1.3...8...........9....3..8.7.1.............3..7.....2.5...9.6......1.....
+..4.5.1...3.7.................2...73..6.4...........8......16..7.....2..28.......
+..4.5.8.9.1.............2.........13....4..6.2........8..1.3...5.....7.....6.....
+..4.58....7......1....2..........54.1..7........3.........4.85..3.6.....7........
+..4.6.......3...2..1....7......2..3675...................7.15..2.....86..........
+..4.6....1.....7.....2.....6......3........28.....1....8.52.....7....1.....3..6..
+..4.6..72.83..................3.95..2......9....8......9....3..7...2.......1.....
+..4.6.1.....9...5..........95.....3......4.9.....8.....7....4.21..3...........8..
+..4.6.1.....9...5..........95.....3......4.9.....8.....7....4.22..3...........8..
+..4.6.8.9.1.............2.........13....4..7.2........5..1.3...6.....5.....7.....
+..4.6.8.9.1.............2.........13....4..7.2........5..1.3...6.....9.....7.....
+..4.62.........5.18..........34...6..5.1..7...........4...2..9.71................
+..4.62....1.....5.................14.8.3...........6..2..53....7.6...4.....1.....
+..4.67...2.......5....3.1..1..5...........86........7....1....4.68.......3.......
+..4.7...2.6.....3........51....4.8..3..5.....1...........3.2....7....6.....1.....
+..4.7.5...61...............3..58....92..............19...6.1...2.....7.....9.....
+..4.7.8...61...............3..58....92..............19...6.1...2.....7.....9.....
+..4.71.........6.2....3....23.5............1.8...........6.45...71............2..
+..4.72....1....93..........2...6...7.8....1...........7.6....4.5..9........1.....
+..4.76....1....5............5.1..3........2.18........6.7....8....5...6....2.....
+..4.76....1....5............5.1..3........2.18........6.7....8....5...7....2.....
+..4.76....1....5............5.1..3........2.18........6.7....8....5...7....3.....
+..4.78...1.....2.............61..3...5..2..........6.......6.542..3......7.......
+..4.8...........1..5..........1.32....8...4.....7.........5.6.231.2.....7........
+..4.8...........71....6....7..1..4..3..7.5.........8...8..2.......3...5..6.......
+..4.8.......2...7.........13..1.......6...4........8......5.38..2.6.....71.......
+..4.8...2.6.....1........57....3.9..7..5.....1...........7.2....8....6.....1.....
+..4.8.2...15................3.1..6..6.....9.....5.....7......51....93..........4.
+..4.81....5....3..............4...1..2...7.........5.8...35.6..1.7......2........
+..4.82....7....1...........452............93.8........56.1............42...6.....
+..4.82....7....6...........452............93.8........56.1............42...7.....
+..4.9.....8....5.........1.....4.8..13.......7..2.......5...6.2...3.1......7.....
+..4.9.....8....5.........1.....4.9..13.......7..2.......5...6.2...3.1......7.....
+..4.9....5.....8...........2..8.5...6......97.......1..13.......9..2.......7..4..
+..4.9....5.....8...........3..8.5...6......97.......1..13.......9..2.......7..4..
+..4.91.........6.8....3....25.7............1.6...........8.43...91............2..
+..4.918...6...........3....82.5...........46....2...5....62....3.....1...........
+..41.........3.6...8.....7....3..4.1.2.......7........2.3...1......78.5..........
+..41.........3.6...8.....7....6..4.1.2.......7........2.6...1......78.5..........
+..41.........3.6...9.....7....6..4.1.2.......7........6.8...1......79.5..........
+..41.7....3.5..2...........8.....7......6.3..1.........5..2....6.......1...3...4.
+..415.6..2...................52.9....1....3.....7.........8...57......2..6..3....
+..417....6.....8.....3........43..1.58....6...2..............318....5............
+..417....6.....8.....9........73..4.58....6...2..............718....5............
+..42...........57..3....6.....3....45...6...........9.6.....1.8....75......4.....
+..42........31.....6....4..1..8...........7.9..5...6......56...83..............1.
+..42......1......7.......3.3...71.........4.6......8..7..6...2....4..6......5....
+..42......1....6.........3....1..4..3......8..8.........5...7.12...38.......9....
+..42......1....6.........3....1..4..8......9..9.........5...7.12...39.......8....
+..42......1....6......7........8..2793..............5...75..1.......13..2........
+..42......7....3........1..1...3.......6...4.......58..2.4...6.5...7....3........
+..42......7....6...9.....4.....493..1...5....2....1..........916..8..............
+..42......8....3........1..1...3.......6...4.......59..2.4...7.3...8....5........
+..42....13.....7..5...........1...6.....52...8......4..26..........3.9...1.......
+..42..6...5..1..............3.....45...6...7.8..1.....2.....1....7..5.......3....
+..42..6..78................6.24.........7..1.........831..8.....7.5...........2..
+..42.5.6....7......8.......1...8....72...........1.3..3..6...........1.8......4..
+..42.5.6....7......9.......1...9....72...........1.8..3..6...........1.9......4..
+..43.....6......5........1....2..4.851...6...7...........84.2........3..1........
+..43.....6......5........1....2..4.851...6...7...........84.9........3..1........
+..43...175...2...........8....46.2..81.............9..9.....6.....1............3.
+..43...175...2...........9....46.8..91.............2..4.....6.....1............3.
+..43.26...18...............2..4............85.......1.67....4......35.......1....
+..43.57...18...............2..4............86.......1.52....4......36.......1....
+..432.....5....1........7..7......62...5.1.............8.....3....4..5..2...6....
+..45............63.......1.....7.9....8...4.......1...5..4..2..31........6..8....
+..45............7........6.....8.4.3.2....5..6....1......43.8..7..8.....1........
+..451....7.....8.....3........43..5.68....7...2..............312....6............
+..451....7.....8.....3........43..5.68....7...2..............318....6............
+..452....1.....73...........56.....8....37.9.............6..5.1.2.......3........
+..453...........76..........2..8........9.3..87.........32.64..1...........7.....
+..46............28.7.....5.3......4..1.7........1..3..2...5........3.7........1..
+..46...........78..5........1.3..5..2.....1.6...4.....7...1......8....4.........3
+..46.........2.8..............7.1.6.3.....5..8..4.....58..3...........41.2.......
+..46.........3.2...........7.8....4.....2.3.......1...23....5.....8...6..5.4.....
+..46.........3.2...........8.9....4.....2.5.......1...25....3.....9...6..7.4.....
+..46......5....8........2..2...8........3..9...1....4..7.1...6.8.....7.....4.....
+..46.....8......2.......8...2......65..4........7..4...3..2..5...7.....4....1....
+..46..7..2..4.5.........1...7..1.......5...2.3.......8.3..7....5......4..........
+..461....2.....9..............8.72...6.3.....4........5...29..........36.1.......
+..462..........7.8........328...5......4...1.3...........1..46.8...3.............
+..462....1.....53...........67.....8....53.9.............7..6.1.2.......5........
+..467..........1.5......3...68....7......1.......2.......7..43.25.......1........
+..47......3......6.......2..5.1..4..........96........2.1.6.........85........71.
+..47......3......6.......2..5.1..4.........8.6........2.1.6.........43........7.1
+..47..2......5.3........8.....1.4.7.32..........6.....53..........4...1.8........
+..47..2..3..8.....1.........6.48....4......3........51.7....9.......1.......5....
+..47.1....3.....85.........1...5..6...7...9.....2........9..4..56.......8........
+..48............36.......1.....2.8....7...5.......1...5..4..2..31........6..7....
+..48...........1...2...........65..26...1...........3....2..74..5.3.....1.....6..
+..48........5...3.2.....1........2.9.3.7...........4......24.6.35...........1....
+..48......3....2.....1......6..9...........48....3....9.....73......26..4..5.....
+..481..........92.....4....26...75..........1.9.......8.13..........2.6..........
+..487..........1.5......3...68....7......1.......2.......7..43.25.......1........
+..49.............1.......3.14.......7.....9.....8..5....5...28..6..13.......7....
+..49............63.......1.....7.8....9...4.......1...5..4..2..31........6..5....
+..49......5....8........2..2...8........3..9...1....4..7.1...6.8.....7.....4.....
+..49..5..8.3....4..........1...34.........2.6....8....95.2............3..1.......
+..491..........25.....4....27...86..........1.5.......9.13..........2.7..........
+..5.....6.3..4........2..7.1......4....5..3.....6.....4...3.2.....1....5.8.......
+..5.....8....3..7..1..........1.52..74.....6....8.....6..72..........1..3........
+..5.....8....7..6..1..........1.57..6......2....8.....7...2.3.....4....12........
+..5.....9....3..8..1..........1.52..34.....7....9.....8..76..........1..6........
+..5....1.....42.........4..4.......6.8.3........1......7....13.2...68.........5..
+..5....1.2...7.......6......3.5.8...7.....4.....1...........7.2..13......8....6..
+..5....1.2...7.......6......3.5.8...7.....4.....1...........7.2..13......9....6..
+..5....18...32.................61...3.....7....4.........7.8.4.26....3...1.......
+..5....183..4.................5..37..18.7.....2.......4.....9.....6..4......1....
+..5....183..9.................5..37..18.7.....2.......4.....9.....6..4......1....
+..5....2.....3..8..7..........6..43..2.5.................2..7.18...4....3.....5..
+..5....2....1.....4...........4..1.8.5....4....9......8..62.....3....7.......9.5.
+..5....23.1..7................5.36..48....7.....2.........9.14...3......7........
+..5....23.1..7................5.36..84....7.....2.........9.14...7......3........
+..5....24.1..3...........9..3....68....2..........7...4..9..7..9.2............1..
+..5....3....6..4...1..........25...14...6..........3..6.....82....71.........5...
+..5....31.2..8..7..........3.....4......5.2....7......1..4.3...6..2......8.......
+..5....4....1.....6........12....3..4....8.......5.7..2..3.........7..5..1......9
+..5....4....2..1..7.........3.1............5........7..2..6.8......543..1....7...
+..5....48.......2..7.......3....17....2.4..........1..6..23.....1....6.....9.....
+..5....48....1...........7.32....6.....4.....1........76....1.....5..3.....8.4...
+..5....6....78.............2.....4.7..13...........8.....6.1.3..4..7....58.......
+..5....61....2...........3.5....78..3.4......6...9.....9....2...1.3........1.....
+..5....616......4....8........2..3.....1.8...1.........9..7.8...2..4.........6...
+..5....63.7..2.......8..........5.8.....36....4....7.....7..2..6.3......1........
+..5....7..2.....6.....41......6...2.4.....3...5.......3.....1.8..75...........4..
+..5....73.8.4........1.........2...56.....1..4.........9..3....1......4......56..
+..5....76.4..3.............1.65...........34.......9.1...6.1....3....4..2........
+..5....76.4.31.............48....1.....5.7......6.....3...2.4..1..........7......
+..5....8....7...6.2..3........16..4.3.....5............6..89....7....3........2..
+..5....8.1..............7.......13.56...7.....3.....4..2.84.......9....6......1..
+..5....824..3..........1...1.....3..3..7.........8.....26.5.......4..7...8.......
+..5....87.2..4........1....3.67.....1.....2........4..4......16...5......8.......
+..5...1........42.8...3....3..5....8...4..........7....4....7...2..6.......38....
+..5...1.....3.4......2..........6.42....1..7.2.........1..9.5........8.34........
+..5...16.4....8.........5......24..8.51..........3....23..........6..7.....1.....
+..5...2.......3......1............19....6...73...5....19.4...........52..8....6..
+..5...2......4...1.6.............53.4...6....1........94......8...2.3......5...9.
+..5...2......8.3...7..........6..84..2.5.................2...718...4....3......5.
+..5...2.....8....13........2...73..........1.....2....69....3...8.1........4.5...
+..5...2...6.4........1...8.3..2............46......7......671...8..5....4........
+..5...2..1....4.......8...7...2.1....87.......4.......3.....12.....6.5.....7.....
+..5...2.4.6.3...........1...83....7......26......1....5..7...3.2.......8.........
+..5...2.4.6.3...........1...83....7......26......1....9..7...3.2.......8.........
+..5...2.9....41....3.......6.27.....4.....81..........18.....3....25.............
+..5...2.9...7.1....3.......76.....3.....9.8..4........1.9.5.......6...7..........
+..5...2.9...8.1....3.......17.....3.....2.6..4........8.9.6.......7...1..........
+..5...2.9...8.1....3.......17.....3.....9.6..4........8.9.6.......7...1..........
+..5...2.9...8.1....3.......87.....3.....9.6..4........1.9.6.......7...8..........
+..5...24....69.............3.....1....8..2.......4...6...8..7...6.1.....94.......
+..5...24....69.............3.....1....8..2.......4...6...8..7...9.1.....64.......
+..5...24.3..6........7...1.63....8..4...2........1.....7......6...8.......1......
+..5...28.....6..7....3........2..1.3.68............4..23...5.......8....9........
+..5...3......2.......1.....9.......4...6.5.......73....2....53.18.4...........7..
+..5...3......2.......1.....9.......4...6.5.......73....8....53.12.4...........7..
+..5...3...2.4...........1.......5.281...7...........4.7.....56....83.......2.....
+..5...3...2.4...........1.......5.283...7...........4.7.....56....81.......2.....
+..5...3...4.1........8.7......25.4..7......1..........8....6.7.....9.5..1........
+..5...3...4.7........1.8......25.4..8......1..........7....6.8.....9.5..1........
+..5...3..1...6........2.....7.41....6.....8........5.....5...1....3.8...49.......
+..5...3..8...2.........4.....93........5..7.........2....15.6..24......9.8.......
+..5...3.1.7.82.................7..4.3..6.....1...........5..7...8.....2.4....1...
+..5...4.......8.......3.....1...6.8.3.7.........2........54.2..86.......1.......9
+..5...4.......9.......3.....1...6.9.3.8.........2........54.2..96.......7.......8
+..5...4...29............81.6.....3..4...9.........5...1..3........87.....4......9
+..5...4.86..7........1..5......5.3......42...1.........24.........6...7..8.......
+..5...41.2....8.........5......26..8.54..........3....63..........4..7.....1.....
+..5...41.3....7.........5......23..7.54..........8....23..........4..6.....1.....
+..5...41.3....9.........5......26..3.54..........8....63..........4..7.....1.....
+..5...43..8.2.1............7.6.....19...6...........8..2.5.........3.9..1........
+..5...6.....1..2..3..4.......8.62....4......1.......3....8...5..2....9..1........
+..5...6.....8....12........3...76..........1.....2....69....3...8.1........4.5...
+..5...6...28............31.7.....4..4...8.........5...1..3........96.....7......8
+..5...6..1....7.......2.4.....4..5.3.1..8....2.........2.....1....6.3......5.....
+..5...6.1.3.8.................7..32.1........4.........7...5.3.....1.5......46...
+..5...6.7.1.2..............28.....3.....76......1.....3.7...4.....8...2.......5..
+..5...6.86...1................8.37..14.......2..7......8.....1..7.....2....5.....
+..5...67.....81....2...........4...1..76.....3........14....3.....5...6.8........
+..5...7....6....3....4.....84..3............1......5.....2.56..31.....4....7.....
+..5...8...2.4...........1.......5.293...7...........4.7.....56....93.......2.....
+..5...8...3.2...........1..2..3...7...8...5...........94.....3.....68.5.....1....
+..5...8.72...4.................61.2...73.....48.......6......4....7..5...2.......
+..5...9......64........8...3.7....6.....4..8.2..5......3....2..64..........1.....
+..5...9...4..1.......3.....7..6..2..1............5.......2..54........183....7...
+..5..1...7.....2............185...3.....4.6...........62..7.......3...814........
+..5..1...8.....2............195...6.....4.7...........72..8.......3...914........
+..5..2......1..8..3..8.........6..451..3............2.76....3......54............
+..5..28...1.4...............3.....41....87..........3.7.8...6.....15....2........
+..5..3.9.6......4..........7..49.......8..1..2.....3...3......6...6..2...1.......
+..5..4.......2..1..6.....3...4...7..3..6........1.....2.....4.8.1.7...........5..
+..5..4.......2..1..6.....3...4...8..3..6........1.....2.....4.9.1.7...........5..
+..5..83..1..5..............92.....1.....34.............6....4.5..721.......9.....
+..5..84.162.7..............7.....63.3..2.........1.......3...9...4.......1.......
+..5.1.......6..3..4......2.1...42.5..7....6............863............4.......7..
+..5.1....7.....3...........26.7.8......3....94......1..1....2.....6...5..9.......
+..5.1..2..64.....................6.37.....9..8...2.......4.6....9.3.....1......5.
+..5.14....8....3...2.......4..69.......8..2..1........7......54...3............9.
+..5.2.....1.....6.......3.4....1.6..8........4...........8.4.7..62...5.....3.....
+..5.2....3......6..........5.....8.24..7.9.........1...2.48.......6...3..1.......
+..5.2..3..6.5..................7.2...1......68....3...3.....78...46........1.....
+..5.2..8..7.1.................6..1.3..8..5...2............84.5..3....9..1........
+..5.2.1.....1...6..........61.....3......5.7.....8.....7....5.24..3...........8..
+..5.2.4..6.7................2.45...........168.....3.....7.6....8....2.....1.....
+..5.2.6.9.1.............2.....5.1.4.9...........3.....2..8....36...9...........1.
+..5.24..........1.4............7.4.2.1.6......3....8..2.....5.....3...8....1.....
+..5.26....1....3...........37.1............658........4...89......3..7....2......
+..5.28....6.....9............2...3.....6...7.1............3.5.264.1...........8..
+..5.28....7....6...........3..6..4..5.27.....8.........1..7...........85...4.....
+..5.29..........71.............3.26.17.......4..........34..5...2.8........7.....
+..5.3.........2.7.8......1..4....3.....8..5..7..1.....1..6...4.....5.2...........
+..5.3..2..4......1.............2.5..6.4......17..........6.47..8.....3.....1.....
+..5.3..2..4......1.............8.5..6.4......12..........6.47..7.....3.....1.....
+..5.3.4....8....7...........4....5.3...8.7......1.....2..6...8..3..2....1........
+..5.32...6......7............8...5.....7...4..3...........5.3.247.6.....1........
+..5.4.....3......1....2.......1.85........47....3.....81.6...........25.3........
+..5.4....7......2......1......5..3.....6...7..1.......8..2.3.......5.1.4......6..
+..5.4...2.7....6..............6.71..4..3.......8....5.....2..4..6....3..1........
+..5.4.2..6......5.1..7.....3..5...1.....2.....8........24...8.....6.1............
+..5.4.6.8.....3............2..6...1....58...........3.71.......3.....4.....8..5..
+..5.42..1....6..37.........13.7......6....2.............2...4.....3...6.8........
+..5.46....7....2...........1..3....7.3.2............6.6.4....5....7..4..8........
+..5.47....1....3..............1..5.34..3...........8..7...8..4....6....7.......2.
+..5.6...........4........7..2....5......8.3..57.........3...6.12..7.4......8.....
+..5.6.1...3.8.................2...83..7.4...........9......17..8.....2..29.......
+..5.64..........81.............2.47.18.......3..........43..5...2.9........8.....
+..5.64...2.......7....3.1..1..3...........68........5....7....2.46.......8.......
+..5.672...1.....3..............1.6...8.3.................1...432.64.....7........
+..5.672...1.....3..............1.7...8.3.................1...432.74.....6........
+..5.7........2..4..1.............2.724............95..6..4...3...8...7.....1.....
+..5.7...6...2...1........3....75.4...1....8..3.........84...2.......1...2........
+..5.7..1..64.....................6.37.....8..5...2.......4.6....8.3.....1......2.
+..5.72....1.....6.................15.8.3...........2..4..63....7.2...4.....1.....
+..5.8.....6..3...........1....7.1....4....8.....2.....1..6.7.........3.62.....5..
+..5.8...61.....4..2..............51..7..3....6..4......3.....24...1......8.......
+..5.81.........7.9....4....34.2............1.9...........7.56...81............2..
+..5.81.........72.............23.5..1...........7......7.6.4...4......18......2..
+..5.9.2........7.6......1...59.......4.6........1.....6..7...4.....8..3.1........
+..51.........4.3..6.....9.....2.5...34..........6......32.7...........68.......5.
+..51.........7.3......2.......6..54.28.......7.....6.........82.3.5..........4...
+..51...4..2....7..7........8...27..........51.........3.....2.....56.......4.1...
+..51..3...1..89.........2..3.1....7.....42............64.....8....3.....2........
+..51..3...7....8.....5.....4.....6.2..17.....3.........6..48..........1.....6....
+..51..3...7..89.........2..3.1....7.....42............64.....8....3.....2........
+..51..3..2..5.6.........8.......4.2..3..8.....1.....6.6..7.........3.4...........
+..51..4..1...6.......2..3..72..........4.5................2..71.4...8..........6.
+..51.7....2.....8..........6..3....1.8....2........4......2..5.7.3......1...4....
+..51.7....6....2..............5...71.3..4...........9....68.4..9.7......2........
+..51.7.6....2...9.3........2...4........3.5...1........9.8...........4.2......3..
+..514.....7....36..........2....683...45.................4....163...........2....
+..52..........19...3.............75386...............24.....18....39.......5.....
+..52..........49...3.............75386...............24.....18....39.......5.....
+..52....1.1.....43............6..51.43.........7..........31...2.....8......7....
+..52..7..3...1..............574......2.....6........3.8..63..........5.2.....1...
+..53........4...2.9.......1.4....38..2..1........9....1...8.......7..4..5........
+..53......7....4........1......2..584....7..........3.1.....62..2.5........8.....
+..53.....2......8....1........6..15.72.............3..4...87.........5.1....2....
+..53...8.7.....5..2.........6.24....1.....7.....8......8.....3...9.7.........1...
+..534.....2....1.....6.....3..4...........85...4...2..6......3..7..2.........1...
+..534....2.....7................291...6...2...4...7....3..6...4...2.....1........
+..54....6....3.7..............8.5.4.39....1..7..2.....13..............85.........
+..54...7..2.9......1.......7...6..4......1............4..35....8.....6.1......2..
+..54..1...78...............62...8...4.....3.7......5..2......6.....5..7....3.....
+..54..2...72..........3....6......38...5.1..........7....28....3.....1...8.......
+..54..2...72..........3....6......39...5.1..........7....89....3.....1...9.......
+..54..36..1..........2...........6182..57.............4.....5.......8..7....1....
+..54..8...12...............46.7............21........86...21.........73.....5....
+..54.2.....76......1.....5.......17.3..8...........2..63......82...1.............
+..56..........4.2.1.........4.1......2......3......5..8..53..........47.....2.6..
+..56...241..5............3.78....1.....4.....2............2.7....4..3....6.......
+..56...241..5............3.78....1.....4.....2............2.8....4..3....6.......
+..56...37481...............6..3...4.....9.8...........32.7.........8.1...........
+..56...37481...............7..3...4.....9.8...........32.7.........8.1...........
+..56..1..36...7...............15.8..72..........4.....5.1.............27.......3.
+..56..1.2.74............6.......3.8.....54...1.........3.....4.2..1.........2....
+..56..1.928..7...............9..8.......4..3..1.......7......4.4.....8.....1.....
+..56.73...1..........4.........2.8........1.29..3.....4......6.....1..5......8...
+..561....4......27............8..9..7..1......2.......53...2....8....1......4....
+..563.7..4........3........1......4..6.2........7....8....45....8....2......1....
+..57............28.1.....6.3......5..4.1........4..3..2...6........3.4........1..
+..57....4.....1.3........8..4....7......38.....9.6.......5..2..83.......1........
+..57...4........28.1.......7..6..1..2..4...........9......185..3...9.............
+..57..2..1.3...5..4.........7....6.2....41............58.2.........3..1..........
+..57.36...1..........4.........2.8........1.29..3.....4......3.....1..5......8...
+..57.46...1..........9.........2.8........1.27..3.....4......9.....1..5......8...
+..57.6......3....12......4.....58.....9...7......4..........58.41........2.......
+..574..........9.1.3..........35..4....6.....9........18...9.........25.2........
+..576...........4.......3..48.....1.3...........5.......62..5.714...8............
+..578..........2.1...3.....21....9..4.....3.....56.....3.....8......1..........6.
+..58......7....6.......1.......7.2.58..3...........7..4......38.2..5...........9.
+..58...7.9......3.............9..6.4.3....5..2..........4.6.1......3..2..6.......
+..58..9...4.6..7...........1......6........12...7..........15..7...2....2...3....
+..58.4...1.....2............4.....862...1.................7.12..865...........3..
+..582....1.......37.2.......8....5.......34......71....4.6............1........7.
+..59...23....1...........9.14....6.....2.....6........8...4.1....23......9.......
+..59...23....1...........9.14....8.....2.....6........8...4.1....23......9.......
+..59..2.6....1..........9..8...3..1..9.4.......2......13.....7....2.....7........
+..59.1...3..2......6....4..1...7.6..2........9.........7..4...........29.......3.
+..6.....1...23..............89..1.......6..7.......3..4.....51.23.9.............6
+..6.....1.1.6.........2....5...3.2..74..............8.2.....35...81........4.....
+..6.....1.1.6.........5....5...3.2..74..............8.2.....35...81........4.....
+..6.....1.1.6.........5....5...3.2..74..............8.2.....53...81........4.....
+..6.....1.1.6.........5....5...3.2..74..............8.3.....52...81........4.....
+..6.....17...5.............34.6.........3..7..1....2..8.....75....1.2......4.....
+..6.....7.3..1........4..9.1......4....6..8.....7.....4...5.2.....2....6.8.......
+..6.....7.3..5........1..9.1......5....6..8.....7.....5...4.2.....2....6.8.......
+..6....1.....83.......7.......2..16.84........3....7..3.....5.8.......2....1.....
+..6....1....27.....8.3..........83....1......4........23....5......56..41........
+..6....1..2..4....4...3.....715...........4.3......2..5.....8.....6.7......1.....
+..6....1..9..5........2....3.....2....13.........4.7...2....57.8..6........1.....
+..6....1.4...5.......4......2.1.8...5.....3.....6...........7.2..13......8....5..
+..6....1.5...8........4....6..1.3...3.....4.....9.........2.8...9.7......1......3
+..6....1.5...8........7....3.....8.7...2..5..4..1......17.6.....2..........4.....
+..6....1.8..7...............14.3.......9..2..7............14.5.97....8..2........
+..6....15...24..............2.3..4..37............5.8.....7.2....5..1...1........
+..6....2..4.....7.....1....3.....1.9..28...........4..8..2.6....1....9.....5.....
+..6....2..84...........1......67.4..15..........2.....3.....5.1...92..........8..
+..6....2.4..5..........83..1..6.........3..6..7.....4..83...1.....4..2...........
+..6....2.5..3..........84..1..6.........4..6..7.....5..84...1.....5..3...........
+..6....24.1..3................6.41..85....7.....2.........9.35...7......4........
+..6....24.1..3................6.47..85....1.....2.........9.35...4......1........
+..6....25...9.1...8..........5.3.......4..1...2........3..6..5.1.....7..4........
+..6....28.7.3............5.3..1..4.........6...5......43....7......52.........1..
+..6....28.7.3............5.3..7..4.........6...5......43....7......52.........1..
+..6....3......25...1.......8.....7.2...36.......9.....7....52.....14..6..........
+..6....3....9..5..4........78....2......6.4.......1....9.3...1....4...6.....2....
+..6....41...72.................14.5..3....7..42..........3..2....5..8...1........
+..6....42.3.1..................678..2............4....1..5..3..57.2............6.
+..6....5....1.....5........12....3..4....5.......6.7..2..3.........7..6..1......8
+..6....5....1.....7........12....3..4....7.......6.8..2..3.........8..6..1......9
+..6....54..2.9.............1...3.8...5.2.................4...2638...5.........7..
+..6....58...4.1.........6.....75..4.21.........3..........8.3..17.......4........
+..6....58...4.1.........6.....78..4.21.........3..........5.3..17.......4........
+..6....58...4.1.........9.....75..4.21.........3..........9.3..17.......4........
+..6....58...4.1.........9.....78..4.21.........3..........9.3..17.......4........
+..6....7....48.............2.....5.4..13...........8.....7.1.3..4..5....68.......
+..6....8..7.1.............3.5....14.....38......2.....2...1.7.....4..6..3........
+..6....82.1.7..............6.2......4..9...........1...3...57......263......8....
+..6....9....4...2.7..3......7.8..5..1......6..............621...4....7......9....
+..6...1.....43.....3...5.....86...........2........5..25......3...8...7.1......4.
+..6...1.....43.....3...5.....96...........2........5..25......3...8...7.1......4.
+..6...1...18..........2..3.4......23...1....4...6.....54...3.........8..7........
+..6...1..3.7.........4...5..2.5...........3........7..2...71....5.....2.....3...8
+..6...1..5....7......2..........5.84..1.3.....2.......4...6.5...8.1...........3..
+..6...2...7.5........4...9.3..1............57......8......781...9..6....5........
+..6...2..4...5.......3....1...4..68..1..............4.....124..8......57.........
+..6...2.9...4.1....3.......17.....5.....9.8..4........2.9.6.......7...1..........
+..6...21.7...3................5.1.8.34....................4.7.3.152...........9..
+..6...25.78..1................6.23..1...........5........34...7.25............4..
+..6...27.4..8..3............75....1....4........3......1...2...2.......8....7.5..
+..6...3......1.2...7..5.......4..6.835.......1..7.....2......1...36..............
+..6...3......84....2.......8.....9.14..5........6.....74..1..........62........5.
+..6...3.....54.....2..........7.6.5........8.4........57.1.....1.....2........6.3
+..6...3.....7...2...........85.6........4..7.........147.2.....3.....5.....1..6..
+..6...3.....7...4...........85.6........4..7.........147.2.....3.....8.....1..6..
+..6...3...2.5...........1.......6.293...8...........5.8.....67....94.......2.....
+..6...3.25....9...............28....1......4....6.........64.7..82...5...3.......
+..6...3.8....74.............7.6..2.....83.....5.....4......2.5.8.3......1........
+..6...34..1...8.........6.....4..53.1...7....28..............71...63.............
+..6...37.....81............1...5...8...4..6..............6..43.82.......5..3.....
+..6...4...1..5........7.......4..7.5.3.8...........2.....6.1.3.7......5.2........
+..6...4..7.....5......1....49....3.....6...8..2...1......8...125..4..............
+..6...5...1..........2.........31...4.....7......8.4..2..7.4...7......3....6...1.
+..6...5.1.1.4.8............82....7......5.6..4........7..2...8...3.6.............
+..6...52.78..1................6.23..1...........5........34...7.25............4..
+..6...54.....81....2.......6..4..3..5.7..........2.....1......8...6...7.8........
+..6...58.1....9...5.7.......9....3......12.......7...........71.2.4........3.....
+..6...7...29............54.8.....1..5...9.........6...1..3........17.....8......9
+..6...7..7.....4......1....59....3.....6...8..2...1......8...123..4..............
+..6...7.2...45.................863..41........5.......8.....15....9...4......2...
+..6...8..2...4........15......9..3.81..3.....4.........3.8..9.......2.1..........
+..6...8..5...3........1.......6.25...1......943..........7...1...93...........4..
+..6...8.3....1..........2...4....19....3.2......5......5.6....71......4.2........
+..6...8.4...9.1....3.........4.6.7..5..2...1.9........1...4.....2.....3..........
+..6...8.4...9.1....3.........4.7.6..5..2...1.9........1...4.....2.....3..........
+..6..1.........24..8.......4..3............857.........5.74....2.....3......8...6
+..6..1...8.....2............195...6.....4.7...........72..8.......3...914........
+..6..2....4....5........1....7....3.2..1........5..4..3......27.1..8...........6.
+..6..5.3..2..4.............3..7.........1.8....5...4.....2...56.4...8...1........
+..6..7..12......4.............45......9...3.....8.........137..48.....2..5.......
+..6.1.........4.8.7......2....2.5......7..6........1..2..3...5..3..6.4...........
+..6.1.....2.....7........3.5.....14......96...3.2.......1...4..4..8........3.....
+..6.1.....2.....7........8.......63..7.8.....5.....1..4..3.5.....1...4.....7.....
+..6.1....2......7.4...........4.2..6...7..3........1.863..........2...5..1.......
+..6.1....25.......4.....7.....7...3.5.......1...3.8....7....8.....2..4...3.......
+..6.1....25.......4.....7.....7...3.6.......1...3.8....7....8.....2..4...3.......
+..6.1....25.......4.....7.....7...3.8.......1...3.9....7....9.....2..4...3.......
+..6.1....5......4..........8.....3.12..4.9...........7...2...5..1.6......7....8..
+..6.13....7....5...2.......8......31...5............6.3...5....1..9........7..2..
+..6.14....9....5...2.......4..75.......9..2..1........8......64...5............3.
+..6.2...........54.......3..7..6.8...4.......5..........84..2..3..5.7.........1..
+..6.2.........8.1.......57.......6.24..7........1.....17.5.........6.3...4.......
+..6.2.......6..3........5.135.1.........7..2..6..4....1..3.......7....8..........
+..6.2.....8.....7.........1..4...2......58...7..1.....3.....64....4..5...1.......
+..6.2..4..8.9..3...1........3....1..9...7.............5......743..1........8.....
+..6.2.5...1.4......53......7...86..........41.......3.2....56.....1..............
+..6.2.5...19..................3.9...8.....2.....1.....4..57....3......19.8.......
+..6.2.7...19..................3.9...8.....2.....1.....4..57....3......19.8.......
+..6.31....2.....9.............25..8.1...........9.....4.....1.3...82....7.....4..
+..6.32....5.....1................6.3.9.7...........2..9.2...4..3..1........5...8.
+..6.32....5....87.......9....4.....2.3.8........7.....8......5.....64...1........
+..6.35....2....4..............1..2..8......7.5...........2..16.3......5..8.4.....
+..6.37....2.....8.........14.7...3.....2.....3........58..4..........62....1.....
+..6.39..........21.............4.37.21.......5..........45..6...3.8........2.....
+..6.4...........5........9..3....7......6.4..79.........7...8.12..9.5......3.....
+..6.4..13....13...2........8..2..5.........4....8......1..6.......7..8........7..
+..6.4.1..3......6.....8...2.4..2.......3...5...1.......2....4..8..7........5.....
+..6.41....9....5...2.......4..75.......9..2..1........8......64...5............3.
+..6.5.........1.3.7......4..3....6..5..4.............1...7..25...1...7...8.......
+..6.5.........1.8.7......4..3....6..5..4.............1...7..25...1...7...8.......
+..6.5....1......2.......7.....7.2.8..53.........8.....72....4......6...5......1..
+..6.5..2.4....7............1.....4.....82....73........524...........7.1.......8.
+..6.5..4.3......7.....1.....1....5.82..6........4.....4..2.7.........8........1..
+..6.52...1.....8..............83.7..2.5.......1.......78.4............56......1..
+..6.57...2.......8....3.1..8..4...........79........6....8....1.57.......9.......
+..6.7...........8........5..3....6......9.4..68.........4...7.12..8.5......3.....
+..6.7.....1.4......9....5..6.....7.2...9..8..4..1.....3....5..........1.....2....
+..6.7..1..5.3.................56...21....4...87.......2..9...........18.......6..
+..6.7..2..5.1..8...............24.7.31................2.7.........8..1..4..3.....
+..6.7.2.......4.87.5.......8..3.9......5...........6.....6...95....1....4........
+..6.7.4..35.................74...6.....3.8.1....2.....8.......3...5..7......9....
+..6.7.45..1.8......2.......7...4....4......8.........1.8.2.....3.....7.....1.....
+..6.75..........21.............3.58.21.......4..........54..6...3.9........2.....
+..6.75...2.......8....3.1..8..4...........79........6....8....1.57.......9.......
+..6.783..4.1................2.3.5..........41.........2..64.....9....5.....1.....
+..6.79....2.....3......1......84.9..36.5...........1.....3...2.7.1...............
+..6.8...........5........9..3....8......6.4..89.........7...6.12..9.5......3.....
+..6.8...........5........9..3....8......7.4..89.........7...6.12..9.5......3.....
+..6.8.........2..9.5.....3..9..3.......5..8..2.....6....8..71..4...........9.....
+..6.8.....5.....6.....1.......5.34..1.......2...6.....8..4..7........35.2........
+..6.8.2..1.7...............4......71.8..2...........9.53....4.....6.7......1.....
+..6.8.5...3.....2..........5...2......8...1.....3...7.37.2...........4.8.....1...
+..6.82..........7.....4....79.1...........8.41...........7...9.63.........8...2..
+..6.82....4......1......3..2...7..6.3.5.........4.....1.....5...9.....2....1.....
+..6.83....1....2...........8.3....5....1..4..........674.2........4..1.........8.
+..6.87...2.......9....3.1..1..4...........75........6....9....2.57.......8.......
+..6.87...2.......9....3.1..1..4...........85........6....9....2.58.......7.......
+..6.87...2.......9....3.1..9..4...........75........6....9....1.57.......8.......
+..6.87...2.......9....3.1..9..4...........85........6....9....1.58.......7.......
+..61......2....7......3....8...6.......4..2.......75..3......86.....5.4....2.....
+..61......23............8.5...31....7.....4.....6...........13.47.......5....7...
+..61......23............8.5...61....7.....4.....3...........13.57.......4....7...
+..61.....2......3......74.....6..5..3.........4..........23...6.85...7......4....
+..61.....4.5..........3.8...7.6..3.....4.5......2.....2......54.3..8.............
+..61...2.8.4......7..5......3.2...5.4...8.3...............478...1................
+..61...4.2..5.3...3........7...6.3.....4............8......52...4..8.....1.......
+..61...742..8.....9.4.......5.3.........9.4........2...8......1.......3.....2....
+..61.4.3..7............9....3.27....5......14.............8.7.61..............2..
+..61.7......2...3.8......4...75..6...3..4............124.......1.....5...........
+..61.7......2...3.8......4...75..6...3..4............124.......1.....7...........
+..612.........3.5..7.............6.19....4.........3..54.....8....76.......3.....
+..612....2..4..7............1....5......8.3....5......3....9....8......6...5...1.
+..614.....2....5.....7...........87.1..3.......5...2..4......3..8..2............1
+..614.....2....8.....7......5..2..6.7.......1...............54.1..3.......8...2..
+..62......4......3.1.....8.2..53....7.....1......8..4....6..9.......1...8........
+..62.....3.....5......8.4....76......1....8......2.......5...7684............1...
+..62....871.....4....3.....54.....9....6..3.............3...2..8...4........1....
+..62...583...1................5...2.14.......7.........854.........9.3........1..
+..62...7.4.....8.....6.....35..1....1...4...........2.......3.1.72.........9.....
+..62..3..7.....5......8..1....8...4253....................571...24...............
+..62..3..7.....5......8..1....9...6253....................571...24...............
+..62.1.4.8...........5.........7.83.5...8.....2.......3..74..........1.2.........
+..62.13..7.......4.........48.......5...4..........1....13..2......7..5..2.......
+..63......7....6......5...1.2.6............38.....7.5....2..7..5...4....1........
+..63.....4.....8......7.....351...........76.......4..87..2.......5...3.........1
+..63....12.....3..8...........1.97..4......2....5......1......5....2..8..9.......
+..63....18.....3..2...........1.97..4......2....5......1......5....2..8..9.......
+..63...1.42..............8.....4.5.71..............2...7..2.4.....1...3....8.....
+..63...5814.7.................2..9...85...............7.....63.....84...9........
+..63...7..1....8...5..7........51...7......4.2.......33..2...........1...8.......
+..63...7.1.....2.....8.....45..1....2...4...........3.......4.2.73.........6.....
+..63...7.1.....5.....8.....25..1....4...2...........3.......4.2.73.........6.....
+..63...7.1.....6.....8.....25..1....4...2...........3.......4.2.73.........6.....
+..63...7.1.....8.....6.....45..1....2...4...........3.......4.2.73.........8.....
+..63...7.1.....8.....6.....45..1....2...4...........3.......4.2.73.........9.....
+..63...75.1..........2.....5.......2.....84......1........4.81.3..5.....2........
+..63..1..2...4.............472............5.1......6......36.2..1.5.....8........
+..63..1..2...7.............472............5.1......6......36.2..1.5.....8........
+..63..1..2...8.............482............5.1......6......76.2..1.5.....9........
+..63..2..15..4.............4...81....2....6..............6.73..8......1....2.....
+..63..7...4..5.............53.1........6..8..2.............4.267...2...........3.
+..63..8..7...4....5............51....8....4....2......1.......5.7.4........8...2.
+..637..........8.1.....4......6..23..1...8...............23..6.48.......5........
+..639....4.....15.......7......2..6.31...................4..8...72.........1.3...
+..64...........1.3......5.....5.8.7.31.......2..7......5....2.....6...4.....1....
+..64........5...3.8.......1.5....42..3..1........8....1...9.......7..5..6........
+..64......3....7...15............15.2..8............3.....165..7.......8....5....
+..64......5....2........1.....67..4.29..........8.....1...52...3......68.........
+..64.....2......7.......1.....1..4.683.............5...546.........7..82.........
+..64...1.....5.7...2.......58..3...........62...5.....7.....3..3.......8...2.....
+..64...2.3...7.................1.7.3.25............1.....5.2.8.74..........6.....
+..64..8..3...6....1............21....8....5....3......2.......1.7.5........8...3.
+..64.35.....1.....8........7..52...........1.........314...........8.2...3..7....
+..64.5...7......3.1..2......2.5......3.....7.........14.....5..8...7..........2..
+..642..7..1..........8.....8.....3......5.........1........624.9..3.....5.......1
+..645...........87..........25...6.....8.3....4.......8....7.1.....2.4..1........
+..647...........81.............3.4..61........9.......5..1.8...2.....36....9.....
+..647...........81.............3.7..61........9.......5..1.8...2.....36....9.....
+..65......8....1........2..42....8.....7...6.1..........5..2.3........57....1....
+..65...124....7............3.....75.8..21.................943...1.............4..
+..65...2.3...1.................5.3.8.24............1.....4.2.7.83..........6.....
+..65...3.4...7.................1.7.4.32............1.....3.2.8.75..........6.....
+..65...421..6............3.78....1.....4.....2............2.7....4..3....5.......
+..65...47....1.....3..........4.7.6.1.....3..8........2.....8...4.6...........1..
+..65...47....1.....3..........7.4.6.1.....3..8........2.....8...4.6...........1..
+..65...74.1..........8.....8..23..........9.12............193..5......8..........
+..65...9......4..3.1..........16.8..39.......2..7.....4....3.........1......2....
+..65..4...1.....2.............7..3.6.8.3.....2........4...21.....7...6......8....
+..65.9....7....8.............57.....9..2.....3.....4...2..84..........65....1....
+..653...........81...4........2.65..17.......8.........4..71.........32..........
+..653...........91...7........2.76..18.......9.........4..81.........32..........
+..654.....8.....2........1.1.4.6.7.....3.2............23.8...........4..9........
+..654....1.....9.....7..2..2...3.1...7..........6.....82...1..........6........5.
+..67......4......3.1.....8.2..53....7.....1......8..4....6..2.......1...8........
+..67......5.....3.......9..9..8.....3.....4.........63...163.........2.7....5....
+..67......5....3........2..2...9........3..7...1....4..7.1...6.3.....8.....6.....
+..67....12.....3..8...........1.97..4......2....5......1......5....2..8..4.......
+..67....18.....3..2...........1.97..4......2....5......1......5....2..8..4.......
+..67....5.3.............1.....6.3.9.15......8...2.....8...1....2.....9.........3.
+..67....52...............9.5...3.6......1..3.8....9....9.4........8..2...1.......
+..67...1529..8..............15..9.......4.3...........8.....49....1.....4........
+..67...181......5..3.6.....4..2..3........4..5............58.......1.....7.......
+..67...181......5..3.6.....9..2..3........4..5............58.......1.....7.......
+..67...2....5.3.8..1...........64...9.....5......1....87.2...........4.1.........
+..67...2514..8.................3.9...25...............3....4......2...6.8.....3..
+..67...8....5.3.9..1...........64...8.....5......1....97.2...........4.1.........
+..67...8....5.3.9..1...........64...9.....5......1....87.2...........4.1.........
+..67...8.5......3.3....4........67..8...3..........2...7.2..4...1...........5....
+..67..8..5.3.......4.......82.1............4........3.2.....1.....64........53...
+..67.2..........1..9..........2..4.91..5.....3.....8..5...1........3.6...4.......
+..67.4.8.15..........2.....3...1....5......4.......2....7.....3.4.8...........1..
+..67.49..8.1.....2.........23.....8.4..9........6......5....6......8........1....
+..673.....4.....81.........2.....5.....5.4...7.3......5.....7...1...8.......4....
+..673.....4.....89.........2.....1.....5.4...7.3......5.....7...1...8.......9....
+..678....3.....4.5...............26.....45....1...3...45..........2...7.1........
+..68...........4........1..3...9..6.....4.5....2....3.54.1........7...2..9.......
+..68..5...7..9..............4.....7.8..5........2.......9.71.6.3.....2......4....
+..682..........1...........19....7.....2...3.4...........6...8271...4...5........
+..69......3....2.....1......7..3...........59....4....4.....83......27..5..6.....
+..69..8..2.....1............5..37...4.....6......5....93......5...6...2....1.....
+..7.....1.1.7.........6....6...4.2..85..............9.3.....46...91........5.....
+..7.....1.1.7.........6....6...4.2..85..............9.3.....62...91........5.....
+..7.....1.1.7.........6....6...4.2..85..............9.3.....64...91........5.....
+..7.....1.3..2..............5....63....1.9......7...5.2..5..8..9.1..........4....
+..7.....1.6..2................5.7.3.84....6.....1.........8.26.7.5............4..
+..7.....1.6..8................5.7.3.94....6.....1.........4.26.7.5............8..
+..7.....6....2.5...3...8....2....14.5..3...........7..2......83....1.......7.....
+..7.....685.............2...1....53....6.2......7.........1.45.4......8...6......
+..7.....8.3..6........2..5.1......6....7..3.....8.....6...4.2.....5....7.9.......
+..7....1.....3.......5.....59.2......3.....7.......3....4.81...6.....5.2......9..
+..7....1.....6.2............5..2.3....3....7....4........7.1.4.26....5..8........
+..7....1..8...5..........4.35....2.....1...........8....641....2.....5.3...7.....
+..7....1..8...5..........4.95....2.....1...........8....641....2.....5.3...7.....
+..7....1.6...9........5....7..1.3...3.....5.....4.........2.9...1.8......4......3
+..7....183..4.................5..39..18.7.....2.......4.....9.....6..4......1....
+..7....184..3.................5..39..18.7.....2.......9.....5.....6..4......1....
+..7....189..4.................5..34..18.7.....2.......3.....9.....6..4......1....
+..7....2.....59....3....6...4.1............89.......5.7..3..2..8.5............1..
+..7....2.1..6........4..5...4.....61....27...8..........5...23..1.............7..
+..7....2.8...5........1.......3..76.51....4...9..........7..3.5..92..............
+..7....2.9...6.......4......8....5.6..98.1.........3..65..........2...1.3........
+..7....23.1.4............5.3..7..6.........9...2......46....8......52.........1..
+..7....23.8.4............5.3..7..6.........9...2......46....8......52.........1..
+..7....285..9..............6.....1...3..2..........5..42.....3...81........5.6...
+..7....29.8.3............5.1..4..6.........7...2......46....8......52.........1..
+..7....3......1...2............7..8..5.3.....1.....4....374.....6....1.5......2..
+..7....3......85...1.......5.....8.2...37.......9.....8....62.....14..7..........
+..7....3.....18....2...........5.8.1.3.6.......9......5..3.42..1...........7.....
+..7....34...65..............93.........8..6.......2.......34.2.86....5..1........
+..7....4....8...5..6.3.....1...42...83.............9....2.5..........6.8......3..
+..7....4.6...8........6......17......4.5...........8...5.4.1...2.....6.8......3..
+..7....42...13................5..68.42.......1............843...95...1...........
+..7....43...69..............93.........8..6.......1.......34.2.86....5..1........
+..7....46....31..........2...24......7....3.....9.....13....8..5..62.............
+..7....5.....6..2..1...........2.1.4..4...7.....8.5...26.3.....8.............7...
+..7....5..9.4.............136....4..1...85.........9....83..2..5......4..........
+..7....5.2..1............3.83..5........7.2........1...5.4...1...62..4...........
+..7....68....2..5.....1....3.....4.....8...7.1.........5.6......2....1.......53..
+..7....68...1............2....7..35.84.......6........2....6.......3.1...1....4..
+..7....69...5.1.........3.....86..5.21.........3..........7.4..18.......5........
+..7....69...5.1.........3.....89..5.21.........3..........7.4..18.......5........
+..7....8.....31....2.........46...5.......3..9.........3....2.71..8........7..4..
+..7....825...............1..2.63.5...18..........4.......1.8...6.....4.......7...
+..7....84.65.2.............1..4.8...4.....6.....3......3.1.........6.5..8........
+..7....9....6...5.....1......95......3....1........2..12....6..8....3......7...4.
+..7...1...6...2............2...65......1..4...3......7..47.........3..2.8......5.
+..7...1.4.2.8...........5...3.....2.5...4........1.......2...7.6..3.....1.....6..
+..7...1.68..2.........3.7..35.....4....1.....4.........61...2......4..3..........
+..7...1.9....3.........4...5.2....3.4..7........1.....38....6......2..5..1.......
+..7...2...1..8..........5.82.....3.....76.......1......64....1.5....3......2.....
+..7...2...3.5........98......1..7...9.......5....6..3..6....7..5..4...........1..
+..7...3.......2........6.....4.1.5...7.....6....3.....26......7...54.1..8........
+..7...3......28....5..4.......7..5..24...............98.96...........12....1.....
+..7...3......46.......2..........62...81...........5..62......15..7......4.....6.
+..7...3......5..4.....3....2..8......6....7........1..53.....2.4..1........7...8.
+..7...3......56....4..........7..4.168.9.....5........2......8....34...........6.
+..7...3...2.6...............6.....45....7.1..5...3....4..5.2.....3....8.1........
+..7...3...2.6...............6.....54....7.1..5...3....4..5.2.....3....8.1........
+..7...3..4..5...........1..25.....4.....3.6.......1......24..5..93.........8.....
+..7...3..4..5..........1......2...65.7..............4.6..48........3.7...1....9..
+..7...3..4..6........2......6.5...........82.......7.19.8..7....2.....6.....1....
+..7...3.8.2.5.6............1..4..6.....2.....8........3...8.....1.....5.....7..2.
+..7...4...3.2..............26..3....5...4.7..1...........1.8..24.5....3..........
+..7...4..3..8...........2.....1...39..2.......6..........5.26..98.....1.....4....
+..7...4.1.6...9......2.......4.3.......8...9.2........98.....6.....4.8..5........
+..7...4.5.8.1......3....6.....8...2.4...5....6...........3..8..5...6...........1.
+..7...42..8...3.......1.....2.7..5..6.....9..3........1......83..94..............
+..7...43.....1.....2.......51.....8....7.2...3..6........4..6..15.............7..
+..7...48.3..5........2.....6..3.........8.7..2.........1..4...........25......3.6
+..7...5...3..4........1....32.5..6..4......3..........1......42..86........7.....
+..7...5.1..48...........2..23...5..........46....1.......7...9.15.......3........
+..7...5.3.8...1.........2..14.....6....39.......2.....6...4..1.3.2...............
+..7...53.....81............1...4...8...6..7..............7..36.82.......4..3.....
+..7...62.....1....4........6..2.....1.......8...3........7.32..51....4...8.......
+..7...65..5.2.8...............36.4...8...........1.......4...826...3....1........
+..7...68......5.7.2...1.....1..4.......2.....8.............8..1..63......5....4..
+..7...8..5..2........3..1..4......2.....1............6...6.2.5..4....3...81......
+..7...81.1..5..........3...8...1.2...3.4...............54.....3....896...........
+..7...84.5...2..............8.1.........6...3.......2.26......5...7.81..3........
+..7...9..8....1.........4...2.....5...9.3.....1.......7..49....5......1....3....2
+..7..1....3......6.......2.1...5.4.....4....32...........3..7..8......1....94....
+..7..2......1...8..2....6...4..3...7...5...1..............5.4.28..6.....1........
+..7..2...2......6.....8.5.....4...21.58.......3.......3..1..4.........7.......8..
+..7..2...8......9.....1.......96..1.4..7.....2.........1.3......6....2........4.7
+..7..2..3...5...8.1........8..16.......8...........7...2...75......4.1.........6.
+..7..42.....6...4..1...........2.1.76..5...........8.....87....4......6.3........
+..7..6..3...4...8.1........8..15.......8...........7...2...74......2.1.........5.
+..7.1.........24...6.....5...43...6.1....5............2.....1...3.6........58....
+..7.1.....2.....3........5.......14..3.8.....8.....7..6..3.5.....1...4.....2.....
+..7.1.....2.....3........5.......14..3.9.....8.....7..6..3.5.....1...4.....2.....
+..7.1.....2.....3........8.......76..3.8.....2.....1..5..3.2.....1...4.....9.....
+..7.1.....2.....3........8.......76..3.8.....5.....1..4..3.5.....1...4.....9.....
+..7.1.....2.....3........9.......16..3.9.....8.....7..4..3.5.....1...4.....2.....
+..7.1.....2.....8........3.......76..3.8.....2.....1..5..3.2.....1...4.....9.....
+..7.1.....2.....8........3.......76..3.8.....5.....1..4..3.5.....1...4.....9.....
+..7.1.....2.....8........9.......76..9.8.....4.....1..5..3.4.....1...2.....9.....
+..7.1.....3.....5....2..4.....5.6.3.1...........3.........7...1....2.8..45.......
+..7.1..3..2....6.....5........2..5.81..............2..5.....41.....3..6..8.......
+..7.1..5....4...2..3.6.....2...53....4....9.......7...1..8..4....5...............
+..7.1.8...9.3......2.......6..8..4.......9.3...5......1...5.........2.9.8........
+..7.125...9....4......8....43.6............1.............9..6..5..3.....1......8.
+..7.125...9....4......8....53.6............1.............9..6..4..3.....1......8.
+..7.14....3....9.............85..6......3.2..4....2....2.9............841........
+..7.14....6....5...2.......8......71...5............3.4...5....1..9........6..2..
+..7.2...........14.3...........3.25.1..............8...5....73.6..1.4......9.....
+..7.2...........64.......3..4..7.8...5.......6..........84..2..3..6.5.........1..
+..7.2..........4.3.6......113....6......7....2........5.8....2....3...5....1.....
+..7.2..........4.3.8......113....6......7....2........5.9....2....3...5....1.....
+..7.2.......9...8........6......72..81...........3.....7....3.49..8.6......1.....
+..7.2.....1....3.....3....446...........1..2.....9..7....4.56..1...........6.....
+..7.2..9.9......8.....3.......9.5....42...............58.1...........2.46.....3..
+..7.25...6...1..4...........5....8.21..6........4..3.....9...6...3.......2.......
+..7.3.......8..5........6..65.2............74.........2..6..1......74.3.5........
+..7.3.....4....2.......84.........38...25...........7.6..4..1..25.........3......
+..7.3.....48...............62..5....3.....4.....7..1.....8.1...2......3....4...6.
+..7.3....6.......2....4.......5..13.2...............7..1....74....2.8......6..5..
+..7.3.1.......2....8.........16..3..4....5.2..........25.....4....71.6...........
+..7.3.2....18......4........5.4...8.6..1.....2.....3..3...2............1.......4.
+..7.3.2...51.......6....4.....1...758...4.............4.....83....6........5.....
+..7.3.4......58........4...1..6..2..85.................647............18.......5.
+..7.3.5...8......2.........26....4.....87....1..........5...39....2.6......1.....
+..7.4..........52..3.......1..6.........3.9..2...........1.2..8.74...6.....5.....
+..7.4..6........1.....8....56.1.2...3..5...........4..2..6.........7.8........9..
+..7.4..8...52......1.......4...3.2.......15..8........6..4...7......5....3.......
+..7.4.2..4...58.............812............65...7........9..1..65.......3........
+..7.41.........86.....2....25.3.............1.8.......4....7.....1....3....8..5..
+..7.41....3....9.............85..6......3.2..4....2....2.9............841........
+..7.43..........51.........42.....6.....8.4...5.1.......8...3..3..5........2.....
+..7.45...9.....32.....6.....5.....64...1.....2........8..3..1...3......5.........
+..7.46.2........43.1............17...5.8.....3........4..23..........1.....5.....
+..7.48....3.....6.........15.8...4.....3.....4........62..5..........73....2.....
+..7.48....3..7...........1....1.56...94....3....2.....5.....8..1................7
+..7.5..136.48.................2..9...3...4....1.......8.....24.....1....2........
+..7.5.4...1....2.3.............4..5..3.......8........5..1.3...6.4....8....2.....
+..7.5.4...5.2............8.....6.5.38...3....1...........1...2....8.4....3.......
+..7.53....64...8...........3...2...5...6...4........8....4..1..23.......5........
+..7.53....64...8...........3...2...5...6...4........9....4..1..23.......5........
+..7.56...1.....3.........8...2...7.....3....4.8.5.....4....7....3.....5.....1....
+..7.6......1....4.5......3.43....2......1.7..............2..6.1.8.3.4............
+..7.6..2..3....4.......1......4..3..6...8....1........2......1....3..7...4.5.....
+..7.6.3...4.2...............1.....542..73..........9.......5.2...8..4...1........
+..7.6.4...46...........2...3......91....4...........3.85.3.....2.....6.....1.....
+..7.62....4......1......3..6...8..7.3.5.........4.....1.....5...9.....6....1.....
+..7.8.........42..5..........31...........52.......4.....7...8142........3..6....
+..7.8....5.....2...............6..8341.......2..5......3.2..1...8....6.........7.
+..7.8....5.....6...........7..6.1...6......28.......3..13.......8..2.......5..4..
+..7.8..1..6.3.................67...21....4...98.......5..2...........19.......7..
+..7.8.2...51.......6....4.....1...759...2.............2.....83....6........5.....
+..7.83..........51.........32.....6.....9.3...5.1.......9...7..4..5........2.....
+..7.83..........61.........9...7.5.....6...2..........6..4.2....2....8.....1..7..
+..7.9.2...1........5........4.3...5.8...2............12..6..7.....1...8.9........
+..7.9.4...1.............2..6.....83....1.5......2.....9...3..6....7...1.........5
+..7.9.4...1.............2..8.....73....1.5......2.....9...3..6....4...1.........5
+..7.9.4...1.............2..8.....73....1.5......2.....9...3..6....7...1.........5
+..71..........85..6...............41...2...7.3........58....3.....72....1...4....
+..71..........89..6...............41...2...7.3........58....3.....72....1...4....
+..71......4.....3.......5....5...1.7....3........6.......7.24..36.....2.8........
+..71......4.....6.......5....5...1.7....3........6.......7.24..36.....2.8........
+..71.....5.....2...........2...65....3.....1.....2..4.3.......8.....75...1.4.....
+..71...4..8....6...........63....5.....2.1......7.....5...6.3....2.....1.......7.
+..71...6....8..5...4........3......71.......45......1.8.....2......73.......4....
+..71..5......8.6...3.....2....5..1.742....................32.4.9.1...............
+..71.2...9.......6.......3.....6..8...2...7...1.......68..9.......2..4..3........
+..71.3..........84...5.........2..4.5.....3..1...........6..1.3.8..4.....2.......
+..71.3...9.......6.......4.....6..8...3...2...1.......68..9.......2..3..4........
+..71.6..........83...4.........2..5.6.....1..4...........5..6.4.8..3.....2.......
+..712.........6.5..3.............1.78....4.........3..54.....8....37.......6.....
+..716.......2..3...5....4..2..3..1....6....5..............5..7.13..............8.
+..716..5.8............2.........48.356.......3.........2.....6......84.....3.....
+..72...........6.31.....4..6....4..........2........5.43....1.....78.....1.5.....
+..72......5......4.1.....8.2..43....6.....1......8..5....6..9.......1...8........
+..72....6.5.....4........8..72...3......84.........1..1..3..5..4............5....
+..72...4..1....6.....4......8..31..........7.......9..7.4.5..........3.82........
+..72...541.9..3............3.....1...7..4.......85.........69..85................
+..72..1...3......7......6.42..8......6.....5....4.....4...6........5..3.8........
+..72..5....8.....3.6..4........6.1..3......2..........5..3.8....9....4........7..
+..72..8..1......5..........9..71.....8....6.......42..3.......1.2.8............9.
+..726..5.3.....4........1..1..3.4..........72.5..........82....4............7....
+..73.........4...8.1....2.....7..1....5......8........4...12......6..5...8.....7.
+..73......4....5..........83..9......1....6........47.2......63..5..4.......1....
+..73.....6.....8.....2.......5...6.1.2.5...........4..4....6.7..3.....2.....1....
+..73....645....1.....2........7...3.8.......71............4.8...3.....2.....1....
+..73..1....9..5............56.2.........4..8........79.2....5......93...1........
+..73..5..2..8............1..6.4....2.1.............7......6..3.5...1....3.......8
+..73.14..8.......5.........52.......6...5..........1....14..2......8..6..3.......
+..73.2.........4.......1...61..8.....4....5.........3....54.1....3....7.2........
+..73.6......2..4........1..58..1.....2..5.........7...1......7....6...3.4........
+..73.6......2..8........1..58..1.....2..5.........7...1......7....6...3.4........
+..74..........3.6..4.......6.....28....15.7............7....4.13...86............
+..74.........3.5...8.....2....6..4.3.2.......9........4.6...1......28.5..........
+..74.........3.6...8.....2....3..4.7.2.......5........6.4...1......28.5..........
+..74.........3.6...8.....2....3..4.7.2.......9........6.4...1......28.5..........
+..74........65.....8....3.....1...6......8.2.6.......4......7.31...2..........8..
+..74..5..6....2...............71.8..2.....1..3........5......3..4.9............26
+..74..6.....28..........3.....1...546.9.............2.24...........93....5.......
+..74..6..3...5.......2.....1...8........3.7...8....2...2.6.......5....3........1.
+..74.2....2.5............3..6..31.........2.4....8.......7..6..8......1.1........
+..74.6...3.......1...2.......6...24.1...5.............51..3..........47..8.......
+..74.6...5.......1...2.......6...24.3...5.............15..3..........47..8.......
+..743...........81...7........2.73..51.......9.........6..51.........42..........
+..748.........2.1..9.......53..........6..4..1........2.4...6......13.........7..
+..75............8........1.48....2.....3..5...6.........5...7.13...48.......6....
+..75...........62.1.........6.9.2...5......3.........1...81...7.2....4..3........
+..75.........3.4...8.....2....6..3.5.2.......9........5.6...1......28.4..........
+..75........6...4.8.......2.6....53..4..2........8....1...9.......7..6..2........
+..75......4.....2....6......5.73....2......14....6....6.8...3.......1.........7..
+..75......8.....9........2.6..1..5..9................4....396...14...7......2....
+..75...2.....1.6..3........4..2...5716..3...............27...........1...8.......
+..75...9..1......6.........3......5.9....2.......1.......87.1...2....4..6..9.....
+..75..2...1.....8.......4....9.1.......4....62.....3...6.....913..2..............
+..75..2...14...............5....1...3.....8.....47.......68...3.3.....1....2.....
+..75..2...41...............5....1...3.....8.....47.......68...3.3.....1....2.....
+..75..6...8....2...........1.....9......37.......8....43......8...2...1.5..1.....
+..75.4.6.2...........8......4..7.2...6.4.............13.....84.1...2.............
+..752..........4.18...........67..5.1....43..............2...7.31.......4........
+..753...........91...6........2.76..18.......9.........4..81.........32..........
+..754.....8.....2........1.1.4.5.6.....3.2............23.8...........4..9........
+..756.1........2.....7.....18...2..........73....4.......3...6.42.......8........
+..76.........2.8..............7.1.6.3.....5..8..4.....58..3...........71.2.......
+..76.....5..7...........83..82.........34.............31.....5......26..4...8....
+..76...4..3..2...........1...5.6.8.....7.....4........19.4.....3.....2........5..
+..76..1..3..4............68....5.3...6.1..........2...58.....2....73.............
+..76..25..3....8.....4.....5..2.........1.3..........1....3..9.4......2.....8....
+..76..3........1...9.......6.....72.....59.....8......8..2...4..1......5.......9.
+..76..5...1.....2..........5...21.....8...7......9.......8..4.7.9.3.....2........
+..76.1....5....83..........6..2....12...8...........7....4....6.8..3..........2..
+..762....4......19......4..5..3..6...1..7.............3..4.8..........72.........
+..768.........2.1..9.......53..........4..5..1........2.4...6......13.........7..
+..78............2..3...........2.14...8...3.......9......3..5.142.6.....9........
+..78......8.....9........2.5..1..3..9................7....395...14...6......2....
+..78......8.....9........2.6..1..3..9................7....395...14...6......2....
+..78...6..43...............65.1...8.2............7........2.7.41....6.........3..
+..78...6..9....5...1.3.....6..4.2...5.......1......9..3......4.....1..........3..
+..78...9..1......6.........3......5.9....2.......1.......57.1...2....4..6..9.....
+..78...9..53...............64.1...8.2............7........2.7.54....9.........3..
+..78..1...3......7......6.42..9......6.....5....4.....4...6........5..3.9........
+..78..2..4.......6.......5.16..5..4....2.....3.........82...7......41............
+..786..........9.1.2.......35..........6...4.9..........24...6.1....95...........
+..786..........9.1.2.......35..........6...4.9..........24...8.1....95...........
+..8.....1.1.7.........3....6...4.2..95..............8.3.....62...71........5.....
+..8.....1.1.7.........6....6...3.2..94..............8.3.....65...71........4.....
+..8.....1.1.7.........6....6...4.2..95..............8.3.....62...71........5.....
+..8.....14....7.......3....3.....2...6.8........1......5....37...15...6.......4..
+..8.....15...6.......9.....2.....76.8..1..........4....1.....9.....2.3...4...8...
+..8.....17...5.............31.....7.....8.2...4.......6..3.1...2.....65....4.....
+..8.....6.2.7...........45.5......1..7.3........2.....4...58.......1.3........2..
+..8.....74..2...........6...65.........4...8..3.....5.2.....14.....763...........
+..8.....9....7...43...2......41...5..7....2...........2.....63..6.4........8.....
+..8....1.....3.7.......2...23.....5....81.4..6........5..1......7......33........
+..8....1..2...3..........4.35....2.....6...........9....641....7.....5.3...8.....
+..8....1..2...5..........4.95....2.....1...........7....641....7.....5.3...8.....
+..8....1..3.5...........2..1.7.....8...4.2......3.....65....4..2.....5......1....
+..8....1..5.7........56.....2....5......3...76....1......2..6....3..4...4........
+..8....1..9...5..........4.35....2.....1...........9....641....7.....5.3...8.....
+..8....1.6...9........7....3.....9.7...2..5..4..1......17.6.....2..........3.....
+..8....1.7..4........3......12.5....4..7.........8....6.....3.4.5..1..........7..
+..8....2....6.1........7....52.4.......3..7........1......2..4.6..5.....73.......
+..8....2..29..........1....4..65.......2...83.........74....1..3.....5.....8.....
+..8....3....1.5......2......2....1.6....4..........7......8..4721....5..3........
+..8....3.4..9........2.........31.7.2.....5............36...1...7..4.......5..8..
+..8....37...2.1..........1.3.1............2.6.........26....4...4..1.......58....
+..8....4.....5.........7....3....1.6..24...........5..35....7..6..24.......8.....
+..8....4..3.2.............162....3..1...45.........7....53..2..4......7..........
+..8....4..5.2..............2..46.......1...7..3......8..7..8.......5.2..6.....1..
+..8....4.7.....2......36..........53.5.....6.1..7.......72..8........1...6.......
+..8....459..2..........1.....4.5..6....7..9...3.......12.......7.....2......4....
+..8....459..2..........7.....4.5..6....1..9...3.......12.......7.....2......4....
+..8....46.75.2.............1..6.4...4.....7.....3......3.1.........7.5..6........
+..8....5......21...3..4....4.....2.3..91..............1..6.....72..........5...8.
+..8....54.927.................9..2...1..6....5..4.....6....5...4.....9......1....
+..8....549..2..........1.....4.5..6....7..9...3.......12.......7.....2......4....
+..8....549..2..........7.....4.5..6....1..9...3.......12.......7.....2......4....
+..8....6...6...3.....2.....21.3............4..5.......7.....1.3....865......4....
+..8....6.3..1............4.94..6........8.3........1...6.5...2...73..5...........
+..8....7......65..3..1......6....2......3.......5......5..82...6.....4.1.......3.
+..8....7.....6...5.3..1.....4....1.....5.2......7........3..6..6.....4..5......2.
+..8....7.4..2.................62.4...7..5..3..1.......3.1..7...5.....2..........6
+..8....9.4..3........2.....24....6.......5.8.....1.......7..2.4.95............3..
+..8...1...5...2............2...75......1..4...3......8..48.........3..2.9......6.
+..8...1.2...7.3......5.....37.....6.....1.8..5........6..3...5..1....4...........
+..8...1.2.4.3...........6..6...12....7.....3.............48..9....7..5..1........
+..8...2.......3......1............19....8...63...5....19.4...........82..7....5..
+..8...2...4.3..........2......74..3...2...5...............856..37.....4.1........
+..8...2...5..6.......4..........28.1.4..7....3........7.....64...13............7.
+..8...2..4...5.......6...7.....82....6.....5....3.....95.1...........3.6......8..
+..8...2.3.5.1........4..7.....6...1.27................1.6.3........2.5..4........
+..8...2.5.....4.1.3...7.....415...6.....2.............76....3.....1.....2........
+..8...24....7.1..........5.3.....1.7...34............6...42....61.......7........
+..8...3......2..7..5.4.....7......4......3........1....6....1.32..75..........8..
+..8...3.....65.............95.....7....8...2......1....6.29....3.....1.4......8..
+..8...3..2..4...........1..52.....7.....3.6.......1......25..4..93.........7.....
+..8...4...3.5...............7.....53....8.1..6...4....5..7.2.....4....2.1........
+..8...4..7...5.........1..........53...8...6....2.....15..3.......4..8...6....2..
+..8...4.9.5.7........1.....6......71....4...........3.....2.5..1.3......76.......
+..8...45.....1.....2.......61.....9....8.2...3..7........4..7..16.............8..
+..8...49.3..5........7.....7..3.........9.8..2.........1..4...........75......6.3
+..8...5......4.......2........67..1...5..3...84.......2.....7.5.1.9...........8..
+..8...5.3....7.8.....1.2....46.............1....7.........9.4..7..3.....15.......
+..8...53.....97...............54..8.17......93.........2......4.....17.....3.....
+..8...53.4...2.............6.....2.4...5.3......8........1...5.74.......2...9....
+..8...6.....1.....4..........6.83...3......19.............7.84.19.5......2.......
+..8...6.3....1.5..2.........5.....71...2...4....6.8...41..........8..3...........
+..8...67....39..........2..93.5.....1..............7.....14...3..7..6....2.......
+..8...7.....2.4......3.....2......43..1.9...........9..4..7.6..35.............1..
+..8...7...2...6............2...75......1..4...3......8..48.........3..2.5......6.
+..8...7...2...6............2...75......1..4...3......8..48.........3..2.9......6.
+..8...75..5.2.9...............37.4...9...........1.......6...927...3....1........
+..8...9......7.1..2.........5....71....2.4......3......9..6...4...8...2.7........
+..8...9...4.6...........2..31.....4.....2.7......59...5..1...6.........1..9......
+..8...92......1.......3....15..........8..7..3...........76..8..2......15..9.....
+..8...93......1.......2....25..........8..7..1...........76..8..3......25..9.....
+..8...93......1.......4....12..........8..6..4...........65..8..3......17..9.....
+..8...93....1.2......5.........8.7.4...6..5...1.......7...5....8......1.........2
+..8...94......1.......2....23..........8..6..1...........65..8..4......27..9.....
+..8..1.......2..3.5.....4....76..5...1..3..............2.....1....5..7..6..4.....
+..8..1....3......7.......2.1...6.5.....4....32...........3..8..9......1....54....
+..8..1....3......7.......2.1...6.5.....7....32...........3..8..9......1....54....
+..8..2.7.....6.1..............9...5.36.......1............2.6.3.154...........7..
+..8..3..........41...7.....9...1..........32.......8..14......6...8..5...7.3.....
+..8..4....5.....3.....1....1..6...9.7.4.........5.....2.....4.1.6.3...........2..
+..8..7.356..4.......9......15..........9..2...2.......2.....4......35.......1....
+..8..74..6...2...............93......4......5....1..2.32...5......4..9..1........
+..8.1...........35........4...5.73..62.........4......75.6.....3.....84..........
+..8.1...........36.......2...4...1.....2..4.....6.5...5.....7...3.4.....26.......
+..8.1.....2.....3........5.......17..3.6.....7.....8..6..3.5.....1...4.....2.....
+..8.1.....2.....3........5.......87..3.6.....7.....1..6..3.5.....1...4.....2.....
+..8.1.....2.....3........5.......87..3.7.....9.....1..6..3.5.....1...4.....2.....
+..8.1.....2.....5........3.......87..3.6.....7.....1..6..3.5.....1...4.....2.....
+..8.1....3.....7..5...........3..5...7....6...2.....4....62.......7...2.4......1.
+..8.1....6......4..........7.....3.12..4.9...........5...8...3..1.3......5....7..
+..8.1....7..............9..6..7.2......5..42.3.....1...4..9.......8...5..1.......
+..8.1..3.....2.5...........21....4..5..3........8..6..7......8.4..6.............1
+..8.13....7....5...2.......6......31...5............6.3...5....1..9........7..2..
+..8.15...6.....2......4.....5....74.3....1......8.....72.6............51.........
+..8.2.......6..3........5.135.1.........7..2..6..4....1..3.......7....9..........
+..8.2.....6....1...........14......6...53..2..7.......3......8.2..4........1..7..
+..8.2.....7.....4........1.3...5.8...4.6.................7.49..6.2...3.....1.....
+..8.2....3.2............1..7.....3.8...6..7...1...4....5.....92.......4....3.....
+..8.2....7......8..........6.....4.24..3.7.........1...2.54.......7...3..1.......
+..8.24..........1.4............5.4.2.1.6......3....7..2.....5.....3...8....1.....
+..8.3.......4..7...2............218.4..7.....3..............625...91............8
+..8.3..4....5...1..7.......64.1..........78..5.....3......5.7..1..2..............
+..8.32...6......7............9...5.....7...4..3...........5.3.247.6.....1........
+..8.34..........1.4............5.4.3.1.6......2....7..3.....5.....1...7....2.....
+..8.4.....6....1........7.27..2.1.........93.............83..4.21......5.........
+..8.4....2......3....1..5......1.4.8.3.......7.........74...1.....2.3.6..........
+..8.5.....4....3........1...7.3.........2..8.1......5...57...4....1..6..2........
+..8.5.1...9.3......2.......7..1..4.......9.3...6......1...6.........2.9.5........
+..8.5.4.......39...1.......3..4..7.....21.............9....4..2...6...1........5.
+..8.5.4...5.2............6.....7.5.36...3....1...........6...2....1.4....3.......
+..8.6..7..3....4.......1......4..3..1...9....6........2......1....3..8...4.5.....
+..8.6.4..35.................86...7.....3.9.1....2.....9.......3...5..8......2....
+..8.61....2.5..7...4.......5......9....2.4...3..7.........1..6.......4..7........
+..8.61....2.5..7...4.......5......9....2.4...3..7.........9..6.......4..7........
+..8.67...2.......5....3.1..1..5...........96........7....1....4.69.......3.......
+..8.7....5.....2......1....31.....7.6..2........4.......45..6...7.....8.2........
+..8.7..6....5..4...1.......5..62..........1.3........84..3.1...2......8..........
+..8.7.4.....6..8...1............5.124...3.............6.....34....1.2......9.....
+..8.7.6...4.2...............6.....542..93..........1.......5.2...3..4...1........
+..8.71.........3.6....4....35.4............1.6...........6.25...71............2..
+..8.73..........24.........4..21....6..7.......5...8..24............53...1.......
+..8.9.....1.....4.....2.......6...1.2.9......5...8.....3.1........4..5..7.....2..
+..81......2......3...7...5.....264...5..3....1........9..4..1.........2.......8..
+..81...4..5....7...........73....6.....2.1......8.....6...7.5....2.....1.......8.
+..81...4..9....7...........73....6.....2.1......8.....6...7.5....2.....1.......8.
+..81...6......7...3........14....5.....82....5...6....7....93.....2...8..........
+..81...6....7..5...4........3......87.......45......7.1.....2......83.......4....
+..81..6.......7.2.....2....7...5..........1.3........824.....5..1.3........8.....
+..82............3..7.......4....3.5...7...1......4.......7..2.835....6.....1.....
+..82.........6..1..4.....5....1.4...3.....7..1..5......5....2......3...6......8..
+..82.....1.....6.....4...7..4.....2.3....9.......1......5...1.9.2.5...........3..
+..82.....1.....6.....5...7..4.....2.3....9.......1......5...1.9.2.4...........3..
+..82.....4.....1.....6...7..5.....2.3....4.......1......6...4.8.2.5...........3..
+..82.....4.....7.....5...8..5.....2.3....4.......1......6...4.1.2.6...........3..
+..82.....4.....7.....6...1..5.....2.3....4.......1......6...4.8.2.5...........3..
+..82...4..1..6.............4....3..7....1.3..2...........5..62.7..4...........1..
+..82..1..3.......7............5..82.....7........6....67......3...8.1.5.4........
+..82..4..3...6................8.17..9..4......6......3..1...8......9..6..5.......
+..82..76....15........4....2......4..9...3...........143............68..1........
+..82.3...7...6.4........1....35...8.....4..2..1.......2..8......4.......6........
+..825.....3..4..1.........96..7.1...9.4...5............7.3...........4..1........
+..83......2....6.....1.....1......8.....7..3..5..2....3..4.6.........2.7......5..
+..83......2....9.....8.....1.....2.73.5............6..68.....3....24........9....
+..83......5....4........1.....8...2......4..71.....6.....7...894...5...........3.
+..83.....2.....9...........51......66...3.......8.4......1...8.......23.7...9....
+..83.....7.....5.....2.......5...6.7.3.9...........4..4....7.8..2.....3.....1....
+..83..1..5...7................1.4...7......5....8.....61..4..........8.24......3.
+..83..7..5...........9......9....3.72...8...............3...12..6.4.........5..8.
+..831....7......9..........4....9.........2.8......1..62.....5..5.1.........83...
+..84............723......6.6......3....1..5...4........54...8......76.........1..
+..84......5....9........2..2...9........3..8...6....4..3.1...6.9.....7.....8.....
+..84..7...5..6..........2..4.....83......1.......5.....2.....613..9............5.
+..84..7...5..6..........2..9.....83......1.......5.....2.....613..9............5.
+..84.2....2.5............3..6..31.........2.4....9.......8..7..9......1.1........
+..842....1.....73...........45.....8....37.9.............5..4.6.2.......3........
+..845...........61.............3.2..47........1.......5..1.6...2.....83....7.....
+..846...7.......5....2........83.6..91.......5........1....5....4....2.......9...
+..85...........51..3....6..6.....4..7..2........8.....14..6........3..8........2.
+..85...2.....1.7..3........4..2...6817..3...............28...........1...9.......
+..85..4..4...6..7............5...1.863..2..............6.....2.2..8........1.....
+..85.64..79..........3.....1......9..2.7............183.....5......8........9....
+..852...........31.........13..........8..9..7.....2.....671....54..........3....
+..852....1.....43...........56.....8....43.9.............6..5.7.2.......4........
+..86..........23..5...........1...8..2.....6.3...7........5.7.8.164..............
+..86..........23..5...........1...8..2.....6.3...9........5.7.8.164..............
+..86.........3.5...9.....2....7..4.6.2.......8........6.7...1......29.5..........
+..86......1......2......53.2..7......7.3............286.....4..5...2........1....
+..86...5..92................1....2.96..4...........3..7...12...5......4.....9....
+..86..5...1..3.....9.2.....7..45...........912........3.....8.......1.3..........
+..86..7...45............1...2.....3.1..7........8.1...3...2........4..5.7........
+..86.75...1..........4.........2.9........1.26..3.....4......7.....1..3......9...
+..86.75...1..........4.........2.9........1.27..3.....4......6.....1..3......9...
+..862...........53.........53..........8..9..1.....6.....751....24..........3....
+..862....9.......3.......1..25...8...6...1......9.....1...5.......7..6..3........
+..87......1......2......63.2..5......3.4............284.....5..6...2........1....
+..87...5..3....2.....2.....52.....7......1.......3........6.1.37..4...........6..
+..87...543...1................5...2.62.......1.........754.........9.3........1..
+..87...631...5................6...2.54.......9.........763.........4.5........1..
+..87.2....3.....95.........1...5..6...7...2.....1........8..4..56.......9........
+..87.3...1.....2.....9....424.............68..1.........3....7....68........2....
+..87.5..9.2....1.4...........7....2.....4.3.....9........8...5.13.......4........
+..872....5......19......5..6..4..3...1..8.............3..5.6..........82.........
+..872....5......19......5..6..4..7...1..8.............3..5.6..........82.........
+..89......9.....3........2.6..1..5..3................8....356...14...7......2....
+..89...3.....2.4...........64...7......8...51.9.......47....6.....1.....2........
+..89...7..53...............76.1...9.2............8........2.8.54....7.........3..
+..89..6..93...5...............86.2..54...........1....4......35...6............4.
+..9.....16..7........4......3.5..2...1..4...........6.8...1....4.....7.......3.2.
+..9.....17...5.............31.....7.....9.2...4.......6..3.1...2.....85....4.....
+..9.....8....1..3...4......63....2........8..........4.7....16.2..8.4......5.....
+..9....1..2..5.....4.......8..1...........2.....3.........7.4.23..2..6..1...8....
+..9....1..2..5.....4.......8..1...........2.....3.........7.4.23..4..6..1...8....
+..9....1..2..5.....4.......8..1...........2.....3.........7.5.23..6..4..1...8....
+..9....1..7.5.............8.2....53.....18......4.....2..3..6......7.3..1........
+..9....2....6..4.....75.....6....7..21..............3...3.82...4.....6..........1
+..9....2....6.1........8....72.4.......3..8........1......2..4.6..5.....83.......
+..9....2..52..........1....4..76.......5...93.........84....1..3.....6.....9.....
+..9....2.1...4...........8.3.....1.7...2..4.....8.9....2.5...6.......3......1....
+..9....2.6...1...........8.3.....1.7...2..6.....8.9....2.4...5.......3......6....
+..9....3.5..1.............461...82........1......3.......2..59..347..............
+..9....3.6..1.............421...85........1......3.......2..69..347..............
+..9....4..5.2..............2..64.......1...7..3......9..7..9.......5.2..8.....6..
+..9....4..5.2..............2..76.......1...8..3......9..8..9.......5.2..7.....6..
+..9....423..5..............42.7........8..69..1.......5.....8......2.5......1....
+..9....5.7....3.......1.......2...7918..4.....3.........65..4........1.......9...
+..9....516...3...........9.3.....6.....7..4.....5.9...4...8.2...1..............7.
+..9....615...3...........9.3.....4.....7..5.....6.9...4...8.2...1..............7.
+..9....7....5....3...64.....84..7.........6........5..35.1...........24.6........
+..9....8.....24...3.............619..2....4..7..8........71....8..9......4.......
+..9....84....61......7........4...2.65.......7.........2.83....4.....6........1..
+..9...1...2...5.......3.4..3...8..5........2.........71.....36....2.7......4.....
+..9...2...4.3..........2......74..3...2...8...............956..37.....4.1........
+..9...2.16..57.......3........65..7..9....8...........7....2...3......5.......4..
+..9...3.4....26.................86....54......2..........35..1.86....7..2........
+..9...4..6..2........3........6...2..54.............3..8..4.1......9.5..2......7.
+..9...5.....2....7.............3.14.72.4......8.........6.51...4......32.........
+..9...5...2..1........7..4....9..6.2.18......7........4.....37......1......2.....
+..9...51..2.8.................2.7.8.5.6...9..1.........3......27...5........6....
+..9...7.....1.....4..........7.93...3......15.............8.94.51.6......2.......
+..9.1...........85.......3..6..9.7...5.......8..........74..2..3..6.8.........1..
+..9.1....6......3..........7.....1.42..3.6...........5...9...4..1.4......5....8..
+..9.1....7......4..........8.....3.12..4.7...........6...9...3..1.5......6....9..
+..9.2.......7..3........6.136.1.........8..4..7..5....1..3.......8....2..........
+..9.2.......7..3........6.136.1.........8..4..7..5....1..3.......8....9..........
+..9.2.....1.....4.....5.......6...1.2.5......8...7.....3.1........4..8..7.....2..
+..9.2.....5....4.......8..1.6.43...........87.......2....6..5..8..1.....1........
+..9.3............1.......5.14....6......9.3..8.........5.4.1.....6...72....8.....
+..9.31....2.....8............62..9.174.6...........3.....84..5.1.................
+..9.34..........71....1.....2.7........8..9..5.....4.....2...8.4.....6..3........
+..9.4...7.5....1...........8..31..........65.......2.....7.5.9..2.6.....1........
+..9.4..6..2....1......3.....6.1...5.1..2.8...........73...7..........2.....9.....
+..9.5...........81.......6.34.8.........2.5..1.....7...75...2.......1......6.....
+..9.5.....2.....3.....1..4.4..3.....1.....7.....2.....6.....1.8.3.7...........5..
+..9.52.8..4....1..............18.3..5.2...............6......5..1.3.....8..4.....
+..9.6...........81.......7.34.8.........2.5..1.....6...65...2.......1......7.....
+..9.6.........58...1.......8.....63....1..5.....2........7...145...3............2
+..9.6....7......1....5...4.....9.3...1.....5.....2....84.1........7..9........6..
+..9.6.2...3.5.8...........1...7.3.8....4.....2........6.....43.1...2.............
+..9.7...6...2...1........3....95.4...1....8..3.........84...2.......1...2........
+..9.75...1......64..........5..29......4...1...........2....9.....6..5..6..3.....
+..9.81.........3.7....4....35.6............1.7...........7.25...81............2..
+..9.81.5.7..6...........2..63.7.........5..8.2.........15.........2..6...........
+..91..4..2..5..........37.....2...5..3..6.............5...2...8....7.3..1........
+..91..8..5.................23.8.....7...9...5...3...1...4..5....1....3......7....
+..91.7......2...3.8......4...75..6...3..4............124.......1.....7...........
+..91.7......2...3.8......4...75..6...3..4............124.......1.....9...........
+..91.7......5..3.1......2......36.9.1............2....5..8...4..2....6...........
+..92.........7..4..1..........6..1.97...5..........2.....1.6...8....4...3......5.
+..92......4....3.....1.....2..7.........8.4.........5.15.....2.....4..9.....3.6..
+..92......4....8.....1.....2..7...........51.......4..1...3..2..5...4.......6...7
+..92.....3.....7............2.6.1.......7.3....8......71..3....4.......2...8...5.
+..92.....7.....3...........38....7.....7....64..........6..5.1.....43....2..8....
+..92.3...8...7.5........1....46...3.....5..2..1.......2..4......5.......7........
+..93............48.......5..2.....1.....84.....7...6..2..7..1..5.....3...4.......
+..93..........25.........8.27.......5......1....8...9..5....2.4...6..7......1....
+..93........5...4.8.......2.5....31..4..2........8....1...9.......7..5..2........
+..93.2...7...6.4........1....35...9.....4..2..1.......8..9......4.......2........
+..932...........16.............71.....3...9..5...6....46..........8..3...7.4.....
+..932...........17.............71.....3...9..5...6....47..........8..3...6.4.....
+..932..........1...........18....7.....2...3.4...........6...9271...4...5........
+..94......5....3........2..2...7........3..9...6....4..7.1...6.3.....8.....9.....
+..94..7.......28..4..6.....6....4.3.....8.2..1.........2..5.......1....6.........
+..946...........71.............3.2..48........1.......5..1.7...2.....93....8.....
+..946...........71.............3.6..41........8.......5..1.7...2.....39....8.....
+..95..4...6.7...........1......1..634....8..........7.8.....21.....3.......6.....
+..95.1..........76..............81..6...7....24........85...3.....26.......1.....
+..952...........31.........13..........8..2..7.....5.....671....54..........3....
+..952...........31.........16.....4....2.....3........43...6......7..5....8...2..
+..954.....8......1......3....6....98.....17.....2.........9..2.17.......3........
+..96..1..3.......8............5..92.....8........7....78......3...9.1.6.4........
+..96..4..4...7..8............5...1.973..2..............7.....2.2..9........1.....
+..96.5....1.....2.............8...135.79.....6.........2..1....8.....7........5..
+..963...........54.......8.43...........1.6..8........92.8.4.........1.....5.....
+..964...........21.........7...2.6......51..........8.82.......5..8........3..9..
+..97.6.5.......4.....2........1...7.8......6.4............482......3.8...1.......
+..98.4...1.....2............8.....462...1.................7.12..465...........3..
+..98.7...5.....1........4...4..1......3....9.........22..9........3...8..1....7..
+..986..2.3.1................2..7..8.....1.6.......3....6.4.....7.....1.....2.....
+.1......3....9.4..5........2..1..7.....3.8...4....6.....3....8..68..........2....
+.1......3...2...6........2.....17...6.5......4...8....2..4..........38.....5..1..
+.1......3.62.........4..5...7....26.8..9........3.....3.....4..5...6........1....
+.1......3.62.........4..5...7....26.8..9........3.....9.....4..5...6........1....
+.1......3.62.........4..8...7....21.8..5........3.....3.....4..5...6........1....
+.1......3.62.........4..8...7....26.4..9........3.....3.....4..5...6........1....
+.1......3.82.........5..7...4....68.6..7........3.....7.....2..4...8........1....
+.1......34..2........8...5..5..3...........2.......8..7....96....2...1......5...4
+.1......34..2........9...5..5..3...........2.......7..7....84....2...1......5...6
+.1......4.....2.6.....7..5.5..4.....2.7.........1..3..7.....8.5...8..1...........
+.1......4....5..2.....6.......47.8..7......5....1.....5.6...3.....9....12........
+.1......4...2...6..5.......8..6..3........1.7....2.......7.15..6......2.4........
+.1......4...2.7......5..7......4..137..6............8.5.....2...3..8........3....
+.1......4...8...6..5.......8..6..3........1.7....2.......7.15..9......2.4........
+.1......4.82.........5..7...6....28.3..9........3.....5.....3..4...8........1....
+.1......4.92.........5..8...6....29.7..8........3.....8.....3..4...9........1....
+.1......5....2..6.....7.......16.4..8......2....5.....7.4...3.....3....12........
+.1......5....2.4.......8...4.7.6...........18...7...3.3..6..2.....5.1............
+.1......5....4..8.....2....6.8...3.....3....12...........16.7..4......2....5.....
+.1......5....42.......7.9...5.3...........2..7...........1.5.3.2.4...8.....6.....
+.1......5....7..6.......7.....2.5...6.....3.....1..........8.127.3.4....9........
+.1......5...2...3....6.....4.6...2.....7....13........9......2.....54.......1.8..
+.1......5...8...3....3..7......4..516.2......8........3.....6......14........5...
+.1......5.4.8.........9.2..2.9.3....6......17.........3.....98..7.1..............
+.1......5.62.........4..3...7....26.8..9........3.....3.....4..5...6........1....
+.1......5.62.........4..8...7....26.3..9........3.....9.....4..5...6........1....
+.1......5.62.........4..8...7....26.4..9........3.....3.....4..5...6........1....
+.1......5.62.........4..8...7....26.8..9........3.....9.....4..5...6........1....
+.1......5.62.........4..9...7....26.8..9........3.....9.....4..5...6........1....
+.1......5.62.........4..9...7....86.8..9........3.....9.....4..5...6........1....
+.1......5.92.........6..8...7....29.3..4........3.....6.....4..5...9........1....
+.1......6....4..2.....5.......17.8..3......4....6.....4.5...3.....7....12........
+.1......6....4..7.....9.......17.5..8......4....6.....4.5...3.....3....12........
+.1......6....5..2.....4....4.5...3.....3....12...........17.8..3......4....6.....
+.1......6....5..2.....4....4.5...3.....7....12...........17.8..3......4....6.....
+.1......6....5..2.....4....4.5...3.....7....12...........17.8..8......4....6.....
+.1......6....5..2.....4....4.5...3.....7....12...........17.8..9......4....6.....
+.1......6....8..........7.....2.6..5..4...3.....1.........3.48.16.....2.7........
+.1......6...2...5....4..7..4..8.....2.7.............63....31...5.....4......6....
+.1......6...2...7.......2..5..3....42.38............1.....46...6.....3......1....
+.1......6...5...7.......2..5..3....42.38............1.....46...7.....3......1....
+.1......6...5...7.......2..5..3....42.38............1.....46...9.....3......1....
+.1......6...5.3.............8..17.........35..............6..213.7...4..8..2.....
+.1......6...8..4.....2.....2..3...7.8.4.....1.............17.3.5.....2......6....
+.1......6...82.......5.....8..75....6.....1.9......3...3...1...5......2........7.
+.1......64..3........7..8...2..63....5.....9.......7..7.8..........2..4.3........
+.1......7....2.3...........3...8.......6...1.......5.4...1.6.8.5..4.....2.3......
+.1......7....23.......7.6..6.....4.....8..1..3.2.........4.8...5......2....1.....
+.1......7....3.8...........4.7.8.......7...91.......2.3..19....8.....5.....2.....
+.1......7....38........4...4.8....3....15.2..6...........2....57......4.......1..
+.1......7....5..8..........4.8.2....5.....7.....1....3...3.16..9......5....7.....
+.1......7...3...2........8.....17...8.6......3...9....2..5..........49.....6..1..
+.1......7...3...8........2.....17...8.6......3...9....2..5..........49.....6..1..
+.1......7...4..5........6......1.8..4....3...3.2......5..6........2...4.6......3.
+.1......7...4..5........6......1.8..4....3...3.2......6..5........2...4.5......3.
+.1......7...5...4....4.........7.3.15..8.....2............136..4.2....5..........
+.1......7...6...4.....8....4......6.....5.8.......1...2..4.7......3....16.....5..
+.1......7.52.........4..8...6....25.7..9........3.....8.....4..3...5........1....
+.1......8....2..3....5.....3.2..5...6..4........1.....8...9..........5.4......17.
+.1......8...3....4....7....4.35.....5......7.......16.....126..3....8............
+.1......8...5...4....4.........6.3.15..7.....2............136..4.2....5..........
+.1......8...67.......2.........51.4.6.2...7..3.............4.152.....6...........
+.1......8...7...5.....3........1.4..7.2......5....4...2..5...........1.6......37.
+.1......8...7...6.3....8...4.....3.....16....2.............47...5..2.....6.....1.
+.1......8.62.........4..3...7....26.8..5........3.....3.....4..5...6........1....
+.1......8.92.........6..3...7....29.8..4........3.....3.....4..5...9........1....
+.1......9...3..8........6......124..7.3......5........8..6.........4..2....7...5.
+.1......9...76.......2.........81.4.2.7...6..3.............4.157.....2...........
+.1......9...78........5.....963...........84.......5..3..6..2..8......5......1...
+.1......9...8..7..............2.6.1.5......3.9..........835....7.....6......1.4..
+.1......9.82.........5..7...4....68.6..7........3.....7.....2..4...8........1....
+.1.....2.....6.4..............3...725...4....6........4.8...5..3..2........1.7...
+.1.....2....3...5....4.....6.2...7.....91.4..5........3.....8..8....6.......2....
+.1.....2....34.............4...21.....7....63......8..1.4......52..........6..7..
+.1.....2....4...5......8...5.23.....4.....8.....7..1......71...3.....6......2....
+.1.....2....56.............6.2...3.....4.1.8.9........7..8..5..3.......6....2....
+.1.....2....8..9...53......4.....3..2...5........1.....72....5.6..4........9.....
+.1.....2...4.6....7....8....5.37..........8.6......4..2..5...1....1.......8......
+.1.....2.3.....9......74...6..5............87.......4....96.5...84............1..
+.1.....23....6...........1....1.2...6.....4..8...9.....2.5........3..9......8.6..
+.1.....25....3........7....7.3.....8...1..4..6..2........4..61.5.....7...........
+.1.....27...6.91...........4.6...5......2.......3.....8......3....4..6...2..7....
+.1.....275...8.................1.9..3.2......67.......4..3.......8...4.....7.2...
+.1.....28..3.4...............5...37.6..2.8......1.........3.5...7....4..2........
+.1.....3......5..46..1........2..8...7..3.....4....5......4..2.5....7...8........
+.1.....3.....4...2....6....5...2...6...1..8.....7.....6.2......4.....7.....3...1.
+.1.....3.....5...2....6....5...4...6...1..8.....7.....6.2......4.....7.....3...1.
+.1.....3.....6...2....7....6...4...7...1..9.....8.....7.2......5.....8.....3...1.
+.1.....3.....6...7....2....5...4...2...1..9.....8.....7.2......4.....8.....3...1.
+.1.....3.....6...7....2....6...4...2...1..9.....8.....7.2......5.....8.....3...1.
+.1.....3.....7...8....6....6...4...7...1..2.....9.....7.2......5.....9.....3...1.
+.1.....3.....7.6......9.......1.8...2.....7.....3.......85...1.7...4..........2.5
+.1.....3.....8...7.........8.2.7.......6...1.......4..3..5....8...4.9......1..2..
+.1.....3.....8.4......2.......1.96..5.....2....73.....2...7.......6...1.8........
+.1.....3....58........2....4.7.....8...1..5..6....3...8.....2.......7.1....9.....
+.1.....3....6........5.....6..2..5......7..1.2..........7.1.8..4.....6......34...
+.1.....3....7..6......8....6.......82.7.............41....14...7.....3.....5.8...
+.1.....3.7..9...........6..9.....4......3..8......1......6..2.9.83.5.......4.....
+.1.....35....7...........4.7.23.....6.....2.....1......3...8.......2.7..4.......6
+.1.....364.2.7.............5..4..7.....1.6......3.....63...........8.2..7........
+.1.....4......3.1.....9.....2.4.........7.8..6.....3.....1.2...7..5.....3.....9..
+.1.....4......75......2....7.3.....9...9...1.5...........19...83.....7.....4.....
+.1.....4.....6...8....5...78.....6.....4.9......1.....5.83...........19.2........
+.1.....4.....7.2......8......41.3...1.....8.....4..9..2...5.......6...3.8........
+.1.....4.....7.3.....2.....7..6..2.....4.1...9........2...3......7.....1.....5.8.
+.1.....4.....8...6....2...56.....8.....4.7......1.....5.63...........17.2........
+.1.....4....3.6......2..6..4.7...2..5...9.......1..8..2..6............1........9.
+.1.....4..82.........3..7...5...2..86..7........9.....7.....3..4...8........1....
+.1.....4.8..5.............2.426...........81............5...2.63....75......1....
+.1.....439...2.............7.....2...5.4...........7.....65.1..8......5...43.....
+.1.....48.32.6.............8..4..........2.5.......1.....71.3..4.....6..5........
+.1.....495.3.7.............2...8.3...4.6.................4.9...7.....5..3..1.....
+.1.....5.....8.4......2.......143..67.....2.....5........6...1.2.8......4........
+.1.....5....2....3...8....6....174..8............5........4.91.6..3.....2........
+.1.....5....2..4...........16.....7....4..2..8..3.....5...17.....4.....8......3..
+.1.....5....36........2.7..6.....3.....5.9......1............192.8......3..4.....
+.1.....5....4..6.....2.........19..77.....3......5....6.38............952........
+.1.....5..38.........3..4..27.6............81....5....7..2.....4.....7......1....
+.1.....53.2..7.......4....86.4...9......1....3........9..8...........71....6.....
+.1.....54..62..............57..........6..2......1....3.2...6..4...57.........8..
+.1.....6......23......3....7..16....4.....5.....8........4...813.2..5............
+.1.....6......25...4..........43..1.2.......78........5..3..2.....16............8
+.1.....6......4.......8.......5.31.72..6...........8.....13..5.8.4......7........
+.1.....6......45......2....5.4..23..2..7........1..8..4...9...........1........7.
+.1.....6.....3..8....5....44.72.....5..4...........1......1.3......6.5..2........
+.1.....6.....4...7.........4.7.2.......5..18.3...........6..3.4...8.1...7........
+.1.....6.....4.8.....7.....5..1.6...7.....2.....3.........2..314.8.5.............
+.1.....6.....5...2...7.....5.4.8..........13.2...........1.6..48.....7.....3.....
+.1.....6.....8.4.....4.....7..1.6...2.....3.....5....94.8.3............5.......1.
+.1.....6....2..7.....8.....7...6.4......19.........2.....38..1.5.4......2........
+.1.....6....2..7.....8.....7...6.5......19.........2.....38..1.5.4......2........
+.1.....6....3.8......7...5.5.7.2....6.....8.....4..1..7.....4......6...3.........
+.1.....6....4....7.....8......62....3.....8......1....5..7.4.....6...12.......9..
+.1.....6....4...3.....8........1.7..5.4......3........6..5..1........8.24..3.....
+.1.....6....4..5.....7.........63...2.....8......1....5..2..4.........17..4.....3
+.1.....6....4..8...75......6..34.....2.....7....8.........71...8.....3..2........
+.1.....6....5....43............715....6...2...8.........463....5.....1.........8.
+.1.....6....5..2..9..8.........1...94.....8......6........3..1.2.7......8..4.....
+.1.....6....5..3.....4.....8..3..5........4.2....7........19.7.2...6....4........
+.1.....6....6..3..........58.39........5....1.......2.3....74..6...1........2....
+.1.....6....7....4....5....8.42...........13.7........9.....2.....51........36...
+.1.....6....7...4....2........5..2.7.4..8..........3..7...6.5..2.5...........1...
+.1.....6....7..3......8....6.......83.7.............21....21...7.....4.....5.8...
+.1.....6....7..3...48.......6.2....73..5............4.6...4....2.....5......1....
+.1.....6....9...4......3...4.67.........5.1..8.....3.....581...2...6.............
+.1.....6.5...3...........1.16.2........4..3.8.7.......3.4..........76.........5..
+.1.....6.8...3.......4..9.....6.1.7.3.....8...............9.3.5.6.5.....4........
+.1.....632..5..............7.....3......6.4.....1......63...9.....2.7......8...1.
+.1.....67..285.............5...67.........83......1......4..2..76.......9........
+.1.....7........13...2.....9...6.8..5.....2.......1......5..94....89.....3.......
+.1.....7......23......3....5..17....4.....6.....8........5...813.2..6............
+.1.....7......25...3..........14..3.6.......82........5..4..2.....37............6
+.1.....7......25...4..........43..1.6.......82........5..3..2.....17............6
+.1.....7.....3...8.........4.8.2.......5..16.3...........6..8.4...7.1...8........
+.1.....7.....3...8.........4.8.2.......5..19.3...........6..8.4...7.1...8........
+.1.....7.....3.2....54.....2.....3.8...1...............6....4.33...8.......5...1.
+.1.....7.....35.......9.....4.1...........5.3......7..3.85........6..24.9........
+.1.....7.....43..........8.3.....4.2...6..3...6.7.....4.2...5.....1.....5........
+.1.....7.....5...3.....3...6.....3.....7.1...........83.8.6.......2..14.5........
+.1.....7.....5...8.....6...8.....3.....7.1...........66.8.3.......2..14.5........
+.1.....7.....54.........3.....8...1.5.3......4.......22.....4.....6.1......37....
+.1.....7.....8.3..........88.4.2.......6..19.5...........9.7...7.......4...1.....
+.1.....7....2....6.........2......9....35........14...6.28.........4.1..7.....5..
+.1.....7....2....8.........2......9....35........14...6.27.........4.1..8.....5..
+.1.....7....3..4.....5.......3....162..4.....5...6........18...3.....2......7....
+.1.....7....3..6.....2.....3..5..2......1.4......8......4....8......5.1.2..6.....
+.1.....7....3..6.....2.....3..5..2......1.4......8......4....8......9.1.2..6.....
+.1.....7....6....8...3.......7...21.3..4.8.........3..6.......3...52........1....
+.1.....7....6...2...............41.72..57..........9..8.2......6..3.........1.4..
+.1.....7....6..2...........75......16..2............4.3.8...6......51..3....4....
+.1.....7....8....2...5.......7...41.5..3.2............8.......5....1.6......4.2..
+.1.....7....8....2...6.......5...41.6..3.2............8.......6....1.2......4.5..
+.1.....7....8....2...6.......7...41.6..3.2............8.......6....1.2......4.5..
+.1.....7....8..5.....4.......62.........1.3..5.....7..8....3...4......2.....7..1.
+.1.....7....8.6........5...6.3.7.......2..14.5..............3.68...4............1
+.1.....7....9..8.....2.....2..5.........6..1.8........4.3...2......73.......1...4
+.1.....7....9..8.....2.....2..5.........6..1.8........4.6...2......73.......1...4
+.1.....72...4..8.......8...6.5...2.....91.........7.......2..1.4..5.....8........
+.1.....726...3.............4.....31...87.2......5.....5...6.4........6...7.......
+.1.....735...48.............673.....2.....5......6.4.....7...1...4......8........
+.1.....74...2......3.......5.....84.2.8..........1.......8..2..6.......3.7...5...
+.1.....76...8..9......4........16.9.2.8......3........7..9........2....4......1..
+.1.....76..2.83............5..1...........32....67....67............52..4........
+.1.....764..9.................1..4....8...2...6...7...3.5.2........86...1........
+.1.....764.2.8.............5..1..8.....7.6......3.....67...........3.2..8........
+.1.....79...2......3.......5.....84.2.4..........1.......4..2..6.......3.7...5...
+.1.....8......24.....6.....6.......34..7.........8..1.2.....8....35.........1.6..
+.1.....8.....3.4.......5...7..6..2..3..8.1............4.2.7.......2....1.......5.
+.1.....8.....36............23....4.....8...7.6..........85..2..7.....6.....1....3
+.1.....8....17........3....5..6..3.7.....8.........2.......4.612.3......7........
+.1.....8....2..6.....6.3.......5..476.....2......8....2.....3...5..7.......9.....
+.1.....8....3...4...56.....2..7..3...8......2.5.......3.....6..4...8........1....
+.1.....8....3..7.....2.....3..6..2......1.4......5......4....1......6.5.2..7.....
+.1.....8....3..7.....2.....3..6..2......1.4......5......4....1......9.5.2..7.....
+.1.....8....46.......3.2...3.....4.2...75.............2.....3..4.5..........1..7.
+.1.....8....5...4.....2........612..3.8.....74........5.....6.....3.8......1.....
+.1.....8....5..2......9....5...18...2.....7......3.......7...136.24..............
+.1.....8....7....1....3....3.6...5.....1...7....2.....6...5.3........4.28........
+.1.....8....7....6...5.........2.14.7.36.....5........2...84.........3.7.........
+.1.....8....7..6.....2........5..7.29...1..........3......8..137.4......2........
+.1.....826...3...............9...74.3..8.2......1.....4...6.5........9...2.......
+.1.....826...3...............9...74.5..8.2......1.....4...5.3........9...2.......
+.1.....84.635.................7..26.8.....3..4........9.......7....36.......8....
+.1.....87..5.63............6..1...........32....78....78............95..4........
+.1.....9.....21.......8....2.7...3.....4...1.8........3..5..6.....9.4.........8..
+.1.....9.....23......6.4......17..5.4.3......2..............2.48..5...........6..
+.1.....9.....25.......4....2.......5...7...1.......3..5.....2.4..71.8.........6..
+.1.....9.....4.8.....1.....6...2.4........5.7...9........7...312.4......8........
+.1.....9.....8.......5........6.1.7.3...5....8.4......4.....8.....2.9.........3.5
+.1.....9....6....2.........6.25..4......8..1.......3..7..41....2.......9....3....
+.1.....9....6...5.....3........712..4.9.....85........6.....7.....4.9......1.....
+.1.....9..62..............39...24.........61.3...........59...84.....2.....1.....
+.1.....9..82.........3..7...6...3..84..7........9.....7.....4..5...8........1....
+.1.....98....2.6.....4..........8.1.2...7....4..........59..........1..37.....8..
+.1.....98....3.6.....2..........8.1.2...7....6..........59..........1..47.....8..
+.1....2......3..9.....4......3.....4.....95...8.2........6..18.5..1.....4........
+.1....2......3..9.....6......6.....3.....94...8.2........5..18.4..1.....3........
+.1....2......45......67....5......74.8.3.............6...1..32.4........7........
+.1....2......45......76....5......74.8.3.............6...1..32.4........7........
+.1....2......6..7....7.....5.63........8..4........1..8......6.....42.......1...5
+.1....2.....3...5............2...1.48..5.........9.7..9......2....6.1.......74...
+.1....2.....3..7...95......3..6............98.............89..2....5..1.4.....6..
+.1....2.....34.......5.....3.4.6.........19..............7.8..52......6........34
+.1....2.....8....5...6..7..4..7...68....2...........3.6.7..........3.1..8........
+.1....2.....8.5......9..3..4..6.7.8.........9....3........2.1..6.9......8........
+.1....2.....86........7....8..2.3...3......67.......4.7.4.........1..5..6........
+.1....2.....9.....3.........62...1.....3..7.....4.9...9......34....1..6.5........
+.1....2.....9.6......83.....7..1.......6...8.......9........1.48..3.....6.....7..
+.1....2.....96........7....8..2.3...3......67.......4.7.4.........1..5..6........
+.1....2....37..............28....7.....4.9......3.....4......356...2........1..4.
+.1....2...2..8........3..7.5......4.......1.9...65....7..1........2.9...3........
+.1....2...83.........5...6.2..6......7....1.....45........81...6......4.7........
+.1....2..3....6......5....49.....31....48..............45.....8....31.9..........
+.1....2..3...9.......7........5...87.2..3.....4.....6......14..7..6.....8........
+.1....2..4...5.......6.........7..5..3....1....8.........1.36....5.....47..2.....
+.1....2..5...3..........7.....2..4.76.8.5....3.....1...4.1............3........6.
+.1....2..8..3...........5...5....41....7...6...2..8...9......73....5........4....
+.1....2..8..7........5.....6......75.3..2........1....7.5.....6......32....4.....
+.1....2.85..4.6............3.6....5.....2.7....4.......2..1.......3...6.8........
+.1....24....35....9.............87.63..............8.....4...35.78.........1.....
+.1....3......27.......9....7.2.6.......3..18.............8..41.9..5.....2........
+.1....3......4.9.....9.....4.6.2..5....8..1..9...........1.3.7.2.......4.........
+.1....3......42............2.4..5.6....7..1..9...........61..7.8.......2...3.....
+.1....3......42.......9.......8..1..2.5......6.......4...31....9......2....7...5.
+.1....3......5.9.....4.....6.42.....8..6...........1..5...13.......7..42.........
+.1....3......5.9.....4.....7.42.....8..6...........1..5...13.......7..42.........
+.1....3......64............2.4..5.6....7..1..6...........18..7.5.......2...3.....
+.1....3......81.......5..4.32.6.........7...5.......8....9..2..4..3.....5........
+.1....3.....4....7...6.....7.4.....6....3..2.....1.5........15.4..8.....6........
+.1....3.....4.6.......52...4.6....3....81.7..2...........7..1..6...............2.
+.1....3.....5.4......6.....6..4...5.....2.7..8.....1......13...4......6........9.
+.1....3...23.........7.....7.5....4.6..2.........1...........684..5..........31..
+.1....3..6....2......4........7...941...............5...453....2.....6......8.1..
+.1....3.27..4..................236..8.......54......7..2..5.1.....7...4..........
+.1....3.8...5.1.........7....42...6.5.....1......3.....3..8.......4...5.2........
+.1....3.92...4........8....7.4......3..1............2..5.6..1....8....4....3.....
+.1....34.4..98.......5.....52......9....13..........8......61..9..4..............
+.1....36.4..98.......5.....52......9....13..........8......21..8..4..............
+.1....38...75..............4....6..5.....1.7.....3....5..27....2.....1.....4.....
+.1....4.......5.3.....2.......41.2..5.3....6.7........6..5.3......1...........8..
+.1....4.......6.5.....2....6...5..2........7....3.....7..4..1.....1.83..2........
+.1....4......26.......3.......8..1..6.......23.7.........7..5.....41....5......6.
+.1....4......5..3....2.....5.3.6.......4..2.17........3......56......1.....8.....
+.1....4......86.......5....5.8.....6...1.3.2.7...........2...1.4.......5......3..
+.1....4......9.2.....6..........5.192...3...........6.8.3..4....9.1.....4........
+.1....4.....2.5......8.....2....4..5....1..3........26..3.7.8..5..6..............
+.1....4.....2.5......9.....2....4..5....1..3........26..8.7.9..5..6..............
+.1....4.....2.9......8.....2....4..5....1..3........29..7.6.8..9..5..............
+.1....4.....3...2.....6....7...41...2......8......5...3.62........7..5........1..
+.1....4.....3...6.....2....3.5...7.......1.....6.........56...384....1.....7.....
+.1....4.....3..8.....2.7...3......6.2.5..........4.1.....5...3.7.......2....6....
+.1....4.....5...3.....2....4.83........7..6........1......62...5...1....3......8.
+.1....4.....6.7.......3.....9..14..........62......5..8.62...........13.7........
+.1....4.....8...7....2.........3.1..4.....9..8.7......5......8.....1..6....69....
+.1....4.....89..........3...5.1.4......6...8.2.............175.9.8.2.............
+.1....4.54...3..........2.....76..3..25..............8...5.21..7...............6.
+.1....4.56...2.............3.5...2.....1...6.7..5.....2......3....8....7.....1...
+.1....4.6...5..3...78......4...8........2..7.......5.....7...1.6..3.....2........
+.1....4.6...5..3...79......4...9........2..7.......8.....7...1.6..3.....2........
+.1....4.65....3......8.....2..46........1.73...........76...........8.5...4......
+.1....42.9..8.5.......3...........63.4.2.................41.2..3.......58........
+.1....5.......2.......8.......1.3.4.5......2....7.....2.8.6....4.....7.....3..1..
+.1....5.......2......8.....3.2..6.......7.1.........8.4...5...3.......162..1.....
+.1....5.......3.8.....7.......52....8......3....1........41.2..9....6...3.......7
+.1....5.......38......4...........42.56.........1.....4..72.......5..6..1......3.
+.1....5.......9..3...2..6..4......98...35........1....8.97...........12..........
+.1....5......2..4.....69......1..7..4..3.....6.2......2...4.......7..3..8........
+.1....5......2..4....8.....8.4.9....2.......1......3...7.1.5...6......2....3.....
+.1....5......2.6.........4....1....38......2....5.9......6..1..2...7....4.3......
+.1....5......2.6.........4....1....38......2....5.9......7..1..2...6....4.3......
+.1....5......4..3.....7....4...6.......7..1..3........8.2....4....1.97.....5.....
+.1....5......6..8..........4.3....7....1.2...7..5.....8..6...........3.2....9.1..
+.1....5......7...6.........7..1.4...3.......2...8........5..14.6.9.3...........8.
+.1....5......8........2.......7.26..8.....4..9........5..3...8..7......3...5...9.
+.1....5......8..4.....9.......7.61..9.8......4...........1..3.68...2.......5.....
+.1....5......8.4...........3.8.....97..2........1.6......5..61.8...4...........2.
+.1....5.....2...6....8........513...7......2.....4....6.5......2.....4......3.1..
+.1....5.....2...7....6.......5...1.86..3.7.........7.....48....2......6.....1....
+.1....5.....2.7......3...4..6..8....3......7........2.2..4.6.......5.8........1..
+.1....5.....28...........7..5....1.32..7...........6.....415...8.3...........6...
+.1....5.....3...8..........2..7..6.....4....3.5.......3.4.5........912..8........
+.1....5.....4...7....2.........3.1..2.....8..6.5......4......2.....1..5....68....
+.1....5.....6...3....8.....6..2..4........1.78........3......8...4.7........91...
+.1....5.....6...4....3.........752..4......6..............2.1.56.84.....3........
+.1....5.....6...7....3.........852..4......6..............2.1.56.74.....3........
+.1....5.....6...7....3.........852..7......6..............2.1.56.74.....3........
+.1....5.....6...9....8.....9.....2..8..3...........1.7....1...4.7..5....6......8.
+.1....5.....7...2....6.8.....3.4.1..6..2..............7......6.....5.4..2...3....
+.1....5.....7...3....2.........3.1..4.....8..7.5......2......7.....1..5....68....
+.1....5.....7...8...........6....1.2..745.............7...12...3.8....4.......9..
+.1....5.....9...6....8.....9.....2..8..3...........1.7....1...4.7..5....6......8.
+.1....5...2...8.......3.......52.1..6..4.......8...7..3......26...1............3.
+.1....5...2...8.......3.......52.1..6..4.......8...7..3......26...1............9.
+.1....5...47.........8...6.....6.4..6..3...........1..2......39....51........8...
+.1....5.37..2........4..8...5..1......4....2.....3....6.....7..1.2.........6.....
+.1....5.8...2...6.23.......4...51...6......9......3......82..........1.....7.....
+.1....53....6.4................1..8.6......2.7.2.......5....7.4...9..6.....2.....
+.1....53..2.6........4......9..5.7..4......6.....1....7...8.9..6..3..............
+.1....56.....4..........1...7.15....4......38...2.....3...6...42..7..............
+.1....56.....4..........3..4...73......5..8..........2...2...743.5...........1...
+.1....56.....8..........1...7.15....4......38...2.....3...6...42..7..............
+.1....58....43................2....4.5...8...3.....7..2.....15.....5..6.4........
+.1....6.......4.2.....57......18.3..4......7..........7.4....5....3..1..2........
+.1....6.......4.7.....8..2.7.2.3.......5..9.18...........9.1...2...........4.....
+.1....6......2...83..4........1..38..72...............2.8.7.......5..1.........9.
+.1....6......23.......8.7.....4..1..3.8......5........4......8....7.4......5...3.
+.1....6......25......8.9...9.5....3....14.7..2........5..9............1.......4..
+.1....6......29.......8.......51..3.9.....4..........2...6..51.2..7.....8........
+.1....6......3...7.........7.....12.3...8..5.......4..5.6.....3...2.1......4.....
+.1....6......42.......7..3.4.......57.2.........8..1.....1.8...3......4....5.....
+.1....6......43.......7..2.4.......87.2.........6..1.....2.1...3......4....5.....
+.1....6......7..2..........7.2.8.......5..1.3............3.65..8......4.2..1.....
+.1....6......7..4..........7.2.8.......5..1.3............3.65..8......2.4..1.....
+.1....6......7..8..........7.2.8.......5..1.3............3.65..8......2.4..1.....
+.1....6......74..........2....6.5.7....31....8......4..6.2..3........1..7........
+.1....6.....2...7......4......56.1..4..3.....2.8......3......2......8..4....1....
+.1....6.....28...........4.....6.7.12.....5..3.4......8......9....4.3......1.....
+.1....6.....3...7....7.....7..43......5...1........2..8......4.....62......51....
+.1....6.....3..7...94......3..5............98.............89..2....4..1.2.....5..
+.1....6.....3..7...94......3..6............98.............89..2....4..1.2.....5..
+.1....6.....4...5....3.........762..5......3..............2.1.63.85.....4........
+.1....6.....4...7....2.........3.1..2.....8..6.5......4......2.....1..5....78....
+.1....6.....4...7....3.........862..5......3..............2.1.63.75.....4........
+.1....6.....4...7....3.........862..5......3..............2.1.67.35.....4........
+.1....6.....4...9....8.....9.....2..4..3...........1.7....7...4.6..1....5......8.
+.1....6.....4.2......7.........1.5........2.64........7..5...4.3.......7....3..8.
+.1....6.....5...8....2.........3.1..4.....9..2.6......5......2.....1..6....79....
+.1....6.....54.......3.........71.2.4.9.....5.......3.3..2..........89........4..
+.1....6.....7...3....2.........6.1.42.......93.7......7..5...8.....1.4...........
+.1....6.....7...5....3.....7.....1.8....6.2..3..5......2..18...4......7..........
+.1....6.....78.......5.....5..2.9...6.....37........8.....314..7......5..........
+.1....6.....8....4...5..7..2.8....3.7......2.........1...36....9.....4......1....
+.1....6.....8...7....2.........3.1..4.....9..8.5......2......8.....1..5....79....
+.1....6.....8...9....4.....9.....2..4..3...........1.7....7...4.6..1....5......8.
+.1....6...39..........7.4...4.5...3.2...8...........1.7.....8..8..6........1.....
+.1....6...39..........8.4...4.5...3.2...7...........1.7.....8..8..6........1.....
+.1....6..4....8.......3.......65.2..8..1.....3.............7.84.5.2............3.
+.1....6.4...52..........3......8.57.3......6.4..........7....28...4..........6...
+.1....62.....3........7....3.7...5.....4...1.9........7.......9...8.2......1..4..
+.1....62.5...43.......8...........8367...............42..7..1.....2.......4......
+.1....63..2.7........5......9..6.8..5......7.....1....8...9.4..7..3..............
+.1....68.....3........7....3.7...5.....4...1.9........7.......9...8.2......1..4..
+.1....7.......4.......6....5.4....6....12....6..3.....4....8.........3.5...7..1..
+.1....7......23........6...3......29.......6....4........17.4..8.2......6..5.....
+.1....7......23........6...3......29.......6....4........71.4..8.2......6..5.....
+.1....7......23........8...3......89.......2....4........71.4..8.2......6..5.....
+.1....7......26.......3.......8..1..6.......23.4.........7..5.....41....5......6.
+.1....7......3..8..........7.2....3....1.4..5...9.....8...6.......5..9..3.....1..
+.1....7......34.......7..2.6.......54.2.........8..1.....1.8...2......4....5.....
+.1....7......36.......8....7......35...4...6.....5.......1..2..3.8......6..2.....
+.1....7......43...............6..2..9.4......3.........7.18.........5.386......9.
+.1....7......43.......6..2.6.......84.2.........7..1.....2.1...3......4....5.....
+.1....7......45.......3..2.4.......85.2.........7..1.....2.1...3......5....6.....
+.1....7......6.......5.....5.23........8..4........1..3...1..5.6......9.....47...
+.1....7......8..4..........8.4....2....1.35..6...........6.13..2...4.......7.....
+.1....7.....2...6.....9....4..1.7...6......35...8.....5.6.3....2.....1...........
+.1....7.....2...6.....9....5..1.7...6......43...8.....4.6.3....2.....1...........
+.1....7.....2.4......3.....4.25.....3......8.....7..1.....8.6..2.......4........5
+.1....7.....2.6......3.....6.24.....3......8.....7..1.....8.5..2.......4........6
+.1....7.....3....4.........2.65..........98..3........4..63..........19..8.....7.
+.1....7.....3..2...95......3..6............98.............89..2....5..1.4.....6..
+.1....7.....3.6......2.....6.24.....3......8.....7..1.....8.5..2.......4........6
+.1....7.....36........2.........9.423..7.................8..51.2.4......6.....3..
+.1....7.....4..3..6...8....1......82..73..................12.6..34...5...........
+.1....7.....45........3....6..2............934...........7..21.3.9......5.......8
+.1....7.....6...5....9........3184..2......6.....7....5.2..........4.1..6........
+.1....7.....8.2......3.........4.5.98......3....67....2.7..........9.1..3........
+.1....7.....82.....4..........5...823......9......1...8..3.....9.....6........4.1
+.1....7.....9.3...............76.1..8....4...3........2.4.....8...51..6.....7....
+.1....7...2...5......4........13.6..5...........7.........1..296......4.4.......5
+.1....7...3.9............4.6.......9..2....8.....1....2..8.4......5..3..7.....1..
+.1....7...3.9............8.6.......9..2....4.....1....2..8.4......5..3..7.....1..
+.1....7.25..4.6............3.6....5.....2.8....4.......2..1.......3...6.7........
+.1....72.46.8........3.....3..4..9..8..............1..5......8..2...7.......1....
+.1....8......2..4....3.....2.4.9..........1..5.........3.1.8...6.......2...7...5.
+.1....8......23........6...3......29.......6....4........81.4..6.2......7..5.....
+.1....8......74.......2....7...5..2....3..6.9...8.....2.8.........9..1..4........
+.1....8.....2........6.....5...1..24....89..........6.2.5..........7.3..6..3.....
+.1....8.....2..6.......5...7.....3..2...8.......4.1...6..7.........4..1...2....5.
+.1....8.....2.3......7.........1.6..2.4......3...........3...42.....6..7....5..3.
+.1....8.....2.7......4........5..7.263..1..........4..7......5.....9..3.4........
+.1....8.....23.......4..........16..4......5.2.....7...8..6....3......2....7...4.
+.1....8.....3....5............5...63.78......4........6..4...2.....827..3........
+.1....8.....3.4......5.....5....3...4.6..........1.7......2...67......3........45
+.1....8.....3.4......6.........7.2..4..5..............3......46..7.1..5......2..3
+.1....8.....34........2.......1..45.4.......2...8.....3.5....7....6..1..2........
+.1....8.....4.........7....7.5.2.........91........4..3..6...7.5......3....1.8...
+.1....8.....4..5..79.......5.....24.6...13.......9....8..7.............1.......6.
+.1....8.....4.3......5.....5....4...3.6..........1.7......2...67......3........45
+.1....8.....4.3......6.....3.7....6.....5.1..2...........51..4.4.......3.....8...
+.1....8.....46.......5.3.......7.2..3....6...4..........782....5......3.........4
+.1....8.....5..............4..2...5..3..1...6.......7.5.74.....2.....1.......83..
+.1....8.....5...9..........5.92.........481...........34.71....7......8.......6..
+.1....8.....5..7..2..6.........71...3......2.6...........2...6..7......4.5..8....
+.1....8.....54.........2......36.1..2.7.5....4........5.......6.....1.2....8.....
+.1....8.....7....5............5...73.68......4........3..4...2.....826..7........
+.1....8.9.....6.3..2..........21.5..8..9..2..4........3......64...1..............
+.1....84....6.9......2.........3.5..4.2......6............851..2..7...6..........
+.1....85.....4..........3..4...63......1..7..........2...2...643.8...........1...
+.1....9......6..8..........3.5.8..........1.7........46..1.7...8..5...2....4.....
+.1....9......65...............2..34.5.....2..8.6.......4.7....83..9............5.
+.1....9.....3.4......6.........8.2..4..5..............6......43..7.1..5......2..6
+.1....9.....4.6......5.....3...2..5.6..7...4..............8.1..5....3...4.7......
+.1....93...82........5.....76.....1.5.......2...8.......4.3.7......1....2........
+.1...2.......7..3..........3.2....4....1.85........2...6....1.87..43.............
+.1...2......5..8..4.....6.......7..56...4...........1..521........36.4...........
+.1...2......6..3...........6.92.....3......5....4...1.8.......3....57.......1.6..
+.1...2..54...7.2..6...3....7......3....5..8.....1......5.8.............4.......7.
+.1...3.........1.2........46..25........4..3.......78....1.7...5.4......2........
+.1...3.........4......1......47....58..9............1.2..45.6..6......3.......8..
+.1...3......2...5...4...7......14..........3.5.........6....1.82..65..........4..
+.1...3......2...7...4...6......14..........3.7.........5....1.82..75..........4..
+.1...3......24.............4.2.3....5.....8......6.1.....1...4.9......2....8.7...
+.1...3......5..2...........4.52.........6..7.2......1..7..1....3.....5.....6....8
+.1...4.......5..2..........7.2....3....8.14........6...4....1.65..23.............
+.1...4.......6.2..............8...14...7...5.2........6.4...3..7...5.......91....
+.1...4......3....6.......8.....214..3.6.5.............6..7...2.8..4...........1..
+.1...4......5....7.......8.....214..3.7.6.............7..3...2.8..4...........1..
+.1...4......5..8...........5..31....2.....4.6.............6..317.42............8.
+.1...4......5..8...........7..31....2.....4.6.............6..315.42............8.
+.1...4..6....53.2..........47.6...........35.......8.....81....3.5......2........
+.1...4.8...7...9......3....4.....3.....5..7..8........2......4....92.......7....1
+.1...46......9...3..........2.8..7.....35....4..............21...35.....9.....4..
+.1...5.......2..4.......7..3......2....15.......7.6...2.....6.....8..1..8.4......
+.1...5......3..8...........5......1.....1...6..8.2....3..6.1...4.....28....7.....
+.1...5......7..2........8....941....3.....5......6..8.2..8...........6.9.......1.
+.1...5.3.....4.6.7............76.2...35......4...........8.3.1.7........6........
+.1...6..........12........87..28........4.6.........5....1.53..8.4......2........
+.1...6......4...........2..4.63.....2.....5.....7..1..3......6.....1..3.....5...8
+.1...6......7....2......4.....3...154.2......8........2..59........2.1.........6.
+.1...6.....9.....4....5..7.4......5......17.....3.....2..84.....5....6........1..
+.1...68........1.....2.....2.47.........3.9..5.........3..1..5........24.....8...
+.1...7.........2.35...8....15..6.7.....2......7..........3.4.1.2.6...............
+.1...7.........3.2........85..23..........84.....6.......1.4.7.6.3......2........
+.1...7.......3.6........42...7...3.84..2........6.....6..4...5.........7....1....
+.1...7.......3.8.....2........15..6........27...4.........9.1..2.....4..3.6......
+.1...7.......3.8.....2........15..6........27...4.........9.1..2.....4..6.3......
+.1...7.......4.6........2..2.65.........31.8.4........6..2..5.....3...1..........
+.1...7......5...3.2........6.....7.14..35........8.5.......21....54..............
+.1...7....28.........3..5....782....6.....4........9..4..5.....3......2........1.
+.1...7...5.......2..........47....1....25.3.....6...........84....38....2.5......
+.1...8..........35....4.....6..2.1..1..7........3.....3.25..........46........8..
+.1...8.........2.37...9....15..6.8.....2......8..........3.4.1.2.6...............
+.1...8.......3.5...........7......18...46...........2.6.3...4..5..2..3.....1.....
+.1...8.......4.3...........6......18...75...........2.5.3...4..4..2..7.....1.....
+.1...8.......4.7........53...8...4.25..3........7.....7..5...6.........8....2....
+.1...8.......4.7...2.......3..5..6.94....2......1.....7...5.3.........2....6.....
+.1...8......3...6............5.12...7......4.......8..3..76..........1.2...4..5..
+.1...8......4..5...........5.4.2...........172......3.4.....8.....36.......1.7...
+.1...8......9...2....3......3.1..8..7...2...5.........5.2..7...6...4..........1..
+.1...8......9...2....3......3.1..8..7...2...6.........5.2..7...6...4..........1..
+.1...9.........43.......8.......6..15.3......4...........53..4....4..2......7...6
+.1...9......7..2..............3..16.8..4...........5.2....1..4.2...5....4.9......
+.1...9......7..2..............3..16.8..4...........5.2....1..4.2...5....6.9......
+.1...9....28.........3..5....782....6.....4........9..9..5.....3......2........1.
+.1..2.........48..76..............41....35......6...7.2.5...3.....1.......4......
+.1..2.........73......4...5...6..17.8......2.5........2.......4..53........1.....
+.1..2........3..6........787..8.....8.2............1..6..7......3.4......5....3..
+.1..2.......3..9.......85......1..265..4.................7..31.6.2......8........
+.1..2.......4...5........7....6..2..4..7...........1..7..5...4.....1.3....3.8....
+.1..2.......5..3...........5.72.....3.....8.....4..1..6.......7.....1.5.....98...
+.1..2.......7..8.......95......1..265..4.................8..31.6.2......9........
+.1..2.......9...5.......8.3.7....4.62..5...........1..9....6...5......3.....1....
+.1..2......4.....6......7.....41..9.5.7...8..3.........6.....1....3.5........7...
+.1..2..7.2...63....4...5...5.6...3.....1.....3.........7.8...1.......6...........
+.1..2.5..3..7...6.........4.2..19....4.....7..........7.64.....8.....1...........
+.1..2.6..5..7..............3.8....5.7...1..........2.....5...7..2.3.......6...4..
+.1..2.75.....64....3........7.1...8.2.......6.........4.9.........5..1..6........
+.1..2.85.....64....3........5.1...7.2.......6.........4.9.........8..1..6........
+.1..23......5..8..............27.6....1.6....53.......8..4............73.......1.
+.1..26...7......3.....5....3.41........4..5........2...2...86.....7...4..........
+.1..3...........24........9.8....7.....4.6......2.....4.6....5.....721..9........
+.1..3..........2.7........5....61.8.7..2.....4.5......3..5...........36......4...
+.1..3..........2.7........5....61.8.7..2.....5.4......3..5...........36......4...
+.1..3..........2.8...4..6......51.3.4...7....2........6.92............5....6.....
+.1..3..........6........5......1..935.64.....7........4..5........8....1......32.
+.1..3..........6........5......1..935.64.....7........6..7........8....1......32.
+.1..3.........7.8.....4.......1..25.9.....8..7........3.......7.....96...2.8.....
+.1..3........6..7.......2..3.4.....6...9..1..7...........1.8..45......3....2.....
+.1..3........6.2...........6.3....8....1.97..2........8.......34..9........5...4.
+.1..3........9..7.......2..3.9.....6...5..1..7...........1.8..44......3....2.....
+.1..3.......6..7..............51.3..6.8...4......2....7......189..3............2.
+.1..3......7...8...3.......8......4.....7...3.....2.7.2..8..5.....4..1..........6
+.1..3.....28.........6..4..6.....7......2..1.9...............813..4........5.6...
+.1..3....4.....5.........8..4....1.3...8.7......2.....8.2....7.....5.4.....6.....
+.1..3....5......7.......4....7....13...25.....9.8.....4.....2.6.....1.........5..
+.1..3....6..5.....9..........576.......4...2.8......1......16....7...5...2.......
+.1..3..6.....2...9.........3.2...5.....1...8.7....4....6.8........4..7........2..
+.1..3.4........61.7........8......72....64..............4...1.5...2.7......8.....
+.1..3.5.....2....4.........2.9.....8....1..6...........6....13.7..8.2.........4..
+.1..3.8..6......4.2........54.2.......3...1.....7.....7..6...2.....8........1....
+.1..32.......4...3.8....7.....9..81.3..7.....4...........5..9..2...............8.
+.1..327..4......8.....7.....7..1.....2.6............6.8..5.....6..4...........3..
+.1..4...........56......2.7.9.2........5.7.........8......8.12.5.3......7........
+.1..4...........83.........2.85.....7.......4.....91..5..6...........42....38....
+.1..4..........6.8.......3.....5.47.8....3...2........3..8.6....4....1.....2.....
+.1..4.........82...........2.8..6......2....3...5...1.7.....64.5..13.............
+.1..4.........82...........2.8..6......2....3...5...1.7.....64.5..31.............
+.1..4.........82...........2.8..7......2....3...6...1.6.....74.5..13.............
+.1..4.........82...........2.8..7......2....3...6...1.6.....74.5..31.............
+.1..4.........97.......16..7..62...........1....8.....6.73............452........
+.1..4........3...7.......2....2..1.84.65.....3..............41....9..6..7........
+.1..4........3..5.......2..5......48......1.6.........7.4....3.3..2........1..6..
+.1..4........6..5.........36.7....2.5..3........1.9......7....12.....8........4..
+.1..4........8.3.........2.8.3.7.......1...5.9.......23..2.....7.....8.....5.....
+.1..4.......5....2......3......3.41.2.8......5......6....2.8.........74....1.....
+.1..4.......5....2......7......3.41.2.9......5......6....2.9.........84....1.....
+.1..4.......5..2...........6.72..5.........13...7.........18.4.5...3....9........
+.1..4.......5..6...........6......14....3..2.9..8.....5.4...3.....71.........2...
+.1..4.......6..3.............7.18.4.3.....6...........6..35.......4....12......8.
+.1..4..2..351..............26.....4....3.5.........7..4...2..........3.88........
+.1..4.3.......79......51...7......51..93..............2..8..6...5.....4..........
+.1..4.5.36..7.................8.6.7..5.2...........1......1.4..7...3....2........
+.1..4.5.96..7.................8.6.7..5.2...........9......9.4..7...3....2........
+.1..4.6.5......3..2.............7.8..65.........2.....7.8....2....36....9........
+.1..4.6.82..5.7............3......9......81......6....5..2........3...2..8.......
+.1..45.....7....3..............6.4.13.....5....82......4....1.....3...8.2........
+.1..46.......3.2.5.........5.32..........7.6...8.......6.....4....5..3..1........
+.1..47.......3.8...........6.8...2......1..7.2..5......4......1...8...9....2.....
+.1..48.......3.9...........7.9...6......1..8.2..5......3......1...9...7....2.....
+.1..48.......3.9...........7.9...6......1..8.2..5......4......1...9...7....2.....
+.1..49.....8...3............7.25....6......94.......1....7..5....63.....4........
+.1..49.....8...3............7.25....6......94.......1....7..5....68.....4........
+.1..49...5.....37..........6..3..5...4......2.........3.25............41......6..
+.1..5...........63.8.......35....2.....6....7.....1.......3.5..6..7.....4......1.
+.1..5..........24....3...7.....816..7...6....4.9......3..4...........1.....5.....
+.1..5..........3.4.........9..3..7.....4.98.........2.4.36.........2..1.........5
+.1..5..........34....7.....3.6...7......1...98...4...........157..3........2.....
+.1..5..........34....8.....3.6...7......1...92...4...........157..3........2.....
+.1..5..........4.2......8...5.7...1......82.....6........12..6.8.4......3........
+.1..5..........6.....7.....6.7...3......1.5......9....3..6...1........928..4.....
+.1..5..........64.................252..4........3.6......81...76.....3..4.5......
+.1..5..........64.................952..4........3.6......81...76.....3..4.5......
+.1..5..........7........6......1..536.74.....8........4..6........9....1......52.
+.1..5..........7........6......1..536.74.....8........7..8........9....1......52.
+.1..5..........84....8.....7.6...3......1...92...4...........158..3........2.....
+.1..5.........32.........672......3....61.......7.....3.......5...8..1..4.6......
+.1..5.........47..........37.86..2.....18..5.4........6..3.............1.......8.
+.1..5........3.2..........7.627.....5.....4.....1.....3.4....5........812........
+.1..5........4..3.......2..3.7.....5...8..1..6...........1.6..34......7....2.....
+.1..5........6..8.......2.......2..58..4..............6.8...75....1..4..5..3.....
+.1..5........8.3.........2.8.3.7.......1...6.9.......23..2.....4.....8.....6.....
+.1..5........8.3.........2.8.3.7.......1...6.9.......23..6.....4.....8.....2.....
+.1..5.......2...4.......32.6.47.....2.......9...8..1......93.......1....7........
+.1..5.......3...2.......6..2...9...4....179..3.........9....1..4..2........6.....
+.1..5.......4...6..........4.63..5.....7..1..........86...21...2......3......8...
+.1..5.......6...7..........4.73..5.....4..1..........87...21...2......3......8...
+.1..5.......6...7..........4.73..5.....4..1..........97...21...8......3......9...
+.1..5.......6..4...........7.34........2....1.....7.8.....8..2.6...1....4.....7..
+.1..5.......6..8.........3.2..5.......9....7....4....13...7.2......1...56........
+.1..5.......7...2........3....6..87.....1....3........8.24.....4.....5........1.9
+.1..5.......8..2..........96..3.27.........4....7.........4..152.7......3........
+.1..5.......8..7.........3.7..5.......6....9....4....16...9.2......1...53........
+.1..5.....73......5...2.......7...132................86.....25....3.1.........4..
+.1..5....3......4....2..8..62.7.....1......3..........4...31....5....2.7.........
+.1..5...4.....2.7..........7.2.........8..1..6.....3...3....5.....7.4......62....
+.1..5..7.....23...............4..5.3.8.1...........2..3.2.........7...8.6.....4..
+.1..5..763..4.................2..3...6.......4...........16.8..9.2...4.......7...
+.1..5.3.....2......8........2.4..8..7..62....3.....1..5......2......1..........6.
+.1..5.3.....2......8........2.4..8..7..62....3.....1..9......2......1..........6.
+.1..5.3.....2......8........6.4..8..7..62....3.....1..5......2......1..........6.
+.1..5.3.....2......8........6.4..8..7..62....3.....1..9......2......1..........6.
+.1..5.3.....6......8........6.4..8..7..26....3.....1..9......2......1..........6.
+.1..5.3.....8......7........2.4..7..6..28....3.....1..9......2......1..........8.
+.1..5.3...942.....................248...1........6..7.2..4.....6.....8.....7.....
+.1..5.7.....2......8........2.4..8..7..62....3.....1..9......2......1..........6.
+.1..5.7.....2......8........6.4..8..7..62....3.....1..9......2......1..........6.
+.1..5.7.....3..2...8.......3..4..6..2...7........1..8..5.....1.4..2..............
+.1..5.74.3....6.............4.2.............6........58.5.3.......7..1..6......2.
+.1..5.8.....2......7........2.4..7..5..62....3.....1..9......2......1..........6.
+.1..5.8.....2......7........6.4..7..5..62....3.....1..9......2......1..........6.
+.1..58......4...3..........2.....1.83........6...........36..4..82...7.....9.....
+.1..58...4.....23....6.........1...72.....6..............2...1..7......56..3.....
+.1..6..........4.3......2..6..5...7.3..4..........3.....8.7..1.4..6.........2....
+.1..6........3..5.......2..3.5.....6...7..1..8...........1.7..45......3....2.....
+.1..6........4...3......7..4.3.5..6....7..2.....3...1.6.....8.....2.....3........
+.1..6.......2..8.......53......7..645..8............1.3.....27....41.............
+.1..6.......4...7..........8.....36.4...51............7.23........6..1.5......9..
+.1..6.......4..3...........4..3.2...7......19.........3.....85.....1.2.....69....
+.1..6.......4..3...........4..3.75.....2............6.3.9.8........1..862........
+.1..6.......4..8.......3...4..7....5...2...3........16..6.51...7.....2...........
+.1..6.......4..9..............51.3..7.9...4......2....8......176..3............2.
+.1..6.......7...3.............14.6..3.8......5...9.......8.3.5.......4.27........
+.1..6.......7..3.............8.19.4.3.....7...........7..35.......6....12......9.
+.1..6.......7..8..............51.3..7.9...4......2....8......196..3............2.
+.1..6....7......2...........6....3.1...4.7...8..2.........9.1.........632..5.....
+.1..6...7.3.....2..........4.5.....6...3.1......9..4..8..5...9.6..............3..
+.1..6..2.4...3..............287...........4.3......5.....2.5.9.3.6......7........
+.1..6..3.....52............2.5.........4...1.7...........3..4.7.3.8.....4.....2..
+.1..6..57...2...3....4.......4...8..3...5.........1....5..2.......8..4..7........
+.1..6..75..84..............59.....1....2..4...........4.2...8......51...3........
+.1..6..75..84..............75.....1....2..4...........4.2...8......71...3........
+.1..6.2...3.5...........8..6..75....2.....1.....4...3.8....1..........5........4.
+.1..6.2..3......7...............1..67.....3..5..7........4...5..6.3......8......4
+.1..6.4..........2......8.....71..5.4......6...8.......5....31....8.2...3........
+.1..6.4...2.8......9.......6......2......1..........7.5..27.......3..9..4.....1..
+.1..6.4...7.8......9.......6......2......1..........7.5..27.......3..9..4.....1..
+.1..6.5....7.....3.........3..75......8....1.......2.....4.1.8..2.6.....5........
+.1..6.5...2.8......9.......5......2......1..........7.6..27.......3..9..4.....1..
+.1..6.5...7.8......9.......5......2......1..........7.6..27.......3..9..4.....1..
+.1..6.53.8..............4.....3.2..7.5....1.....8.....2.......84...5...........2.
+.1..6.54.8..............3.....2.8..7.5....1.....9.....2.......83...5...........2.
+.1..64.....5....3..............7.4.13.....6....85......4....1.....3...8.2........
+.1..65...2......3...........5......2...3...4.3...........4..1.57.82...........6..
+.1..65...2......3...........5......2...3...4.8...........4..1.57.92...........6..
+.1..65...3.....8.2.........7.4....5........218..3........8..7....5.......6.......
+.1..7...........42......69.....8.2.14.9......3........7..9...5....2..8...........
+.1..7...........83.........2.84.....6.......7....9.1..4..5...........72....3.8...
+.1..7.........32........56.2....5......3...8........1.5.....4.3..781.............
+.1..7.........35........46.2....4......3...8........1.4.....2.3..781.............
+.1..7.........4..6.........6.4.....3...12....8........4..3...5....8..2........17.
+.1..7........5..3.......2.....1..58.5.3...6..7..4..........2..73..8..............
+.1..7........8..3.......2.....1..58.8.3...6..7..4..........2..73..5..............
+.1..7.......2....47......9..9....73...85.4................3.1..4.2......5........
+.1..7.......2..3..........9....4..173.6......2........5..3.26.........4....8.....
+.1..7.......3...4..........6.2....7.....19......6.5...3.....1.98..4...........5..
+.1..7.......4...2.........86...5.7..5.3..............14..2...5......13.......8...
+.1..7.......4...8.........96...5.7..5.3..............14..2...5......13.......9...
+.1..7.......4..5...........4..3.2...8......19.........5.....36.....1.2.....79....
+.1..7.......5...8.......4..8..6...9....41.............6..2.9.....5...3........1.7
+.1..7.......5..3...........5..4.36.....2............7.3.6.8........1..872........
+.1..7.......6...2........4....8..7........1.96..2.....8....4.5.....1.3..2........
+.1..7.......8..5...........6......123.45..................12.7.5.....3..4....9...
+.1..7....2.....8......4....8..2..6......1..7.............8..3.175.9......4.......
+.1..7....5.....2.............83..4...7.....6....2.....2..5.4...3.......1....6..7.
+.1..7....5.....2.........3..7.4..6.....2.54...............3..712.8..6............
+.1..7..3........52............5.24...8....1.....3.....3.2..........8.7..6..4.....
+.1..7..4..9....8.....3.....6..4..3........2..........7....91.5.3......1.2........
+.1..7..8..92...............3.56...4.7...........9........43..........9.25.....1..
+.1..7..8.6..4.......9......2.....3.4....1..........2...75....1.4..3........2.....
+.1..7.3...4.6...........9..7..86....2.....1.....5...4.9....1..........6........5.
+.1..7.3...526.................5.2...6.....4.....8.....3...9....9......6........28
+.1..7.4...2.8......9.......7......2......1..........5.6..52.......3..9..4.....1..
+.1..7.4...5.8......9.......7......2......1..........5.6..52.......3..9..4.....1..
+.1..7.6.....2...84.............5.3..8..4..............4.83..........915.2........
+.1..7.65.3..............4.....3.2..8.6....1.....5.....2.......34...6...........2.
+.1..72.....6...5...8.......2......7....53....4...........6..1.5......64.7........
+.1..73...4..5..2............73.1.....6....45.................718..2.....5........
+.1..76...5.....24..........3.52.............4.......6.2.8.......6......7...5..3..
+.1..76...5.....9.2.........8.4....6........219..3........9..8....6.......7.......
+.1..76...5....4.........3......6.57..823.............17.3.........2..8...........
+.1..76...8.5...3...........27..........5..1..6..........3.....2...9...4........76
+.1..76...8.9...3...........27..........5..1..6..........3.....2...8...4........76
+.1..76...8.9...3...........27..........5..1..6..........3.....2...9...4........76
+.1..79...6.....8............75....6....2..4....9......8..43....2.......5.......9.
+.1..8...........36..........74..61.....2..8.....3.5...3.6......5...4..........7..
+.1..8..........2.3........6...14..7.3.2......5........6..5........3.2.........78.
+.1..8..........52......3......2.6.7.8.......2...5.....3...4.8..2..7.............1
+.1..8.........2.7.......3.....3..1.52.7......4............4...86......2.7..1.....
+.1..8........2.6........5..3......8.6.5.............1.4..5..3...7.4........3.6...
+.1..8........4...5.......2.4....5..7...1..3.....2.....6.7...8.......3.1.8........
+.1..8........6..5.........36.7....2.5..3........1.4......4....12.....8........4..
+.1..8.......2..3..........9....4..183.6......2........5..7.26.........4....3.....
+.1..8.......3....5.......24..6...87.4..5........2.........7.6..5...9....2........
+.1..8.......3..6...8....4..5......2.6.....7.......1.....2....19...45...........8.
+.1..8.......4...3.2.....5.....5.27...89......3............6..815..7..............
+.1..8.......7...2...............91.43..2...........8......1.48.7.2......6..5.....
+.1..8....2.....5............8.....37...6...1....5.....5..2..4......31.....9...8..
+.1..8....6.....2.............93..4...8.....7....2.....2..5.4...3.......1....7..8.
+.1..8....6.....2.........3..8.4..3.....2.67...............5..812.4..3............
+.1..8...2.....69...........6.9...5.....1.....3.........8.79..........65....8...3.
+.1..8..2........5.........3...3.2.7..6....1.....5.....3.....8......1.4..5.7......
+.1..8..2........7.........3...3.7.5..6....1.....5.....3.....8......1.4..7.2......
+.1..8..9...5...3.....4..2......19...3.....5......6.......8....62..3............1.
+.1..8..9...6...4.....5..3......29...4.....6......1.......8....23..4............1.
+.1..82...4......36............63.1...72......5.............72..6..3.......8......
+.1..82...5.....74.............7..3....2.......8.......3..5....47.6.....2.......1.
+.1..825..6......4.............61..7..28...3.....4.....1..7..........58...........
+.1..83.....8...4.....6...2.4.57.............1.......3..3....6.....4..5..2........
+.1..87..........54..........7.6..3.....5....26..........2....8....9..7..5..4.....
+.1..893.....2...5..........5.24...........7.1..........8..71...4......2.6........
+.1..9..........2.3........7...14..8.3.2......7........6..5........3.2.........89.
+.1..9..........2.3........7...14..8.7.2......3........6..5........3.2.........89.
+.1..9..........3........2.....5.1.4...3.6....8.....7.....3...1.9..2............98
+.1..9.........7.3..........7.2..8......5..1.6......9..3..6...4.8..3.........1....
+.1..9.........7.3..........7.2..8......5..6.1......9..3..6...4.8..3.........1....
+.1..9........3..7.......2..3.9.....6...5..1..7...........2.8..45......9....1.....
+.1..9........8..6.......2..3.8.....5...9..1..6...........1.7..45......8....2.....
+.1..9.......3...2.......5..2...8...4....169..3.........8....1..4..2........5.....
+.1..9....5.......2...3..7......1.68.2........7..............41....2.5....6.7.....
+.1..9.8.....3...2..6.......4..25....2.....1........6...9.8.1...5......4..........
+.1..92.......6..4.........5.6....2.....5...3.1...8....5.37...........6.....1.....
+.1..983.....2...5..........5.24...........9.1..........8..19...4......2.6........
+.1.2............93...........7.69....5....2..........1...51..6.9.....8..3..4.....
+.1.2...........4.3....4.7.....5.1.2.3.....6.....8.......2....8.4...7........6....
+.1.2...........4.3..5...7.....5...9.4.....6.....1......5...8.1.7...3........4....
+.1.2...........4.3..8...6.....8...6.4.....3.....1......2..7..1.3...5.........4...
+.1.2...........4.3..9...6.....9...8.4.....3.....1......2..7..1.3...5.........4...
+.1.2...........4.3..9...7.....9...5.4.....6.....1......5..8..1.7...3.........4...
+.1.2...........56.......8.....7...218.......45........6..38......4...7......2....
+.1.2...........7.3..........5....42.6......8....53....7.3...6.....1.2...9........
+.1.2...........7.3..6...4.....5...7.4.....2.....1......5...6.1.7...4........8....
+.1.2...........7.3..8...5.....8...6.3.....4.....1......2..6..1.7...3.........4...
+.1.2...........8.3..9...5.....9...7.3.....4.....1......2..6..1.8...4.........3...
+.1.2..........85..............7...125.64.....3........8...3.7......5.86..........
+.1.2..........95..............7...125.64.....3........8...3.7......5.96..........
+.1.2..........95..............8...125.64.....3........8...3.7......5.86..........
+.1.2..........95..............8...125.64.....3........8...3.7......5.96..........
+.1.2.........3..4...8...5.....1.6...5......8....7......7....1.24...5..........7..
+.1.2.........3..5.............1.82..3.47.....5.......6...3...7.6...5..........1..
+.1.2.........7..5.............3...8.6...5..........1.....1.92..7.48.....5.......6
+.1.2.........8..4.........8...1.52..7.36.....8...............654...2..........1..
+.1.2.........8.6...45.........1.2...3.....7.....4........5....16...3....7......2.
+.1.2.........8.7...9....5..1...7.6...4.....2........9.5..3.....7.6.........9.....
+.1.2........3...5.7......4...61..3..4.....8.............5.46....6....2......7....
+.1.2........5...7......4.3.7..4...........2.66.....1...5..1........86...3........
+.1.2........9...6........8.8...6..4..5.1..7...........6...4........3.1.....5..2..
+.1.2......3....8......4....6..1...7....3.8...9........7...9..5.......3.2......1..
+.1.2......8....5.....3.7...7...8.1....4...2..3...........6...47....2...........3.
+.1.2.....3.......8.........4.....21.6....3......5...7..721.........6.4..........3
+.1.2.....6......3.......57.7.3.........1.....5.........6....2.14...3........5...8
+.1.2....5.......38.......7.26....4......83............4..6..2..7.3.........1.....
+.1.2....65...7..4..8........6.1..2.........7.3..............6.17...3....4........
+.1.2...3.6...4.............3....1...8.....4.....7....2.24.8..........65..7.......
+.1.2...5.5...4.............3....1...7.....4.....6....2.24.7..........83..6.......
+.1.2...6.6...4.............3....1...8.....4.....7....2.24.8..........35..7.......
+.1.2...65..3.............2.7.8...3..5.....4.....1.....26...........43.......7....
+.1.2...65..3.............2.7.8...3..6.....4.....1.....25...........34.......8....
+.1.2...65..3.............2.7.8...3..6.....4.....1.....25...........43.......8....
+.1.2...7..8..6.3...........6...3.5...7......1.........3.5...6..4..7........9.....
+.1.2..3...8.5........6.8...6...7.4..4...1....5........39..............8........5.
+.1.2..5..7....3.............4.52....6......83....1.....5.4..2..3..........8......
+.1.2..6....2......7...........38..4.4......57...1......3....1..5....7.......4....
+.1.2..6....6......7...........38..4.4......57...1......3....1..5....7.......4....
+.1.2..6....9......7...........38..4.4......57...1......3....1..5....7.......4....
+.1.2..64.3...7..............46...2......3...7.........5..8........4...1.7.......5
+.1.2..7...9.5........6.9...6...8.4..7...1....5........34..............5........9.
+.1.2.7.........34....9...........297..8.3............6....8.45.7........2........
+.1.2.7.........53....9...........297..8.3............6....8.45.7........2........
+.1.26..........8.4......3..6.47........1..5..8..............71.3....4.......8....
+.1.26.7...45...............2..7...8........45............15....6.....3......84...
+.1.3.............2.......5.2.65.....4.......8...1..3..7...2..........73.....4.1..
+.1.3............52........6....4.81.7....2.........3..5.64........18....2........
+.1.3............56........2....4.81.7....2.........3..5.64........18....2........
+.1.3............75........2....4.81.7....2.........3..6.75........18....2........
+.1.3............76........2....4.71.7....2.........3..6.45........18....2........
+.1.3...........6.57.....9..9.5...8.....1.4......2......4.....2.6...9...........3.
+.1.3...........6.57.....9..9.5...8.....4.3......2......3.....2.6...9...........1.
+.1.3...........7.59.....8..8.5...9.....1.4......2......4.....3.7...8...........2.
+.1.3...........7.59.....8..8.5...9.....1.4......2......9.....3.7...8...........2.
+.1.3...........7.59.....8..8.5...9.....2.4......1......3.....2.7...8...........3.
+.1.3...........7.59.....8..8.5...9.....4.3......2......3.....2.7...8...........1.
+.1.3...........72...6.........1..65..3.8.....8........2...57.....4.2............1
+.1.3.........2.6...5....7.....1.4...6.....8.....5.....2...6...........19..3....4.
+.1.3.........5..2.........95.....3...7....1......2.......4..65.2.91.....8........
+.1.3.........5.6......8....2.8.....75..6...4........1....1..3..7.....8.....4.....
+.1.3.........6.7......2.......5...1.2.6......7.......38.....2.....4.3......15....
+.1.3.........7..2.4.....6...72.5............4......1..8..4.1..........75......3..
+.1.3.........8..4........7.4.5.7.........21..8.....3.....1..5.....6...8.7........
+.1.3........6...2.........6....2.1.87.35.....6........4...18.........35..........
+.1.3........6...5..48......7.....2..2......3.....1.........51.83..2...........4..
+.1.3........9..8..2........5.7.4......6..2..........1..3.19..........4.2......5..
+.1.3......4.....2.8......5.....52.7...1...9......8.......8..1.62..............3..
+.1.3.....4.......2...........2....47.3.5.......8......6.....35.1...76.........8..
+.1.3.....4.....7..............6...137....1.........2....328........7.4...6.....5.
+.1.3.....5.....6.........4..8....1.3....47......5.....4.2....7....1..2......9....
+.1.3...7.6.......2............1..34.2........5.........3.4..1......2.6.5....8....
+.1.3...8.5..7.....6........2.7...5......1.7......8.....84....3....5.6............
+.1.3..2...5.....7...4.............513..7.....8........26....7......45.......6....
+.1.3..5..6..........2........4.1...2...7...3.7..5......8...2...3.....7......4....
+.1.3..6.....2...7....5.....2...8..4.....1...5....6....7.9.....3......1..4........
+.1.3.4...6.....2.5..78......5.....4.9...2...........3.2.....9.....4.......6......
+.1.3.4.5..2....6..............1....36...2....8......4...8...2..5..4........7.....
+.1.3.4.5..2....7..............1....37...2....8......4...8...2..6..5........4.....
+.1.3.4.5..2....7..............1....37...2....9......4...9...2..6..4........8.....
+.1.3.6.5....1...4.......2..4...2.7........3......8.......8....12.9......7........
+.1.3.8.........4.2.........2..15......6.4...........3.....2.7...3.....8.1..6.....
+.1.3.8...5..4............2.....27.9..3...........6....6..5..4..2.7............1..
+.1.34...........29..........3..6.4..57...2......8........4..1..2.6......9........
+.1.37..6..9....2.....6..5..8....2..........1.........35...4....2.....9.....1.....
+.1.4............28........6...57.1..6.2....3.....4....2....6......1..7..3........
+.1.4............32............5.7.6..8....1..2...3....7.3..........6.5.....1..4..
+.1.4............32............5.7.6..8....1..2...3....7.3..........6.9.....1..4..
+.1.4............38....5.....5....4.....7..6.......3......6..14.8.3.2....7........
+.1.4............72.......3....6..14.3.5......2........7...3.........86.....1..5..
+.1.4...........27.......3..2..53.4.........6.....2.......6...813.9......7........
+.1.4...........58.......2...6......4.....8.......5......413....2..6..7..5......2.
+.1.4...........59..........5.3.8.......6...1.........48...5.2..9.....6.....1....7
+.1.4...........7.59.....8..8.5...9.....3.4......2......4.....3.7...8...........1.
+.1.4...........82..........3...89......5...14.........8...7.3....26........1....7
+.1.4..........62...........6...9........2.3..4......7.9.35........7...1.2.......9
+.1.4.........3..7.............1.45..7..2.....3......6.6.3.8..........4.9......1..
+.1.4.........5...2......5..5.3.2...........61....9.......6.7.4.8.....2.....1.....
+.1.4.........6...2......8..6.2.8.5........31.8...........1.5.4.2..7..............
+.1.4.........8.2..............7...412.9......6.....3...8.....1.5....2.......36...
+.1.4.........8.5........7..7..3.4......1...2.8........2...9...........34......6.1
+.1.4.........8.5........7..7..3.4......1...2.8........2...9...........43......6.1
+.1.4........2....4.7.......2......8.....7.5.......3...3.....75.4..6.........9.1..
+.1.4........2....4.8.......2......9.....8.7.......3...3.....85.4..6.........7.1..
+.1.4........3..2...87......5..2.3...6.......1.......8...5.1..6.4.....3...........
+.1.4........6....2......8..2.6....5.4...7..........1..6.......4....1..3....38....
+.1.4......73..........6..5..4.1..5..2......6....3...........7.16...2....8........
+.1.4.....2.5.........3.....1......346...57..........8.5...2.7........1...3.......
+.1.4.....3......5....7...3.2.6...4......1....5...........2.5....8....1...7....9..
+.1.4.....7......9........2...31..5..9................7....931...84...6......2....
+.1.4....5..8..3.......6....2..57...........1.3.........4.7........1..8..6.....3..
+.1.4...26.......4...5......42..7........85............6.8...5..3.....7.....1.....
+.1.4...3.4....8...............37..5.1...5....2.8.......3.6...........8.4......2..
+.1.4...7....8.1..........3.......1.42.7...............54....8..6...3.......72....
+.1.4...72...6.8............6.3...5......2..3.8...........3..6...2..7....1........
+.1.4..2....7.5...............5.73...4.....9......8....94.6............87...1.....
+.1.4..2....7.5...............5.73...6.....9......8....24.6............87...1.....
+.1.4..3..5.......78.........3....14.2...75................6..85.2..........1.....
+.1.4..5......2................1.46..7.2...1..3.........8.5.........7..2........83
+.1.4..5......2................1.86..7.2...1..3.........4.5.........7..2........43
+.1.4..5......6..7.............3..4.97.2......1............78.2.6..1......4.......
+.1.4..6.....7..8.....2..........3.27.6..............9.3...8.5..2.7..........1....
+.1.4..7........28..........2.8.5.........16....56......4......3....2..5.6........
+.1.4..7........29..........2.9.5.........16....58......4......3....2..5.6........
+.1.4..8.........6..........54.....3....19....3...8.......9..1.86....2.........5..
+.1.4.2.....3...8.....6.....6..1...2........1.5.........7..3.5........3.92........
+.1.4.8..........2........6....1..9..2....5.......6....6.2.7.......3..1..5.....4..
+.1.4.8....4.5............2.3...2.....5....4........1..2.7.6..3....1.....6........
+.1.4.8...6.....5.2.........2...6......7....4...3.......4.....8.....2.7..1..9.....
+.1.42........7..8...........2......7.....8.3.7..6.......3...2.......61..8..5.....
+.1.42....4...3.....5....8...7.6............41.......2....1..7..3....8...2........
+.1.43......8....7.....2.........752..4.......3........6.....3.4...9.2.........1..
+.1.46........8...2......3...6.5.9........32..7...........7...1.3.2......8........
+.1.46.....82.........3.....7.4..2...3.....5........1......1..7.4......2....5.....
+.1.48.5..6......3..........2..7...6..8................7.23..........91.8......4..
+.1.5............26....3.......8.1.5.6..7.....4.3......2...9..........4.3......1..
+.1.5............342......6..8....1......34.......7....6.4..5......1..7.....2.....
+.1.5...........63.....2....4.2.6........8...16......7....7.3...3.....2.....1.....
+.1.5...........8........7..2.3.7.........4..1....3..2..4.1...6.7.....3.....6.....
+.1.5..........2.3........474...7....2.8.........1..9.....6..8..3...4..........1..
+.1.5..........3.2........642..7.....6.4.........1..8..3...6..........7.3......5..
+.1.5..........3.7........6...56......3....8......7.2.....3..4.17...4....2........
+.1.5.........2...8......1..6.7....2....1....5...3.....7...6.4........39.8........
+.1.5.........2..7.........82...3.5..4.....6.1.........7.2....6....1..3.....8.....
+.1.5.........2.4.........6....1.3..54..7...........6..6.4.8...........312........
+.1.5.........2.7...5....8.....1.6...7.....9.....4.....2...7...........31..4....6.
+.1.5.........3..2.......7..6..1.8...7......3....4.....2.7.5..........1.4........8
+.1.5.........3.7..........6...3...1.7.......42..1.....6....72...3.....5.....8....
+.1.5.........4.3...8.......4.7.3..........8.53........2..6.5.........74....1.....
+.1.5.........4.6........3..6...3.4......7..1........2.3.9.........1.8...7..2.....
+.1.5.........6.8........3..6...3.4......7..1........2.3.5.........1.9...7..2.....
+.1.5.........7..8.........97...2.4..2.....5.1.........6.2....4....1..3.....9.....
+.1.5.........7.3...8.......7.4.3..........8.53........2..6.5.........74....1.....
+.1.5.........7.3...8.......7.4.3..........8.63........2..6.5.........74....1.....
+.1.5.........8...6..2......4...3..5..7....2........71.3.8......6.......4...1.....
+.1.5........2...7.....6..8...2..1.......34...7..............5.38..6.....3.....1..
+.1.5........7...6.9.......1.26.1..........78.......3..8.7...5..6...9.............
+.1.5........83..........92.2.4.6..........1.8.....7...7..1.4..........83.........
+.1.5........9...7.........24....9.8.....1.3......2....8.3...5.....6....17........
+.1.5.......9.....2......3..2.8....7.7.......4...3......3....15.....2.6.......8...
+.1.5......6....3....4.....72...63....5.....1..........3.....2.....48....7..1.....
+.1.5.....7.....8.....2.........8.17...2..3....5.......4...1....8......3....9....2
+.1.5....4......3.8......6....71.5...6.....2.....4.....3...6..9.....8...........1.
+.1.5....4......6.8......3....71.5...6.....2.....4.....3...6..9.....8...........1.
+.1.5....78...6..4...........7.9..3..4......2....1......9....1..6...4........2....
+.1.5...2....2..6...8..3....6.....7......8.....3.......4..7.6..........812........
+.1.5...2..64........7......3.....65.....41................7.4.12..8...........3..
+.1.5...436...2..............357...........62.......9..2....4......3....88........
+.1.5...6..72.....................3.79..4...........2..6...3..15....27........8...
+.1.5...6..82.....................3.87..4...........2..6...3..75....28........9...
+.1.5...7..82.....................3.87..4...........2..5...3..61....28........9...
+.1.5...7..82.....................3.87..4...........2..6...3..15....29........8...
+.1.5..4........29..........2.9.6.........17....68......4......3....2..6.7........
+.1.5..4..2...7.............6......2845.1........3.........62.7..3....1...........
+.1.5..6........2.1......4..7.48........1.....2.........6..7..3.....2..5......4...
+.1.5..63.4....8.............63...5......24............2......74...61....7........
+.1.5..8........29..........2.9.6.........17....67......4......3....2..6.7........
+.1.5.4....4.1............2.3...2.....5....8........1..2.7.6..3....4.....6........
+.1.5.4....4.1............2.3...2.....6....9........1..2.8.7..3....4.....7........
+.1.5.4....4.6............2.3...2.....5....4........1..2.8.7..3....1.....7........
+.1.5.4....4.6............2.8...2.....5....4........1..2.9.7..3....1.....7........
+.1.5.4....4.6............7.8...2.....5....4........1..2.9.7..3....1.....7........
+.1.5.64..8............9.......72..9.3.4.......6......7...1..6....2......9........
+.1.5.8...3.....7.2.........2.6.3.......4...1.7.........5.....8.....2.6.....1.....
+.1.5.8...3.....7.2.........2.6.3.......4...1.7.........8.....5.....2.6.....1.....
+.1.5.9..........4....6.....96..7....4......2....8..1........5.67....2.......4....
+.1.53....46....2........8...7.....1.8....2..........6.2.....4.....67.......1.....
+.1.56........7..2..3.......4..62.....5....1.........8.7.8.........3..9..2........
+.1.57..........2.8.6.......8.4..2......9...1.2...........69..7.3.....4...........
+.1.57.3..6......4..........3..2...8..7................4.26..........91.7......5..
+.1.58.6..7......4..........3..2...7..8................4.23..........91.8......5..
+.1.6.............4.......8....5..21.4.87.....3........2.....6......4...2....3.1..
+.1.6............47......5..2...74.........83.....9.......1..6..7.9......4..8.....
+.1.6...........47.......2.....3.1..54...2.....8..........8....17.....3..2......4.
+.1.6...........7.4......5..5..3.8...4.....2.....1.........9..162...4...........3.
+.1.6...........83...............5.149...2....8...7....2.....7.....1....5..94.....
+.1.6...........83...............5.149...2....8...7....2.....7.....1....6..94.....
+.1.6..........47........3..2....3....8.....6.....9..1.7..5..2.....18....3........
+.1.6..........49........3..2....3....8.....6.....7..1.4..5..7.....18....3........
+.1.6.........3.4...8............15.87...2....3........4..3..6.....5.8..........2.
+.1.6.........4..2.........8...58.7.12..............6..4.7....3....1..5..3........
+.1.6.........4..2.5.......92...8.......7..6........1....21.9....4.....8.......3..
+.1.6.........4..7.............1.32..5.42.....7......8....4....28...7..........3..
+.1.6.........5..7..........5...27.4......8.........6.....1..3.68..3.....7.4......
+.1.6.........5.2...........5.2.3..4........71....8....3..1.4...6.....8.....7.....
+.1.6.........7..4.........86...3.2..4.....6.1.........7.2....3....1..5.....8.....
+.1.6.........7..8....3............364...2..........5.1...1..2..8....5...7.9......
+.1.6.........7..8....3............364...2..........5.1...1..2..8....5...9.7......
+.1.6.........7..9....3............364...2..........5.1...1..2..7....5...8.9......
+.1.6.........7..9....3............364...2..........5.1...1..2..8....5...7.9......
+.1.6.........7..9....3............364...2..........5.1...1..2..8....5...9.7......
+.1.6.........7.2...........5.2.3..4........91....8....8..1.4...2.....3.....9.....
+.1.6.........7.2........4.....1.3.5.4.....7..2........7.8.4.......5...31.........
+.1.6.........7.2........4.....1.3.6.4.....7..2........7.8.4.......5...31.........
+.1.6.........7.8........2.....5...137.8.4................1.3.5.8.....4..2........
+.1.6.........9..8.............3..7.1....8.6..9...........1.23..8.9....5.4........
+.1.6........43.....5.......2.....57.4..3.........8.1..3......4.....5.7.......2...
+.1.6........43.....5.......2.....57.4..3.........8.1..3......6.....5.7.......2...
+.1.6........43.....5.......2.....58.4..3.........7.1..3......4.....5.7.......2...
+.1.6........43.....5.......2.....58.4..3.........7.1..3......6.....5.7.......2...
+.1.6......3.....9.....8..4.8...5............1......7.....1.72.....3..6..4......5.
+.1.6.....3.....7..............5...617....1.........2....628........7.3...5.....4.
+.1.6.....9.......7.......8....2..16.8.73.....4.............49..5...8..........6..
+.1.6....4.......2.......3.....7...163.5......8........29....5.....14.........3...
+.1.6....48.....2.....1......64............35..........5.7.8..3.3...2............6
+.1.6....8...2...7.53.......4......2..5..1........3....7..4.....2.....9........1..
+.1.6....8...2...7.53.......4......2..5..3........1....7..4.....2.....9........1..
+.1.6...378...4....5......1.2.....8.......1......3.........8.2...3.7......9.......
+.1.6...5..7..3..............6.5.7.........4.8......3..2......1.4.....7..3..8.....
+.1.6..4..37.5.....2.........84...1.....32.................4...75......3......1...
+.1.6..45..3.....7.......2...6.4....85...7................1....37...3....2........
+.1.6..45..3.....8.......2...7.4....95...8................1....38...3....2........
+.1.6..7.....78..5.9.........7.1.2....4.....8..........8.5.4..........1..3........
+.1.6..7...52......................258......9....3.....6...42......15....7.....3..
+.1.6..72.3..................2..7........3...8..6....5.4.8.....3...2..4..5........
+.1.6..82.7..3..........4...4.6..........9..5.3.........5..2.......8....4......9..
+.1.6.3.......7..94.8........5.1..3..2......7.............8..1..9...2....7........
+.1.6.3...4.....8.2.........2.7.4.......5...1.8.........3.....6.....2.7.....3.....
+.1.6.3...4.....8.2.........2.7.4.......5...1.8.........3.....9.....2.7.....3.....
+.1.6.3...4.....8.2.........2.7.4.......5...1.8.........6.....3.....2.7.....3.....
+.1.6.37..64.1.....2.....5....8...3.....41....................46..7.5.............
+.1.6.4......2..3.8.........5....2....4.....6.....3.7......8..4.3.7......2........
+.1.6.5.......7..2.............1.35..7.2....4.8..............6.1...82.....4.......
+.1.6.5.......7..2.............1.36..2.7....4.8..............5.1...42.....9.......
+.1.6.5.......8..2.............1.37..2.8....4.9..............5.1...42.....6.......
+.1.6.5....5.7............3.8...2.....6....5........1..3.9.8..4....1.....2........
+.1.6.5...4.....8.2.........2.7.4.......5...1.8.........3.....9.....2.7.....3.....
+.1.6.9......7...5..8.......5.3....8......42..7..............9.1...53........7....
+.1.62..5..2.............7..7.9..8...8.......3.......1..6.1.....4.....8......5....
+.1.65...........4....9.....9.2......7..3.....4......2..3...86......24.........1..
+.1.67..........2.8.7.......8.4..2......9...1.2...........75..9.3.....4...........
+.1.67.4..2.......8.3.............61.....82.......5.......3..1..5..4.....8........
+.1.68.........524..........38.....7.....52...........62.5...3.....1.....4........
+.1.69..........8.7...4.........37.9.86.............5..7.38............6.2........
+.1.7.............5.......8....6..31.5.82.....4........2.....7......5...3....4.1..
+.1.7............32....8..6......14..8...3...........8.3.6.........1..7.....4..5..
+.1.7............5........3....3..8.15..6.......9.......3...42..7...9........5.4..
+.1.7............82.........2.81........5..7..4.........5...31......4.5..6...2....
+.1.7............94.........3...4...8...6..2...........4.9....3....1.67..5..2.....
+.1.7...........2.3........5....2.4..8...3...........1....1.7.3.6..4.....5.2......
+.1.7...........2.5........66.4.5.......3..81.2...........1...3.5...6.........8...
+.1.7...........24..........2.4...3.....1.5...3..6........5...818...2............6
+.1.7...........24..........2.9...3.....1.5...4..6........5...819...2............6
+.1.7...........34........6......643....52.....75.........8..7.13........6........
+.1.7...........34........6......643....52.....75.........8..7.14........6........
+.1.7...........4.2......8..4...32..........7.....4....5..6..3..2.9.........1...6.
+.1.7...........48........3.8......6....1..3....52..........52.13...6........8....
+.1.7...........48........3.8......6....1..3....92..........52.13...6........8....
+.1.7...........48........3.8......6....2..3....51..........52.13...6........8....
+.1.7...........48........3.8......6....2..3....91..........52.13...6........8....
+.1.7..........32..............6...18....5..7.2........6.8...4..4...7.......51....
+.1.7.........3.5...........8.5...7..3....2......1...9.5..4...........6.2.......19
+.1.7.........3.5...8............16.83...2....4........5..3..7.....6.8..........2.
+.1.7.........4.3..............5...763.8..9...4........1..2.........3.8...9....6..
+.1.7.........5.4..........34..3.....2.....5.....1...8.5...2.6...3.....7......4...
+.1.7.........8..2.4.....6...82.5............4......1..7..4.1..........85......3..
+.1.7.........8..9.............3..2.1....9.7..5...........1.26..8.9....5.4........
+.1.7.........9..4.............3..2.1....8.7..9...........1.26..8.9....5.4........
+.1.7.........9..8.............3..2.1....8.7..9...........1.26..8.9....5.4........
+.1.7.........9.5...........8..1.3...5.....4.....2.....4.7.6.....6.....31.......2.
+.1.7........5....3......2..3......75...68.........2...5.3.4..........81.7........
+.1.7......39.........4..5.........317..6.....4...8....2.....6...5..1...........4.
+.1.7.....2......3..........5.....4.73...18.........9....74.6.......3..2..9.......
+.1.7.....5.....2.............7.8..9......21...4..........49..7.2.......81..6.....
+.1.7...268...3.............7.62...........41.........95.....8...4....5.....6.....
+.1.7...6.4..2...............6..8.5........4.2..3..........65.8.2.7......1........
+.1.7..3........9.2..............2..4....5..8..7.....6.9.2...7.....6...4.5........
+.1.7..5........4.2......8..3.8......2..6........1.7...8...4........3..6........1.
+.1.7.3...4.....8.2.........5.2.4.......6...1.8.........7.....6.....2.5.....3.....
+.1.7.6....8.....2........3..6.4..7..4...2..........1..3.5......2...5.......1.....
+.1.7.6...3.....4..............2..8..5...3....4.....9...26.....1....4..5........3.
+.1.7.8...2.....3.....6.......73......4....2......4.5..5...2......6....7........1.
+.1.7.8..94..6...........2..6.......7....25................3.52.7..4............3.
+.1.72........8..5..9.......6..1..2..5..3.....8......4..3....1..4...5.............
+.1.73....5.....9............8..2....63..........4..2.........837....5...4..9.....
+.1.76....58....3........4..6...3.....2.....1.............1...2.3.....6..4..9.....
+.1.78....5......23.............23.6..7....1...........243.........1..8..6........
+.1.79.....26...3...........5.....17......2.8.....6....4.5.....63..1..............
+.1.8.............6.......9....7..31.6.92.....5........2.....8......6...4....5.1..
+.1.8............2.......4.....6..3.12.7......4........5...43.......1...8.....2.7.
+.1.8............2.......7..6...3..1.3...7............87.9...3..4..2........1....5
+.1.8............35............16.8....27.....3........5...43.29......1......5....
+.1.8............4........3..7..3.5........8.1..6..4...2.4.6.......5..7..3........
+.1.8............46.......3....28.1..4...7....3...........6.32..7.4.5.............
+.1.8............56......43.36..5.......7..2..4...........2..7.15...3.............
+.1.8............72.........3...2...5.6...5.........4.....4..19.2.53.....7........
+.1.8...........2.3.........6.4.2....3......8....7....12...436.....5...7..........
+.1.8...........2.5........77.4.5.......3..61.2...........6...3.5...7.........8...
+.1.8...........2.5........77.4.5.......3..61.2...........6...3.5...7.........9...
+.1.8...........2.5........77.4.5.......3..81.2...........6...3.5...7.........9...
+.1.8...........4.2......7..7...32..........8.....7....5..6..3..2.9.........1...6.
+.1.8...........46........3.7.6.........2.....4........6..534.......6.2.......7..1
+.1.8...........62.............4...816.2..5...3...7....5...6.2.....3....8.........
+.1.8...........75.......3...6..2...87....3..........1....16....5..2.....3.....4..
+.1.8...........94..3........5.13....4......7.....6.2..2....7...9....2...........1
+.1.8..........3.9...7....4....29..5..8....7...........3..6..8..9...4..........1..
+.1.8.........3.5...7............76.13...9....4........5..3..4.....6.1..........2.
+.1.8.........3.7........4..5...7.3.6....9..1........2.6..2.....7.9.........1.....
+.1.8........2...7.......9..7......4.....93.......1....2..6..3..5...4..........18.
+.1.8......2.....6........484...6........5.7........1..6......3.3..1........2..5..
+.1.8.....2.....3.....5......5.1...4...3...6......2....7...36.......7...5.......8.
+.1.8.....6......5.....7.4..7.4...3..2..1..........5...4...3.......6...1.........8
+.1.8.....7.....5........3..48......1...23........5....2.3.........4...6.57.......
+.1.8....554....6.....3...7.7.3....9.....41.............5....1..2..7..............
+.1.8...2........3........9....12.7..9...5....3.....4...2.5..6..4....3............
+.1.8...3..52........9......1..67..........9.28........4......6.....59.........3..
+.1.8...6.....2.5..4..........3...2...6.1..............2.5.4.......9...817........
+.1.8.3...5......46.........2...6.....73...........9...6...4.......7..3....8...1..
+.1.8.9.6....1...........3..3.2.4..........81.4........7...32....6.9..............
+.1.83....2......6......4.5..8.9..3.....1.6................9.8..5.4......6........
+.1.84..........35..........6....52...8..1.........9...2.37............415........
+.1.84....6.....2..............5.26...9.....3...8.7....2..6.7..........81.........
+.1.89....6.....3...........7..2.........4...98......1..43......19..........7..5..
+.1.9........3...2.......3......8.51.3...2......4.....96..7....52.....8...........
+.1.9.....7.....5........3..48......9...23........5....2.3.........4...6.57.......
+.1.9.....8......3........2...41..6..2................8....241...95...7......3....
+.1.98...........43..........5...49......6.1......3.......7..59.6..2.....3........
+.12...........4.3......7...6..1.....3...5..........1...8....2.4...6..5.....37....
+.12...........4.3......8...6..1.....3...7..........1...9....2.4...6..5.....38....
+.12...........5.3......8...6..4.....3...1..........1...2....7.5...6..4.....38....
+.12...........7.3......5...6..4.....3...1..........1...8....2.5...6..4.....37....
+.12...........8.3......4...6..1.....3...7..........1...9....2.4...6..5.....38....
+.12..........6.3.............41........2.8...3.....5.....4...815...3....67.......
+.12..........69............6...37...8......52......1...7.2..9..9......3....5.....
+.12..........7.4.............51........3.2...4.....6.....5...316...4....78.......
+.12.........3...9..5.......73.....5.....1.2..9........8..9...........1.4...7..6..
+.12.........4...8...5..........215..4....6.3...........6....2.....38....3..7.....
+.12.....4.3.....1.......7..4.....8..7..3........1............235...8.....4..6....
+.12.....5.6..3..4.............5..1.23...9.............4.7...3..8......9....1.....
+.12.....6....375...........4.....37...81............9....21....73.......5........
+.12.....7....3.8..4....2...6.....35....7...6....1......4......13...5.............
+.12.....7....3.8..4....2...6.....35....7...6....1......4......13...6.............
+.12.....8....3.4..6....2...7.....35....8...7....1......4......13...5.............
+.12.....8....3.4..7....2...6.....35....8...6....1......4......13...6.............
+.12....3....64.............6...5.4.....3..2........7.....2...1.4...7....58.......
+.12....5....93...8.........4...6.......8...2.......1.......17.93.....6.....5.....
+.12....6....4..8...7.......5..6...2......5..1.4...........1...73.....6..8........
+.12....6....4..8...7.......5..6...2......9..1.4...........1...73.....6..8........
+.12....8..8..........3......4.6..7..6..5..3................8.1.9...2....3.....6..
+.12....9....53.............54......3....8.7....6..2........1.2.3..6...........1..
+.12...4.....53...8.........6...72...5......3......1...3..8......7.4...........1..
+.12...6.......4.5....7.....7..3.5.........1..4........36.....7....12........8....
+.12...6.......4.5....7.....7..3.5.........1..9........36.....7....12........8....
+.12..5......3...7..........7..84....3.....9........1...9..12...6..5...8..........
+.12..7......3...5.........85..84..........1..4............129..87.....6..........
+.12..8.........45...........6....1.24..3........7.....5.7....3.3..4.........1....
+.12..8.......5..3..........34.6...7....1.26...........9..4.....5...3..........1..
+.12..8.......5..9..........34.6...7....1.26...........9..4.....5...3..........1..
+.12..8......3...6..........7..59....4.....8.2......1..65.....3.....2.......7.....
+.12..8......3...9..........64.....3.....1....3........4..75..........8.2...4..1..
+.12..9......6...4.........36..43..........1..4............128..76.....9..........
+.12.3..........96..........8.96.....7......4.........1.5.8.........1...26.....5..
+.12.4.......2..3.6.........6..8.3...4.....71...........5..1..2.3.........7.......
+.12.4.......2..3.9.........6..8.3...4.....71...........5..1..2.3.........7.......
+.12.5.......2..4.7.........7..4.3...5.....81...........6..1..2.4.........8.......
+.12.5.......6..8...........7.....68.6....9.......1.....9.....218..3........7.....
+.12.5.....8.3..6........7...9.....417..6..............6.....3......1..8.4........
+.12.6..........4.3.........59..3...........21...5...8.3.6...7.....1.....4........
+.12.6.7......54...............2..1..5..3.....67..........8...2.4.......5.......3.
+.12.6.8....5.47...............1...2.4.......7.....5...94..........2..3..7........
+.12.8.......9...3.............7..1.294.6...........8..3......6.6....5.......1....
+.12.9..........76..........8.96.....7......3.........1.4.3.........1...26.....8..
+.12.9.....8.3..5........6...9.....416..5..............5.....3......1..8.4........
+.12.9...3...2...4..5..........4.38........69....8.........1.5..3........4........
+.123............45.......8.5...84....3....2......6....7.....6..4.8.........1.....
+.123............86.......4.6...84....3....2......5....7.....5..4.8.........1.....
+.123...........5.4......7..7...54....3.....2.....9....8......6.5.4.........1.....
+.124............38...6.....3.8.7....5...8..........1...6.1..4..7......2..........
+.124...........35..........3.5...76....8.1...6.........4......27...5........3....
+.125.........4.7.8..........6.2...5.3...7.4............5.6...1.8........7........
+.125.........8.6............7.1.2......7..3........8.63...5.4.........1.8........
+.125..6......4.....8.......4.7.8.........21..3...........1...3.7.......4.....6...
+.125..6......4.....8.......4.7.8.........21..3...........1...3.7.......4.....9...
+.125..6.....34.............9......3......1.......7....86.4...........1.24......7.
+.126...........2.3......7..5..28....37..................8....1.....34......5.7...
+.126.........4.7............6.4.1......2..3........8.73...8.5.........1.8........
+.127............93.........3.65....7.....1...9.........4....12.8...3..........4..
+.128..........7.3.5........3...5..7....1..4...........7...36....4....2..........1
+.1287.......4...........3..3..9..6..57...........2....6....5..........21.......7.
+.13.............82.9.......6..7.2......9..3.........1.7...5...6...81..........2..
+.13.........24......5............13.8...2..........7.....1.35...2.6.....4.......8
+.13.....4...2.6......5........9..1.82.....3..6.........8..3....9......2........5.
+.13.....6....2.4..5...........3...512...4.............4.....92..8.7..........1...
+.13.....7...9......6.......9...7...65..2............1.8.....29.....13.........4..
+.13....4....68..........2..6.8....5.....1....5........7..8.2....4.5...........8..
+.13....5....7....8.........8..5...........91.2...........41.3...9..5....6.......4
+.13....6......4..7....5....7.5...2.....1.....4........86..9..........31....8.....
+.13...5.....6...4..............13..862...........5....4......237..9...........1..
+.13...5.....9...4..............13..862...........5....4......637..2...........1..
+.13...6......45............54.....2....3.....7........25..7.......6..3.8......1..
+.13...7......46............54.....2....3.....6........26..5.......7..3.8......1..
+.13...7......68............65.....2....3.....8........26..7.......4..3.1......4..
+.13...7.....52.4...8...........1..8.9.....6..2.........5.4.....7..6............1.
+.13...7.....8..5...2.......8..61....9.....4.3....2......6....1.4..9..............
+.13...8......57............65.....2....3.....7........27..6.......4..3.1......4..
+.13...8......67............65.....2....3.....7........27..5.......1..3.8......4..
+.13...8......76............65.....2....3.....7........27..5.......4..3.1......4..
+.13..8....7....25...8......6..24...........61....5.......3.1...2.....4...........
+.13.4.......2..5...........5..78...........167........64....8......31......9.....
+.13.4.......2..7...........5..78...........162........64....8......31......9.....
+.13.4......72..............5.....2.8.6..31...........9......31.2..8............4.
+.13.7......72..............5.....2.8.6..13...........9......31.2..8............4.
+.13.7......72..............5.....2.8.6..31...........9......31.2..8............4.
+.13.9..........52..............1.6.35......7..4.........83..1..2..7.5............
+.13.9.......8...265........2......8.....1.3...4.6.....7..2...........1......6....
+.13.9.......8...275........2......8.....1.3...4.6.....6..2...........1......5....
+.132...........45..........4.7.....35..8...........1......51...6......8..2..3....
+.134.......6....2.........72.......675..........1...........31.8...7........5.4..
+.135.........2..6..........6....8.7.2...........3.....72..4..........3.1...8..5..
+.135.........2..8...........4....1........3.58...9.......1.34....7....6.2........
+.135.........6..8...........4....1........3.58...2.......1.34....7....6.2........
+.135.........9.4...6.......4....37.....1....9.2..........6...1.8...4....2........
+.135..6........2...9.......2...7..8....1...9.8........4....8....5......1....4....
+.136.........5.7...........5...4..........68........3.7.....5.2.6.3.8......1.....
+.136.........5.8...........2...4..........47........3.8.....5.2.6.7.3......1.....
+.136.........8..4..........72..4....8.....6.....9....3.5.1..3..4......7..........
+.137...........64..........62.....8....3....15...7.......5..3..4...6.........8...
+.137...........64..........62.....8....3....19...7.......5..3..4...6.........8...
+.138...........29...........6..49.......7...39.....1..7.8....6....1.....2........
+.138...........45..........4.7.....35..9...........1......51...6......9..2..3....
+.138....7.......9...6......2...4..........45..7..9.......3..6..4....5...9........
+.14..........32...............45..1.76.1.....2...........81....3.....2........6.9
+.14..........5..3..8..........8..49.5.....1..6...2....2..9....6...4.1............
+.14..........7.3...........36..2.......5...817..........24.8...4.....6.....1.....
+.14.........2...4..3...........1.2.........656........8..6.4......7..3..2.......1
+.14.........2..8...3..........513.........7.2.....4...6...8...........342......5.
+.14.........3..2...9.......5..6..7.........1.....4....3.....6.28..5.1.......9....
+.14.........3..5...8.......2..6..7.........1.....4....3.....6.27..5.1.......8....
+.14.........5..9......2.........421.5...6.....3.....8.6.7.....5...1.....2........
+.14.........6...2..........5......3......18..2.........7....1.4...59.6.....2....7
+.14.........6...3.78.......5..2.7...2.....8..........13......9.....1.4.....5.....
+.14.........6..8...........2.....53.8....7.......1......53...4167.2..............
+.14.........7...3..6....2..78.....9......4..7....6........1.6..8..9.....2........
+.14.........7..2...........26..3.......5...417........3.....6......8..3...9..1...
+.14.......7.6.........3.9.....4....18...2..........53.3.....28......1......7.....
+.14....2.3..5..7.................3.5.8..4.........1...5.36.........2..1.7........
+.14....5....3..7..95...........4..1836.9..............2.....9.......1.......5....
+.14....5...2.3...........1.7..5.6.........8.1...1.....3.....2...7.6.....8........
+.14....6......7..2....5....7.5...3.....1.....2........86..9..........41....8.....
+.14....6......8..3....2....7.5...2.....1.....9........86..9..........41....3.....
+.14....7......8..3....2....9.6...2.....1.....5........87..9..........41....3.....
+.14....8.....759..............1...4873.........2......5.....7..3..4.........2....
+.14...2.....6.3..........8..2..15...7...8...........6.3.6...5.....1.....5........
+.14...5......2...9.7.8.....65.9...........14..............71...2......8.3........
+.14...5......7.6..........278....2.....1.4......3.....2..53...........1.6........
+.14...5.....6...2.....7.........14.8.3.......7........2..76......5...1.....3.....
+.14...5.....6...2.....8.........14.7.3.......8........2..87......5...1.....3.....
+.14...7......23............53.....2....4.....2........36..5.......7..4.8......1..
+.14...7......23............63.....2....1.....2........37..6.......8..4.1......5..
+.14...7......26............65.....2....4.....2........36..5.......7..4.8......1..
+.14...7......26............65.....2....4.....2........36..8.......7..4.9......1..
+.14...7......39............65.....2....4.....2........32..6.......7..4.8......1..
+.14...8......27............76.....2....4.....2........37..8.......5..4.1......5..
+.14...8......27............76.....2....4.....2........37..9.......5..4.1......5..
+.14..9.........3.8.2.......7...3...9.......1.....5....8..1...9.5.....7.....2.....
+.14..9.........3.8.2.......7...3...9.......1.....7....8..1...9.5.....7.....2.....
+.14.2.......5..3........8...2..1.6......74...5........3..8........9...7........1.
+.14.2.......5..3........8...2..1.6......74...9........3..8........9...7........1.
+.14.2.......7..3...8.......6..3.5...9......8.........1....1..4.3.....6.....5.....
+.14.5..........23............6....415..2.7......3.....28....7......4.......6.....
+.14.5..........39.......6..2..3...8..5.4......7...........7...13..6.....9........
+.14.5..........63..........3.....2......1...4.8.7.....5..6.2...7......1....3.....
+.14.6..2....5..3...........3.8...5.........1.5...........341...62....7...........
+.14.7..5..5.6..8...........9..8..3......1....3.........2...4.1.6..3..............
+.14.7..5..5.6..9...........6..8..3......1....3.........2...4.1.8..3..............
+.14.8..........53..........3.....2......1...4.9.6.....5..2.3...7......1....8.....
+.14.9.......7..6...2.......6..8...4.3......2.9..3.........21.........7.3.........
+.143...........27...........9..57.......9...47.....1..9.8....5....1.....2........
+.143...7..7...........2....5.....2.6...4.3.........8..2...6.......7.1...8........
+.145......2.....68...........34.....6...2.............7...86...3.....45.......1..
+.145......6.....78...........34.....7...2.............2...87...3.....45.......1..
+.145..3.......6.8..........6...72....3.4..1..8...........31....2......6..........
+.146...........3.8..7......8..3.2...25.9............4.9.....2......1...........1.
+.146.......8.1...........5.2.....63.57...........4..........1.49..2........3.....
+.146...7.......3...9.......2......453...9........1.....2....9..8..5........4.....
+.147...........2.8.........3....26.........1.2..........541.7..89....3...........
+.147...........63..........5.7...2..3...6.........1...68.2............14....9....
+.147.........3.5.6.........3...9.2...8.....4.5...........1.4...2.....3.....8.....
+.147.........3.6.5.........6...9.2...8.....4.3...........1.4...2.....3.....8.....
+.147..6......9.....8.............8.19...2....3.........5.8........5...9.2......6.
+.147..8......9.....7.............7.19...2....3.........5.1........5...9.2......6.
+.148............36.........65..2..........4..3...........4.38..2......5..7.1.....
+.148.........2.3...........5.....2....71.........3....36....9.....4...1.2....5...
+.149.........2..3..........5...3...8...4..9........1.43....6.7....1.....2........
+.15..........32.............4.5...1.......78.3........2..4....6...1....37.....2..
+.15.........3..2...9.......6..4...........79.........12....5.8.....7.3......19...
+.15.........3..6...9.......6..4...........79.........12....5.8.....7.3......19...
+.15.......2....6......3.7.....1.8...7.....4.....3.....2...4.......5...1........28
+.15.......4....5......2.7.....1.8...9.....3.....6.....2...3.......5...1........48
+.15.....8...24.....3............1.3.4......1.6...2.....8....9..9.....2.....1.....
+.15.....8...24.....3............1.3.4......1.6...9.....8....9..9.....2.....1.....
+.15....2....2..3....9......7.....83.....91............4...5...16..3......7.......
+.15....2....2..3....9......7.....83.....91............4...5...16..8......7.......
+.15....6.......2...8.......2.....37.3..1........8.....4..53.....6......1....7....
+.15....6.......2...8.......3.....47.2..1........8.....4..53.....6......1....7....
+.15....6.......2...8.......3.....47.4..1........8.....2..54.....6......1....7....
+.15....6.....42.............8..3..........4.2...5..7..6.2....3.7....4......1.....
+.15....6....4..3............2..6..517..3..........4...3..2.....4.....8......1....
+.15....6....4..3............2..6..517..3..........4...4..2.....3.....8......1....
+.15....7....2..3....9......7.....23.....91............4...5...16..8......7.......
+.15....7....2..3....9......7.....82.....91............4...5...16..3......7.......
+.15....7....2..3....9......7.....83.....91............4...5...16..3......7.......
+.15....9..8..3.7...........3.....6.....1.5......4.....6..97....2.......8.......1.
+.15...2..2.7..........8...46..4.2..........1....6.........15....4....6..3........
+.15...3...7.2.8............28.4.........5.1...........3..6...4.8......2.....1....
+.15...4..6..3.8.....7......2......38...74...........6.....5.9..86................
+.15...8.....2.........7....6...3..27.....1.4..........743...........81.....6.....
+.15..34.........2..3.......4.6....8.2..7.........1....7..2...........5.1...6.....
+.15..34...2....7.....8........21....3.......86............4.5..8..6............1.
+.15..8..........46.........32.7........4...51.............1.3..6.....2..4.7......
+.15.2.......6..3........4...2..1.7......85...9........4..3........9...8........1.
+.15.2.......6..3........9...2..1.7......85...3........4..9........4...8........1.
+.15.2.......7..3........9..3...6.8......15....9.......4..9........4...2........1.
+.15.2.......7..3........9..3...6.8......15....9.......4..9........4...6........1.
+.15.2.......7..4...8.......6..3.4...9......8.........1....1..5.3.....6.....4.....
+.15.3..6....2....7.......2.6.27...........1..4.........3.8.........1.5..7........
+.15.3..6....7....8.......2.6.28...........1..4.........3.4.........1.5..8........
+.15.6.......4...2..8.......2.....47.....51............6.....1.53..7...........8..
+.15.6.2....7...8...3.......4.....9.....8........7.....8..4....7....1..3......2...
+.15.7.........43...........8..1.........5.4...6....5..3....6.1...4.....7...2.....
+.15.8...........39............6.1...3..9.......8...1..6..2.....94...........7.5..
+.15.8..........94..8.........351..........76..........6..2.4...4....7...........1
+.15.8..9.....4.2...........4..3.6......2...1..............1...52.....6...8.9.....
+.15.9..........76..9.........351..........48..........6..2.4...8....6...........1
+.152............73..4..........4.1..8......6.....1....2..7.8...36.............5..
+.152............83..4..........4.1..7......6.....1....2..7.8...36.............5..
+.152............86..4..........4.1..9......3.....1....6..8.9...37.............5..
+.156.........4..7...........3.1.5..........24...3.....4.7.8....8.....6........1..
+.156....2...5...8........3..6.1..5..4...7.............8...34.........1......8....
+.158............23.........73..2..........5..2...........5.48..3......6..6.1.....
+.158............23.........76..2..........5..2...........5.48..3......7..7.1.....
+.158......6...3.9...7......4...96.........7.1....2....9......6....1..5...........
+.158....3.......6..4..........92..5.3...6..........2.....1..4..2....8...6........
+.158....9......4...8.......3...4.......92...........854.....2..6......1....5.....
+.159............28.........86..2..........5..2...........5.49..3......7..8.1.....
+.159......9..8.2.....6.....8...2..4........193........2.....3...4.1..............
+.16..........2.9....5.7....83..............16.......4.2..4..7.5...1...........8..
+.16.......5....6......3.9.....1.2...3.....4.....8.....2...7.......6...1........58
+.16.....5...2..3...8...........6...12..7............4.4.....72.....81...6........
+.16.....8...74.....3............1.3.4......1.2...5.....8....7..9.....2.....1.....
+.16....4.3..2..5............4.....182..3......6...........18...7.....2......4....
+.16....7.......2...8.......2.....34.4..1........8.....5..63.....7......1....4....
+.16....7....2..3....9......8.....54.....91............5...6...12..4......3.......
+.16....7....2..3....9......8.....74.....91............5...6...12..4......3.......
+.16....8....2..3....9......8.....24.....91............5...6...17..3......8.......
+.16....8....4..3...2........8.....124..5..............5..98....7.....5......1....
diff --git a/sudoku17.49151.txt b/sudoku17.49151.txt
new file mode 100644
# file too large to diff: sudoku17.49151.txt
diff --git a/sudoku5.hs b/sudoku5.hs
new file mode 100644
--- /dev/null
+++ b/sudoku5.hs
@@ -0,0 +1,17 @@
+import Sudoku
+import Control.Exception
+import System.Environment
+import Control.Parallel.Strategies
+import Data.Maybe
+
+main :: IO ()
+main = do
+  [f] <- getArgs
+  file <- readFile f
+
+  let puzzles   = lines file
+-- <<solutions
+  let solutions = map solve puzzles `using` parList rseq
+-- >>
+
+  print (length (filter isJust solutions))
diff --git a/timeout2.hs b/timeout2.hs
new file mode 100644
--- /dev/null
+++ b/timeout2.hs
@@ -0,0 +1,20 @@
+{-# LANGUAGE DeriveDataTypeable #-}
+import Control.Concurrent
+import Data.Unique
+import Control.Exception
+import Data.Typeable
+import Control.Concurrent.Async
+
+-- <<timeout
+timeout :: Int -> IO a -> IO (Maybe a)
+timeout n m
+    | n <  0    = fmap Just m
+    | n == 0    = return Nothing
+    | otherwise = do
+        r <- race (threadDelay n) m
+        case r of
+          Left _  -> return Nothing
+          Right a -> return (Just a)
+-- >>
+
+main = (timeout 200000 $ timeout 100000 $ timeout 300000 $ threadDelay 1000000) >>= print
