diff --git a/gfx/thebes/gfxFont.cpp b/gfx/thebes/gfxFont.cpp index d0b747fff15e..ff38c9491e7c 100644 --- a/gfx/thebes/gfxFont.cpp +++ b/gfx/thebes/gfxFont.cpp @@ -724,10 +724,9 @@ gfxShapedText::SetGlyphs(uint32_t aIndex, CompressedGlyph aGlyph, #define ZWNJ 0x200C #define ZWJ 0x200D static inline bool -IsDefaultIgnorable(uint32_t aChar) +IsIgnorable(uint32_t aChar) { - return GetIdentifierModification(aChar) == XIDMOD_DEFAULT_IGNORABLE || - aChar == ZWNJ || aChar == ZWJ; + return (IsDefaultIgnorable(aChar)) || aChar == ZWNJ || aChar == ZWJ; } void @@ -743,7 +742,7 @@ gfxShapedText::SetMissingGlyph(uint32_t aIndex, uint32_t aChar, gfxFont *aFont) DetailedGlyph *details = AllocateDetailedGlyphs(aIndex, 1); details->mGlyphID = aChar; - if (IsDefaultIgnorable(aChar)) { + if (IsIgnorable(aChar)) { // Setting advance width to zero will prevent drawing the hexbox details->mAdvance = 0; } else { @@ -761,7 +760,7 @@ gfxShapedText::SetMissingGlyph(uint32_t aIndex, uint32_t aChar, gfxFont *aFont) bool gfxShapedText::FilterIfIgnorable(uint32_t aIndex, uint32_t aCh) { - if (IsDefaultIgnorable(aCh)) { + if (IsIgnorable(aCh)) { // There are a few default-ignorables of Letter category (currently, // just the Hangul filler characters) that we'd better not discard // if they're followed by additional characters in the same cluster. diff --git a/intl/unicharutil/tools/genUnicodePropertyData.pl b/intl/unicharutil/tools/genUnicodePropertyData.pl index 8b247e83c684..2e9a7d7b6d5c 100755 --- a/intl/unicharutil/tools/genUnicodePropertyData.pl +++ b/intl/unicharutil/tools/genUnicodePropertyData.pl @@ -23,19 +23,21 @@ # - HangulSyllableType.txt # - LineBreak.txt # - EastAsianWidth.txt +# - DerivedCoreProperties.txt # - ReadMe.txt (to record version/date of the UCD) # - Unihan_Variants.txt (from Unihan.zip) # though this may change if we find a need for additional properties. # # The Unicode data files listed above should be together in one directory. # -# We also require the file -# http://www.unicode.org/Public/security/latest/xidmodifications.txt -# This file should be in a sub-directory "security" immediately below the +# We also require the files +# http://www.unicode.org/Public/security/latest/IdentifierStatus.txt +# http://www.unicode.org/Public/security/latest/IdentifierType.txt +# These files should be in a sub-directory "security" immediately below the # directory containing the other Unicode data files. # -# We also require the latest data file for UTR50, currently revision-13: -# http://www.unicode.org/Public/vertical/revision-13/VerticalOrientation-13.txt +# We also require the latest data file for UTR50, currently revision-15: +# http://www.unicode.org/Public/vertical/revision-15/VerticalOrientation-15.txt # This file should be in a sub-directory "vertical" immediately below the # directory containing the other Unicode data files. # @@ -140,20 +142,35 @@ sub readIcuHeader die "didn't find ICU script codes\n" if $sc == -1; -my %xidmodCode = ( -'Recommended' => 0, -'Inclusion' => 1, -'Uncommon_Use' => 2, -'Technical' => 3, -'Obsolete' => 4, -'Aspirational' => 5, -'Limited_Use' => 6, -'Exclusion' => 7, -'Not_XID' => 8, -'Not_NFKC' => 9, -'Default_Ignorable' => 10, -'Deprecated' => 11, -'not-chars' => 12 +# We don't currently store these values; %idType is used only to check that +# properties listed in the IdentifierType.txt file are recognized. We record +# only the %mappedIdType values that are used by nsIDNService::isLabelSafe. +# In practice, it would be sufficient for us to read only the last value in +# IdentifierType.txt, but we check that all values are known so that we'll get +# a warning if future updates introduce new ones, and can consider whether +# they need to be taken into account. +my %idType = ( + "Not_Character" => 0, + "Recommended" => 1, + "Inclusion" => 2, + "Uncommon_Use" => 3, + "Technical" => 4, + "Obsolete" => 5, + "Aspirational" => 6, + "Limited_Use" => 7, + "Exclusion" => 8, + "Not_XID" => 9, + "Not_NFKC" => 10, + "Default_Ignorable" => 11, + "Deprecated" => 12 +); + +# These match the IdentifierType enum in nsUnicodeProperties.h. +my %mappedIdType = ( + "Restricted" => 0, + "Allowed" => 1, + "Aspirational" => 2 # for Aspirational characters that are not excluded + # by another attribute. ); my %bidicategoryCode = ( @@ -229,7 +246,10 @@ my %lineBreakCode = ( # ordering matches ICU's ULineBreak enum "CP" => 36, "CJ" => 37, "HL" => 38, - "RI" => 39 + "RI" => 39, + "EB" => 40, + "EM" => 41, + "ZWJ" => 42 ); my %eastAsianWidthCode = ( @@ -249,7 +269,7 @@ my @mirror; my @pairedBracketType; my @hangul; my @casemap; -my @xidmod; +my @idtype; my @numericvalue; my @hanVariant; my @bidicategory; @@ -258,13 +278,14 @@ my @fullWidthInverse; my @verticalOrientation; my @lineBreak; my @eastAsianWidthFWH; +my @defaultIgnorable; for (my $i = 0; $i < 0x110000; ++$i) { $script[$i] = $scriptCode{"UNKNOWN"}; $category[$i] = $catCode{"UNASSIGNED"}; $combining[$i] = 0; $pairedBracketType[$i] = 0; $casemap[$i] = 0; - $xidmod[$i] = $xidmodCode{"not-chars"}; + $idtype[$i] = $mappedIdType{'Restricted'}; $numericvalue[$i] = -1; $hanVariant[$i] = 0; $bidicategory[$i] = $bidicategoryCode{"L"}; @@ -273,6 +294,7 @@ for (my $i = 0; $i < 0x110000; ++$i) { $verticalOrientation[$i] = 1; # default for unlisted codepoints is 'R' $lineBreak[$i] = $lineBreakCode{"XX"}; $eastAsianWidthFWH[$i] = 0; + $defaultIgnorable[$i] = 0; } # blocks where the default for bidi category is not L @@ -557,25 +579,67 @@ while () { } close FH; -# read xidmodifications.txt -open FH, "< $UNICODE/security/xidmodifications.txt" or die "can't open UCD file xidmodifications.txt\n"; +# read DerivedCoreProperties.txt (for Default-Ignorables) +open FH, "< $UNICODE/DerivedCoreProperties.txt" or die "can't open UCD file DerivedCoreProperties.txt\n"; +push @versionInfo, ""; +while () { + chomp; + push @versionInfo, $_; + last if /Date:/; +} +while () { + s/#.*//; + if (m/([0-9A-F]{4,6})(?:\.\.([0-9A-F]{4,6}))*\s*;\s*Default_Ignorable_Code_Point/) { + my $start = hex "0x$1"; + my $end = (defined $2) ? hex "0x$2" : $start; + for (my $i = $start; $i <= $end; ++$i) { + $defaultIgnorable[$i] = 1; + } + } +} +close FH; + +# read IdentifierStatus.txt +open FH, "< $UNICODE/security/IdentifierStatus.txt" or die "can't open UCD file IdentifierStatus.txt\n"; push @versionInfo, ""; while () { chomp; - unless (/\xef\xbb\xbf/) { - push @versionInfo, $_; - } - last if /Generated:/; + s/\xef\xbb\xbf//; + push @versionInfo, $_; + last if /Date:/; } while () { - if (m/([0-9A-F]{4,6})(?:\.\.([0-9A-F]{4,6}))*\s+;\s+[^ ]+\s+;\s+([^ ]+)/) { - my $xidmod = $3; - warn "unknown Identifier Modification $xidmod" unless exists $xidmodCode{$xidmod}; - $xidmod = $xidmodCode{$xidmod}; + if (m/([0-9A-F]{4,6})(?:\.\.([0-9A-F]{4,6}))*\s+;\s+Allowed/) { my $start = hex "0x$1"; my $end = (defined $2) ? hex "0x$2" : $start; for (my $i = $start; $i <= $end; ++$i) { - $xidmod[$i] = $xidmod; + $idtype[$i] = $mappedIdType{'Allowed'}; + } + } +} +close FH; + +# read IdentifierType.txt, to find Aspirational characters +open FH, "< $UNICODE/security/IdentifierType.txt" or die "can't open UCD file IdentifierType.txt\n"; +push @versionInfo, ""; +while () { + chomp; + s/\xef\xbb\xbf//; + push @versionInfo, $_; + last if /Date:/; +} +while () { + if (m/([0-9A-F]{4,6})(?:\.\.([0-9A-F]{4,6}))*\s+;\s+([^#]+)/) { + my $idtype = $3; + foreach (split(/ /, $idtype)) { + warn "unknown Identifier Type $_" unless exists $idType{$_}; + } + my $start = hex "0x$1"; + my $end = (defined $2) ? hex "0x$2" : $start; + if ($idtype =~ /Aspirational/ and (not $idtype =~ /Exclusion|Not_XID|Not_NFKC/)) { + for (my $i = $start; $i <= $end; ++$i) { + $idtype[$i] = $mappedIdType{'Aspirational'}; + } } } } @@ -617,8 +681,8 @@ while () { } close FH; -# read VerticalOrientation-13.txt -open FH, "< $UNICODE/vertical/VerticalOrientation-13.txt" or die "can't open UTR50 data file VerticalOrientation-13.txt\n"; +# read VerticalOrientation-15.txt +open FH, "< $UNICODE/vertical/VerticalOrientation-15.txt" or die "can't open UTR50 data file VerticalOrientation-15.txt\n"; push @versionInfo, ""; while () { chomp; @@ -738,14 +802,15 @@ sub sprintCharProps2_short { my $usv = shift; return sprintf("{%d,%d},", - $verticalOrientation[$usv], $xidmod[$usv]); + $verticalOrientation[$usv], $idtype[$usv]); } $type = q| struct nsCharProps2 { - // Currently only 6 bits are defined here, so 2 more could be added without - // affecting the storage requirements for this struct. + // Currently only 4 bits are defined here, so 4 more could be added without + // affecting the storage requirements for this struct. Or we could pack two + // records per byte, at the cost of a slightly more complex accessor. unsigned char mVertOrient:2; - unsigned char mXidmod:4; + unsigned char mIdType:2; }; |; &genTables("#if ENABLE_INTL_API", "#endif", @@ -754,23 +819,31 @@ struct nsCharProps2 { sub sprintCharProps2_full { my $usv = shift; - return sprintf("{%d,%d,%d,%d,%d,%d,%d,%d,%d},", + return sprintf("{%d,%d,%d,%d,%d,%d,%d,%d,%d,%d},", $script[$usv], $pairedBracketType[$usv], $eastAsianWidthFWH[$usv], $category[$usv], - $bidicategory[$usv], $xidmod[$usv], $numericvalue[$usv], - $verticalOrientation[$usv], $lineBreak[$usv]); + $idtype[$usv], $defaultIgnorable[$usv], $bidicategory[$usv], + $verticalOrientation[$usv], $lineBreak[$usv], + $numericvalue[$usv]); } $type = q| +// This struct currently requires 5 bytes. We try to ensure that whole-byte +// fields will not straddle byte boundaries, to optimize access to them. struct nsCharProps2 { unsigned char mScriptCode:8; + // -- byte boundary -- unsigned char mPairedBracketType:2; unsigned char mEastAsianWidthFWH:1; unsigned char mCategory:5; + // -- byte boundary -- + unsigned char mIdType:2; + unsigned char mDefaultIgnorable:1; unsigned char mBidiCategory:5; - unsigned char mXidmod:4; - signed char mNumericValue:5; + // -- byte boundary -- unsigned char mVertOrient:2; - unsigned char mLineBreak; // only 6 bits actually needed + unsigned char mLineBreak:6; + // -- byte boundary -- + signed char mNumericValue; // only 5 bits are actually needed here }; |; &genTables("#if !ENABLE_INTL_API", "#endif", diff --git a/intl/unicharutil/util/nsUnicodeProperties.cpp b/intl/unicharutil/util/nsUnicodeProperties.cpp index 9aa5ef8e3ad7..76f2f4ec37c2 100644 --- a/intl/unicharutil/util/nsUnicodeProperties.cpp +++ b/intl/unicharutil/util/nsUnicodeProperties.cpp @@ -56,14 +56,14 @@ GetCharProps2(uint32_t aCh) static const nsCharProps2 undefined = { #if ENABLE_INTL_API VERTICAL_ORIENTATION_R, - XIDMOD_NOT_CHARS + 0 // IdentifierType #else uint8_t(Script::UNKNOWN), PAIRED_BRACKET_TYPE_NONE, 0, // EastAsianWidthFWH HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED, eCharType_LeftToRight, - XIDMOD_NOT_CHARS, + 0, // IdentifierType -1, // Numeric Value VERTICAL_ORIENTATION_R #endif @@ -300,6 +300,7 @@ bool IsEastAsianWidthFWH(uint32_t aCh) { return GetCharProps2(aCh).mEastAsianWidthFWH; } + #endif #define DEFINE_BMP_1PLANE_MAPPING_GET_FUNC(prefix_) \ diff --git a/intl/unicharutil/util/nsUnicodeProperties.h b/intl/unicharutil/util/nsUnicodeProperties.h index ba5526a4da6b..b03f0fbf2c78 100644 --- a/intl/unicharutil/util/nsUnicodeProperties.h +++ b/intl/unicharutil/util/nsUnicodeProperties.h @@ -40,20 +40,13 @@ enum PairedBracketType { PAIRED_BRACKET_TYPE_CLOSE = 2 }; -enum XidmodType { - XIDMOD_RECOMMENDED, - XIDMOD_INCLUSION, - XIDMOD_UNCOMMON_USE, - XIDMOD_TECHNICAL, - XIDMOD_OBSOLETE, - XIDMOD_ASPIRATIONAL, - XIDMOD_LIMITED_USE, - XIDMOD_EXCLUSION, - XIDMOD_NOT_XID, - XIDMOD_NOT_NFKC, - XIDMOD_DEFAULT_IGNORABLE, - XIDMOD_DEPRECATED, - XIDMOD_NOT_CHARS +/* Flags for Unicode security IdentifierType.txt attributes. Only a subset + of these are currently checked by Gecko, so we only define flags for the + ones we need. */ +enum IdentifierType { + IDTYPE_RESTRICTED = 0, + IDTYPE_ALLOWED = 1, + IDTYPE_ASPIRATIONAL = 2, }; #if ENABLE_INTL_API // ICU is available, so simply forward to its API @@ -172,6 +165,12 @@ IsEastAsianWidthFWH(uint32_t aCh) return false; } +inline bool +IsDefaultIgnorable(uint32_t aCh) +{ + return u_hasBinaryProperty(aCh, UCHAR_DEFAULT_IGNORABLE_CODE_POINT); +} + #else // not ENABLE_INTL_API // Return whether the char has a mirrored-pair counterpart. @@ -211,6 +210,12 @@ uint32_t GetTitlecaseForAll(uint32_t aCh); // maps both UC and LC to titlecase // Return whether the char has EastAsianWidth class F or W or H. bool IsEastAsianWidthFWH(uint32_t aCh); +// Return whether the char is default-ignorable. +inline bool IsDefaultIgnorable(uint32_t aCh) +{ + return GetCharProps2(aCh).mDefaultIgnorable; +} + #endif // !ENABLE_INTL_API // returns the simplified Gen Category as defined in nsIUGenCategory @@ -222,8 +227,8 @@ inline VerticalOrientation GetVerticalOrientation(uint32_t aCh) { return VerticalOrientation(GetCharProps2(aCh).mVertOrient); } -inline XidmodType GetIdentifierModification(uint32_t aCh) { - return XidmodType(GetCharProps2(aCh).mXidmod); +inline IdentifierType GetIdentifierType(uint32_t aCh) { + return IdentifierType(GetCharProps2(aCh).mIdType); } uint32_t GetFullWidth(uint32_t aCh); diff --git a/intl/unicharutil/util/nsUnicodePropertyData.cpp b/intl/unicharutil/util/nsUnicodePropertyData.cpp index f8b5a02bcbe6..9671bafaff73 100644 --- a/intl/unicharutil/util/nsUnicodePropertyData.cpp +++ b/intl/unicharutil/util/nsUnicodePropertyData.cpp @@ -11,13 +11,13 @@ */ /* - * Created on Wed Oct 26 09:12:45 2016 from UCD data files with version info: + * Created on Fri Nov 11 17:42:07 2016 from UCD data files with version info: * -# Date: 2015-06-16, 20:24:00 GMT [KW] -# # Unicode Character Database -# Copyright (c) 1991-2015 Unicode, Inc. +# Date: 2016-06-20, 14:59:00 GMT [KW] +# © 2016 Unicode®, Inc. +# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # For documentation, see the following: @@ -25,41 +25,44 @@ # UAX #38, "Unicode Han Database (Unihan)" # UAX #44, "Unicode Character Database." # -# The UAXes can be accessed at http://www.unicode.org/versions/Unicode8.0.0/ +# The UAXes can be accessed at http://www.unicode.org/versions/Unicode9.0.0/ This directory contains the final data files -for the Unicode Character Database, for Version 8.0.0 of the Unicode -Standard. +for the Unicode Character Database, for Version 9.0.0 of the Unicode Standard. +# Scripts-9.0.0.txt +# Date: 2016-06-01, 10:34:37 GMT -# Scripts-8.0.0.txt -# Date: 2015-03-11, 22:29:42 GMT [MD] +# BidiMirroring-9.0.0.txt +# Date: 2016-01-21, 22:00:00 GMT [KW, LI] -# BidiMirroring-8.0.0.txt -# Date: 2015-01-20, 18:30:00 GMT [KW, LI] +# BidiBrackets-9.0.0.txt +# Date: 2016-06-07, 22:30:00 GMT [AG, LI, KW] -# BidiBrackets-8.0.0.txt -# Date: 2015-01-20, 19:00:00 GMT [AG, LI, KW] +# HangulSyllableType-9.0.0.txt +# Date: 2016-03-02, 18:55:01 GMT -# HangulSyllableType-8.0.0.txt -# Date: 2014-12-16, 23:07:45 GMT [MD] +# LineBreak-9.0.0.txt +# Date: 2016-05-26, 01:00:00 GMT [KW, LI] -# LineBreak-8.0.0.txt -# Date: 2015-02-13, 09:15:00 GMT [KW, LI] +# EastAsianWidth-9.0.0.txt +# Date: 2016-05-27, 17:00:00 GMT [KW, LI] -# EastAsianWidth-8.0.0.txt -# Date: 2015-02-10, 21:00:00 GMT [KW, LI] +# DerivedCoreProperties-9.0.0.txt +# Date: 2016-06-01, 10:34:24 GMT -# File: xidmodifications.txt -# Version: 8.0.0 -# Generated: 2015-05-17, 03:09:04 GMT +# IdentifierStatus.txt +# Date: 2016-06-16, 13:41:30 GMT + +# IdentifierType.txt +# Date: 2016-06-16, 13:41:30 GMT # # Unihan_Variants.txt -# Date: 2015-04-30 18:38:20 GMT [JHJ] +# Date: 2016-06-01 07:01:48 GMT [JHJ] -# VerticalOrientation-13.txt -# Date: 2014-09-03, 17:30:00 GMT [EM, KI, LI] +# VerticalOrientation-15.txt +# Date: 2015-11-16, 20:00:00 GMT [EM, KI, LI] * * * * * * This file contains MACHINE-GENERATED DATA, do not edit! * * * * * @@ -236,7 +239,15 @@ static const uint32_t sScriptCodeToTag[] = { HB_TAG('M','o','d','i'), HB_TAG('M','u','l','t'), HB_TAG('P','a','u','c'), - HB_TAG('S','i','d','d') + HB_TAG('S','i','d','d'), + HB_TAG('A','d','l','m'), + HB_TAG('B','h','k','s'), + HB_TAG('M','a','r','c'), + HB_TAG('N','e','w','a'), + HB_TAG('O','s','g','e'), + HB_TAG('H','a','n','b'), + HB_TAG('J','a','m','o'), + HB_TAG('Z','s','y','e') }; #endif @@ -278,11 +289,11 @@ static const int16_t sMirrorOffsets[] = { static const uint8_t sCharProp1Planes[1] = {1}; static const uint8_t sCharProp1Pages[2][2048] = { - {0,1,2,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,9,10,11,0,12,0,13,14,0,0,15,16,17,18,19,0,0,0,0,20,21,22,23,0,0,0,0,24,0,25,26,0,0,25,27,0,0,25,27,0,0,25,27,0,0,25,27,0,0,0,27,0,0,0,28,0,0,25,27,0,0,0,27,0,0,0,29,0,0,30,31,0,0,32,33,0,34,35,0,36,37,0,38,0,0,39,0,0,40,0,0,0,41,41,41,42,42,43,44,44,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,47,47,0,0,0,0,48,0,0,0,0,0,0,49,0,0,0,50,0,0,0,0,0,0,51,0,0,52,0,53,0,0,0,54,55,56,0,57,0,58,0,59,0,0,0,0,60,61,0,0,0,0,0,0,62,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,65,66,67,0,68,69,0,0,0,0,0,0,0,0,70,71,72,73,74,75,76,77,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,81,82,0,0,0,0,0,0,0,0,0,0,0,0,83,84,85,86,0,87,0,88,89,90,91,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,94,0,0,0,95,96,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,102,0,0,103,0,0,0,0,0,0,0,0,104,0,0,0,0,0,55,105,0,106,107,108,0,109,110,0,0,0,0,0,0,111,112,113,0,0,0,0,0,0,0,27,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,120,114,115,116,117,118,119,121,122,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,126,127,0,0,0,0,1,2,128,129,0,0,0,0}, - {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0,0,0,0,0,0,131,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,134,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,94,0,136,0,0,137,138,0,109,0,0,139,0,0,140,0,0,0,0,0,141,0,25,27,142,0,0,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,94,144,0,0,94,0,0,0,145,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150,151,152,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} + {0,1,2,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,6,7,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,9,10,11,0,12,0,13,14,0,0,15,16,17,18,19,0,0,0,0,20,21,22,23,0,0,0,24,25,0,26,27,0,0,26,28,0,0,26,28,0,0,26,28,0,0,26,28,0,0,0,28,0,0,0,29,0,0,26,28,0,0,0,28,0,0,0,30,0,0,31,32,0,0,33,34,0,35,36,0,37,38,0,39,0,0,40,0,0,41,0,0,0,42,42,42,43,43,44,45,45,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,48,48,0,0,0,0,49,0,0,0,0,0,0,50,0,0,0,51,0,0,0,0,0,0,52,0,0,53,0,54,0,0,0,55,56,57,0,58,0,59,0,60,0,0,0,0,61,62,0,0,0,0,0,0,63,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,66,67,68,0,69,70,0,0,0,0,0,0,0,0,71,72,73,74,75,76,77,78,79,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,82,83,0,0,0,0,0,0,0,0,0,0,0,0,84,85,86,87,0,88,0,89,90,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,95,0,0,0,96,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,103,0,0,104,0,0,0,0,0,0,0,0,105,0,0,0,0,0,56,106,0,107,108,109,0,110,111,0,0,0,0,0,0,112,113,114,0,0,0,0,0,0,0,28,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,121,115,116,117,118,119,120,122,123,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,127,128,0,0,0,0,1,2,129,130,0,0,0,0}, + {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,132,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,135,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,95,0,137,0,0,138,139,0,110,0,0,140,0,0,141,0,0,0,0,0,142,0,26,28,143,0,0,0,0,0,0,144,0,0,0,145,0,0,0,0,0,0,95,146,0,0,95,0,0,0,147,0,0,0,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,153,154,0,0,0,0,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} }; -static const nsCharProps1 sCharProp1Values[155][32] = { +static const nsCharProps1 sCharProp1Values[160][32] = { {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {1,0,0}, {2,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {3,0,0}, {0,0,0}, {4,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {3,0,0}, {0,0,0}, {4,0,0}, {0,0,0}, {0,0,0},}, @@ -307,7 +318,8 @@ static const nsCharProps1 sCharProp1Values[155][32] = { {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230},}, {{0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, - {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,27}, {0,0,28}, {0,0,29}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230},}, + {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230},}, + {{0,0,230}, {0,0,230}, {0,0,0}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,27}, {0,0,28}, {0,0,29}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,7}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,9}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,9}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, @@ -346,7 +358,7 @@ static const nsCharProps1 sCharProp1Values[155][32] = { {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,1}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220},}, {{0,0,230}, {0,0,0}, {0,0,1}, {0,0,1}, {0,0,1}, {0,0,1}, {0,0,1}, {0,0,1}, {0,0,1}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,220}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,230}, {0,0,230}, {0,0,234}, {0,0,214}, {0,0,220}, {0,0,202}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230},}, - {{0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,233}, {0,0,220}, {0,0,230}, {0,0,220},}, + {{0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,233}, {0,0,220}, {0,0,230}, {0,0,220},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {1,0,0}, {2,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {1,0,0}, {2,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {1,0,0}, {2,0,0}, {0,0,0},}, @@ -426,6 +438,7 @@ static const nsCharProps1 sCharProp1Values[155][32] = { {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,9}, {0,0,7}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,7}, {0,0,9}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, + {{0,0,0}, {0,0,0}, {0,0,9}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,7}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,9}, {0,0,7}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,7}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,9}, {0,0,7}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, @@ -437,7 +450,10 @@ static const nsCharProps1 sCharProp1Values[155][32] = { {{0,0,220}, {0,0,220}, {0,0,220}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,220}, {0,0,220}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, {{0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, - {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},} + {{0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230},}, + {{0,0,230}, {0,0,230}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, + {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,220}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},}, + {{0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,230}, {0,0,7}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0}, {0,0,0},} }; #endif @@ -445,234 +461,115 @@ static const nsCharProps1 sCharProp1Values[155][32] = { #define kCharProp2MaxPlane 16 #define kCharProp2IndexBits 9 #define kCharProp2CharBits 7 -static const uint8_t sCharProp2Planes[16] = {1,2,3,4,4,4,4,4,4,4,4,4,4,5,3,3}; +static const uint8_t sCharProp2Planes[16] = {1,2,3,4,4,4,4,4,4,4,4,4,4,4,3,3}; -static const uint8_t sCharProp2Pages[6][512] = { - {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,41,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,67,72,73,74,75,76,67,67,67,67,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,87,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,97,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,98,41,41,41,41,41,41,41,41,41,99,100,100,101,102,103,104,105,106,107,108,109,110,111,112,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,113,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,87,87,116,117,118,119,120,120,121,122,123,124,125,126}, - {127,128,129,130,114,131,132,133,134,135,136,114,134,134,137,114,138,139,140,141,142,143,144,145,146,147,114,114,148,114,114,114,149,150,151,152,153,154,155,114,114,156,114,157,158,159,160,114,114,161,114,114,114,162,114,114,114,114,114,114,114,114,114,114,134,134,134,134,134,134,134,163,164,134,165,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,166,166,166,166,166,166,166,166,167,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,134,134,134,134,168,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,100,100,100,100,169,170,171,172,114,114,114,114,114,114,173,174,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,175,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,176,177,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,74,178,179,180,181,114,182,114,183,184,185,120,120,186,120,187,67,67,67,67,188,189,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,134,190,114,114,114,114,114,114,114,114,114,114,191,192,114,114,193,194,195,196,197,115,74,74,74,74,198,199,74,200,201,202,203,204,205,206,114,114,114,114,114,114,114,114,114,114,114,114}, - {96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,207,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,208,96,209,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,210,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,87,87,87,87,211,115,115,115,115,115,115,115,115,115,115,212}, - {115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,115,212}, - {114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114}, - {213,114,214,215,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114} +static const uint8_t sCharProp2Pages[5][512] = { + {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,34,35,36,37,38,39,40,40,40,41,16,16,42,43,44,16,16,16,16,16,16,16,45,16,16,46,47,48,49,50,51,52,53,54,16,55,56,57,34,16,58,59,34,60,61,16,16,16,16,16,16,62,63,16,16,64,65,16,34,34,34,66,67,68,69,34,34,70,34,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,72,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,73,40,40,40,40,40,40,40,40,40,74,16,16,75,76,77,78,16,16,79,80,81,16,82,16,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,83,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,84,34,16,16,16,16,16,16,85,16,86,87}, + {16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,88,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,34,34,34,34,34,34,34,89,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,34,34,34,34,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,90,91,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,34,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,34,34,34,16,16,34,16,16,16,16,16,16,16,16,16,34,34,34,34,34,89,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,34,34,34,34,92,34,34,34,34,34,34,34,34,34,34,34,16,16,34,34,16,16,16,16,16,16,16,16,16,16,16,16}, + {71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,93,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,94,71,95,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,71,96,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,97}, + {34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,97}, + {16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16} }; -static const nsCharProps2 sCharProp2Values[216][128] = { - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,1},{1,8},{1,8},{1,8},{1,8},{1,8},{1,1},{1,1},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,0},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{1,9},{0,8},{1,9},{1,8},{1,8},{1,10},{0,8},{1,9},{1,8},{0,8},{1,9},{1,9},{1,9},{1,9},{1,8},{1,1},{1,9},{1,9},{1,9},{1,8},{0,9},{0,9},{0,9},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,11},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9}}, - {{1,3},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,4},{1,2},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,4},{1,4},{1,2},{1,2},{1,2},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,4},{1,4},{1,4},{1,2},{1,2},{1,4},{1,4},{1,3},{1,3},{1,3},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,9},{1,9},{1,0},{1,0},{1,4},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,3},{1,3},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,3},{1,3},{1,3},{1,2},{1,2},{1,3},{1,2},{1,2},{1,3},{1,0},{1,3},{1,2},{1,3},{1,3},{1,3},{1,4},{1,2},{1,3},{1,3},{1,2},{1,3},{1,3},{1,3},{1,3},{1,2},{1,2},{1,3},{1,3},{1,3},{1,3},{1,3},{1,2},{1,3},{1,3},{1,2},{1,3},{1,3},{1,2},{1,3},{1,4},{1,3},{1,3},{1,3},{1,3},{1,4},{1,3},{1,3},{1,3}}, - {{1,2},{1,3},{1,3},{1,2},{1,3},{1,3},{1,3},{1,3},{1,2},{1,3},{1,2},{1,2},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,2},{1,3},{1,2},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,4},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,3},{1,3},{1,0},{1,0},{1,3},{1,3},{1,3},{1,3},{1,3},{1,8},{1,8},{1,8},{1,8},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,8},{1,8},{1,9},{1,9},{1,9},{1,9},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{1,0},{1,8},{1,3},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,3},{1,0},{1,0},{1,0},{1,3},{1,0},{1,0},{1,3},{1,2},{1,3},{1,3},{1,3},{1,3},{1,0},{1,3},{1,3},{1,3},{1,3},{1,3},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,3},{1,3},{1,3},{1,0},{1,0},{1,3},{1,0},{1,0},{1,2},{1,3},{1,2},{1,0},{1,2},{1,3},{1,0},{1,0},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,9},{1,9},{1,0},{1,9},{1,9},{1,0},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,10},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,2},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,9},{1,1},{1,4},{1,4},{1,12},{1,12},{1,9},{1,0},{1,0},{1,0},{1,9},{1,4}}, - {{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,0},{1,9},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,3},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,9},{1,9},{1,9},{1,4},{1,9},{1,9},{1,8},{1,4},{1,4},{1,9},{1,4},{1,4},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4}}, - {{1,4},{1,4},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,4},{1,4},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,12},{1,8},{1,1},{1,12},{1,12},{1,8},{1,8},{1,8},{1,12},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,4},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,8},{1,2},{1,8},{1,2},{1,2},{1,8},{1,2},{1,4},{1,8},{1,4},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,1},{1,1},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,8},{1,10},{1,12},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,7},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,4},{1,4},{1,0},{1,0},{1,0},{1,11},{1,0},{1,9},{1,9},{1,9},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,8},{1,8},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,2},{1,2},{1,8},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,6},{1,6},{1,6},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,4},{1,4},{1,4},{1,0},{1,2},{1,2},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2}}, - {{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,0},{1,0},{1,4},{1,4},{1,3},{1,3},{1,2},{1,0},{1,0},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,4},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,12},{1,9},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,9},{1,12},{1,0},{1,9},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,2},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,0},{1,12},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,2},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,12},{1,0},{1,0},{1,0},{1,2},{1,2},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,12},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,4},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,4},{1,4},{1,2},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,2},{1,2},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,12},{1,4},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,4},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,0},{1,0},{1,2},{1,2},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,12},{1,12},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,3},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,12},{1,12},{1,0},{1,3},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,0},{1,0},{1,12},{1,0},{1,12},{1,12},{1,0},{1,0},{1,12},{1,0},{1,12},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,12},{1,12},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,9},{1,9},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,1},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,3},{1,3},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,0},{1,8},{1,0},{1,8},{1,2},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,9},{1,0},{1,9},{1,9},{1,11},{1,9},{1,11},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,9},{1,0},{1,0},{1,0},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,0},{1,0},{1,0},{1,0},{1,8},{1,9},{1,0},{1,0},{1,0}}, - {{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,10},{0,10},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4}}, - {{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12}}, - {{1,8},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5}}, - {{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5}}, - {{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,8},{0,8},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5}}, - {{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,11},{1,11},{1,0},{1,0},{1,0},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,10},{1,10},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,4},{1,0},{1,4},{1,8},{1,8},{1,8},{1,0},{1,8},{1,8},{1,8},{1,8},{1,0},{1,4},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,10},{1,10},{1,10},{1,10},{1,12},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12},{1,12},{1,12},{1,12},{1,12},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,6}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,6},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,4},{1,4},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,12},{1,4},{1,4},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,9},{1,9},{1,9},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,9},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3}}, - {{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,4},{1,4},{1,4},{1,4},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,4},{1,3},{1,3},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,3},{1,3},{1,3},{1,3}}, +static const nsCharProps2 sCharProp2Values[98][128] = { + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{0,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{0,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,9},{1,3},{1,3},{1,0},{1,3},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,12},{1,0},{1,12},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,12},{1,12}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,9},{1,9},{1,9},{1,9},{1,9},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,9},{1,9},{1,0},{1,0},{1,0},{1,9},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,12},{1,9},{1,9},{1,9},{1,0},{1,0},{1,0},{1,9},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,9},{1,0},{1,9},{1,9},{1,9},{1,12},{1,12},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,9},{1,0},{1,9},{1,0},{1,9},{1,9},{1,12}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,10},{1,1},{1,1},{1,10},{1,10},{1,1},{1,9},{1,8},{1,8},{1,8},{1,8},{0,8},{1,9},{1,8},{1,1},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{1,8},{1,8},{1,9},{1,9},{1,9},{1,1},{1,8},{1,8},{1,10},{1,10},{1,10},{1,10},{1,10},{1,9},{0,8},{0,8},{1,8},{1,9},{1,9},{1,8},{1,9},{1,9},{1,8},{1,8},{1,8},{0,8},{0,9},{1,8},{1,9},{1,3},{1,3},{1,8},{0,8},{1,8},{1,8},{1,8},{1,8},{0,9},{0,9},{0,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{1,8},{1,8},{1,2},{1,8},{1,8},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,10},{1,10},{1,10},{1,10},{1,10},{0,12},{1,10},{1,10},{1,10},{1,10},{1,11},{1,11},{1,11},{1,11},{1,11},{1,11},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{0,8},{0,8},{0,8},{0,8},{1,7},{0,8},{0,8},{0,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,9},{0,9},{1,9},{0,9},{0,8},{0,9},{0,9},{0,9},{0,8},{0,9},{1,9},{1,9},{1,9},{1,9},{1,9},{0,9},{1,9},{1,9},{1,9},{0,9},{0,8},{1,9},{0,9},{0,8},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{0,8},{0,8},{0,9},{0,9},{0,9},{0,8},{1,9},{0,8},{1,9},{0,8},{1,9},{0,8},{1,9},{1,9},{1,9},{1,9},{0,3},{1,9},{1,9},{1,9},{1,4},{1,9},{1,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,9},{0,9},{0,9},{0,9},{0,9},{1,9},{1,8},{1,8},{1,8},{1,8},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{1,8},{0,8},{0,8},{1,4},{0,8},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9}}, - {{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,9},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,9},{1,8},{1,9},{1,9},{1,8},{1,8},{1,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{3,11},{3,11},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{0,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,9},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,3},{1,3},{1,3},{1,3},{1,3},{1,9},{1,9},{1,4},{1,4}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,12},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,12},{1,12},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,5}}, - {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,8},{0,8},{0,8},{0,8},{0,9},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12}}, - {{0,9},{2,8},{2,8},{0,8},{0,8},{0,0},{0,0},{0,0},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{0,8},{0,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{3,8},{0,8},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,3},{0,4},{0,4},{3,8},{0,3},{0,3},{0,3},{0,3},{0,3},{0,9},{0,8},{0,9},{0,9},{0,9},{0,3},{0,3},{0,8},{0,8},{0,8},{0,12},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, - {{0,0},{0,0},{0,0},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{2,0},{0,12},{0,12},{0,0},{0,0},{2,9},{2,9},{0,0},{0,0},{0,9},{3,1},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{0,0},{2,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,1},{3,0},{0,0},{0,0},{0,9}}, - {{0,12},{0,12},{0,12},{0,12},{0,12},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,10},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,8},{0,8},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3},{2,3}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12}}, - {{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{2,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{2,9},{2,9},{2,9},{2,9},{2,9}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1}}, {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,5},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,0},{1,0},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,2},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,8},{1,0}}, - {{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,9},{1,9},{1,2},{1,0},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,9},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4}}, - {{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,0},{1,8},{1,8},{1,2},{1,2},{1,0},{1,0},{1,2},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,4},{1,4},{1,4},{1,12},{1,12},{1,4},{1,4},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,9},{1,9},{1,0},{1,4},{1,4},{1,4},{1,4},{1,4}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,8},{1,8},{1,8},{1,4},{1,8},{1,4},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,12},{0,12},{0,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,7},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,8},{1,8},{1,8},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,12},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,8},{1,9},{1,9},{1,9},{1,9},{1,2},{1,2},{1,2},{1,2},{1,4},{1,4},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,6},{1,6},{1,12},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,12},{0,12},{0,12},{0,12},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,4},{0,12},{0,12},{0,12},{0,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,0},{0,0},{0,9},{0,0},{0,9},{0,0},{0,0},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,0},{0,9},{0,0},{0,9},{0,0},{0,0},{0,9},{0,9},{0,0},{0,0},{0,0},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,3},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,12},{1,9},{1,9},{1,12},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,8},{1,12},{1,12}}, - {{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{1,3},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,8},{0,9},{0,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{2,9},{2,9},{2,9},{0,12},{0,9},{0,9},{0,9},{0,9},{1,9},{3,9},{3,9},{3,9},{3,9},{3,9},{3,9},{0,9},{0,9},{0,9},{0,9},{1,9},{1,9},{1,9},{1,9},{0,12},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{1,9},{1,9},{1,9},{1,3},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,10}}, - {{1,12},{2,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{3,9},{3,9},{0,9},{0,9},{2,9},{1,9},{2,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{3,9},{3,9},{1,9},{1,9},{1,9},{2,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{3,9},{0,9},{3,9},{0,9},{3,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{3,9},{3,9},{3,9},{3,9},{3,9},{3,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,10},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{0,9},{0,9},{0,9},{3,9},{0,9},{0,9},{0,9},{0,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{1,8},{1,8},{1,8},{0,8},{0,8},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,4},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,4},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,12},{1,12},{1,12},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,8},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,7},{1,8},{1,8},{1,8},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,12},{0,12},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7}}, - {{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,6},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,5},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,4},{0,4},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,8},{1,7},{1,7},{1,8},{1,10},{1,10},{1,10},{1,10},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,7},{0,7},{0,7},{0,7},{0,7},{0,8},{0,8},{0,8},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,10},{0,10},{0,10},{0,10},{0,10},{0,10},{0,10},{0,10},{0,7},{0,7},{0,7},{0,7},{0,7}}, - {{0,7},{0,7},{0,7},{0,8},{0,8},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,7},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,7},{0,7},{0,7},{0,7},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,12},{1,12},{1,9},{1,12},{1,12},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,7},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,7},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,12},{1,9},{1,12},{1,12},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,12},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,12},{1,12},{1,12},{1,12},{1,9},{1,12},{1,9},{1,12},{1,9},{1,12},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,12},{1,9},{1,12},{1,12},{1,9},{1,12},{1,9},{1,12},{1,9},{1,12},{1,9},{1,12},{1,9},{1,12},{1,9},{1,9},{1,12},{1,9},{1,12},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,12}}, - {{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,9},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,8},{0,12},{0,12},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,9},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{2,9},{2,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,8},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{1,8},{1,8},{1,8},{1,8},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,8},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, - {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,9},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12}}, - {{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{0,12},{1,12},{1,12}}, - {{1,12},{1,11},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,11}}, - {{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10}}, - {{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,10},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12},{1,12}} + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2}}, + {{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2}}, + {{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,0},{0,0},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,0},{1,1},{1,0},{1,1},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{1,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{0,0},{0,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{0,0},{1,0},{0,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{0,0},{0,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{3,0},{3,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{0,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2}}, + {{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{0,0},{2,0},{2,0},{0,0},{0,0},{0,1},{0,1},{0,1},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{0,0},{0,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{3,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}}, + {{0,1},{0,1},{0,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{2,1},{0,0},{0,0},{0,1},{0,1},{2,0},{2,0},{0,1},{0,1},{0,0},{3,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{0,1},{2,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{3,1},{0,1},{0,1},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{2,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0}}, + {{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{2,0},{2,0},{2,0},{2,0},{2,0}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,2},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1}}, + {{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,1},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,1},{0,1},{0,0},{0,1},{0,0},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,1},{0,0},{0,1},{0,0},{0,1},{0,1},{0,0},{0,0},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{2,0},{2,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{3,0},{3,0},{0,0},{0,0},{2,0},{1,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{3,0},{3,0},{1,0},{1,0},{1,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{3,0},{0,0},{3,0},{0,0},{3,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{3,0},{3,0},{3,0},{3,0},{3,0},{3,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{3,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{0,0},{0,0},{1,0},{1,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0}}, + {{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,2},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0},{1,0}}, + {{2,0},{2,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1}}, + {{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,1},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}}, + {{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0},{1,0},{1,0}} }; #endif @@ -683,1021 +580,1077 @@ static const nsCharProps2 sCharProp2Values[216][128] = { static const uint8_t sCharProp2Planes[16] = {1,2,3,4,4,4,4,4,4,4,4,4,4,5,6,6}; static const uint16_t sCharProp2Pages[7][4096] = { - {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,16,16,17,18,16,16,19,20,21,22,23,24,25,26,27,16,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,59,59,60,60,60,61,61,62,63,63,63,64,63,63,63,63,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,81,82,83,84,85,86,81,81,81,81,87,88,89,90,91,92,93,94,81,81,81,95,95,96,97,98,99,100,101,102,103,104,105,106,107,108,108,108,108,109,110,111,111,112,113,114,115,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,194,195,196,197,198,198,199,200,201,202,203,204,198,198,205,206,207,208,209,210,211,212,213,214,215,216,217,218,198,198,219,219,220,221,222,223,224,225,226,227,228,228,229,230,230,231,232,232,232,232,232,233,234,235,235,235,236,237,237,237,237,237,238,238,238,238,239,240,238,238,239,238,238,241,242,243,238,238,238,242,238,238,238,244,245,246,238,247,248,248,248,248,248,249,250,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,251,252,251,253,254,255,255,255,255,256,257,258,259,260,261,262,263,264,265,266,266,267,268,269,270,271,272,273,274,275,275,276,275,275,277,275,275,278,251,251,251,251,279,280,281,282,283,284,285,286,287,288,288,289,288,290,291,292,292,293,294,295,295,295,296,297,298,299,299,300,301,198,198,198,198,302,303,303,304,305,306,307,308,309,310,311,312,313,313,314,315,316,316,317,318,319,320,321,322,198,198,198,198,323,324,325,326,37,37,327,328,329,330,331,332,37,333,334,335,336,337,338,339,16,16,16,16,16,16,16,16,16,340,16,16,16,16,16,341,342,343,342,342,343,344,342,345,346,346,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,379,382,383,384,385,386,387,388,389,390,391,392,393,394,390,390,395,390,396,397,398,399,400,400,400,401,402,403,390,404,405,406,407,408,402,402,409,410,411,410,412,413,414,415,416,416,416,416,417,418,419,419,419,419,420,419,419,421,419,422,423,424,425,426,427,428,429,430,402,431,432,402,433,434,402,435,436,437,438,439,440,441,442,402,402,402,402,443,444,445,446,447,379,379,448,390,449,390,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,390,390,390,390,390,390,390,390,451,452,390,390,390,453,390,454,455,390,390,390,390,390,390,456,390,390,390,390,390,455,390,390,379,457,402,390,458,459,379,460,379,461,379,462,463,464,465,410,466,466,467,468,468,469,470,471,472,472,472,472,472,472,473,474,475,475,476,477,477,477,478,479,238,480,481,481,481,481,482,482,483,484,485,486,487,198,198,198,488,489,488,488,488,488,488,490,491,491,491,491,491,491,491,491,491,491,491,491,491,492,410,493,494,495,496,497,498,499,500,499,501,502,503,504,505,504,506,507,508,509,510,511,512,512,513,512,514,515,509,516,517,517,518,519,520,521,522,523,524,525,520,526,522,523,523,527,528,529,529,530,531,531,531,531,531,532,523,533,523,523,523,523,523,534,523,535,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,537,402,402,402,402,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,537,538,538,539,540,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,541,542,542,542,543,544,544,545,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,547,546,548,198,61,61,549,550,61,551,552,552,552,552,553,554,42,555,556,557,558,558,558,559,560,561,562,563,198,198,198,564,565,566,567,568,569,569,569,570,571,572,572,573,574,575,576,577,578,579,580,581,582,583,232,584,585,586,586,587,588,589,590,591,592,592,593,594,595,596,219,597,598,598,598,599,600,601,602,603,604,605,481,606,606,607,608,609,609,609,609,609,610,610,611,612,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,617,615,613,614,615,616,615,618,235,619,237,237,620,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,621,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,624,625,626,623,623,623,627,623,623,623,623,623,623,628,538,538,629,630,631,632,633,634,634,634,634,634,634,635,636,637,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,634,638,111,634,634,634,634,639,634,634,640,198,198,641,642,643,644,645,646,647,648,649,634,634,634,634,634,634,634,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666}, - {667,668,669,670,671,671,198,198,668,668,668,668,668,668,668,672,673,674,674,675,676,676,676,677,678,679,680,198,198,400,400,681,198,198,198,198,198,198,198,198,682,683,684,684,684,685,686,687,688,688,689,690,691,692,692,693,694,695,696,696,697,698,198,198,699,699,700,701,701,702,702,702,703,704,705,198,198,198,198,198,706,706,707,708,708,708,709,198,198,198,198,198,198,198,198,198,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,711,710,712,713,198,198,198,198,198,198,198,198,198,714,715,715,716,717,718,719,720,721,722,723,108,108,108,724,725,726,727,728,729,108,108,108,108,730,730,731,732,733,734,733,733,735,736,737,738,739,740,741,742,743,744,108,108,745,746,747,748,749,749,749,750,751,752,753,754,755,756,757,108,108,108,108,108,758,758,758,758,759,108,108,108,760,760,760,761,762,762,762,763,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,764,765,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,766,767,767,768,769,770,771,772,773,774,774,775,776,777,778,779,780,781,782,783,784,785,785,786,787,788,788,789,790,791,792,793,794,795,796,797,198,198,198,198,798,799,800,801,801,802,803,804,805,806,807,808,809,810,811,812,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,813,813,813,814,815,816,198,198,198,198,198,198,198,198,198,198,817,817,818,819,820,821,410,410,822,822,822,823,824,825,198,198,826,826,827,828,829,198,198,198,830,831,832,833,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,834,834,835,835,836,837,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,838,838,838,839,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,840,841,198,198,198,198,198,198,842,842,842,842,842,842,843,844,840,840,840,840,840,840,840,840,840,840,840,840,845,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,846,847,846,846,848,846,846,846,846,846,846,846,846,846,846,846,846,846,846,849,846,846,846,846,846,846,846,846,846,846,850,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,851,852,851,851,851,851,851,851,851,853,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,854,855,856,857,198,198,198,198,198,198,858,859,860,861,861,861,862,863,864,865,866,861,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,867,867,867,867,868,869,870,871,872,873,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,874,410,410,410,410,410,410,410,410,410,410,410,410,410,410,410,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,875,875,875,875,875,875,876,877,878,879,880,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,881,881,881,881,881,881,881,881,881,881,881,881,881,881,881,882,881,881,883,881,881,884,885,886,887,881,888,889,890,881,891,410,892,892,892,892,893,198,198,198,198,198,198,198,198,198,198,198,402,402,402,402,402,894,895,896,198,198,198,198,198,198,198,198,897,898,899,900,901,902,903,897,904,905,906,907,908,897,898,899,909,910,899,911,912,913,914,897,915,899,897,898,899,900,901,899,903,897,904,914,897,915,899,897,898,899,916,897,917,918,919,920,899,921,897,922,923,924,925,899,926,897,927,899,928,929,930,931,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,932,933,933,933,934,933,933,935,936,937,938,939,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,940,940,940,940,940,940,940,940,940,940,940,940,941,942,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,943,634,944,945,946,947,948,949,950,951,952,951,111,111,111,953,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,108,954,954,955,954,954,954,954,954,954,956,957,958,958,958,954,959,960,416,961,416,416,962,963,962,962,964,410,410,410,410,965,966,967,523,523,968,969,970,410,410,410,410,410,410,410,410,410,410,954,954,954,954,954,954,954,954,954,971,954,972,954,954,954,973,954,954,954,954,954,954,954,954,954,954,974,975,954,954,954,954,976,977,978,979,980,954,954,981,954,954,982,954,954,983,954,984,954,954,954,954,954,402,402,985,954,954,954,954,954,986,987,956,402,402,402,402,402,402,402,988,402,402,402,402,402,989,410,410,679,379,379,379,990,991,379,379,990,379,992,198,198,198,198,198,198,993,198,198,198,198,198,198,994,198,198,198,995,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198}, - {536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,996,538,538,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,997,536,536,536,536,536,536,536,536,536,536,536,536,536,998,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,999,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,623,627,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,1000}, - {538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,1000}, - {198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198}, - {1001,198,1002,1002,1002,1002,1002,1003,198,198,198,198,198,198,198,198,642,642,642,642,642,642,642,642,642,642,642,642,642,642,642,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198}, - {622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,622,1004} + {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,16,16,17,18,16,16,19,20,21,22,23,24,25,26,27,16,28,29,30,31,32,33,33,33,34,33,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,56,56,57,57,57,58,58,59,60,60,60,61,60,60,60,60,60,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,78,79,80,81,82,83,78,78,78,78,84,85,86,87,88,89,90,91,78,78,78,92,92,93,94,95,96,97,98,99,100,101,102,103,104,105,105,105,105,106,107,108,109,110,111,112,113,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,192,193,194,195,196,196,197,198,199,200,201,202,196,196,203,204,205,206,207,208,209,210,211,212,213,214,215,216,196,196,217,217,218,219,220,221,222,223,224,225,226,226,227,228,228,229,230,230,230,230,230,231,232,233,233,233,234,235,235,235,235,235,236,236,236,236,237,238,236,236,237,236,236,239,240,241,236,236,236,240,236,236,236,242,243,244,236,245,246,246,246,246,246,247,248,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,249,250,249,251,252,253,253,253,253,254,255,256,257,258,259,260,261,262,263,264,264,265,266,267,268,269,270,271,272,273,273,274,273,273,275,276,273,277,249,249,249,249,278,279,280,281,282,283,284,285,286,287,287,288,287,289,290,291,291,292,293,294,294,294,295,296,297,298,298,299,300,196,196,196,196,301,302,302,303,304,305,306,307,308,309,310,311,312,312,313,314,315,315,316,317,318,319,320,321,322,196,196,196,323,324,325,326,33,33,327,328,328,329,330,331,33,332,328,333,334,334,334,335,16,16,16,16,16,16,16,16,16,336,16,16,16,16,16,337,338,339,338,338,339,340,338,341,342,342,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,375,378,379,380,381,382,383,384,385,386,387,388,389,390,386,386,391,386,392,393,394,395,396,396,396,397,398,399,386,400,401,402,403,404,398,398,405,406,407,406,408,409,410,411,412,412,412,412,413,414,415,415,415,415,416,415,415,417,415,418,419,420,421,422,423,424,425,426,398,427,428,429,430,431,398,432,433,434,435,436,437,438,439,398,440,398,441,442,443,444,445,446,375,447,448,386,449,386,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,386,386,386,386,386,386,386,386,451,452,386,386,386,453,386,454,386,386,386,386,386,386,386,386,386,386,386,386,386,386,386,386,375,455,398,386,456,457,375,458,375,459,375,460,461,462,463,406,464,464,465,466,466,467,468,469,470,470,470,470,470,470,471,472,473,473,474,475,475,475,476,477,236,478,479,479,479,479,480,480,481,482,483,484,485,196,196,196,486,487,486,486,486,486,486,488,486,486,486,486,486,486,486,486,486,486,486,486,486,489,406,490,491,492,493,494,495,496,497,496,498,499,500,501,502,501,503,504,505,506,507,508,509,509,510,509,511,512,506,513,514,514,515,516,517,518,519,520,521,522,517,523,519,520,520,524,525,526,526,527,528,528,528,528,528,529,520,530,520,520,520,520,520,531,520,532,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,534,398,398,398,398,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,534,535,535,536,537,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,538,539,539,539,540,541,541,542,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,544,543,545,196,58,58,546,547,58,548,549,549,549,549,550,551,39,552,553,554,555,555,555,556,557,558,559,560,196,196,196,561,562,563,564,565,566,566,566,567,568,569,569,570,571,572,573,574,575,576,577,578,579,580,230,581,582,583,583,584,585,586,587,588,589,589,590,591,592,593,217,594,595,595,595,596,597,598,599,600,601,602,479,33,33,603,604,605,605,605,605,605,606,606,607,608,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,613,611,609,610,611,612,611,614,233,615,235,235,616,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,617,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,620,621,622,619,619,619,623,619,619,619,619,619,619,624,535,535,625,626,627,628,629,630,630,630,630,630,630,631,632,633,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,630,634,108,630,630,630,630,635,630,630,636,196,196,637,638,639,640,641,642,643,644,645,630,630,630,630,630,630,630,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662}, + {663,664,665,666,667,667,196,196,664,664,664,664,664,664,664,668,669,670,670,671,672,672,672,673,674,675,676,196,196,396,396,677,196,196,196,196,196,196,196,196,678,679,680,680,680,681,682,683,684,684,685,686,687,688,688,689,690,691,692,692,693,694,196,196,695,695,696,697,697,698,698,698,699,700,701,702,702,703,704,705,706,706,707,708,708,708,709,196,196,196,196,196,196,196,196,196,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,710,711,710,712,713,196,196,196,196,196,196,196,196,196,714,715,715,716,717,718,719,720,721,722,723,105,105,105,724,725,726,727,728,729,105,105,105,105,730,730,731,732,733,734,733,733,735,736,737,738,739,740,741,742,743,744,105,105,745,746,747,748,749,749,749,750,751,752,753,754,755,756,757,105,105,105,105,105,758,758,758,758,759,105,105,105,760,760,760,761,762,762,762,763,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,764,765,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,766,767,767,768,769,770,771,772,773,774,774,775,776,777,778,779,780,781,782,783,784,785,785,786,787,788,788,789,790,791,792,793,794,795,796,797,196,196,196,196,798,799,800,801,801,802,803,804,805,806,807,808,809,810,811,812,196,196,196,196,196,196,196,196,813,813,813,814,815,816,196,196,817,817,817,818,819,820,196,196,196,196,196,196,196,196,196,196,821,821,822,823,824,825,406,406,826,826,826,827,828,829,830,196,831,831,832,833,834,196,196,196,835,836,837,838,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,839,839,840,840,841,842,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,843,843,843,844,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,845,846,847,848,849,850,851,852,853,854,855,856,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,857,858,196,196,196,196,196,196,859,859,859,859,859,859,860,861,857,857,857,857,857,857,857,857,857,857,857,857,862,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,863,864,863,863,865,863,863,863,863,863,863,863,863,863,863,863,863,863,863,866,863,863,863,863,863,863,863,863,863,863,867,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,868,869,868,868,868,868,868,868,868,870,406,406,406,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,871,872,873,874,196,196,196,196,196,196,875,876,877,878,878,878,879,880,881,882,883,878,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,884,884,884,884,885,886,887,888,889,890,196,196,196,196,891,196,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,893,196,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,892,894,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,895,406,406,406,406,406,406,406,406,406,406,406,406,406,406,406,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,896,896,896,896,896,896,897,898,899,900,901,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,902,902,902,902,902,902,902,902,902,902,902,902,902,902,902,903,902,902,904,902,902,902,905,906,907,902,908,902,902,902,909,406,910,910,910,910,911,196,196,196,196,196,196,196,196,196,196,196,398,398,398,398,398,912,913,914,196,196,196,196,196,196,196,196,915,916,917,918,919,920,921,915,922,923,924,925,926,915,916,917,927,928,917,929,930,931,932,915,933,917,915,916,917,918,919,917,921,915,922,932,915,933,917,915,916,917,934,915,935,936,937,938,917,939,915,940,941,942,943,917,944,915,945,917,946,947,948,949,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,950,951,951,951,952,951,951,953,954,955,956,957,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,958,959,960,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,961,961,961,961,961,961,961,961,961,961,961,961,962,963,105,105,964,964,965,966,967,968,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,969,630,970,971,972,973,974,975,976,977,978,977,108,108,108,979,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,105,980,981,982,981,981,981,981,981,981,983,984,985,986,985,981,987,988,412,989,412,412,412,990,412,991,992,993,994,994,994,995,996,997,520,520,998,999,1000,994,994,994,994,994,994,994,994,994,994,514,514,1001,1002,514,514,514,1003,1004,1005,514,1006,1007,1008,514,1009,514,514,514,1010,1011,1012,1013,1014,1015,514,1016,1017,514,514,514,1018,1019,1020,1021,1022,1023,514,1024,1025,981,1026,980,981,981,1027,981,1028,514,514,514,514,1029,398,398,1030,514,514,1031,1032,1033,1034,1035,1036,398,398,398,398,398,398,398,1037,398,398,398,398,398,1038,994,994,1039,375,375,375,1040,1041,375,375,1040,375,1042,1043,1043,1043,1043,1043,994,1044,1045,1046,1047,1048,994,994,514,1049,994,994,1050,994,994,994,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1043,1051}, + {533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,1052,535,535,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,1053,533,533,533,533,533,533,533,533,533,533,533,533,533,1054,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,1055,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,619,623,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,1056}, + {535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,1056}, + {196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196}, + {1057,1058,1059,1059,1059,1059,1059,1059,1058,1058,1058,1058,1058,1058,1058,1058,638,638,638,638,638,638,638,638,638,638,638,638,638,638,638,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,1058,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196}, + {618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,618,1060} }; -static const nsCharProps2 sCharProp2Values[1005][16] = { - {{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,8,8,-1,1,4},{0,0,0,0,7,8,-1,1,17},{0,0,0,0,8,8,-1,1,6},{0,0,0,0,9,8,-1,1,6},{0,0,0,0,7,8,-1,1,10},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9}}, - {{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,7,12,-1,1,9},{0,0,0,0,7,12,-1,1,9},{0,0,0,0,7,12,-1,1,9},{0,0,0,0,8,12,-1,1,9}}, - {{0,0,0,29,9,8,-1,1,26},{0,0,0,21,10,8,-1,1,11},{0,0,0,21,10,8,-1,1,23},{0,0,0,21,4,8,-1,1,2},{0,0,0,23,4,8,-1,1,22},{0,0,0,21,4,8,-1,1,21},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,1,-1,1,23},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,36},{0,0,0,21,10,8,-1,1,2},{0,0,0,25,3,8,-1,1,22},{0,0,0,21,6,8,-1,1,16},{0,0,0,17,3,1,-1,1,13},{0,0,0,21,6,1,-1,1,16},{0,0,0,21,6,8,-1,1,27}}, - {{0,0,0,13,2,0,0,1,19},{0,0,0,13,2,0,1,1,19},{0,0,0,13,2,0,2,1,19},{0,0,0,13,2,0,3,1,19},{0,0,0,13,2,0,4,1,19},{0,0,0,13,2,0,5,1,19},{0,0,0,13,2,0,6,1,19},{0,0,0,13,2,0,7,1,19},{0,0,0,13,2,0,8,1,19},{0,0,0,13,2,0,9,1,19},{0,0,0,21,6,1,-1,1,16},{0,0,0,21,10,8,-1,1,16},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,11}}, - {{0,0,0,21,10,8,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,0,0,21,10,8,-1,1,22},{0,2,0,18,10,8,-1,1,36},{0,0,0,24,10,8,-1,1,2},{0,0,0,16,10,0,-1,1,2}}, - {{0,0,0,24,10,8,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,0,0,25,10,8,-1,1,4},{0,2,0,18,10,8,-1,1,8},{0,0,0,25,10,8,-1,1,2},{0,0,0,0,18,12,-1,1,9}}, - {{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,7,8,-1,1,29},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9}}, - {{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9},{0,0,0,0,18,12,-1,1,9}}, - {{0,0,0,29,6,9,-1,1,12},{0,0,0,21,10,8,-1,1,20},{0,0,0,23,4,8,-1,1,21},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,26,10,8,-1,1,2},{0,0,0,21,10,8,-1,0,1},{0,0,0,24,10,9,-1,1,1},{0,0,0,26,10,8,-1,0,2},{25,0,0,7,0,9,-1,1,1},{0,0,0,20,10,8,-1,1,23},{0,0,0,25,10,8,-1,1,2},{0,0,0,1,18,10,-1,1,4},{0,0,0,26,10,8,-1,0,2},{0,0,0,24,10,9,-1,1,2}}, - {{0,0,0,26,4,8,-1,1,21},{0,0,0,25,4,8,-1,0,22},{0,0,0,15,2,9,2,1,1},{0,0,0,15,2,9,3,1,1},{0,0,0,24,10,9,-1,1,5},{0,0,0,5,0,9,-1,1,2},{0,0,0,21,10,8,-1,1,1},{0,0,0,21,10,1,-1,1,1},{0,0,0,24,10,9,-1,1,1},{0,0,0,15,2,9,1,1,1},{25,0,0,7,0,9,-1,1,1},{0,0,0,19,10,8,-1,1,23},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,21,10,8,-1,1,20}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{0,0,0,25,10,8,-1,0,1},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{0,0,0,25,10,8,-1,0,1},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,9,-1,1,2}}, - {{25,0,0,5,0,9,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,11,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,9,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,0,-1,1,2}}, - {{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,0,-1,1,2}}, - {{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,7,0,4,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,7,0,3,-1,1,2},{25,0,0,7,0,3,-1,1,2},{25,0,0,7,0,3,-1,1,2},{25,0,0,7,0,3,-1,1,2},{25,0,0,9,0,9,-1,1,2},{25,0,0,8,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,9,0,9,-1,1,2},{25,0,0,8,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,9,0,9,-1,1,2},{25,0,0,8,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2}}, - {{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,9,-1,1,2},{25,0,0,8,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2}}, - {{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,7,0,2,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{0,0,0,6,10,3,-1,1,2},{0,0,0,6,10,3,-1,1,2},{0,0,0,6,0,0,-1,1,2},{0,0,0,6,0,0,-1,1,2},{0,0,0,6,0,3,-1,1,2},{0,0,0,6,0,3,-1,1,2},{0,0,0,6,0,3,-1,1,2}}, - {{0,0,0,6,0,3,-1,1,2},{0,0,0,6,0,3,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,6,10,3,-1,1,2},{0,0,0,6,10,3,-1,1,1},{0,0,0,6,10,3,-1,1,5},{0,0,0,6,10,3,-1,1,1},{0,0,0,6,10,3,-1,1,1},{0,0,0,6,10,3,-1,1,1},{0,0,0,6,10,3,-1,1,5},{0,0,0,6,10,3,-1,1,1},{0,0,0,6,10,3,-1,1,2},{0,0,0,6,10,3,-1,1,2}}, - {{0,0,0,6,0,3,-1,1,1},{0,0,0,6,0,3,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,9,-1,1,1},{0,0,0,24,10,9,-1,1,1},{0,0,0,24,10,9,-1,1,1},{0,0,0,24,10,9,-1,1,1},{0,0,0,24,10,9,-1,1,2},{0,0,0,24,10,9,-1,1,1},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,5}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{5,0,0,24,10,8,-1,0,2},{5,0,0,24,10,8,-1,0,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,6,0,3,-1,1,2},{0,0,0,24,10,8,-1,1,2}}, - {{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2}}, - {{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,0,-1,1,9}}, - {{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9}}, - {{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9}}, - {{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9}}, - {{1,0,0,12,17,9,-1,1,9},{1,0,0,12,17,9,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,9,-1,1,9},{1,0,0,12,17,9,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,10,-1,1,12}}, - {{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,2,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,12},{1,0,0,12,17,3,-1,1,12},{1,0,0,12,17,3,-1,1,12},{1,0,0,12,17,3,-1,1,12}}, - {{1,0,0,12,17,3,-1,1,12},{1,0,0,12,17,3,-1,1,12},{1,0,0,12,17,3,-1,1,12},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9}}, - {{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{0,0,0,6,10,9,-1,1,2},{14,0,0,24,10,1,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{14,0,0,6,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{0,0,0,21,10,9,-1,1,16},{14,0,0,9,0,4,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{14,0,0,24,10,9,-1,1,2},{0,0,0,24,10,9,-1,1,2},{14,0,0,9,0,0,-1,1,2},{0,0,0,21,10,9,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2}}, - {{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,3,-1,1,2}}, - {{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,3,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2}}, - {{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2}}, - {{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,25,10,8,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,9,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2}}, - {{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2}}, - {{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2}}, - {{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2}}, - {{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,26,0,8,-1,1,2},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,11,17,8,-1,1,9},{8,0,0,11,17,8,-1,1,9},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2}}, - {{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2}}, - {{8,0,0,9,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2}}, - {{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2}}, - {{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2}}, - {{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{3,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{3,0,0,6,0,0,-1,1,2},{3,0,0,21,0,8,-1,1,2},{3,0,0,21,0,8,-1,1,2},{3,0,0,21,0,8,-1,1,2},{3,0,0,21,0,8,-1,1,2},{3,0,0,21,0,8,-1,1,2},{3,0,0,21,0,8,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2}}, - {{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2}}, - {{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,0,-1,1,2},{3,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,21,0,8,-1,1,16},{3,0,0,17,10,1,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{3,0,0,26,10,8,-1,1,2},{3,0,0,26,10,8,-1,1,2},{3,0,0,23,4,8,-1,1,22}}, - {{103,0,0,2,1,12,-1,1,0},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9}}, - {{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,4,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9}}, - {{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,0,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,17,1,8,-1,1,4},{19,0,0,12,17,2,-1,1,9}}, - {{19,0,0,21,1,8,-1,1,2},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,2,-1,1,9},{19,0,0,21,1,8,-1,1,2},{19,0,0,12,17,2,-1,1,9},{19,0,0,12,17,4,-1,1,9},{19,0,0,21,1,8,-1,1,11},{19,0,0,12,17,4,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38}}, - {{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,7,1,0,-1,1,38},{19,0,0,21,1,1,-1,1,2},{19,0,0,21,1,1,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{2,0,0,1,5,8,-1,1,2},{2,0,0,1,5,8,-1,1,2},{2,0,0,1,5,8,-1,1,2},{2,0,0,1,5,8,-1,1,2},{2,0,0,1,5,8,-1,1,2},{0,0,0,1,5,8,-1,1,2},{2,0,0,25,10,8,-1,1,2},{2,0,0,25,10,8,-1,1,2},{2,0,0,25,13,8,-1,1,2},{2,0,0,21,4,8,-1,1,21},{2,0,0,21,4,8,-1,1,21},{2,0,0,23,13,8,-1,1,21},{0,0,0,21,6,8,-1,1,16},{2,0,0,21,13,8,-1,1,16},{2,0,0,26,10,8,-1,1,2},{2,0,0,26,10,8,-1,1,2}}, - {{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{0,0,0,21,13,8,-1,1,11},{0,0,0,1,13,10,-1,1,9},{103,0,0,2,13,12,-1,1,0},{2,0,0,21,13,8,-1,1,11},{0,0,0,21,13,8,-1,1,11}}, - {{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2}}, - {{0,0,0,6,13,7,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9}}, - {{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{1,0,0,12,17,0,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9}}, - {{2,0,0,13,5,0,0,1,19},{2,0,0,13,5,0,1,1,19},{2,0,0,13,5,0,2,1,19},{2,0,0,13,5,0,3,1,19},{2,0,0,13,5,0,4,1,19},{2,0,0,13,5,0,5,1,19},{2,0,0,13,5,0,6,1,19},{2,0,0,13,5,0,7,1,19},{2,0,0,13,5,0,8,1,19},{2,0,0,13,5,0,9,1,19},{2,0,0,21,4,8,-1,1,21},{2,0,0,21,5,8,-1,1,19},{2,0,0,21,5,8,-1,1,19},{2,0,0,21,13,8,-1,1,2},{2,0,0,7,13,4,-1,1,2},{2,0,0,7,13,4,-1,1,2}}, - {{1,0,0,12,17,0,-1,1,9},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,11,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2}}, - {{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,4,-1,1,2},{2,0,0,7,13,0,-1,1,2}}, - {{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,21,13,8,-1,1,11},{2,0,0,7,13,0,-1,1,2},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{0,0,0,1,5,8,-1,1,2},{2,0,0,26,10,8,-1,1,2},{2,0,0,12,17,2,-1,1,9}}, - {{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,6,13,0,-1,1,2},{2,0,0,6,13,0,-1,1,2},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,26,10,8,-1,1,2},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2}}, - {{2,0,0,13,2,0,0,1,19},{2,0,0,13,2,0,1,1,19},{2,0,0,13,2,0,2,1,19},{2,0,0,13,2,0,3,1,19},{2,0,0,13,2,0,4,1,19},{2,0,0,13,2,0,5,1,19},{2,0,0,13,2,0,6,1,19},{2,0,0,13,2,0,7,1,19},{2,0,0,13,2,0,8,1,19},{2,0,0,13,2,0,9,1,19},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,26,13,1,-1,1,2},{2,0,0,26,13,1,-1,1,2},{2,0,0,7,13,0,-1,1,2}}, - {{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{34,0,0,21,13,8,-1,1,2},{103,0,0,2,13,12,-1,1,0},{34,0,0,1,13,8,-1,1,2}}, - {{34,0,0,7,13,6,-1,1,2},{34,0,0,12,17,6,-1,1,9},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2}}, - {{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2}}, - {{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9}}, - {{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{34,0,0,12,17,6,-1,1,9},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2},{34,0,0,7,13,6,-1,1,2}}, - {{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2}}, - {{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,7,13,0,-1,1,2},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9},{37,0,0,12,17,0,-1,1,9}}, - {{37,0,0,12,17,0,-1,1,9},{37,0,0,7,13,0,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{87,0,0,13,1,6,0,1,19},{87,0,0,13,1,6,1,1,19},{87,0,0,13,1,6,2,1,19},{87,0,0,13,1,6,3,1,19},{87,0,0,13,1,6,4,1,19},{87,0,0,13,1,6,5,1,19},{87,0,0,13,1,6,6,1,19},{87,0,0,13,1,6,7,1,19},{87,0,0,13,1,6,8,1,19},{87,0,0,13,1,6,9,1,19},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2}}, - {{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2}}, - {{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,7,1,6,-1,1,2},{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9}}, - {{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9},{87,0,0,12,17,6,-1,1,9},{87,0,0,6,1,6,-1,1,2},{87,0,0,6,1,6,-1,1,2},{87,0,0,26,10,8,-1,1,2},{87,0,0,21,10,8,-1,1,2},{87,0,0,21,10,8,-1,1,16},{87,0,0,21,10,8,-1,1,11},{87,0,0,6,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2}}, - {{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,7,1,7,-1,1,2},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,6,1,7,-1,1,2},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9}}, - {{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,6,1,7,-1,1,2},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,6,1,7,-1,1,2},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{126,0,0,12,17,7,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{126,0,0,21,1,8,-1,1,2},{103,0,0,2,1,12,-1,1,0}}, - {{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2}}, - {{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,7,1,6,-1,1,2},{84,0,0,12,17,6,-1,1,9},{84,0,0,12,17,6,-1,1,9},{84,0,0,12,17,6,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{84,0,0,21,1,8,-1,1,2},{103,0,0,2,1,12,-1,1,0}}, - {{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,4,-1,1,2},{2,0,0,7,13,4,-1,1,2},{2,0,0,7,13,4,-1,1,2}}, - {{2,0,0,7,13,4,-1,1,2},{2,0,0,7,13,4,-1,1,2},{2,0,0,7,13,0,-1,1,2},{2,0,0,7,13,2,-1,1,2},{2,0,0,7,13,2,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9}}, - {{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9},{2,0,0,12,17,2,-1,1,9}}, - {{10,0,0,12,17,2,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,10,0,0,-1,1,9},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2}}, - {{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2}}, - {{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,12,17,0,-1,1,9},{10,0,0,10,0,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,7,0,0,-1,1,2},{10,0,0,10,0,0,-1,1,9},{10,0,0,10,0,0,-1,1,9}}, - {{10,0,0,10,0,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,10,0,0,-1,1,9},{10,0,0,10,0,0,-1,1,9},{10,0,0,10,0,0,-1,1,9},{10,0,0,10,0,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,10,0,4,-1,1,9},{10,0,0,10,0,0,-1,1,9}}, - {{10,0,0,7,0,0,-1,1,2},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{10,0,0,12,17,3,-1,1,9},{10,0,0,12,17,3,-1,1,9},{10,0,0,12,17,2,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2},{10,0,0,7,0,9,-1,1,2}}, - {{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,12,17,0,-1,1,9},{10,0,0,12,17,0,-1,1,9},{0,0,0,21,0,8,-1,1,4},{0,0,0,21,0,8,-1,1,4},{10,0,0,13,0,0,0,1,19},{10,0,0,13,0,0,1,1,19},{10,0,0,13,0,0,2,1,19},{10,0,0,13,0,0,3,1,19},{10,0,0,13,0,0,4,1,19},{10,0,0,13,0,0,5,1,19},{10,0,0,13,0,0,6,1,19},{10,0,0,13,0,0,7,1,19},{10,0,0,13,0,0,8,1,19},{10,0,0,13,0,0,9,1,19}}, - {{10,0,0,21,0,8,-1,1,2},{10,0,0,6,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2},{10,0,0,7,0,0,-1,1,2}}, - {{4,0,0,7,0,4,-1,1,2},{4,0,0,12,17,0,-1,1,9},{4,0,0,10,0,0,-1,1,9},{4,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,0,-1,1,2}}, - {{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2}}, - {{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2}}, - {{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,12,17,0,-1,1,9},{4,0,0,7,0,0,-1,1,2},{4,0,0,10,0,0,-1,1,9},{4,0,0,10,0,0,-1,1,9}}, - {{4,0,0,10,0,0,-1,1,9},{4,0,0,12,17,0,-1,1,9},{4,0,0,12,17,0,-1,1,9},{4,0,0,12,17,0,-1,1,9},{4,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,10,0,0,-1,1,9},{4,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,10,0,0,-1,1,9},{4,0,0,10,0,0,-1,1,9},{4,0,0,12,17,0,-1,1,9},{4,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,9,-1,1,2},{4,0,0,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{4,0,0,7,0,9,-1,1,2}}, - {{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,12,17,0,-1,1,9},{4,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{4,0,0,13,0,0,0,1,19},{4,0,0,13,0,0,1,1,19},{4,0,0,13,0,0,2,1,19},{4,0,0,13,0,0,3,1,19},{4,0,0,13,0,0,4,1,19},{4,0,0,13,0,0,5,1,19},{4,0,0,13,0,0,6,1,19},{4,0,0,13,0,0,7,1,19},{4,0,0,13,0,0,8,1,19},{4,0,0,13,0,0,9,1,19}}, - {{4,0,0,7,0,0,-1,1,2},{4,0,0,7,0,0,-1,1,2},{4,0,0,23,4,8,-1,1,21},{4,0,0,23,4,8,-1,1,21},{4,0,0,15,0,8,-1,1,2},{4,0,0,15,0,8,-1,1,2},{4,0,0,15,0,8,-1,1,2},{4,0,0,15,0,8,-1,1,2},{4,0,0,15,0,8,-1,1,2},{4,0,0,15,0,8,-1,1,21},{4,0,0,26,0,8,-1,1,2},{4,0,0,23,4,8,-1,1,22},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{16,0,0,12,17,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{16,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2}}, - {{16,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2}}, - {{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2}}, - {{16,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{16,0,0,10,0,0,-1,1,9},{16,0,0,10,0,0,-1,1,9}}, - {{16,0,0,10,0,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,12,17,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,12,17,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{16,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,9,-1,1,2},{16,0,0,7,0,9,-1,1,2},{16,0,0,7,0,9,-1,1,2},{16,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{16,0,0,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{16,0,0,13,0,0,0,1,19},{16,0,0,13,0,0,1,1,19},{16,0,0,13,0,0,2,1,19},{16,0,0,13,0,0,3,1,19},{16,0,0,13,0,0,4,1,19},{16,0,0,13,0,0,5,1,19},{16,0,0,13,0,0,6,1,19},{16,0,0,13,0,0,7,1,19},{16,0,0,13,0,0,8,1,19},{16,0,0,13,0,0,9,1,19}}, - {{16,0,0,12,17,0,-1,1,9},{16,0,0,12,17,0,-1,1,9},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,7,0,0,-1,1,2},{16,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{15,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,0,-1,1,2}}, - {{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2}}, - {{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2}}, - {{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{15,0,0,12,17,0,-1,1,9},{15,0,0,7,0,0,-1,1,2},{15,0,0,10,0,0,-1,1,9},{15,0,0,10,0,0,-1,1,9}}, - {{15,0,0,10,0,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{15,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{15,0,0,10,0,0,-1,1,9},{15,0,0,10,0,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{15,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{15,0,0,7,0,0,-1,1,2},{15,0,0,7,0,0,-1,1,2},{15,0,0,12,17,0,-1,1,9},{15,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{15,0,0,13,0,0,0,1,19},{15,0,0,13,0,0,1,1,19},{15,0,0,13,0,0,2,1,19},{15,0,0,13,0,0,3,1,19},{15,0,0,13,0,0,4,1,19},{15,0,0,13,0,0,5,1,19},{15,0,0,13,0,0,6,1,19},{15,0,0,13,0,0,7,1,19},{15,0,0,13,0,0,8,1,19},{15,0,0,13,0,0,9,1,19}}, - {{15,0,0,21,0,8,-1,1,2},{15,0,0,23,4,8,-1,1,22},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{15,0,0,7,0,2,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{31,0,0,12,17,0,-1,1,9},{31,0,0,10,0,0,-1,1,9},{31,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2}}, - {{31,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2}}, - {{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2}}, - {{31,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,12,17,0,-1,1,9},{31,0,0,7,0,0,-1,1,2},{31,0,0,10,0,0,-1,1,9},{31,0,0,12,17,0,-1,1,9}}, - {{31,0,0,10,0,0,-1,1,9},{31,0,0,12,17,0,-1,1,9},{31,0,0,12,17,0,-1,1,9},{31,0,0,12,17,0,-1,1,9},{31,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,10,0,0,-1,1,9},{31,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,10,0,0,-1,1,9},{31,0,0,10,0,0,-1,1,9},{31,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,12,17,0,-1,1,9},{31,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,9,-1,1,2},{31,0,0,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{31,0,0,7,0,0,-1,1,2}}, - {{31,0,0,7,0,0,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,12,17,2,-1,1,9},{31,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{31,0,0,13,0,0,0,1,19},{31,0,0,13,0,0,1,1,19},{31,0,0,13,0,0,2,1,19},{31,0,0,13,0,0,3,1,19},{31,0,0,13,0,0,4,1,19},{31,0,0,13,0,0,5,1,19},{31,0,0,13,0,0,6,1,19},{31,0,0,13,0,0,7,1,19},{31,0,0,13,0,0,8,1,19},{31,0,0,13,0,0,9,1,19}}, - {{31,0,0,26,0,8,-1,1,2},{31,0,0,7,0,0,-1,1,2},{31,0,0,15,0,8,-1,1,2},{31,0,0,15,0,8,-1,1,2},{31,0,0,15,0,8,-1,1,2},{31,0,0,15,0,8,-1,1,2},{31,0,0,15,0,8,-1,1,2},{31,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,12,17,0,-1,1,9},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2}}, - {{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2}}, - {{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,10,0,0,-1,1,9},{35,0,0,10,0,0,-1,1,9}}, - {{35,0,0,12,17,0,-1,1,9},{35,0,0,10,0,0,-1,1,9},{35,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,10,0,0,-1,1,9},{35,0,0,10,0,0,-1,1,9},{35,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{35,0,0,10,0,0,-1,1,9},{35,0,0,10,0,0,-1,1,9},{35,0,0,10,0,0,-1,1,9},{35,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{35,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{35,0,0,13,0,0,0,1,19},{35,0,0,13,0,0,1,1,19},{35,0,0,13,0,0,2,1,19},{35,0,0,13,0,0,3,1,19},{35,0,0,13,0,0,4,1,19},{35,0,0,13,0,0,5,1,19},{35,0,0,13,0,0,6,1,19},{35,0,0,13,0,0,7,1,19},{35,0,0,13,0,0,8,1,19},{35,0,0,13,0,0,9,1,19}}, - {{35,0,0,15,0,8,-1,1,2},{35,0,0,15,0,8,-1,1,2},{35,0,0,15,0,8,-1,1,2},{35,0,0,26,10,8,-1,1,2},{35,0,0,26,10,8,-1,1,2},{35,0,0,26,10,8,-1,1,2},{35,0,0,26,10,8,-1,1,2},{35,0,0,26,10,8,-1,1,2},{35,0,0,26,10,8,-1,1,2},{35,0,0,23,4,8,-1,1,22},{35,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{36,0,0,12,17,4,-1,1,9},{36,0,0,10,0,0,-1,1,9},{36,0,0,10,0,0,-1,1,9},{36,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2}}, - {{36,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2}}, - {{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2}}, - {{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,4,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{36,0,0,7,0,0,-1,1,2},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9}}, - {{36,0,0,12,17,0,-1,1,9},{36,0,0,10,0,0,-1,1,9},{36,0,0,10,0,0,-1,1,9},{36,0,0,10,0,0,-1,1,9},{36,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{36,0,0,12,17,0,-1,1,9},{36,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{36,0,0,7,0,4,-1,1,2},{36,0,0,7,0,4,-1,1,2},{36,0,0,7,0,2,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{36,0,0,7,0,0,-1,1,2},{36,0,0,7,0,0,-1,1,2},{36,0,0,12,17,2,-1,1,9},{36,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{36,0,0,13,0,0,0,1,19},{36,0,0,13,0,0,1,1,19},{36,0,0,13,0,0,2,1,19},{36,0,0,13,0,0,3,1,19},{36,0,0,13,0,0,4,1,19},{36,0,0,13,0,0,5,1,19},{36,0,0,13,0,0,6,1,19},{36,0,0,13,0,0,7,1,19},{36,0,0,13,0,0,8,1,19},{36,0,0,13,0,0,9,1,19}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{36,0,0,15,10,8,-1,1,2},{36,0,0,15,10,8,-1,1,2},{36,0,0,15,10,8,-1,1,2},{36,0,0,15,10,8,-1,1,2},{36,0,0,15,10,8,-1,1,2},{36,0,0,15,10,8,-1,1,2},{36,0,0,15,10,8,-1,1,2},{36,0,0,26,0,8,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{21,0,0,12,17,4,-1,1,9},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2}}, - {{21,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2}}, - {{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2}}, - {{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{21,0,0,12,17,0,-1,1,9},{21,0,0,7,0,0,-1,1,2},{21,0,0,10,0,0,-1,1,9},{21,0,0,12,0,0,-1,1,9}}, - {{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{21,0,0,12,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{21,0,0,12,17,0,-1,1,9},{21,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{21,0,0,10,0,0,-1,1,9},{21,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{21,0,0,12,17,0,-1,1,9},{21,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{21,0,0,13,0,0,0,1,19},{21,0,0,13,0,0,1,1,19},{21,0,0,13,0,0,2,1,19},{21,0,0,13,0,0,3,1,19},{21,0,0,13,0,0,4,1,19},{21,0,0,13,0,0,5,1,19},{21,0,0,13,0,0,6,1,19},{21,0,0,13,0,0,7,1,19},{21,0,0,13,0,0,8,1,19},{21,0,0,13,0,0,9,1,19}}, - {{103,0,0,2,0,12,-1,1,0},{21,0,0,7,0,0,-1,1,2},{21,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{26,0,0,12,17,4,-1,1,9},{26,0,0,10,0,0,-1,1,9},{26,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2}}, - {{26,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2}}, - {{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2}}, - {{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{26,0,0,7,0,0,-1,1,2},{26,0,0,10,0,0,-1,1,9},{26,0,0,10,0,0,-1,1,9}}, - {{26,0,0,10,0,0,-1,1,9},{26,0,0,12,17,0,-1,1,9},{26,0,0,12,17,0,-1,1,9},{26,0,0,12,17,0,-1,1,9},{26,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{26,0,0,10,0,0,-1,1,9},{26,0,0,10,0,0,-1,1,9},{26,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{26,0,0,10,0,0,-1,1,9},{26,0,0,10,0,0,-1,1,9},{26,0,0,10,0,0,-1,1,9},{26,0,0,12,17,0,-1,1,9},{26,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{26,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{26,0,0,7,0,4,-1,1,2}}, - {{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,12,17,2,-1,1,9},{26,0,0,12,17,2,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{26,0,0,13,0,0,0,1,19},{26,0,0,13,0,0,1,1,19},{26,0,0,13,0,0,2,1,19},{26,0,0,13,0,0,3,1,19},{26,0,0,13,0,0,4,1,19},{26,0,0,13,0,0,5,1,19},{26,0,0,13,0,0,6,1,19},{26,0,0,13,0,0,7,1,19},{26,0,0,13,0,0,8,1,19},{26,0,0,13,0,0,9,1,19}}, - {{26,0,0,15,0,8,-1,1,2},{26,0,0,15,0,8,-1,1,2},{26,0,0,15,0,8,-1,1,2},{26,0,0,15,0,8,-1,1,2},{26,0,0,15,0,8,-1,1,2},{26,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{26,0,0,26,0,8,-1,1,21},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2},{26,0,0,7,0,0,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,3,-1,1,2}}, - {{33,0,0,7,0,3,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2}}, - {{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,3,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2}}, - {{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{33,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{33,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{33,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{33,0,0,10,0,0,-1,1,9}}, - {{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,12,17,0,-1,1,9},{33,0,0,12,17,0,-1,1,9},{33,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{33,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,3,-1,1,9}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{33,0,0,13,0,4,0,1,19},{33,0,0,13,0,4,1,1,19},{33,0,0,13,0,4,2,1,19},{33,0,0,13,0,4,3,1,19},{33,0,0,13,0,4,4,1,19},{33,0,0,13,0,4,5,1,19},{33,0,0,13,0,4,6,1,19},{33,0,0,13,0,4,7,1,19},{33,0,0,13,0,4,8,1,19},{33,0,0,13,0,4,9,1,19}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{33,0,0,10,0,0,-1,1,9},{33,0,0,10,0,3,-1,1,9},{33,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24}}, - {{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24}}, - {{38,0,0,7,0,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,9,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,23,4,8,-1,1,22}}, - {{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,7,0,0,-1,1,24},{38,0,0,6,0,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,12,17,0,-1,1,24},{38,0,0,21,0,8,-1,1,2}}, - {{38,0,0,13,0,0,0,1,19},{38,0,0,13,0,0,1,1,19},{38,0,0,13,0,0,2,1,19},{38,0,0,13,0,0,3,1,19},{38,0,0,13,0,0,4,1,19},{38,0,0,13,0,0,5,1,19},{38,0,0,13,0,0,6,1,19},{38,0,0,13,0,0,7,1,19},{38,0,0,13,0,0,8,1,19},{38,0,0,13,0,0,9,1,19},{38,0,0,21,0,8,-1,1,4},{38,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24}}, - {{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24}}, - {{24,0,0,7,0,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,9,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,6,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{24,0,0,12,17,0,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{24,0,0,13,0,0,0,1,19},{24,0,0,13,0,0,1,1,19},{24,0,0,13,0,0,2,1,19},{24,0,0,13,0,0,3,1,19},{24,0,0,13,0,0,4,1,19},{24,0,0,13,0,0,5,1,19},{24,0,0,13,0,0,6,1,19},{24,0,0,13,0,0,7,1,19},{24,0,0,13,0,0,8,1,19},{24,0,0,13,0,0,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{24,0,0,7,0,9,-1,1,24},{24,0,0,7,0,9,-1,1,24},{24,0,0,7,0,0,-1,1,24},{24,0,0,7,0,0,-1,1,24}}, - {{39,0,0,7,0,0,-1,1,2},{39,0,0,26,0,8,-1,1,5},{39,0,0,26,0,8,-1,1,5},{39,0,0,26,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,2},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,12},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,1,-1,1,4},{39,0,0,21,0,9,-1,1,12},{39,0,0,21,0,8,-1,1,11},{39,0,0,21,0,8,-1,1,11},{39,0,0,21,0,8,-1,1,11}}, - {{39,0,0,21,0,8,-1,1,11},{39,0,0,21,0,8,-1,1,11},{39,0,0,21,0,8,-1,1,12},{39,0,0,26,0,8,-1,1,2},{39,0,0,21,0,8,-1,1,11},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,12,17,3,-1,1,9},{39,0,0,12,17,3,-1,1,9},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2}}, - {{39,0,0,13,0,0,0,1,19},{39,0,0,13,0,0,1,1,19},{39,0,0,13,0,0,2,1,19},{39,0,0,13,0,0,3,1,19},{39,0,0,13,0,0,4,1,19},{39,0,0,13,0,0,5,1,19},{39,0,0,13,0,0,6,1,19},{39,0,0,13,0,0,7,1,19},{39,0,0,13,0,0,8,1,19},{39,0,0,13,0,0,9,1,19},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2}}, - {{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,15,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,4},{39,0,0,12,17,0,-1,1,9},{39,0,0,26,0,8,-1,1,2},{39,0,0,12,17,0,-1,1,9},{39,0,0,26,0,8,-1,1,2},{39,0,0,12,17,2,-1,1,9},{39,1,0,22,10,8,-1,1,20},{39,2,0,18,10,8,-1,1,8},{39,1,0,22,10,8,-1,1,20},{39,2,0,18,10,8,-1,1,8},{39,0,0,10,0,0,-1,1,9},{39,0,0,10,0,0,-1,1,9}}, - {{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,9,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,9,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2}}, - {{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,9,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,9,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,9,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2}}, - {{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,9,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,11,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,11,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,10,0,0,-1,1,4}}, - {{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,21,0,8,-1,1,4},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,7,0,0,-1,1,2},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9}}, - {{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9}}, - {{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9}}, - {{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,9,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{39,0,0,12,17,0,-1,1,9},{103,0,0,2,0,12,-1,1,0},{39,0,0,26,0,8,-1,1,4},{39,0,0,26,0,8,-1,1,4}}, - {{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,12,17,0,-1,1,9},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{39,0,0,26,0,8,-1,1,2},{39,0,0,26,0,8,-1,1,2}}, - {{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,4},{39,0,0,21,0,8,-1,1,5},{39,0,0,21,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{39,0,0,21,0,8,-1,1,12},{39,0,0,21,0,8,-1,1,12},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24}}, - {{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24}}, - {{28,0,0,12,17,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,7,0,0,-1,1,24}}, - {{28,0,0,13,0,0,0,1,19},{28,0,0,13,0,0,1,1,19},{28,0,0,13,0,0,2,1,19},{28,0,0,13,0,0,3,1,19},{28,0,0,13,0,0,4,1,19},{28,0,0,13,0,0,5,1,19},{28,0,0,13,0,0,6,1,19},{28,0,0,13,0,0,7,1,19},{28,0,0,13,0,0,8,1,19},{28,0,0,13,0,0,9,1,19},{28,0,0,21,0,8,-1,1,4},{28,0,0,21,0,8,-1,1,4},{28,0,0,21,0,8,-1,1,2},{28,0,0,21,0,8,-1,1,2},{28,0,0,21,0,8,-1,1,2},{28,0,0,21,0,8,-1,1,2}}, - {{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24}}, - {{28,0,0,12,17,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24}}, - {{28,0,0,7,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24}}, - {{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24}}, - {{28,0,0,13,0,0,0,1,19},{28,0,0,13,0,0,1,1,19},{28,0,0,13,0,0,2,1,19},{28,0,0,13,0,0,3,1,19},{28,0,0,13,0,0,4,1,19},{28,0,0,13,0,0,5,1,19},{28,0,0,13,0,0,6,1,19},{28,0,0,13,0,0,7,1,19},{28,0,0,13,0,0,8,1,19},{28,0,0,13,0,0,9,1,19},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,26,0,8,-1,1,24},{28,0,0,26,0,8,-1,1,24}}, - {{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2}}, - {{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{12,0,0,9,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{12,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{12,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2}}, - {{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,4,-1,1,2},{12,0,0,7,0,4,-1,1,2},{12,0,0,7,0,4,-1,1,2},{12,0,0,7,0,4,-1,1,2},{12,0,0,7,0,4,-1,1,2},{12,0,0,7,0,4,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{0,0,0,21,0,8,-1,1,2},{12,0,0,6,0,9,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2},{12,0,0,7,0,0,-1,1,2}}, - {{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33}}, - {{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,10,-1,0,33}}, - {{18,0,0,7,0,10,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35}}, - {{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35}}, - {{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34}}, - {{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{11,0,0,12,17,0,-1,1,9},{11,0,0,12,17,0,-1,1,9},{11,0,0,12,17,0,-1,1,9}}, - {{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,4},{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,2},{11,0,0,21,0,8,-1,1,2},{11,0,0,15,0,4,1,1,2},{11,0,0,15,0,4,2,1,2},{11,0,0,15,0,4,3,1,2},{11,0,0,15,0,4,4,1,2},{11,0,0,15,0,4,5,1,2},{11,0,0,15,0,4,6,1,2},{11,0,0,15,0,4,7,1,2}}, - {{11,0,0,15,0,4,8,1,2},{11,0,0,15,0,4,9,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{11,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{11,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2}}, - {{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{6,0,0,9,0,6,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{40,0,0,17,10,8,-1,1,4},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2}}, - {{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2}}, - {{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,21,0,8,-1,0,2},{40,0,0,21,0,8,-1,0,2},{40,0,0,7,0,5,-1,0,2}}, - {{29,0,0,29,9,8,-1,1,4},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2}}, - {{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,0,0,7,0,7,-1,1,2},{29,1,0,22,10,8,-1,1,20},{29,2,0,18,10,8,-1,1,8},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2}}, - {{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{0,0,0,21,0,8,-1,1,4},{0,0,0,21,0,8,-1,1,4},{0,0,0,21,0,8,-1,1,4},{32,0,0,14,0,7,-1,1,2},{32,0,0,14,0,7,-1,1,2}}, - {{32,0,0,14,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{32,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2}}, - {{42,0,0,7,0,7,-1,1,2},{42,0,0,7,0,7,-1,1,2},{42,0,0,12,17,7,-1,1,9},{42,0,0,12,17,7,-1,1,9},{42,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2}}, - {{43,0,0,7,0,7,-1,1,2},{43,0,0,7,0,7,-1,1,2},{43,0,0,12,17,7,-1,1,9},{43,0,0,12,17,7,-1,1,9},{43,0,0,12,17,7,-1,1,9},{0,0,0,21,0,8,-1,1,4},{0,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2}}, - {{44,0,0,7,0,7,-1,1,2},{44,0,0,7,0,7,-1,1,2},{44,0,0,12,17,7,-1,1,9},{44,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{45,0,0,7,0,7,-1,1,2},{45,0,0,7,0,7,-1,1,2}}, - {{45,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{45,0,0,12,17,7,-1,1,9},{45,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24}}, - {{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,11,-1,1,24},{23,0,0,7,0,11,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,4,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24}}, - {{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,7,0,0,-1,1,24},{23,0,0,12,17,10,-1,1,24},{23,0,0,12,17,10,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24}}, - {{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,10,0,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,3,-1,1,24},{23,0,0,12,17,3,-1,1,24},{23,0,0,12,17,3,-1,1,24},{23,0,0,12,17,3,-1,1,24},{23,0,0,12,17,3,-1,1,24}}, - {{23,0,0,12,17,3,-1,1,24},{23,0,0,12,17,4,-1,1,24},{23,0,0,12,17,0,-1,1,24},{23,0,0,12,17,4,-1,1,24},{23,0,0,21,0,8,-1,1,4},{23,0,0,21,0,8,-1,1,4},{23,0,0,21,0,8,-1,1,18},{23,0,0,6,0,0,-1,1,24},{23,0,0,21,0,8,-1,1,4},{23,0,0,21,0,8,-1,1,2},{23,0,0,21,0,8,-1,1,4},{23,0,0,23,4,8,-1,1,22},{23,0,0,7,0,0,-1,1,24},{23,0,0,12,17,4,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{23,0,0,13,0,0,0,1,19},{23,0,0,13,0,0,1,1,19},{23,0,0,13,0,0,2,1,19},{23,0,0,13,0,0,3,1,19},{23,0,0,13,0,0,4,1,19},{23,0,0,13,0,0,5,1,19},{23,0,0,13,0,0,6,1,19},{23,0,0,13,0,0,7,1,19},{23,0,0,13,0,0,8,1,19},{23,0,0,13,0,0,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{23,0,0,15,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{27,0,0,21,10,8,-1,1,2},{27,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,11},{0,0,0,21,10,8,-1,1,11},{27,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{27,0,0,17,10,8,-1,1,5},{27,0,0,21,10,8,-1,1,2},{27,0,0,21,10,8,-1,1,11},{27,0,0,21,10,8,-1,1,11},{27,0,0,21,10,8,-1,1,2},{27,0,0,12,17,10,-1,1,9},{27,0,0,12,17,10,-1,1,9},{27,0,0,12,17,10,-1,1,9},{27,0,0,1,18,10,-1,1,12},{103,0,0,2,0,12,-1,1,0}}, - {{27,0,0,13,0,5,0,1,19},{27,0,0,13,0,5,1,1,19},{27,0,0,13,0,5,2,1,19},{27,0,0,13,0,5,3,1,19},{27,0,0,13,0,5,4,1,19},{27,0,0,13,0,5,5,1,19},{27,0,0,13,0,5,6,1,19},{27,0,0,13,0,5,7,1,19},{27,0,0,13,0,5,8,1,19},{27,0,0,13,0,5,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2}}, - {{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,6,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2}}, - {{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,7,0,5,-1,1,2},{27,0,0,12,17,5,-1,1,9},{27,0,0,7,0,5,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{40,0,0,7,0,5,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2}}, - {{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{48,0,0,7,0,6,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{48,0,0,12,17,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,10,0,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{48,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{48,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{48,0,0,21,10,8,-1,1,11},{48,0,0,21,10,8,-1,1,11},{48,0,0,13,0,6,0,1,19},{48,0,0,13,0,6,1,1,19},{48,0,0,13,0,6,2,1,19},{48,0,0,13,0,6,3,1,19},{48,0,0,13,0,6,4,1,19},{48,0,0,13,0,6,5,1,19},{48,0,0,13,0,6,6,1,19},{48,0,0,13,0,6,7,1,19},{48,0,0,13,0,6,8,1,19},{48,0,0,13,0,6,9,1,19}}, - {{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24}}, - {{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{52,0,0,7,0,6,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24}}, - {{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{59,0,0,7,0,6,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{59,0,0,13,0,6,0,1,19},{59,0,0,13,0,6,1,1,19},{59,0,0,13,0,6,2,1,19},{59,0,0,13,0,6,3,1,19},{59,0,0,13,0,6,4,1,19},{59,0,0,13,0,6,5,1,19},{59,0,0,13,0,6,6,1,19},{59,0,0,13,0,6,7,1,19},{59,0,0,13,0,6,8,1,19},{59,0,0,13,0,6,9,1,19},{59,0,0,15,0,6,1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{59,0,0,26,10,8,-1,1,24},{59,0,0,26,10,8,-1,1,24}}, - {{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2},{23,0,0,26,10,8,-1,1,2}}, - {{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2}}, - {{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,7,0,7,-1,1,2},{55,0,0,12,17,7,-1,1,9},{55,0,0,12,17,7,-1,1,9},{55,0,0,10,0,7,-1,1,9},{55,0,0,10,0,7,-1,1,9},{55,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{55,0,0,21,0,8,-1,1,2},{55,0,0,21,0,8,-1,1,2}}, - {{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24}}, - {{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,7,0,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{103,0,0,2,0,12,-1,1,0}}, - {{106,0,0,12,17,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,10,0,6,-1,1,24}}, - {{106,0,0,10,0,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,10,0,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{106,0,0,12,17,6,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{106,0,0,12,17,6,-1,1,9}}, - {{106,0,0,13,0,6,0,1,19},{106,0,0,13,0,6,1,1,19},{106,0,0,13,0,6,2,1,19},{106,0,0,13,0,6,3,1,19},{106,0,0,13,0,6,4,1,19},{106,0,0,13,0,6,5,1,19},{106,0,0,13,0,6,6,1,19},{106,0,0,13,0,6,7,1,19},{106,0,0,13,0,6,8,1,19},{106,0,0,13,0,6,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,6,0,6,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{106,0,0,21,0,8,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,11,17,8,-1,1,9},{103,0,0,2,0,12,-1,1,0}}, - {{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2}}, - {{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2}}, - {{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,12,17,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,10,0,6,-1,1,9}}, - {{62,0,0,10,0,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,10,0,6,-1,1,9},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{62,0,0,7,0,6,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{62,0,0,13,0,6,0,1,19},{62,0,0,13,0,6,1,1,19},{62,0,0,13,0,6,2,1,19},{62,0,0,13,0,6,3,1,19},{62,0,0,13,0,6,4,1,19},{62,0,0,13,0,6,5,1,19},{62,0,0,13,0,6,6,1,19},{62,0,0,13,0,6,7,1,19},{62,0,0,13,0,6,8,1,19},{62,0,0,13,0,6,9,1,19},{62,0,0,21,0,8,-1,1,4},{62,0,0,21,0,8,-1,1,4},{62,0,0,21,0,8,-1,1,2},{62,0,0,21,0,8,-1,1,4},{62,0,0,21,0,8,-1,1,4},{62,0,0,21,0,8,-1,1,4}}, - {{62,0,0,21,0,8,-1,1,4},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9}}, - {{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,12,17,6,-1,1,9},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{62,0,0,26,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,10,0,6,-1,1,9},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2}}, - {{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2}}, - {{113,0,0,7,0,6,-1,1,2},{113,0,0,10,0,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,10,0,6,-1,1,9},{113,0,0,10,0,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,10,0,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,12,17,6,-1,1,9},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2}}, - {{113,0,0,13,0,6,0,1,19},{113,0,0,13,0,6,1,1,19},{113,0,0,13,0,6,2,1,19},{113,0,0,13,0,6,3,1,19},{113,0,0,13,0,6,4,1,19},{113,0,0,13,0,6,5,1,19},{113,0,0,13,0,6,6,1,19},{113,0,0,13,0,6,7,1,19},{113,0,0,13,0,6,8,1,19},{113,0,0,13,0,6,9,1,19},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2},{113,0,0,7,0,6,-1,1,2}}, - {{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2}}, - {{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,7,0,6,-1,1,2},{63,0,0,12,17,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{63,0,0,12,17,6,-1,1,9},{63,0,0,12,17,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{63,0,0,12,17,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{63,0,0,12,17,6,-1,1,9}}, - {{63,0,0,12,17,6,-1,1,9},{63,0,0,12,17,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{63,0,0,10,0,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{63,0,0,21,0,8,-1,1,2},{63,0,0,21,0,8,-1,1,2},{63,0,0,21,0,8,-1,1,2},{63,0,0,21,0,8,-1,1,2}}, - {{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2}}, - {{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9}}, - {{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,10,0,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{82,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{82,0,0,21,0,8,-1,1,4},{82,0,0,21,0,8,-1,1,4},{82,0,0,21,0,8,-1,1,4},{82,0,0,21,0,8,-1,1,4},{82,0,0,21,0,8,-1,1,4}}, - {{82,0,0,13,0,6,0,1,19},{82,0,0,13,0,6,1,1,19},{82,0,0,13,0,6,2,1,19},{82,0,0,13,0,6,3,1,19},{82,0,0,13,0,6,4,1,19},{82,0,0,13,0,6,5,1,19},{82,0,0,13,0,6,6,1,19},{82,0,0,13,0,6,7,1,19},{82,0,0,13,0,6,8,1,19},{82,0,0,13,0,6,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2},{82,0,0,7,0,6,-1,1,2}}, - {{109,0,0,13,0,6,0,1,19},{109,0,0,13,0,6,1,1,19},{109,0,0,13,0,6,2,1,19},{109,0,0,13,0,6,3,1,19},{109,0,0,13,0,6,4,1,19},{109,0,0,13,0,6,5,1,19},{109,0,0,13,0,6,6,1,19},{109,0,0,13,0,6,7,1,19},{109,0,0,13,0,6,8,1,19},{109,0,0,13,0,6,9,1,19},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2}}, - {{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2}}, - {{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,7,0,6,-1,1,2},{109,0,0,6,0,6,-1,1,2},{109,0,0,6,0,6,-1,1,2},{109,0,0,6,0,6,-1,1,2},{109,0,0,6,0,6,-1,1,2},{109,0,0,6,0,6,-1,1,2},{109,0,0,6,0,6,-1,1,2},{109,0,0,21,0,8,-1,1,4},{109,0,0,21,0,8,-1,1,4}}, - {{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{113,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{0,0,0,21,0,8,-1,1,2},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9}}, - {{1,0,0,12,17,4,-1,1,9},{0,0,0,10,0,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{0,0,0,7,0,4,-1,1,2},{0,0,0,7,0,4,-1,1,2},{0,0,0,7,0,4,-1,1,2},{0,0,0,7,0,4,-1,1,2},{1,0,0,12,17,4,-1,1,9},{0,0,0,7,0,4,-1,1,2},{0,0,0,7,0,4,-1,1,2}}, - {{0,0,0,7,0,4,-1,1,2},{0,0,0,7,0,4,-1,1,2},{0,0,0,10,0,4,-1,1,9},{0,0,0,10,0,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{0,0,0,7,0,4,-1,1,2},{0,0,0,7,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{14,0,0,5,0,3,-1,1,2},{14,0,0,5,0,3,-1,1,2},{14,0,0,5,0,3,-1,1,2},{14,0,0,5,0,3,-1,1,2},{14,0,0,5,0,3,-1,1,2},{8,0,0,5,0,3,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,3,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,3,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,3,-1,1,2},{25,0,0,6,0,9,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2}}, - {{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{8,0,0,6,0,9,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{14,0,0,6,0,9,-1,1,2}}, - {{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,3,-1,1,9}}, - {{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9}}, - {{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,4,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9}}, - {{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,9,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,9,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,9,0,0,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,8,0,0,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,24,10,9,-1,1,2}}, - {{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2}}, - {{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,9,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2},{14,0,0,24,10,9,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{14,0,0,5,0,0,-1,1,2},{14,0,0,5,0,0,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,9,0,0,-1,1,2},{14,0,0,9,0,9,-1,1,2},{14,0,0,8,0,0,-1,1,2},{14,0,0,24,10,9,-1,1,5},{14,0,0,24,10,9,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,12},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,29,9,9,-1,1,4},{0,0,0,1,18,10,-1,1,28},{1,0,0,1,18,1,-1,1,9},{1,0,0,1,18,1,-1,1,9},{0,0,0,1,0,10,-1,1,9},{0,0,0,1,1,10,-1,1,9}}, - {{0,0,0,17,10,1,-1,1,4},{0,0,0,17,10,9,-1,1,12},{0,0,0,17,10,8,-1,1,4},{0,0,0,17,10,8,-1,1,4},{0,0,0,17,10,8,-1,1,3},{0,0,0,17,10,8,-1,1,1},{0,0,0,21,10,8,-1,0,1},{0,0,0,21,10,9,-1,1,2},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,1,-1,1,23},{0,0,0,22,10,8,-1,1,20},{0,0,0,20,10,8,-1,1,23},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,22,10,8,-1,1,20},{0,0,0,20,10,8,-1,1,23}}, - {{0,0,0,21,10,8,-1,0,1},{0,0,0,21,10,8,-1,0,1},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,9,-1,1,15},{0,0,0,21,10,9,-1,1,15},{0,0,0,21,10,9,-1,1,15},{0,0,0,21,10,1,-1,1,4},{0,0,0,27,9,8,-1,1,6},{0,0,0,28,7,8,-1,1,6},{0,0,0,1,11,10,-1,1,9},{0,0,0,1,14,10,-1,1,9},{0,0,0,1,16,10,-1,1,9},{0,0,0,1,12,10,-1,1,9},{0,0,0,1,15,10,-1,1,9},{0,0,0,29,6,9,-1,1,12}}, - {{0,0,0,21,4,8,-1,0,21},{0,0,0,21,4,8,-1,0,21},{0,0,0,21,4,8,-1,1,21},{0,0,0,21,4,9,-1,1,21},{0,0,0,21,4,9,-1,1,21},{0,0,0,21,10,8,-1,1,21},{0,0,0,21,10,9,-1,1,21},{0,0,0,21,10,9,-1,1,21},{0,0,0,21,10,8,-1,1,2},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,21,10,8,-1,0,1},{0,0,0,21,10,9,-1,0,18},{0,0,0,21,10,8,-1,1,18},{0,0,0,21,10,9,-1,1,2},{0,0,0,16,10,3,-1,1,2}}, - {{0,0,0,16,10,3,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,0,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,25,6,8,-1,1,16},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,21,10,9,-1,0,18},{0,0,0,21,10,9,-1,0,18},{0,0,0,21,10,9,-1,0,18},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2}}, - {{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,0,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,16,10,2,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,9,-1,1,2},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,29,9,9,-1,1,4}}, - {{0,0,0,1,18,10,-1,1,30},{0,0,0,1,18,10,-1,1,2},{0,0,0,1,18,10,-1,1,2},{0,0,0,1,18,10,-1,1,2},{0,0,0,1,18,10,-1,1,2},{103,0,0,2,0,12,-1,0,0},{0,0,0,1,20,10,-1,1,9},{0,0,0,1,21,10,-1,1,9},{0,0,0,1,19,10,-1,1,9},{0,0,0,1,22,10,-1,1,9},{0,0,0,1,18,11,-1,1,9},{0,0,0,1,18,11,-1,1,9},{0,0,0,1,18,11,-1,1,9},{0,0,0,1,18,11,-1,1,9},{0,0,0,1,18,11,-1,1,9},{0,0,0,1,18,11,-1,1,9}}, - {{0,0,0,15,2,9,0,1,2},{25,0,0,6,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,15,2,9,4,1,1},{0,0,0,15,2,9,5,1,2},{0,0,0,15,2,9,6,1,2},{0,0,0,15,2,9,7,1,2},{0,0,0,15,2,9,8,1,2},{0,0,0,15,2,9,9,1,2},{0,0,0,25,3,9,-1,1,2},{0,0,0,25,3,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,1,0,22,10,9,-1,1,20},{0,2,0,18,10,9,-1,1,8},{25,0,0,6,0,9,-1,1,1}}, - {{0,0,0,15,2,9,0,1,2},{0,0,0,15,2,9,1,1,1},{0,0,0,15,2,9,2,1,1},{0,0,0,15,2,9,3,1,1},{0,0,0,15,2,9,4,1,1},{0,0,0,15,2,9,5,1,2},{0,0,0,15,2,9,6,1,2},{0,0,0,15,2,9,7,1,2},{0,0,0,15,2,9,8,1,2},{0,0,0,15,2,9,9,1,2},{0,0,0,25,3,9,-1,1,2},{0,0,0,25,3,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,1,0,22,10,9,-1,1,20},{0,2,0,18,10,9,-1,1,8},{103,0,0,2,0,12,-1,1,0}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,21},{0,0,0,23,4,9,-1,1,22},{0,0,1,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22}}, - {{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,21},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,21},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,22},{0,0,0,23,4,8,-1,1,21},{103,0,0,2,4,12,-1,1,22}}, - {{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22},{103,0,0,2,4,12,-1,1,22}}, - {{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,11,17,8,-1,0,9},{1,0,0,11,17,8,-1,0,9},{1,0,0,11,17,8,-1,0,9}}, - {{1,0,0,11,17,8,-1,0,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,11,17,8,-1,0,9},{1,0,0,11,17,8,-1,0,9},{1,0,0,11,17,8,-1,0,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9},{1,0,0,12,17,7,-1,1,9}}, - {{1,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,9,-1,0,2},{0,0,0,26,10,9,-1,0,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,26,10,9,-1,0,21},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,9,-1,0,1},{0,0,0,26,10,9,-1,0,2},{0,0,0,9,0,9,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,9,-1,0,21},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,0,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,26,10,9,-1,0,22},{0,0,0,26,10,8,-1,0,2},{0,0,0,25,10,3,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,9,-1,0,2},{0,0,0,26,10,9,-1,0,1},{0,0,0,26,10,9,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,26,10,8,-1,0,2},{14,0,0,9,0,9,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,26,10,8,-1,0,2},{25,0,0,9,0,9,-1,1,2},{25,0,0,9,0,9,-1,1,1},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,26,4,3,-1,0,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{25,0,0,9,0,4,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,7,0,9,-1,0,2},{0,0,0,7,0,9,-1,0,2},{0,0,0,7,0,9,-1,0,2},{0,0,0,7,0,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,9,0,9,-1,0,2},{0,0,0,9,0,9,-1,0,2}}, - {{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,9,0,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,5,0,9,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{25,0,0,5,0,4,-1,1,2},{0,0,0,26,0,8,-1,0,2}}, - {{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,2},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,2}}, - {{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2}}, - {{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,1},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2},{25,0,0,14,0,9,-1,0,2}}, - {{25,0,0,14,0,4,-1,0,2},{25,0,0,14,0,4,-1,0,2},{25,0,0,14,0,4,-1,0,2},{25,0,0,9,0,4,-1,0,2},{25,0,0,5,0,4,-1,0,2},{25,0,0,14,0,4,-1,0,2},{25,0,0,14,0,4,-1,0,2},{25,0,0,14,0,4,-1,0,2},{25,0,0,14,0,4,-1,0,2},{0,0,0,15,10,9,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,3,8,-1,1,22},{0,0,0,25,4,8,-1,1,22},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,0,1},{0,0,0,25,10,8,-1,1,1}}, - {{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,9,-1,1,1},{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,9,-1,1,2}}, - {{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,0,1},{0,0,0,25,10,8,-1,0,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,1}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,15}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,1,1,22,10,11,-1,3,20},{0,2,1,18,10,11,-1,3,8},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2}}, - {{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2}}, - {{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,15,10,9,1,0,1},{0,0,0,15,10,9,2,0,1},{0,0,0,15,10,9,3,0,1},{0,0,0,15,10,9,4,0,1},{0,0,0,15,10,9,5,0,1},{0,0,0,15,10,9,6,0,1},{0,0,0,15,10,9,7,0,1},{0,0,0,15,10,9,8,0,1},{0,0,0,15,10,9,9,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1}}, - {{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,1,0,1},{0,0,0,15,10,9,2,0,1},{0,0,0,15,10,9,3,0,1},{0,0,0,15,10,9,4,0,1},{0,0,0,15,10,9,5,0,1},{0,0,0,15,10,9,6,0,1},{0,0,0,15,10,9,7,0,1},{0,0,0,15,10,9,8,0,1},{0,0,0,15,10,9,9,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1}}, - {{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,10,9,-1,0,1},{0,0,0,15,2,9,1,0,1},{0,0,0,15,2,9,2,0,1},{0,0,0,15,2,9,3,0,1},{0,0,0,15,2,9,4,0,1},{0,0,0,15,2,9,5,0,1},{0,0,0,15,2,9,6,0,1},{0,0,0,15,2,9,7,0,1},{0,0,0,15,2,9,8,0,1}}, - {{0,0,0,15,2,9,9,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,15,2,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1}}, - {{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1}}, - {{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,15,10,9,0,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1}}, - {{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,1,0,1},{0,0,0,15,10,8,2,0,1},{0,0,0,15,10,8,3,0,1},{0,0,0,15,10,8,4,0,1},{0,0,0,15,10,8,5,0,1},{0,0,0,15,10,8,6,0,1},{0,0,0,15,10,8,7,0,1},{0,0,0,15,10,8,8,0,1},{0,0,0,15,10,8,9,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,0,0,2}}, - {{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1}}, - {{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,25,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,1},{0,0,0,25,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1}}, - {{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,25,10,8,-1,0,1}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1}}, - {{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,23}}, - {{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,11},{0,0,0,26,10,8,-1,0,11},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8}}, - {{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,15,10,8,1,0,1},{0,0,0,15,10,8,2,0,1},{0,0,0,15,10,8,3,0,1},{0,0,0,15,10,8,4,0,1},{0,0,0,15,10,8,5,0,1},{0,0,0,15,10,8,6,0,1},{0,0,0,15,10,8,7,0,1},{0,0,0,15,10,8,8,0,1},{0,0,0,15,10,8,9,0,1},{0,0,0,15,10,8,-1,0,1}}, - {{0,0,0,15,10,8,1,0,1},{0,0,0,15,10,8,2,0,1},{0,0,0,15,10,8,3,0,1},{0,0,0,15,10,8,4,0,1},{0,0,0,15,10,8,5,0,1},{0,0,0,15,10,8,6,0,1},{0,0,0,15,10,8,7,0,1},{0,0,0,15,10,8,8,0,1},{0,0,0,15,10,8,9,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,1,0,1},{0,0,0,15,10,8,2,0,1},{0,0,0,15,10,8,3,0,1},{0,0,0,15,10,8,4,0,1},{0,0,0,15,10,8,5,0,1},{0,0,0,15,10,8,6,0,1}}, - {{0,0,0,15,10,8,7,0,1},{0,0,0,15,10,8,8,0,1},{0,0,0,15,10,8,9,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8}}, - {{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2},{46,0,0,26,0,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20}}, - {{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,25,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,0,1},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2}}, - {{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{56,0,0,9,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2}}, - {{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{56,0,0,5,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{25,0,0,9,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,9,0,3,-1,1,2},{25,0,0,9,0,3,-1,1,2},{25,0,0,9,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2}}, - {{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,5,0,3,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2}}, - {{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2}}, - {{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,26,10,8,-1,1,2},{7,0,0,26,10,8,-1,1,2},{7,0,0,26,10,8,-1,1,2},{7,0,0,26,10,8,-1,1,2},{7,0,0,26,10,8,-1,1,2},{7,0,0,26,10,8,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{7,0,0,12,17,7,-1,1,9}}, - {{7,0,0,12,17,7,-1,1,9},{7,0,0,12,17,7,-1,1,9},{7,0,0,9,0,7,-1,1,2},{7,0,0,5,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{7,0,0,21,10,8,-1,1,11},{7,0,0,21,10,8,-1,1,4},{7,0,0,21,10,8,-1,1,4},{7,0,0,21,10,8,-1,1,4},{7,0,0,15,10,8,-1,1,2},{7,0,0,21,10,8,-1,1,11},{7,0,0,21,10,8,-1,1,4}}, - {{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2}}, - {{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{12,0,0,5,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{12,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{12,0,0,5,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2}}, - {{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{60,0,0,7,0,5,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{60,0,0,6,0,9,-1,1,2}}, - {{60,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{60,0,0,12,17,5,-1,1,9}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9},{8,0,0,12,17,4,-1,1,9}}, - {{0,0,0,21,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,23},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,23},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,23},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4}}, - {{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,2},{0,0,0,17,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,20},{0,0,0,21,10,8,-1,1,4},{0,0,0,17,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2}}, - {{0,0,0,20,10,8,-1,1,23},{0,0,0,19,10,8,-1,1,23},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,1,0,22,10,8,-1,1,20},{0,2,0,18,10,8,-1,1,8},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,11},{0,0,0,6,10,8,-1,1,2}}, - {{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,21,10,8,-1,1,2},{0,0,0,17,10,8,-1,1,3},{0,0,0,17,10,8,-1,1,3},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,2}}, - {{0,0,0,17,10,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,22,10,8,-1,1,20},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14}}, - {{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,9,-1,0,14}}, - {{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,8,-1,0,14},{17,0,1,26,10,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14}}, - {{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{17,0,1,26,10,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,29,9,9,-1,0,4},{0,0,1,21,10,8,-1,2,8},{0,0,1,21,10,8,-1,2,8},{0,0,1,21,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{17,0,1,6,0,0,-1,0,18},{0,0,1,7,0,0,-1,0,14},{17,0,1,14,0,0,-1,0,14},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8}}, - {{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,1,1,22,10,8,-1,3,20},{0,2,1,18,10,8,-1,3,8},{0,0,1,17,10,8,-1,3,18},{0,0,1,22,10,8,-1,3,20},{0,0,1,18,10,8,-1,3,8},{0,0,1,18,10,8,-1,3,8}}, - {{0,0,1,26,10,8,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{17,0,1,14,0,3,-1,0,14},{1,0,1,12,17,3,-1,0,9},{1,0,1,12,17,3,-1,0,9},{1,0,1,12,17,3,-1,0,9},{1,0,1,12,17,3,-1,0,9},{18,0,1,10,0,4,-1,0,9},{18,0,1,10,0,4,-1,0,9}}, - {{0,0,1,17,10,8,-1,3,14},{0,0,1,6,0,3,-1,0,14},{0,0,1,6,0,3,-1,0,14},{0,0,1,6,0,3,-1,0,14},{0,0,1,6,0,3,-1,0,14},{0,0,1,6,0,3,-1,0,9},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,8,-1,0,14},{17,0,1,14,0,9,-1,0,14},{17,0,1,14,0,9,-1,0,14},{17,0,1,14,0,9,-1,0,14},{17,0,1,6,0,3,-1,0,18},{0,0,1,7,0,3,-1,0,18},{0,0,1,21,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{103,0,0,2,0,12,-1,0,0},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14}}, - {{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14}}, - {{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14}}, - {{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,0,14}}, - {{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,0,14},{20,0,1,7,0,0,-1,2,37},{20,0,1,7,0,0,-1,2,37},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{1,0,1,12,17,0,-1,0,9},{1,0,1,12,17,0,-1,0,9},{0,0,1,24,10,9,-1,2,18},{0,0,1,24,10,9,-1,2,18},{20,0,1,6,0,0,-1,0,18},{20,0,1,6,0,0,-1,0,18},{20,0,1,7,0,9,-1,0,14}}, - {{0,0,1,17,10,1,-1,3,18},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14}}, - {{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14}}, - {{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14}}, - {{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14}}, - {{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,2,37},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{22,0,1,7,0,0,-1,0,14},{0,0,1,21,10,1,-1,0,18},{0,0,1,6,0,0,-1,3,37},{22,0,1,6,0,0,-1,0,18},{22,0,1,6,0,0,-1,0,18},{22,0,1,7,0,9,-1,0,14}}, - {{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14}}, - {{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14}}, - {{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,2,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{103,0,0,2,0,12,-1,0,0},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14}}, - {{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14}}, - {{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,10,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14}}, - {{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{18,0,1,7,0,9,-1,0,14},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,26,0,8,-1,0,14},{0,0,1,26,0,8,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14}}, - {{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{5,0,1,7,0,0,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14}}, - {{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{0,0,1,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37},{22,0,1,7,0,3,-1,2,37}}, - {{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14}}, - {{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,10,9,-1,0,14},{18,0,1,26,10,9,-1,0,14},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,15,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1},{0,0,0,15,0,8,-1,0,1}}, - {{0,0,1,26,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14}}, - {{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,0,9,-1,0,14},{18,0,1,26,10,9,-1,0,14},{18,0,1,26,10,9,-1,0,14},{18,0,1,26,10,9,-1,0,14},{0,0,1,26,0,8,-1,0,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14},{0,0,1,15,10,9,-1,0,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14}}, - {{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14}}, - {{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{22,0,1,26,0,9,-1,0,14},{103,0,0,2,0,12,-1,0,0}}, - {{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14}}, - {{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{22,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,2,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,26,10,9,-1,0,14}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,10,9,-1,0,14}}, - {{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14}}, - {{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14}}, - {{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,6,0,5,-1,0,18},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14}}, - {{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{41,0,1,7,0,5,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14}}, - {{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{41,0,1,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2}}, - {{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,7,0,6,-1,1,2},{131,0,0,6,0,6,-1,1,2},{131,0,0,6,0,6,-1,1,2},{131,0,0,6,0,6,-1,1,2},{131,0,0,6,0,6,-1,1,2},{131,0,0,6,0,6,-1,1,2},{131,0,0,6,0,6,-1,1,2},{131,0,0,21,0,8,-1,1,4},{131,0,0,21,0,8,-1,1,4}}, - {{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2}}, - {{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{99,0,0,6,0,6,-1,1,2},{99,0,0,21,10,8,-1,1,4},{99,0,0,21,10,8,-1,1,11},{99,0,0,21,10,8,-1,1,4}}, - {{99,0,0,13,0,6,0,1,19},{99,0,0,13,0,6,1,1,19},{99,0,0,13,0,6,2,1,19},{99,0,0,13,0,6,3,1,19},{99,0,0,13,0,6,4,1,19},{99,0,0,13,0,6,5,1,19},{99,0,0,13,0,6,6,1,19},{99,0,0,13,0,6,7,1,19},{99,0,0,13,0,6,8,1,19},{99,0,0,13,0,6,9,1,19},{99,0,0,7,0,6,-1,1,2},{99,0,0,7,0,6,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{8,0,0,9,0,0,-1,1,2},{8,0,0,5,0,0,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,7,0,4,-1,1,2},{8,0,0,12,17,2,-1,1,9}}, - {{8,0,0,11,17,8,-1,1,9},{8,0,0,11,17,8,-1,1,9},{8,0,0,11,17,8,-1,1,9},{8,0,0,21,10,8,-1,1,2},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,0,-1,1,9},{8,0,0,12,17,2,-1,1,9},{8,0,0,12,17,2,-1,1,9},{8,0,0,21,10,8,-1,1,2},{8,0,0,6,10,0,-1,1,2}}, - {{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,9,0,4,-1,1,2},{8,0,0,5,0,4,-1,1,2},{8,0,0,6,0,9,-1,1,2},{8,0,0,6,0,9,-1,1,2},{8,0,0,12,17,2,-1,1,9},{8,0,0,12,17,0,-1,1,9}}, - {{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2}}, - {{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2},{130,0,0,14,0,6,-1,1,2}}, - {{130,0,0,12,17,6,-1,1,9},{130,0,0,12,17,6,-1,1,9},{130,0,0,21,0,8,-1,1,2},{130,0,0,21,0,8,-1,1,4},{130,0,0,21,0,8,-1,1,4},{130,0,0,21,0,8,-1,1,4},{130,0,0,21,0,8,-1,1,4},{130,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,6,10,0,-1,1,2}}, - {{0,0,0,24,10,8,-1,1,2},{0,0,0,24,10,8,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,6,0,9,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{0,0,0,6,10,0,-1,1,2},{0,0,0,24,0,8,-1,1,2},{0,0,0,24,0,8,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,7,0,2,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,9,0,0,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,4,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,9,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{25,0,0,7,0,4,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,5,0,0,-1,1,2},{25,0,0,7,0,4,-1,1,2},{25,0,0,7,0,4,-1,1,2},{25,0,0,7,0,4,-1,1,2},{25,0,0,7,0,4,-1,1,2},{25,0,0,7,0,4,-1,1,2}}, - {{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,12,17,6,-1,1,9},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,12,17,6,-1,1,9},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,12,17,6,-1,1,9},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2}}, - {{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2}}, - {{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,7,0,6,-1,1,2},{58,0,0,10,0,6,-1,1,9},{58,0,0,10,0,6,-1,1,9},{58,0,0,12,17,6,-1,1,9},{58,0,0,12,17,6,-1,1,9},{58,0,0,10,0,6,-1,1,9},{58,0,0,26,10,8,-1,1,2},{58,0,0,26,10,8,-1,1,2},{58,0,0,26,10,8,-1,1,2},{58,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,23,4,8,-1,1,21},{0,0,0,26,4,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2}}, - {{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,7,0,7,-1,1,2},{90,0,0,21,10,8,-1,1,5},{90,0,0,21,10,8,-1,1,5},{90,0,0,21,10,8,-1,1,11},{90,0,0,21,10,8,-1,1,11},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2}}, - {{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2}}, - {{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,7,0,6,-1,1,2},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9}}, - {{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,10,0,6,-1,1,9},{111,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{111,0,0,21,0,8,-1,1,4},{111,0,0,21,0,8,-1,1,4}}, - {{111,0,0,13,0,6,0,1,19},{111,0,0,13,0,6,1,1,19},{111,0,0,13,0,6,2,1,19},{111,0,0,13,0,6,3,1,19},{111,0,0,13,0,6,4,1,19},{111,0,0,13,0,6,5,1,19},{111,0,0,13,0,6,6,1,19},{111,0,0,13,0,6,7,1,19},{111,0,0,13,0,6,8,1,19},{111,0,0,13,0,6,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9}}, - {{10,0,0,12,17,4,-1,1,9},{10,0,0,12,17,4,-1,1,9},{10,0,0,7,0,4,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,21,0,8,-1,1,2},{10,0,0,21,0,8,-1,1,2},{10,0,0,21,0,8,-1,1,2},{10,0,0,7,0,4,-1,1,2},{10,0,0,21,0,8,-1,1,5},{10,0,0,7,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{79,0,0,13,0,6,0,1,19},{79,0,0,13,0,6,1,1,19},{79,0,0,13,0,6,2,1,19},{79,0,0,13,0,6,3,1,19},{79,0,0,13,0,6,4,1,19},{79,0,0,13,0,6,5,1,19},{79,0,0,13,0,6,6,1,19},{79,0,0,13,0,6,7,1,19},{79,0,0,13,0,6,8,1,19},{79,0,0,13,0,6,9,1,19},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2}}, - {{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2}}, - {{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,7,0,6,-1,1,2},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{79,0,0,12,17,6,-1,1,9},{0,0,0,21,0,8,-1,1,4},{79,0,0,21,0,8,-1,1,4}}, - {{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2}}, - {{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,7,0,7,-1,1,2},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9}}, - {{110,0,0,12,17,7,-1,1,9},{110,0,0,12,17,7,-1,1,9},{110,0,0,10,0,7,-1,1,9},{110,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{110,0,0,21,0,8,-1,1,2}}, - {{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{18,0,1,7,0,4,-1,0,33},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{78,0,0,12,17,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2}}, - {{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2}}, - {{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,7,0,6,-1,1,2},{78,0,0,12,17,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,12,17,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,10,0,6,-1,1,9},{78,0,0,10,0,6,-1,1,9}}, - {{78,0,0,10,0,6,-1,1,9},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,4},{78,0,0,21,0,8,-1,1,4},{78,0,0,21,0,8,-1,1,4},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,6,0,7,-1,1,2}}, - {{78,0,0,13,0,6,0,1,19},{78,0,0,13,0,6,1,1,19},{78,0,0,13,0,6,2,1,19},{78,0,0,13,0,6,3,1,19},{78,0,0,13,0,6,4,1,19},{78,0,0,13,0,6,5,1,19},{78,0,0,13,0,6,6,1,19},{78,0,0,13,0,6,7,1,19},{78,0,0,13,0,6,8,1,19},{78,0,0,13,0,6,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{78,0,0,21,0,8,-1,1,2},{78,0,0,21,0,8,-1,1,2}}, - {{28,0,0,7,0,4,-1,1,24},{28,0,0,7,0,4,-1,1,24},{28,0,0,7,0,4,-1,1,24},{28,0,0,7,0,4,-1,1,24},{28,0,0,7,0,4,-1,1,24},{28,0,0,12,17,4,-1,1,24},{28,0,0,6,0,4,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24}}, - {{28,0,0,13,0,0,0,1,19},{28,0,0,13,0,0,1,1,19},{28,0,0,13,0,0,2,1,19},{28,0,0,13,0,0,3,1,19},{28,0,0,13,0,0,4,1,19},{28,0,0,13,0,0,5,1,19},{28,0,0,13,0,0,6,1,19},{28,0,0,13,0,0,7,1,19},{28,0,0,13,0,0,8,1,19},{28,0,0,13,0,0,9,1,19},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{103,0,0,2,0,12,-1,1,0}}, - {{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2}}, - {{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,10,0,6,-1,1,9}}, - {{66,0,0,10,0,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,10,0,6,-1,1,9},{66,0,0,10,0,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{66,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,12,17,6,-1,1,9},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,7,0,6,-1,1,2},{66,0,0,12,17,6,-1,1,9},{66,0,0,10,0,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{66,0,0,13,0,6,0,1,19},{66,0,0,13,0,6,1,1,19},{66,0,0,13,0,6,2,1,19},{66,0,0,13,0,6,3,1,19},{66,0,0,13,0,6,4,1,19},{66,0,0,13,0,6,5,1,19},{66,0,0,13,0,6,6,1,19},{66,0,0,13,0,6,7,1,19},{66,0,0,13,0,6,8,1,19},{66,0,0,13,0,6,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{66,0,0,21,0,8,-1,1,2},{66,0,0,21,0,8,-1,1,4},{66,0,0,21,0,8,-1,1,4},{66,0,0,21,0,8,-1,1,4}}, - {{28,0,0,6,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,26,0,8,-1,1,24},{28,0,0,26,0,8,-1,1,24},{28,0,0,26,0,8,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,12,17,0,-1,1,24},{28,0,0,10,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24},{28,0,0,7,0,0,-1,1,24}}, - {{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24}}, - {{127,0,0,12,17,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,12,17,6,-1,1,24}}, - {{127,0,0,7,0,6,-1,1,24},{127,0,0,12,17,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{127,0,0,7,0,6,-1,1,24},{127,0,0,7,0,6,-1,1,24},{127,0,0,6,0,6,-1,1,24},{127,0,0,21,0,8,-1,1,24},{127,0,0,21,0,8,-1,1,24}}, - {{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,10,0,6,-1,1,9},{115,0,0,12,17,6,-1,1,9},{115,0,0,12,17,6,-1,1,9},{115,0,0,10,0,6,-1,1,9},{115,0,0,10,0,6,-1,1,9}}, - {{115,0,0,21,0,8,-1,1,4},{115,0,0,21,0,8,-1,1,4},{115,0,0,7,0,6,-1,1,2},{115,0,0,6,0,6,-1,1,2},{115,0,0,6,0,6,-1,1,2},{115,0,0,10,0,6,-1,1,9},{115,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{11,0,0,7,0,0,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2}}, - {{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{25,0,0,5,0,4,-1,1,2},{0,0,0,24,0,8,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2},{25,0,0,6,0,9,-1,1,2}}, - {{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,2,-1,1,2},{25,0,0,5,0,4,-1,1,2},{14,0,0,5,0,4,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2},{6,0,0,5,0,6,-1,1,2}}, - {{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2}}, - {{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,7,0,6,-1,1,2},{115,0,0,10,0,6,-1,1,9},{115,0,0,10,0,6,-1,1,9},{115,0,0,12,17,6,-1,1,9},{115,0,0,10,0,6,-1,1,9},{115,0,0,10,0,6,-1,1,9},{115,0,0,12,17,6,-1,1,9},{115,0,0,10,0,6,-1,1,9},{115,0,0,10,0,6,-1,1,9},{115,0,0,21,0,8,-1,1,4},{115,0,0,10,0,6,-1,1,9},{115,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{115,0,0,13,0,6,0,1,19},{115,0,0,13,0,6,1,1,19},{115,0,0,13,0,6,2,1,19},{115,0,0,13,0,6,3,1,19},{115,0,0,13,0,6,4,1,19},{115,0,0,13,0,6,5,1,19},{115,0,0,13,0,6,6,1,19},{115,0,0,13,0,6,7,1,19},{115,0,0,13,0,6,8,1,19},{115,0,0,13,0,6,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{18,0,1,7,0,0,-1,0,31},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32}}, - {{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,31},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32}}, - {{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32}}, - {{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,31},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32}}, - {{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,31},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32}}, - {{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{18,0,1,7,0,0,-1,0,32},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{18,0,0,7,0,4,-1,0,35},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34}}, - {{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{18,0,0,7,0,4,-1,0,34},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25},{103,0,0,4,0,12,-1,1,25}}, - {{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0}}, - {{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14}}, - {{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14}}, - {{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14}}, - {{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14}}, - {{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{17,0,1,7,0,9,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{25,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{3,0,0,5,0,9,-1,1,2},{3,0,0,5,0,9,-1,1,2},{3,0,0,5,0,9,-1,1,2},{3,0,0,5,0,9,-1,1,2},{3,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{19,0,0,7,1,9,-1,1,38},{19,0,0,12,17,3,-1,1,9},{19,0,0,7,1,9,-1,1,38}}, - {{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,25,3,9,-1,1,2},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38}}, - {{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{103,0,0,2,1,12,-1,1,0},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{103,0,0,2,1,12,-1,1,0},{19,0,0,7,1,9,-1,1,38},{103,0,0,2,1,12,-1,1,0}}, - {{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{103,0,0,2,1,12,-1,1,0},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{103,0,0,2,1,12,-1,1,0},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38},{19,0,0,7,1,9,-1,1,38}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2}}, - {{2,0,0,24,13,8,-1,1,2},{2,0,0,24,13,8,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{0,0,0,18,10,8,-1,1,8},{0,0,0,22,10,8,-1,1,20}}, - {{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,23,13,9,-1,1,21},{2,0,0,26,10,8,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9},{1,0,0,12,17,10,-1,1,9}}, - {{0,0,1,21,10,9,-1,0,16},{0,0,1,21,10,9,-1,0,8},{0,0,1,21,10,9,-1,0,8},{0,0,1,21,10,9,-1,0,16},{0,0,1,21,10,9,-1,0,16},{0,0,1,21,10,9,-1,0,11},{0,0,1,21,10,9,-1,0,11},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,21,10,9,-1,0,15},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{1,0,0,12,17,3,-1,1,9},{8,0,0,12,17,3,-1,1,9},{8,0,0,12,17,3,-1,1,9}}, - {{0,0,1,21,10,9,-1,0,14},{0,0,1,17,10,9,-1,0,14},{0,0,1,17,10,9,-1,0,14},{0,0,1,16,10,9,-1,0,14},{0,0,1,16,10,9,-1,0,14},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20}}, - {{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,21,10,8,-1,0,14},{0,0,1,21,10,8,-1,0,14},{0,0,1,22,10,9,-1,0,20},{0,0,1,18,10,9,-1,0,8},{0,0,1,21,10,9,-1,1,14},{0,0,1,21,10,9,-1,1,14},{0,0,1,21,10,9,-1,1,14},{0,0,1,21,10,9,-1,1,14},{0,0,1,16,10,9,-1,1,14},{0,0,1,16,10,9,-1,1,14},{0,0,1,16,10,9,-1,1,14}}, - {{0,0,1,21,6,9,-1,2,8},{0,0,1,21,10,9,-1,2,14},{0,0,1,21,6,9,-1,2,8},{103,0,0,2,0,12,-1,0,0},{0,0,1,21,10,9,-1,0,18},{0,0,1,21,6,9,-1,0,18},{0,0,1,21,10,9,-1,0,11},{0,0,1,21,10,9,-1,0,11},{0,0,1,17,10,9,-1,1,14},{0,1,1,22,10,9,-1,3,20},{0,2,1,18,10,9,-1,3,8},{0,1,1,22,10,9,-1,3,20},{0,2,1,18,10,9,-1,3,8},{0,1,1,22,10,9,-1,3,20},{0,2,1,18,10,9,-1,3,8},{0,0,1,21,4,9,-1,0,14}}, - {{0,0,1,21,10,9,-1,0,14},{0,0,1,21,10,9,-1,0,14},{0,0,1,25,3,9,-1,0,14},{0,0,1,17,3,9,-1,1,14},{0,0,1,25,10,9,-1,1,14},{0,0,1,25,10,9,-1,1,14},{0,0,1,25,10,9,-1,1,14},{103,0,0,2,0,12,-1,0,0},{0,0,1,21,10,9,-1,0,14},{0,0,1,23,4,9,-1,0,22},{0,0,1,21,4,9,-1,0,21},{0,0,1,21,10,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,3,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{0,0,0,1,18,10,-1,1,30}}, - {{103,0,0,2,0,12,-1,1,0},{0,0,1,21,10,9,-1,2,11},{0,0,1,21,10,9,-1,0,14},{0,0,1,21,4,9,-1,0,14},{0,0,1,23,4,9,-1,0,22},{0,0,1,21,4,9,-1,0,21},{0,0,1,21,10,9,-1,0,14},{0,0,1,21,10,9,-1,0,14},{0,1,1,22,10,9,-1,3,20},{0,2,1,18,10,9,-1,3,8},{0,0,1,21,10,9,-1,0,14},{0,0,1,25,3,9,-1,0,14},{0,0,1,21,6,9,-1,2,8},{0,0,1,17,3,9,-1,1,14},{0,0,1,21,6,9,-1,2,8},{0,0,1,21,6,9,-1,0,14}}, - {{0,0,1,13,2,9,0,0,14},{0,0,1,13,2,9,1,0,14},{0,0,1,13,2,9,2,0,14},{0,0,1,13,2,9,3,0,14},{0,0,1,13,2,9,4,0,14},{0,0,1,13,2,9,5,0,14},{0,0,1,13,2,9,6,0,14},{0,0,1,13,2,9,7,0,14},{0,0,1,13,2,9,8,0,14},{0,0,1,13,2,9,9,0,14},{0,0,1,21,6,9,-1,3,18},{0,0,1,21,10,9,-1,3,18},{0,0,1,25,10,9,-1,1,14},{0,0,1,25,10,9,-1,1,14},{0,0,1,25,10,9,-1,1,14},{0,0,1,21,10,9,-1,2,11}}, - {{0,0,1,21,10,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14}}, - {{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{25,0,1,9,0,9,-1,0,14},{0,1,1,22,10,9,-1,3,20},{0,0,1,21,10,9,-1,0,14},{0,2,1,18,10,9,-1,3,8},{0,0,1,24,10,9,-1,0,14},{0,0,1,16,10,9,-1,3,14}}, - {{0,0,1,24,10,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14}}, - {{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{25,0,1,5,0,9,-1,0,14},{0,1,1,22,10,9,-1,3,20},{0,0,1,25,10,9,-1,3,14},{0,2,1,18,10,9,-1,3,8},{0,0,1,25,10,9,-1,3,14},{0,1,1,22,10,9,-1,3,20}}, - {{0,2,1,18,10,9,-1,3,8},{0,0,1,21,10,9,-1,1,8},{0,1,1,22,10,9,-1,1,20},{0,2,1,18,10,9,-1,1,8},{0,0,1,21,10,9,-1,1,8},{0,0,1,21,10,9,-1,1,18},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,37}}, - {{0,0,1,6,0,9,-1,1,37},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2}}, - {{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2}}, - {{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{22,0,1,7,0,9,-1,1,2},{0,0,1,6,0,9,-1,1,18},{0,0,1,6,0,9,-1,1,18}}, - {{18,0,1,7,0,10,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2}}, - {{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{18,0,1,7,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,1,23,4,9,-1,0,21},{0,0,1,23,4,9,-1,0,22},{0,0,1,25,10,9,-1,0,14},{0,0,1,24,10,9,-1,3,14},{0,0,1,26,10,9,-1,0,14},{0,0,1,23,4,9,-1,0,22},{0,0,1,23,4,9,-1,0,22},{103,0,0,2,0,12,-1,0,0},{0,0,1,26,10,9,-1,1,2},{0,0,1,25,10,9,-1,1,2},{0,0,1,25,10,9,-1,1,2},{0,0,1,25,10,9,-1,1,2},{0,0,1,25,10,9,-1,1,2},{0,0,1,26,10,9,-1,1,2},{0,0,1,26,10,9,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{0,0,0,1,10,8,-1,1,9},{0,0,0,1,10,8,-1,1,9},{0,0,0,1,10,8,-1,1,9},{0,0,0,26,10,8,-1,0,7},{0,0,0,26,10,8,-1,0,1},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2}}, - {{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2}}, - {{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2}}, - {{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{49,0,0,7,0,7,-1,1,2}}, - {{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{49,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,21,0,8,-1,1,4},{0,0,0,21,10,8,-1,1,4},{0,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2}}, - {{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2}}, - {{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{0,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2}}, - {{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2}}, - {{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,14,10,4,-1,1,2},{14,0,0,15,10,8,-1,1,2},{14,0,0,15,10,8,-1,1,2},{14,0,0,15,10,8,-1,1,2},{14,0,0,15,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2}}, - {{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,15,10,8,-1,1,2},{14,0,0,15,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{14,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{0,0,0,26,0,8,-1,1,2},{1,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2}}, - {{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{107,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2},{104,0,0,7,0,7,-1,1,2}}, - {{104,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{1,0,0,12,17,4,-1,1,9},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2}}, - {{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{0,0,0,15,2,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2},{30,0,0,7,0,7,-1,1,2}}, - {{30,0,0,15,0,8,-1,1,2},{30,0,0,15,0,8,-1,1,2},{30,0,0,15,0,8,-1,1,2},{30,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2}}, - {{13,0,0,7,0,7,-1,1,2},{13,0,0,14,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,7,0,7,-1,1,2},{13,0,0,14,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2}}, - {{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,7,0,7,-1,1,2},{89,0,0,12,17,7,-1,1,9},{89,0,0,12,17,7,-1,1,9},{89,0,0,12,17,7,-1,1,9},{89,0,0,12,17,7,-1,1,9},{89,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2}}, - {{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{53,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{53,0,0,21,0,8,-1,1,4}}, - {{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2}}, - {{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2},{61,0,0,7,0,7,-1,1,2}}, - {{61,0,0,21,0,8,-1,1,4},{61,0,0,14,0,7,-1,1,2},{61,0,0,14,0,7,-1,1,2},{61,0,0,14,0,7,-1,1,2},{61,0,0,14,0,7,-1,1,2},{61,0,0,14,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2}}, - {{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,9,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2}}, - {{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2},{9,0,0,5,0,7,-1,1,2}}, - {{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2},{51,0,0,7,0,7,-1,1,2}}, - {{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2}}, - {{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{50,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{50,0,0,13,0,7,0,1,19},{50,0,0,13,0,7,1,1,19},{50,0,0,13,0,7,2,1,19},{50,0,0,13,0,7,3,1,19},{50,0,0,13,0,7,4,1,19},{50,0,0,13,0,7,5,1,19},{50,0,0,13,0,7,6,1,19},{50,0,0,13,0,7,7,1,19},{50,0,0,13,0,7,8,1,19},{50,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2}}, - {{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{136,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2}}, - {{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{159,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{159,0,0,21,0,8,-1,1,2}}, - {{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2}}, - {{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{83,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{47,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2}}, - {{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2}}, - {{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{47,0,0,7,1,7,-1,1,2},{47,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{47,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{47,0,0,7,1,7,-1,1,2}}, - {{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2}}, - {{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{116,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{116,0,0,21,1,8,-1,1,4},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2},{116,0,0,15,1,8,-1,1,2}}, - {{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2}}, - {{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,7,1,7,-1,1,2},{144,0,0,26,1,8,-1,1,2},{144,0,0,26,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2},{144,0,0,15,1,8,-1,1,2}}, - {{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2}}, - {{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{143,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0}}, - {{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2},{143,0,0,15,1,8,-1,1,2}}, - {{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2}}, - {{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{162,0,0,7,1,7,-1,1,2},{162,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{162,0,0,15,1,8,-1,1,2},{162,0,0,15,1,8,-1,1,2},{162,0,0,15,1,8,-1,1,2},{162,0,0,15,1,8,-1,1,2},{162,0,0,15,1,8,-1,1,2}}, - {{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2}}, - {{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,7,1,7,-1,1,2},{91,0,0,15,1,8,-1,1,2},{91,0,0,15,1,8,-1,1,2},{91,0,0,15,1,8,-1,1,2},{91,0,0,15,1,8,-1,1,2},{91,0,0,15,1,8,-1,1,2},{91,0,0,15,1,8,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{91,0,0,21,10,8,-1,1,4}}, - {{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2}}, - {{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{108,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{108,0,0,21,1,8,-1,1,2}}, - {{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2},{86,0,0,7,1,7,-1,0,2}}, - {{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2}}, - {{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,7,1,7,-1,1,2},{141,0,0,7,1,7,-1,1,2}}, - {{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2}}, - {{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2},{141,0,0,15,1,8,-1,1,2}}, - {{57,0,0,7,1,7,-1,1,2},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{103,0,0,2,1,12,-1,1,0},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9}}, - {{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2}}, - {{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2}}, - {{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{57,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{57,0,0,12,17,7,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{57,0,0,12,17,7,-1,1,9}}, - {{57,0,0,15,1,8,1,1,2},{57,0,0,15,1,8,2,1,2},{57,0,0,15,1,8,3,1,2},{57,0,0,15,1,8,4,1,2},{57,0,0,15,1,8,-1,1,2},{57,0,0,15,1,8,-1,1,2},{57,0,0,15,1,8,-1,1,2},{57,0,0,15,1,8,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,4},{57,0,0,21,1,8,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2}}, - {{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,7,1,7,-1,1,2},{133,0,0,15,1,8,-1,1,2},{133,0,0,15,1,8,-1,1,2},{133,0,0,21,1,8,-1,1,2}}, - {{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2}}, - {{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,7,1,7,-1,1,2},{142,0,0,15,1,8,-1,1,2},{142,0,0,15,1,8,-1,1,2},{142,0,0,15,1,8,-1,1,2}}, - {{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,26,1,8,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2}}, - {{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2}}, - {{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,7,1,7,-1,1,2},{121,0,0,12,17,7,-1,1,9},{121,0,0,12,17,7,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{121,0,0,15,1,8,-1,1,2},{121,0,0,15,1,8,-1,1,2},{121,0,0,15,1,8,-1,1,2},{121,0,0,15,1,8,-1,1,2},{121,0,0,15,1,8,-1,1,2}}, - {{121,0,0,21,1,8,-1,1,4},{121,0,0,21,1,8,-1,1,4},{121,0,0,21,1,8,-1,1,4},{121,0,0,21,1,8,-1,1,4},{121,0,0,21,1,8,-1,1,4},{121,0,0,21,1,8,-1,1,4},{121,0,0,21,1,8,-1,1,15},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2}}, - {{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{117,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{117,0,0,21,10,8,-1,1,4},{117,0,0,21,10,8,-1,1,4},{117,0,0,21,10,8,-1,1,4},{117,0,0,21,10,8,-1,1,4},{117,0,0,21,10,8,-1,1,4},{117,0,0,21,10,8,-1,1,4},{117,0,0,21,10,8,-1,1,4}}, - {{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2}}, - {{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{125,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2},{125,0,0,15,1,8,-1,1,2}}, - {{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2}}, - {{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{122,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2},{122,0,0,15,1,8,-1,1,2}}, - {{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2}}, - {{123,0,0,7,1,7,-1,1,2},{123,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{123,0,0,21,1,8,-1,1,2},{123,0,0,21,1,8,-1,1,2},{123,0,0,21,1,8,-1,1,2},{123,0,0,21,1,8,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{123,0,0,15,1,8,-1,1,2},{123,0,0,15,1,8,-1,1,2},{123,0,0,15,1,8,-1,1,2},{123,0,0,15,1,8,-1,1,2},{123,0,0,15,1,8,-1,1,2},{123,0,0,15,1,8,-1,1,2},{123,0,0,15,1,8,-1,1,2}}, - {{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2}}, - {{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{88,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2}}, - {{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{76,0,0,9,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2}}, - {{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{76,0,0,5,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{76,0,0,15,1,8,-1,1,2},{76,0,0,15,1,8,-1,1,2},{76,0,0,15,1,8,-1,1,2},{76,0,0,15,1,8,-1,1,2},{76,0,0,15,1,8,-1,1,2},{76,0,0,15,1,8,-1,1,2}}, - {{2,0,0,15,5,8,1,1,2},{2,0,0,15,5,8,2,1,2},{2,0,0,15,5,8,3,1,2},{2,0,0,15,5,8,4,1,2},{2,0,0,15,5,8,5,1,2},{2,0,0,15,5,8,6,1,2},{2,0,0,15,5,8,7,1,2},{2,0,0,15,5,8,8,1,2},{2,0,0,15,5,8,9,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2}}, - {{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{2,0,0,15,5,8,-1,1,2},{103,0,0,2,1,12,-1,1,0}}, - {{65,0,0,10,0,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,10,0,7,-1,1,9},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2}}, - {{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2}}, - {{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,7,0,7,-1,1,2},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9}}, - {{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,12,17,7,-1,1,9},{65,0,0,21,0,8,-1,1,4},{65,0,0,21,0,8,-1,1,4},{65,0,0,21,0,8,-1,1,2},{65,0,0,21,0,8,-1,1,2},{65,0,0,21,0,8,-1,1,2},{65,0,0,21,0,8,-1,1,2},{65,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{65,0,0,15,10,8,1,1,2},{65,0,0,15,10,8,2,1,2},{65,0,0,15,10,8,3,1,2},{65,0,0,15,10,8,4,1,2},{65,0,0,15,10,8,5,1,2},{65,0,0,15,10,8,6,1,2},{65,0,0,15,10,8,7,1,2},{65,0,0,15,10,8,8,1,2},{65,0,0,15,10,8,9,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2}}, - {{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,15,10,8,-1,1,2},{65,0,0,13,0,7,0,1,19},{65,0,0,13,0,7,1,1,19},{65,0,0,13,0,7,2,1,19},{65,0,0,13,0,7,3,1,19},{65,0,0,13,0,7,4,1,19},{65,0,0,13,0,7,5,1,19},{65,0,0,13,0,7,6,1,19},{65,0,0,13,0,7,7,1,19},{65,0,0,13,0,7,8,1,19},{65,0,0,13,0,7,9,1,19}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{65,0,0,12,17,7,-1,1,9}}, - {{120,0,0,12,17,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,10,0,7,-1,1,9},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2}}, - {{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2},{120,0,0,7,0,7,-1,1,2}}, - {{120,0,0,10,0,7,-1,1,9},{120,0,0,10,0,7,-1,1,9},{120,0,0,10,0,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,10,0,7,-1,1,9},{120,0,0,10,0,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,12,17,7,-1,1,9},{120,0,0,21,0,8,-1,1,2},{120,0,0,21,0,8,-1,1,2},{120,0,0,1,0,8,-1,1,2},{120,0,0,21,0,8,-1,1,4},{120,0,0,21,0,8,-1,1,4}}, - {{120,0,0,21,0,8,-1,1,4},{120,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2}}, - {{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{152,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{152,0,0,13,0,7,0,1,19},{152,0,0,13,0,7,1,1,19},{152,0,0,13,0,7,2,1,19},{152,0,0,13,0,7,3,1,19},{152,0,0,13,0,7,4,1,19},{152,0,0,13,0,7,5,1,19},{152,0,0,13,0,7,6,1,19},{152,0,0,13,0,7,7,1,19},{152,0,0,13,0,7,8,1,19},{152,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2}}, - {{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2}}, - {{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,7,0,6,-1,1,2},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,10,0,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9}}, - {{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{118,0,0,12,17,6,-1,1,9},{103,0,0,2,0,12,-1,1,0},{118,0,0,13,0,6,0,1,19},{118,0,0,13,0,6,1,1,19},{118,0,0,13,0,6,2,1,19},{118,0,0,13,0,6,3,1,19},{118,0,0,13,0,6,4,1,19},{118,0,0,13,0,6,5,1,19},{118,0,0,13,0,6,6,1,19},{118,0,0,13,0,6,7,1,19},{118,0,0,13,0,6,8,1,19},{118,0,0,13,0,6,9,1,19}}, - {{118,0,0,21,0,8,-1,1,4},{118,0,0,21,0,8,-1,1,4},{118,0,0,21,0,8,-1,1,4},{118,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2}}, - {{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,7,0,7,-1,1,2},{160,0,0,12,17,7,-1,1,9},{160,0,0,21,0,8,-1,1,2},{160,0,0,21,0,8,-1,1,5},{160,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,10,0,7,-1,1,9},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2}}, - {{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2}}, - {{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,10,0,7,-1,1,9},{151,0,0,10,0,7,-1,1,9},{151,0,0,10,0,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,10,0,7,-1,1,9}}, - {{151,0,0,10,0,7,-1,1,9},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,7,0,7,-1,1,2},{151,0,0,21,0,8,-1,1,4},{151,0,0,21,0,8,-1,1,4},{151,0,0,21,0,8,-1,1,2},{151,0,0,21,0,8,-1,1,4},{151,0,0,21,0,8,-1,1,2},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,12,17,7,-1,1,9},{151,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{151,0,0,13,0,7,0,1,19},{151,0,0,13,0,7,1,1,19},{151,0,0,13,0,7,2,1,19},{151,0,0,13,0,7,3,1,19},{151,0,0,13,0,7,4,1,19},{151,0,0,13,0,7,5,1,19},{151,0,0,13,0,7,6,1,19},{151,0,0,13,0,7,7,1,19},{151,0,0,13,0,7,8,1,19},{151,0,0,13,0,7,9,1,19},{151,0,0,7,0,7,-1,1,2},{151,0,0,21,0,8,-1,1,5},{151,0,0,7,0,7,-1,1,2},{151,0,0,21,0,8,-1,1,4},{151,0,0,21,0,8,-1,1,4},{151,0,0,21,0,8,-1,1,4}}, - {{103,0,0,2,0,12,-1,1,0},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2}}, - {{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{33,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2}}, - {{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2}}, - {{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,7,0,7,-1,1,2},{157,0,0,10,0,7,-1,1,9},{157,0,0,10,0,7,-1,1,9},{157,0,0,10,0,7,-1,1,9},{157,0,0,12,17,7,-1,1,9}}, - {{157,0,0,12,17,7,-1,1,9},{157,0,0,12,17,7,-1,1,9},{157,0,0,10,0,7,-1,1,9},{157,0,0,10,0,7,-1,1,9},{157,0,0,12,17,7,-1,1,9},{157,0,0,10,0,7,-1,1,9},{157,0,0,12,17,7,-1,1,9},{157,0,0,12,17,7,-1,1,9},{157,0,0,21,0,8,-1,1,4},{157,0,0,21,0,8,-1,1,4},{157,0,0,21,0,8,-1,1,2},{157,0,0,21,0,8,-1,1,4},{157,0,0,21,0,8,-1,1,4},{157,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{164,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{164,0,0,7,0,7,-1,1,2}}, - {{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{164,0,0,7,0,7,-1,1,2}}, - {{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,7,0,7,-1,1,2},{164,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2}}, - {{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,7,0,7,-1,1,2},{145,0,0,12,17,7,-1,1,9}}, - {{145,0,0,10,0,7,-1,1,9},{145,0,0,10,0,7,-1,1,9},{145,0,0,10,0,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{145,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{145,0,0,13,0,7,0,1,19},{145,0,0,13,0,7,1,1,19},{145,0,0,13,0,7,2,1,19},{145,0,0,13,0,7,3,1,19},{145,0,0,13,0,7,4,1,19},{145,0,0,13,0,7,5,1,19},{145,0,0,13,0,7,6,1,19},{145,0,0,13,0,7,7,1,19},{145,0,0,13,0,7,8,1,19},{145,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2}}, - {{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2}}, - {{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2}}, - {{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,12,17,7,-1,1,9},{137,0,0,7,0,7,-1,1,2},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9}}, - {{137,0,0,12,17,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{137,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2}}, - {{137,0,0,7,0,7,-1,1,2},{137,0,0,7,0,7,-1,1,2},{137,0,0,10,0,7,-1,1,9},{137,0,0,10,0,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{137,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2}}, - {{158,0,0,10,0,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,12,17,7,-1,1,9}}, - {{158,0,0,12,17,7,-1,1,9},{158,0,0,10,0,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,12,17,7,-1,1,9},{158,0,0,7,0,7,-1,1,2},{158,0,0,7,0,7,-1,1,2},{158,0,0,21,0,8,-1,1,2},{158,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{158,0,0,13,0,7,0,1,19},{158,0,0,13,0,7,1,1,19},{158,0,0,13,0,7,2,1,19},{158,0,0,13,0,7,3,1,19},{158,0,0,13,0,7,4,1,19},{158,0,0,13,0,7,5,1,19},{158,0,0,13,0,7,6,1,19},{158,0,0,13,0,7,7,1,19},{158,0,0,13,0,7,8,1,19},{158,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2}}, - {{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,10,0,7,-1,0,9}}, - {{166,0,0,10,0,7,-1,0,9},{166,0,0,10,0,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{166,0,0,10,0,7,-1,0,9},{166,0,0,10,0,7,-1,0,9},{166,0,0,10,0,7,-1,0,9},{166,0,0,10,0,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{166,0,0,10,0,7,-1,0,9},{166,0,0,12,17,7,-1,0,9}}, - {{166,0,0,12,17,7,-1,0,9},{166,0,0,21,0,8,-1,0,5},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,11},{166,0,0,21,0,8,-1,0,11},{166,0,0,21,0,8,-1,0,2},{166,0,0,21,0,8,-1,0,2},{166,0,0,21,0,8,-1,0,2},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4}}, - {{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,21,0,8,-1,0,4},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,7,0,7,-1,0,2},{166,0,0,12,17,7,-1,0,9},{166,0,0,12,17,7,-1,0,9},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2},{163,0,0,7,0,7,-1,1,2}}, - {{163,0,0,10,0,7,-1,1,9},{163,0,0,10,0,7,-1,1,9},{163,0,0,10,0,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,10,0,7,-1,1,9},{163,0,0,10,0,7,-1,1,9},{163,0,0,12,17,7,-1,1,9},{163,0,0,10,0,7,-1,1,9},{163,0,0,12,17,7,-1,1,9}}, - {{163,0,0,12,17,7,-1,1,9},{163,0,0,21,0,8,-1,1,4},{163,0,0,21,0,8,-1,1,4},{163,0,0,21,0,8,-1,1,2},{163,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{163,0,0,13,0,7,0,1,19},{163,0,0,13,0,7,1,1,19},{163,0,0,13,0,7,2,1,19},{163,0,0,13,0,7,3,1,19},{163,0,0,13,0,7,4,1,19},{163,0,0,13,0,7,5,1,19},{163,0,0,13,0,7,6,1,19},{163,0,0,13,0,7,7,1,19},{163,0,0,13,0,7,8,1,19},{163,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2}}, - {{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,7,0,7,-1,1,2},{153,0,0,12,17,7,-1,1,9},{153,0,0,10,0,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{153,0,0,10,0,7,-1,1,9},{153,0,0,10,0,7,-1,1,9}}, - {{153,0,0,12,17,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{153,0,0,10,0,7,-1,1,9},{153,0,0,12,17,7,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{153,0,0,13,0,7,0,1,19},{153,0,0,13,0,7,1,1,19},{153,0,0,13,0,7,2,1,19},{153,0,0,13,0,7,3,1,19},{153,0,0,13,0,7,4,1,19},{153,0,0,13,0,7,5,1,19},{153,0,0,13,0,7,6,1,19},{153,0,0,13,0,7,7,1,19},{153,0,0,13,0,7,8,1,19},{153,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24}}, - {{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{161,0,0,7,0,7,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24}}, - {{161,0,0,10,0,7,-1,1,24},{161,0,0,10,0,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,10,0,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{161,0,0,12,17,7,-1,1,24},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{161,0,0,13,0,7,0,1,19},{161,0,0,13,0,7,1,1,19},{161,0,0,13,0,7,2,1,19},{161,0,0,13,0,7,3,1,19},{161,0,0,13,0,7,4,1,19},{161,0,0,13,0,7,5,1,19},{161,0,0,13,0,7,6,1,19},{161,0,0,13,0,7,7,1,19},{161,0,0,13,0,7,8,1,19},{161,0,0,13,0,7,9,1,19},{161,0,0,15,0,8,-1,1,24},{161,0,0,15,0,8,-1,1,24},{161,0,0,21,0,8,-1,1,4},{161,0,0,21,0,8,-1,1,4},{161,0,0,21,0,8,-1,1,4},{161,0,0,26,0,8,-1,1,24}}, - {{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2},{146,0,0,9,0,7,-1,1,2}}, - {{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2},{146,0,0,5,0,7,-1,1,2}}, - {{146,0,0,13,0,7,0,1,19},{146,0,0,13,0,7,1,1,19},{146,0,0,13,0,7,2,1,19},{146,0,0,13,0,7,3,1,19},{146,0,0,13,0,7,4,1,19},{146,0,0,13,0,7,5,1,19},{146,0,0,13,0,7,6,1,19},{146,0,0,13,0,7,7,1,19},{146,0,0,13,0,7,8,1,19},{146,0,0,13,0,7,9,1,19},{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2}}, - {{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2},{146,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{146,0,0,7,0,7,-1,1,2}}, - {{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2}}, - {{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{165,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2}}, - {{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2}}, - {{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{101,0,0,14,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{101,0,0,21,0,8,-1,1,4},{101,0,0,21,0,8,-1,1,4},{101,0,0,21,0,8,-1,1,4},{101,0,0,21,0,8,-1,1,4},{101,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{101,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2}}, - {{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,20},{71,0,0,7,0,7,-1,0,20},{71,0,0,7,0,7,-1,0,20},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2}}, - {{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,20},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,20},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2}}, - {{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,20},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,8},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2}}, - {{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{71,0,0,7,0,7,-1,0,2},{103,0,0,2,0,12,-1,0,0}}, - {{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2}}, - {{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,20},{156,0,0,7,0,7,-1,1,8}}, - {{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{156,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{130,0,0,7,0,6,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2}}, - {{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{149,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{149,0,0,13,0,7,0,1,19},{149,0,0,13,0,7,1,1,19},{149,0,0,13,0,7,2,1,19},{149,0,0,13,0,7,3,1,19},{149,0,0,13,0,7,4,1,19},{149,0,0,13,0,7,5,1,19},{149,0,0,13,0,7,6,1,19},{149,0,0,13,0,7,7,1,19},{149,0,0,13,0,7,8,1,19},{149,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{149,0,0,21,0,8,-1,1,4},{149,0,0,21,0,8,-1,1,4}}, - {{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2}}, - {{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{134,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{134,0,0,12,17,7,-1,1,9},{134,0,0,12,17,7,-1,1,9},{134,0,0,12,17,7,-1,1,9},{134,0,0,12,17,7,-1,1,9},{134,0,0,12,17,7,-1,1,9},{134,0,0,21,0,8,-1,1,4},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2}}, - {{75,0,0,12,17,7,-1,1,9},{75,0,0,12,17,7,-1,1,9},{75,0,0,12,17,7,-1,1,9},{75,0,0,12,17,7,-1,1,9},{75,0,0,12,17,7,-1,1,9},{75,0,0,12,17,7,-1,1,9},{75,0,0,12,17,7,-1,1,9},{75,0,0,21,0,8,-1,1,4},{75,0,0,21,0,8,-1,1,4},{75,0,0,21,0,8,-1,1,4},{75,0,0,21,0,8,-1,1,2},{75,0,0,21,0,8,-1,1,2},{75,0,0,26,0,8,-1,1,2},{75,0,0,26,0,8,-1,1,2},{75,0,0,26,0,8,-1,1,2},{75,0,0,26,0,8,-1,1,2}}, - {{75,0,0,6,0,7,-1,1,2},{75,0,0,6,0,7,-1,1,2},{75,0,0,6,0,7,-1,1,2},{75,0,0,6,0,7,-1,1,2},{75,0,0,21,0,8,-1,1,4},{75,0,0,26,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{75,0,0,13,0,7,0,1,19},{75,0,0,13,0,7,1,1,19},{75,0,0,13,0,7,2,1,19},{75,0,0,13,0,7,3,1,19},{75,0,0,13,0,7,4,1,19},{75,0,0,13,0,7,5,1,19},{75,0,0,13,0,7,6,1,19},{75,0,0,13,0,7,7,1,19},{75,0,0,13,0,7,8,1,19},{75,0,0,13,0,7,9,1,19},{103,0,0,2,0,12,-1,1,0},{75,0,0,15,0,8,-1,1,2},{75,0,0,15,0,8,-1,1,2},{75,0,0,15,0,8,-1,1,2},{75,0,0,15,0,8,-1,1,2},{75,0,0,15,0,8,-1,1,2}}, - {{75,0,0,15,0,8,-1,1,2},{75,0,0,15,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2}}, - {{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2},{75,0,0,7,0,7,-1,1,2}}, - {{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2}}, - {{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{92,0,0,7,0,5,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{92,0,0,7,0,5,-1,1,2},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9}}, - {{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9}}, - {{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{92,0,0,10,0,5,-1,1,9},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{92,0,0,12,17,5,-1,1,9}}, - {{92,0,0,12,17,5,-1,1,9},{92,0,0,12,17,5,-1,1,9},{92,0,0,12,17,5,-1,1,9},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2},{92,0,0,6,0,5,-1,1,2}}, - {{22,0,1,7,0,4,-1,0,14},{20,0,1,7,0,4,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2}}, - {{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{135,0,0,7,0,7,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{135,0,0,26,0,8,-1,1,2},{135,0,0,12,17,7,-1,1,9},{135,0,0,12,17,7,-1,1,9},{135,0,0,21,0,8,-1,1,4}}, - {{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2}}, - {{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,10,0,7,-1,0,9},{0,0,0,10,0,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,10,0,7,-1,0,9},{0,0,0,10,0,7,-1,0,9},{0,0,0,10,0,7,-1,0,9}}, - {{0,0,0,10,0,7,-1,0,9},{0,0,0,10,0,7,-1,0,9},{0,0,0,10,0,7,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{0,0,0,1,18,10,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9}}, - {{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{1,0,0,12,17,7,-1,0,9},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,9,-1,0,2}}, - {{0,0,0,26,0,9,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2}}, - {{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{0,0,0,26,0,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2}}, - {{14,0,0,26,10,8,-1,1,2},{14,0,0,26,10,8,-1,1,2},{14,0,0,12,17,7,-1,1,9},{14,0,0,12,17,7,-1,1,9},{14,0,0,12,17,7,-1,1,9},{14,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2}}, - {{0,0,0,15,0,8,-1,0,2},{0,0,0,15,0,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,25,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,25,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,25,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,25,10,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,25,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,25,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2}}, - {{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,25,10,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{0,0,0,9,0,9,-1,1,2},{0,0,0,5,0,9,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{0,0,0,13,2,9,0,1,19},{0,0,0,13,2,9,1,1,19}}, - {{0,0,0,13,2,9,2,1,19},{0,0,0,13,2,9,3,1,19},{0,0,0,13,2,9,4,1,19},{0,0,0,13,2,9,5,1,19},{0,0,0,13,2,9,6,1,19},{0,0,0,13,2,9,7,1,19},{0,0,0,13,2,9,8,1,19},{0,0,0,13,2,9,9,1,19},{0,0,0,13,2,9,0,1,19},{0,0,0,13,2,9,1,1,19},{0,0,0,13,2,9,2,1,19},{0,0,0,13,2,9,3,1,19},{0,0,0,13,2,9,4,1,19},{0,0,0,13,2,9,5,1,19},{0,0,0,13,2,9,6,1,19},{0,0,0,13,2,9,7,1,19}}, - {{0,0,0,13,2,9,8,1,19},{0,0,0,13,2,9,9,1,19},{0,0,0,13,2,9,0,1,19},{0,0,0,13,2,9,1,1,19},{0,0,0,13,2,9,2,1,19},{0,0,0,13,2,9,3,1,19},{0,0,0,13,2,9,4,1,19},{0,0,0,13,2,9,5,1,19},{0,0,0,13,2,9,6,1,19},{0,0,0,13,2,9,7,1,19},{0,0,0,13,2,9,8,1,19},{0,0,0,13,2,9,9,1,19},{0,0,0,13,2,9,0,1,19},{0,0,0,13,2,9,1,1,19},{0,0,0,13,2,9,2,1,19},{0,0,0,13,2,9,3,1,19}}, - {{0,0,0,13,2,9,4,1,19},{0,0,0,13,2,9,5,1,19},{0,0,0,13,2,9,6,1,19},{0,0,0,13,2,9,7,1,19},{0,0,0,13,2,9,8,1,19},{0,0,0,13,2,9,9,1,19},{0,0,0,13,2,9,0,1,19},{0,0,0,13,2,9,1,1,19},{0,0,0,13,2,9,2,1,19},{0,0,0,13,2,9,3,1,19},{0,0,0,13,2,9,4,1,19},{0,0,0,13,2,9,5,1,19},{0,0,0,13,2,9,6,1,19},{0,0,0,13,2,9,7,1,19},{0,0,0,13,2,9,8,1,19},{0,0,0,13,2,9,9,1,19}}, - {{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2}}, - {{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9}}, - {{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9}}, - {{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2}}, - {{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,12,17,7,-1,1,9},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2}}, - {{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,12,17,7,-1,1,9},{112,0,0,26,0,8,-1,1,2},{112,0,0,26,0,8,-1,1,2},{112,0,0,21,0,8,-1,1,4},{112,0,0,21,0,8,-1,1,4},{112,0,0,21,0,8,-1,1,4},{112,0,0,21,0,8,-1,1,4},{112,0,0,21,0,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9}}, - {{103,0,0,2,0,12,-1,1,0},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9},{112,0,0,12,17,7,-1,1,9}}, - {{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2}}, - {{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{140,0,0,7,1,7,-1,1,2},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2},{140,0,0,15,1,8,-1,1,2}}, - {{140,0,0,12,17,7,-1,1,9},{140,0,0,12,17,7,-1,1,9},{140,0,0,12,17,7,-1,1,9},{140,0,0,12,17,7,-1,1,9},{140,0,0,12,17,7,-1,1,9},{140,0,0,12,17,7,-1,1,9},{140,0,0,12,17,7,-1,1,9},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0},{103,0,0,2,1,12,-1,1,0}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2}}, - {{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{103,0,0,2,13,12,-1,1,0},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2},{2,0,0,7,13,9,-1,1,2}}, - {{2,0,0,25,10,8,-1,1,2},{2,0,0,25,10,8,-1,1,2},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0},{103,0,0,2,13,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0}}, - {{103,0,0,2,0,12,-1,0,0},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,15,2,9,0,0,1},{0,0,0,15,2,9,0,0,1},{0,0,0,15,2,9,1,0,1},{0,0,0,15,2,9,2,0,1},{0,0,0,15,2,9,3,0,1},{0,0,0,15,2,9,4,0,1},{0,0,0,15,2,9,5,0,1},{0,0,0,15,2,9,6,0,1},{0,0,0,15,2,9,7,0,1},{0,0,0,15,2,9,8,0,1},{0,0,0,15,2,9,9,0,1},{0,0,0,15,10,8,-1,0,1},{0,0,0,15,10,8,-1,0,1},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,9,-1,0,2},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1}}, - {{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,10,9,-1,0,2},{0,0,0,26,10,9,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,0,9,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{0,0,0,26,0,8,-1,0,1},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39}}, - {{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39},{0,0,0,26,0,8,-1,0,39}}, - {{20,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,2,14},{0,0,1,26,0,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,1,26,0,9,-1,0,14},{0,0,1,26,0,9,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,24,10,8,-1,0,2},{0,0,0,24,10,8,-1,0,2},{0,0,0,24,10,8,-1,0,2},{0,0,0,24,10,8,-1,0,2},{0,0,0,24,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,23},{0,0,0,26,10,8,-1,0,18},{0,0,0,26,10,8,-1,0,18},{0,0,0,26,10,8,-1,0,18},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2}}, - {{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{0,0,0,26,10,8,-1,0,14},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{0,0,0,26,10,8,-1,0,2},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0},{103,0,0,2,0,12,-1,0,0}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{0,0,0,26,10,8,-1,1,2},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{0,0,0,26,10,8,-1,1,14},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,26,10,8,-1,1,14},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{17,0,1,7,0,0,-1,0,14},{17,0,1,7,0,0,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14}}, - {{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,1,2,0,12,-1,0,14},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{103,0,0,2,0,12,-1,1,0},{0,0,0,1,18,11,-1,1,9},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}}, - {{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9}}, - {{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,10,-1,1,9},{0,0,0,1,18,11,-1,1,9}}, - {{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,3,0,12,-1,0,0},{103,0,0,2,0,12,-1,1,0},{103,0,0,2,0,12,-1,1,0}} +static const nsCharProps2 sCharProp2Values[1061][16] = { + {{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,8,1,4,-1},{0,0,0,0,0,0,7,1,17,-1},{0,0,0,0,0,0,8,1,6,-1},{0,0,0,0,0,0,9,1,6,-1},{0,0,0,0,0,0,7,1,10,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1}}, + {{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,7,1,9,-1},{0,0,0,0,0,0,7,1,9,-1},{0,0,0,0,0,0,7,1,9,-1},{0,0,0,0,0,0,8,1,9,-1}}, + {{0,0,0,29,0,0,9,1,26,-1},{0,0,0,21,0,0,10,1,11,-1},{0,0,0,21,0,0,10,1,23,-1},{0,0,0,21,0,0,4,1,2,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,21,0,0,4,1,21,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,1,0,10,1,23,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,36,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,25,0,0,3,1,22,-1},{0,0,0,21,0,0,6,1,16,-1},{0,0,0,17,1,0,3,1,13,-1},{0,0,0,21,1,0,6,1,16,-1},{0,0,0,21,0,0,6,1,27,-1}}, + {{0,0,0,13,1,0,2,1,19,0},{0,0,0,13,1,0,2,1,19,1},{0,0,0,13,1,0,2,1,19,2},{0,0,0,13,1,0,2,1,19,3},{0,0,0,13,1,0,2,1,19,4},{0,0,0,13,1,0,2,1,19,5},{0,0,0,13,1,0,2,1,19,6},{0,0,0,13,1,0,2,1,19,7},{0,0,0,13,1,0,2,1,19,8},{0,0,0,13,1,0,2,1,19,9},{0,0,0,21,1,0,6,1,16,-1},{0,0,0,21,0,0,10,1,16,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,11,-1}}, + {{0,0,0,21,0,0,10,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,0,0,21,0,0,10,1,22,-1},{0,2,0,18,0,0,10,1,36,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,16,1,0,10,1,2,-1}}, + {{0,0,0,24,0,0,10,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,0,0,25,0,0,10,1,4,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,0,0,0,18,1,9,-1}}, + {{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,7,1,29,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1}}, + {{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1},{0,0,0,0,0,0,18,1,9,-1}}, + {{0,0,0,29,0,0,6,1,12,-1},{0,0,0,21,0,0,10,1,20,-1},{0,0,0,23,0,0,4,1,21,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,21,0,0,10,0,1,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,26,0,0,10,0,2,-1},{25,0,0,7,0,0,0,1,1,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,1,0,1,18,1,4,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,24,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,4,1,21,-1},{0,0,0,25,0,0,4,0,22,-1},{0,0,0,15,0,0,2,1,1,2},{0,0,0,15,0,0,2,1,1,3},{0,0,0,24,0,0,10,1,5,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,21,0,0,10,1,1,-1},{0,0,0,21,1,0,10,1,1,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,15,0,0,2,1,1,1},{25,0,0,7,0,0,0,1,1,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,21,0,0,10,1,20,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{0,0,0,25,0,0,10,0,1,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{0,0,0,25,0,0,10,0,1,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1}}, + {{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,8,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,8,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,8,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1}}, + {{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,8,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{0,0,0,6,0,0,10,1,2,-1},{0,0,0,6,0,0,10,1,2,-1},{0,0,0,6,1,0,0,1,2,-1},{0,0,0,6,1,0,0,1,2,-1},{0,0,0,6,0,0,0,1,2,-1},{0,0,0,6,0,0,0,1,2,-1},{0,0,0,6,0,0,0,1,2,-1}}, + {{0,0,0,6,0,0,0,1,2,-1},{0,0,0,6,0,0,0,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,6,0,0,10,1,2,-1},{0,0,0,6,0,0,10,1,1,-1},{0,0,0,6,0,0,10,1,5,-1},{0,0,0,6,0,0,10,1,1,-1},{0,0,0,6,0,0,10,1,1,-1},{0,0,0,6,0,0,10,1,1,-1},{0,0,0,6,0,0,10,1,5,-1},{0,0,0,6,0,0,10,1,1,-1},{0,0,0,6,0,0,10,1,2,-1},{0,0,0,6,0,0,10,1,2,-1}}, + {{0,0,0,6,0,0,0,1,1,-1},{0,0,0,6,0,0,0,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,1,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,5,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{5,0,0,24,0,0,10,0,2,-1},{5,0,0,24,0,0,10,0,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,6,0,0,0,1,2,-1},{0,0,0,24,0,0,10,1,2,-1}}, + {{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1}}, + {{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1}}, + {{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,1,17,1,12,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,12,-1},{1,0,0,12,0,0,17,1,12,-1},{1,0,0,12,0,0,17,1,12,-1},{1,0,0,12,0,0,17,1,12,-1}}, + {{1,0,0,12,0,0,17,1,12,-1},{1,0,0,12,0,0,17,1,12,-1},{1,0,0,12,0,0,17,1,12,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{0,0,0,6,0,0,10,1,2,-1},{14,0,0,24,1,0,10,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{0,0,0,21,0,0,10,1,16,-1},{14,0,0,9,0,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1}}, + {{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1}}, + {{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1}}, + {{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1}}, + {{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,25,0,0,10,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1}}, + {{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1}}, + {{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1}}, + {{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1}}, + {{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,26,0,0,0,1,2,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,11,0,0,17,1,9,-1},{8,0,0,11,0,0,17,1,9,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1}}, + {{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1}}, + {{8,0,0,9,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1}}, + {{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1}}, + {{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1}}, + {{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{3,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{3,0,0,6,1,0,0,1,2,-1},{3,0,0,21,0,0,0,1,2,-1},{3,0,0,21,0,0,0,1,2,-1},{3,0,0,21,0,0,0,1,2,-1},{3,0,0,21,0,0,0,1,2,-1},{3,0,0,21,0,0,0,1,2,-1},{3,0,0,21,0,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1}}, + {{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1}}, + {{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,1,0,0,1,2,-1},{3,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,21,0,0,0,1,16,-1},{3,0,0,17,1,0,10,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{3,0,0,26,0,0,10,1,2,-1},{3,0,0,26,0,0,10,1,2,-1},{3,0,0,23,0,0,4,1,22,-1}}, + {{103,0,0,2,0,0,1,1,0,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1}}, + {{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1}}, + {{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,1,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,17,0,0,1,1,4,-1},{19,0,0,12,0,0,17,1,9,-1}}, + {{19,0,0,21,0,0,1,1,2,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,21,0,0,1,1,2,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,21,0,0,1,1,11,-1},{19,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1}}, + {{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,7,1,0,1,1,38,-1},{19,0,0,21,1,0,1,1,2,-1},{19,0,0,21,1,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{2,0,0,1,0,0,5,1,2,-1},{2,0,0,1,0,0,5,1,2,-1},{2,0,0,1,0,0,5,1,2,-1},{2,0,0,1,0,0,5,1,2,-1},{2,0,0,1,0,0,5,1,2,-1},{0,0,0,1,0,0,5,1,2,-1},{2,0,0,25,0,0,10,1,2,-1},{2,0,0,25,0,0,10,1,2,-1},{2,0,0,25,0,0,13,1,2,-1},{2,0,0,21,0,0,4,1,21,-1},{2,0,0,21,0,0,4,1,21,-1},{2,0,0,23,0,0,13,1,21,-1},{0,0,0,21,0,0,6,1,16,-1},{2,0,0,21,0,0,13,1,16,-1},{2,0,0,26,0,0,10,1,2,-1},{2,0,0,26,0,0,10,1,2,-1}}, + {{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{0,0,0,21,0,0,13,1,11,-1},{0,0,0,1,0,1,13,1,9,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,21,0,0,13,1,11,-1},{0,0,0,21,0,0,13,1,11,-1}}, + {{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1}}, + {{0,0,0,6,0,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1}}, + {{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{1,0,0,12,1,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1}}, + {{2,0,0,13,1,0,5,1,19,0},{2,0,0,13,1,0,5,1,19,1},{2,0,0,13,1,0,5,1,19,2},{2,0,0,13,1,0,5,1,19,3},{2,0,0,13,1,0,5,1,19,4},{2,0,0,13,1,0,5,1,19,5},{2,0,0,13,1,0,5,1,19,6},{2,0,0,13,1,0,5,1,19,7},{2,0,0,13,1,0,5,1,19,8},{2,0,0,13,1,0,5,1,19,9},{2,0,0,21,0,0,4,1,21,-1},{2,0,0,21,0,0,5,1,19,-1},{2,0,0,21,0,0,5,1,19,-1},{2,0,0,21,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{1,0,0,12,1,0,17,1,9,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1}}, + {{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1}}, + {{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,21,0,0,13,1,11,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{0,0,0,1,0,0,5,1,2,-1},{2,0,0,26,0,0,10,1,2,-1},{2,0,0,12,0,0,17,1,9,-1}}, + {{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,6,1,0,13,1,2,-1},{2,0,0,6,1,0,13,1,2,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,26,0,0,10,1,2,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1}}, + {{2,0,0,13,1,0,2,1,19,0},{2,0,0,13,1,0,2,1,19,1},{2,0,0,13,1,0,2,1,19,2},{2,0,0,13,1,0,2,1,19,3},{2,0,0,13,1,0,2,1,19,4},{2,0,0,13,1,0,2,1,19,5},{2,0,0,13,1,0,2,1,19,6},{2,0,0,13,1,0,2,1,19,7},{2,0,0,13,1,0,2,1,19,8},{2,0,0,13,1,0,2,1,19,9},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,26,1,0,13,1,2,-1},{2,0,0,26,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1}}, + {{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{34,0,0,21,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{34,0,0,1,0,0,13,1,2,-1}}, + {{34,0,0,7,0,0,13,1,2,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1}}, + {{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1}}, + {{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1}}, + {{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{34,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1},{34,0,0,7,0,0,13,1,2,-1}}, + {{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1}}, + {{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,7,1,0,13,1,2,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1},{37,0,0,12,1,0,17,1,9,-1}}, + {{37,0,0,12,1,0,17,1,9,-1},{37,0,0,7,1,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{87,0,0,13,0,0,1,1,19,0},{87,0,0,13,0,0,1,1,19,1},{87,0,0,13,0,0,1,1,19,2},{87,0,0,13,0,0,1,1,19,3},{87,0,0,13,0,0,1,1,19,4},{87,0,0,13,0,0,1,1,19,5},{87,0,0,13,0,0,1,1,19,6},{87,0,0,13,0,0,1,1,19,7},{87,0,0,13,0,0,1,1,19,8},{87,0,0,13,0,0,1,1,19,9},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1}}, + {{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1}}, + {{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,7,0,0,1,1,2,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1}}, + {{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,12,0,0,17,1,9,-1},{87,0,0,6,0,0,1,1,2,-1},{87,0,0,6,0,0,1,1,2,-1},{87,0,0,26,0,0,10,1,2,-1},{87,0,0,21,0,0,10,1,2,-1},{87,0,0,21,0,0,10,1,16,-1},{87,0,0,21,0,0,10,1,11,-1},{87,0,0,6,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1}}, + {{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,7,0,0,1,1,2,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,6,0,0,1,1,2,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1}}, + {{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,6,0,0,1,1,2,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,6,0,0,1,1,2,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{126,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{126,0,0,21,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1}}, + {{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,7,0,0,1,1,2,-1},{84,0,0,12,0,0,17,1,9,-1},{84,0,0,12,0,0,17,1,9,-1},{84,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{84,0,0,21,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{2,0,0,7,1,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1}}, + {{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{0,0,0,1,0,0,5,1,2,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1}}, + {{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1},{2,0,0,12,0,0,17,1,9,-1}}, + {{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1}}, + {{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1}}, + {{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,10,1,0,0,1,9,-1}}, + {{10,0,0,10,1,0,0,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,10,1,0,0,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,10,0,0,0,1,9,-1},{10,0,0,10,1,0,0,1,9,-1}}, + {{10,0,0,7,1,0,0,1,2,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1}}, + {{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,12,1,0,17,1,9,-1},{10,0,0,12,1,0,17,1,9,-1},{0,0,0,21,0,0,0,1,4,-1},{0,0,0,21,0,0,0,1,4,-1},{10,0,0,13,1,0,0,1,19,0},{10,0,0,13,1,0,0,1,19,1},{10,0,0,13,1,0,0,1,19,2},{10,0,0,13,1,0,0,1,19,3},{10,0,0,13,1,0,0,1,19,4},{10,0,0,13,1,0,0,1,19,5},{10,0,0,13,1,0,0,1,19,6},{10,0,0,13,1,0,0,1,19,7},{10,0,0,13,1,0,0,1,19,8},{10,0,0,13,1,0,0,1,19,9}}, + {{10,0,0,21,0,0,0,1,2,-1},{10,0,0,6,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1},{10,0,0,7,1,0,0,1,2,-1}}, + {{4,0,0,7,0,0,0,1,2,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,10,1,0,0,1,9,-1},{4,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,1,0,0,1,2,-1}}, + {{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1}}, + {{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1}}, + {{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,10,1,0,0,1,9,-1},{4,0,0,10,1,0,0,1,9,-1}}, + {{4,0,0,10,1,0,0,1,9,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,10,1,0,0,1,9,-1},{4,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,10,1,0,0,1,9,-1},{4,0,0,10,1,0,0,1,9,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,0,0,0,1,2,-1},{4,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,7,0,0,0,1,2,-1}}, + {{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,12,1,0,17,1,9,-1},{4,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{4,0,0,13,1,0,0,1,19,0},{4,0,0,13,1,0,0,1,19,1},{4,0,0,13,1,0,0,1,19,2},{4,0,0,13,1,0,0,1,19,3},{4,0,0,13,1,0,0,1,19,4},{4,0,0,13,1,0,0,1,19,5},{4,0,0,13,1,0,0,1,19,6},{4,0,0,13,1,0,0,1,19,7},{4,0,0,13,1,0,0,1,19,8},{4,0,0,13,1,0,0,1,19,9}}, + {{4,0,0,7,1,0,0,1,2,-1},{4,0,0,7,1,0,0,1,2,-1},{4,0,0,23,0,0,4,1,21,-1},{4,0,0,23,0,0,4,1,21,-1},{4,0,0,15,0,0,0,1,2,-1},{4,0,0,15,0,0,0,1,2,-1},{4,0,0,15,0,0,0,1,2,-1},{4,0,0,15,0,0,0,1,2,-1},{4,0,0,15,0,0,0,1,2,-1},{4,0,0,15,0,0,0,1,21,-1},{4,0,0,26,0,0,0,1,2,-1},{4,0,0,23,0,0,4,1,22,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1}}, + {{16,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1}}, + {{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1}}, + {{16,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,10,1,0,0,1,9,-1},{16,0,0,10,1,0,0,1,9,-1}}, + {{16,0,0,10,1,0,0,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{16,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,0,0,0,1,2,-1},{16,0,0,7,0,0,0,1,2,-1},{16,0,0,7,0,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{16,0,0,13,1,0,0,1,19,0},{16,0,0,13,1,0,0,1,19,1},{16,0,0,13,1,0,0,1,19,2},{16,0,0,13,1,0,0,1,19,3},{16,0,0,13,1,0,0,1,19,4},{16,0,0,13,1,0,0,1,19,5},{16,0,0,13,1,0,0,1,19,6},{16,0,0,13,1,0,0,1,19,7},{16,0,0,13,1,0,0,1,19,8},{16,0,0,13,1,0,0,1,19,9}}, + {{16,0,0,12,1,0,17,1,9,-1},{16,0,0,12,1,0,17,1,9,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,7,1,0,0,1,2,-1},{16,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,1,0,0,1,2,-1}}, + {{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1}}, + {{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1}}, + {{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,10,1,0,0,1,9,-1},{15,0,0,10,1,0,0,1,9,-1}}, + {{15,0,0,10,1,0,0,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,10,1,0,0,1,9,-1},{15,0,0,10,1,0,0,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{15,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{15,0,0,7,1,0,0,1,2,-1},{15,0,0,7,1,0,0,1,2,-1},{15,0,0,12,1,0,17,1,9,-1},{15,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,13,1,0,0,1,19,0},{15,0,0,13,1,0,0,1,19,1},{15,0,0,13,1,0,0,1,19,2},{15,0,0,13,1,0,0,1,19,3},{15,0,0,13,1,0,0,1,19,4},{15,0,0,13,1,0,0,1,19,5},{15,0,0,13,1,0,0,1,19,6},{15,0,0,13,1,0,0,1,19,7},{15,0,0,13,1,0,0,1,19,8},{15,0,0,13,1,0,0,1,19,9}}, + {{15,0,0,21,0,0,0,1,2,-1},{15,0,0,23,0,0,4,1,22,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{15,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{31,0,0,12,1,0,17,1,9,-1},{31,0,0,10,1,0,0,1,9,-1},{31,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1}}, + {{31,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1}}, + {{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1}}, + {{31,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,12,1,0,17,1,9,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,10,1,0,0,1,9,-1},{31,0,0,12,1,0,17,1,9,-1}}, + {{31,0,0,10,1,0,0,1,9,-1},{31,0,0,12,1,0,17,1,9,-1},{31,0,0,12,1,0,17,1,9,-1},{31,0,0,12,1,0,17,1,9,-1},{31,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,10,1,0,0,1,9,-1},{31,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,10,1,0,0,1,9,-1},{31,0,0,10,1,0,0,1,9,-1},{31,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,12,1,0,17,1,9,-1},{31,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,0,0,0,1,2,-1},{31,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,7,1,0,0,1,2,-1}}, + {{31,0,0,7,1,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,12,0,0,17,1,9,-1},{31,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{31,0,0,13,1,0,0,1,19,0},{31,0,0,13,1,0,0,1,19,1},{31,0,0,13,1,0,0,1,19,2},{31,0,0,13,1,0,0,1,19,3},{31,0,0,13,1,0,0,1,19,4},{31,0,0,13,1,0,0,1,19,5},{31,0,0,13,1,0,0,1,19,6},{31,0,0,13,1,0,0,1,19,7},{31,0,0,13,1,0,0,1,19,8},{31,0,0,13,1,0,0,1,19,9}}, + {{31,0,0,26,0,0,0,1,2,-1},{31,0,0,7,1,0,0,1,2,-1},{31,0,0,15,0,0,0,1,2,-1},{31,0,0,15,0,0,0,1,2,-1},{31,0,0,15,0,0,0,1,2,-1},{31,0,0,15,0,0,0,1,2,-1},{31,0,0,15,0,0,0,1,2,-1},{31,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,12,1,0,17,1,9,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1}}, + {{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1}}, + {{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,10,1,0,0,1,9,-1}}, + {{35,0,0,12,1,0,17,1,9,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,10,1,0,0,1,9,-1},{35,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{35,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{35,0,0,13,1,0,0,1,19,0},{35,0,0,13,1,0,0,1,19,1},{35,0,0,13,1,0,0,1,19,2},{35,0,0,13,1,0,0,1,19,3},{35,0,0,13,1,0,0,1,19,4},{35,0,0,13,1,0,0,1,19,5},{35,0,0,13,1,0,0,1,19,6},{35,0,0,13,1,0,0,1,19,7},{35,0,0,13,1,0,0,1,19,8},{35,0,0,13,1,0,0,1,19,9}}, + {{35,0,0,15,0,0,0,1,2,-1},{35,0,0,15,0,0,0,1,2,-1},{35,0,0,15,0,0,0,1,2,-1},{35,0,0,26,0,0,10,1,2,-1},{35,0,0,26,0,0,10,1,2,-1},{35,0,0,26,0,0,10,1,2,-1},{35,0,0,26,0,0,10,1,2,-1},{35,0,0,26,0,0,10,1,2,-1},{35,0,0,26,0,0,10,1,2,-1},{35,0,0,23,0,0,4,1,22,-1},{35,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{36,0,0,12,0,0,17,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1}}, + {{36,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1}}, + {{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1}}, + {{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,0,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1}}, + {{36,0,0,12,1,0,17,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{36,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,12,1,0,17,1,9,-1},{36,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,7,0,0,0,1,2,-1},{36,0,0,7,0,0,0,1,2,-1},{36,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{36,0,0,7,1,0,0,1,2,-1},{36,0,0,7,1,0,0,1,2,-1},{36,0,0,12,0,0,17,1,9,-1},{36,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,13,1,0,0,1,19,0},{36,0,0,13,1,0,0,1,19,1},{36,0,0,13,1,0,0,1,19,2},{36,0,0,13,1,0,0,1,19,3},{36,0,0,13,1,0,0,1,19,4},{36,0,0,13,1,0,0,1,19,5},{36,0,0,13,1,0,0,1,19,6},{36,0,0,13,1,0,0,1,19,7},{36,0,0,13,1,0,0,1,19,8},{36,0,0,13,1,0,0,1,19,9}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,15,0,0,10,1,2,-1},{36,0,0,26,0,0,0,1,2,-1}}, + {{21,0,0,7,1,0,0,1,2,-1},{21,0,0,12,0,0,17,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1}}, + {{21,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1}}, + {{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1}}, + {{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,12,1,0,17,1,9,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,12,1,0,0,1,9,-1}}, + {{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,12,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,12,1,0,17,1,9,-1},{21,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,10,1,0,0,1,9,-1},{21,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,12,1,0,17,1,9,-1},{21,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{21,0,0,13,1,0,0,1,19,0},{21,0,0,13,1,0,0,1,19,1},{21,0,0,13,1,0,0,1,19,2},{21,0,0,13,1,0,0,1,19,3},{21,0,0,13,1,0,0,1,19,4},{21,0,0,13,1,0,0,1,19,5},{21,0,0,13,1,0,0,1,19,6},{21,0,0,13,1,0,0,1,19,7},{21,0,0,13,1,0,0,1,19,8},{21,0,0,13,1,0,0,1,19,9}}, + {{103,0,0,2,0,0,0,1,0,-1},{21,0,0,7,1,0,0,1,2,-1},{21,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{26,0,0,12,0,0,17,1,9,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1}}, + {{26,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1}}, + {{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1}}, + {{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,10,1,0,0,1,9,-1}}, + {{26,0,0,10,1,0,0,1,9,-1},{26,0,0,12,1,0,17,1,9,-1},{26,0,0,12,1,0,17,1,9,-1},{26,0,0,12,1,0,17,1,9,-1},{26,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,12,1,0,17,1,9,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,26,0,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,10,1,0,0,1,9,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,7,0,0,0,1,2,-1}}, + {{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,12,0,0,17,1,9,-1},{26,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{26,0,0,13,1,0,0,1,19,0},{26,0,0,13,1,0,0,1,19,1},{26,0,0,13,1,0,0,1,19,2},{26,0,0,13,1,0,0,1,19,3},{26,0,0,13,1,0,0,1,19,4},{26,0,0,13,1,0,0,1,19,5},{26,0,0,13,1,0,0,1,19,6},{26,0,0,13,1,0,0,1,19,7},{26,0,0,13,1,0,0,1,19,8},{26,0,0,13,1,0,0,1,19,9}}, + {{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,15,0,0,0,1,2,-1},{26,0,0,26,0,0,0,1,21,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1},{26,0,0,7,1,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,0,0,0,1,2,-1}}, + {{33,0,0,7,0,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1}}, + {{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,0,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1}}, + {{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{33,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,10,1,0,0,1,9,-1}}, + {{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,12,1,0,17,1,9,-1},{33,0,0,12,1,0,17,1,9,-1},{33,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,0,0,0,1,9,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,13,0,0,0,1,19,0},{33,0,0,13,0,0,0,1,19,1},{33,0,0,13,0,0,0,1,19,2},{33,0,0,13,0,0,0,1,19,3},{33,0,0,13,0,0,0,1,19,4},{33,0,0,13,0,0,0,1,19,5},{33,0,0,13,0,0,0,1,19,6},{33,0,0,13,0,0,0,1,19,7},{33,0,0,13,0,0,0,1,19,8},{33,0,0,13,0,0,0,1,19,9}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{33,0,0,10,1,0,0,1,9,-1},{33,0,0,10,0,0,0,1,9,-1},{33,0,0,21,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1}}, + {{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1}}, + {{38,0,0,7,1,0,0,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,0,0,0,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,23,0,0,4,1,22,-1}}, + {{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,7,1,0,0,1,24,-1},{38,0,0,6,1,0,0,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,12,1,0,17,1,24,-1},{38,0,0,21,0,0,0,1,2,-1}}, + {{38,0,0,13,1,0,0,1,19,0},{38,0,0,13,1,0,0,1,19,1},{38,0,0,13,1,0,0,1,19,2},{38,0,0,13,1,0,0,1,19,3},{38,0,0,13,1,0,0,1,19,4},{38,0,0,13,1,0,0,1,19,5},{38,0,0,13,1,0,0,1,19,6},{38,0,0,13,1,0,0,1,19,7},{38,0,0,13,1,0,0,1,19,8},{38,0,0,13,1,0,0,1,19,9},{38,0,0,21,0,0,0,1,4,-1},{38,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1}}, + {{24,0,0,7,1,0,0,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,0,0,0,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,6,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{24,0,0,12,1,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{24,0,0,13,1,0,0,1,19,0},{24,0,0,13,1,0,0,1,19,1},{24,0,0,13,1,0,0,1,19,2},{24,0,0,13,1,0,0,1,19,3},{24,0,0,13,1,0,0,1,19,4},{24,0,0,13,1,0,0,1,19,5},{24,0,0,13,1,0,0,1,19,6},{24,0,0,13,1,0,0,1,19,7},{24,0,0,13,1,0,0,1,19,8},{24,0,0,13,1,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{24,0,0,7,0,0,0,1,24,-1},{24,0,0,7,0,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1},{24,0,0,7,1,0,0,1,24,-1}}, + {{39,0,0,7,1,0,0,1,2,-1},{39,0,0,26,0,0,0,1,5,-1},{39,0,0,26,0,0,0,1,5,-1},{39,0,0,26,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,2,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,12,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,1,0,0,1,4,-1},{39,0,0,21,0,0,0,1,12,-1},{39,0,0,21,0,0,0,1,11,-1},{39,0,0,21,0,0,0,1,11,-1},{39,0,0,21,0,0,0,1,11,-1}}, + {{39,0,0,21,0,0,0,1,11,-1},{39,0,0,21,0,0,0,1,11,-1},{39,0,0,21,0,0,0,1,12,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,21,0,0,0,1,11,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1}}, + {{39,0,0,13,1,0,0,1,19,0},{39,0,0,13,1,0,0,1,19,1},{39,0,0,13,1,0,0,1,19,2},{39,0,0,13,1,0,0,1,19,3},{39,0,0,13,1,0,0,1,19,4},{39,0,0,13,1,0,0,1,19,5},{39,0,0,13,1,0,0,1,19,6},{39,0,0,13,1,0,0,1,19,7},{39,0,0,13,1,0,0,1,19,8},{39,0,0,13,1,0,0,1,19,9},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1}}, + {{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,15,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,4,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,12,0,0,17,1,9,-1},{39,1,0,22,0,0,10,1,20,-1},{39,2,0,18,0,0,10,1,8,-1},{39,1,0,22,0,0,10,1,20,-1},{39,2,0,18,0,0,10,1,8,-1},{39,0,0,10,1,0,0,1,9,-1},{39,0,0,10,1,0,0,1,9,-1}}, + {{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,0,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,0,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1}}, + {{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,0,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,0,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,0,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1}}, + {{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,0,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,10,1,0,0,1,4,-1}}, + {{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,21,0,0,0,1,4,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,7,1,0,0,1,2,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1}}, + {{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1}}, + {{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1}}, + {{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,0,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,12,1,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{39,0,0,26,0,0,0,1,4,-1},{39,0,0,26,0,0,0,1,4,-1}}, + {{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,12,1,0,17,1,9,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{39,0,0,26,0,0,0,1,2,-1},{39,0,0,26,0,0,0,1,2,-1}}, + {{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,4,-1},{39,0,0,21,0,0,0,1,5,-1},{39,0,0,21,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{39,0,0,21,0,0,0,1,12,-1},{39,0,0,21,0,0,0,1,12,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1}}, + {{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1}}, + {{28,0,0,12,1,0,17,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,7,1,0,0,1,24,-1}}, + {{28,0,0,13,1,0,0,1,19,0},{28,0,0,13,1,0,0,1,19,1},{28,0,0,13,1,0,0,1,19,2},{28,0,0,13,1,0,0,1,19,3},{28,0,0,13,1,0,0,1,19,4},{28,0,0,13,1,0,0,1,19,5},{28,0,0,13,1,0,0,1,19,6},{28,0,0,13,1,0,0,1,19,7},{28,0,0,13,1,0,0,1,19,8},{28,0,0,13,1,0,0,1,19,9},{28,0,0,21,0,0,0,1,4,-1},{28,0,0,21,0,0,0,1,4,-1},{28,0,0,21,0,0,0,1,2,-1},{28,0,0,21,0,0,0,1,2,-1},{28,0,0,21,0,0,0,1,2,-1},{28,0,0,21,0,0,0,1,2,-1}}, + {{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1}}, + {{28,0,0,12,1,0,17,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1}}, + {{28,0,0,7,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1}}, + {{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1}}, + {{28,0,0,13,1,0,0,1,19,0},{28,0,0,13,1,0,0,1,19,1},{28,0,0,13,1,0,0,1,19,2},{28,0,0,13,1,0,0,1,19,3},{28,0,0,13,1,0,0,1,19,4},{28,0,0,13,1,0,0,1,19,5},{28,0,0,13,1,0,0,1,19,6},{28,0,0,13,1,0,0,1,19,7},{28,0,0,13,1,0,0,1,19,8},{28,0,0,13,1,0,0,1,19,9},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,26,0,0,0,1,24,-1},{28,0,0,26,0,0,0,1,24,-1}}, + {{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1}}, + {{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{12,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{12,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{12,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1}}, + {{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,0,0,0,1,2,-1},{12,0,0,7,0,0,0,1,2,-1},{12,0,0,7,0,0,0,1,2,-1},{12,0,0,7,0,0,0,1,2,-1},{12,0,0,7,0,0,0,1,2,-1},{12,0,0,7,0,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{0,0,0,21,0,0,0,1,2,-1},{12,0,0,6,0,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1},{12,0,0,7,1,0,0,1,2,-1}}, + {{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1}}, + {{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,1,0,0,33,-1}}, + {{18,0,0,7,0,1,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1}}, + {{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1}}, + {{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1}}, + {{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,12,1,0,17,1,9,-1},{11,0,0,12,1,0,17,1,9,-1},{11,0,0,12,1,0,17,1,9,-1}}, + {{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,4,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,21,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,1},{11,0,0,15,0,0,0,1,2,2},{11,0,0,15,0,0,0,1,2,3},{11,0,0,15,0,0,0,1,2,4},{11,0,0,15,0,0,0,1,2,5},{11,0,0,15,0,0,0,1,2,6},{11,0,0,15,0,0,0,1,2,7}}, + {{11,0,0,15,0,0,0,1,2,8},{11,0,0,15,0,0,0,1,2,9},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{11,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{11,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1}}, + {{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{6,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{40,0,0,17,0,0,10,1,4,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1}}, + {{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1}}, + {{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,21,0,0,0,0,2,-1},{40,0,0,21,0,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1}}, + {{29,0,0,29,0,0,9,1,4,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1}}, + {{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,0,0,7,0,0,0,1,2,-1},{29,1,0,22,0,0,10,1,20,-1},{29,2,0,18,0,0,10,1,8,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1}}, + {{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{0,0,0,21,0,0,0,1,4,-1},{0,0,0,21,0,0,0,1,4,-1},{0,0,0,21,0,0,0,1,4,-1},{32,0,0,14,0,0,0,1,2,-1},{32,0,0,14,0,0,0,1,2,-1}}, + {{32,0,0,14,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{32,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1}}, + {{42,0,0,7,0,0,0,1,2,-1},{42,0,0,7,0,0,0,1,2,-1},{42,0,0,12,0,0,17,1,9,-1},{42,0,0,12,0,0,17,1,9,-1},{42,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1}}, + {{43,0,0,7,0,0,0,1,2,-1},{43,0,0,7,0,0,0,1,2,-1},{43,0,0,12,0,0,17,1,9,-1},{43,0,0,12,0,0,17,1,9,-1},{43,0,0,12,0,0,17,1,9,-1},{0,0,0,21,0,0,0,1,4,-1},{0,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1}}, + {{44,0,0,7,0,0,0,1,2,-1},{44,0,0,7,0,0,0,1,2,-1},{44,0,0,12,0,0,17,1,9,-1},{44,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{45,0,0,7,0,0,0,1,2,-1},{45,0,0,7,0,0,0,1,2,-1}}, + {{45,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{45,0,0,12,0,0,17,1,9,-1},{45,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1}}, + {{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,0,0,0,1,24,-1},{23,0,0,7,0,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,0,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1}}, + {{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,12,0,1,17,1,24,-1},{23,0,0,12,0,1,17,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1}}, + {{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,10,1,0,0,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1}}, + {{23,0,0,12,0,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{23,0,0,12,1,0,17,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{23,0,0,21,0,0,0,1,4,-1},{23,0,0,21,0,0,0,1,4,-1},{23,0,0,21,0,0,0,1,18,-1},{23,0,0,6,1,0,0,1,24,-1},{23,0,0,21,0,0,0,1,4,-1},{23,0,0,21,0,0,0,1,2,-1},{23,0,0,21,0,0,0,1,4,-1},{23,0,0,23,0,0,4,1,22,-1},{23,0,0,7,1,0,0,1,24,-1},{23,0,0,12,0,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{23,0,0,13,1,0,0,1,19,0},{23,0,0,13,1,0,0,1,19,1},{23,0,0,13,1,0,0,1,19,2},{23,0,0,13,1,0,0,1,19,3},{23,0,0,13,1,0,0,1,19,4},{23,0,0,13,1,0,0,1,19,5},{23,0,0,13,1,0,0,1,19,6},{23,0,0,13,1,0,0,1,19,7},{23,0,0,13,1,0,0,1,19,8},{23,0,0,13,1,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{23,0,0,15,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{27,0,0,21,0,0,10,1,2,-1},{27,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,11,-1},{0,0,0,21,0,0,10,1,11,-1},{27,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{27,0,0,17,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,2,-1},{27,0,0,21,0,0,10,1,11,-1},{27,0,0,21,0,0,10,1,11,-1},{27,0,0,21,0,0,10,1,2,-1},{27,0,0,12,0,1,17,1,9,-1},{27,0,0,12,0,1,17,1,9,-1},{27,0,0,12,0,1,17,1,9,-1},{27,0,0,1,0,1,18,1,12,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{27,0,0,13,2,0,0,1,19,0},{27,0,0,13,2,0,0,1,19,1},{27,0,0,13,2,0,0,1,19,2},{27,0,0,13,2,0,0,1,19,3},{27,0,0,13,2,0,0,1,19,4},{27,0,0,13,2,0,0,1,19,5},{27,0,0,13,2,0,0,1,19,6},{27,0,0,13,2,0,0,1,19,7},{27,0,0,13,2,0,0,1,19,8},{27,0,0,13,2,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1}}, + {{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,6,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1}}, + {{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,12,2,0,17,1,9,-1},{27,0,0,12,2,0,17,1,9,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1}}, + {{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,7,2,0,0,1,2,-1},{27,0,0,12,2,0,17,1,9,-1},{27,0,0,7,2,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{40,0,0,7,2,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1}}, + {{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{48,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{48,0,0,12,0,0,17,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,10,0,0,0,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{48,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{48,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{48,0,0,21,0,0,10,1,11,-1},{48,0,0,21,0,0,10,1,11,-1},{48,0,0,13,0,0,0,1,19,0},{48,0,0,13,0,0,0,1,19,1},{48,0,0,13,0,0,0,1,19,2},{48,0,0,13,0,0,0,1,19,3},{48,0,0,13,0,0,0,1,19,4},{48,0,0,13,0,0,0,1,19,5},{48,0,0,13,0,0,0,1,19,6},{48,0,0,13,0,0,0,1,19,7},{48,0,0,13,0,0,0,1,19,8},{48,0,0,13,0,0,0,1,19,9}}, + {{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1}}, + {{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{52,0,0,7,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1}}, + {{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{59,0,0,7,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{59,0,0,13,0,0,0,1,19,0},{59,0,0,13,0,0,0,1,19,1},{59,0,0,13,0,0,0,1,19,2},{59,0,0,13,0,0,0,1,19,3},{59,0,0,13,0,0,0,1,19,4},{59,0,0,13,0,0,0,1,19,5},{59,0,0,13,0,0,0,1,19,6},{59,0,0,13,0,0,0,1,19,7},{59,0,0,13,0,0,0,1,19,8},{59,0,0,13,0,0,0,1,19,9},{59,0,0,15,0,0,0,1,24,1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{59,0,0,26,0,0,10,1,24,-1},{59,0,0,26,0,0,10,1,24,-1}}, + {{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1},{23,0,0,26,0,0,10,1,2,-1}}, + {{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1}}, + {{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,7,0,0,0,1,2,-1},{55,0,0,12,0,0,17,1,9,-1},{55,0,0,12,0,0,17,1,9,-1},{55,0,0,10,0,0,0,1,9,-1},{55,0,0,10,0,0,0,1,9,-1},{55,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{55,0,0,21,0,0,0,1,2,-1},{55,0,0,21,0,0,0,1,2,-1}}, + {{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1}}, + {{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,7,0,0,0,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{106,0,0,12,0,0,17,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,10,0,0,0,1,24,-1}}, + {{106,0,0,10,0,0,0,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,10,0,0,0,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{106,0,0,12,0,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{106,0,0,12,0,0,17,1,9,-1}}, + {{106,0,0,13,0,0,0,1,19,0},{106,0,0,13,0,0,0,1,19,1},{106,0,0,13,0,0,0,1,19,2},{106,0,0,13,0,0,0,1,19,3},{106,0,0,13,0,0,0,1,19,4},{106,0,0,13,0,0,0,1,19,5},{106,0,0,13,0,0,0,1,19,6},{106,0,0,13,0,0,0,1,19,7},{106,0,0,13,0,0,0,1,19,8},{106,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,6,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{106,0,0,21,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,11,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1}}, + {{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1}}, + {{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,10,0,0,0,1,9,-1}}, + {{62,0,0,10,0,0,0,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,10,0,0,0,1,9,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{62,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{62,0,0,13,0,0,0,1,19,0},{62,0,0,13,0,0,0,1,19,1},{62,0,0,13,0,0,0,1,19,2},{62,0,0,13,0,0,0,1,19,3},{62,0,0,13,0,0,0,1,19,4},{62,0,0,13,0,0,0,1,19,5},{62,0,0,13,0,0,0,1,19,6},{62,0,0,13,0,0,0,1,19,7},{62,0,0,13,0,0,0,1,19,8},{62,0,0,13,0,0,0,1,19,9},{62,0,0,21,0,0,0,1,4,-1},{62,0,0,21,0,0,0,1,4,-1},{62,0,0,21,0,0,0,1,2,-1},{62,0,0,21,0,0,0,1,4,-1},{62,0,0,21,0,0,0,1,4,-1},{62,0,0,21,0,0,0,1,4,-1}}, + {{62,0,0,21,0,0,0,1,4,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1}}, + {{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,12,0,0,17,1,9,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{62,0,0,26,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,10,0,0,0,1,9,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1}}, + {{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1}}, + {{113,0,0,7,0,0,0,1,2,-1},{113,0,0,10,0,0,0,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,10,0,0,0,1,9,-1},{113,0,0,10,0,0,0,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,10,0,0,0,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,12,0,0,17,1,9,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1}}, + {{113,0,0,13,0,0,0,1,19,0},{113,0,0,13,0,0,0,1,19,1},{113,0,0,13,0,0,0,1,19,2},{113,0,0,13,0,0,0,1,19,3},{113,0,0,13,0,0,0,1,19,4},{113,0,0,13,0,0,0,1,19,5},{113,0,0,13,0,0,0,1,19,6},{113,0,0,13,0,0,0,1,19,7},{113,0,0,13,0,0,0,1,19,8},{113,0,0,13,0,0,0,1,19,9},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1},{113,0,0,7,0,0,0,1,2,-1}}, + {{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1}}, + {{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,7,0,0,0,1,2,-1},{63,0,0,12,0,0,17,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{63,0,0,12,0,0,17,1,9,-1},{63,0,0,12,0,0,17,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{63,0,0,12,0,0,17,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{63,0,0,12,0,0,17,1,9,-1}}, + {{63,0,0,12,0,0,17,1,9,-1},{63,0,0,12,0,0,17,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{63,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{63,0,0,21,0,0,0,1,2,-1},{63,0,0,21,0,0,0,1,2,-1},{63,0,0,21,0,0,0,1,2,-1},{63,0,0,21,0,0,0,1,2,-1}}, + {{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1}}, + {{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1}}, + {{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,10,0,0,0,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{82,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{82,0,0,21,0,0,0,1,4,-1},{82,0,0,21,0,0,0,1,4,-1},{82,0,0,21,0,0,0,1,4,-1},{82,0,0,21,0,0,0,1,4,-1},{82,0,0,21,0,0,0,1,4,-1}}, + {{82,0,0,13,0,0,0,1,19,0},{82,0,0,13,0,0,0,1,19,1},{82,0,0,13,0,0,0,1,19,2},{82,0,0,13,0,0,0,1,19,3},{82,0,0,13,0,0,0,1,19,4},{82,0,0,13,0,0,0,1,19,5},{82,0,0,13,0,0,0,1,19,6},{82,0,0,13,0,0,0,1,19,7},{82,0,0,13,0,0,0,1,19,8},{82,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1},{82,0,0,7,0,0,0,1,2,-1}}, + {{109,0,0,13,0,0,0,1,19,0},{109,0,0,13,0,0,0,1,19,1},{109,0,0,13,0,0,0,1,19,2},{109,0,0,13,0,0,0,1,19,3},{109,0,0,13,0,0,0,1,19,4},{109,0,0,13,0,0,0,1,19,5},{109,0,0,13,0,0,0,1,19,6},{109,0,0,13,0,0,0,1,19,7},{109,0,0,13,0,0,0,1,19,8},{109,0,0,13,0,0,0,1,19,9},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1}}, + {{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1}}, + {{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,7,0,0,0,1,2,-1},{109,0,0,6,0,0,0,1,2,-1},{109,0,0,6,0,0,0,1,2,-1},{109,0,0,6,0,0,0,1,2,-1},{109,0,0,6,0,0,0,1,2,-1},{109,0,0,6,0,0,0,1,2,-1},{109,0,0,6,0,0,0,1,2,-1},{109,0,0,21,0,0,0,1,4,-1},{109,0,0,21,0,0,0,1,4,-1}}, + {{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{113,0,0,21,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{0,0,0,21,0,0,0,1,2,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{0,0,0,10,0,0,0,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{0,0,0,7,0,0,0,1,2,-1},{0,0,0,7,0,0,0,1,2,-1},{0,0,0,7,0,0,0,1,2,-1},{0,0,0,7,0,0,0,1,2,-1},{1,0,0,12,0,0,17,1,9,-1},{0,0,0,7,0,0,0,1,2,-1},{0,0,0,7,0,0,0,1,2,-1}}, + {{0,0,0,7,0,0,0,1,2,-1},{0,0,0,7,0,0,0,1,2,-1},{0,0,0,10,0,0,0,1,9,-1},{0,0,0,10,0,0,0,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{0,0,0,7,0,0,0,1,2,-1},{0,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1}}, + {{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{8,0,0,6,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{14,0,0,6,0,0,0,1,2,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,9,1,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,24,0,0,10,1,2,-1}}, + {{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1}}, + {{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1},{14,0,0,24,0,0,10,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,5,1,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,9,1,0,0,1,2,-1},{14,0,0,9,0,0,0,1,2,-1},{14,0,0,8,1,0,0,1,2,-1},{14,0,0,24,0,0,10,1,5,-1},{14,0,0,24,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,12,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,29,0,0,9,1,4,-1},{0,0,0,1,0,1,18,1,28,-1},{1,0,0,1,1,1,18,1,9,-1},{1,0,0,1,1,1,18,1,42,-1},{0,0,0,1,0,1,0,1,9,-1},{0,0,0,1,0,1,1,1,9,-1}}, + {{0,0,0,17,1,0,10,1,4,-1},{0,0,0,17,0,0,10,1,12,-1},{0,0,0,17,0,0,10,1,4,-1},{0,0,0,17,0,0,10,1,4,-1},{0,0,0,17,0,0,10,1,3,-1},{0,0,0,17,0,0,10,1,1,-1},{0,0,0,21,0,0,10,0,1,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,1,0,10,1,23,-1},{0,0,0,22,0,0,10,1,20,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,22,0,0,10,1,20,-1},{0,0,0,20,0,0,10,1,23,-1}}, + {{0,0,0,21,0,0,10,0,1,-1},{0,0,0,21,0,0,10,0,1,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,15,-1},{0,0,0,21,0,0,10,1,15,-1},{0,0,0,21,0,0,10,1,15,-1},{0,0,0,21,1,0,10,1,4,-1},{0,0,0,27,0,0,9,1,6,-1},{0,0,0,28,0,0,7,1,6,-1},{0,0,0,1,0,1,11,1,9,-1},{0,0,0,1,0,1,14,1,9,-1},{0,0,0,1,0,1,16,1,9,-1},{0,0,0,1,0,1,12,1,9,-1},{0,0,0,1,0,1,15,1,9,-1},{0,0,0,29,0,0,6,1,12,-1}}, + {{0,0,0,21,0,0,4,0,21,-1},{0,0,0,21,0,0,4,0,21,-1},{0,0,0,21,0,0,4,1,21,-1},{0,0,0,21,0,0,4,1,21,-1},{0,0,0,21,0,0,4,1,21,-1},{0,0,0,21,0,0,10,1,21,-1},{0,0,0,21,0,0,10,1,21,-1},{0,0,0,21,0,0,10,1,21,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,21,0,0,10,0,1,-1},{0,0,0,21,0,0,10,0,18,-1},{0,0,0,21,0,0,10,1,18,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,16,0,0,10,1,2,-1}}, + {{0,0,0,16,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,0,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,25,0,0,6,1,16,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,21,0,0,10,0,18,-1},{0,0,0,21,0,0,10,0,18,-1},{0,0,0,21,0,0,10,0,18,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1}}, + {{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,0,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,16,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,29,0,0,9,1,4,-1}}, + {{0,0,0,1,0,1,18,1,30,-1},{0,0,0,1,0,1,18,1,2,-1},{0,0,0,1,0,1,18,1,2,-1},{0,0,0,1,0,1,18,1,2,-1},{0,0,0,1,0,1,18,1,2,-1},{103,0,0,2,0,1,0,0,0,-1},{0,0,0,1,0,1,20,1,9,-1},{0,0,0,1,0,1,21,1,9,-1},{0,0,0,1,0,1,19,1,9,-1},{0,0,0,1,0,1,22,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1}}, + {{0,0,0,15,0,0,2,1,2,0},{25,0,0,6,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,15,0,0,2,1,1,4},{0,0,0,15,0,0,2,1,2,5},{0,0,0,15,0,0,2,1,2,6},{0,0,0,15,0,0,2,1,2,7},{0,0,0,15,0,0,2,1,2,8},{0,0,0,15,0,0,2,1,2,9},{0,0,0,25,0,0,3,1,2,-1},{0,0,0,25,0,0,3,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{25,0,0,6,0,0,0,1,1,-1}}, + {{0,0,0,15,0,0,2,1,2,0},{0,0,0,15,0,0,2,1,1,1},{0,0,0,15,0,0,2,1,1,2},{0,0,0,15,0,0,2,1,1,3},{0,0,0,15,0,0,2,1,1,4},{0,0,0,15,0,0,2,1,2,5},{0,0,0,15,0,0,2,1,2,6},{0,0,0,15,0,0,2,1,2,7},{0,0,0,15,0,0,2,1,2,8},{0,0,0,15,0,0,2,1,2,9},{0,0,0,25,0,0,3,1,2,-1},{0,0,0,25,0,0,3,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,21,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,1,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1}}, + {{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,21,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,21,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,22,-1},{0,0,0,23,0,0,4,1,21,-1},{103,0,0,2,0,0,4,1,22,-1}}, + {{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1},{103,0,0,2,0,0,4,1,22,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,11,0,0,17,0,9,-1},{1,0,0,11,0,0,17,0,9,-1},{1,0,0,11,0,0,17,0,9,-1}}, + {{1,0,0,11,0,0,17,0,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,11,0,0,17,0,9,-1},{1,0,0,11,0,0,17,0,9,-1},{1,0,0,11,0,0,17,0,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,10,0,21,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,9,0,0,0,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,21,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,0,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,10,0,22,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{14,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,1,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,26,0,0,4,0,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,7,0,0,0,0,2,-1},{0,0,0,7,0,0,0,0,2,-1},{0,0,0,7,0,0,0,0,2,-1},{0,0,0,7,0,0,0,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,9,0,0,0,0,2,-1},{0,0,0,9,0,0,0,0,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,9,0,0,0,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,5,0,0,0,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{25,0,0,5,0,0,0,1,2,-1},{0,0,0,26,0,0,0,0,2,-1}}, + {{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,2,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,2,-1}}, + {{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1}}, + {{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,1,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1}}, + {{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,9,0,0,0,0,2,-1},{25,0,0,5,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{25,0,0,14,0,0,0,0,2,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,3,1,22,-1},{0,0,0,25,0,0,4,1,22,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,0,1,-1},{0,0,0,25,0,0,10,1,1,-1}}, + {{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,0,1,-1},{0,0,0,25,0,0,10,0,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,1,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,15,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1}}, + {{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1}}, + {{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,15,0,0,10,0,1,1},{0,0,0,15,0,0,10,0,1,2},{0,0,0,15,0,0,10,0,1,3},{0,0,0,15,0,0,10,0,1,4},{0,0,0,15,0,0,10,0,1,5},{0,0,0,15,0,0,10,0,1,6},{0,0,0,15,0,0,10,0,1,7},{0,0,0,15,0,0,10,0,1,8},{0,0,0,15,0,0,10,0,1,9},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1}}, + {{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,1},{0,0,0,15,0,0,10,0,1,2},{0,0,0,15,0,0,10,0,1,3},{0,0,0,15,0,0,10,0,1,4},{0,0,0,15,0,0,10,0,1,5},{0,0,0,15,0,0,10,0,1,6},{0,0,0,15,0,0,10,0,1,7},{0,0,0,15,0,0,10,0,1,8},{0,0,0,15,0,0,10,0,1,9},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1}}, + {{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,2,0,1,1},{0,0,0,15,0,0,2,0,1,2},{0,0,0,15,0,0,2,0,1,3},{0,0,0,15,0,0,2,0,1,4},{0,0,0,15,0,0,2,0,1,5},{0,0,0,15,0,0,2,0,1,6},{0,0,0,15,0,0,2,0,1,7},{0,0,0,15,0,0,2,0,1,8}}, + {{0,0,0,15,0,0,2,0,1,9},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,15,0,0,2,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,15,0,0,10,0,1,0},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1}}, + {{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,1},{0,0,0,15,0,0,10,0,1,2},{0,0,0,15,0,0,10,0,1,3},{0,0,0,15,0,0,10,0,1,4},{0,0,0,15,0,0,10,0,1,5},{0,0,0,15,0,0,10,0,1,6},{0,0,0,15,0,0,10,0,1,7},{0,0,0,15,0,0,10,0,1,8},{0,0,0,15,0,0,10,0,1,9},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,2,0}}, + {{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1}}, + {{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,25,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,1,-1},{0,0,0,25,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1}}, + {{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,2,-1},{0,0,1,25,0,0,10,0,2,-1},{0,0,1,25,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,1,14,-1},{0,0,0,26,0,0,10,1,14,-1},{0,0,0,26,0,0,10,1,14,-1},{0,0,0,26,0,0,10,1,40,-1},{0,0,0,26,0,0,10,1,14,-1},{0,0,0,26,0,0,10,1,14,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1}}, + {{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,25,0,0,10,0,1,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1}}, + {{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,23,-1}}, + {{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,11,-1},{0,0,0,26,0,0,10,0,11,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1}}, + {{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,15,0,0,10,0,1,1},{0,0,0,15,0,0,10,0,1,2},{0,0,0,15,0,0,10,0,1,3},{0,0,0,15,0,0,10,0,1,4},{0,0,0,15,0,0,10,0,1,5},{0,0,0,15,0,0,10,0,1,6},{0,0,0,15,0,0,10,0,1,7},{0,0,0,15,0,0,10,0,1,8},{0,0,0,15,0,0,10,0,1,9},{0,0,0,15,0,0,10,0,1,-1}}, + {{0,0,0,15,0,0,10,0,1,1},{0,0,0,15,0,0,10,0,1,2},{0,0,0,15,0,0,10,0,1,3},{0,0,0,15,0,0,10,0,1,4},{0,0,0,15,0,0,10,0,1,5},{0,0,0,15,0,0,10,0,1,6},{0,0,0,15,0,0,10,0,1,7},{0,0,0,15,0,0,10,0,1,8},{0,0,0,15,0,0,10,0,1,9},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,1},{0,0,0,15,0,0,10,0,1,2},{0,0,0,15,0,0,10,0,1,3},{0,0,0,15,0,0,10,0,1,4},{0,0,0,15,0,0,10,0,1,5},{0,0,0,15,0,0,10,0,1,6}}, + {{0,0,0,15,0,0,10,0,1,7},{0,0,0,15,0,0,10,0,1,8},{0,0,0,15,0,0,10,0,1,9},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,1,26,0,0,10,1,2,-1},{0,0,1,26,0,0,10,1,2,-1},{0,0,1,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,1,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,1,26,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1}}, + {{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1},{46,0,0,26,0,0,0,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1}}, + {{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,0,1,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1}}, + {{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1}}, + {{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{56,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1}}, + {{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{56,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1}}, + {{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1}}, + {{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,26,0,0,10,1,2,-1},{7,0,0,26,0,0,10,1,2,-1},{7,0,0,26,0,0,10,1,2,-1},{7,0,0,26,0,0,10,1,2,-1},{7,0,0,26,0,0,10,1,2,-1},{7,0,0,26,0,0,10,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{7,0,0,12,0,0,17,1,9,-1}}, + {{7,0,0,12,0,0,17,1,9,-1},{7,0,0,12,0,0,17,1,9,-1},{7,0,0,9,0,0,0,1,2,-1},{7,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{7,0,0,21,0,0,10,1,11,-1},{7,0,0,21,0,0,10,1,4,-1},{7,0,0,21,0,0,10,1,4,-1},{7,0,0,21,0,0,10,1,4,-1},{7,0,0,15,0,0,10,1,2,-1},{7,0,0,21,0,0,10,1,11,-1},{7,0,0,21,0,0,10,1,4,-1}}, + {{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1}}, + {{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{12,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{12,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{12,0,0,5,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1}}, + {{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{60,0,0,7,2,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{60,0,0,6,0,0,0,1,2,-1}}, + {{60,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{60,0,0,12,2,0,17,1,9,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1}}, + {{0,0,0,21,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,23,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,23,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,23,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1}}, + {{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,17,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,20,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,17,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1}}, + {{0,0,0,20,0,0,10,1,23,-1},{0,0,0,19,0,0,10,1,23,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,1,0,22,0,0,10,1,20,-1},{0,2,0,18,0,0,10,1,8,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,11,-1},{0,0,0,6,0,0,10,1,2,-1}}, + {{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,21,0,0,10,1,2,-1},{0,0,0,17,0,0,10,1,3,-1},{0,0,0,17,0,0,10,1,3,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,2,-1}}, + {{0,0,0,17,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,22,0,0,10,1,20,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1}}, + {{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1}}, + {{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{17,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,1,29,0,0,9,0,4,-1},{0,0,1,21,0,0,10,2,8,-1},{0,0,1,21,0,0,10,2,8,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{17,0,1,6,1,0,0,0,18,-1},{0,0,1,7,1,0,0,0,14,-1},{17,0,1,14,1,0,0,0,14,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1}}, + {{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,1,17,0,0,10,3,18,-1},{0,0,1,22,0,0,10,3,20,-1},{0,0,1,18,0,0,10,3,8,-1},{0,0,1,18,0,0,10,3,8,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{1,0,1,12,0,0,17,0,9,-1},{1,0,1,12,0,0,17,0,9,-1},{1,0,1,12,0,0,17,0,9,-1},{1,0,1,12,0,0,17,0,9,-1},{18,0,1,10,0,0,0,0,9,-1},{18,0,1,10,0,0,0,0,9,-1}}, + {{0,0,1,17,0,0,10,3,14,-1},{0,0,1,6,0,0,0,0,14,-1},{0,0,1,6,0,0,0,0,14,-1},{0,0,1,6,0,0,0,0,14,-1},{0,0,1,6,0,0,0,0,14,-1},{0,0,1,6,0,0,0,0,9,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,14,0,0,0,0,14,-1},{17,0,1,6,0,0,0,0,18,-1},{0,0,1,7,0,0,0,0,18,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1}}, + {{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1}}, + {{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1}}, + {{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,0,14,-1}}, + {{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,0,14,-1},{20,0,1,7,1,0,0,2,37,-1},{20,0,1,7,1,0,0,2,37,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{1,0,1,12,1,0,17,0,9,-1},{1,0,1,12,1,0,17,0,9,-1},{0,0,1,24,0,0,10,2,18,-1},{0,0,1,24,0,0,10,2,18,-1},{20,0,1,6,1,0,0,0,18,-1},{20,0,1,6,1,0,0,0,18,-1},{20,0,1,7,0,0,0,0,14,-1}}, + {{0,0,1,17,1,0,10,3,18,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1}}, + {{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1}}, + {{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1}}, + {{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1}}, + {{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,2,37,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{22,0,1,7,1,0,0,0,14,-1},{0,0,1,21,1,0,10,0,18,-1},{0,0,1,6,1,0,0,3,37,-1},{22,0,1,6,1,0,0,0,18,-1},{22,0,1,6,1,0,0,0,18,-1},{22,0,1,7,0,0,0,0,14,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1}}, + {{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1}}, + {{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,2,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1}}, + {{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1}}, + {{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,1,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1}}, + {{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{18,0,1,7,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1}}, + {{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{5,0,1,7,1,0,0,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1},{22,0,1,7,0,0,0,2,37,-1}}, + {{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1}}, + {{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,10,0,14,-1},{18,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,15,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1},{0,0,0,15,0,0,0,0,1,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1}}, + {{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,0,0,14,-1},{18,0,1,26,0,0,10,0,14,-1},{18,0,1,26,0,0,10,0,14,-1},{18,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1},{0,0,1,15,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1}}, + {{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{22,0,1,26,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1}}, + {{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{22,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,2,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1}}, + {{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1}}, + {{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,6,2,0,0,0,18,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1}}, + {{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{41,0,1,7,2,0,0,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1}}, + {{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{41,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1}}, + {{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,7,0,0,0,1,2,-1},{131,0,0,6,0,0,0,1,2,-1},{131,0,0,6,0,0,0,1,2,-1},{131,0,0,6,0,0,0,1,2,-1},{131,0,0,6,0,0,0,1,2,-1},{131,0,0,6,0,0,0,1,2,-1},{131,0,0,6,0,0,0,1,2,-1},{131,0,0,21,0,0,0,1,4,-1},{131,0,0,21,0,0,0,1,4,-1}}, + {{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1}}, + {{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,6,0,0,0,1,2,-1},{99,0,0,21,0,0,10,1,4,-1},{99,0,0,21,0,0,10,1,11,-1},{99,0,0,21,0,0,10,1,4,-1}}, + {{99,0,0,13,0,0,0,1,19,0},{99,0,0,13,0,0,0,1,19,1},{99,0,0,13,0,0,0,1,19,2},{99,0,0,13,0,0,0,1,19,3},{99,0,0,13,0,0,0,1,19,4},{99,0,0,13,0,0,0,1,19,5},{99,0,0,13,0,0,0,1,19,6},{99,0,0,13,0,0,0,1,19,7},{99,0,0,13,0,0,0,1,19,8},{99,0,0,13,0,0,0,1,19,9},{99,0,0,7,0,0,0,1,2,-1},{99,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{8,0,0,9,1,0,0,1,2,-1},{8,0,0,5,1,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,7,0,0,0,1,2,-1},{8,0,0,12,0,0,17,1,9,-1}}, + {{8,0,0,11,0,0,17,1,9,-1},{8,0,0,11,0,0,17,1,9,-1},{8,0,0,11,0,0,17,1,9,-1},{8,0,0,21,0,0,10,1,2,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,21,0,0,10,1,2,-1},{8,0,0,6,1,0,10,1,2,-1}}, + {{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,9,0,0,0,1,2,-1},{8,0,0,5,0,0,0,1,2,-1},{8,0,0,6,0,0,0,1,2,-1},{8,0,0,6,0,0,0,1,2,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,1,0,17,1,9,-1}}, + {{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1}}, + {{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1},{130,0,0,14,0,0,0,1,2,-1}}, + {{130,0,0,12,0,0,17,1,9,-1},{130,0,0,12,0,0,17,1,9,-1},{130,0,0,21,0,0,0,1,2,-1},{130,0,0,21,0,0,0,1,4,-1},{130,0,0,21,0,0,0,1,4,-1},{130,0,0,21,0,0,0,1,4,-1},{130,0,0,21,0,0,0,1,4,-1},{130,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,6,1,0,10,1,2,-1}}, + {{0,0,0,24,0,0,10,1,2,-1},{0,0,0,24,0,0,10,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,6,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{0,0,0,6,1,0,10,1,2,-1},{0,0,0,24,0,0,0,1,2,-1},{0,0,0,24,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1}}, + {{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,9,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,5,1,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1},{25,0,0,7,0,0,0,1,2,-1}}, + {{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,12,0,0,17,1,9,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,12,0,0,17,1,9,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,12,0,0,17,1,9,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1}}, + {{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1}}, + {{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,7,0,0,0,1,2,-1},{58,0,0,10,0,0,0,1,9,-1},{58,0,0,10,0,0,0,1,9,-1},{58,0,0,12,0,0,17,1,9,-1},{58,0,0,12,0,0,17,1,9,-1},{58,0,0,10,0,0,0,1,9,-1},{58,0,0,26,0,0,10,1,2,-1},{58,0,0,26,0,0,10,1,2,-1},{58,0,0,26,0,0,10,1,2,-1},{58,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,23,0,0,4,1,21,-1},{0,0,0,26,0,0,4,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1}}, + {{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,7,0,0,0,1,2,-1},{90,0,0,21,0,0,10,1,5,-1},{90,0,0,21,0,0,10,1,5,-1},{90,0,0,21,0,0,10,1,11,-1},{90,0,0,21,0,0,10,1,11,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1}}, + {{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1}}, + {{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,7,0,0,0,1,2,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1}}, + {{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,10,0,0,0,1,9,-1},{111,0,0,12,0,0,17,1,9,-1},{111,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{111,0,0,21,0,0,0,1,4,-1},{111,0,0,21,0,0,0,1,4,-1}}, + {{111,0,0,13,0,0,0,1,19,0},{111,0,0,13,0,0,0,1,19,1},{111,0,0,13,0,0,0,1,19,2},{111,0,0,13,0,0,0,1,19,3},{111,0,0,13,0,0,0,1,19,4},{111,0,0,13,0,0,0,1,19,5},{111,0,0,13,0,0,0,1,19,6},{111,0,0,13,0,0,0,1,19,7},{111,0,0,13,0,0,0,1,19,8},{111,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1}}, + {{10,0,0,12,0,0,17,1,9,-1},{10,0,0,12,0,0,17,1,9,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,21,0,0,0,1,2,-1},{10,0,0,21,0,0,0,1,2,-1},{10,0,0,21,0,0,0,1,2,-1},{10,0,0,7,0,0,0,1,2,-1},{10,0,0,21,0,0,0,1,5,-1},{10,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{79,0,0,13,0,0,0,1,19,0},{79,0,0,13,0,0,0,1,19,1},{79,0,0,13,0,0,0,1,19,2},{79,0,0,13,0,0,0,1,19,3},{79,0,0,13,0,0,0,1,19,4},{79,0,0,13,0,0,0,1,19,5},{79,0,0,13,0,0,0,1,19,6},{79,0,0,13,0,0,0,1,19,7},{79,0,0,13,0,0,0,1,19,8},{79,0,0,13,0,0,0,1,19,9},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1}}, + {{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1}}, + {{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,7,0,0,0,1,2,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{79,0,0,12,0,0,17,1,9,-1},{0,0,0,21,0,0,0,1,4,-1},{79,0,0,21,0,0,0,1,4,-1}}, + {{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1}}, + {{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,7,0,0,0,1,2,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1}}, + {{110,0,0,12,0,0,17,1,9,-1},{110,0,0,12,0,0,17,1,9,-1},{110,0,0,10,0,0,0,1,9,-1},{110,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{110,0,0,21,0,0,0,1,2,-1}}, + {{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{18,0,1,7,0,0,0,0,33,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{78,0,0,12,0,0,17,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1}}, + {{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1}}, + {{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,7,0,0,0,1,2,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,12,0,0,17,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,10,0,0,0,1,9,-1},{78,0,0,10,0,0,0,1,9,-1}}, + {{78,0,0,10,0,0,0,1,9,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,4,-1},{78,0,0,21,0,0,0,1,4,-1},{78,0,0,21,0,0,0,1,4,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,6,0,0,0,1,2,-1}}, + {{78,0,0,13,0,0,0,1,19,0},{78,0,0,13,0,0,0,1,19,1},{78,0,0,13,0,0,0,1,19,2},{78,0,0,13,0,0,0,1,19,3},{78,0,0,13,0,0,0,1,19,4},{78,0,0,13,0,0,0,1,19,5},{78,0,0,13,0,0,0,1,19,6},{78,0,0,13,0,0,0,1,19,7},{78,0,0,13,0,0,0,1,19,8},{78,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{78,0,0,21,0,0,0,1,2,-1},{78,0,0,21,0,0,0,1,2,-1}}, + {{28,0,0,7,0,0,0,1,24,-1},{28,0,0,7,0,0,0,1,24,-1},{28,0,0,7,0,0,0,1,24,-1},{28,0,0,7,0,0,0,1,24,-1},{28,0,0,7,0,0,0,1,24,-1},{28,0,0,12,0,0,17,1,24,-1},{28,0,0,6,0,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1}}, + {{28,0,0,13,1,0,0,1,19,0},{28,0,0,13,1,0,0,1,19,1},{28,0,0,13,1,0,0,1,19,2},{28,0,0,13,1,0,0,1,19,3},{28,0,0,13,1,0,0,1,19,4},{28,0,0,13,1,0,0,1,19,5},{28,0,0,13,1,0,0,1,19,6},{28,0,0,13,1,0,0,1,19,7},{28,0,0,13,1,0,0,1,19,8},{28,0,0,13,1,0,0,1,19,9},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1}}, + {{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,10,0,0,0,1,9,-1}}, + {{66,0,0,10,0,0,0,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,10,0,0,0,1,9,-1},{66,0,0,10,0,0,0,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,7,0,0,0,1,2,-1},{66,0,0,12,0,0,17,1,9,-1},{66,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{66,0,0,13,0,0,0,1,19,0},{66,0,0,13,0,0,0,1,19,1},{66,0,0,13,0,0,0,1,19,2},{66,0,0,13,0,0,0,1,19,3},{66,0,0,13,0,0,0,1,19,4},{66,0,0,13,0,0,0,1,19,5},{66,0,0,13,0,0,0,1,19,6},{66,0,0,13,0,0,0,1,19,7},{66,0,0,13,0,0,0,1,19,8},{66,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{66,0,0,21,0,0,0,1,2,-1},{66,0,0,21,0,0,0,1,4,-1},{66,0,0,21,0,0,0,1,4,-1},{66,0,0,21,0,0,0,1,4,-1}}, + {{28,0,0,6,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,26,0,0,0,1,24,-1},{28,0,0,26,0,0,0,1,24,-1},{28,0,0,26,0,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,12,1,0,17,1,24,-1},{28,0,0,10,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1},{28,0,0,7,1,0,0,1,24,-1}}, + {{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1}}, + {{127,0,0,12,0,0,17,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,12,0,0,17,1,24,-1}}, + {{127,0,0,7,0,0,0,1,24,-1},{127,0,0,12,0,0,17,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,7,0,0,0,1,24,-1},{127,0,0,6,0,0,0,1,24,-1},{127,0,0,21,0,0,0,1,24,-1},{127,0,0,21,0,0,0,1,24,-1}}, + {{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,12,0,0,17,1,9,-1},{115,0,0,12,0,0,17,1,9,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,10,0,0,0,1,9,-1}}, + {{115,0,0,21,0,0,0,1,4,-1},{115,0,0,21,0,0,0,1,4,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,6,0,0,0,1,2,-1},{115,0,0,6,0,0,0,1,2,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{11,0,0,7,1,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{0,0,0,24,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1},{25,0,0,6,0,0,0,1,2,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{14,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1},{6,0,0,5,0,0,0,1,2,-1}}, + {{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1}}, + {{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,7,0,0,0,1,2,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,12,0,0,17,1,9,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,12,0,0,17,1,9,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,21,0,0,0,1,4,-1},{115,0,0,10,0,0,0,1,9,-1},{115,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{115,0,0,13,0,0,0,1,19,0},{115,0,0,13,0,0,0,1,19,1},{115,0,0,13,0,0,0,1,19,2},{115,0,0,13,0,0,0,1,19,3},{115,0,0,13,0,0,0,1,19,4},{115,0,0,13,0,0,0,1,19,5},{115,0,0,13,0,0,0,1,19,6},{115,0,0,13,0,0,0,1,19,7},{115,0,0,13,0,0,0,1,19,8},{115,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{18,0,1,7,1,0,0,0,31,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1}}, + {{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,31,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1}}, + {{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1}}, + {{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,31,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1}}, + {{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,31,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1}}, + {{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{18,0,1,7,1,0,0,0,32,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{18,0,0,7,0,0,0,0,35,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1}}, + {{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{18,0,0,7,0,0,0,0,34,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1},{103,0,0,4,0,0,0,1,25,-1}}, + {{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1}}, + {{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1}}, + {{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1}}, + {{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1}}, + {{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1}}, + {{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{17,0,1,7,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{25,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{3,0,0,5,0,0,0,1,2,-1},{3,0,0,5,0,0,0,1,2,-1},{3,0,0,5,0,0,0,1,2,-1},{3,0,0,5,0,0,0,1,2,-1},{3,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,12,0,0,17,1,9,-1},{19,0,0,7,0,0,1,1,38,-1}}, + {{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,25,0,0,3,1,2,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1}}, + {{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{103,0,0,2,0,0,1,1,0,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{103,0,0,2,0,0,1,1,0,-1},{19,0,0,7,0,0,1,1,38,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{103,0,0,2,0,0,1,1,0,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{103,0,0,2,0,0,1,1,0,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1},{19,0,0,7,0,0,1,1,38,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1}}, + {{2,0,0,24,0,0,13,1,2,-1},{2,0,0,24,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{0,0,0,18,0,0,10,1,8,-1},{0,0,0,22,0,0,10,1,20,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,23,0,0,13,1,21,-1},{2,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1},{1,0,0,12,0,1,17,1,9,-1}}, + {{0,0,1,21,0,0,10,0,16,-1},{0,0,1,21,0,0,10,0,8,-1},{0,0,1,21,0,0,10,0,8,-1},{0,0,1,21,0,0,10,0,16,-1},{0,0,1,21,0,0,10,0,16,-1},{0,0,1,21,0,0,10,0,11,-1},{0,0,1,21,0,0,10,0,11,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,21,0,0,10,0,15,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{1,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1},{8,0,0,12,0,0,17,1,9,-1}}, + {{0,0,1,21,0,0,10,0,14,-1},{0,0,1,17,0,0,10,0,14,-1},{0,0,1,17,0,0,10,0,14,-1},{0,0,1,16,0,0,10,0,14,-1},{0,0,1,16,0,0,10,0,14,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1}}, + {{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,22,0,0,10,0,20,-1},{0,0,1,18,0,0,10,0,8,-1},{0,0,1,21,0,0,10,1,14,-1},{0,0,1,21,0,0,10,1,14,-1},{0,0,1,21,0,0,10,1,14,-1},{0,0,1,21,0,0,10,1,14,-1},{0,0,1,16,0,0,10,1,14,-1},{0,0,1,16,0,0,10,1,14,-1},{0,0,1,16,0,0,10,1,14,-1}}, + {{0,0,1,21,0,0,6,2,8,-1},{0,0,1,21,0,0,10,2,14,-1},{0,0,1,21,0,0,6,2,8,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,1,21,0,0,10,0,18,-1},{0,0,1,21,0,0,6,0,18,-1},{0,0,1,21,0,0,10,0,11,-1},{0,0,1,21,0,0,10,0,11,-1},{0,0,1,17,0,0,10,1,14,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,1,21,0,0,4,0,14,-1}}, + {{0,0,1,21,0,0,10,0,14,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,25,0,0,3,0,14,-1},{0,0,1,17,0,0,3,1,14,-1},{0,0,1,25,0,0,10,1,14,-1},{0,0,1,25,0,0,10,1,14,-1},{0,0,1,25,0,0,10,1,14,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,23,0,0,4,0,22,-1},{0,0,1,21,0,0,4,0,21,-1},{0,0,1,21,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{0,0,0,1,0,1,18,1,30,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{0,0,1,21,0,0,10,2,11,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,21,0,0,4,0,14,-1},{0,0,1,23,0,0,4,0,22,-1},{0,0,1,21,0,0,4,0,21,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,21,0,0,10,0,14,-1},{0,1,1,22,0,0,10,3,20,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,1,21,0,0,10,0,14,-1},{0,0,1,25,0,0,3,0,14,-1},{0,0,1,21,0,0,6,2,8,-1},{0,0,1,17,0,0,3,1,14,-1},{0,0,1,21,0,0,6,2,8,-1},{0,0,1,21,0,0,6,0,14,-1}}, + {{0,0,1,13,0,0,2,0,14,0},{0,0,1,13,0,0,2,0,14,1},{0,0,1,13,0,0,2,0,14,2},{0,0,1,13,0,0,2,0,14,3},{0,0,1,13,0,0,2,0,14,4},{0,0,1,13,0,0,2,0,14,5},{0,0,1,13,0,0,2,0,14,6},{0,0,1,13,0,0,2,0,14,7},{0,0,1,13,0,0,2,0,14,8},{0,0,1,13,0,0,2,0,14,9},{0,0,1,21,0,0,6,3,18,-1},{0,0,1,21,0,0,10,3,18,-1},{0,0,1,25,0,0,10,1,14,-1},{0,0,1,25,0,0,10,1,14,-1},{0,0,1,25,0,0,10,1,14,-1},{0,0,1,21,0,0,10,2,11,-1}}, + {{0,0,1,21,0,0,10,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1}}, + {{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{25,0,1,9,0,0,0,0,14,-1},{0,1,1,22,0,0,10,3,20,-1},{0,0,1,21,0,0,10,0,14,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,1,24,0,0,10,0,14,-1},{0,0,1,16,0,0,10,3,14,-1}}, + {{0,0,1,24,0,0,10,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1}}, + {{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{25,0,1,5,0,0,0,0,14,-1},{0,1,1,22,0,0,10,3,20,-1},{0,0,1,25,0,0,10,3,14,-1},{0,2,1,18,0,0,10,3,8,-1},{0,0,1,25,0,0,10,3,14,-1},{0,1,1,22,0,0,10,3,20,-1}}, + {{0,2,1,18,0,0,10,3,8,-1},{0,0,1,21,0,0,10,1,8,-1},{0,1,1,22,0,0,10,1,20,-1},{0,2,1,18,0,0,10,1,8,-1},{0,0,1,21,0,0,10,1,8,-1},{0,0,1,21,0,0,10,1,18,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,37,-1}}, + {{0,0,1,6,0,0,0,1,37,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1}}, + {{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1}}, + {{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{22,0,1,7,0,0,0,1,14,-1},{0,0,1,6,0,0,0,1,18,-1},{0,0,1,6,0,0,0,1,18,-1}}, + {{18,0,1,7,0,1,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1}}, + {{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{18,0,1,7,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,1,23,0,0,4,0,21,-1},{0,0,1,23,0,0,4,0,22,-1},{0,0,1,25,0,0,10,0,14,-1},{0,0,1,24,0,0,10,3,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,23,0,0,4,0,22,-1},{0,0,1,23,0,0,4,0,22,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,1,26,0,0,10,1,2,-1},{0,0,1,25,0,0,10,1,2,-1},{0,0,1,25,0,0,10,1,2,-1},{0,0,1,25,0,0,10,1,2,-1},{0,0,1,25,0,0,10,1,2,-1},{0,0,1,26,0,0,10,1,2,-1},{0,0,1,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{103,0,0,2,0,1,0,0,0,-1},{0,0,0,1,0,0,10,1,9,-1},{0,0,0,1,0,0,10,1,9,-1},{0,0,0,1,0,0,10,1,9,-1},{0,0,0,26,0,0,10,0,7,-1},{0,0,0,26,0,0,10,0,1,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1}}, + {{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1}}, + {{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1}}, + {{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{49,0,0,7,0,0,0,1,2,-1}}, + {{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{49,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,21,0,0,0,1,4,-1},{0,0,0,21,0,0,10,1,4,-1},{0,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1}}, + {{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1}}, + {{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{0,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1}}, + {{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1}}, + {{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,14,0,0,10,1,2,-1},{14,0,0,15,0,0,10,1,2,-1},{14,0,0,15,0,0,10,1,2,-1},{14,0,0,15,0,0,10,1,2,-1},{14,0,0,15,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1}}, + {{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,15,0,0,10,1,2,-1},{14,0,0,15,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,0,1,2,-1},{14,0,0,26,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{14,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{0,0,0,26,0,0,0,1,2,-1},{1,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1}}, + {{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{107,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1},{104,0,0,7,0,0,0,1,2,-1}}, + {{104,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{1,0,0,12,0,0,17,1,9,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1}}, + {{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{0,0,0,15,0,0,2,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1},{30,0,0,7,0,0,0,1,2,-1}}, + {{30,0,0,15,0,0,0,1,2,-1},{30,0,0,15,0,0,0,1,2,-1},{30,0,0,15,0,0,0,1,2,-1},{30,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1}}, + {{13,0,0,7,0,0,0,1,2,-1},{13,0,0,14,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,7,0,0,0,1,2,-1},{13,0,0,14,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1}}, + {{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,7,0,0,0,1,2,-1},{89,0,0,12,0,0,17,1,9,-1},{89,0,0,12,0,0,17,1,9,-1},{89,0,0,12,0,0,17,1,9,-1},{89,0,0,12,0,0,17,1,9,-1},{89,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1}}, + {{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{53,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{53,0,0,21,0,0,0,1,4,-1}}, + {{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1}}, + {{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1},{61,0,0,7,0,0,0,1,2,-1}}, + {{61,0,0,21,0,0,0,1,4,-1},{61,0,0,14,0,0,0,1,2,-1},{61,0,0,14,0,0,0,1,2,-1},{61,0,0,14,0,0,0,1,2,-1},{61,0,0,14,0,0,0,1,2,-1},{61,0,0,14,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1}}, + {{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,9,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1}}, + {{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1},{9,0,0,5,0,0,0,1,2,-1}}, + {{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1},{51,0,0,7,0,0,0,1,2,-1}}, + {{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1}}, + {{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{50,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{50,0,0,13,0,0,0,1,19,0},{50,0,0,13,0,0,0,1,19,1},{50,0,0,13,0,0,0,1,19,2},{50,0,0,13,0,0,0,1,19,3},{50,0,0,13,0,0,0,1,19,4},{50,0,0,13,0,0,0,1,19,5},{50,0,0,13,0,0,0,1,19,6},{50,0,0,13,0,0,0,1,19,7},{50,0,0,13,0,0,0,1,19,8},{50,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1}}, + {{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{171,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1}}, + {{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1}}, + {{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{171,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1}}, + {{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{136,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1}}, + {{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{159,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{159,0,0,21,0,0,0,1,2,-1}}, + {{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1}}, + {{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{83,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{47,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1}}, + {{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1}}, + {{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{47,0,0,7,0,0,1,1,2,-1},{47,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{47,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{47,0,0,7,0,0,1,1,2,-1}}, + {{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1}}, + {{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{116,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{116,0,0,21,0,0,1,1,4,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1},{116,0,0,15,0,0,1,1,2,-1}}, + {{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1}}, + {{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,7,0,0,1,1,2,-1},{144,0,0,26,0,0,1,1,2,-1},{144,0,0,26,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1},{144,0,0,15,0,0,1,1,2,-1}}, + {{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1}}, + {{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{143,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1},{143,0,0,15,0,0,1,1,2,-1}}, + {{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1}}, + {{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{162,0,0,7,0,0,1,1,2,-1},{162,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{162,0,0,15,0,0,1,1,2,-1},{162,0,0,15,0,0,1,1,2,-1},{162,0,0,15,0,0,1,1,2,-1},{162,0,0,15,0,0,1,1,2,-1},{162,0,0,15,0,0,1,1,2,-1}}, + {{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1}}, + {{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,7,0,0,1,1,2,-1},{91,0,0,15,0,0,1,1,2,-1},{91,0,0,15,0,0,1,1,2,-1},{91,0,0,15,0,0,1,1,2,-1},{91,0,0,15,0,0,1,1,2,-1},{91,0,0,15,0,0,1,1,2,-1},{91,0,0,15,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{91,0,0,21,0,0,10,1,4,-1}}, + {{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1}}, + {{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{108,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{108,0,0,21,0,0,1,1,2,-1}}, + {{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1},{86,0,0,7,0,0,1,0,2,-1}}, + {{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1}}, + {{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1},{141,0,0,7,0,0,1,1,2,-1}}, + {{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1}}, + {{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1},{141,0,0,15,0,0,1,1,2,-1}}, + {{57,0,0,7,0,0,1,1,2,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1}}, + {{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1}}, + {{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1}}, + {{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{57,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{57,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{57,0,0,12,0,0,17,1,9,-1}}, + {{57,0,0,15,0,0,1,1,2,1},{57,0,0,15,0,0,1,1,2,2},{57,0,0,15,0,0,1,1,2,3},{57,0,0,15,0,0,1,1,2,4},{57,0,0,15,0,0,1,1,2,-1},{57,0,0,15,0,0,1,1,2,-1},{57,0,0,15,0,0,1,1,2,-1},{57,0,0,15,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,4,-1},{57,0,0,21,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1}}, + {{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,7,0,0,1,1,2,-1},{133,0,0,15,0,0,1,1,2,-1},{133,0,0,15,0,0,1,1,2,-1},{133,0,0,21,0,0,1,1,2,-1}}, + {{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1}}, + {{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,7,0,0,1,1,2,-1},{142,0,0,15,0,0,1,1,2,-1},{142,0,0,15,0,0,1,1,2,-1},{142,0,0,15,0,0,1,1,2,-1}}, + {{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,26,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1}}, + {{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1}}, + {{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,7,0,0,1,1,2,-1},{121,0,0,12,0,0,17,1,9,-1},{121,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{121,0,0,15,0,0,1,1,2,-1},{121,0,0,15,0,0,1,1,2,-1},{121,0,0,15,0,0,1,1,2,-1},{121,0,0,15,0,0,1,1,2,-1},{121,0,0,15,0,0,1,1,2,-1}}, + {{121,0,0,21,0,0,1,1,4,-1},{121,0,0,21,0,0,1,1,4,-1},{121,0,0,21,0,0,1,1,4,-1},{121,0,0,21,0,0,1,1,4,-1},{121,0,0,21,0,0,1,1,4,-1},{121,0,0,21,0,0,1,1,4,-1},{121,0,0,21,0,0,1,1,15,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1}}, + {{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{117,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{117,0,0,21,0,0,10,1,4,-1},{117,0,0,21,0,0,10,1,4,-1},{117,0,0,21,0,0,10,1,4,-1},{117,0,0,21,0,0,10,1,4,-1},{117,0,0,21,0,0,10,1,4,-1},{117,0,0,21,0,0,10,1,4,-1},{117,0,0,21,0,0,10,1,4,-1}}, + {{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1}}, + {{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{125,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1},{125,0,0,15,0,0,1,1,2,-1}}, + {{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1}}, + {{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{122,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1},{122,0,0,15,0,0,1,1,2,-1}}, + {{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1}}, + {{123,0,0,7,0,0,1,1,2,-1},{123,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{123,0,0,21,0,0,1,1,2,-1},{123,0,0,21,0,0,1,1,2,-1},{123,0,0,21,0,0,1,1,2,-1},{123,0,0,21,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{123,0,0,15,0,0,1,1,2,-1},{123,0,0,15,0,0,1,1,2,-1},{123,0,0,15,0,0,1,1,2,-1},{123,0,0,15,0,0,1,1,2,-1},{123,0,0,15,0,0,1,1,2,-1},{123,0,0,15,0,0,1,1,2,-1},{123,0,0,15,0,0,1,1,2,-1}}, + {{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1}}, + {{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{88,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1}}, + {{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{76,0,0,9,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1}}, + {{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{76,0,0,5,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{76,0,0,15,0,0,1,1,2,-1},{76,0,0,15,0,0,1,1,2,-1},{76,0,0,15,0,0,1,1,2,-1},{76,0,0,15,0,0,1,1,2,-1},{76,0,0,15,0,0,1,1,2,-1},{76,0,0,15,0,0,1,1,2,-1}}, + {{2,0,0,15,0,0,5,1,2,1},{2,0,0,15,0,0,5,1,2,2},{2,0,0,15,0,0,5,1,2,3},{2,0,0,15,0,0,5,1,2,4},{2,0,0,15,0,0,5,1,2,5},{2,0,0,15,0,0,5,1,2,6},{2,0,0,15,0,0,5,1,2,7},{2,0,0,15,0,0,5,1,2,8},{2,0,0,15,0,0,5,1,2,9},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1}}, + {{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{2,0,0,15,0,0,5,1,2,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{65,0,0,10,0,0,0,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,10,0,0,0,1,9,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1}}, + {{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1}}, + {{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,7,0,0,0,1,2,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1}}, + {{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,12,0,0,17,1,9,-1},{65,0,0,21,0,0,0,1,4,-1},{65,0,0,21,0,0,0,1,4,-1},{65,0,0,21,0,0,0,1,2,-1},{65,0,0,21,0,0,0,1,2,-1},{65,0,0,21,0,0,0,1,2,-1},{65,0,0,21,0,0,0,1,2,-1},{65,0,0,21,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{65,0,0,15,0,0,10,1,2,1},{65,0,0,15,0,0,10,1,2,2},{65,0,0,15,0,0,10,1,2,3},{65,0,0,15,0,0,10,1,2,4},{65,0,0,15,0,0,10,1,2,5},{65,0,0,15,0,0,10,1,2,6},{65,0,0,15,0,0,10,1,2,7},{65,0,0,15,0,0,10,1,2,8},{65,0,0,15,0,0,10,1,2,9},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1}}, + {{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,15,0,0,10,1,2,-1},{65,0,0,13,0,0,0,1,19,0},{65,0,0,13,0,0,0,1,19,1},{65,0,0,13,0,0,0,1,19,2},{65,0,0,13,0,0,0,1,19,3},{65,0,0,13,0,0,0,1,19,4},{65,0,0,13,0,0,0,1,19,5},{65,0,0,13,0,0,0,1,19,6},{65,0,0,13,0,0,0,1,19,7},{65,0,0,13,0,0,0,1,19,8},{65,0,0,13,0,0,0,1,19,9}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{65,0,0,12,0,0,17,1,9,-1}}, + {{120,0,0,12,0,0,17,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,10,0,0,0,1,9,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1}}, + {{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1},{120,0,0,7,0,0,0,1,2,-1}}, + {{120,0,0,10,0,0,0,1,9,-1},{120,0,0,10,0,0,0,1,9,-1},{120,0,0,10,0,0,0,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,10,0,0,0,1,9,-1},{120,0,0,10,0,0,0,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,12,0,0,17,1,9,-1},{120,0,0,21,0,0,0,1,2,-1},{120,0,0,21,0,0,0,1,2,-1},{120,0,0,1,0,0,0,1,2,-1},{120,0,0,21,0,0,0,1,4,-1},{120,0,0,21,0,0,0,1,4,-1}}, + {{120,0,0,21,0,0,0,1,4,-1},{120,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1}}, + {{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{152,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{152,0,0,13,0,0,0,1,19,0},{152,0,0,13,0,0,0,1,19,1},{152,0,0,13,0,0,0,1,19,2},{152,0,0,13,0,0,0,1,19,3},{152,0,0,13,0,0,0,1,19,4},{152,0,0,13,0,0,0,1,19,5},{152,0,0,13,0,0,0,1,19,6},{152,0,0,13,0,0,0,1,19,7},{152,0,0,13,0,0,0,1,19,8},{152,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1}}, + {{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1}}, + {{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,7,0,0,0,1,2,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,10,0,0,0,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1}}, + {{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{118,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{118,0,0,13,0,0,0,1,19,0},{118,0,0,13,0,0,0,1,19,1},{118,0,0,13,0,0,0,1,19,2},{118,0,0,13,0,0,0,1,19,3},{118,0,0,13,0,0,0,1,19,4},{118,0,0,13,0,0,0,1,19,5},{118,0,0,13,0,0,0,1,19,6},{118,0,0,13,0,0,0,1,19,7},{118,0,0,13,0,0,0,1,19,8},{118,0,0,13,0,0,0,1,19,9}}, + {{118,0,0,21,0,0,0,1,4,-1},{118,0,0,21,0,0,0,1,4,-1},{118,0,0,21,0,0,0,1,4,-1},{118,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1}}, + {{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,7,0,0,0,1,2,-1},{160,0,0,12,0,0,17,1,9,-1},{160,0,0,21,0,0,0,1,2,-1},{160,0,0,21,0,0,0,1,5,-1},{160,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,10,0,0,0,1,9,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1}}, + {{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1}}, + {{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,10,0,0,0,1,9,-1},{151,0,0,10,0,0,0,1,9,-1},{151,0,0,10,0,0,0,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,10,0,0,0,1,9,-1}}, + {{151,0,0,10,0,0,0,1,9,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,21,0,0,0,1,4,-1},{151,0,0,21,0,0,0,1,4,-1},{151,0,0,21,0,0,0,1,2,-1},{151,0,0,21,0,0,0,1,4,-1},{151,0,0,21,0,0,0,1,2,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,12,0,0,17,1,9,-1},{151,0,0,21,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{151,0,0,13,0,0,0,1,19,0},{151,0,0,13,0,0,0,1,19,1},{151,0,0,13,0,0,0,1,19,2},{151,0,0,13,0,0,0,1,19,3},{151,0,0,13,0,0,0,1,19,4},{151,0,0,13,0,0,0,1,19,5},{151,0,0,13,0,0,0,1,19,6},{151,0,0,13,0,0,0,1,19,7},{151,0,0,13,0,0,0,1,19,8},{151,0,0,13,0,0,0,1,19,9},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,21,0,0,0,1,5,-1},{151,0,0,7,0,0,0,1,2,-1},{151,0,0,21,0,0,0,1,4,-1},{151,0,0,21,0,0,0,1,4,-1},{151,0,0,21,0,0,0,1,4,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1}}, + {{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{33,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1}}, + {{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1}}, + {{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,7,0,0,0,1,2,-1},{157,0,0,10,0,0,0,1,9,-1},{157,0,0,10,0,0,0,1,9,-1},{157,0,0,10,0,0,0,1,9,-1},{157,0,0,12,0,0,17,1,9,-1}}, + {{157,0,0,12,0,0,17,1,9,-1},{157,0,0,12,0,0,17,1,9,-1},{157,0,0,10,0,0,0,1,9,-1},{157,0,0,10,0,0,0,1,9,-1},{157,0,0,12,0,0,17,1,9,-1},{157,0,0,10,0,0,0,1,9,-1},{157,0,0,12,0,0,17,1,9,-1},{157,0,0,12,0,0,17,1,9,-1},{157,0,0,21,0,0,0,1,4,-1},{157,0,0,21,0,0,0,1,4,-1},{157,0,0,21,0,0,0,1,2,-1},{157,0,0,21,0,0,0,1,4,-1},{157,0,0,21,0,0,0,1,4,-1},{157,0,0,21,0,0,0,1,2,-1},{157,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{164,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{164,0,0,7,0,0,0,1,2,-1}}, + {{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{164,0,0,7,0,0,0,1,2,-1}}, + {{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,7,0,0,0,1,2,-1},{164,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1}}, + {{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,7,0,0,0,1,2,-1},{145,0,0,12,0,0,17,1,9,-1}}, + {{145,0,0,10,0,0,0,1,9,-1},{145,0,0,10,0,0,0,1,9,-1},{145,0,0,10,0,0,0,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{145,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{145,0,0,13,0,0,0,1,19,0},{145,0,0,13,0,0,0,1,19,1},{145,0,0,13,0,0,0,1,19,2},{145,0,0,13,0,0,0,1,19,3},{145,0,0,13,0,0,0,1,19,4},{145,0,0,13,0,0,0,1,19,5},{145,0,0,13,0,0,0,1,19,6},{145,0,0,13,0,0,0,1,19,7},{145,0,0,13,0,0,0,1,19,8},{145,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1}}, + {{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1}}, + {{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1}}, + {{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1}}, + {{137,0,0,12,0,0,17,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{137,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1}}, + {{137,0,0,7,0,0,0,1,2,-1},{137,0,0,7,0,0,0,1,2,-1},{137,0,0,10,0,0,0,1,9,-1},{137,0,0,10,0,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{137,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1}}, + {{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,10,0,0,0,1,9,-1},{170,0,0,10,0,0,0,1,9,-1},{170,0,0,10,0,0,0,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1}}, + {{170,0,0,10,0,0,0,1,9,-1},{170,0,0,10,0,0,0,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,10,0,0,0,1,9,-1},{170,0,0,12,0,0,17,1,9,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,7,0,0,0,1,2,-1},{170,0,0,21,0,0,0,1,4,-1},{170,0,0,21,0,0,0,1,4,-1},{170,0,0,21,0,0,0,1,4,-1},{170,0,0,21,0,0,0,1,4,-1},{170,0,0,21,0,0,0,1,2,-1}}, + {{170,0,0,13,0,0,0,1,19,0},{170,0,0,13,0,0,0,1,19,1},{170,0,0,13,0,0,0,1,19,2},{170,0,0,13,0,0,0,1,19,3},{170,0,0,13,0,0,0,1,19,4},{170,0,0,13,0,0,0,1,19,5},{170,0,0,13,0,0,0,1,19,6},{170,0,0,13,0,0,0,1,19,7},{170,0,0,13,0,0,0,1,19,8},{170,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{170,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{170,0,0,21,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1}}, + {{158,0,0,10,0,0,0,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,12,0,0,17,1,9,-1}}, + {{158,0,0,12,0,0,17,1,9,-1},{158,0,0,10,0,0,0,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,12,0,0,17,1,9,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{158,0,0,21,0,0,0,1,2,-1},{158,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{158,0,0,13,0,0,0,1,19,0},{158,0,0,13,0,0,0,1,19,1},{158,0,0,13,0,0,0,1,19,2},{158,0,0,13,0,0,0,1,19,3},{158,0,0,13,0,0,0,1,19,4},{158,0,0,13,0,0,0,1,19,5},{158,0,0,13,0,0,0,1,19,6},{158,0,0,13,0,0,0,1,19,7},{158,0,0,13,0,0,0,1,19,8},{158,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1}}, + {{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,10,0,0,0,0,9,-1}}, + {{166,0,0,10,0,0,0,0,9,-1},{166,0,0,10,0,0,0,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{166,0,0,10,0,0,0,0,9,-1},{166,0,0,10,0,0,0,0,9,-1},{166,0,0,10,0,0,0,0,9,-1},{166,0,0,10,0,0,0,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{166,0,0,10,0,0,0,0,9,-1},{166,0,0,12,0,0,17,0,9,-1}}, + {{166,0,0,12,0,0,17,0,9,-1},{166,0,0,21,0,0,0,0,5,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,11,-1},{166,0,0,21,0,0,0,0,11,-1},{166,0,0,21,0,0,0,0,2,-1},{166,0,0,21,0,0,0,0,2,-1},{166,0,0,21,0,0,0,0,2,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1}}, + {{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,21,0,0,0,0,4,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,7,0,0,0,0,2,-1},{166,0,0,12,0,0,17,0,9,-1},{166,0,0,12,0,0,17,0,9,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1}}, + {{163,0,0,10,0,0,0,1,9,-1},{163,0,0,10,0,0,0,1,9,-1},{163,0,0,10,0,0,0,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,10,0,0,0,1,9,-1},{163,0,0,10,0,0,0,1,9,-1},{163,0,0,12,0,0,17,1,9,-1},{163,0,0,10,0,0,0,1,9,-1},{163,0,0,12,0,0,17,1,9,-1}}, + {{163,0,0,12,0,0,17,1,9,-1},{163,0,0,21,0,0,0,1,4,-1},{163,0,0,21,0,0,0,1,4,-1},{163,0,0,21,0,0,0,1,2,-1},{163,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{163,0,0,13,0,0,0,1,19,0},{163,0,0,13,0,0,0,1,19,1},{163,0,0,13,0,0,0,1,19,2},{163,0,0,13,0,0,0,1,19,3},{163,0,0,13,0,0,0,1,19,4},{163,0,0,13,0,0,0,1,19,5},{163,0,0,13,0,0,0,1,19,6},{163,0,0,13,0,0,0,1,19,7},{163,0,0,13,0,0,0,1,19,8},{163,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{27,0,0,21,0,0,10,1,5,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1}}, + {{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,7,0,0,0,1,2,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,10,0,0,0,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,10,0,0,0,1,9,-1},{153,0,0,10,0,0,0,1,9,-1}}, + {{153,0,0,12,0,0,17,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{153,0,0,10,0,0,0,1,9,-1},{153,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{153,0,0,13,0,0,0,1,19,0},{153,0,0,13,0,0,0,1,19,1},{153,0,0,13,0,0,0,1,19,2},{153,0,0,13,0,0,0,1,19,3},{153,0,0,13,0,0,0,1,19,4},{153,0,0,13,0,0,0,1,19,5},{153,0,0,13,0,0,0,1,19,6},{153,0,0,13,0,0,0,1,19,7},{153,0,0,13,0,0,0,1,19,8},{153,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1}}, + {{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{161,0,0,7,0,0,0,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1}}, + {{161,0,0,10,0,0,0,1,24,-1},{161,0,0,10,0,0,0,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,10,0,0,0,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{161,0,0,12,0,0,17,1,24,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{161,0,0,13,0,0,0,1,19,0},{161,0,0,13,0,0,0,1,19,1},{161,0,0,13,0,0,0,1,19,2},{161,0,0,13,0,0,0,1,19,3},{161,0,0,13,0,0,0,1,19,4},{161,0,0,13,0,0,0,1,19,5},{161,0,0,13,0,0,0,1,19,6},{161,0,0,13,0,0,0,1,19,7},{161,0,0,13,0,0,0,1,19,8},{161,0,0,13,0,0,0,1,19,9},{161,0,0,15,0,0,0,1,24,-1},{161,0,0,15,0,0,0,1,24,-1},{161,0,0,21,0,0,0,1,4,-1},{161,0,0,21,0,0,0,1,4,-1},{161,0,0,21,0,0,0,1,4,-1},{161,0,0,26,0,0,0,1,24,-1}}, + {{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1},{146,0,0,9,0,0,0,1,2,-1}}, + {{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1},{146,0,0,5,0,0,0,1,2,-1}}, + {{146,0,0,13,0,0,0,1,19,0},{146,0,0,13,0,0,0,1,19,1},{146,0,0,13,0,0,0,1,19,2},{146,0,0,13,0,0,0,1,19,3},{146,0,0,13,0,0,0,1,19,4},{146,0,0,13,0,0,0,1,19,5},{146,0,0,13,0,0,0,1,19,6},{146,0,0,13,0,0,0,1,19,7},{146,0,0,13,0,0,0,1,19,8},{146,0,0,13,0,0,0,1,19,9},{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1}}, + {{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1},{146,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{146,0,0,7,0,0,0,1,2,-1}}, + {{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1}}, + {{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{165,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1}}, + {{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1}}, + {{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,7,0,0,0,1,2,-1},{168,0,0,10,0,0,0,1,9,-1}}, + {{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,12,0,0,17,1,9,-1},{168,0,0,10,0,0,0,1,9,-1},{168,0,0,12,0,0,0,1,9,-1}}, + {{168,0,0,7,0,0,0,1,2,-1},{168,0,0,21,0,0,0,1,4,-1},{168,0,0,21,0,0,0,1,4,-1},{168,0,0,21,0,0,0,1,4,-1},{168,0,0,21,0,0,0,1,4,-1},{168,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{168,0,0,13,0,0,0,1,19,0},{168,0,0,13,0,0,0,1,19,1},{168,0,0,13,0,0,0,1,19,2},{168,0,0,13,0,0,0,1,19,3},{168,0,0,13,0,0,0,1,19,4},{168,0,0,13,0,0,0,1,19,5},{168,0,0,13,0,0,0,1,19,6},{168,0,0,13,0,0,0,1,19,7},{168,0,0,13,0,0,0,1,19,8},{168,0,0,13,0,0,0,1,19,9},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1}}, + {{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{168,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{169,0,0,21,0,0,0,1,5,-1},{169,0,0,21,0,0,0,1,11,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1}}, + {{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1},{169,0,0,7,0,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1}}, + {{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{169,0,0,10,0,0,0,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1}}, + {{169,0,0,12,0,0,17,1,9,-1},{169,0,0,10,0,0,0,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,10,0,0,0,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{169,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1}}, + {{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1}}, + {{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{101,0,0,14,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{101,0,0,21,0,0,0,1,4,-1},{101,0,0,21,0,0,0,1,4,-1},{101,0,0,21,0,0,0,1,4,-1},{101,0,0,21,0,0,0,1,4,-1},{101,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{101,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1}}, + {{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,20,-1},{71,0,0,7,0,0,0,0,20,-1},{71,0,0,7,0,0,0,0,20,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1}}, + {{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,20,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,20,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1}}, + {{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,20,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,8,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1}}, + {{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{71,0,0,7,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1}}, + {{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,20,-1},{156,0,0,7,0,0,0,0,8,-1}}, + {{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{156,0,0,7,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{130,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1}}, + {{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{149,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{149,0,0,13,0,0,0,1,19,0},{149,0,0,13,0,0,0,1,19,1},{149,0,0,13,0,0,0,1,19,2},{149,0,0,13,0,0,0,1,19,3},{149,0,0,13,0,0,0,1,19,4},{149,0,0,13,0,0,0,1,19,5},{149,0,0,13,0,0,0,1,19,6},{149,0,0,13,0,0,0,1,19,7},{149,0,0,13,0,0,0,1,19,8},{149,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{149,0,0,21,0,0,0,1,4,-1},{149,0,0,21,0,0,0,1,4,-1}}, + {{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1}}, + {{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{134,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{134,0,0,12,0,0,17,1,9,-1},{134,0,0,12,0,0,17,1,9,-1},{134,0,0,12,0,0,17,1,9,-1},{134,0,0,12,0,0,17,1,9,-1},{134,0,0,12,0,0,17,1,9,-1},{134,0,0,21,0,0,0,1,4,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1}}, + {{75,0,0,12,0,0,17,1,9,-1},{75,0,0,12,0,0,17,1,9,-1},{75,0,0,12,0,0,17,1,9,-1},{75,0,0,12,0,0,17,1,9,-1},{75,0,0,12,0,0,17,1,9,-1},{75,0,0,12,0,0,17,1,9,-1},{75,0,0,12,0,0,17,1,9,-1},{75,0,0,21,0,0,0,1,4,-1},{75,0,0,21,0,0,0,1,4,-1},{75,0,0,21,0,0,0,1,4,-1},{75,0,0,21,0,0,0,1,2,-1},{75,0,0,21,0,0,0,1,2,-1},{75,0,0,26,0,0,0,1,2,-1},{75,0,0,26,0,0,0,1,2,-1},{75,0,0,26,0,0,0,1,2,-1},{75,0,0,26,0,0,0,1,2,-1}}, + {{75,0,0,6,0,0,0,1,2,-1},{75,0,0,6,0,0,0,1,2,-1},{75,0,0,6,0,0,0,1,2,-1},{75,0,0,6,0,0,0,1,2,-1},{75,0,0,21,0,0,0,1,4,-1},{75,0,0,26,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{75,0,0,13,0,0,0,1,19,0},{75,0,0,13,0,0,0,1,19,1},{75,0,0,13,0,0,0,1,19,2},{75,0,0,13,0,0,0,1,19,3},{75,0,0,13,0,0,0,1,19,4},{75,0,0,13,0,0,0,1,19,5},{75,0,0,13,0,0,0,1,19,6},{75,0,0,13,0,0,0,1,19,7},{75,0,0,13,0,0,0,1,19,8},{75,0,0,13,0,0,0,1,19,9},{103,0,0,2,0,0,0,1,0,-1},{75,0,0,15,0,0,0,1,2,-1},{75,0,0,15,0,0,0,1,2,-1},{75,0,0,15,0,0,0,1,2,-1},{75,0,0,15,0,0,0,1,2,-1},{75,0,0,15,0,0,0,1,2,-1}}, + {{75,0,0,15,0,0,0,1,2,-1},{75,0,0,15,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1}}, + {{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1},{75,0,0,7,0,0,0,1,2,-1}}, + {{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1}}, + {{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{92,0,0,7,2,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{92,0,0,7,2,0,0,1,2,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1}}, + {{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1}}, + {{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{92,0,0,10,2,0,0,1,9,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{92,0,0,12,2,0,17,1,9,-1}}, + {{92,0,0,12,2,0,17,1,9,-1},{92,0,0,12,2,0,17,1,9,-1},{92,0,0,12,2,0,17,1,9,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1},{92,0,0,6,2,0,0,1,2,-1}}, + {{154,0,1,6,0,0,0,1,18,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1}}, + {{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{154,0,1,7,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{22,0,1,7,0,0,0,0,14,-1},{20,0,1,7,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1}}, + {{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{135,0,0,7,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{135,0,0,26,0,0,0,1,2,-1},{135,0,0,12,0,0,17,1,9,-1},{135,0,0,12,0,0,17,1,9,-1},{135,0,0,21,0,0,0,1,4,-1}}, + {{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1}}, + {{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1}}, + {{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,10,0,0,0,0,9,-1},{0,0,0,10,0,0,0,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,10,0,0,0,0,9,-1},{0,0,0,10,0,0,0,0,9,-1},{0,0,0,10,0,0,0,0,9,-1}}, + {{0,0,0,10,0,0,0,0,9,-1},{0,0,0,10,0,0,0,0,9,-1},{0,0,0,10,0,0,0,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{0,0,0,1,0,1,18,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1}}, + {{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1}}, + {{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{1,0,0,12,0,0,17,0,9,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1}}, + {{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{0,0,0,26,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1}}, + {{14,0,0,26,0,0,10,1,2,-1},{14,0,0,26,0,0,10,1,2,-1},{14,0,0,12,0,0,17,1,9,-1},{14,0,0,12,0,0,17,1,9,-1},{14,0,0,12,0,0,17,1,9,-1},{14,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1}}, + {{0,0,0,15,0,0,0,0,2,-1},{0,0,0,15,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,25,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,25,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,25,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,25,0,0,10,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,25,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,25,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1}}, + {{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,25,0,0,10,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{0,0,0,9,0,0,0,1,2,-1},{0,0,0,5,0,0,0,1,2,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{0,0,0,13,0,0,2,1,19,0},{0,0,0,13,0,0,2,1,19,1}}, + {{0,0,0,13,0,0,2,1,19,2},{0,0,0,13,0,0,2,1,19,3},{0,0,0,13,0,0,2,1,19,4},{0,0,0,13,0,0,2,1,19,5},{0,0,0,13,0,0,2,1,19,6},{0,0,0,13,0,0,2,1,19,7},{0,0,0,13,0,0,2,1,19,8},{0,0,0,13,0,0,2,1,19,9},{0,0,0,13,0,0,2,1,19,0},{0,0,0,13,0,0,2,1,19,1},{0,0,0,13,0,0,2,1,19,2},{0,0,0,13,0,0,2,1,19,3},{0,0,0,13,0,0,2,1,19,4},{0,0,0,13,0,0,2,1,19,5},{0,0,0,13,0,0,2,1,19,6},{0,0,0,13,0,0,2,1,19,7}}, + {{0,0,0,13,0,0,2,1,19,8},{0,0,0,13,0,0,2,1,19,9},{0,0,0,13,0,0,2,1,19,0},{0,0,0,13,0,0,2,1,19,1},{0,0,0,13,0,0,2,1,19,2},{0,0,0,13,0,0,2,1,19,3},{0,0,0,13,0,0,2,1,19,4},{0,0,0,13,0,0,2,1,19,5},{0,0,0,13,0,0,2,1,19,6},{0,0,0,13,0,0,2,1,19,7},{0,0,0,13,0,0,2,1,19,8},{0,0,0,13,0,0,2,1,19,9},{0,0,0,13,0,0,2,1,19,0},{0,0,0,13,0,0,2,1,19,1},{0,0,0,13,0,0,2,1,19,2},{0,0,0,13,0,0,2,1,19,3}}, + {{0,0,0,13,0,0,2,1,19,4},{0,0,0,13,0,0,2,1,19,5},{0,0,0,13,0,0,2,1,19,6},{0,0,0,13,0,0,2,1,19,7},{0,0,0,13,0,0,2,1,19,8},{0,0,0,13,0,0,2,1,19,9},{0,0,0,13,0,0,2,1,19,0},{0,0,0,13,0,0,2,1,19,1},{0,0,0,13,0,0,2,1,19,2},{0,0,0,13,0,0,2,1,19,3},{0,0,0,13,0,0,2,1,19,4},{0,0,0,13,0,0,2,1,19,5},{0,0,0,13,0,0,2,1,19,6},{0,0,0,13,0,0,2,1,19,7},{0,0,0,13,0,0,2,1,19,8},{0,0,0,13,0,0,2,1,19,9}}, + {{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1}}, + {{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1}}, + {{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1}}, + {{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1}}, + {{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1}}, + {{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,26,0,0,0,0,2,-1},{112,0,0,21,0,0,0,0,4,-1},{112,0,0,21,0,0,0,0,4,-1},{112,0,0,21,0,0,0,0,4,-1},{112,0,0,21,0,0,0,0,4,-1},{112,0,0,21,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{103,0,0,2,0,0,0,0,0,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1}}, + {{103,0,0,2,0,0,0,0,0,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1},{112,0,0,12,0,0,17,0,9,-1}}, + {{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1}}, + {{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1}}, + {{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{56,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1}}, + {{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{140,0,0,7,0,0,1,1,2,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1},{140,0,0,15,0,0,1,1,2,-1}}, + {{140,0,0,12,0,0,17,1,9,-1},{140,0,0,12,0,0,17,1,9,-1},{140,0,0,12,0,0,17,1,9,-1},{140,0,0,12,0,0,17,1,9,-1},{140,0,0,12,0,0,17,1,9,-1},{140,0,0,12,0,0,17,1,9,-1},{140,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1}}, + {{167,0,0,9,0,0,1,1,2,-1},{167,0,0,9,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1}}, + {{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1}}, + {{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,5,0,0,1,1,2,-1},{167,0,0,12,0,0,17,1,9,-1},{167,0,0,12,0,0,17,1,9,-1},{167,0,0,12,0,0,17,1,9,-1},{167,0,0,12,0,0,17,1,9,-1},{167,0,0,12,0,0,17,1,9,-1},{167,0,0,12,0,0,17,1,9,-1},{167,0,0,12,0,0,17,1,9,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1}}, + {{167,0,0,13,0,0,1,1,19,0},{167,0,0,13,0,0,1,1,19,1},{167,0,0,13,0,0,1,1,19,2},{167,0,0,13,0,0,1,1,19,3},{167,0,0,13,0,0,1,1,19,4},{167,0,0,13,0,0,1,1,19,5},{167,0,0,13,0,0,1,1,19,6},{167,0,0,13,0,0,1,1,19,7},{167,0,0,13,0,0,1,1,19,8},{167,0,0,13,0,0,1,1,19,9},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{103,0,0,2,0,0,1,1,0,-1},{167,0,0,21,0,0,1,1,20,-1},{167,0,0,21,0,0,1,1,20,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1},{2,0,0,7,0,0,13,1,2,-1}}, + {{2,0,0,25,0,0,10,1,2,-1},{2,0,0,25,0,0,10,1,2,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1},{103,0,0,2,0,0,13,1,0,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{103,0,0,2,0,0,0,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{103,0,0,2,0,0,0,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,15,0,0,2,0,1,0},{0,0,0,15,0,0,2,0,1,0},{0,0,0,15,0,0,2,0,1,1},{0,0,0,15,0,0,2,0,1,2},{0,0,0,15,0,0,2,0,1,3},{0,0,0,15,0,0,2,0,1,4},{0,0,0,15,0,0,2,0,1,5},{0,0,0,15,0,0,2,0,1,6},{0,0,0,15,0,0,2,0,1,7},{0,0,0,15,0,0,2,0,1,8},{0,0,0,15,0,0,2,0,1,9},{0,0,0,15,0,0,10,0,1,-1},{0,0,0,15,0,0,10,0,1,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,2,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,1,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1}}, + {{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{0,0,0,26,0,0,0,0,1,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1}}, + {{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1},{0,0,0,26,0,0,0,0,39,-1}}, + {{20,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,2,14,-1},{0,0,1,26,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,0,0,14,-1},{0,0,1,26,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,24,0,0,10,0,41,-1},{0,0,1,24,0,0,10,0,41,-1},{0,0,1,24,0,0,10,0,41,-1},{0,0,1,24,0,0,10,0,41,-1},{0,0,1,24,0,0,10,0,41,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1}}, + {{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1}}, + {{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,1,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,23,-1},{0,0,0,26,0,0,10,0,18,-1},{0,0,0,26,0,0,10,0,18,-1},{0,0,0,26,0,0,10,0,18,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,0,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{0,0,0,26,0,0,10,0,2,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1}}, + {{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{0,0,0,26,0,0,10,1,2,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1}}, + {{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,40,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{0,0,1,26,0,0,10,0,40,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{0,0,1,26,0,0,10,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,0,14,-1}}, + {{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{17,0,1,7,1,0,0,0,14,-1},{17,0,1,7,1,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1}}, + {{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,1,2,0,0,0,0,14,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}}, + {{103,0,0,2,0,1,0,1,0,-1},{0,0,0,1,0,1,18,1,9,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1}}, + {{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1},{103,0,0,2,0,1,0,1,0,-1}}, + {{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1},{0,0,0,1,0,1,18,1,9,-1}}, + {{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,3,0,0,0,0,0,-1},{103,0,0,2,0,0,0,1,0,-1},{103,0,0,2,0,0,0,1,0,-1}} }; #endif @@ -1754,11 +1707,11 @@ static const uint16_t sFullWidthInverseValues[13][64] = { static const uint8_t sCaseMapPlanes[1] = {1}; static const uint8_t sCaseMapPages[2][2048] = { - {0,0,1,2,0,3,4,5,6,7,8,9,10,11,12,13,6,14,15,16,17,0,0,0,0,0,18,19,20,21,22,23,24,25,26,6,27,6,28,6,6,29,30,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,36,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,6,6,6,6,39,6,6,6,40,41,42,43,41,44,45,46,0,0,0,0,0,0,0,0,0,47,48,49,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,52,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,55,56,57,6,6,6,58,59,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,61,62,0,0,0,0,63,6,64,65,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,68,69,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,72,0,0,0,0,0}, - {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,74,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,77,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} + {0,0,1,2,0,3,4,5,6,7,8,9,10,11,12,13,6,14,15,16,17,0,0,0,0,0,18,19,20,21,22,23,24,25,26,6,27,6,28,6,6,29,30,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,36,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,39,0,0,0,0,6,6,6,6,40,6,6,6,41,42,43,44,42,45,46,47,0,0,0,0,0,0,0,0,0,48,49,50,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,56,57,58,6,6,6,59,60,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,62,63,0,0,0,0,64,6,65,66,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,69,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,73,0,0,0,0,0}, + {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,75,76,0,0,77,78,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,81,82,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,87,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} }; -static const uint32_t sCaseMapValues[82][32] = { +static const uint32_t sCaseMapValues[89][32] = { {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x00000000,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x40000020,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x00000000,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x10000020,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, @@ -1775,7 +1728,7 @@ static const uint32_t sCaseMapValues[82][32] = { {0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x40000002,0x80000003,0x20000001,0x40000001,0x10000001,0x40000063,0x40000048,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001}, {0x400003be,0x00000000,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x40002e5f,0x40000007,0x10000007,0x400003a7,0x40002e58,0x10002e41}, {0x10002e3f,0x40000003,0x10000003,0x400003c3,0x400000cd,0x400000c9,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x10002e3f,0x10002e3c,0x10002e22,0x100003d2,0x100003d2,0x00000000,0x100003df,0x100003dd,0x00000000,0x100003d6,0x00000000,0x100003cb,0x1000a5f7,0x00000000,0x00000000,0x00000000}, - {0x100003f3,0x1000a5cd,0x00000000,0x100003f7,0x00000000,0x1000a5e8,0x1000a5cc,0x00000000,0x100003ff,0x100003ff,0x00000000,0x10002e09,0x1000a5c1,0x00000000,0x00000000,0x100003f3,0x00000000,0x10002e1f,0x100003ef,0x00000000,0x00000000,0x100003ea,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x10002e19,0x00000000,0x00000000}, + {0x100003f3,0x1000a5cd,0x00000000,0x100003f7,0x00000000,0x1000a5e8,0x1000a5cc,0x00000000,0x100003ff,0x100003ff,0x1000a5c4,0x10002e09,0x1000a5c1,0x00000000,0x00000000,0x100003f3,0x00000000,0x10002e1f,0x100003ef,0x00000000,0x00000000,0x100003ea,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x10002e19,0x00000000,0x00000000}, {0x10000326,0x00000000,0x00000000,0x1000032a,0x00000000,0x00000000,0x00000000,0x1000a536,0x10000326,0x100000cd,0x1000033b,0x10000339,0x100000c9,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x10000325,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x1000a52f,0x1000a52e,0x00000000}, {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x100000dc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x10000086,0x10000082,0x10000082,0x00000000,0x4000008c}, @@ -1797,6 +1750,7 @@ static const uint32_t sCaseMapValues[82][32] = { {0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b8d0,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830,0x4000b830}, {0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870,0x4000b870}, {0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x4000b850,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x00000000,0x00000000,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x00000000,0x00000000}, + {0x10001892,0x10001895,0x1000189c,0x100018a2,0x100018a6,0x100018a7,0x100018ac,0x100018e5,0x1000bac2,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x1000ba04,0x00000000,0x00000000,0x00000000,0x1000311e,0x00000000,0x00000000}, {0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x100000fb,0x00000000,0x00000000,0x40001e41,0x00000000}, {0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x10000008,0x00000000,0x00000000,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x40000008,0x00000000,0x00000000}, @@ -1825,7 +1779,7 @@ static const uint32_t sCaseMapValues[82][32] = { {0x00000000,0x00000000,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001}, {0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x40000003,0x10000003,0x40000007,0x10000007,0x4000ba04,0x40000001,0x10000001}, {0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x40000007,0x10000007,0x4000a5e8,0x00000000,0x00000000,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001}, - {0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x4000a5cc,0x4000a5f7,0x4000a5cd,0x4000a5c1,0x00000000,0x00000000,0x4000a52e,0x4000a536,0x4000a52f,0x40000ce0,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, + {0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x40000001,0x10000001,0x4000a5cc,0x4000a5f7,0x4000a5cd,0x4000a5c1,0x4000a5c4,0x00000000,0x4000a52e,0x4000a536,0x4000a52f,0x40000ce0,0x40000001,0x10000001,0x40000001,0x10000001,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x10000ce0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0,0x1000b8d0}, {0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b830,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850,0x1000b850}, @@ -1835,12 +1789,18 @@ static const uint32_t sCaseMapValues[82][32] = { {0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058}, {0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028}, {0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, + {0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000068,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058,0x40000058}, + {0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000028,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000038,0x40000028,0x40000028,0x40000028,0x40000028,0x00000000,0x00000000,0x00000000,0x00000000,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068,0x10000068}, + {0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000058,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000028,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000038,0x10000028,0x10000028,0x10000028,0x10000028,0x00000000,0x00000000,0x00000000,0x00000000}, {0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040}, {0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x40000040,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040}, {0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x10000040,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060,0x40000060}, - {0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060} + {0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060,0x10000060}, + {0x40000022,0x40000022,0x40000026,0x40000026,0x40000022,0x40000022,0x4000002e,0x4000002e,0x40000022,0x40000022,0x40000026,0x40000026,0x40000022,0x40000022,0x4000003e,0x4000003e,0x40000022,0x40000022,0x40000026,0x40000026,0x40000022,0x40000022,0x4000002e,0x4000002e,0x40000022,0x40000022,0x40000026,0x40000026,0x40000022,0x40000022,0x4000005e,0x4000005e}, + {0x40000062,0x40000062,0x10000022,0x10000022,0x10000026,0x10000026,0x10000022,0x10000022,0x1000002e,0x1000002e,0x10000022,0x10000022,0x10000026,0x10000026,0x10000022,0x10000022,0x1000003e,0x1000003e,0x10000022,0x10000022,0x10000026,0x10000026,0x10000022,0x10000022,0x1000002e,0x1000002e,0x10000022,0x10000022,0x10000026,0x10000026,0x10000022,0x10000022}, + {0x1000005e,0x1000005e,0x10000062,0x10000062,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000} }; #endif const uint32_t kTitleToUpper = 0x80000000; diff --git a/intl/unicharutil/util/nsUnicodeScriptCodes.h b/intl/unicharutil/util/nsUnicodeScriptCodes.h index 40bc6039e4bc..94b5f2822e09 100644 --- a/intl/unicharutil/util/nsUnicodeScriptCodes.h +++ b/intl/unicharutil/util/nsUnicodeScriptCodes.h @@ -11,13 +11,13 @@ */ /* - * Created on Wed Oct 26 09:12:45 2016 from UCD data files with version info: + * Created on Fri Nov 11 17:42:07 2016 from UCD data files with version info: * -# Date: 2015-06-16, 20:24:00 GMT [KW] -# # Unicode Character Database -# Copyright (c) 1991-2015 Unicode, Inc. +# Date: 2016-06-20, 14:59:00 GMT [KW] +# © 2016 Unicode®, Inc. +# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # For documentation, see the following: @@ -25,41 +25,44 @@ # UAX #38, "Unicode Han Database (Unihan)" # UAX #44, "Unicode Character Database." # -# The UAXes can be accessed at http://www.unicode.org/versions/Unicode8.0.0/ +# The UAXes can be accessed at http://www.unicode.org/versions/Unicode9.0.0/ This directory contains the final data files -for the Unicode Character Database, for Version 8.0.0 of the Unicode -Standard. +for the Unicode Character Database, for Version 9.0.0 of the Unicode Standard. +# Scripts-9.0.0.txt +# Date: 2016-06-01, 10:34:37 GMT -# Scripts-8.0.0.txt -# Date: 2015-03-11, 22:29:42 GMT [MD] +# BidiMirroring-9.0.0.txt +# Date: 2016-01-21, 22:00:00 GMT [KW, LI] -# BidiMirroring-8.0.0.txt -# Date: 2015-01-20, 18:30:00 GMT [KW, LI] +# BidiBrackets-9.0.0.txt +# Date: 2016-06-07, 22:30:00 GMT [AG, LI, KW] -# BidiBrackets-8.0.0.txt -# Date: 2015-01-20, 19:00:00 GMT [AG, LI, KW] +# HangulSyllableType-9.0.0.txt +# Date: 2016-03-02, 18:55:01 GMT -# HangulSyllableType-8.0.0.txt -# Date: 2014-12-16, 23:07:45 GMT [MD] +# LineBreak-9.0.0.txt +# Date: 2016-05-26, 01:00:00 GMT [KW, LI] -# LineBreak-8.0.0.txt -# Date: 2015-02-13, 09:15:00 GMT [KW, LI] +# EastAsianWidth-9.0.0.txt +# Date: 2016-05-27, 17:00:00 GMT [KW, LI] -# EastAsianWidth-8.0.0.txt -# Date: 2015-02-10, 21:00:00 GMT [KW, LI] +# DerivedCoreProperties-9.0.0.txt +# Date: 2016-06-01, 10:34:24 GMT -# File: xidmodifications.txt -# Version: 8.0.0 -# Generated: 2015-05-17, 03:09:04 GMT +# IdentifierStatus.txt +# Date: 2016-06-16, 13:41:30 GMT + +# IdentifierType.txt +# Date: 2016-06-16, 13:41:30 GMT # # Unihan_Variants.txt -# Date: 2015-04-30 18:38:20 GMT [JHJ] +# Date: 2016-06-01 07:01:48 GMT [JHJ] -# VerticalOrientation-13.txt -# Date: 2014-09-03, 17:30:00 GMT [EM, KI, LI] +# VerticalOrientation-15.txt +# Date: 2015-11-16, 20:00:00 GMT [EM, KI, LI] * * * * * * This file contains MACHINE-GENERATED DATA, do not edit! * * * * * @@ -83,26 +86,34 @@ struct nsCharProps1 { #if ENABLE_INTL_API struct nsCharProps2 { - // Currently only 6 bits are defined here, so 2 more could be added without - // affecting the storage requirements for this struct. + // Currently only 4 bits are defined here, so 4 more could be added without + // affecting the storage requirements for this struct. Or we could pack two + // records per byte, at the cost of a slightly more complex accessor. unsigned char mVertOrient:2; - unsigned char mXidmod:4; + unsigned char mIdType:2; }; #endif #if !ENABLE_INTL_API +// This struct currently requires 5 bytes. We try to ensure that whole-byte +// fields will not straddle byte boundaries, to optimize access to them. struct nsCharProps2 { unsigned char mScriptCode:8; + // -- byte boundary -- unsigned char mPairedBracketType:2; unsigned char mEastAsianWidthFWH:1; unsigned char mCategory:5; + // -- byte boundary -- + unsigned char mIdType:2; + unsigned char mDefaultIgnorable:1; unsigned char mBidiCategory:5; - unsigned char mXidmod:4; - signed char mNumericValue:5; + // -- byte boundary -- unsigned char mVertOrient:2; - unsigned char mLineBreak; // only 6 bits actually needed + unsigned char mLineBreak:6; + // -- byte boundary -- + signed char mNumericValue; // only 5 bits are actually needed here }; #endif @@ -279,8 +290,16 @@ enum class Script { MULTANI = 164, PAU_CIN_HAU = 165, SIDDHAM = 166, + ADLAM = 167, + BHAIKSUKI = 168, + MARCHEN = 169, + NEWA = 170, + OSAGE = 171, + HAN_WITH_BOPOMOFO = 172, + JAMO = 173, + SYMBOLS_EMOJI = 174, - NUM_SCRIPT_CODES = 167, + NUM_SCRIPT_CODES = 175, INVALID = -1 }; diff --git a/netwerk/dns/nsIDNService.cpp b/netwerk/dns/nsIDNService.cpp index 3ebf8ff4d770..0a819793ac24 100644 --- a/netwerk/dns/nsIDNService.cpp +++ b/netwerk/dns/nsIDNService.cpp @@ -814,12 +814,11 @@ bool nsIDNService::isLabelSafe(const nsAString &label) } // Check for restricted characters; aspirational scripts are permitted - XidmodType xm = GetIdentifierModification(ch); - if (xm != XIDMOD_RECOMMENDED && - xm != XIDMOD_INCLUSION && - xm != XIDMOD_ASPIRATIONAL) { + IdentifierType idType = GetIdentifierType(ch); + if (idType == IDTYPE_RESTRICTED) { return false; } + MOZ_ASSERT(idType == IDTYPE_ALLOWED || idType == IDTYPE_ASPIRATIONAL); // Check for mixed script Script script = GetScriptCode(ch);