diff --git a/src/main/java/dk/camelot64/kickc/asm/AsmDataChunk.java b/src/main/java/dk/camelot64/kickc/asm/AsmDataChunk.java index d3c6161de..645a67cf1 100644 --- a/src/main/java/dk/camelot64/kickc/asm/AsmDataChunk.java +++ b/src/main/java/dk/camelot64/kickc/asm/AsmDataChunk.java @@ -1,6 +1,6 @@ package dk.camelot64.kickc.asm; -import dk.camelot64.kickc.model.values.ConstantString; +import dk.camelot64.kickc.model.values.StringEncoding; import java.util.ArrayList; import java.util.List; @@ -21,9 +21,9 @@ public class AsmDataChunk { /** The value of the data element. */ String value; /** The string encoding used in any char/string value */ - Set encoding; + Set encoding; - AsmDataNumericElement(AsmDataNumeric.Type type, String value, Set encoding) { + AsmDataNumericElement(AsmDataNumeric.Type type, String value, Set encoding) { this.type = type; this.value = value; this.encoding = encoding; @@ -37,7 +37,7 @@ public class AsmDataChunk { return value; } - public Set getEncoding() { + public Set getEncoding() { return encoding; } } @@ -53,9 +53,9 @@ public class AsmDataChunk { /** The fill value. */ String fillValue; /** The string encoding used in any char/string value */ - Set encoding; + Set encoding; - AsmDataFilledElement(AsmDataNumeric.Type type, String totalSizeBytesAsm, int numElements, String fillValue, Set encoding) { + AsmDataFilledElement(AsmDataNumeric.Type type, String totalSizeBytesAsm, int numElements, String fillValue, Set encoding) { this.type = type; this.totalSizeBytesAsm = totalSizeBytesAsm; this.numElements = numElements; @@ -79,7 +79,7 @@ public class AsmDataChunk { return fillValue; } - public Set getEncoding() { + public Set getEncoding() { return encoding; } } @@ -89,9 +89,9 @@ public class AsmDataChunk { /** The string value. */ String value; /** The string encoding used in the string value */ - Set encoding; + Set encoding; - AsmDataStringElement(String value, Set encoding) { + AsmDataStringElement(String value, Set encoding) { this.value = value; this.encoding = encoding; } @@ -100,7 +100,7 @@ public class AsmDataChunk { return value; } - public Set getEncoding() { + public Set getEncoding() { return encoding; } } @@ -113,9 +113,9 @@ public class AsmDataChunk { /** The kickasm code initializing the value. */ String kickAsmCode; /** The string encoding used in the string value */ - Set encoding; + Set encoding; - public AsmDataKickAsmElement(int byteSize, String kickAsmCode, Set encoding) { + public AsmDataKickAsmElement(int byteSize, String kickAsmCode, Set encoding) { this.byteSize = byteSize; this.kickAsmCode = kickAsmCode; this.encoding = encoding; @@ -129,7 +129,7 @@ public class AsmDataChunk { return kickAsmCode; } - public Set getEncoding() { + public Set getEncoding() { return encoding; } } @@ -141,19 +141,19 @@ public class AsmDataChunk { this.elements = new ArrayList<>(); } - public void addDataNumeric(AsmDataNumeric.Type type, String value, Set encoding) { + public void addDataNumeric(AsmDataNumeric.Type type, String value, Set encoding) { elements.add(new AsmDataNumericElement(type, value, encoding)); } - public void addDataFilled(AsmDataNumeric.Type type, String totalSizeBytesAsm, int numElements, String fillValue, Set encoding) { + public void addDataFilled(AsmDataNumeric.Type type, String totalSizeBytesAsm, int numElements, String fillValue, Set encoding) { elements.add(new AsmDataFilledElement(type, totalSizeBytesAsm, numElements, fillValue, encoding)); } - public void addDataString(String string, Set encoding) { + public void addDataString(String string, Set encoding) { elements.add(new AsmDataStringElement(string, encoding)); } - public void addDataKickAsm(int byteSize, String kickAsmCode, Set encoding) { + public void addDataKickAsm(int byteSize, String kickAsmCode, Set encoding) { elements.add(new AsmDataKickAsmElement(byteSize, kickAsmCode, encoding)); } diff --git a/src/main/java/dk/camelot64/kickc/asm/AsmFormat.java b/src/main/java/dk/camelot64/kickc/asm/AsmFormat.java index 6268d0665..f24ec9e8b 100644 --- a/src/main/java/dk/camelot64/kickc/asm/AsmFormat.java +++ b/src/main/java/dk/camelot64/kickc/asm/AsmFormat.java @@ -34,11 +34,11 @@ public class AsmFormat { return getAsmBool(((ConstantBool) value).getBool()); } else if(value instanceof ConstantChar) { ConstantChar constantChar = (ConstantChar) value; - String escapedChar = ConstantChar.asciiToCharEscape(constantChar.getChar()); + String escapedChar = constantChar.getCharEscaped(); return "'" + escapedChar + "'"; } else if(value instanceof ConstantString) { String stringValue = ((ConstantString) value).getValue(); - String escapedString = ConstantString.asciiToStringEscape(stringValue); + String escapedString = ((ConstantString) value).getStringEscaped(); boolean hasEscape = !stringValue.equals(escapedString); return (hasEscape ? "@" : "") + "\"" + escapedString + "\""; } else if(value instanceof ConstantUnary) { diff --git a/src/main/java/dk/camelot64/kickc/asm/AsmProgram.java b/src/main/java/dk/camelot64/kickc/asm/AsmProgram.java index 69a6d1c13..14aa10f3d 100644 --- a/src/main/java/dk/camelot64/kickc/asm/AsmProgram.java +++ b/src/main/java/dk/camelot64/kickc/asm/AsmProgram.java @@ -2,8 +2,8 @@ package dk.camelot64.kickc.asm; import dk.camelot64.kickc.model.CompileError; import dk.camelot64.kickc.model.Program; -import dk.camelot64.kickc.model.values.ConstantString; import dk.camelot64.kickc.model.values.ScopeRef; +import dk.camelot64.kickc.model.values.StringEncoding; import java.util.ArrayList; import java.util.Collection; @@ -31,7 +31,7 @@ public class AsmProgram { private int nextLineIndex; /** The current encoding used for printing strings. */ - private ConstantString.Encoding currentEncoding = ConstantString.Encoding.SCREENCODE_MIXED; + private StringEncoding currentEncoding = StringEncoding.SCREENCODE_MIXED; public AsmProgram() { this.chunks = new ArrayList<>(); @@ -64,17 +64,17 @@ public class AsmProgram { * Get the current encoding used for strings/chars * @return The encoding */ - public ConstantString.Encoding getCurrentEncoding() { + public StringEncoding getCurrentEncoding() { return currentEncoding; } - public void ensureEncoding(Collection encodings) { + public void ensureEncoding(Collection encodings) { if(encodings == null || encodings.size() == 0) return; if(encodings.size() > 1) { throw new CompileError("Different character encodings in one ASM statement not supported!"); } // Size is 1 - grab it! - ConstantString.Encoding encoding = encodings.iterator().next(); + StringEncoding encoding = encodings.iterator().next(); if(!getCurrentEncoding().equals(encoding)) { addLine(new AsmSetEncoding(encoding)); } diff --git a/src/main/java/dk/camelot64/kickc/asm/AsmSetEncoding.java b/src/main/java/dk/camelot64/kickc/asm/AsmSetEncoding.java index ddbdd85e4..98912771d 100644 --- a/src/main/java/dk/camelot64/kickc/asm/AsmSetEncoding.java +++ b/src/main/java/dk/camelot64/kickc/asm/AsmSetEncoding.java @@ -1,14 +1,14 @@ package dk.camelot64.kickc.asm; -import dk.camelot64.kickc.model.values.ConstantString; +import dk.camelot64.kickc.model.values.StringEncoding; /** Set the text encoding */ public class AsmSetEncoding implements AsmLine { - private final ConstantString.Encoding encoding; + private final StringEncoding encoding; private int index; - public AsmSetEncoding(ConstantString.Encoding encoding) { + public AsmSetEncoding(StringEncoding encoding) { this.encoding = encoding; } @@ -37,7 +37,7 @@ public class AsmSetEncoding implements AsmLine { this.index = index; } - public ConstantString.Encoding getEncoding() { + public StringEncoding getEncoding() { return encoding; } } diff --git a/src/main/java/dk/camelot64/kickc/model/values/ConstantChar.java b/src/main/java/dk/camelot64/kickc/model/values/ConstantChar.java index dc9ba0b72..f0db21d6e 100644 --- a/src/main/java/dk/camelot64/kickc/model/values/ConstantChar.java +++ b/src/main/java/dk/camelot64/kickc/model/values/ConstantChar.java @@ -1,11 +1,8 @@ package dk.camelot64.kickc.model.values; -import dk.camelot64.kickc.model.CompileError; -import dk.camelot64.kickc.model.InternalError; import dk.camelot64.kickc.model.Program; import dk.camelot64.kickc.model.symbols.ProgramScope; import dk.camelot64.kickc.model.types.SymbolType; -import kickass.nonasm.c64.CharToPetsciiConverter; /** * SSA form constant char value (a byte) @@ -16,9 +13,9 @@ public class ConstantChar implements ConstantEnumerable { private Character value; /** The encoding of the character. */ - private ConstantString.Encoding encoding; + private StringEncoding encoding; - public ConstantChar(Character value, ConstantString.Encoding encoding) { + public ConstantChar(Character value, StringEncoding encoding) { this.value = value; this.encoding = encoding; } @@ -43,23 +40,21 @@ public class ConstantChar implements ConstantEnumerable { */ @Override public Long getInteger() { - Byte constCharIntValue = null; - if(ConstantString.Encoding.SCREENCODE_MIXED.equals(encoding)) { - constCharIntValue = CharToPetsciiConverter.charToScreenCode_mixed.get(value); - } else if(ConstantString.Encoding.SCREENCODE_UPPER.equals(encoding)) { - constCharIntValue = CharToPetsciiConverter.charToScreenCode_upper.get(value); - } else if(ConstantString.Encoding.PETSCII_MIXED.equals(encoding)) { - constCharIntValue = CharToPetsciiConverter.charToPetscii_mixed.get(value); - } else if(ConstantString.Encoding.PETSCII_UPPER.equals(encoding)) { - constCharIntValue = CharToPetsciiConverter.charToPetscii_upper.get(value); - } - return constCharIntValue.longValue(); + return encoding.getInteger(value); } - public ConstantString.Encoding getEncoding() { + public StringEncoding getEncoding() { return encoding; } + /** + * Get the char where any special character has been properly escaped (eg '\n' for a newline). + * @return The character with escapes if needed. + */ + public String getCharEscaped() { + return encoding.asciiToEscape(value, true); + } + @Override public String toString() { return toString(null); @@ -67,7 +62,7 @@ public class ConstantChar implements ConstantEnumerable { @Override public String toString(Program program) { - String enc = (encoding.equals(ConstantString.Encoding.SCREENCODE_MIXED)) ? "" : encoding.suffix; + String enc = (encoding.equals(StringEncoding.SCREENCODE_MIXED)) ? "" : encoding.suffix; if(program == null) { return "'" + value + "'" + enc; } else { @@ -75,59 +70,4 @@ public class ConstantChar implements ConstantEnumerable { } } - /** - * Parses a potentially escaped char - * - * @param charString Either just a single char - or an escaped char using \-notation - * @return The ASCII char - */ - public static char charEscapeToAscii(String charString) { - if(charString.length() == 1) { - return charString.charAt(0); - } else if(charString.length() == 2) { - switch(charString.charAt(1)) { - case 'n': - return '\n'; - case 'r': - return '\r'; - case 'f': - return '\f'; - case '"': - return '\"'; - case '\'': - return '\''; - case '\\': - return '\\'; - default: - throw new CompileError("Illegal char escape sequence \\" + charString.charAt(1)); - } - } else { - throw new InternalError("Illegal char '" + charString + "'"); - } - } - - /** - * Converts a char to an escape sequence if needed. If not needed the char itself is returned. - * @param aChar The char - * @return The char itself - or the appropriate escape sequence - */ - public static String asciiToCharEscape(char aChar) { - switch(aChar) { - case '\n': - return "\\n"; - case '\r': - return "\\r"; - case '\f': - return "\\f"; - case '\'': - return "\\'"; - case '\\': - return "\\\\"; - default: - return Character.toString(aChar); - } - } - - - } diff --git a/src/main/java/dk/camelot64/kickc/model/values/ConstantString.java b/src/main/java/dk/camelot64/kickc/model/values/ConstantString.java index 58fc679f0..cc03db515 100644 --- a/src/main/java/dk/camelot64/kickc/model/values/ConstantString.java +++ b/src/main/java/dk/camelot64/kickc/model/values/ConstantString.java @@ -1,6 +1,5 @@ package dk.camelot64.kickc.model.values; -import dk.camelot64.kickc.model.CompileError; import dk.camelot64.kickc.model.Program; import dk.camelot64.kickc.model.symbols.ProgramScope; import dk.camelot64.kickc.model.types.SymbolType; @@ -13,33 +12,16 @@ import java.util.Objects; */ public class ConstantString implements ConstantLiteral { - /** String encoding. */ - public static enum Encoding { - PETSCII_MIXED("petscii_mixed", "pm"), - PETSCII_UPPER("petscii_upper", "pu"), - SCREENCODE_MIXED("screencode_mixed", "sm"), - SCREENCODE_UPPER("screencode_upper", "su"); - - public final String name; - public final String suffix; - - Encoding(String name, String suffix) { - this.name = name; - this.suffix = suffix; - } - - } - /** The string value. */ private String value; /** The encoding to use for the string. */ - private Encoding encoding; + private StringEncoding encoding; /** true if the string should be zero terminated. */ private boolean zeroTerminated; - public ConstantString(String value, Encoding encoding, boolean zeroTerminated) { + public ConstantString(String value, StringEncoding encoding, boolean zeroTerminated) { this.value = value; this.encoding = encoding; this.zeroTerminated = zeroTerminated; @@ -59,20 +41,29 @@ public class ConstantString implements ConstantLiteral { return value; } - public Encoding getEncoding() { + public StringEncoding getEncoding() { return encoding; } + /** + * Get the string where characters have been escaped. (eg. newline as '\n') + * @return The escaped string. + */ + public String getStringEscaped() { + return encoding.asciiToEscape(value); + } + public boolean isZeroTerminated() { return zeroTerminated; } /** * Get the length of the string - including zero-termination if present. + * * @return The length */ public int getStringLength() { - return value.length() + (zeroTerminated?1:0); + return value.length() + (zeroTerminated ? 1 : 0); } @Override @@ -82,7 +73,7 @@ public class ConstantString implements ConstantLiteral { @Override public String toString(Program program) { - String suffix = (encoding.equals(Encoding.SCREENCODE_MIXED)) ? "" : encoding.suffix; + String suffix = (encoding.equals(StringEncoding.SCREENCODE_MIXED)) ? "" : encoding.suffix; suffix += zeroTerminated ? "" : "z"; if(program == null) { return "\"" + value + "\"" + suffix; @@ -106,87 +97,5 @@ public class ConstantString implements ConstantLiteral { return Objects.hash(value, encoding, zeroTerminated); } - /** - * Find any string escape sequences and convert them to the ASCII-equivalent character - * - * @param stringValue The string to convert - * @return The string where any escape sequence has been converted to ASCII - * @throws CompileError If the string value has a syntax error (unfinished or illegal escape sequences) - */ - public static String stringEscapeToAscii(String stringValue) { - StringBuilder stringResult = new StringBuilder(); - char[] stringChars = stringValue.toCharArray(); - int i = 0; - while(i < stringChars.length) { - // State: Normal - examine whether an escape is starting - char stringChar = stringChars[i]; - if(stringChar == '\\') { - // Escape started - handle it! - i++; - if(i >= stringChars.length) throw new CompileError("Unfinished string escape sequence at end of string"); - char escapeChar = stringChars[i]; - switch(escapeChar) { - case 'n': - stringChar = '\n'; - break; - case 'r': - stringChar = '\r'; - break; - case 'f': - stringChar = '\f'; - break; - case '"': - stringChar = '"'; - break; - case '\'': - stringChar = '\''; - break; - case '\\': - stringChar = '\\'; - break; - default: - throw new CompileError("Illegal string escape sequence \\" + escapeChar); - } - } - // Output the char - stringResult.append(stringChar); - i++; - } - return stringResult.toString(); - } - - /** - * Find any ASCII character that must be escaped to represent the string in source code - and convert them to the escaped string. - * - * @param stringValue The string to convert - * @return The string where any character that must be escaped is converted to the escape sequence - */ - public static String asciiToStringEscape(String stringValue) { - StringBuilder stringResult = new StringBuilder(); - char[] stringChars = stringValue.toCharArray(); - for(char stringChar : stringChars) { - switch(stringChar) { - case '\n': - stringResult.append("\\n"); - break; - case '\r': - stringResult.append("\\r"); - break; - case '\f': - stringResult.append("\\f"); - break; - case '"': - stringResult.append("\\\""); - break; - case '\\': - stringResult.append("\\\\"); - break; - default: - stringResult.append(stringChar); - } - } - return stringResult.toString(); - } - } diff --git a/src/main/java/dk/camelot64/kickc/model/values/StringEncoding.java b/src/main/java/dk/camelot64/kickc/model/values/StringEncoding.java new file mode 100644 index 000000000..1563d9d52 --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/model/values/StringEncoding.java @@ -0,0 +1,155 @@ +package dk.camelot64.kickc.model.values; + +import dk.camelot64.kickc.model.CompileError; +import kickass.nonasm.c64.CharToPetsciiConverter; + +import java.util.Map; +import java.util.PrimitiveIterator; + +/** String encoding. */ +public enum StringEncoding { + + PETSCII_MIXED("petscii_mixed", "pm", CharToPetsciiConverter.charToScreenCode_mixed), + PETSCII_UPPER("petscii_upper", "pu", CharToPetsciiConverter.charToScreenCode_upper), + SCREENCODE_MIXED("screencode_mixed", "sm", CharToPetsciiConverter.charToScreenCode_mixed), + SCREENCODE_UPPER("screencode_upper", "su", CharToPetsciiConverter.charToScreenCode_upper); + + /** The encoding name. */ + public final String name; + + /** The string suffix usable for selecting the encoding. */ + public final String suffix; + + /** The mapping from character value to integer value for the encoding. */ + public final Map mapping; + + StringEncoding(String name, String suffix, Map mapping) { + this.name = name; + this.suffix = suffix; + this.mapping = mapping; + } + + /** + * Get the integer value of a character using a specific encoding + * + * @param aChar The character + * @return The integer value of the character using the encoding + */ + public Long getInteger(Character aChar) { + Byte constCharIntValue = mapping.get(aChar); + return constCharIntValue.longValue(); + } + + /** + * Get a character with a specific integer value using the specific encoding + * + * @param intValue The integer value + * @return The character that has the integer value using the encoding + */ + public Character getChar(Byte intValue) { + for(Map.Entry mapEntry : mapping.entrySet()) { + if(mapEntry.getValue() == intValue.byteValue()) + return mapEntry.getKey(); + } + return null; + } + + /** + * Find any string escape sequences and convert them to the ASCII-equivalent character + * + * @param stringValue The string to convert + * @return The string where any escape sequence has been converted to ASCII + * @throws CompileError If the string value has a syntax error (unfinished or illegal escape sequences) + */ + public String escapeToAscii(String stringValue) { + StringBuilder stringResult = new StringBuilder(); + final PrimitiveIterator.OfInt escapedIterator = stringValue.chars().iterator(); + while(escapedIterator.hasNext()) { + stringResult.append(escapeToAsciiFirst(escapedIterator)); + } + return stringResult.toString(); + } + + /** + * Grabs the first (potentially escaped) character from an iterator. + * Converts any escapes such as '\n', '\xnn' etc. to the right ASCII character. + * Moves the iterator forward. + * + * @param escapedString The characters of the string to parse one char from. The iterator is moved beyond any handled chars. + * @return The first ASCII character of the list. + */ + public char escapeToAsciiFirst(PrimitiveIterator.OfInt escapedCharsIterator) { + char stringChar = (char)escapedCharsIterator.nextInt(); + if(stringChar != '\\') + return stringChar; + // Escape started - handle it! + if(!escapedCharsIterator.hasNext()) throw new CompileError("Unfinished string escape sequence at end of string"); + char escapeChar = (char)escapedCharsIterator.nextInt(); + switch(escapeChar) { + case 'n': + return '\n'; + case 'r': + return '\r'; + case 'f': + return '\f'; + case '"': + return '"'; + case '\'': + return '\''; + case '\\': + return '\\'; + case 'x': + String hexNum = ""; + hexNum += (char)escapedCharsIterator.nextInt(); + hexNum += (char)escapedCharsIterator.nextInt(); + final int hexChar = Integer.parseInt(hexNum, 16); + final Character aChar = getChar((byte) hexChar); + if(aChar == null) + throw new CompileError("No character 0x" + hexNum + " in encoding " + name); + return aChar; + default: + throw new CompileError("Illegal string escape sequence \\" + escapeChar); + } + } + + /** + * Converts a char to an escape sequence if needed. If not needed the char itself is returned. + * @param aChar The char + * @param escapeSingleQuotes Should single quotes ' be escaped. (true when encoding chars, false when encoding chars) + * @return The char itself - or the appropriate escape sequence + */ + public String asciiToEscape(char aChar, boolean escapeSingleQuotes) { + switch(aChar) { + case '\n': + return "\\n"; + case '\r': + return "\\r"; + case '\f': + return "\\f"; + case '\"': + return "\\\""; + case '\'': + if(escapeSingleQuotes) + return "\\'"; + else + return Character.toString(aChar); + case '\\': + return "\\\\"; + default: + return Character.toString(aChar); + } + } + + /** + * Converts a char to an escape sequence if needed. If not needed the char itself is returned. + * @param aChar The char + * @return The char itself - or the appropriate escape sequence + */ + public String asciiToEscape(String string) { + StringBuilder escaped = new StringBuilder(); + string.chars().forEach(value -> escaped.append(asciiToEscape((char) value, false))); + return escaped.toString(); + } + + +} diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index e0085009b..95f5db47d 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -150,7 +150,7 @@ fragment NAME_CHAR : [a-zA-Z0-9_]; // Strings and chars STRING : '"' ('\\"' | ~'"')* '"' [z]?([ps][mu]?)?[z]? ; -CHAR : '\'' ('\\'['"rfn] | ~'\'' ) '\''; +CHAR : '\'' ('\\'(['"rfn]|'x'[0-9a-f][0-9a-f]) | ~'\'' ) '\''; // White space on hidden channel 1 WS : [ \t\r\n\u00a0]+ -> channel(1); diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp index 85a94a30f..59debfb6e 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp @@ -502,4 +502,4 @@ ASM_MODE IMPORT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 161, 1610, 8, 1, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 447, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 5, 62, 639, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 5, 88, 814, 10, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 5, 89, 853, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 864, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 7, 91, 870, 10, 91, 12, 91, 14, 91, 873, 11, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 5, 96, 920, 10, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 5, 104, 969, 10, 104, 3, 105, 3, 105, 3, 105, 5, 105, 974, 10, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 981, 10, 106, 3, 106, 7, 106, 984, 10, 106, 12, 106, 14, 106, 987, 11, 106, 3, 106, 3, 106, 6, 106, 991, 10, 106, 13, 106, 14, 106, 992, 3, 107, 7, 107, 996, 10, 107, 12, 107, 14, 107, 999, 11, 107, 3, 107, 3, 107, 6, 107, 1003, 10, 107, 13, 107, 14, 107, 1004, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 5, 108, 1012, 10, 108, 3, 108, 7, 108, 1015, 10, 108, 12, 108, 14, 108, 1018, 11, 108, 3, 108, 3, 108, 6, 108, 1022, 10, 108, 13, 108, 14, 108, 1023, 3, 109, 3, 109, 3, 109, 5, 109, 1029, 10, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1034, 10, 109, 3, 110, 3, 110, 3, 110, 6, 110, 1039, 10, 110, 13, 110, 14, 110, 1040, 3, 110, 3, 110, 6, 110, 1045, 10, 110, 13, 110, 14, 110, 1046, 5, 110, 1049, 10, 110, 3, 111, 6, 111, 1052, 10, 111, 13, 111, 14, 111, 1053, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 5, 112, 1061, 10, 112, 3, 112, 6, 112, 1064, 10, 112, 13, 112, 14, 112, 1065, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 116, 3, 116, 7, 116, 1076, 10, 116, 12, 116, 14, 116, 1079, 11, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 7, 119, 1091, 10, 119, 12, 119, 14, 119, 1094, 11, 119, 3, 119, 3, 119, 5, 119, 1098, 10, 119, 3, 119, 3, 119, 5, 119, 1102, 10, 119, 5, 119, 1104, 10, 119, 3, 119, 5, 119, 1107, 10, 119, 3, 120, 3, 120, 3, 120, 3, 120, 5, 120, 1113, 10, 120, 3, 120, 3, 120, 3, 121, 6, 121, 1118, 10, 121, 13, 121, 14, 121, 1119, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 1128, 10, 122, 12, 122, 14, 122, 1131, 11, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 7, 123, 1139, 10, 123, 12, 123, 14, 123, 1142, 11, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 5, 125, 1377, 10, 125, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 5, 144, 1421, 10, 144, 3, 145, 3, 145, 3, 145, 5, 145, 1426, 10, 145, 3, 146, 3, 146, 7, 146, 1430, 10, 146, 12, 146, 14, 146, 1433, 11, 146, 3, 146, 3, 146, 6, 146, 1437, 10, 146, 13, 146, 14, 146, 1438, 3, 147, 7, 147, 1442, 10, 147, 12, 147, 14, 147, 1445, 11, 147, 3, 147, 3, 147, 6, 147, 1449, 10, 147, 13, 147, 14, 147, 1450, 3, 148, 3, 148, 7, 148, 1455, 10, 148, 12, 148, 14, 148, 1458, 11, 148, 3, 148, 3, 148, 6, 148, 1462, 10, 148, 13, 148, 14, 148, 1463, 3, 149, 3, 149, 3, 149, 5, 149, 1469, 10, 149, 3, 150, 3, 150, 6, 150, 1473, 10, 150, 13, 150, 14, 150, 1474, 3, 151, 6, 151, 1478, 10, 151, 13, 151, 14, 151, 1479, 3, 152, 3, 152, 6, 152, 1484, 10, 152, 13, 152, 14, 152, 1485, 3, 153, 3, 153, 3, 154, 3, 154, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 5, 156, 1498, 10, 156, 3, 156, 3, 156, 3, 157, 3, 157, 6, 157, 1504, 10, 157, 13, 157, 14, 157, 1505, 3, 158, 3, 158, 7, 158, 1510, 10, 158, 12, 158, 14, 158, 1513, 11, 158, 3, 159, 3, 159, 7, 159, 1517, 10, 159, 12, 159, 14, 159, 1520, 11, 159, 3, 160, 3, 160, 3, 161, 3, 161, 3, 162, 6, 162, 1527, 10, 162, 13, 162, 14, 162, 1528, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 7, 163, 1537, 10, 163, 12, 163, 14, 163, 1540, 11, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 7, 164, 1548, 10, 164, 12, 164, 14, 164, 1551, 11, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 6, 165, 1560, 10, 165, 13, 165, 14, 165, 1561, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 7, 166, 1571, 10, 166, 12, 166, 14, 166, 1574, 11, 166, 3, 166, 3, 166, 3, 166, 3, 167, 6, 167, 1580, 10, 167, 13, 167, 14, 167, 1581, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 7, 168, 1590, 10, 168, 12, 168, 14, 168, 1593, 11, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 7, 169, 1601, 10, 169, 12, 169, 14, 169, 1604, 11, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 6, 871, 1140, 1549, 1602, 2, 170, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 2, 229, 2, 231, 2, 233, 115, 235, 2, 237, 2, 239, 116, 241, 117, 243, 118, 245, 119, 247, 120, 249, 121, 251, 122, 253, 123, 255, 124, 257, 125, 259, 126, 261, 127, 263, 128, 265, 129, 267, 130, 269, 131, 271, 132, 273, 133, 275, 134, 277, 135, 279, 136, 281, 137, 283, 138, 285, 139, 287, 140, 289, 141, 291, 142, 293, 143, 295, 144, 297, 145, 299, 146, 301, 147, 303, 148, 305, 149, 307, 2, 309, 2, 311, 2, 313, 150, 315, 151, 317, 152, 319, 153, 321, 2, 323, 2, 325, 154, 327, 155, 329, 156, 331, 157, 333, 158, 335, 159, 337, 160, 339, 161, 5, 2, 3, 4, 20, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 3, 2, 41, 41, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 7, 2, 47, 59, 67, 92, 94, 94, 97, 97, 99, 124, 2, 1754, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 3, 249, 3, 2, 2, 2, 3, 251, 3, 2, 2, 2, 3, 253, 3, 2, 2, 2, 3, 255, 3, 2, 2, 2, 3, 257, 3, 2, 2, 2, 3, 259, 3, 2, 2, 2, 3, 261, 3, 2, 2, 2, 3, 263, 3, 2, 2, 2, 3, 265, 3, 2, 2, 2, 3, 267, 3, 2, 2, 2, 3, 269, 3, 2, 2, 2, 3, 271, 3, 2, 2, 2, 3, 273, 3, 2, 2, 2, 3, 275, 3, 2, 2, 2, 3, 277, 3, 2, 2, 2, 3, 279, 3, 2, 2, 2, 3, 281, 3, 2, 2, 2, 3, 283, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 3, 287, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 3, 291, 3, 2, 2, 2, 3, 293, 3, 2, 2, 2, 3, 295, 3, 2, 2, 2, 3, 297, 3, 2, 2, 2, 3, 299, 3, 2, 2, 2, 3, 301, 3, 2, 2, 2, 3, 303, 3, 2, 2, 2, 3, 305, 3, 2, 2, 2, 3, 313, 3, 2, 2, 2, 3, 315, 3, 2, 2, 2, 3, 317, 3, 2, 2, 2, 3, 319, 3, 2, 2, 2, 3, 325, 3, 2, 2, 2, 3, 327, 3, 2, 2, 2, 3, 329, 3, 2, 2, 2, 4, 331, 3, 2, 2, 2, 4, 333, 3, 2, 2, 2, 4, 335, 3, 2, 2, 2, 4, 337, 3, 2, 2, 2, 4, 339, 3, 2, 2, 2, 5, 341, 3, 2, 2, 2, 7, 344, 3, 2, 2, 2, 9, 346, 3, 2, 2, 2, 11, 348, 3, 2, 2, 2, 13, 350, 3, 2, 2, 2, 15, 352, 3, 2, 2, 2, 17, 354, 3, 2, 2, 2, 19, 356, 3, 2, 2, 2, 21, 358, 3, 2, 2, 2, 23, 360, 3, 2, 2, 2, 25, 363, 3, 2, 2, 2, 27, 365, 3, 2, 2, 2, 29, 367, 3, 2, 2, 2, 31, 370, 3, 2, 2, 2, 33, 372, 3, 2, 2, 2, 35, 374, 3, 2, 2, 2, 37, 376, 3, 2, 2, 2, 39, 378, 3, 2, 2, 2, 41, 380, 3, 2, 2, 2, 43, 383, 3, 2, 2, 2, 45, 386, 3, 2, 2, 2, 47, 388, 3, 2, 2, 2, 49, 390, 3, 2, 2, 2, 51, 392, 3, 2, 2, 2, 53, 394, 3, 2, 2, 2, 55, 397, 3, 2, 2, 2, 57, 400, 3, 2, 2, 2, 59, 403, 3, 2, 2, 2, 61, 406, 3, 2, 2, 2, 63, 408, 3, 2, 2, 2, 65, 411, 3, 2, 2, 2, 67, 414, 3, 2, 2, 2, 69, 416, 3, 2, 2, 2, 71, 419, 3, 2, 2, 2, 73, 422, 3, 2, 2, 2, 75, 446, 3, 2, 2, 2, 77, 448, 3, 2, 2, 2, 79, 456, 3, 2, 2, 2, 81, 464, 3, 2, 2, 2, 83, 467, 3, 2, 2, 2, 85, 474, 3, 2, 2, 2, 87, 479, 3, 2, 2, 2, 89, 483, 3, 2, 2, 2, 91, 492, 3, 2, 2, 2, 93, 501, 3, 2, 2, 2, 95, 510, 3, 2, 2, 2, 97, 516, 3, 2, 2, 2, 99, 523, 3, 2, 2, 2, 101, 530, 3, 2, 2, 2, 103, 536, 3, 2, 2, 2, 105, 543, 3, 2, 2, 2, 107, 552, 3, 2, 2, 2, 109, 559, 3, 2, 2, 2, 111, 569, 3, 2, 2, 2, 113, 578, 3, 2, 2, 2, 115, 588, 3, 2, 2, 2, 117, 593, 3, 2, 2, 2, 119, 599, 3, 2, 2, 2, 121, 605, 3, 2, 2, 2, 123, 610, 3, 2, 2, 2, 125, 638, 3, 2, 2, 2, 127, 640, 3, 2, 2, 2, 129, 650, 3, 2, 2, 2, 131, 653, 3, 2, 2, 2, 133, 658, 3, 2, 2, 2, 135, 664, 3, 2, 2, 2, 137, 667, 3, 2, 2, 2, 139, 671, 3, 2, 2, 2, 141, 678, 3, 2, 2, 2, 143, 685, 3, 2, 2, 2, 145, 691, 3, 2, 2, 2, 147, 700, 3, 2, 2, 2, 149, 706, 3, 2, 2, 2, 151, 714, 3, 2, 2, 2, 153, 719, 3, 2, 2, 2, 155, 726, 3, 2, 2, 2, 157, 731, 3, 2, 2, 2, 159, 738, 3, 2, 2, 2, 161, 745, 3, 2, 2, 2, 163, 753, 3, 2, 2, 2, 165, 761, 3, 2, 2, 2, 167, 770, 3, 2, 2, 2, 169, 775, 3, 2, 2, 2, 171, 784, 3, 2, 2, 2, 173, 790, 3, 2, 2, 2, 175, 797, 3, 2, 2, 2, 177, 813, 3, 2, 2, 2, 179, 852, 3, 2, 2, 2, 181, 863, 3, 2, 2, 2, 183, 865, 3, 2, 2, 2, 185, 877, 3, 2, 2, 2, 187, 887, 3, 2, 2, 2, 189, 898, 3, 2, 2, 2, 191, 906, 3, 2, 2, 2, 193, 919, 3, 2, 2, 2, 195, 921, 3, 2, 2, 2, 197, 928, 3, 2, 2, 2, 199, 935, 3, 2, 2, 2, 201, 943, 3, 2, 2, 2, 203, 947, 3, 2, 2, 2, 205, 953, 3, 2, 2, 2, 207, 959, 3, 2, 2, 2, 209, 968, 3, 2, 2, 2, 211, 973, 3, 2, 2, 2, 213, 980, 3, 2, 2, 2, 215, 997, 3, 2, 2, 2, 217, 1011, 3, 2, 2, 2, 219, 1028, 3, 2, 2, 2, 221, 1048, 3, 2, 2, 2, 223, 1051, 3, 2, 2, 2, 225, 1060, 3, 2, 2, 2, 227, 1067, 3, 2, 2, 2, 229, 1069, 3, 2, 2, 2, 231, 1071, 3, 2, 2, 2, 233, 1073, 3, 2, 2, 2, 235, 1082, 3, 2, 2, 2, 237, 1084, 3, 2, 2, 2, 239, 1086, 3, 2, 2, 2, 241, 1108, 3, 2, 2, 2, 243, 1117, 3, 2, 2, 2, 245, 1123, 3, 2, 2, 2, 247, 1134, 3, 2, 2, 2, 249, 1148, 3, 2, 2, 2, 251, 1376, 3, 2, 2, 2, 253, 1378, 3, 2, 2, 2, 255, 1380, 3, 2, 2, 2, 257, 1382, 3, 2, 2, 2, 259, 1384, 3, 2, 2, 2, 261, 1386, 3, 2, 2, 2, 263, 1388, 3, 2, 2, 2, 265, 1390, 3, 2, 2, 2, 267, 1392, 3, 2, 2, 2, 269, 1394, 3, 2, 2, 2, 271, 1397, 3, 2, 2, 2, 273, 1400, 3, 2, 2, 2, 275, 1402, 3, 2, 2, 2, 277, 1404, 3, 2, 2, 2, 279, 1406, 3, 2, 2, 2, 281, 1408, 3, 2, 2, 2, 283, 1410, 3, 2, 2, 2, 285, 1412, 3, 2, 2, 2, 287, 1415, 3, 2, 2, 2, 289, 1420, 3, 2, 2, 2, 291, 1425, 3, 2, 2, 2, 293, 1427, 3, 2, 2, 2, 295, 1443, 3, 2, 2, 2, 297, 1452, 3, 2, 2, 2, 299, 1468, 3, 2, 2, 2, 301, 1470, 3, 2, 2, 2, 303, 1477, 3, 2, 2, 2, 305, 1481, 3, 2, 2, 2, 307, 1487, 3, 2, 2, 2, 309, 1489, 3, 2, 2, 2, 311, 1491, 3, 2, 2, 2, 313, 1493, 3, 2, 2, 2, 315, 1501, 3, 2, 2, 2, 317, 1507, 3, 2, 2, 2, 319, 1514, 3, 2, 2, 2, 321, 1521, 3, 2, 2, 2, 323, 1523, 3, 2, 2, 2, 325, 1526, 3, 2, 2, 2, 327, 1532, 3, 2, 2, 2, 329, 1543, 3, 2, 2, 2, 331, 1557, 3, 2, 2, 2, 333, 1566, 3, 2, 2, 2, 335, 1579, 3, 2, 2, 2, 337, 1585, 3, 2, 2, 2, 339, 1596, 3, 2, 2, 2, 341, 342, 7, 125, 2, 2, 342, 343, 8, 2, 2, 2, 343, 6, 3, 2, 2, 2, 344, 345, 7, 127, 2, 2, 345, 8, 3, 2, 2, 2, 346, 347, 7, 93, 2, 2, 347, 10, 3, 2, 2, 2, 348, 349, 7, 95, 2, 2, 349, 12, 3, 2, 2, 2, 350, 351, 7, 42, 2, 2, 351, 14, 3, 2, 2, 2, 352, 353, 7, 43, 2, 2, 353, 16, 3, 2, 2, 2, 354, 355, 7, 61, 2, 2, 355, 18, 3, 2, 2, 2, 356, 357, 7, 60, 2, 2, 357, 20, 3, 2, 2, 2, 358, 359, 7, 46, 2, 2, 359, 22, 3, 2, 2, 2, 360, 361, 7, 48, 2, 2, 361, 362, 7, 48, 2, 2, 362, 24, 3, 2, 2, 2, 363, 364, 7, 65, 2, 2, 364, 26, 3, 2, 2, 2, 365, 366, 7, 48, 2, 2, 366, 28, 3, 2, 2, 2, 367, 368, 7, 47, 2, 2, 368, 369, 7, 64, 2, 2, 369, 30, 3, 2, 2, 2, 370, 371, 7, 45, 2, 2, 371, 32, 3, 2, 2, 2, 372, 373, 7, 47, 2, 2, 373, 34, 3, 2, 2, 2, 374, 375, 7, 44, 2, 2, 375, 36, 3, 2, 2, 2, 376, 377, 7, 49, 2, 2, 377, 38, 3, 2, 2, 2, 378, 379, 7, 39, 2, 2, 379, 40, 3, 2, 2, 2, 380, 381, 7, 45, 2, 2, 381, 382, 7, 45, 2, 2, 382, 42, 3, 2, 2, 2, 383, 384, 7, 47, 2, 2, 384, 385, 7, 47, 2, 2, 385, 44, 3, 2, 2, 2, 386, 387, 7, 40, 2, 2, 387, 46, 3, 2, 2, 2, 388, 389, 7, 128, 2, 2, 389, 48, 3, 2, 2, 2, 390, 391, 7, 96, 2, 2, 391, 50, 3, 2, 2, 2, 392, 393, 7, 126, 2, 2, 393, 52, 3, 2, 2, 2, 394, 395, 7, 62, 2, 2, 395, 396, 7, 62, 2, 2, 396, 54, 3, 2, 2, 2, 397, 398, 7, 64, 2, 2, 398, 399, 7, 64, 2, 2, 399, 56, 3, 2, 2, 2, 400, 401, 7, 63, 2, 2, 401, 402, 7, 63, 2, 2, 402, 58, 3, 2, 2, 2, 403, 404, 7, 35, 2, 2, 404, 405, 7, 63, 2, 2, 405, 60, 3, 2, 2, 2, 406, 407, 7, 62, 2, 2, 407, 62, 3, 2, 2, 2, 408, 409, 7, 62, 2, 2, 409, 410, 7, 63, 2, 2, 410, 64, 3, 2, 2, 2, 411, 412, 7, 64, 2, 2, 412, 413, 7, 63, 2, 2, 413, 66, 3, 2, 2, 2, 414, 415, 7, 64, 2, 2, 415, 68, 3, 2, 2, 2, 416, 417, 7, 40, 2, 2, 417, 418, 7, 40, 2, 2, 418, 70, 3, 2, 2, 2, 419, 420, 7, 126, 2, 2, 420, 421, 7, 126, 2, 2, 421, 72, 3, 2, 2, 2, 422, 423, 7, 63, 2, 2, 423, 74, 3, 2, 2, 2, 424, 425, 7, 45, 2, 2, 425, 447, 7, 63, 2, 2, 426, 427, 7, 47, 2, 2, 427, 447, 7, 63, 2, 2, 428, 429, 7, 44, 2, 2, 429, 447, 7, 63, 2, 2, 430, 431, 7, 49, 2, 2, 431, 447, 7, 63, 2, 2, 432, 433, 7, 39, 2, 2, 433, 447, 7, 63, 2, 2, 434, 435, 7, 62, 2, 2, 435, 436, 7, 62, 2, 2, 436, 447, 7, 63, 2, 2, 437, 438, 7, 64, 2, 2, 438, 439, 7, 64, 2, 2, 439, 447, 7, 63, 2, 2, 440, 441, 7, 40, 2, 2, 441, 447, 7, 63, 2, 2, 442, 443, 7, 126, 2, 2, 443, 447, 7, 63, 2, 2, 444, 445, 7, 96, 2, 2, 445, 447, 7, 63, 2, 2, 446, 424, 3, 2, 2, 2, 446, 426, 3, 2, 2, 2, 446, 428, 3, 2, 2, 2, 446, 430, 3, 2, 2, 2, 446, 432, 3, 2, 2, 2, 446, 434, 3, 2, 2, 2, 446, 437, 3, 2, 2, 2, 446, 440, 3, 2, 2, 2, 446, 442, 3, 2, 2, 2, 446, 444, 3, 2, 2, 2, 447, 76, 3, 2, 2, 2, 448, 449, 7, 118, 2, 2, 449, 450, 7, 123, 2, 2, 450, 451, 7, 114, 2, 2, 451, 452, 7, 103, 2, 2, 452, 453, 7, 102, 2, 2, 453, 454, 7, 103, 2, 2, 454, 455, 7, 104, 2, 2, 455, 78, 3, 2, 2, 2, 456, 457, 7, 116, 2, 2, 457, 458, 7, 103, 2, 2, 458, 459, 7, 117, 2, 2, 459, 460, 7, 103, 2, 2, 460, 461, 7, 116, 2, 2, 461, 462, 7, 120, 2, 2, 462, 463, 7, 103, 2, 2, 463, 80, 3, 2, 2, 2, 464, 465, 7, 114, 2, 2, 465, 466, 7, 101, 2, 2, 466, 82, 3, 2, 2, 2, 467, 468, 7, 118, 2, 2, 468, 469, 7, 99, 2, 2, 469, 470, 7, 116, 2, 2, 470, 471, 7, 105, 2, 2, 471, 472, 7, 103, 2, 2, 472, 473, 7, 118, 2, 2, 473, 84, 3, 2, 2, 2, 474, 475, 7, 110, 2, 2, 475, 476, 7, 107, 2, 2, 476, 477, 7, 112, 2, 2, 477, 478, 7, 109, 2, 2, 478, 86, 3, 2, 2, 2, 479, 480, 7, 101, 2, 2, 480, 481, 7, 114, 2, 2, 481, 482, 7, 119, 2, 2, 482, 88, 3, 2, 2, 2, 483, 484, 7, 101, 2, 2, 484, 485, 7, 113, 2, 2, 485, 486, 7, 102, 2, 2, 486, 487, 7, 103, 2, 2, 487, 488, 7, 97, 2, 2, 488, 489, 7, 117, 2, 2, 489, 490, 7, 103, 2, 2, 490, 491, 7, 105, 2, 2, 491, 90, 3, 2, 2, 2, 492, 493, 7, 102, 2, 2, 493, 494, 7, 99, 2, 2, 494, 495, 7, 118, 2, 2, 495, 496, 7, 99, 2, 2, 496, 497, 7, 97, 2, 2, 497, 498, 7, 117, 2, 2, 498, 499, 7, 103, 2, 2, 499, 500, 7, 105, 2, 2, 500, 92, 3, 2, 2, 2, 501, 502, 7, 103, 2, 2, 502, 503, 7, 112, 2, 2, 503, 504, 7, 101, 2, 2, 504, 505, 7, 113, 2, 2, 505, 506, 7, 102, 2, 2, 506, 507, 7, 107, 2, 2, 507, 508, 7, 112, 2, 2, 508, 509, 7, 105, 2, 2, 509, 94, 3, 2, 2, 2, 510, 511, 7, 101, 2, 2, 511, 512, 7, 113, 2, 2, 512, 513, 7, 112, 2, 2, 513, 514, 7, 117, 2, 2, 514, 515, 7, 118, 2, 2, 515, 96, 3, 2, 2, 2, 516, 517, 7, 103, 2, 2, 517, 518, 7, 122, 2, 2, 518, 519, 7, 118, 2, 2, 519, 520, 7, 103, 2, 2, 520, 521, 7, 116, 2, 2, 521, 522, 7, 112, 2, 2, 522, 98, 3, 2, 2, 2, 523, 524, 7, 103, 2, 2, 524, 525, 7, 122, 2, 2, 525, 526, 7, 114, 2, 2, 526, 527, 7, 113, 2, 2, 527, 528, 7, 116, 2, 2, 528, 529, 7, 118, 2, 2, 529, 100, 3, 2, 2, 2, 530, 531, 7, 99, 2, 2, 531, 532, 7, 110, 2, 2, 532, 533, 7, 107, 2, 2, 533, 534, 7, 105, 2, 2, 534, 535, 7, 112, 2, 2, 535, 102, 3, 2, 2, 2, 536, 537, 7, 107, 2, 2, 537, 538, 7, 112, 2, 2, 538, 539, 7, 110, 2, 2, 539, 540, 7, 107, 2, 2, 540, 541, 7, 112, 2, 2, 541, 542, 7, 103, 2, 2, 542, 104, 3, 2, 2, 2, 543, 544, 7, 120, 2, 2, 544, 545, 7, 113, 2, 2, 545, 546, 7, 110, 2, 2, 546, 547, 7, 99, 2, 2, 547, 548, 7, 118, 2, 2, 548, 549, 7, 107, 2, 2, 549, 550, 7, 110, 2, 2, 550, 551, 7, 103, 2, 2, 551, 106, 3, 2, 2, 2, 552, 553, 7, 117, 2, 2, 553, 554, 7, 118, 2, 2, 554, 555, 7, 99, 2, 2, 555, 556, 7, 118, 2, 2, 556, 557, 7, 107, 2, 2, 557, 558, 7, 101, 2, 2, 558, 108, 3, 2, 2, 2, 559, 560, 7, 107, 2, 2, 560, 561, 7, 112, 2, 2, 561, 562, 7, 118, 2, 2, 562, 563, 7, 103, 2, 2, 563, 564, 7, 116, 2, 2, 564, 565, 7, 116, 2, 2, 565, 566, 7, 119, 2, 2, 566, 567, 7, 114, 2, 2, 567, 568, 7, 118, 2, 2, 568, 110, 3, 2, 2, 2, 569, 570, 7, 116, 2, 2, 570, 571, 7, 103, 2, 2, 571, 572, 7, 105, 2, 2, 572, 573, 7, 107, 2, 2, 573, 574, 7, 117, 2, 2, 574, 575, 7, 118, 2, 2, 575, 576, 7, 103, 2, 2, 576, 577, 7, 116, 2, 2, 577, 112, 3, 2, 2, 2, 578, 579, 7, 97, 2, 2, 579, 580, 7, 97, 2, 2, 580, 581, 7, 99, 2, 2, 581, 582, 7, 102, 2, 2, 582, 583, 7, 102, 2, 2, 583, 584, 7, 116, 2, 2, 584, 585, 7, 103, 2, 2, 585, 586, 7, 117, 2, 2, 586, 587, 7, 117, 2, 2, 587, 114, 3, 2, 2, 2, 588, 589, 7, 97, 2, 2, 589, 590, 7, 97, 2, 2, 590, 591, 7, 124, 2, 2, 591, 592, 7, 114, 2, 2, 592, 116, 3, 2, 2, 2, 593, 594, 7, 97, 2, 2, 594, 595, 7, 97, 2, 2, 595, 596, 7, 111, 2, 2, 596, 597, 7, 103, 2, 2, 597, 598, 7, 111, 2, 2, 598, 118, 3, 2, 2, 2, 599, 600, 7, 97, 2, 2, 600, 601, 7, 97, 2, 2, 601, 602, 7, 117, 2, 2, 602, 603, 7, 117, 2, 2, 603, 604, 7, 99, 2, 2, 604, 120, 3, 2, 2, 2, 605, 606, 7, 97, 2, 2, 606, 607, 7, 97, 2, 2, 607, 608, 7, 111, 2, 2, 608, 609, 7, 99, 2, 2, 609, 122, 3, 2, 2, 2, 610, 611, 7, 101, 2, 2, 611, 612, 7, 99, 2, 2, 612, 613, 7, 110, 2, 2, 613, 614, 7, 110, 2, 2, 614, 615, 7, 107, 2, 2, 615, 616, 7, 112, 2, 2, 616, 617, 7, 105, 2, 2, 617, 124, 3, 2, 2, 2, 618, 619, 7, 97, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 117, 2, 2, 621, 622, 7, 118, 2, 2, 622, 623, 7, 99, 2, 2, 623, 624, 7, 101, 2, 2, 624, 625, 7, 109, 2, 2, 625, 626, 7, 101, 2, 2, 626, 627, 7, 99, 2, 2, 627, 628, 7, 110, 2, 2, 628, 639, 7, 110, 2, 2, 629, 630, 7, 97, 2, 2, 630, 631, 7, 97, 2, 2, 631, 632, 7, 114, 2, 2, 632, 633, 7, 106, 2, 2, 633, 634, 7, 107, 2, 2, 634, 635, 7, 101, 2, 2, 635, 636, 7, 99, 2, 2, 636, 637, 7, 110, 2, 2, 637, 639, 7, 110, 2, 2, 638, 618, 3, 2, 2, 2, 638, 629, 3, 2, 2, 2, 639, 126, 3, 2, 2, 2, 640, 641, 7, 120, 2, 2, 641, 642, 7, 99, 2, 2, 642, 643, 7, 116, 2, 2, 643, 644, 7, 97, 2, 2, 644, 645, 7, 111, 2, 2, 645, 646, 7, 113, 2, 2, 646, 647, 7, 102, 2, 2, 647, 648, 7, 103, 2, 2, 648, 649, 7, 110, 2, 2, 649, 128, 3, 2, 2, 2, 650, 651, 7, 107, 2, 2, 651, 652, 7, 104, 2, 2, 652, 130, 3, 2, 2, 2, 653, 654, 7, 103, 2, 2, 654, 655, 7, 110, 2, 2, 655, 656, 7, 117, 2, 2, 656, 657, 7, 103, 2, 2, 657, 132, 3, 2, 2, 2, 658, 659, 7, 121, 2, 2, 659, 660, 7, 106, 2, 2, 660, 661, 7, 107, 2, 2, 661, 662, 7, 110, 2, 2, 662, 663, 7, 103, 2, 2, 663, 134, 3, 2, 2, 2, 664, 665, 7, 102, 2, 2, 665, 666, 7, 113, 2, 2, 666, 136, 3, 2, 2, 2, 667, 668, 7, 104, 2, 2, 668, 669, 7, 113, 2, 2, 669, 670, 7, 116, 2, 2, 670, 138, 3, 2, 2, 2, 671, 672, 7, 117, 2, 2, 672, 673, 7, 121, 2, 2, 673, 674, 7, 107, 2, 2, 674, 675, 7, 118, 2, 2, 675, 676, 7, 101, 2, 2, 676, 677, 7, 106, 2, 2, 677, 140, 3, 2, 2, 2, 678, 679, 7, 116, 2, 2, 679, 680, 7, 103, 2, 2, 680, 681, 7, 118, 2, 2, 681, 682, 7, 119, 2, 2, 682, 683, 7, 116, 2, 2, 683, 684, 7, 112, 2, 2, 684, 142, 3, 2, 2, 2, 685, 686, 7, 100, 2, 2, 686, 687, 7, 116, 2, 2, 687, 688, 7, 103, 2, 2, 688, 689, 7, 99, 2, 2, 689, 690, 7, 109, 2, 2, 690, 144, 3, 2, 2, 2, 691, 692, 7, 101, 2, 2, 692, 693, 7, 113, 2, 2, 693, 694, 7, 112, 2, 2, 694, 695, 7, 118, 2, 2, 695, 696, 7, 107, 2, 2, 696, 697, 7, 112, 2, 2, 697, 698, 7, 119, 2, 2, 698, 699, 7, 103, 2, 2, 699, 146, 3, 2, 2, 2, 700, 701, 7, 99, 2, 2, 701, 702, 7, 117, 2, 2, 702, 703, 7, 111, 2, 2, 703, 704, 3, 2, 2, 2, 704, 705, 8, 73, 3, 2, 705, 148, 3, 2, 2, 2, 706, 707, 7, 102, 2, 2, 707, 708, 7, 103, 2, 2, 708, 709, 7, 104, 2, 2, 709, 710, 7, 99, 2, 2, 710, 711, 7, 119, 2, 2, 711, 712, 7, 110, 2, 2, 712, 713, 7, 118, 2, 2, 713, 150, 3, 2, 2, 2, 714, 715, 7, 101, 2, 2, 715, 716, 7, 99, 2, 2, 716, 717, 7, 117, 2, 2, 717, 718, 7, 103, 2, 2, 718, 152, 3, 2, 2, 2, 719, 720, 7, 117, 2, 2, 720, 721, 7, 118, 2, 2, 721, 722, 7, 116, 2, 2, 722, 723, 7, 119, 2, 2, 723, 724, 7, 101, 2, 2, 724, 725, 7, 118, 2, 2, 725, 154, 3, 2, 2, 2, 726, 727, 7, 103, 2, 2, 727, 728, 7, 112, 2, 2, 728, 729, 7, 119, 2, 2, 729, 730, 7, 111, 2, 2, 730, 156, 3, 2, 2, 2, 731, 732, 7, 117, 2, 2, 732, 733, 7, 107, 2, 2, 733, 734, 7, 124, 2, 2, 734, 735, 7, 103, 2, 2, 735, 736, 7, 113, 2, 2, 736, 737, 7, 104, 2, 2, 737, 158, 3, 2, 2, 2, 738, 739, 7, 118, 2, 2, 739, 740, 7, 123, 2, 2, 740, 741, 7, 114, 2, 2, 741, 742, 7, 103, 2, 2, 742, 743, 7, 107, 2, 2, 743, 744, 7, 102, 2, 2, 744, 160, 3, 2, 2, 2, 745, 746, 7, 102, 2, 2, 746, 747, 7, 103, 2, 2, 747, 748, 7, 104, 2, 2, 748, 749, 7, 107, 2, 2, 749, 750, 7, 112, 2, 2, 750, 751, 7, 103, 2, 2, 751, 752, 7, 102, 2, 2, 752, 162, 3, 2, 2, 2, 753, 754, 7, 109, 2, 2, 754, 755, 7, 107, 2, 2, 755, 756, 7, 101, 2, 2, 756, 757, 7, 109, 2, 2, 757, 758, 7, 99, 2, 2, 758, 759, 7, 117, 2, 2, 759, 760, 7, 111, 2, 2, 760, 164, 3, 2, 2, 2, 761, 762, 7, 116, 2, 2, 762, 763, 7, 103, 2, 2, 763, 764, 7, 117, 2, 2, 764, 765, 7, 113, 2, 2, 765, 766, 7, 119, 2, 2, 766, 767, 7, 116, 2, 2, 767, 768, 7, 101, 2, 2, 768, 769, 7, 103, 2, 2, 769, 166, 3, 2, 2, 2, 770, 771, 7, 119, 2, 2, 771, 772, 7, 117, 2, 2, 772, 773, 7, 103, 2, 2, 773, 774, 7, 117, 2, 2, 774, 168, 3, 2, 2, 2, 775, 776, 7, 101, 2, 2, 776, 777, 7, 110, 2, 2, 777, 778, 7, 113, 2, 2, 778, 779, 7, 100, 2, 2, 779, 780, 7, 100, 2, 2, 780, 781, 7, 103, 2, 2, 781, 782, 7, 116, 2, 2, 782, 783, 7, 117, 2, 2, 783, 170, 3, 2, 2, 2, 784, 785, 7, 100, 2, 2, 785, 786, 7, 123, 2, 2, 786, 787, 7, 118, 2, 2, 787, 788, 7, 103, 2, 2, 788, 789, 7, 117, 2, 2, 789, 172, 3, 2, 2, 2, 790, 791, 7, 101, 2, 2, 791, 792, 7, 123, 2, 2, 792, 793, 7, 101, 2, 2, 793, 794, 7, 110, 2, 2, 794, 795, 7, 103, 2, 2, 795, 796, 7, 117, 2, 2, 796, 174, 3, 2, 2, 2, 797, 798, 7, 35, 2, 2, 798, 176, 3, 2, 2, 2, 799, 800, 7, 117, 2, 2, 800, 801, 7, 107, 2, 2, 801, 802, 7, 105, 2, 2, 802, 803, 7, 112, 2, 2, 803, 804, 7, 103, 2, 2, 804, 814, 7, 102, 2, 2, 805, 806, 7, 119, 2, 2, 806, 807, 7, 112, 2, 2, 807, 808, 7, 117, 2, 2, 808, 809, 7, 107, 2, 2, 809, 810, 7, 105, 2, 2, 810, 811, 7, 112, 2, 2, 811, 812, 7, 103, 2, 2, 812, 814, 7, 102, 2, 2, 813, 799, 3, 2, 2, 2, 813, 805, 3, 2, 2, 2, 814, 178, 3, 2, 2, 2, 815, 816, 7, 100, 2, 2, 816, 817, 7, 123, 2, 2, 817, 818, 7, 118, 2, 2, 818, 853, 7, 103, 2, 2, 819, 820, 7, 121, 2, 2, 820, 821, 7, 113, 2, 2, 821, 822, 7, 116, 2, 2, 822, 853, 7, 102, 2, 2, 823, 824, 7, 102, 2, 2, 824, 825, 7, 121, 2, 2, 825, 826, 7, 113, 2, 2, 826, 827, 7, 116, 2, 2, 827, 853, 7, 102, 2, 2, 828, 829, 7, 100, 2, 2, 829, 830, 7, 113, 2, 2, 830, 831, 7, 113, 2, 2, 831, 853, 7, 110, 2, 2, 832, 833, 7, 101, 2, 2, 833, 834, 7, 106, 2, 2, 834, 835, 7, 99, 2, 2, 835, 853, 7, 116, 2, 2, 836, 837, 7, 117, 2, 2, 837, 838, 7, 106, 2, 2, 838, 839, 7, 113, 2, 2, 839, 840, 7, 116, 2, 2, 840, 853, 7, 118, 2, 2, 841, 842, 7, 107, 2, 2, 842, 843, 7, 112, 2, 2, 843, 853, 7, 118, 2, 2, 844, 845, 7, 110, 2, 2, 845, 846, 7, 113, 2, 2, 846, 847, 7, 112, 2, 2, 847, 853, 7, 105, 2, 2, 848, 849, 7, 120, 2, 2, 849, 850, 7, 113, 2, 2, 850, 851, 7, 107, 2, 2, 851, 853, 7, 102, 2, 2, 852, 815, 3, 2, 2, 2, 852, 819, 3, 2, 2, 2, 852, 823, 3, 2, 2, 2, 852, 828, 3, 2, 2, 2, 852, 832, 3, 2, 2, 2, 852, 836, 3, 2, 2, 2, 852, 841, 3, 2, 2, 2, 852, 844, 3, 2, 2, 2, 852, 848, 3, 2, 2, 2, 853, 180, 3, 2, 2, 2, 854, 855, 7, 118, 2, 2, 855, 856, 7, 116, 2, 2, 856, 857, 7, 119, 2, 2, 857, 864, 7, 103, 2, 2, 858, 859, 7, 104, 2, 2, 859, 860, 7, 99, 2, 2, 860, 861, 7, 110, 2, 2, 861, 862, 7, 117, 2, 2, 862, 864, 7, 103, 2, 2, 863, 854, 3, 2, 2, 2, 863, 858, 3, 2, 2, 2, 864, 182, 3, 2, 2, 2, 865, 866, 7, 125, 2, 2, 866, 867, 7, 125, 2, 2, 867, 871, 3, 2, 2, 2, 868, 870, 11, 2, 2, 2, 869, 868, 3, 2, 2, 2, 870, 873, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 871, 869, 3, 2, 2, 2, 872, 874, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 874, 875, 7, 127, 2, 2, 875, 876, 7, 127, 2, 2, 876, 184, 3, 2, 2, 2, 877, 878, 7, 37, 2, 2, 878, 879, 7, 107, 2, 2, 879, 880, 7, 111, 2, 2, 880, 881, 7, 114, 2, 2, 881, 882, 7, 113, 2, 2, 882, 883, 7, 116, 2, 2, 883, 884, 7, 118, 2, 2, 884, 885, 3, 2, 2, 2, 885, 886, 8, 92, 4, 2, 886, 186, 3, 2, 2, 2, 887, 888, 7, 37, 2, 2, 888, 889, 7, 107, 2, 2, 889, 890, 7, 112, 2, 2, 890, 891, 7, 101, 2, 2, 891, 892, 7, 110, 2, 2, 892, 893, 7, 119, 2, 2, 893, 894, 7, 102, 2, 2, 894, 895, 7, 103, 2, 2, 895, 896, 3, 2, 2, 2, 896, 897, 8, 93, 5, 2, 897, 188, 3, 2, 2, 2, 898, 899, 7, 37, 2, 2, 899, 900, 7, 114, 2, 2, 900, 901, 7, 116, 2, 2, 901, 902, 7, 99, 2, 2, 902, 903, 7, 105, 2, 2, 903, 904, 7, 111, 2, 2, 904, 905, 7, 99, 2, 2, 905, 190, 3, 2, 2, 2, 906, 907, 7, 37, 2, 2, 907, 908, 7, 102, 2, 2, 908, 909, 7, 103, 2, 2, 909, 910, 7, 104, 2, 2, 910, 911, 7, 107, 2, 2, 911, 912, 7, 112, 2, 2, 912, 913, 7, 103, 2, 2, 913, 192, 3, 2, 2, 2, 914, 915, 7, 94, 2, 2, 915, 920, 7, 12, 2, 2, 916, 917, 7, 94, 2, 2, 917, 918, 7, 15, 2, 2, 918, 920, 7, 12, 2, 2, 919, 914, 3, 2, 2, 2, 919, 916, 3, 2, 2, 2, 920, 194, 3, 2, 2, 2, 921, 922, 7, 37, 2, 2, 922, 923, 7, 119, 2, 2, 923, 924, 7, 112, 2, 2, 924, 925, 7, 102, 2, 2, 925, 926, 7, 103, 2, 2, 926, 927, 7, 104, 2, 2, 927, 196, 3, 2, 2, 2, 928, 929, 7, 37, 2, 2, 929, 930, 7, 107, 2, 2, 930, 931, 7, 104, 2, 2, 931, 932, 7, 102, 2, 2, 932, 933, 7, 103, 2, 2, 933, 934, 7, 104, 2, 2, 934, 198, 3, 2, 2, 2, 935, 936, 7, 37, 2, 2, 936, 937, 7, 107, 2, 2, 937, 938, 7, 104, 2, 2, 938, 939, 7, 112, 2, 2, 939, 940, 7, 102, 2, 2, 940, 941, 7, 103, 2, 2, 941, 942, 7, 104, 2, 2, 942, 200, 3, 2, 2, 2, 943, 944, 7, 37, 2, 2, 944, 945, 7, 107, 2, 2, 945, 946, 7, 104, 2, 2, 946, 202, 3, 2, 2, 2, 947, 948, 7, 37, 2, 2, 948, 949, 7, 103, 2, 2, 949, 950, 7, 110, 2, 2, 950, 951, 7, 107, 2, 2, 951, 952, 7, 104, 2, 2, 952, 204, 3, 2, 2, 2, 953, 954, 7, 37, 2, 2, 954, 955, 7, 103, 2, 2, 955, 956, 7, 110, 2, 2, 956, 957, 7, 117, 2, 2, 957, 958, 7, 103, 2, 2, 958, 206, 3, 2, 2, 2, 959, 960, 7, 37, 2, 2, 960, 961, 7, 103, 2, 2, 961, 962, 7, 112, 2, 2, 962, 963, 7, 102, 2, 2, 963, 964, 7, 107, 2, 2, 964, 965, 7, 104, 2, 2, 965, 208, 3, 2, 2, 2, 966, 969, 5, 211, 105, 2, 967, 969, 5, 219, 109, 2, 968, 966, 3, 2, 2, 2, 968, 967, 3, 2, 2, 2, 969, 210, 3, 2, 2, 2, 970, 974, 5, 213, 106, 2, 971, 974, 5, 215, 107, 2, 972, 974, 5, 217, 108, 2, 973, 970, 3, 2, 2, 2, 973, 971, 3, 2, 2, 2, 973, 972, 3, 2, 2, 2, 974, 212, 3, 2, 2, 2, 975, 981, 7, 39, 2, 2, 976, 977, 7, 50, 2, 2, 977, 981, 7, 100, 2, 2, 978, 979, 7, 50, 2, 2, 979, 981, 7, 68, 2, 2, 980, 975, 3, 2, 2, 2, 980, 976, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 981, 985, 3, 2, 2, 2, 982, 984, 5, 227, 113, 2, 983, 982, 3, 2, 2, 2, 984, 987, 3, 2, 2, 2, 985, 983, 3, 2, 2, 2, 985, 986, 3, 2, 2, 2, 986, 988, 3, 2, 2, 2, 987, 985, 3, 2, 2, 2, 988, 990, 7, 48, 2, 2, 989, 991, 5, 227, 113, 2, 990, 989, 3, 2, 2, 2, 991, 992, 3, 2, 2, 2, 992, 990, 3, 2, 2, 2, 992, 993, 3, 2, 2, 2, 993, 214, 3, 2, 2, 2, 994, 996, 5, 229, 114, 2, 995, 994, 3, 2, 2, 2, 996, 999, 3, 2, 2, 2, 997, 995, 3, 2, 2, 2, 997, 998, 3, 2, 2, 2, 998, 1000, 3, 2, 2, 2, 999, 997, 3, 2, 2, 2, 1000, 1002, 7, 48, 2, 2, 1001, 1003, 5, 229, 114, 2, 1002, 1001, 3, 2, 2, 2, 1003, 1004, 3, 2, 2, 2, 1004, 1002, 3, 2, 2, 2, 1004, 1005, 3, 2, 2, 2, 1005, 216, 3, 2, 2, 2, 1006, 1012, 7, 38, 2, 2, 1007, 1008, 7, 50, 2, 2, 1008, 1012, 7, 122, 2, 2, 1009, 1010, 7, 50, 2, 2, 1010, 1012, 7, 90, 2, 2, 1011, 1006, 3, 2, 2, 2, 1011, 1007, 3, 2, 2, 2, 1011, 1009, 3, 2, 2, 2, 1012, 1016, 3, 2, 2, 2, 1013, 1015, 5, 231, 115, 2, 1014, 1013, 3, 2, 2, 2, 1015, 1018, 3, 2, 2, 2, 1016, 1014, 3, 2, 2, 2, 1016, 1017, 3, 2, 2, 2, 1017, 1019, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 1021, 7, 48, 2, 2, 1020, 1022, 5, 231, 115, 2, 1021, 1020, 3, 2, 2, 2, 1022, 1023, 3, 2, 2, 2, 1023, 1021, 3, 2, 2, 2, 1023, 1024, 3, 2, 2, 2, 1024, 218, 3, 2, 2, 2, 1025, 1029, 5, 223, 111, 2, 1026, 1029, 5, 225, 112, 2, 1027, 1029, 5, 221, 110, 2, 1028, 1025, 3, 2, 2, 2, 1028, 1026, 3, 2, 2, 2, 1028, 1027, 3, 2, 2, 2, 1029, 1033, 3, 2, 2, 2, 1030, 1031, 9, 2, 2, 2, 1031, 1034, 9, 3, 2, 2, 1032, 1034, 7, 110, 2, 2, 1033, 1030, 3, 2, 2, 2, 1033, 1032, 3, 2, 2, 2, 1033, 1034, 3, 2, 2, 2, 1034, 220, 3, 2, 2, 2, 1035, 1036, 7, 50, 2, 2, 1036, 1038, 9, 4, 2, 2, 1037, 1039, 5, 227, 113, 2, 1038, 1037, 3, 2, 2, 2, 1039, 1040, 3, 2, 2, 2, 1040, 1038, 3, 2, 2, 2, 1040, 1041, 3, 2, 2, 2, 1041, 1049, 3, 2, 2, 2, 1042, 1044, 7, 39, 2, 2, 1043, 1045, 5, 227, 113, 2, 1044, 1043, 3, 2, 2, 2, 1045, 1046, 3, 2, 2, 2, 1046, 1044, 3, 2, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1049, 3, 2, 2, 2, 1048, 1035, 3, 2, 2, 2, 1048, 1042, 3, 2, 2, 2, 1049, 222, 3, 2, 2, 2, 1050, 1052, 5, 229, 114, 2, 1051, 1050, 3, 2, 2, 2, 1052, 1053, 3, 2, 2, 2, 1053, 1051, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 224, 3, 2, 2, 2, 1055, 1061, 7, 38, 2, 2, 1056, 1057, 7, 50, 2, 2, 1057, 1061, 7, 122, 2, 2, 1058, 1059, 7, 50, 2, 2, 1059, 1061, 7, 90, 2, 2, 1060, 1055, 3, 2, 2, 2, 1060, 1056, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1061, 1063, 3, 2, 2, 2, 1062, 1064, 5, 231, 115, 2, 1063, 1062, 3, 2, 2, 2, 1064, 1065, 3, 2, 2, 2, 1065, 1063, 3, 2, 2, 2, 1065, 1066, 3, 2, 2, 2, 1066, 226, 3, 2, 2, 2, 1067, 1068, 9, 5, 2, 2, 1068, 228, 3, 2, 2, 2, 1069, 1070, 9, 6, 2, 2, 1070, 230, 3, 2, 2, 2, 1071, 1072, 9, 7, 2, 2, 1072, 232, 3, 2, 2, 2, 1073, 1077, 5, 235, 117, 2, 1074, 1076, 5, 237, 118, 2, 1075, 1074, 3, 2, 2, 2, 1076, 1079, 3, 2, 2, 2, 1077, 1075, 3, 2, 2, 2, 1077, 1078, 3, 2, 2, 2, 1078, 1080, 3, 2, 2, 2, 1079, 1077, 3, 2, 2, 2, 1080, 1081, 8, 116, 6, 2, 1081, 234, 3, 2, 2, 2, 1082, 1083, 9, 8, 2, 2, 1083, 236, 3, 2, 2, 2, 1084, 1085, 9, 9, 2, 2, 1085, 238, 3, 2, 2, 2, 1086, 1092, 7, 36, 2, 2, 1087, 1088, 7, 94, 2, 2, 1088, 1091, 7, 36, 2, 2, 1089, 1091, 10, 10, 2, 2, 1090, 1087, 3, 2, 2, 2, 1090, 1089, 3, 2, 2, 2, 1091, 1094, 3, 2, 2, 2, 1092, 1090, 3, 2, 2, 2, 1092, 1093, 3, 2, 2, 2, 1093, 1095, 3, 2, 2, 2, 1094, 1092, 3, 2, 2, 2, 1095, 1097, 7, 36, 2, 2, 1096, 1098, 9, 11, 2, 2, 1097, 1096, 3, 2, 2, 2, 1097, 1098, 3, 2, 2, 2, 1098, 1103, 3, 2, 2, 2, 1099, 1101, 9, 12, 2, 2, 1100, 1102, 9, 13, 2, 2, 1101, 1100, 3, 2, 2, 2, 1101, 1102, 3, 2, 2, 2, 1102, 1104, 3, 2, 2, 2, 1103, 1099, 3, 2, 2, 2, 1103, 1104, 3, 2, 2, 2, 1104, 1106, 3, 2, 2, 2, 1105, 1107, 9, 11, 2, 2, 1106, 1105, 3, 2, 2, 2, 1106, 1107, 3, 2, 2, 2, 1107, 240, 3, 2, 2, 2, 1108, 1112, 7, 41, 2, 2, 1109, 1110, 7, 94, 2, 2, 1110, 1113, 9, 14, 2, 2, 1111, 1113, 10, 15, 2, 2, 1112, 1109, 3, 2, 2, 2, 1112, 1111, 3, 2, 2, 2, 1113, 1114, 3, 2, 2, 2, 1114, 1115, 7, 41, 2, 2, 1115, 242, 3, 2, 2, 2, 1116, 1118, 9, 16, 2, 2, 1117, 1116, 3, 2, 2, 2, 1118, 1119, 3, 2, 2, 2, 1119, 1117, 3, 2, 2, 2, 1119, 1120, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1122, 8, 121, 7, 2, 1122, 244, 3, 2, 2, 2, 1123, 1124, 7, 49, 2, 2, 1124, 1125, 7, 49, 2, 2, 1125, 1129, 3, 2, 2, 2, 1126, 1128, 10, 17, 2, 2, 1127, 1126, 3, 2, 2, 2, 1128, 1131, 3, 2, 2, 2, 1129, 1127, 3, 2, 2, 2, 1129, 1130, 3, 2, 2, 2, 1130, 1132, 3, 2, 2, 2, 1131, 1129, 3, 2, 2, 2, 1132, 1133, 8, 122, 8, 2, 1133, 246, 3, 2, 2, 2, 1134, 1135, 7, 49, 2, 2, 1135, 1136, 7, 44, 2, 2, 1136, 1140, 3, 2, 2, 2, 1137, 1139, 11, 2, 2, 2, 1138, 1137, 3, 2, 2, 2, 1139, 1142, 3, 2, 2, 2, 1140, 1141, 3, 2, 2, 2, 1140, 1138, 3, 2, 2, 2, 1141, 1143, 3, 2, 2, 2, 1142, 1140, 3, 2, 2, 2, 1143, 1144, 7, 44, 2, 2, 1144, 1145, 7, 49, 2, 2, 1145, 1146, 3, 2, 2, 2, 1146, 1147, 8, 123, 8, 2, 1147, 248, 3, 2, 2, 2, 1148, 1149, 7, 48, 2, 2, 1149, 1150, 7, 100, 2, 2, 1150, 1151, 7, 123, 2, 2, 1151, 1152, 7, 118, 2, 2, 1152, 1153, 7, 103, 2, 2, 1153, 250, 3, 2, 2, 2, 1154, 1155, 7, 100, 2, 2, 1155, 1156, 7, 116, 2, 2, 1156, 1377, 7, 109, 2, 2, 1157, 1158, 7, 113, 2, 2, 1158, 1159, 7, 116, 2, 2, 1159, 1377, 7, 99, 2, 2, 1160, 1161, 7, 109, 2, 2, 1161, 1162, 7, 107, 2, 2, 1162, 1377, 7, 110, 2, 2, 1163, 1164, 7, 117, 2, 2, 1164, 1165, 7, 110, 2, 2, 1165, 1377, 7, 113, 2, 2, 1166, 1167, 7, 112, 2, 2, 1167, 1168, 7, 113, 2, 2, 1168, 1377, 7, 114, 2, 2, 1169, 1170, 7, 99, 2, 2, 1170, 1171, 7, 117, 2, 2, 1171, 1377, 7, 110, 2, 2, 1172, 1173, 7, 114, 2, 2, 1173, 1174, 7, 106, 2, 2, 1174, 1377, 7, 114, 2, 2, 1175, 1176, 7, 99, 2, 2, 1176, 1177, 7, 112, 2, 2, 1177, 1377, 7, 101, 2, 2, 1178, 1179, 7, 100, 2, 2, 1179, 1180, 7, 114, 2, 2, 1180, 1377, 7, 110, 2, 2, 1181, 1182, 7, 101, 2, 2, 1182, 1183, 7, 110, 2, 2, 1183, 1377, 7, 101, 2, 2, 1184, 1185, 7, 108, 2, 2, 1185, 1186, 7, 117, 2, 2, 1186, 1377, 7, 116, 2, 2, 1187, 1188, 7, 99, 2, 2, 1188, 1189, 7, 112, 2, 2, 1189, 1377, 7, 102, 2, 2, 1190, 1191, 7, 116, 2, 2, 1191, 1192, 7, 110, 2, 2, 1192, 1377, 7, 99, 2, 2, 1193, 1194, 7, 100, 2, 2, 1194, 1195, 7, 107, 2, 2, 1195, 1377, 7, 118, 2, 2, 1196, 1197, 7, 116, 2, 2, 1197, 1198, 7, 113, 2, 2, 1198, 1377, 7, 110, 2, 2, 1199, 1200, 7, 114, 2, 2, 1200, 1201, 7, 110, 2, 2, 1201, 1377, 7, 99, 2, 2, 1202, 1203, 7, 114, 2, 2, 1203, 1204, 7, 110, 2, 2, 1204, 1377, 7, 114, 2, 2, 1205, 1206, 7, 100, 2, 2, 1206, 1207, 7, 111, 2, 2, 1207, 1377, 7, 107, 2, 2, 1208, 1209, 7, 117, 2, 2, 1209, 1210, 7, 103, 2, 2, 1210, 1377, 7, 101, 2, 2, 1211, 1212, 7, 116, 2, 2, 1212, 1213, 7, 118, 2, 2, 1213, 1377, 7, 107, 2, 2, 1214, 1215, 7, 103, 2, 2, 1215, 1216, 7, 113, 2, 2, 1216, 1377, 7, 116, 2, 2, 1217, 1218, 7, 117, 2, 2, 1218, 1219, 7, 116, 2, 2, 1219, 1377, 7, 103, 2, 2, 1220, 1221, 7, 110, 2, 2, 1221, 1222, 7, 117, 2, 2, 1222, 1377, 7, 116, 2, 2, 1223, 1224, 7, 114, 2, 2, 1224, 1225, 7, 106, 2, 2, 1225, 1377, 7, 99, 2, 2, 1226, 1227, 7, 99, 2, 2, 1227, 1228, 7, 110, 2, 2, 1228, 1377, 7, 116, 2, 2, 1229, 1230, 7, 108, 2, 2, 1230, 1231, 7, 111, 2, 2, 1231, 1377, 7, 114, 2, 2, 1232, 1233, 7, 100, 2, 2, 1233, 1234, 7, 120, 2, 2, 1234, 1377, 7, 101, 2, 2, 1235, 1236, 7, 101, 2, 2, 1236, 1237, 7, 110, 2, 2, 1237, 1377, 7, 107, 2, 2, 1238, 1239, 7, 116, 2, 2, 1239, 1240, 7, 118, 2, 2, 1240, 1377, 7, 117, 2, 2, 1241, 1242, 7, 99, 2, 2, 1242, 1243, 7, 102, 2, 2, 1243, 1377, 7, 101, 2, 2, 1244, 1245, 7, 116, 2, 2, 1245, 1246, 7, 116, 2, 2, 1246, 1377, 7, 99, 2, 2, 1247, 1248, 7, 100, 2, 2, 1248, 1249, 7, 120, 2, 2, 1249, 1377, 7, 117, 2, 2, 1250, 1251, 7, 117, 2, 2, 1251, 1252, 7, 103, 2, 2, 1252, 1377, 7, 107, 2, 2, 1253, 1254, 7, 117, 2, 2, 1254, 1255, 7, 99, 2, 2, 1255, 1377, 7, 122, 2, 2, 1256, 1257, 7, 117, 2, 2, 1257, 1258, 7, 118, 2, 2, 1258, 1377, 7, 123, 2, 2, 1259, 1260, 7, 117, 2, 2, 1260, 1261, 7, 118, 2, 2, 1261, 1377, 7, 99, 2, 2, 1262, 1263, 7, 117, 2, 2, 1263, 1264, 7, 118, 2, 2, 1264, 1377, 7, 122, 2, 2, 1265, 1266, 7, 102, 2, 2, 1266, 1267, 7, 103, 2, 2, 1267, 1377, 7, 123, 2, 2, 1268, 1269, 7, 118, 2, 2, 1269, 1270, 7, 122, 2, 2, 1270, 1377, 7, 99, 2, 2, 1271, 1272, 7, 122, 2, 2, 1272, 1273, 7, 99, 2, 2, 1273, 1377, 7, 99, 2, 2, 1274, 1275, 7, 100, 2, 2, 1275, 1276, 7, 101, 2, 2, 1276, 1377, 7, 101, 2, 2, 1277, 1278, 7, 99, 2, 2, 1278, 1279, 7, 106, 2, 2, 1279, 1377, 7, 122, 2, 2, 1280, 1281, 7, 118, 2, 2, 1281, 1282, 7, 123, 2, 2, 1282, 1377, 7, 99, 2, 2, 1283, 1284, 7, 118, 2, 2, 1284, 1285, 7, 122, 2, 2, 1285, 1377, 7, 117, 2, 2, 1286, 1287, 7, 118, 2, 2, 1287, 1288, 7, 99, 2, 2, 1288, 1377, 7, 117, 2, 2, 1289, 1290, 7, 117, 2, 2, 1290, 1291, 7, 106, 2, 2, 1291, 1377, 7, 123, 2, 2, 1292, 1293, 7, 117, 2, 2, 1293, 1294, 7, 106, 2, 2, 1294, 1377, 7, 122, 2, 2, 1295, 1296, 7, 110, 2, 2, 1296, 1297, 7, 102, 2, 2, 1297, 1377, 7, 123, 2, 2, 1298, 1299, 7, 110, 2, 2, 1299, 1300, 7, 102, 2, 2, 1300, 1377, 7, 99, 2, 2, 1301, 1302, 7, 110, 2, 2, 1302, 1303, 7, 102, 2, 2, 1303, 1377, 7, 122, 2, 2, 1304, 1305, 7, 110, 2, 2, 1305, 1306, 7, 99, 2, 2, 1306, 1377, 7, 122, 2, 2, 1307, 1308, 7, 118, 2, 2, 1308, 1309, 7, 99, 2, 2, 1309, 1377, 7, 123, 2, 2, 1310, 1311, 7, 118, 2, 2, 1311, 1312, 7, 99, 2, 2, 1312, 1377, 7, 122, 2, 2, 1313, 1314, 7, 100, 2, 2, 1314, 1315, 7, 101, 2, 2, 1315, 1377, 7, 117, 2, 2, 1316, 1317, 7, 101, 2, 2, 1317, 1318, 7, 110, 2, 2, 1318, 1377, 7, 120, 2, 2, 1319, 1320, 7, 118, 2, 2, 1320, 1321, 7, 117, 2, 2, 1321, 1377, 7, 122, 2, 2, 1322, 1323, 7, 110, 2, 2, 1323, 1324, 7, 99, 2, 2, 1324, 1377, 7, 117, 2, 2, 1325, 1326, 7, 101, 2, 2, 1326, 1327, 7, 114, 2, 2, 1327, 1377, 7, 123, 2, 2, 1328, 1329, 7, 101, 2, 2, 1329, 1330, 7, 111, 2, 2, 1330, 1377, 7, 114, 2, 2, 1331, 1332, 7, 101, 2, 2, 1332, 1333, 7, 114, 2, 2, 1333, 1377, 7, 122, 2, 2, 1334, 1335, 7, 102, 2, 2, 1335, 1336, 7, 101, 2, 2, 1336, 1377, 7, 114, 2, 2, 1337, 1338, 7, 102, 2, 2, 1338, 1339, 7, 103, 2, 2, 1339, 1377, 7, 101, 2, 2, 1340, 1341, 7, 107, 2, 2, 1341, 1342, 7, 112, 2, 2, 1342, 1377, 7, 101, 2, 2, 1343, 1344, 7, 99, 2, 2, 1344, 1345, 7, 122, 2, 2, 1345, 1377, 7, 117, 2, 2, 1346, 1347, 7, 100, 2, 2, 1347, 1348, 7, 112, 2, 2, 1348, 1377, 7, 103, 2, 2, 1349, 1350, 7, 101, 2, 2, 1350, 1351, 7, 110, 2, 2, 1351, 1377, 7, 102, 2, 2, 1352, 1353, 7, 117, 2, 2, 1353, 1354, 7, 100, 2, 2, 1354, 1377, 7, 101, 2, 2, 1355, 1356, 7, 107, 2, 2, 1356, 1357, 7, 117, 2, 2, 1357, 1377, 7, 101, 2, 2, 1358, 1359, 7, 107, 2, 2, 1359, 1360, 7, 112, 2, 2, 1360, 1377, 7, 122, 2, 2, 1361, 1362, 7, 100, 2, 2, 1362, 1363, 7, 103, 2, 2, 1363, 1377, 7, 115, 2, 2, 1364, 1365, 7, 117, 2, 2, 1365, 1366, 7, 103, 2, 2, 1366, 1377, 7, 102, 2, 2, 1367, 1368, 7, 102, 2, 2, 1368, 1369, 7, 103, 2, 2, 1369, 1377, 7, 122, 2, 2, 1370, 1371, 7, 107, 2, 2, 1371, 1372, 7, 112, 2, 2, 1372, 1377, 7, 123, 2, 2, 1373, 1374, 7, 116, 2, 2, 1374, 1375, 7, 113, 2, 2, 1375, 1377, 7, 116, 2, 2, 1376, 1154, 3, 2, 2, 2, 1376, 1157, 3, 2, 2, 2, 1376, 1160, 3, 2, 2, 2, 1376, 1163, 3, 2, 2, 2, 1376, 1166, 3, 2, 2, 2, 1376, 1169, 3, 2, 2, 2, 1376, 1172, 3, 2, 2, 2, 1376, 1175, 3, 2, 2, 2, 1376, 1178, 3, 2, 2, 2, 1376, 1181, 3, 2, 2, 2, 1376, 1184, 3, 2, 2, 2, 1376, 1187, 3, 2, 2, 2, 1376, 1190, 3, 2, 2, 2, 1376, 1193, 3, 2, 2, 2, 1376, 1196, 3, 2, 2, 2, 1376, 1199, 3, 2, 2, 2, 1376, 1202, 3, 2, 2, 2, 1376, 1205, 3, 2, 2, 2, 1376, 1208, 3, 2, 2, 2, 1376, 1211, 3, 2, 2, 2, 1376, 1214, 3, 2, 2, 2, 1376, 1217, 3, 2, 2, 2, 1376, 1220, 3, 2, 2, 2, 1376, 1223, 3, 2, 2, 2, 1376, 1226, 3, 2, 2, 2, 1376, 1229, 3, 2, 2, 2, 1376, 1232, 3, 2, 2, 2, 1376, 1235, 3, 2, 2, 2, 1376, 1238, 3, 2, 2, 2, 1376, 1241, 3, 2, 2, 2, 1376, 1244, 3, 2, 2, 2, 1376, 1247, 3, 2, 2, 2, 1376, 1250, 3, 2, 2, 2, 1376, 1253, 3, 2, 2, 2, 1376, 1256, 3, 2, 2, 2, 1376, 1259, 3, 2, 2, 2, 1376, 1262, 3, 2, 2, 2, 1376, 1265, 3, 2, 2, 2, 1376, 1268, 3, 2, 2, 2, 1376, 1271, 3, 2, 2, 2, 1376, 1274, 3, 2, 2, 2, 1376, 1277, 3, 2, 2, 2, 1376, 1280, 3, 2, 2, 2, 1376, 1283, 3, 2, 2, 2, 1376, 1286, 3, 2, 2, 2, 1376, 1289, 3, 2, 2, 2, 1376, 1292, 3, 2, 2, 2, 1376, 1295, 3, 2, 2, 2, 1376, 1298, 3, 2, 2, 2, 1376, 1301, 3, 2, 2, 2, 1376, 1304, 3, 2, 2, 2, 1376, 1307, 3, 2, 2, 2, 1376, 1310, 3, 2, 2, 2, 1376, 1313, 3, 2, 2, 2, 1376, 1316, 3, 2, 2, 2, 1376, 1319, 3, 2, 2, 2, 1376, 1322, 3, 2, 2, 2, 1376, 1325, 3, 2, 2, 2, 1376, 1328, 3, 2, 2, 2, 1376, 1331, 3, 2, 2, 2, 1376, 1334, 3, 2, 2, 2, 1376, 1337, 3, 2, 2, 2, 1376, 1340, 3, 2, 2, 2, 1376, 1343, 3, 2, 2, 2, 1376, 1346, 3, 2, 2, 2, 1376, 1349, 3, 2, 2, 2, 1376, 1352, 3, 2, 2, 2, 1376, 1355, 3, 2, 2, 2, 1376, 1358, 3, 2, 2, 2, 1376, 1361, 3, 2, 2, 2, 1376, 1364, 3, 2, 2, 2, 1376, 1367, 3, 2, 2, 2, 1376, 1370, 3, 2, 2, 2, 1376, 1373, 3, 2, 2, 2, 1377, 252, 3, 2, 2, 2, 1378, 1379, 7, 37, 2, 2, 1379, 254, 3, 2, 2, 2, 1380, 1381, 7, 60, 2, 2, 1381, 256, 3, 2, 2, 2, 1382, 1383, 7, 46, 2, 2, 1383, 258, 3, 2, 2, 2, 1384, 1385, 7, 42, 2, 2, 1385, 260, 3, 2, 2, 2, 1386, 1387, 7, 43, 2, 2, 1387, 262, 3, 2, 2, 2, 1388, 1389, 7, 93, 2, 2, 1389, 264, 3, 2, 2, 2, 1390, 1391, 7, 95, 2, 2, 1391, 266, 3, 2, 2, 2, 1392, 1393, 7, 48, 2, 2, 1393, 268, 3, 2, 2, 2, 1394, 1395, 7, 62, 2, 2, 1395, 1396, 7, 62, 2, 2, 1396, 270, 3, 2, 2, 2, 1397, 1398, 7, 64, 2, 2, 1398, 1399, 7, 64, 2, 2, 1399, 272, 3, 2, 2, 2, 1400, 1401, 7, 45, 2, 2, 1401, 274, 3, 2, 2, 2, 1402, 1403, 7, 47, 2, 2, 1403, 276, 3, 2, 2, 2, 1404, 1405, 7, 62, 2, 2, 1405, 278, 3, 2, 2, 2, 1406, 1407, 7, 64, 2, 2, 1407, 280, 3, 2, 2, 2, 1408, 1409, 7, 44, 2, 2, 1409, 282, 3, 2, 2, 2, 1410, 1411, 7, 49, 2, 2, 1411, 284, 3, 2, 2, 2, 1412, 1413, 7, 125, 2, 2, 1413, 1414, 8, 142, 9, 2, 1414, 286, 3, 2, 2, 2, 1415, 1416, 7, 127, 2, 2, 1416, 1417, 8, 143, 10, 2, 1417, 288, 3, 2, 2, 2, 1418, 1421, 5, 291, 145, 2, 1419, 1421, 5, 299, 149, 2, 1420, 1418, 3, 2, 2, 2, 1420, 1419, 3, 2, 2, 2, 1421, 290, 3, 2, 2, 2, 1422, 1426, 5, 293, 146, 2, 1423, 1426, 5, 295, 147, 2, 1424, 1426, 5, 297, 148, 2, 1425, 1422, 3, 2, 2, 2, 1425, 1423, 3, 2, 2, 2, 1425, 1424, 3, 2, 2, 2, 1426, 292, 3, 2, 2, 2, 1427, 1431, 7, 39, 2, 2, 1428, 1430, 5, 307, 153, 2, 1429, 1428, 3, 2, 2, 2, 1430, 1433, 3, 2, 2, 2, 1431, 1429, 3, 2, 2, 2, 1431, 1432, 3, 2, 2, 2, 1432, 1434, 3, 2, 2, 2, 1433, 1431, 3, 2, 2, 2, 1434, 1436, 7, 48, 2, 2, 1435, 1437, 5, 307, 153, 2, 1436, 1435, 3, 2, 2, 2, 1437, 1438, 3, 2, 2, 2, 1438, 1436, 3, 2, 2, 2, 1438, 1439, 3, 2, 2, 2, 1439, 294, 3, 2, 2, 2, 1440, 1442, 5, 309, 154, 2, 1441, 1440, 3, 2, 2, 2, 1442, 1445, 3, 2, 2, 2, 1443, 1441, 3, 2, 2, 2, 1443, 1444, 3, 2, 2, 2, 1444, 1446, 3, 2, 2, 2, 1445, 1443, 3, 2, 2, 2, 1446, 1448, 7, 48, 2, 2, 1447, 1449, 5, 309, 154, 2, 1448, 1447, 3, 2, 2, 2, 1449, 1450, 3, 2, 2, 2, 1450, 1448, 3, 2, 2, 2, 1450, 1451, 3, 2, 2, 2, 1451, 296, 3, 2, 2, 2, 1452, 1456, 7, 38, 2, 2, 1453, 1455, 5, 311, 155, 2, 1454, 1453, 3, 2, 2, 2, 1455, 1458, 3, 2, 2, 2, 1456, 1454, 3, 2, 2, 2, 1456, 1457, 3, 2, 2, 2, 1457, 1459, 3, 2, 2, 2, 1458, 1456, 3, 2, 2, 2, 1459, 1461, 7, 48, 2, 2, 1460, 1462, 5, 311, 155, 2, 1461, 1460, 3, 2, 2, 2, 1462, 1463, 3, 2, 2, 2, 1463, 1461, 3, 2, 2, 2, 1463, 1464, 3, 2, 2, 2, 1464, 298, 3, 2, 2, 2, 1465, 1469, 5, 303, 151, 2, 1466, 1469, 5, 305, 152, 2, 1467, 1469, 5, 301, 150, 2, 1468, 1465, 3, 2, 2, 2, 1468, 1466, 3, 2, 2, 2, 1468, 1467, 3, 2, 2, 2, 1469, 300, 3, 2, 2, 2, 1470, 1472, 7, 39, 2, 2, 1471, 1473, 5, 307, 153, 2, 1472, 1471, 3, 2, 2, 2, 1473, 1474, 3, 2, 2, 2, 1474, 1472, 3, 2, 2, 2, 1474, 1475, 3, 2, 2, 2, 1475, 302, 3, 2, 2, 2, 1476, 1478, 5, 309, 154, 2, 1477, 1476, 3, 2, 2, 2, 1478, 1479, 3, 2, 2, 2, 1479, 1477, 3, 2, 2, 2, 1479, 1480, 3, 2, 2, 2, 1480, 304, 3, 2, 2, 2, 1481, 1483, 7, 38, 2, 2, 1482, 1484, 5, 311, 155, 2, 1483, 1482, 3, 2, 2, 2, 1484, 1485, 3, 2, 2, 2, 1485, 1483, 3, 2, 2, 2, 1485, 1486, 3, 2, 2, 2, 1486, 306, 3, 2, 2, 2, 1487, 1488, 9, 5, 2, 2, 1488, 308, 3, 2, 2, 2, 1489, 1490, 9, 6, 2, 2, 1490, 310, 3, 2, 2, 2, 1491, 1492, 9, 7, 2, 2, 1492, 312, 3, 2, 2, 2, 1493, 1497, 7, 41, 2, 2, 1494, 1495, 7, 94, 2, 2, 1495, 1498, 9, 14, 2, 2, 1496, 1498, 10, 15, 2, 2, 1497, 1494, 3, 2, 2, 2, 1497, 1496, 3, 2, 2, 2, 1498, 1499, 3, 2, 2, 2, 1499, 1500, 7, 41, 2, 2, 1500, 314, 3, 2, 2, 2, 1501, 1503, 5, 317, 158, 2, 1502, 1504, 9, 18, 2, 2, 1503, 1502, 3, 2, 2, 2, 1504, 1505, 3, 2, 2, 2, 1505, 1503, 3, 2, 2, 2, 1505, 1506, 3, 2, 2, 2, 1506, 316, 3, 2, 2, 2, 1507, 1511, 7, 35, 2, 2, 1508, 1510, 5, 323, 161, 2, 1509, 1508, 3, 2, 2, 2, 1510, 1513, 3, 2, 2, 2, 1511, 1509, 3, 2, 2, 2, 1511, 1512, 3, 2, 2, 2, 1512, 318, 3, 2, 2, 2, 1513, 1511, 3, 2, 2, 2, 1514, 1518, 5, 321, 160, 2, 1515, 1517, 5, 323, 161, 2, 1516, 1515, 3, 2, 2, 2, 1517, 1520, 3, 2, 2, 2, 1518, 1516, 3, 2, 2, 2, 1518, 1519, 3, 2, 2, 2, 1519, 320, 3, 2, 2, 2, 1520, 1518, 3, 2, 2, 2, 1521, 1522, 9, 8, 2, 2, 1522, 322, 3, 2, 2, 2, 1523, 1524, 9, 9, 2, 2, 1524, 324, 3, 2, 2, 2, 1525, 1527, 9, 16, 2, 2, 1526, 1525, 3, 2, 2, 2, 1527, 1528, 3, 2, 2, 2, 1528, 1526, 3, 2, 2, 2, 1528, 1529, 3, 2, 2, 2, 1529, 1530, 3, 2, 2, 2, 1530, 1531, 8, 162, 7, 2, 1531, 326, 3, 2, 2, 2, 1532, 1533, 7, 49, 2, 2, 1533, 1534, 7, 49, 2, 2, 1534, 1538, 3, 2, 2, 2, 1535, 1537, 10, 17, 2, 2, 1536, 1535, 3, 2, 2, 2, 1537, 1540, 3, 2, 2, 2, 1538, 1536, 3, 2, 2, 2, 1538, 1539, 3, 2, 2, 2, 1539, 1541, 3, 2, 2, 2, 1540, 1538, 3, 2, 2, 2, 1541, 1542, 8, 163, 8, 2, 1542, 328, 3, 2, 2, 2, 1543, 1544, 7, 49, 2, 2, 1544, 1545, 7, 44, 2, 2, 1545, 1549, 3, 2, 2, 2, 1546, 1548, 11, 2, 2, 2, 1547, 1546, 3, 2, 2, 2, 1548, 1551, 3, 2, 2, 2, 1549, 1550, 3, 2, 2, 2, 1549, 1547, 3, 2, 2, 2, 1550, 1552, 3, 2, 2, 2, 1551, 1549, 3, 2, 2, 2, 1552, 1553, 7, 44, 2, 2, 1553, 1554, 7, 49, 2, 2, 1554, 1555, 3, 2, 2, 2, 1555, 1556, 8, 164, 8, 2, 1556, 330, 3, 2, 2, 2, 1557, 1559, 7, 62, 2, 2, 1558, 1560, 9, 19, 2, 2, 1559, 1558, 3, 2, 2, 2, 1560, 1561, 3, 2, 2, 2, 1561, 1559, 3, 2, 2, 2, 1561, 1562, 3, 2, 2, 2, 1562, 1563, 3, 2, 2, 2, 1563, 1564, 7, 64, 2, 2, 1564, 1565, 8, 165, 11, 2, 1565, 332, 3, 2, 2, 2, 1566, 1572, 7, 36, 2, 2, 1567, 1568, 7, 94, 2, 2, 1568, 1571, 7, 36, 2, 2, 1569, 1571, 10, 10, 2, 2, 1570, 1567, 3, 2, 2, 2, 1570, 1569, 3, 2, 2, 2, 1571, 1574, 3, 2, 2, 2, 1572, 1570, 3, 2, 2, 2, 1572, 1573, 3, 2, 2, 2, 1573, 1575, 3, 2, 2, 2, 1574, 1572, 3, 2, 2, 2, 1575, 1576, 7, 36, 2, 2, 1576, 1577, 8, 166, 12, 2, 1577, 334, 3, 2, 2, 2, 1578, 1580, 9, 16, 2, 2, 1579, 1578, 3, 2, 2, 2, 1580, 1581, 3, 2, 2, 2, 1581, 1579, 3, 2, 2, 2, 1581, 1582, 3, 2, 2, 2, 1582, 1583, 3, 2, 2, 2, 1583, 1584, 8, 167, 7, 2, 1584, 336, 3, 2, 2, 2, 1585, 1586, 7, 49, 2, 2, 1586, 1587, 7, 49, 2, 2, 1587, 1591, 3, 2, 2, 2, 1588, 1590, 10, 17, 2, 2, 1589, 1588, 3, 2, 2, 2, 1590, 1593, 3, 2, 2, 2, 1591, 1589, 3, 2, 2, 2, 1591, 1592, 3, 2, 2, 2, 1592, 1594, 3, 2, 2, 2, 1593, 1591, 3, 2, 2, 2, 1594, 1595, 8, 168, 8, 2, 1595, 338, 3, 2, 2, 2, 1596, 1597, 7, 49, 2, 2, 1597, 1598, 7, 44, 2, 2, 1598, 1602, 3, 2, 2, 2, 1599, 1601, 11, 2, 2, 2, 1600, 1599, 3, 2, 2, 2, 1601, 1604, 3, 2, 2, 2, 1602, 1603, 3, 2, 2, 2, 1602, 1600, 3, 2, 2, 2, 1603, 1605, 3, 2, 2, 2, 1604, 1602, 3, 2, 2, 2, 1605, 1606, 7, 44, 2, 2, 1606, 1607, 7, 49, 2, 2, 1607, 1608, 3, 2, 2, 2, 1608, 1609, 8, 169, 8, 2, 1609, 340, 3, 2, 2, 2, 67, 2, 3, 4, 446, 638, 813, 852, 863, 871, 919, 968, 973, 980, 985, 992, 997, 1004, 1011, 1016, 1023, 1028, 1033, 1040, 1046, 1048, 1053, 1060, 1065, 1077, 1090, 1092, 1097, 1101, 1103, 1106, 1112, 1119, 1129, 1140, 1376, 1420, 1425, 1431, 1438, 1443, 1450, 1456, 1463, 1468, 1474, 1479, 1485, 1497, 1505, 1511, 1518, 1528, 1538, 1549, 1561, 1570, 1572, 1581, 1591, 1602, 13, 3, 2, 2, 3, 73, 3, 3, 92, 4, 3, 93, 5, 3, 116, 6, 2, 3, 2, 2, 4, 2, 3, 142, 7, 3, 143, 8, 3, 165, 9, 3, 166, 10] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 161, 1615, 8, 1, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 447, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 5, 62, 639, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 5, 88, 814, 10, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 5, 89, 853, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 864, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 7, 91, 870, 10, 91, 12, 91, 14, 91, 873, 11, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 5, 96, 920, 10, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 5, 104, 969, 10, 104, 3, 105, 3, 105, 3, 105, 5, 105, 974, 10, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 981, 10, 106, 3, 106, 7, 106, 984, 10, 106, 12, 106, 14, 106, 987, 11, 106, 3, 106, 3, 106, 6, 106, 991, 10, 106, 13, 106, 14, 106, 992, 3, 107, 7, 107, 996, 10, 107, 12, 107, 14, 107, 999, 11, 107, 3, 107, 3, 107, 6, 107, 1003, 10, 107, 13, 107, 14, 107, 1004, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 5, 108, 1012, 10, 108, 3, 108, 7, 108, 1015, 10, 108, 12, 108, 14, 108, 1018, 11, 108, 3, 108, 3, 108, 6, 108, 1022, 10, 108, 13, 108, 14, 108, 1023, 3, 109, 3, 109, 3, 109, 5, 109, 1029, 10, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1034, 10, 109, 3, 110, 3, 110, 3, 110, 6, 110, 1039, 10, 110, 13, 110, 14, 110, 1040, 3, 110, 3, 110, 6, 110, 1045, 10, 110, 13, 110, 14, 110, 1046, 5, 110, 1049, 10, 110, 3, 111, 6, 111, 1052, 10, 111, 13, 111, 14, 111, 1053, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 5, 112, 1061, 10, 112, 3, 112, 6, 112, 1064, 10, 112, 13, 112, 14, 112, 1065, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 116, 3, 116, 7, 116, 1076, 10, 116, 12, 116, 14, 116, 1079, 11, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 7, 119, 1091, 10, 119, 12, 119, 14, 119, 1094, 11, 119, 3, 119, 3, 119, 5, 119, 1098, 10, 119, 3, 119, 3, 119, 5, 119, 1102, 10, 119, 5, 119, 1104, 10, 119, 3, 119, 5, 119, 1107, 10, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 5, 120, 1115, 10, 120, 3, 120, 5, 120, 1118, 10, 120, 3, 120, 3, 120, 3, 121, 6, 121, 1123, 10, 121, 13, 121, 14, 121, 1124, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 1133, 10, 122, 12, 122, 14, 122, 1136, 11, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 7, 123, 1144, 10, 123, 12, 123, 14, 123, 1147, 11, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 5, 125, 1382, 10, 125, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 5, 144, 1426, 10, 144, 3, 145, 3, 145, 3, 145, 5, 145, 1431, 10, 145, 3, 146, 3, 146, 7, 146, 1435, 10, 146, 12, 146, 14, 146, 1438, 11, 146, 3, 146, 3, 146, 6, 146, 1442, 10, 146, 13, 146, 14, 146, 1443, 3, 147, 7, 147, 1447, 10, 147, 12, 147, 14, 147, 1450, 11, 147, 3, 147, 3, 147, 6, 147, 1454, 10, 147, 13, 147, 14, 147, 1455, 3, 148, 3, 148, 7, 148, 1460, 10, 148, 12, 148, 14, 148, 1463, 11, 148, 3, 148, 3, 148, 6, 148, 1467, 10, 148, 13, 148, 14, 148, 1468, 3, 149, 3, 149, 3, 149, 5, 149, 1474, 10, 149, 3, 150, 3, 150, 6, 150, 1478, 10, 150, 13, 150, 14, 150, 1479, 3, 151, 6, 151, 1483, 10, 151, 13, 151, 14, 151, 1484, 3, 152, 3, 152, 6, 152, 1489, 10, 152, 13, 152, 14, 152, 1490, 3, 153, 3, 153, 3, 154, 3, 154, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 5, 156, 1503, 10, 156, 3, 156, 3, 156, 3, 157, 3, 157, 6, 157, 1509, 10, 157, 13, 157, 14, 157, 1510, 3, 158, 3, 158, 7, 158, 1515, 10, 158, 12, 158, 14, 158, 1518, 11, 158, 3, 159, 3, 159, 7, 159, 1522, 10, 159, 12, 159, 14, 159, 1525, 11, 159, 3, 160, 3, 160, 3, 161, 3, 161, 3, 162, 6, 162, 1532, 10, 162, 13, 162, 14, 162, 1533, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 7, 163, 1542, 10, 163, 12, 163, 14, 163, 1545, 11, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 7, 164, 1553, 10, 164, 12, 164, 14, 164, 1556, 11, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 6, 165, 1565, 10, 165, 13, 165, 14, 165, 1566, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 7, 166, 1576, 10, 166, 12, 166, 14, 166, 1579, 11, 166, 3, 166, 3, 166, 3, 166, 3, 167, 6, 167, 1585, 10, 167, 13, 167, 14, 167, 1586, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 7, 168, 1595, 10, 168, 12, 168, 14, 168, 1598, 11, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 7, 169, 1606, 10, 169, 12, 169, 14, 169, 1609, 11, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 6, 871, 1145, 1554, 1607, 2, 170, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 2, 229, 2, 231, 2, 233, 115, 235, 2, 237, 2, 239, 116, 241, 117, 243, 118, 245, 119, 247, 120, 249, 121, 251, 122, 253, 123, 255, 124, 257, 125, 259, 126, 261, 127, 263, 128, 265, 129, 267, 130, 269, 131, 271, 132, 273, 133, 275, 134, 277, 135, 279, 136, 281, 137, 283, 138, 285, 139, 287, 140, 289, 141, 291, 142, 293, 143, 295, 144, 297, 145, 299, 146, 301, 147, 303, 148, 305, 149, 307, 2, 309, 2, 311, 2, 313, 150, 315, 151, 317, 152, 319, 153, 321, 2, 323, 2, 325, 154, 327, 155, 329, 156, 331, 157, 333, 158, 335, 159, 337, 160, 339, 161, 5, 2, 3, 4, 21, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 4, 2, 50, 59, 99, 104, 3, 2, 41, 41, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 7, 2, 47, 59, 67, 92, 94, 94, 97, 97, 99, 124, 2, 1760, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 3, 249, 3, 2, 2, 2, 3, 251, 3, 2, 2, 2, 3, 253, 3, 2, 2, 2, 3, 255, 3, 2, 2, 2, 3, 257, 3, 2, 2, 2, 3, 259, 3, 2, 2, 2, 3, 261, 3, 2, 2, 2, 3, 263, 3, 2, 2, 2, 3, 265, 3, 2, 2, 2, 3, 267, 3, 2, 2, 2, 3, 269, 3, 2, 2, 2, 3, 271, 3, 2, 2, 2, 3, 273, 3, 2, 2, 2, 3, 275, 3, 2, 2, 2, 3, 277, 3, 2, 2, 2, 3, 279, 3, 2, 2, 2, 3, 281, 3, 2, 2, 2, 3, 283, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 3, 287, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 3, 291, 3, 2, 2, 2, 3, 293, 3, 2, 2, 2, 3, 295, 3, 2, 2, 2, 3, 297, 3, 2, 2, 2, 3, 299, 3, 2, 2, 2, 3, 301, 3, 2, 2, 2, 3, 303, 3, 2, 2, 2, 3, 305, 3, 2, 2, 2, 3, 313, 3, 2, 2, 2, 3, 315, 3, 2, 2, 2, 3, 317, 3, 2, 2, 2, 3, 319, 3, 2, 2, 2, 3, 325, 3, 2, 2, 2, 3, 327, 3, 2, 2, 2, 3, 329, 3, 2, 2, 2, 4, 331, 3, 2, 2, 2, 4, 333, 3, 2, 2, 2, 4, 335, 3, 2, 2, 2, 4, 337, 3, 2, 2, 2, 4, 339, 3, 2, 2, 2, 5, 341, 3, 2, 2, 2, 7, 344, 3, 2, 2, 2, 9, 346, 3, 2, 2, 2, 11, 348, 3, 2, 2, 2, 13, 350, 3, 2, 2, 2, 15, 352, 3, 2, 2, 2, 17, 354, 3, 2, 2, 2, 19, 356, 3, 2, 2, 2, 21, 358, 3, 2, 2, 2, 23, 360, 3, 2, 2, 2, 25, 363, 3, 2, 2, 2, 27, 365, 3, 2, 2, 2, 29, 367, 3, 2, 2, 2, 31, 370, 3, 2, 2, 2, 33, 372, 3, 2, 2, 2, 35, 374, 3, 2, 2, 2, 37, 376, 3, 2, 2, 2, 39, 378, 3, 2, 2, 2, 41, 380, 3, 2, 2, 2, 43, 383, 3, 2, 2, 2, 45, 386, 3, 2, 2, 2, 47, 388, 3, 2, 2, 2, 49, 390, 3, 2, 2, 2, 51, 392, 3, 2, 2, 2, 53, 394, 3, 2, 2, 2, 55, 397, 3, 2, 2, 2, 57, 400, 3, 2, 2, 2, 59, 403, 3, 2, 2, 2, 61, 406, 3, 2, 2, 2, 63, 408, 3, 2, 2, 2, 65, 411, 3, 2, 2, 2, 67, 414, 3, 2, 2, 2, 69, 416, 3, 2, 2, 2, 71, 419, 3, 2, 2, 2, 73, 422, 3, 2, 2, 2, 75, 446, 3, 2, 2, 2, 77, 448, 3, 2, 2, 2, 79, 456, 3, 2, 2, 2, 81, 464, 3, 2, 2, 2, 83, 467, 3, 2, 2, 2, 85, 474, 3, 2, 2, 2, 87, 479, 3, 2, 2, 2, 89, 483, 3, 2, 2, 2, 91, 492, 3, 2, 2, 2, 93, 501, 3, 2, 2, 2, 95, 510, 3, 2, 2, 2, 97, 516, 3, 2, 2, 2, 99, 523, 3, 2, 2, 2, 101, 530, 3, 2, 2, 2, 103, 536, 3, 2, 2, 2, 105, 543, 3, 2, 2, 2, 107, 552, 3, 2, 2, 2, 109, 559, 3, 2, 2, 2, 111, 569, 3, 2, 2, 2, 113, 578, 3, 2, 2, 2, 115, 588, 3, 2, 2, 2, 117, 593, 3, 2, 2, 2, 119, 599, 3, 2, 2, 2, 121, 605, 3, 2, 2, 2, 123, 610, 3, 2, 2, 2, 125, 638, 3, 2, 2, 2, 127, 640, 3, 2, 2, 2, 129, 650, 3, 2, 2, 2, 131, 653, 3, 2, 2, 2, 133, 658, 3, 2, 2, 2, 135, 664, 3, 2, 2, 2, 137, 667, 3, 2, 2, 2, 139, 671, 3, 2, 2, 2, 141, 678, 3, 2, 2, 2, 143, 685, 3, 2, 2, 2, 145, 691, 3, 2, 2, 2, 147, 700, 3, 2, 2, 2, 149, 706, 3, 2, 2, 2, 151, 714, 3, 2, 2, 2, 153, 719, 3, 2, 2, 2, 155, 726, 3, 2, 2, 2, 157, 731, 3, 2, 2, 2, 159, 738, 3, 2, 2, 2, 161, 745, 3, 2, 2, 2, 163, 753, 3, 2, 2, 2, 165, 761, 3, 2, 2, 2, 167, 770, 3, 2, 2, 2, 169, 775, 3, 2, 2, 2, 171, 784, 3, 2, 2, 2, 173, 790, 3, 2, 2, 2, 175, 797, 3, 2, 2, 2, 177, 813, 3, 2, 2, 2, 179, 852, 3, 2, 2, 2, 181, 863, 3, 2, 2, 2, 183, 865, 3, 2, 2, 2, 185, 877, 3, 2, 2, 2, 187, 887, 3, 2, 2, 2, 189, 898, 3, 2, 2, 2, 191, 906, 3, 2, 2, 2, 193, 919, 3, 2, 2, 2, 195, 921, 3, 2, 2, 2, 197, 928, 3, 2, 2, 2, 199, 935, 3, 2, 2, 2, 201, 943, 3, 2, 2, 2, 203, 947, 3, 2, 2, 2, 205, 953, 3, 2, 2, 2, 207, 959, 3, 2, 2, 2, 209, 968, 3, 2, 2, 2, 211, 973, 3, 2, 2, 2, 213, 980, 3, 2, 2, 2, 215, 997, 3, 2, 2, 2, 217, 1011, 3, 2, 2, 2, 219, 1028, 3, 2, 2, 2, 221, 1048, 3, 2, 2, 2, 223, 1051, 3, 2, 2, 2, 225, 1060, 3, 2, 2, 2, 227, 1067, 3, 2, 2, 2, 229, 1069, 3, 2, 2, 2, 231, 1071, 3, 2, 2, 2, 233, 1073, 3, 2, 2, 2, 235, 1082, 3, 2, 2, 2, 237, 1084, 3, 2, 2, 2, 239, 1086, 3, 2, 2, 2, 241, 1108, 3, 2, 2, 2, 243, 1122, 3, 2, 2, 2, 245, 1128, 3, 2, 2, 2, 247, 1139, 3, 2, 2, 2, 249, 1153, 3, 2, 2, 2, 251, 1381, 3, 2, 2, 2, 253, 1383, 3, 2, 2, 2, 255, 1385, 3, 2, 2, 2, 257, 1387, 3, 2, 2, 2, 259, 1389, 3, 2, 2, 2, 261, 1391, 3, 2, 2, 2, 263, 1393, 3, 2, 2, 2, 265, 1395, 3, 2, 2, 2, 267, 1397, 3, 2, 2, 2, 269, 1399, 3, 2, 2, 2, 271, 1402, 3, 2, 2, 2, 273, 1405, 3, 2, 2, 2, 275, 1407, 3, 2, 2, 2, 277, 1409, 3, 2, 2, 2, 279, 1411, 3, 2, 2, 2, 281, 1413, 3, 2, 2, 2, 283, 1415, 3, 2, 2, 2, 285, 1417, 3, 2, 2, 2, 287, 1420, 3, 2, 2, 2, 289, 1425, 3, 2, 2, 2, 291, 1430, 3, 2, 2, 2, 293, 1432, 3, 2, 2, 2, 295, 1448, 3, 2, 2, 2, 297, 1457, 3, 2, 2, 2, 299, 1473, 3, 2, 2, 2, 301, 1475, 3, 2, 2, 2, 303, 1482, 3, 2, 2, 2, 305, 1486, 3, 2, 2, 2, 307, 1492, 3, 2, 2, 2, 309, 1494, 3, 2, 2, 2, 311, 1496, 3, 2, 2, 2, 313, 1498, 3, 2, 2, 2, 315, 1506, 3, 2, 2, 2, 317, 1512, 3, 2, 2, 2, 319, 1519, 3, 2, 2, 2, 321, 1526, 3, 2, 2, 2, 323, 1528, 3, 2, 2, 2, 325, 1531, 3, 2, 2, 2, 327, 1537, 3, 2, 2, 2, 329, 1548, 3, 2, 2, 2, 331, 1562, 3, 2, 2, 2, 333, 1571, 3, 2, 2, 2, 335, 1584, 3, 2, 2, 2, 337, 1590, 3, 2, 2, 2, 339, 1601, 3, 2, 2, 2, 341, 342, 7, 125, 2, 2, 342, 343, 8, 2, 2, 2, 343, 6, 3, 2, 2, 2, 344, 345, 7, 127, 2, 2, 345, 8, 3, 2, 2, 2, 346, 347, 7, 93, 2, 2, 347, 10, 3, 2, 2, 2, 348, 349, 7, 95, 2, 2, 349, 12, 3, 2, 2, 2, 350, 351, 7, 42, 2, 2, 351, 14, 3, 2, 2, 2, 352, 353, 7, 43, 2, 2, 353, 16, 3, 2, 2, 2, 354, 355, 7, 61, 2, 2, 355, 18, 3, 2, 2, 2, 356, 357, 7, 60, 2, 2, 357, 20, 3, 2, 2, 2, 358, 359, 7, 46, 2, 2, 359, 22, 3, 2, 2, 2, 360, 361, 7, 48, 2, 2, 361, 362, 7, 48, 2, 2, 362, 24, 3, 2, 2, 2, 363, 364, 7, 65, 2, 2, 364, 26, 3, 2, 2, 2, 365, 366, 7, 48, 2, 2, 366, 28, 3, 2, 2, 2, 367, 368, 7, 47, 2, 2, 368, 369, 7, 64, 2, 2, 369, 30, 3, 2, 2, 2, 370, 371, 7, 45, 2, 2, 371, 32, 3, 2, 2, 2, 372, 373, 7, 47, 2, 2, 373, 34, 3, 2, 2, 2, 374, 375, 7, 44, 2, 2, 375, 36, 3, 2, 2, 2, 376, 377, 7, 49, 2, 2, 377, 38, 3, 2, 2, 2, 378, 379, 7, 39, 2, 2, 379, 40, 3, 2, 2, 2, 380, 381, 7, 45, 2, 2, 381, 382, 7, 45, 2, 2, 382, 42, 3, 2, 2, 2, 383, 384, 7, 47, 2, 2, 384, 385, 7, 47, 2, 2, 385, 44, 3, 2, 2, 2, 386, 387, 7, 40, 2, 2, 387, 46, 3, 2, 2, 2, 388, 389, 7, 128, 2, 2, 389, 48, 3, 2, 2, 2, 390, 391, 7, 96, 2, 2, 391, 50, 3, 2, 2, 2, 392, 393, 7, 126, 2, 2, 393, 52, 3, 2, 2, 2, 394, 395, 7, 62, 2, 2, 395, 396, 7, 62, 2, 2, 396, 54, 3, 2, 2, 2, 397, 398, 7, 64, 2, 2, 398, 399, 7, 64, 2, 2, 399, 56, 3, 2, 2, 2, 400, 401, 7, 63, 2, 2, 401, 402, 7, 63, 2, 2, 402, 58, 3, 2, 2, 2, 403, 404, 7, 35, 2, 2, 404, 405, 7, 63, 2, 2, 405, 60, 3, 2, 2, 2, 406, 407, 7, 62, 2, 2, 407, 62, 3, 2, 2, 2, 408, 409, 7, 62, 2, 2, 409, 410, 7, 63, 2, 2, 410, 64, 3, 2, 2, 2, 411, 412, 7, 64, 2, 2, 412, 413, 7, 63, 2, 2, 413, 66, 3, 2, 2, 2, 414, 415, 7, 64, 2, 2, 415, 68, 3, 2, 2, 2, 416, 417, 7, 40, 2, 2, 417, 418, 7, 40, 2, 2, 418, 70, 3, 2, 2, 2, 419, 420, 7, 126, 2, 2, 420, 421, 7, 126, 2, 2, 421, 72, 3, 2, 2, 2, 422, 423, 7, 63, 2, 2, 423, 74, 3, 2, 2, 2, 424, 425, 7, 45, 2, 2, 425, 447, 7, 63, 2, 2, 426, 427, 7, 47, 2, 2, 427, 447, 7, 63, 2, 2, 428, 429, 7, 44, 2, 2, 429, 447, 7, 63, 2, 2, 430, 431, 7, 49, 2, 2, 431, 447, 7, 63, 2, 2, 432, 433, 7, 39, 2, 2, 433, 447, 7, 63, 2, 2, 434, 435, 7, 62, 2, 2, 435, 436, 7, 62, 2, 2, 436, 447, 7, 63, 2, 2, 437, 438, 7, 64, 2, 2, 438, 439, 7, 64, 2, 2, 439, 447, 7, 63, 2, 2, 440, 441, 7, 40, 2, 2, 441, 447, 7, 63, 2, 2, 442, 443, 7, 126, 2, 2, 443, 447, 7, 63, 2, 2, 444, 445, 7, 96, 2, 2, 445, 447, 7, 63, 2, 2, 446, 424, 3, 2, 2, 2, 446, 426, 3, 2, 2, 2, 446, 428, 3, 2, 2, 2, 446, 430, 3, 2, 2, 2, 446, 432, 3, 2, 2, 2, 446, 434, 3, 2, 2, 2, 446, 437, 3, 2, 2, 2, 446, 440, 3, 2, 2, 2, 446, 442, 3, 2, 2, 2, 446, 444, 3, 2, 2, 2, 447, 76, 3, 2, 2, 2, 448, 449, 7, 118, 2, 2, 449, 450, 7, 123, 2, 2, 450, 451, 7, 114, 2, 2, 451, 452, 7, 103, 2, 2, 452, 453, 7, 102, 2, 2, 453, 454, 7, 103, 2, 2, 454, 455, 7, 104, 2, 2, 455, 78, 3, 2, 2, 2, 456, 457, 7, 116, 2, 2, 457, 458, 7, 103, 2, 2, 458, 459, 7, 117, 2, 2, 459, 460, 7, 103, 2, 2, 460, 461, 7, 116, 2, 2, 461, 462, 7, 120, 2, 2, 462, 463, 7, 103, 2, 2, 463, 80, 3, 2, 2, 2, 464, 465, 7, 114, 2, 2, 465, 466, 7, 101, 2, 2, 466, 82, 3, 2, 2, 2, 467, 468, 7, 118, 2, 2, 468, 469, 7, 99, 2, 2, 469, 470, 7, 116, 2, 2, 470, 471, 7, 105, 2, 2, 471, 472, 7, 103, 2, 2, 472, 473, 7, 118, 2, 2, 473, 84, 3, 2, 2, 2, 474, 475, 7, 110, 2, 2, 475, 476, 7, 107, 2, 2, 476, 477, 7, 112, 2, 2, 477, 478, 7, 109, 2, 2, 478, 86, 3, 2, 2, 2, 479, 480, 7, 101, 2, 2, 480, 481, 7, 114, 2, 2, 481, 482, 7, 119, 2, 2, 482, 88, 3, 2, 2, 2, 483, 484, 7, 101, 2, 2, 484, 485, 7, 113, 2, 2, 485, 486, 7, 102, 2, 2, 486, 487, 7, 103, 2, 2, 487, 488, 7, 97, 2, 2, 488, 489, 7, 117, 2, 2, 489, 490, 7, 103, 2, 2, 490, 491, 7, 105, 2, 2, 491, 90, 3, 2, 2, 2, 492, 493, 7, 102, 2, 2, 493, 494, 7, 99, 2, 2, 494, 495, 7, 118, 2, 2, 495, 496, 7, 99, 2, 2, 496, 497, 7, 97, 2, 2, 497, 498, 7, 117, 2, 2, 498, 499, 7, 103, 2, 2, 499, 500, 7, 105, 2, 2, 500, 92, 3, 2, 2, 2, 501, 502, 7, 103, 2, 2, 502, 503, 7, 112, 2, 2, 503, 504, 7, 101, 2, 2, 504, 505, 7, 113, 2, 2, 505, 506, 7, 102, 2, 2, 506, 507, 7, 107, 2, 2, 507, 508, 7, 112, 2, 2, 508, 509, 7, 105, 2, 2, 509, 94, 3, 2, 2, 2, 510, 511, 7, 101, 2, 2, 511, 512, 7, 113, 2, 2, 512, 513, 7, 112, 2, 2, 513, 514, 7, 117, 2, 2, 514, 515, 7, 118, 2, 2, 515, 96, 3, 2, 2, 2, 516, 517, 7, 103, 2, 2, 517, 518, 7, 122, 2, 2, 518, 519, 7, 118, 2, 2, 519, 520, 7, 103, 2, 2, 520, 521, 7, 116, 2, 2, 521, 522, 7, 112, 2, 2, 522, 98, 3, 2, 2, 2, 523, 524, 7, 103, 2, 2, 524, 525, 7, 122, 2, 2, 525, 526, 7, 114, 2, 2, 526, 527, 7, 113, 2, 2, 527, 528, 7, 116, 2, 2, 528, 529, 7, 118, 2, 2, 529, 100, 3, 2, 2, 2, 530, 531, 7, 99, 2, 2, 531, 532, 7, 110, 2, 2, 532, 533, 7, 107, 2, 2, 533, 534, 7, 105, 2, 2, 534, 535, 7, 112, 2, 2, 535, 102, 3, 2, 2, 2, 536, 537, 7, 107, 2, 2, 537, 538, 7, 112, 2, 2, 538, 539, 7, 110, 2, 2, 539, 540, 7, 107, 2, 2, 540, 541, 7, 112, 2, 2, 541, 542, 7, 103, 2, 2, 542, 104, 3, 2, 2, 2, 543, 544, 7, 120, 2, 2, 544, 545, 7, 113, 2, 2, 545, 546, 7, 110, 2, 2, 546, 547, 7, 99, 2, 2, 547, 548, 7, 118, 2, 2, 548, 549, 7, 107, 2, 2, 549, 550, 7, 110, 2, 2, 550, 551, 7, 103, 2, 2, 551, 106, 3, 2, 2, 2, 552, 553, 7, 117, 2, 2, 553, 554, 7, 118, 2, 2, 554, 555, 7, 99, 2, 2, 555, 556, 7, 118, 2, 2, 556, 557, 7, 107, 2, 2, 557, 558, 7, 101, 2, 2, 558, 108, 3, 2, 2, 2, 559, 560, 7, 107, 2, 2, 560, 561, 7, 112, 2, 2, 561, 562, 7, 118, 2, 2, 562, 563, 7, 103, 2, 2, 563, 564, 7, 116, 2, 2, 564, 565, 7, 116, 2, 2, 565, 566, 7, 119, 2, 2, 566, 567, 7, 114, 2, 2, 567, 568, 7, 118, 2, 2, 568, 110, 3, 2, 2, 2, 569, 570, 7, 116, 2, 2, 570, 571, 7, 103, 2, 2, 571, 572, 7, 105, 2, 2, 572, 573, 7, 107, 2, 2, 573, 574, 7, 117, 2, 2, 574, 575, 7, 118, 2, 2, 575, 576, 7, 103, 2, 2, 576, 577, 7, 116, 2, 2, 577, 112, 3, 2, 2, 2, 578, 579, 7, 97, 2, 2, 579, 580, 7, 97, 2, 2, 580, 581, 7, 99, 2, 2, 581, 582, 7, 102, 2, 2, 582, 583, 7, 102, 2, 2, 583, 584, 7, 116, 2, 2, 584, 585, 7, 103, 2, 2, 585, 586, 7, 117, 2, 2, 586, 587, 7, 117, 2, 2, 587, 114, 3, 2, 2, 2, 588, 589, 7, 97, 2, 2, 589, 590, 7, 97, 2, 2, 590, 591, 7, 124, 2, 2, 591, 592, 7, 114, 2, 2, 592, 116, 3, 2, 2, 2, 593, 594, 7, 97, 2, 2, 594, 595, 7, 97, 2, 2, 595, 596, 7, 111, 2, 2, 596, 597, 7, 103, 2, 2, 597, 598, 7, 111, 2, 2, 598, 118, 3, 2, 2, 2, 599, 600, 7, 97, 2, 2, 600, 601, 7, 97, 2, 2, 601, 602, 7, 117, 2, 2, 602, 603, 7, 117, 2, 2, 603, 604, 7, 99, 2, 2, 604, 120, 3, 2, 2, 2, 605, 606, 7, 97, 2, 2, 606, 607, 7, 97, 2, 2, 607, 608, 7, 111, 2, 2, 608, 609, 7, 99, 2, 2, 609, 122, 3, 2, 2, 2, 610, 611, 7, 101, 2, 2, 611, 612, 7, 99, 2, 2, 612, 613, 7, 110, 2, 2, 613, 614, 7, 110, 2, 2, 614, 615, 7, 107, 2, 2, 615, 616, 7, 112, 2, 2, 616, 617, 7, 105, 2, 2, 617, 124, 3, 2, 2, 2, 618, 619, 7, 97, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 117, 2, 2, 621, 622, 7, 118, 2, 2, 622, 623, 7, 99, 2, 2, 623, 624, 7, 101, 2, 2, 624, 625, 7, 109, 2, 2, 625, 626, 7, 101, 2, 2, 626, 627, 7, 99, 2, 2, 627, 628, 7, 110, 2, 2, 628, 639, 7, 110, 2, 2, 629, 630, 7, 97, 2, 2, 630, 631, 7, 97, 2, 2, 631, 632, 7, 114, 2, 2, 632, 633, 7, 106, 2, 2, 633, 634, 7, 107, 2, 2, 634, 635, 7, 101, 2, 2, 635, 636, 7, 99, 2, 2, 636, 637, 7, 110, 2, 2, 637, 639, 7, 110, 2, 2, 638, 618, 3, 2, 2, 2, 638, 629, 3, 2, 2, 2, 639, 126, 3, 2, 2, 2, 640, 641, 7, 120, 2, 2, 641, 642, 7, 99, 2, 2, 642, 643, 7, 116, 2, 2, 643, 644, 7, 97, 2, 2, 644, 645, 7, 111, 2, 2, 645, 646, 7, 113, 2, 2, 646, 647, 7, 102, 2, 2, 647, 648, 7, 103, 2, 2, 648, 649, 7, 110, 2, 2, 649, 128, 3, 2, 2, 2, 650, 651, 7, 107, 2, 2, 651, 652, 7, 104, 2, 2, 652, 130, 3, 2, 2, 2, 653, 654, 7, 103, 2, 2, 654, 655, 7, 110, 2, 2, 655, 656, 7, 117, 2, 2, 656, 657, 7, 103, 2, 2, 657, 132, 3, 2, 2, 2, 658, 659, 7, 121, 2, 2, 659, 660, 7, 106, 2, 2, 660, 661, 7, 107, 2, 2, 661, 662, 7, 110, 2, 2, 662, 663, 7, 103, 2, 2, 663, 134, 3, 2, 2, 2, 664, 665, 7, 102, 2, 2, 665, 666, 7, 113, 2, 2, 666, 136, 3, 2, 2, 2, 667, 668, 7, 104, 2, 2, 668, 669, 7, 113, 2, 2, 669, 670, 7, 116, 2, 2, 670, 138, 3, 2, 2, 2, 671, 672, 7, 117, 2, 2, 672, 673, 7, 121, 2, 2, 673, 674, 7, 107, 2, 2, 674, 675, 7, 118, 2, 2, 675, 676, 7, 101, 2, 2, 676, 677, 7, 106, 2, 2, 677, 140, 3, 2, 2, 2, 678, 679, 7, 116, 2, 2, 679, 680, 7, 103, 2, 2, 680, 681, 7, 118, 2, 2, 681, 682, 7, 119, 2, 2, 682, 683, 7, 116, 2, 2, 683, 684, 7, 112, 2, 2, 684, 142, 3, 2, 2, 2, 685, 686, 7, 100, 2, 2, 686, 687, 7, 116, 2, 2, 687, 688, 7, 103, 2, 2, 688, 689, 7, 99, 2, 2, 689, 690, 7, 109, 2, 2, 690, 144, 3, 2, 2, 2, 691, 692, 7, 101, 2, 2, 692, 693, 7, 113, 2, 2, 693, 694, 7, 112, 2, 2, 694, 695, 7, 118, 2, 2, 695, 696, 7, 107, 2, 2, 696, 697, 7, 112, 2, 2, 697, 698, 7, 119, 2, 2, 698, 699, 7, 103, 2, 2, 699, 146, 3, 2, 2, 2, 700, 701, 7, 99, 2, 2, 701, 702, 7, 117, 2, 2, 702, 703, 7, 111, 2, 2, 703, 704, 3, 2, 2, 2, 704, 705, 8, 73, 3, 2, 705, 148, 3, 2, 2, 2, 706, 707, 7, 102, 2, 2, 707, 708, 7, 103, 2, 2, 708, 709, 7, 104, 2, 2, 709, 710, 7, 99, 2, 2, 710, 711, 7, 119, 2, 2, 711, 712, 7, 110, 2, 2, 712, 713, 7, 118, 2, 2, 713, 150, 3, 2, 2, 2, 714, 715, 7, 101, 2, 2, 715, 716, 7, 99, 2, 2, 716, 717, 7, 117, 2, 2, 717, 718, 7, 103, 2, 2, 718, 152, 3, 2, 2, 2, 719, 720, 7, 117, 2, 2, 720, 721, 7, 118, 2, 2, 721, 722, 7, 116, 2, 2, 722, 723, 7, 119, 2, 2, 723, 724, 7, 101, 2, 2, 724, 725, 7, 118, 2, 2, 725, 154, 3, 2, 2, 2, 726, 727, 7, 103, 2, 2, 727, 728, 7, 112, 2, 2, 728, 729, 7, 119, 2, 2, 729, 730, 7, 111, 2, 2, 730, 156, 3, 2, 2, 2, 731, 732, 7, 117, 2, 2, 732, 733, 7, 107, 2, 2, 733, 734, 7, 124, 2, 2, 734, 735, 7, 103, 2, 2, 735, 736, 7, 113, 2, 2, 736, 737, 7, 104, 2, 2, 737, 158, 3, 2, 2, 2, 738, 739, 7, 118, 2, 2, 739, 740, 7, 123, 2, 2, 740, 741, 7, 114, 2, 2, 741, 742, 7, 103, 2, 2, 742, 743, 7, 107, 2, 2, 743, 744, 7, 102, 2, 2, 744, 160, 3, 2, 2, 2, 745, 746, 7, 102, 2, 2, 746, 747, 7, 103, 2, 2, 747, 748, 7, 104, 2, 2, 748, 749, 7, 107, 2, 2, 749, 750, 7, 112, 2, 2, 750, 751, 7, 103, 2, 2, 751, 752, 7, 102, 2, 2, 752, 162, 3, 2, 2, 2, 753, 754, 7, 109, 2, 2, 754, 755, 7, 107, 2, 2, 755, 756, 7, 101, 2, 2, 756, 757, 7, 109, 2, 2, 757, 758, 7, 99, 2, 2, 758, 759, 7, 117, 2, 2, 759, 760, 7, 111, 2, 2, 760, 164, 3, 2, 2, 2, 761, 762, 7, 116, 2, 2, 762, 763, 7, 103, 2, 2, 763, 764, 7, 117, 2, 2, 764, 765, 7, 113, 2, 2, 765, 766, 7, 119, 2, 2, 766, 767, 7, 116, 2, 2, 767, 768, 7, 101, 2, 2, 768, 769, 7, 103, 2, 2, 769, 166, 3, 2, 2, 2, 770, 771, 7, 119, 2, 2, 771, 772, 7, 117, 2, 2, 772, 773, 7, 103, 2, 2, 773, 774, 7, 117, 2, 2, 774, 168, 3, 2, 2, 2, 775, 776, 7, 101, 2, 2, 776, 777, 7, 110, 2, 2, 777, 778, 7, 113, 2, 2, 778, 779, 7, 100, 2, 2, 779, 780, 7, 100, 2, 2, 780, 781, 7, 103, 2, 2, 781, 782, 7, 116, 2, 2, 782, 783, 7, 117, 2, 2, 783, 170, 3, 2, 2, 2, 784, 785, 7, 100, 2, 2, 785, 786, 7, 123, 2, 2, 786, 787, 7, 118, 2, 2, 787, 788, 7, 103, 2, 2, 788, 789, 7, 117, 2, 2, 789, 172, 3, 2, 2, 2, 790, 791, 7, 101, 2, 2, 791, 792, 7, 123, 2, 2, 792, 793, 7, 101, 2, 2, 793, 794, 7, 110, 2, 2, 794, 795, 7, 103, 2, 2, 795, 796, 7, 117, 2, 2, 796, 174, 3, 2, 2, 2, 797, 798, 7, 35, 2, 2, 798, 176, 3, 2, 2, 2, 799, 800, 7, 117, 2, 2, 800, 801, 7, 107, 2, 2, 801, 802, 7, 105, 2, 2, 802, 803, 7, 112, 2, 2, 803, 804, 7, 103, 2, 2, 804, 814, 7, 102, 2, 2, 805, 806, 7, 119, 2, 2, 806, 807, 7, 112, 2, 2, 807, 808, 7, 117, 2, 2, 808, 809, 7, 107, 2, 2, 809, 810, 7, 105, 2, 2, 810, 811, 7, 112, 2, 2, 811, 812, 7, 103, 2, 2, 812, 814, 7, 102, 2, 2, 813, 799, 3, 2, 2, 2, 813, 805, 3, 2, 2, 2, 814, 178, 3, 2, 2, 2, 815, 816, 7, 100, 2, 2, 816, 817, 7, 123, 2, 2, 817, 818, 7, 118, 2, 2, 818, 853, 7, 103, 2, 2, 819, 820, 7, 121, 2, 2, 820, 821, 7, 113, 2, 2, 821, 822, 7, 116, 2, 2, 822, 853, 7, 102, 2, 2, 823, 824, 7, 102, 2, 2, 824, 825, 7, 121, 2, 2, 825, 826, 7, 113, 2, 2, 826, 827, 7, 116, 2, 2, 827, 853, 7, 102, 2, 2, 828, 829, 7, 100, 2, 2, 829, 830, 7, 113, 2, 2, 830, 831, 7, 113, 2, 2, 831, 853, 7, 110, 2, 2, 832, 833, 7, 101, 2, 2, 833, 834, 7, 106, 2, 2, 834, 835, 7, 99, 2, 2, 835, 853, 7, 116, 2, 2, 836, 837, 7, 117, 2, 2, 837, 838, 7, 106, 2, 2, 838, 839, 7, 113, 2, 2, 839, 840, 7, 116, 2, 2, 840, 853, 7, 118, 2, 2, 841, 842, 7, 107, 2, 2, 842, 843, 7, 112, 2, 2, 843, 853, 7, 118, 2, 2, 844, 845, 7, 110, 2, 2, 845, 846, 7, 113, 2, 2, 846, 847, 7, 112, 2, 2, 847, 853, 7, 105, 2, 2, 848, 849, 7, 120, 2, 2, 849, 850, 7, 113, 2, 2, 850, 851, 7, 107, 2, 2, 851, 853, 7, 102, 2, 2, 852, 815, 3, 2, 2, 2, 852, 819, 3, 2, 2, 2, 852, 823, 3, 2, 2, 2, 852, 828, 3, 2, 2, 2, 852, 832, 3, 2, 2, 2, 852, 836, 3, 2, 2, 2, 852, 841, 3, 2, 2, 2, 852, 844, 3, 2, 2, 2, 852, 848, 3, 2, 2, 2, 853, 180, 3, 2, 2, 2, 854, 855, 7, 118, 2, 2, 855, 856, 7, 116, 2, 2, 856, 857, 7, 119, 2, 2, 857, 864, 7, 103, 2, 2, 858, 859, 7, 104, 2, 2, 859, 860, 7, 99, 2, 2, 860, 861, 7, 110, 2, 2, 861, 862, 7, 117, 2, 2, 862, 864, 7, 103, 2, 2, 863, 854, 3, 2, 2, 2, 863, 858, 3, 2, 2, 2, 864, 182, 3, 2, 2, 2, 865, 866, 7, 125, 2, 2, 866, 867, 7, 125, 2, 2, 867, 871, 3, 2, 2, 2, 868, 870, 11, 2, 2, 2, 869, 868, 3, 2, 2, 2, 870, 873, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 871, 869, 3, 2, 2, 2, 872, 874, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 874, 875, 7, 127, 2, 2, 875, 876, 7, 127, 2, 2, 876, 184, 3, 2, 2, 2, 877, 878, 7, 37, 2, 2, 878, 879, 7, 107, 2, 2, 879, 880, 7, 111, 2, 2, 880, 881, 7, 114, 2, 2, 881, 882, 7, 113, 2, 2, 882, 883, 7, 116, 2, 2, 883, 884, 7, 118, 2, 2, 884, 885, 3, 2, 2, 2, 885, 886, 8, 92, 4, 2, 886, 186, 3, 2, 2, 2, 887, 888, 7, 37, 2, 2, 888, 889, 7, 107, 2, 2, 889, 890, 7, 112, 2, 2, 890, 891, 7, 101, 2, 2, 891, 892, 7, 110, 2, 2, 892, 893, 7, 119, 2, 2, 893, 894, 7, 102, 2, 2, 894, 895, 7, 103, 2, 2, 895, 896, 3, 2, 2, 2, 896, 897, 8, 93, 5, 2, 897, 188, 3, 2, 2, 2, 898, 899, 7, 37, 2, 2, 899, 900, 7, 114, 2, 2, 900, 901, 7, 116, 2, 2, 901, 902, 7, 99, 2, 2, 902, 903, 7, 105, 2, 2, 903, 904, 7, 111, 2, 2, 904, 905, 7, 99, 2, 2, 905, 190, 3, 2, 2, 2, 906, 907, 7, 37, 2, 2, 907, 908, 7, 102, 2, 2, 908, 909, 7, 103, 2, 2, 909, 910, 7, 104, 2, 2, 910, 911, 7, 107, 2, 2, 911, 912, 7, 112, 2, 2, 912, 913, 7, 103, 2, 2, 913, 192, 3, 2, 2, 2, 914, 915, 7, 94, 2, 2, 915, 920, 7, 12, 2, 2, 916, 917, 7, 94, 2, 2, 917, 918, 7, 15, 2, 2, 918, 920, 7, 12, 2, 2, 919, 914, 3, 2, 2, 2, 919, 916, 3, 2, 2, 2, 920, 194, 3, 2, 2, 2, 921, 922, 7, 37, 2, 2, 922, 923, 7, 119, 2, 2, 923, 924, 7, 112, 2, 2, 924, 925, 7, 102, 2, 2, 925, 926, 7, 103, 2, 2, 926, 927, 7, 104, 2, 2, 927, 196, 3, 2, 2, 2, 928, 929, 7, 37, 2, 2, 929, 930, 7, 107, 2, 2, 930, 931, 7, 104, 2, 2, 931, 932, 7, 102, 2, 2, 932, 933, 7, 103, 2, 2, 933, 934, 7, 104, 2, 2, 934, 198, 3, 2, 2, 2, 935, 936, 7, 37, 2, 2, 936, 937, 7, 107, 2, 2, 937, 938, 7, 104, 2, 2, 938, 939, 7, 112, 2, 2, 939, 940, 7, 102, 2, 2, 940, 941, 7, 103, 2, 2, 941, 942, 7, 104, 2, 2, 942, 200, 3, 2, 2, 2, 943, 944, 7, 37, 2, 2, 944, 945, 7, 107, 2, 2, 945, 946, 7, 104, 2, 2, 946, 202, 3, 2, 2, 2, 947, 948, 7, 37, 2, 2, 948, 949, 7, 103, 2, 2, 949, 950, 7, 110, 2, 2, 950, 951, 7, 107, 2, 2, 951, 952, 7, 104, 2, 2, 952, 204, 3, 2, 2, 2, 953, 954, 7, 37, 2, 2, 954, 955, 7, 103, 2, 2, 955, 956, 7, 110, 2, 2, 956, 957, 7, 117, 2, 2, 957, 958, 7, 103, 2, 2, 958, 206, 3, 2, 2, 2, 959, 960, 7, 37, 2, 2, 960, 961, 7, 103, 2, 2, 961, 962, 7, 112, 2, 2, 962, 963, 7, 102, 2, 2, 963, 964, 7, 107, 2, 2, 964, 965, 7, 104, 2, 2, 965, 208, 3, 2, 2, 2, 966, 969, 5, 211, 105, 2, 967, 969, 5, 219, 109, 2, 968, 966, 3, 2, 2, 2, 968, 967, 3, 2, 2, 2, 969, 210, 3, 2, 2, 2, 970, 974, 5, 213, 106, 2, 971, 974, 5, 215, 107, 2, 972, 974, 5, 217, 108, 2, 973, 970, 3, 2, 2, 2, 973, 971, 3, 2, 2, 2, 973, 972, 3, 2, 2, 2, 974, 212, 3, 2, 2, 2, 975, 981, 7, 39, 2, 2, 976, 977, 7, 50, 2, 2, 977, 981, 7, 100, 2, 2, 978, 979, 7, 50, 2, 2, 979, 981, 7, 68, 2, 2, 980, 975, 3, 2, 2, 2, 980, 976, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 981, 985, 3, 2, 2, 2, 982, 984, 5, 227, 113, 2, 983, 982, 3, 2, 2, 2, 984, 987, 3, 2, 2, 2, 985, 983, 3, 2, 2, 2, 985, 986, 3, 2, 2, 2, 986, 988, 3, 2, 2, 2, 987, 985, 3, 2, 2, 2, 988, 990, 7, 48, 2, 2, 989, 991, 5, 227, 113, 2, 990, 989, 3, 2, 2, 2, 991, 992, 3, 2, 2, 2, 992, 990, 3, 2, 2, 2, 992, 993, 3, 2, 2, 2, 993, 214, 3, 2, 2, 2, 994, 996, 5, 229, 114, 2, 995, 994, 3, 2, 2, 2, 996, 999, 3, 2, 2, 2, 997, 995, 3, 2, 2, 2, 997, 998, 3, 2, 2, 2, 998, 1000, 3, 2, 2, 2, 999, 997, 3, 2, 2, 2, 1000, 1002, 7, 48, 2, 2, 1001, 1003, 5, 229, 114, 2, 1002, 1001, 3, 2, 2, 2, 1003, 1004, 3, 2, 2, 2, 1004, 1002, 3, 2, 2, 2, 1004, 1005, 3, 2, 2, 2, 1005, 216, 3, 2, 2, 2, 1006, 1012, 7, 38, 2, 2, 1007, 1008, 7, 50, 2, 2, 1008, 1012, 7, 122, 2, 2, 1009, 1010, 7, 50, 2, 2, 1010, 1012, 7, 90, 2, 2, 1011, 1006, 3, 2, 2, 2, 1011, 1007, 3, 2, 2, 2, 1011, 1009, 3, 2, 2, 2, 1012, 1016, 3, 2, 2, 2, 1013, 1015, 5, 231, 115, 2, 1014, 1013, 3, 2, 2, 2, 1015, 1018, 3, 2, 2, 2, 1016, 1014, 3, 2, 2, 2, 1016, 1017, 3, 2, 2, 2, 1017, 1019, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 1021, 7, 48, 2, 2, 1020, 1022, 5, 231, 115, 2, 1021, 1020, 3, 2, 2, 2, 1022, 1023, 3, 2, 2, 2, 1023, 1021, 3, 2, 2, 2, 1023, 1024, 3, 2, 2, 2, 1024, 218, 3, 2, 2, 2, 1025, 1029, 5, 223, 111, 2, 1026, 1029, 5, 225, 112, 2, 1027, 1029, 5, 221, 110, 2, 1028, 1025, 3, 2, 2, 2, 1028, 1026, 3, 2, 2, 2, 1028, 1027, 3, 2, 2, 2, 1029, 1033, 3, 2, 2, 2, 1030, 1031, 9, 2, 2, 2, 1031, 1034, 9, 3, 2, 2, 1032, 1034, 7, 110, 2, 2, 1033, 1030, 3, 2, 2, 2, 1033, 1032, 3, 2, 2, 2, 1033, 1034, 3, 2, 2, 2, 1034, 220, 3, 2, 2, 2, 1035, 1036, 7, 50, 2, 2, 1036, 1038, 9, 4, 2, 2, 1037, 1039, 5, 227, 113, 2, 1038, 1037, 3, 2, 2, 2, 1039, 1040, 3, 2, 2, 2, 1040, 1038, 3, 2, 2, 2, 1040, 1041, 3, 2, 2, 2, 1041, 1049, 3, 2, 2, 2, 1042, 1044, 7, 39, 2, 2, 1043, 1045, 5, 227, 113, 2, 1044, 1043, 3, 2, 2, 2, 1045, 1046, 3, 2, 2, 2, 1046, 1044, 3, 2, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1049, 3, 2, 2, 2, 1048, 1035, 3, 2, 2, 2, 1048, 1042, 3, 2, 2, 2, 1049, 222, 3, 2, 2, 2, 1050, 1052, 5, 229, 114, 2, 1051, 1050, 3, 2, 2, 2, 1052, 1053, 3, 2, 2, 2, 1053, 1051, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 224, 3, 2, 2, 2, 1055, 1061, 7, 38, 2, 2, 1056, 1057, 7, 50, 2, 2, 1057, 1061, 7, 122, 2, 2, 1058, 1059, 7, 50, 2, 2, 1059, 1061, 7, 90, 2, 2, 1060, 1055, 3, 2, 2, 2, 1060, 1056, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1061, 1063, 3, 2, 2, 2, 1062, 1064, 5, 231, 115, 2, 1063, 1062, 3, 2, 2, 2, 1064, 1065, 3, 2, 2, 2, 1065, 1063, 3, 2, 2, 2, 1065, 1066, 3, 2, 2, 2, 1066, 226, 3, 2, 2, 2, 1067, 1068, 9, 5, 2, 2, 1068, 228, 3, 2, 2, 2, 1069, 1070, 9, 6, 2, 2, 1070, 230, 3, 2, 2, 2, 1071, 1072, 9, 7, 2, 2, 1072, 232, 3, 2, 2, 2, 1073, 1077, 5, 235, 117, 2, 1074, 1076, 5, 237, 118, 2, 1075, 1074, 3, 2, 2, 2, 1076, 1079, 3, 2, 2, 2, 1077, 1075, 3, 2, 2, 2, 1077, 1078, 3, 2, 2, 2, 1078, 1080, 3, 2, 2, 2, 1079, 1077, 3, 2, 2, 2, 1080, 1081, 8, 116, 6, 2, 1081, 234, 3, 2, 2, 2, 1082, 1083, 9, 8, 2, 2, 1083, 236, 3, 2, 2, 2, 1084, 1085, 9, 9, 2, 2, 1085, 238, 3, 2, 2, 2, 1086, 1092, 7, 36, 2, 2, 1087, 1088, 7, 94, 2, 2, 1088, 1091, 7, 36, 2, 2, 1089, 1091, 10, 10, 2, 2, 1090, 1087, 3, 2, 2, 2, 1090, 1089, 3, 2, 2, 2, 1091, 1094, 3, 2, 2, 2, 1092, 1090, 3, 2, 2, 2, 1092, 1093, 3, 2, 2, 2, 1093, 1095, 3, 2, 2, 2, 1094, 1092, 3, 2, 2, 2, 1095, 1097, 7, 36, 2, 2, 1096, 1098, 9, 11, 2, 2, 1097, 1096, 3, 2, 2, 2, 1097, 1098, 3, 2, 2, 2, 1098, 1103, 3, 2, 2, 2, 1099, 1101, 9, 12, 2, 2, 1100, 1102, 9, 13, 2, 2, 1101, 1100, 3, 2, 2, 2, 1101, 1102, 3, 2, 2, 2, 1102, 1104, 3, 2, 2, 2, 1103, 1099, 3, 2, 2, 2, 1103, 1104, 3, 2, 2, 2, 1104, 1106, 3, 2, 2, 2, 1105, 1107, 9, 11, 2, 2, 1106, 1105, 3, 2, 2, 2, 1106, 1107, 3, 2, 2, 2, 1107, 240, 3, 2, 2, 2, 1108, 1117, 7, 41, 2, 2, 1109, 1114, 7, 94, 2, 2, 1110, 1115, 9, 14, 2, 2, 1111, 1112, 7, 122, 2, 2, 1112, 1113, 9, 15, 2, 2, 1113, 1115, 9, 15, 2, 2, 1114, 1110, 3, 2, 2, 2, 1114, 1111, 3, 2, 2, 2, 1115, 1118, 3, 2, 2, 2, 1116, 1118, 10, 16, 2, 2, 1117, 1109, 3, 2, 2, 2, 1117, 1116, 3, 2, 2, 2, 1118, 1119, 3, 2, 2, 2, 1119, 1120, 7, 41, 2, 2, 1120, 242, 3, 2, 2, 2, 1121, 1123, 9, 17, 2, 2, 1122, 1121, 3, 2, 2, 2, 1123, 1124, 3, 2, 2, 2, 1124, 1122, 3, 2, 2, 2, 1124, 1125, 3, 2, 2, 2, 1125, 1126, 3, 2, 2, 2, 1126, 1127, 8, 121, 7, 2, 1127, 244, 3, 2, 2, 2, 1128, 1129, 7, 49, 2, 2, 1129, 1130, 7, 49, 2, 2, 1130, 1134, 3, 2, 2, 2, 1131, 1133, 10, 18, 2, 2, 1132, 1131, 3, 2, 2, 2, 1133, 1136, 3, 2, 2, 2, 1134, 1132, 3, 2, 2, 2, 1134, 1135, 3, 2, 2, 2, 1135, 1137, 3, 2, 2, 2, 1136, 1134, 3, 2, 2, 2, 1137, 1138, 8, 122, 8, 2, 1138, 246, 3, 2, 2, 2, 1139, 1140, 7, 49, 2, 2, 1140, 1141, 7, 44, 2, 2, 1141, 1145, 3, 2, 2, 2, 1142, 1144, 11, 2, 2, 2, 1143, 1142, 3, 2, 2, 2, 1144, 1147, 3, 2, 2, 2, 1145, 1146, 3, 2, 2, 2, 1145, 1143, 3, 2, 2, 2, 1146, 1148, 3, 2, 2, 2, 1147, 1145, 3, 2, 2, 2, 1148, 1149, 7, 44, 2, 2, 1149, 1150, 7, 49, 2, 2, 1150, 1151, 3, 2, 2, 2, 1151, 1152, 8, 123, 8, 2, 1152, 248, 3, 2, 2, 2, 1153, 1154, 7, 48, 2, 2, 1154, 1155, 7, 100, 2, 2, 1155, 1156, 7, 123, 2, 2, 1156, 1157, 7, 118, 2, 2, 1157, 1158, 7, 103, 2, 2, 1158, 250, 3, 2, 2, 2, 1159, 1160, 7, 100, 2, 2, 1160, 1161, 7, 116, 2, 2, 1161, 1382, 7, 109, 2, 2, 1162, 1163, 7, 113, 2, 2, 1163, 1164, 7, 116, 2, 2, 1164, 1382, 7, 99, 2, 2, 1165, 1166, 7, 109, 2, 2, 1166, 1167, 7, 107, 2, 2, 1167, 1382, 7, 110, 2, 2, 1168, 1169, 7, 117, 2, 2, 1169, 1170, 7, 110, 2, 2, 1170, 1382, 7, 113, 2, 2, 1171, 1172, 7, 112, 2, 2, 1172, 1173, 7, 113, 2, 2, 1173, 1382, 7, 114, 2, 2, 1174, 1175, 7, 99, 2, 2, 1175, 1176, 7, 117, 2, 2, 1176, 1382, 7, 110, 2, 2, 1177, 1178, 7, 114, 2, 2, 1178, 1179, 7, 106, 2, 2, 1179, 1382, 7, 114, 2, 2, 1180, 1181, 7, 99, 2, 2, 1181, 1182, 7, 112, 2, 2, 1182, 1382, 7, 101, 2, 2, 1183, 1184, 7, 100, 2, 2, 1184, 1185, 7, 114, 2, 2, 1185, 1382, 7, 110, 2, 2, 1186, 1187, 7, 101, 2, 2, 1187, 1188, 7, 110, 2, 2, 1188, 1382, 7, 101, 2, 2, 1189, 1190, 7, 108, 2, 2, 1190, 1191, 7, 117, 2, 2, 1191, 1382, 7, 116, 2, 2, 1192, 1193, 7, 99, 2, 2, 1193, 1194, 7, 112, 2, 2, 1194, 1382, 7, 102, 2, 2, 1195, 1196, 7, 116, 2, 2, 1196, 1197, 7, 110, 2, 2, 1197, 1382, 7, 99, 2, 2, 1198, 1199, 7, 100, 2, 2, 1199, 1200, 7, 107, 2, 2, 1200, 1382, 7, 118, 2, 2, 1201, 1202, 7, 116, 2, 2, 1202, 1203, 7, 113, 2, 2, 1203, 1382, 7, 110, 2, 2, 1204, 1205, 7, 114, 2, 2, 1205, 1206, 7, 110, 2, 2, 1206, 1382, 7, 99, 2, 2, 1207, 1208, 7, 114, 2, 2, 1208, 1209, 7, 110, 2, 2, 1209, 1382, 7, 114, 2, 2, 1210, 1211, 7, 100, 2, 2, 1211, 1212, 7, 111, 2, 2, 1212, 1382, 7, 107, 2, 2, 1213, 1214, 7, 117, 2, 2, 1214, 1215, 7, 103, 2, 2, 1215, 1382, 7, 101, 2, 2, 1216, 1217, 7, 116, 2, 2, 1217, 1218, 7, 118, 2, 2, 1218, 1382, 7, 107, 2, 2, 1219, 1220, 7, 103, 2, 2, 1220, 1221, 7, 113, 2, 2, 1221, 1382, 7, 116, 2, 2, 1222, 1223, 7, 117, 2, 2, 1223, 1224, 7, 116, 2, 2, 1224, 1382, 7, 103, 2, 2, 1225, 1226, 7, 110, 2, 2, 1226, 1227, 7, 117, 2, 2, 1227, 1382, 7, 116, 2, 2, 1228, 1229, 7, 114, 2, 2, 1229, 1230, 7, 106, 2, 2, 1230, 1382, 7, 99, 2, 2, 1231, 1232, 7, 99, 2, 2, 1232, 1233, 7, 110, 2, 2, 1233, 1382, 7, 116, 2, 2, 1234, 1235, 7, 108, 2, 2, 1235, 1236, 7, 111, 2, 2, 1236, 1382, 7, 114, 2, 2, 1237, 1238, 7, 100, 2, 2, 1238, 1239, 7, 120, 2, 2, 1239, 1382, 7, 101, 2, 2, 1240, 1241, 7, 101, 2, 2, 1241, 1242, 7, 110, 2, 2, 1242, 1382, 7, 107, 2, 2, 1243, 1244, 7, 116, 2, 2, 1244, 1245, 7, 118, 2, 2, 1245, 1382, 7, 117, 2, 2, 1246, 1247, 7, 99, 2, 2, 1247, 1248, 7, 102, 2, 2, 1248, 1382, 7, 101, 2, 2, 1249, 1250, 7, 116, 2, 2, 1250, 1251, 7, 116, 2, 2, 1251, 1382, 7, 99, 2, 2, 1252, 1253, 7, 100, 2, 2, 1253, 1254, 7, 120, 2, 2, 1254, 1382, 7, 117, 2, 2, 1255, 1256, 7, 117, 2, 2, 1256, 1257, 7, 103, 2, 2, 1257, 1382, 7, 107, 2, 2, 1258, 1259, 7, 117, 2, 2, 1259, 1260, 7, 99, 2, 2, 1260, 1382, 7, 122, 2, 2, 1261, 1262, 7, 117, 2, 2, 1262, 1263, 7, 118, 2, 2, 1263, 1382, 7, 123, 2, 2, 1264, 1265, 7, 117, 2, 2, 1265, 1266, 7, 118, 2, 2, 1266, 1382, 7, 99, 2, 2, 1267, 1268, 7, 117, 2, 2, 1268, 1269, 7, 118, 2, 2, 1269, 1382, 7, 122, 2, 2, 1270, 1271, 7, 102, 2, 2, 1271, 1272, 7, 103, 2, 2, 1272, 1382, 7, 123, 2, 2, 1273, 1274, 7, 118, 2, 2, 1274, 1275, 7, 122, 2, 2, 1275, 1382, 7, 99, 2, 2, 1276, 1277, 7, 122, 2, 2, 1277, 1278, 7, 99, 2, 2, 1278, 1382, 7, 99, 2, 2, 1279, 1280, 7, 100, 2, 2, 1280, 1281, 7, 101, 2, 2, 1281, 1382, 7, 101, 2, 2, 1282, 1283, 7, 99, 2, 2, 1283, 1284, 7, 106, 2, 2, 1284, 1382, 7, 122, 2, 2, 1285, 1286, 7, 118, 2, 2, 1286, 1287, 7, 123, 2, 2, 1287, 1382, 7, 99, 2, 2, 1288, 1289, 7, 118, 2, 2, 1289, 1290, 7, 122, 2, 2, 1290, 1382, 7, 117, 2, 2, 1291, 1292, 7, 118, 2, 2, 1292, 1293, 7, 99, 2, 2, 1293, 1382, 7, 117, 2, 2, 1294, 1295, 7, 117, 2, 2, 1295, 1296, 7, 106, 2, 2, 1296, 1382, 7, 123, 2, 2, 1297, 1298, 7, 117, 2, 2, 1298, 1299, 7, 106, 2, 2, 1299, 1382, 7, 122, 2, 2, 1300, 1301, 7, 110, 2, 2, 1301, 1302, 7, 102, 2, 2, 1302, 1382, 7, 123, 2, 2, 1303, 1304, 7, 110, 2, 2, 1304, 1305, 7, 102, 2, 2, 1305, 1382, 7, 99, 2, 2, 1306, 1307, 7, 110, 2, 2, 1307, 1308, 7, 102, 2, 2, 1308, 1382, 7, 122, 2, 2, 1309, 1310, 7, 110, 2, 2, 1310, 1311, 7, 99, 2, 2, 1311, 1382, 7, 122, 2, 2, 1312, 1313, 7, 118, 2, 2, 1313, 1314, 7, 99, 2, 2, 1314, 1382, 7, 123, 2, 2, 1315, 1316, 7, 118, 2, 2, 1316, 1317, 7, 99, 2, 2, 1317, 1382, 7, 122, 2, 2, 1318, 1319, 7, 100, 2, 2, 1319, 1320, 7, 101, 2, 2, 1320, 1382, 7, 117, 2, 2, 1321, 1322, 7, 101, 2, 2, 1322, 1323, 7, 110, 2, 2, 1323, 1382, 7, 120, 2, 2, 1324, 1325, 7, 118, 2, 2, 1325, 1326, 7, 117, 2, 2, 1326, 1382, 7, 122, 2, 2, 1327, 1328, 7, 110, 2, 2, 1328, 1329, 7, 99, 2, 2, 1329, 1382, 7, 117, 2, 2, 1330, 1331, 7, 101, 2, 2, 1331, 1332, 7, 114, 2, 2, 1332, 1382, 7, 123, 2, 2, 1333, 1334, 7, 101, 2, 2, 1334, 1335, 7, 111, 2, 2, 1335, 1382, 7, 114, 2, 2, 1336, 1337, 7, 101, 2, 2, 1337, 1338, 7, 114, 2, 2, 1338, 1382, 7, 122, 2, 2, 1339, 1340, 7, 102, 2, 2, 1340, 1341, 7, 101, 2, 2, 1341, 1382, 7, 114, 2, 2, 1342, 1343, 7, 102, 2, 2, 1343, 1344, 7, 103, 2, 2, 1344, 1382, 7, 101, 2, 2, 1345, 1346, 7, 107, 2, 2, 1346, 1347, 7, 112, 2, 2, 1347, 1382, 7, 101, 2, 2, 1348, 1349, 7, 99, 2, 2, 1349, 1350, 7, 122, 2, 2, 1350, 1382, 7, 117, 2, 2, 1351, 1352, 7, 100, 2, 2, 1352, 1353, 7, 112, 2, 2, 1353, 1382, 7, 103, 2, 2, 1354, 1355, 7, 101, 2, 2, 1355, 1356, 7, 110, 2, 2, 1356, 1382, 7, 102, 2, 2, 1357, 1358, 7, 117, 2, 2, 1358, 1359, 7, 100, 2, 2, 1359, 1382, 7, 101, 2, 2, 1360, 1361, 7, 107, 2, 2, 1361, 1362, 7, 117, 2, 2, 1362, 1382, 7, 101, 2, 2, 1363, 1364, 7, 107, 2, 2, 1364, 1365, 7, 112, 2, 2, 1365, 1382, 7, 122, 2, 2, 1366, 1367, 7, 100, 2, 2, 1367, 1368, 7, 103, 2, 2, 1368, 1382, 7, 115, 2, 2, 1369, 1370, 7, 117, 2, 2, 1370, 1371, 7, 103, 2, 2, 1371, 1382, 7, 102, 2, 2, 1372, 1373, 7, 102, 2, 2, 1373, 1374, 7, 103, 2, 2, 1374, 1382, 7, 122, 2, 2, 1375, 1376, 7, 107, 2, 2, 1376, 1377, 7, 112, 2, 2, 1377, 1382, 7, 123, 2, 2, 1378, 1379, 7, 116, 2, 2, 1379, 1380, 7, 113, 2, 2, 1380, 1382, 7, 116, 2, 2, 1381, 1159, 3, 2, 2, 2, 1381, 1162, 3, 2, 2, 2, 1381, 1165, 3, 2, 2, 2, 1381, 1168, 3, 2, 2, 2, 1381, 1171, 3, 2, 2, 2, 1381, 1174, 3, 2, 2, 2, 1381, 1177, 3, 2, 2, 2, 1381, 1180, 3, 2, 2, 2, 1381, 1183, 3, 2, 2, 2, 1381, 1186, 3, 2, 2, 2, 1381, 1189, 3, 2, 2, 2, 1381, 1192, 3, 2, 2, 2, 1381, 1195, 3, 2, 2, 2, 1381, 1198, 3, 2, 2, 2, 1381, 1201, 3, 2, 2, 2, 1381, 1204, 3, 2, 2, 2, 1381, 1207, 3, 2, 2, 2, 1381, 1210, 3, 2, 2, 2, 1381, 1213, 3, 2, 2, 2, 1381, 1216, 3, 2, 2, 2, 1381, 1219, 3, 2, 2, 2, 1381, 1222, 3, 2, 2, 2, 1381, 1225, 3, 2, 2, 2, 1381, 1228, 3, 2, 2, 2, 1381, 1231, 3, 2, 2, 2, 1381, 1234, 3, 2, 2, 2, 1381, 1237, 3, 2, 2, 2, 1381, 1240, 3, 2, 2, 2, 1381, 1243, 3, 2, 2, 2, 1381, 1246, 3, 2, 2, 2, 1381, 1249, 3, 2, 2, 2, 1381, 1252, 3, 2, 2, 2, 1381, 1255, 3, 2, 2, 2, 1381, 1258, 3, 2, 2, 2, 1381, 1261, 3, 2, 2, 2, 1381, 1264, 3, 2, 2, 2, 1381, 1267, 3, 2, 2, 2, 1381, 1270, 3, 2, 2, 2, 1381, 1273, 3, 2, 2, 2, 1381, 1276, 3, 2, 2, 2, 1381, 1279, 3, 2, 2, 2, 1381, 1282, 3, 2, 2, 2, 1381, 1285, 3, 2, 2, 2, 1381, 1288, 3, 2, 2, 2, 1381, 1291, 3, 2, 2, 2, 1381, 1294, 3, 2, 2, 2, 1381, 1297, 3, 2, 2, 2, 1381, 1300, 3, 2, 2, 2, 1381, 1303, 3, 2, 2, 2, 1381, 1306, 3, 2, 2, 2, 1381, 1309, 3, 2, 2, 2, 1381, 1312, 3, 2, 2, 2, 1381, 1315, 3, 2, 2, 2, 1381, 1318, 3, 2, 2, 2, 1381, 1321, 3, 2, 2, 2, 1381, 1324, 3, 2, 2, 2, 1381, 1327, 3, 2, 2, 2, 1381, 1330, 3, 2, 2, 2, 1381, 1333, 3, 2, 2, 2, 1381, 1336, 3, 2, 2, 2, 1381, 1339, 3, 2, 2, 2, 1381, 1342, 3, 2, 2, 2, 1381, 1345, 3, 2, 2, 2, 1381, 1348, 3, 2, 2, 2, 1381, 1351, 3, 2, 2, 2, 1381, 1354, 3, 2, 2, 2, 1381, 1357, 3, 2, 2, 2, 1381, 1360, 3, 2, 2, 2, 1381, 1363, 3, 2, 2, 2, 1381, 1366, 3, 2, 2, 2, 1381, 1369, 3, 2, 2, 2, 1381, 1372, 3, 2, 2, 2, 1381, 1375, 3, 2, 2, 2, 1381, 1378, 3, 2, 2, 2, 1382, 252, 3, 2, 2, 2, 1383, 1384, 7, 37, 2, 2, 1384, 254, 3, 2, 2, 2, 1385, 1386, 7, 60, 2, 2, 1386, 256, 3, 2, 2, 2, 1387, 1388, 7, 46, 2, 2, 1388, 258, 3, 2, 2, 2, 1389, 1390, 7, 42, 2, 2, 1390, 260, 3, 2, 2, 2, 1391, 1392, 7, 43, 2, 2, 1392, 262, 3, 2, 2, 2, 1393, 1394, 7, 93, 2, 2, 1394, 264, 3, 2, 2, 2, 1395, 1396, 7, 95, 2, 2, 1396, 266, 3, 2, 2, 2, 1397, 1398, 7, 48, 2, 2, 1398, 268, 3, 2, 2, 2, 1399, 1400, 7, 62, 2, 2, 1400, 1401, 7, 62, 2, 2, 1401, 270, 3, 2, 2, 2, 1402, 1403, 7, 64, 2, 2, 1403, 1404, 7, 64, 2, 2, 1404, 272, 3, 2, 2, 2, 1405, 1406, 7, 45, 2, 2, 1406, 274, 3, 2, 2, 2, 1407, 1408, 7, 47, 2, 2, 1408, 276, 3, 2, 2, 2, 1409, 1410, 7, 62, 2, 2, 1410, 278, 3, 2, 2, 2, 1411, 1412, 7, 64, 2, 2, 1412, 280, 3, 2, 2, 2, 1413, 1414, 7, 44, 2, 2, 1414, 282, 3, 2, 2, 2, 1415, 1416, 7, 49, 2, 2, 1416, 284, 3, 2, 2, 2, 1417, 1418, 7, 125, 2, 2, 1418, 1419, 8, 142, 9, 2, 1419, 286, 3, 2, 2, 2, 1420, 1421, 7, 127, 2, 2, 1421, 1422, 8, 143, 10, 2, 1422, 288, 3, 2, 2, 2, 1423, 1426, 5, 291, 145, 2, 1424, 1426, 5, 299, 149, 2, 1425, 1423, 3, 2, 2, 2, 1425, 1424, 3, 2, 2, 2, 1426, 290, 3, 2, 2, 2, 1427, 1431, 5, 293, 146, 2, 1428, 1431, 5, 295, 147, 2, 1429, 1431, 5, 297, 148, 2, 1430, 1427, 3, 2, 2, 2, 1430, 1428, 3, 2, 2, 2, 1430, 1429, 3, 2, 2, 2, 1431, 292, 3, 2, 2, 2, 1432, 1436, 7, 39, 2, 2, 1433, 1435, 5, 307, 153, 2, 1434, 1433, 3, 2, 2, 2, 1435, 1438, 3, 2, 2, 2, 1436, 1434, 3, 2, 2, 2, 1436, 1437, 3, 2, 2, 2, 1437, 1439, 3, 2, 2, 2, 1438, 1436, 3, 2, 2, 2, 1439, 1441, 7, 48, 2, 2, 1440, 1442, 5, 307, 153, 2, 1441, 1440, 3, 2, 2, 2, 1442, 1443, 3, 2, 2, 2, 1443, 1441, 3, 2, 2, 2, 1443, 1444, 3, 2, 2, 2, 1444, 294, 3, 2, 2, 2, 1445, 1447, 5, 309, 154, 2, 1446, 1445, 3, 2, 2, 2, 1447, 1450, 3, 2, 2, 2, 1448, 1446, 3, 2, 2, 2, 1448, 1449, 3, 2, 2, 2, 1449, 1451, 3, 2, 2, 2, 1450, 1448, 3, 2, 2, 2, 1451, 1453, 7, 48, 2, 2, 1452, 1454, 5, 309, 154, 2, 1453, 1452, 3, 2, 2, 2, 1454, 1455, 3, 2, 2, 2, 1455, 1453, 3, 2, 2, 2, 1455, 1456, 3, 2, 2, 2, 1456, 296, 3, 2, 2, 2, 1457, 1461, 7, 38, 2, 2, 1458, 1460, 5, 311, 155, 2, 1459, 1458, 3, 2, 2, 2, 1460, 1463, 3, 2, 2, 2, 1461, 1459, 3, 2, 2, 2, 1461, 1462, 3, 2, 2, 2, 1462, 1464, 3, 2, 2, 2, 1463, 1461, 3, 2, 2, 2, 1464, 1466, 7, 48, 2, 2, 1465, 1467, 5, 311, 155, 2, 1466, 1465, 3, 2, 2, 2, 1467, 1468, 3, 2, 2, 2, 1468, 1466, 3, 2, 2, 2, 1468, 1469, 3, 2, 2, 2, 1469, 298, 3, 2, 2, 2, 1470, 1474, 5, 303, 151, 2, 1471, 1474, 5, 305, 152, 2, 1472, 1474, 5, 301, 150, 2, 1473, 1470, 3, 2, 2, 2, 1473, 1471, 3, 2, 2, 2, 1473, 1472, 3, 2, 2, 2, 1474, 300, 3, 2, 2, 2, 1475, 1477, 7, 39, 2, 2, 1476, 1478, 5, 307, 153, 2, 1477, 1476, 3, 2, 2, 2, 1478, 1479, 3, 2, 2, 2, 1479, 1477, 3, 2, 2, 2, 1479, 1480, 3, 2, 2, 2, 1480, 302, 3, 2, 2, 2, 1481, 1483, 5, 309, 154, 2, 1482, 1481, 3, 2, 2, 2, 1483, 1484, 3, 2, 2, 2, 1484, 1482, 3, 2, 2, 2, 1484, 1485, 3, 2, 2, 2, 1485, 304, 3, 2, 2, 2, 1486, 1488, 7, 38, 2, 2, 1487, 1489, 5, 311, 155, 2, 1488, 1487, 3, 2, 2, 2, 1489, 1490, 3, 2, 2, 2, 1490, 1488, 3, 2, 2, 2, 1490, 1491, 3, 2, 2, 2, 1491, 306, 3, 2, 2, 2, 1492, 1493, 9, 5, 2, 2, 1493, 308, 3, 2, 2, 2, 1494, 1495, 9, 6, 2, 2, 1495, 310, 3, 2, 2, 2, 1496, 1497, 9, 7, 2, 2, 1497, 312, 3, 2, 2, 2, 1498, 1502, 7, 41, 2, 2, 1499, 1500, 7, 94, 2, 2, 1500, 1503, 9, 14, 2, 2, 1501, 1503, 10, 16, 2, 2, 1502, 1499, 3, 2, 2, 2, 1502, 1501, 3, 2, 2, 2, 1503, 1504, 3, 2, 2, 2, 1504, 1505, 7, 41, 2, 2, 1505, 314, 3, 2, 2, 2, 1506, 1508, 5, 317, 158, 2, 1507, 1509, 9, 19, 2, 2, 1508, 1507, 3, 2, 2, 2, 1509, 1510, 3, 2, 2, 2, 1510, 1508, 3, 2, 2, 2, 1510, 1511, 3, 2, 2, 2, 1511, 316, 3, 2, 2, 2, 1512, 1516, 7, 35, 2, 2, 1513, 1515, 5, 323, 161, 2, 1514, 1513, 3, 2, 2, 2, 1515, 1518, 3, 2, 2, 2, 1516, 1514, 3, 2, 2, 2, 1516, 1517, 3, 2, 2, 2, 1517, 318, 3, 2, 2, 2, 1518, 1516, 3, 2, 2, 2, 1519, 1523, 5, 321, 160, 2, 1520, 1522, 5, 323, 161, 2, 1521, 1520, 3, 2, 2, 2, 1522, 1525, 3, 2, 2, 2, 1523, 1521, 3, 2, 2, 2, 1523, 1524, 3, 2, 2, 2, 1524, 320, 3, 2, 2, 2, 1525, 1523, 3, 2, 2, 2, 1526, 1527, 9, 8, 2, 2, 1527, 322, 3, 2, 2, 2, 1528, 1529, 9, 9, 2, 2, 1529, 324, 3, 2, 2, 2, 1530, 1532, 9, 17, 2, 2, 1531, 1530, 3, 2, 2, 2, 1532, 1533, 3, 2, 2, 2, 1533, 1531, 3, 2, 2, 2, 1533, 1534, 3, 2, 2, 2, 1534, 1535, 3, 2, 2, 2, 1535, 1536, 8, 162, 7, 2, 1536, 326, 3, 2, 2, 2, 1537, 1538, 7, 49, 2, 2, 1538, 1539, 7, 49, 2, 2, 1539, 1543, 3, 2, 2, 2, 1540, 1542, 10, 18, 2, 2, 1541, 1540, 3, 2, 2, 2, 1542, 1545, 3, 2, 2, 2, 1543, 1541, 3, 2, 2, 2, 1543, 1544, 3, 2, 2, 2, 1544, 1546, 3, 2, 2, 2, 1545, 1543, 3, 2, 2, 2, 1546, 1547, 8, 163, 8, 2, 1547, 328, 3, 2, 2, 2, 1548, 1549, 7, 49, 2, 2, 1549, 1550, 7, 44, 2, 2, 1550, 1554, 3, 2, 2, 2, 1551, 1553, 11, 2, 2, 2, 1552, 1551, 3, 2, 2, 2, 1553, 1556, 3, 2, 2, 2, 1554, 1555, 3, 2, 2, 2, 1554, 1552, 3, 2, 2, 2, 1555, 1557, 3, 2, 2, 2, 1556, 1554, 3, 2, 2, 2, 1557, 1558, 7, 44, 2, 2, 1558, 1559, 7, 49, 2, 2, 1559, 1560, 3, 2, 2, 2, 1560, 1561, 8, 164, 8, 2, 1561, 330, 3, 2, 2, 2, 1562, 1564, 7, 62, 2, 2, 1563, 1565, 9, 20, 2, 2, 1564, 1563, 3, 2, 2, 2, 1565, 1566, 3, 2, 2, 2, 1566, 1564, 3, 2, 2, 2, 1566, 1567, 3, 2, 2, 2, 1567, 1568, 3, 2, 2, 2, 1568, 1569, 7, 64, 2, 2, 1569, 1570, 8, 165, 11, 2, 1570, 332, 3, 2, 2, 2, 1571, 1577, 7, 36, 2, 2, 1572, 1573, 7, 94, 2, 2, 1573, 1576, 7, 36, 2, 2, 1574, 1576, 10, 10, 2, 2, 1575, 1572, 3, 2, 2, 2, 1575, 1574, 3, 2, 2, 2, 1576, 1579, 3, 2, 2, 2, 1577, 1575, 3, 2, 2, 2, 1577, 1578, 3, 2, 2, 2, 1578, 1580, 3, 2, 2, 2, 1579, 1577, 3, 2, 2, 2, 1580, 1581, 7, 36, 2, 2, 1581, 1582, 8, 166, 12, 2, 1582, 334, 3, 2, 2, 2, 1583, 1585, 9, 17, 2, 2, 1584, 1583, 3, 2, 2, 2, 1585, 1586, 3, 2, 2, 2, 1586, 1584, 3, 2, 2, 2, 1586, 1587, 3, 2, 2, 2, 1587, 1588, 3, 2, 2, 2, 1588, 1589, 8, 167, 7, 2, 1589, 336, 3, 2, 2, 2, 1590, 1591, 7, 49, 2, 2, 1591, 1592, 7, 49, 2, 2, 1592, 1596, 3, 2, 2, 2, 1593, 1595, 10, 18, 2, 2, 1594, 1593, 3, 2, 2, 2, 1595, 1598, 3, 2, 2, 2, 1596, 1594, 3, 2, 2, 2, 1596, 1597, 3, 2, 2, 2, 1597, 1599, 3, 2, 2, 2, 1598, 1596, 3, 2, 2, 2, 1599, 1600, 8, 168, 8, 2, 1600, 338, 3, 2, 2, 2, 1601, 1602, 7, 49, 2, 2, 1602, 1603, 7, 44, 2, 2, 1603, 1607, 3, 2, 2, 2, 1604, 1606, 11, 2, 2, 2, 1605, 1604, 3, 2, 2, 2, 1606, 1609, 3, 2, 2, 2, 1607, 1608, 3, 2, 2, 2, 1607, 1605, 3, 2, 2, 2, 1608, 1610, 3, 2, 2, 2, 1609, 1607, 3, 2, 2, 2, 1610, 1611, 7, 44, 2, 2, 1611, 1612, 7, 49, 2, 2, 1612, 1613, 3, 2, 2, 2, 1613, 1614, 8, 169, 8, 2, 1614, 340, 3, 2, 2, 2, 68, 2, 3, 4, 446, 638, 813, 852, 863, 871, 919, 968, 973, 980, 985, 992, 997, 1004, 1011, 1016, 1023, 1028, 1033, 1040, 1046, 1048, 1053, 1060, 1065, 1077, 1090, 1092, 1097, 1101, 1103, 1106, 1114, 1117, 1124, 1134, 1145, 1381, 1425, 1430, 1436, 1443, 1448, 1455, 1461, 1468, 1473, 1479, 1484, 1490, 1502, 1510, 1516, 1523, 1533, 1543, 1554, 1566, 1575, 1577, 1586, 1596, 1607, 13, 3, 2, 2, 3, 73, 3, 3, 92, 4, 3, 93, 5, 3, 116, 6, 2, 3, 2, 2, 4, 2, 3, 142, 7, 3, 143, 8, 3, 165, 9, 3, 166, 10] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 4b038554d..83c4eb797 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -314,7 +314,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u00a1\u064a\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u00a1\u064f\b\1\b"+ "\1\b\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t"+ "\4\n\t\n\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21"+ "\t\21\4\22\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30"+ @@ -378,545 +378,548 @@ public class KickCLexer extends Lexer { "\3p\3p\3p\3p\3p\5p\u0425\np\3p\6p\u0428\np\rp\16p\u0429\3q\3q\3r\3r\3"+ "s\3s\3t\3t\7t\u0434\nt\ft\16t\u0437\13t\3t\3t\3u\3u\3v\3v\3w\3w\3w\3w"+ "\7w\u0443\nw\fw\16w\u0446\13w\3w\3w\5w\u044a\nw\3w\3w\5w\u044e\nw\5w\u0450"+ - "\nw\3w\5w\u0453\nw\3x\3x\3x\3x\5x\u0459\nx\3x\3x\3y\6y\u045e\ny\ry\16"+ - "y\u045f\3y\3y\3z\3z\3z\3z\7z\u0468\nz\fz\16z\u046b\13z\3z\3z\3{\3{\3{"+ - "\3{\7{\u0473\n{\f{\16{\u0476\13{\3{\3{\3{\3{\3{\3|\3|\3|\3|\3|\3|\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3"+ - "}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\5}\u0561\n}\3~\3~\3\177\3\177"+ - "\3\u0080\3\u0080\3\u0081\3\u0081\3\u0082\3\u0082\3\u0083\3\u0083\3\u0084"+ - "\3\u0084\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086\3\u0087\3\u0087\3\u0087"+ - "\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a\3\u008b\3\u008b\3\u008c"+ - "\3\u008c\3\u008d\3\u008d\3\u008e\3\u008e\3\u008e\3\u008f\3\u008f\3\u008f"+ - "\3\u0090\3\u0090\5\u0090\u058d\n\u0090\3\u0091\3\u0091\3\u0091\5\u0091"+ - "\u0592\n\u0091\3\u0092\3\u0092\7\u0092\u0596\n\u0092\f\u0092\16\u0092"+ - "\u0599\13\u0092\3\u0092\3\u0092\6\u0092\u059d\n\u0092\r\u0092\16\u0092"+ - "\u059e\3\u0093\7\u0093\u05a2\n\u0093\f\u0093\16\u0093\u05a5\13\u0093\3"+ - "\u0093\3\u0093\6\u0093\u05a9\n\u0093\r\u0093\16\u0093\u05aa\3\u0094\3"+ - "\u0094\7\u0094\u05af\n\u0094\f\u0094\16\u0094\u05b2\13\u0094\3\u0094\3"+ - "\u0094\6\u0094\u05b6\n\u0094\r\u0094\16\u0094\u05b7\3\u0095\3\u0095\3"+ - "\u0095\5\u0095\u05bd\n\u0095\3\u0096\3\u0096\6\u0096\u05c1\n\u0096\r\u0096"+ - "\16\u0096\u05c2\3\u0097\6\u0097\u05c6\n\u0097\r\u0097\16\u0097\u05c7\3"+ - "\u0098\3\u0098\6\u0098\u05cc\n\u0098\r\u0098\16\u0098\u05cd\3\u0099\3"+ - "\u0099\3\u009a\3\u009a\3\u009b\3\u009b\3\u009c\3\u009c\3\u009c\3\u009c"+ - "\5\u009c\u05da\n\u009c\3\u009c\3\u009c\3\u009d\3\u009d\6\u009d\u05e0\n"+ - "\u009d\r\u009d\16\u009d\u05e1\3\u009e\3\u009e\7\u009e\u05e6\n\u009e\f"+ - "\u009e\16\u009e\u05e9\13\u009e\3\u009f\3\u009f\7\u009f\u05ed\n\u009f\f"+ - "\u009f\16\u009f\u05f0\13\u009f\3\u00a0\3\u00a0\3\u00a1\3\u00a1\3\u00a2"+ - "\6\u00a2\u05f7\n\u00a2\r\u00a2\16\u00a2\u05f8\3\u00a2\3\u00a2\3\u00a3"+ - "\3\u00a3\3\u00a3\3\u00a3\7\u00a3\u0601\n\u00a3\f\u00a3\16\u00a3\u0604"+ - "\13\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a4\7\u00a4\u060c"+ - "\n\u00a4\f\u00a4\16\u00a4\u060f\13\u00a4\3\u00a4\3\u00a4\3\u00a4\3\u00a4"+ - "\3\u00a4\3\u00a5\3\u00a5\6\u00a5\u0618\n\u00a5\r\u00a5\16\u00a5\u0619"+ - "\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6\3\u00a6\7\u00a6\u0623"+ - "\n\u00a6\f\u00a6\16\u00a6\u0626\13\u00a6\3\u00a6\3\u00a6\3\u00a6\3\u00a7"+ - "\6\u00a7\u062c\n\u00a7\r\u00a7\16\u00a7\u062d\3\u00a7\3\u00a7\3\u00a8"+ - "\3\u00a8\3\u00a8\3\u00a8\7\u00a8\u0636\n\u00a8\f\u00a8\16\u00a8\u0639"+ - "\13\u00a8\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\7\u00a9\u0641"+ - "\n\u00a9\f\u00a9\16\u00a9\u0644\13\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00a9"+ - "\3\u00a9\6\u0367\u0474\u060d\u0642\2\u00aa\5\4\7\5\t\6\13\7\r\b\17\t\21"+ - "\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30"+ - "/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.["+ - "/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083"+ - "C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097"+ - "M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00ab"+ - "W\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bf"+ - "a\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3"+ - "k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3\2\u00e5\2\u00e7"+ - "\2\u00e9s\u00eb\2\u00ed\2\u00eft\u00f1u\u00f3v\u00f5w\u00f7x\u00f9y\u00fb"+ - "z\u00fd{\u00ff|\u0101}\u0103~\u0105\177\u0107\u0080\u0109\u0081\u010b"+ - "\u0082\u010d\u0083\u010f\u0084\u0111\u0085\u0113\u0086\u0115\u0087\u0117"+ - "\u0088\u0119\u0089\u011b\u008a\u011d\u008b\u011f\u008c\u0121\u008d\u0123"+ - "\u008e\u0125\u008f\u0127\u0090\u0129\u0091\u012b\u0092\u012d\u0093\u012f"+ - "\u0094\u0131\u0095\u0133\2\u0135\2\u0137\2\u0139\u0096\u013b\u0097\u013d"+ - "\u0098\u013f\u0099\u0141\2\u0143\2\u0145\u009a\u0147\u009b\u0149\u009c"+ - "\u014b\u009d\u014d\u009e\u014f\u009f\u0151\u00a0\u0153\u00a1\5\2\3\4\24"+ - "\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aa"+ - "c|\6\2\62;C\\aac|\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\3\2))\6\2"+ - "\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\7\2/;C\\^^aac|\2\u06da"+ - "\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2"+ - "\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2"+ - "\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2"+ - "\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2"+ - "\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2"+ - "\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2"+ - "\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W"+ - "\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2"+ - "\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2"+ - "\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}"+ - "\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2"+ - "\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f"+ - "\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2"+ - "\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1"+ - "\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2"+ - "\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3"+ - "\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2"+ - "\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5"+ - "\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2"+ - "\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7"+ - "\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2"+ - "\2\2\u00e1\3\2\2\2\2\u00e9\3\2\2\2\2\u00ef\3\2\2\2\2\u00f1\3\2\2\2\2\u00f3"+ - "\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2\2\3\u00f9\3\2\2\2\3\u00fb\3\2\2"+ - "\2\3\u00fd\3\2\2\2\3\u00ff\3\2\2\2\3\u0101\3\2\2\2\3\u0103\3\2\2\2\3\u0105"+ - "\3\2\2\2\3\u0107\3\2\2\2\3\u0109\3\2\2\2\3\u010b\3\2\2\2\3\u010d\3\2\2"+ - "\2\3\u010f\3\2\2\2\3\u0111\3\2\2\2\3\u0113\3\2\2\2\3\u0115\3\2\2\2\3\u0117"+ - "\3\2\2\2\3\u0119\3\2\2\2\3\u011b\3\2\2\2\3\u011d\3\2\2\2\3\u011f\3\2\2"+ - "\2\3\u0121\3\2\2\2\3\u0123\3\2\2\2\3\u0125\3\2\2\2\3\u0127\3\2\2\2\3\u0129"+ - "\3\2\2\2\3\u012b\3\2\2\2\3\u012d\3\2\2\2\3\u012f\3\2\2\2\3\u0131\3\2\2"+ - "\2\3\u0139\3\2\2\2\3\u013b\3\2\2\2\3\u013d\3\2\2\2\3\u013f\3\2\2\2\3\u0145"+ - "\3\2\2\2\3\u0147\3\2\2\2\3\u0149\3\2\2\2\4\u014b\3\2\2\2\4\u014d\3\2\2"+ - "\2\4\u014f\3\2\2\2\4\u0151\3\2\2\2\4\u0153\3\2\2\2\5\u0155\3\2\2\2\7\u0158"+ - "\3\2\2\2\t\u015a\3\2\2\2\13\u015c\3\2\2\2\r\u015e\3\2\2\2\17\u0160\3\2"+ - "\2\2\21\u0162\3\2\2\2\23\u0164\3\2\2\2\25\u0166\3\2\2\2\27\u0168\3\2\2"+ - "\2\31\u016b\3\2\2\2\33\u016d\3\2\2\2\35\u016f\3\2\2\2\37\u0172\3\2\2\2"+ - "!\u0174\3\2\2\2#\u0176\3\2\2\2%\u0178\3\2\2\2\'\u017a\3\2\2\2)\u017c\3"+ - "\2\2\2+\u017f\3\2\2\2-\u0182\3\2\2\2/\u0184\3\2\2\2\61\u0186\3\2\2\2\63"+ - "\u0188\3\2\2\2\65\u018a\3\2\2\2\67\u018d\3\2\2\29\u0190\3\2\2\2;\u0193"+ - "\3\2\2\2=\u0196\3\2\2\2?\u0198\3\2\2\2A\u019b\3\2\2\2C\u019e\3\2\2\2E"+ - "\u01a0\3\2\2\2G\u01a3\3\2\2\2I\u01a6\3\2\2\2K\u01be\3\2\2\2M\u01c0\3\2"+ - "\2\2O\u01c8\3\2\2\2Q\u01d0\3\2\2\2S\u01d3\3\2\2\2U\u01da\3\2\2\2W\u01df"+ - "\3\2\2\2Y\u01e3\3\2\2\2[\u01ec\3\2\2\2]\u01f5\3\2\2\2_\u01fe\3\2\2\2a"+ - "\u0204\3\2\2\2c\u020b\3\2\2\2e\u0212\3\2\2\2g\u0218\3\2\2\2i\u021f\3\2"+ - "\2\2k\u0228\3\2\2\2m\u022f\3\2\2\2o\u0239\3\2\2\2q\u0242\3\2\2\2s\u024c"+ - "\3\2\2\2u\u0251\3\2\2\2w\u0257\3\2\2\2y\u025d\3\2\2\2{\u0262\3\2\2\2}"+ - "\u027e\3\2\2\2\177\u0280\3\2\2\2\u0081\u028a\3\2\2\2\u0083\u028d\3\2\2"+ - "\2\u0085\u0292\3\2\2\2\u0087\u0298\3\2\2\2\u0089\u029b\3\2\2\2\u008b\u029f"+ - "\3\2\2\2\u008d\u02a6\3\2\2\2\u008f\u02ad\3\2\2\2\u0091\u02b3\3\2\2\2\u0093"+ - "\u02bc\3\2\2\2\u0095\u02c2\3\2\2\2\u0097\u02ca\3\2\2\2\u0099\u02cf\3\2"+ - "\2\2\u009b\u02d6\3\2\2\2\u009d\u02db\3\2\2\2\u009f\u02e2\3\2\2\2\u00a1"+ - "\u02e9\3\2\2\2\u00a3\u02f1\3\2\2\2\u00a5\u02f9\3\2\2\2\u00a7\u0302\3\2"+ - "\2\2\u00a9\u0307\3\2\2\2\u00ab\u0310\3\2\2\2\u00ad\u0316\3\2\2\2\u00af"+ - "\u031d\3\2\2\2\u00b1\u032d\3\2\2\2\u00b3\u0354\3\2\2\2\u00b5\u035f\3\2"+ - "\2\2\u00b7\u0361\3\2\2\2\u00b9\u036d\3\2\2\2\u00bb\u0377\3\2\2\2\u00bd"+ - "\u0382\3\2\2\2\u00bf\u038a\3\2\2\2\u00c1\u0397\3\2\2\2\u00c3\u0399\3\2"+ - "\2\2\u00c5\u03a0\3\2\2\2\u00c7\u03a7\3\2\2\2\u00c9\u03af\3\2\2\2\u00cb"+ - "\u03b3\3\2\2\2\u00cd\u03b9\3\2\2\2\u00cf\u03bf\3\2\2\2\u00d1\u03c8\3\2"+ - "\2\2\u00d3\u03cd\3\2\2\2\u00d5\u03d4\3\2\2\2\u00d7\u03e5\3\2\2\2\u00d9"+ - "\u03f3\3\2\2\2\u00db\u0404\3\2\2\2\u00dd\u0418\3\2\2\2\u00df\u041b\3\2"+ - "\2\2\u00e1\u0424\3\2\2\2\u00e3\u042b\3\2\2\2\u00e5\u042d\3\2\2\2\u00e7"+ - "\u042f\3\2\2\2\u00e9\u0431\3\2\2\2\u00eb\u043a\3\2\2\2\u00ed\u043c\3\2"+ - "\2\2\u00ef\u043e\3\2\2\2\u00f1\u0454\3\2\2\2\u00f3\u045d\3\2\2\2\u00f5"+ - "\u0463\3\2\2\2\u00f7\u046e\3\2\2\2\u00f9\u047c\3\2\2\2\u00fb\u0560\3\2"+ - "\2\2\u00fd\u0562\3\2\2\2\u00ff\u0564\3\2\2\2\u0101\u0566\3\2\2\2\u0103"+ - "\u0568\3\2\2\2\u0105\u056a\3\2\2\2\u0107\u056c\3\2\2\2\u0109\u056e\3\2"+ - "\2\2\u010b\u0570\3\2\2\2\u010d\u0572\3\2\2\2\u010f\u0575\3\2\2\2\u0111"+ - "\u0578\3\2\2\2\u0113\u057a\3\2\2\2\u0115\u057c\3\2\2\2\u0117\u057e\3\2"+ - "\2\2\u0119\u0580\3\2\2\2\u011b\u0582\3\2\2\2\u011d\u0584\3\2\2\2\u011f"+ - "\u0587\3\2\2\2\u0121\u058c\3\2\2\2\u0123\u0591\3\2\2\2\u0125\u0593\3\2"+ - "\2\2\u0127\u05a3\3\2\2\2\u0129\u05ac\3\2\2\2\u012b\u05bc\3\2\2\2\u012d"+ - "\u05be\3\2\2\2\u012f\u05c5\3\2\2\2\u0131\u05c9\3\2\2\2\u0133\u05cf\3\2"+ - "\2\2\u0135\u05d1\3\2\2\2\u0137\u05d3\3\2\2\2\u0139\u05d5\3\2\2\2\u013b"+ - "\u05dd\3\2\2\2\u013d\u05e3\3\2\2\2\u013f\u05ea\3\2\2\2\u0141\u05f1\3\2"+ - "\2\2\u0143\u05f3\3\2\2\2\u0145\u05f6\3\2\2\2\u0147\u05fc\3\2\2\2\u0149"+ - "\u0607\3\2\2\2\u014b\u0615\3\2\2\2\u014d\u061e\3\2\2\2\u014f\u062b\3\2"+ - "\2\2\u0151\u0631\3\2\2\2\u0153\u063c\3\2\2\2\u0155\u0156\7}\2\2\u0156"+ - "\u0157\b\2\2\2\u0157\6\3\2\2\2\u0158\u0159\7\177\2\2\u0159\b\3\2\2\2\u015a"+ - "\u015b\7]\2\2\u015b\n\3\2\2\2\u015c\u015d\7_\2\2\u015d\f\3\2\2\2\u015e"+ - "\u015f\7*\2\2\u015f\16\3\2\2\2\u0160\u0161\7+\2\2\u0161\20\3\2\2\2\u0162"+ - "\u0163\7=\2\2\u0163\22\3\2\2\2\u0164\u0165\7<\2\2\u0165\24\3\2\2\2\u0166"+ - "\u0167\7.\2\2\u0167\26\3\2\2\2\u0168\u0169\7\60\2\2\u0169\u016a\7\60\2"+ - "\2\u016a\30\3\2\2\2\u016b\u016c\7A\2\2\u016c\32\3\2\2\2\u016d\u016e\7"+ - "\60\2\2\u016e\34\3\2\2\2\u016f\u0170\7/\2\2\u0170\u0171\7@\2\2\u0171\36"+ - "\3\2\2\2\u0172\u0173\7-\2\2\u0173 \3\2\2\2\u0174\u0175\7/\2\2\u0175\""+ - "\3\2\2\2\u0176\u0177\7,\2\2\u0177$\3\2\2\2\u0178\u0179\7\61\2\2\u0179"+ - "&\3\2\2\2\u017a\u017b\7\'\2\2\u017b(\3\2\2\2\u017c\u017d\7-\2\2\u017d"+ - "\u017e\7-\2\2\u017e*\3\2\2\2\u017f\u0180\7/\2\2\u0180\u0181\7/\2\2\u0181"+ - ",\3\2\2\2\u0182\u0183\7(\2\2\u0183.\3\2\2\2\u0184\u0185\7\u0080\2\2\u0185"+ - "\60\3\2\2\2\u0186\u0187\7`\2\2\u0187\62\3\2\2\2\u0188\u0189\7~\2\2\u0189"+ - "\64\3\2\2\2\u018a\u018b\7>\2\2\u018b\u018c\7>\2\2\u018c\66\3\2\2\2\u018d"+ - "\u018e\7@\2\2\u018e\u018f\7@\2\2\u018f8\3\2\2\2\u0190\u0191\7?\2\2\u0191"+ - "\u0192\7?\2\2\u0192:\3\2\2\2\u0193\u0194\7#\2\2\u0194\u0195\7?\2\2\u0195"+ - "<\3\2\2\2\u0196\u0197\7>\2\2\u0197>\3\2\2\2\u0198\u0199\7>\2\2\u0199\u019a"+ - "\7?\2\2\u019a@\3\2\2\2\u019b\u019c\7@\2\2\u019c\u019d\7?\2\2\u019dB\3"+ - "\2\2\2\u019e\u019f\7@\2\2\u019fD\3\2\2\2\u01a0\u01a1\7(\2\2\u01a1\u01a2"+ - "\7(\2\2\u01a2F\3\2\2\2\u01a3\u01a4\7~\2\2\u01a4\u01a5\7~\2\2\u01a5H\3"+ - "\2\2\2\u01a6\u01a7\7?\2\2\u01a7J\3\2\2\2\u01a8\u01a9\7-\2\2\u01a9\u01bf"+ - "\7?\2\2\u01aa\u01ab\7/\2\2\u01ab\u01bf\7?\2\2\u01ac\u01ad\7,\2\2\u01ad"+ - "\u01bf\7?\2\2\u01ae\u01af\7\61\2\2\u01af\u01bf\7?\2\2\u01b0\u01b1\7\'"+ - "\2\2\u01b1\u01bf\7?\2\2\u01b2\u01b3\7>\2\2\u01b3\u01b4\7>\2\2\u01b4\u01bf"+ - "\7?\2\2\u01b5\u01b6\7@\2\2\u01b6\u01b7\7@\2\2\u01b7\u01bf\7?\2\2\u01b8"+ - "\u01b9\7(\2\2\u01b9\u01bf\7?\2\2\u01ba\u01bb\7~\2\2\u01bb\u01bf\7?\2\2"+ - "\u01bc\u01bd\7`\2\2\u01bd\u01bf\7?\2\2\u01be\u01a8\3\2\2\2\u01be\u01aa"+ - "\3\2\2\2\u01be\u01ac\3\2\2\2\u01be\u01ae\3\2\2\2\u01be\u01b0\3\2\2\2\u01be"+ - "\u01b2\3\2\2\2\u01be\u01b5\3\2\2\2\u01be\u01b8\3\2\2\2\u01be\u01ba\3\2"+ - "\2\2\u01be\u01bc\3\2\2\2\u01bfL\3\2\2\2\u01c0\u01c1\7v\2\2\u01c1\u01c2"+ - "\7{\2\2\u01c2\u01c3\7r\2\2\u01c3\u01c4\7g\2\2\u01c4\u01c5\7f\2\2\u01c5"+ - "\u01c6\7g\2\2\u01c6\u01c7\7h\2\2\u01c7N\3\2\2\2\u01c8\u01c9\7t\2\2\u01c9"+ - "\u01ca\7g\2\2\u01ca\u01cb\7u\2\2\u01cb\u01cc\7g\2\2\u01cc\u01cd\7t\2\2"+ - "\u01cd\u01ce\7x\2\2\u01ce\u01cf\7g\2\2\u01cfP\3\2\2\2\u01d0\u01d1\7r\2"+ - "\2\u01d1\u01d2\7e\2\2\u01d2R\3\2\2\2\u01d3\u01d4\7v\2\2\u01d4\u01d5\7"+ - "c\2\2\u01d5\u01d6\7t\2\2\u01d6\u01d7\7i\2\2\u01d7\u01d8\7g\2\2\u01d8\u01d9"+ - "\7v\2\2\u01d9T\3\2\2\2\u01da\u01db\7n\2\2\u01db\u01dc\7k\2\2\u01dc\u01dd"+ - "\7p\2\2\u01dd\u01de\7m\2\2\u01deV\3\2\2\2\u01df\u01e0\7e\2\2\u01e0\u01e1"+ - "\7r\2\2\u01e1\u01e2\7w\2\2\u01e2X\3\2\2\2\u01e3\u01e4\7e\2\2\u01e4\u01e5"+ - "\7q\2\2\u01e5\u01e6\7f\2\2\u01e6\u01e7\7g\2\2\u01e7\u01e8\7a\2\2\u01e8"+ - "\u01e9\7u\2\2\u01e9\u01ea\7g\2\2\u01ea\u01eb\7i\2\2\u01ebZ\3\2\2\2\u01ec"+ - "\u01ed\7f\2\2\u01ed\u01ee\7c\2\2\u01ee\u01ef\7v\2\2\u01ef\u01f0\7c\2\2"+ - "\u01f0\u01f1\7a\2\2\u01f1\u01f2\7u\2\2\u01f2\u01f3\7g\2\2\u01f3\u01f4"+ - "\7i\2\2\u01f4\\\3\2\2\2\u01f5\u01f6\7g\2\2\u01f6\u01f7\7p\2\2\u01f7\u01f8"+ - "\7e\2\2\u01f8\u01f9\7q\2\2\u01f9\u01fa\7f\2\2\u01fa\u01fb\7k\2\2\u01fb"+ - "\u01fc\7p\2\2\u01fc\u01fd\7i\2\2\u01fd^\3\2\2\2\u01fe\u01ff\7e\2\2\u01ff"+ - "\u0200\7q\2\2\u0200\u0201\7p\2\2\u0201\u0202\7u\2\2\u0202\u0203\7v\2\2"+ - "\u0203`\3\2\2\2\u0204\u0205\7g\2\2\u0205\u0206\7z\2\2\u0206\u0207\7v\2"+ - "\2\u0207\u0208\7g\2\2\u0208\u0209\7t\2\2\u0209\u020a\7p\2\2\u020ab\3\2"+ - "\2\2\u020b\u020c\7g\2\2\u020c\u020d\7z\2\2\u020d\u020e\7r\2\2\u020e\u020f"+ - "\7q\2\2\u020f\u0210\7t\2\2\u0210\u0211\7v\2\2\u0211d\3\2\2\2\u0212\u0213"+ - "\7c\2\2\u0213\u0214\7n\2\2\u0214\u0215\7k\2\2\u0215\u0216\7i\2\2\u0216"+ - "\u0217\7p\2\2\u0217f\3\2\2\2\u0218\u0219\7k\2\2\u0219\u021a\7p\2\2\u021a"+ - "\u021b\7n\2\2\u021b\u021c\7k\2\2\u021c\u021d\7p\2\2\u021d\u021e\7g\2\2"+ - "\u021eh\3\2\2\2\u021f\u0220\7x\2\2\u0220\u0221\7q\2\2\u0221\u0222\7n\2"+ - "\2\u0222\u0223\7c\2\2\u0223\u0224\7v\2\2\u0224\u0225\7k\2\2\u0225\u0226"+ - "\7n\2\2\u0226\u0227\7g\2\2\u0227j\3\2\2\2\u0228\u0229\7u\2\2\u0229\u022a"+ - "\7v\2\2\u022a\u022b\7c\2\2\u022b\u022c\7v\2\2\u022c\u022d\7k\2\2\u022d"+ - "\u022e\7e\2\2\u022el\3\2\2\2\u022f\u0230\7k\2\2\u0230\u0231\7p\2\2\u0231"+ - "\u0232\7v\2\2\u0232\u0233\7g\2\2\u0233\u0234\7t\2\2\u0234\u0235\7t\2\2"+ - "\u0235\u0236\7w\2\2\u0236\u0237\7r\2\2\u0237\u0238\7v\2\2\u0238n\3\2\2"+ - "\2\u0239\u023a\7t\2\2\u023a\u023b\7g\2\2\u023b\u023c\7i\2\2\u023c\u023d"+ - "\7k\2\2\u023d\u023e\7u\2\2\u023e\u023f\7v\2\2\u023f\u0240\7g\2\2\u0240"+ - "\u0241\7t\2\2\u0241p\3\2\2\2\u0242\u0243\7a\2\2\u0243\u0244\7a\2\2\u0244"+ - "\u0245\7c\2\2\u0245\u0246\7f\2\2\u0246\u0247\7f\2\2\u0247\u0248\7t\2\2"+ - "\u0248\u0249\7g\2\2\u0249\u024a\7u\2\2\u024a\u024b\7u\2\2\u024br\3\2\2"+ - "\2\u024c\u024d\7a\2\2\u024d\u024e\7a\2\2\u024e\u024f\7|\2\2\u024f\u0250"+ - "\7r\2\2\u0250t\3\2\2\2\u0251\u0252\7a\2\2\u0252\u0253\7a\2\2\u0253\u0254"+ - "\7o\2\2\u0254\u0255\7g\2\2\u0255\u0256\7o\2\2\u0256v\3\2\2\2\u0257\u0258"+ - "\7a\2\2\u0258\u0259\7a\2\2\u0259\u025a\7u\2\2\u025a\u025b\7u\2\2\u025b"+ - "\u025c\7c\2\2\u025cx\3\2\2\2\u025d\u025e\7a\2\2\u025e\u025f\7a\2\2\u025f"+ - "\u0260\7o\2\2\u0260\u0261\7c\2\2\u0261z\3\2\2\2\u0262\u0263\7e\2\2\u0263"+ - "\u0264\7c\2\2\u0264\u0265\7n\2\2\u0265\u0266\7n\2\2\u0266\u0267\7k\2\2"+ - "\u0267\u0268\7p\2\2\u0268\u0269\7i\2\2\u0269|\3\2\2\2\u026a\u026b\7a\2"+ - "\2\u026b\u026c\7a\2\2\u026c\u026d\7u\2\2\u026d\u026e\7v\2\2\u026e\u026f"+ - "\7c\2\2\u026f\u0270\7e\2\2\u0270\u0271\7m\2\2\u0271\u0272\7e\2\2\u0272"+ - "\u0273\7c\2\2\u0273\u0274\7n\2\2\u0274\u027f\7n\2\2\u0275\u0276\7a\2\2"+ - "\u0276\u0277\7a\2\2\u0277\u0278\7r\2\2\u0278\u0279\7j\2\2\u0279\u027a"+ - "\7k\2\2\u027a\u027b\7e\2\2\u027b\u027c\7c\2\2\u027c\u027d\7n\2\2\u027d"+ - "\u027f\7n\2\2\u027e\u026a\3\2\2\2\u027e\u0275\3\2\2\2\u027f~\3\2\2\2\u0280"+ - "\u0281\7x\2\2\u0281\u0282\7c\2\2\u0282\u0283\7t\2\2\u0283\u0284\7a\2\2"+ - "\u0284\u0285\7o\2\2\u0285\u0286\7q\2\2\u0286\u0287\7f\2\2\u0287\u0288"+ - "\7g\2\2\u0288\u0289\7n\2\2\u0289\u0080\3\2\2\2\u028a\u028b\7k\2\2\u028b"+ - "\u028c\7h\2\2\u028c\u0082\3\2\2\2\u028d\u028e\7g\2\2\u028e\u028f\7n\2"+ - "\2\u028f\u0290\7u\2\2\u0290\u0291\7g\2\2\u0291\u0084\3\2\2\2\u0292\u0293"+ - "\7y\2\2\u0293\u0294\7j\2\2\u0294\u0295\7k\2\2\u0295\u0296\7n\2\2\u0296"+ - "\u0297\7g\2\2\u0297\u0086\3\2\2\2\u0298\u0299\7f\2\2\u0299\u029a\7q\2"+ - "\2\u029a\u0088\3\2\2\2\u029b\u029c\7h\2\2\u029c\u029d\7q\2\2\u029d\u029e"+ - "\7t\2\2\u029e\u008a\3\2\2\2\u029f\u02a0\7u\2\2\u02a0\u02a1\7y\2\2\u02a1"+ - "\u02a2\7k\2\2\u02a2\u02a3\7v\2\2\u02a3\u02a4\7e\2\2\u02a4\u02a5\7j\2\2"+ - "\u02a5\u008c\3\2\2\2\u02a6\u02a7\7t\2\2\u02a7\u02a8\7g\2\2\u02a8\u02a9"+ - "\7v\2\2\u02a9\u02aa\7w\2\2\u02aa\u02ab\7t\2\2\u02ab\u02ac\7p\2\2\u02ac"+ - "\u008e\3\2\2\2\u02ad\u02ae\7d\2\2\u02ae\u02af\7t\2\2\u02af\u02b0\7g\2"+ - "\2\u02b0\u02b1\7c\2\2\u02b1\u02b2\7m\2\2\u02b2\u0090\3\2\2\2\u02b3\u02b4"+ - "\7e\2\2\u02b4\u02b5\7q\2\2\u02b5\u02b6\7p\2\2\u02b6\u02b7\7v\2\2\u02b7"+ - "\u02b8\7k\2\2\u02b8\u02b9\7p\2\2\u02b9\u02ba\7w\2\2\u02ba\u02bb\7g\2\2"+ - "\u02bb\u0092\3\2\2\2\u02bc\u02bd\7c\2\2\u02bd\u02be\7u\2\2\u02be\u02bf"+ - "\7o\2\2\u02bf\u02c0\3\2\2\2\u02c0\u02c1\bI\3\2\u02c1\u0094\3\2\2\2\u02c2"+ - "\u02c3\7f\2\2\u02c3\u02c4\7g\2\2\u02c4\u02c5\7h\2\2\u02c5\u02c6\7c\2\2"+ - "\u02c6\u02c7\7w\2\2\u02c7\u02c8\7n\2\2\u02c8\u02c9\7v\2\2\u02c9\u0096"+ - "\3\2\2\2\u02ca\u02cb\7e\2\2\u02cb\u02cc\7c\2\2\u02cc\u02cd\7u\2\2\u02cd"+ - "\u02ce\7g\2\2\u02ce\u0098\3\2\2\2\u02cf\u02d0\7u\2\2\u02d0\u02d1\7v\2"+ - "\2\u02d1\u02d2\7t\2\2\u02d2\u02d3\7w\2\2\u02d3\u02d4\7e\2\2\u02d4\u02d5"+ - "\7v\2\2\u02d5\u009a\3\2\2\2\u02d6\u02d7\7g\2\2\u02d7\u02d8\7p\2\2\u02d8"+ - "\u02d9\7w\2\2\u02d9\u02da\7o\2\2\u02da\u009c\3\2\2\2\u02db\u02dc\7u\2"+ - "\2\u02dc\u02dd\7k\2\2\u02dd\u02de\7|\2\2\u02de\u02df\7g\2\2\u02df\u02e0"+ - "\7q\2\2\u02e0\u02e1\7h\2\2\u02e1\u009e\3\2\2\2\u02e2\u02e3\7v\2\2\u02e3"+ - "\u02e4\7{\2\2\u02e4\u02e5\7r\2\2\u02e5\u02e6\7g\2\2\u02e6\u02e7\7k\2\2"+ - "\u02e7\u02e8\7f\2\2\u02e8\u00a0\3\2\2\2\u02e9\u02ea\7f\2\2\u02ea\u02eb"+ - "\7g\2\2\u02eb\u02ec\7h\2\2\u02ec\u02ed\7k\2\2\u02ed\u02ee\7p\2\2\u02ee"+ - "\u02ef\7g\2\2\u02ef\u02f0\7f\2\2\u02f0\u00a2\3\2\2\2\u02f1\u02f2\7m\2"+ - "\2\u02f2\u02f3\7k\2\2\u02f3\u02f4\7e\2\2\u02f4\u02f5\7m\2\2\u02f5\u02f6"+ - "\7c\2\2\u02f6\u02f7\7u\2\2\u02f7\u02f8\7o\2\2\u02f8\u00a4\3\2\2\2\u02f9"+ - "\u02fa\7t\2\2\u02fa\u02fb\7g\2\2\u02fb\u02fc\7u\2\2\u02fc\u02fd\7q\2\2"+ - "\u02fd\u02fe\7w\2\2\u02fe\u02ff\7t\2\2\u02ff\u0300\7e\2\2\u0300\u0301"+ - "\7g\2\2\u0301\u00a6\3\2\2\2\u0302\u0303\7w\2\2\u0303\u0304\7u\2\2\u0304"+ - "\u0305\7g\2\2\u0305\u0306\7u\2\2\u0306\u00a8\3\2\2\2\u0307\u0308\7e\2"+ - "\2\u0308\u0309\7n\2\2\u0309\u030a\7q\2\2\u030a\u030b\7d\2\2\u030b\u030c"+ - "\7d\2\2\u030c\u030d\7g\2\2\u030d\u030e\7t\2\2\u030e\u030f\7u\2\2\u030f"+ - "\u00aa\3\2\2\2\u0310\u0311\7d\2\2\u0311\u0312\7{\2\2\u0312\u0313\7v\2"+ - "\2\u0313\u0314\7g\2\2\u0314\u0315\7u\2\2\u0315\u00ac\3\2\2\2\u0316\u0317"+ - "\7e\2\2\u0317\u0318\7{\2\2\u0318\u0319\7e\2\2\u0319\u031a\7n\2\2\u031a"+ - "\u031b\7g\2\2\u031b\u031c\7u\2\2\u031c\u00ae\3\2\2\2\u031d\u031e\7#\2"+ - "\2\u031e\u00b0\3\2\2\2\u031f\u0320\7u\2\2\u0320\u0321\7k\2\2\u0321\u0322"+ - "\7i\2\2\u0322\u0323\7p\2\2\u0323\u0324\7g\2\2\u0324\u032e\7f\2\2\u0325"+ - "\u0326\7w\2\2\u0326\u0327\7p\2\2\u0327\u0328\7u\2\2\u0328\u0329\7k\2\2"+ - "\u0329\u032a\7i\2\2\u032a\u032b\7p\2\2\u032b\u032c\7g\2\2\u032c\u032e"+ - "\7f\2\2\u032d\u031f\3\2\2\2\u032d\u0325\3\2\2\2\u032e\u00b2\3\2\2\2\u032f"+ - "\u0330\7d\2\2\u0330\u0331\7{\2\2\u0331\u0332\7v\2\2\u0332\u0355\7g\2\2"+ - "\u0333\u0334\7y\2\2\u0334\u0335\7q\2\2\u0335\u0336\7t\2\2\u0336\u0355"+ - "\7f\2\2\u0337\u0338\7f\2\2\u0338\u0339\7y\2\2\u0339\u033a\7q\2\2\u033a"+ - "\u033b\7t\2\2\u033b\u0355\7f\2\2\u033c\u033d\7d\2\2\u033d\u033e\7q\2\2"+ - "\u033e\u033f\7q\2\2\u033f\u0355\7n\2\2\u0340\u0341\7e\2\2\u0341\u0342"+ - "\7j\2\2\u0342\u0343\7c\2\2\u0343\u0355\7t\2\2\u0344\u0345\7u\2\2\u0345"+ - "\u0346\7j\2\2\u0346\u0347\7q\2\2\u0347\u0348\7t\2\2\u0348\u0355\7v\2\2"+ - "\u0349\u034a\7k\2\2\u034a\u034b\7p\2\2\u034b\u0355\7v\2\2\u034c\u034d"+ - "\7n\2\2\u034d\u034e\7q\2\2\u034e\u034f\7p\2\2\u034f\u0355\7i\2\2\u0350"+ - "\u0351\7x\2\2\u0351\u0352\7q\2\2\u0352\u0353\7k\2\2\u0353\u0355\7f\2\2"+ - "\u0354\u032f\3\2\2\2\u0354\u0333\3\2\2\2\u0354\u0337\3\2\2\2\u0354\u033c"+ - "\3\2\2\2\u0354\u0340\3\2\2\2\u0354\u0344\3\2\2\2\u0354\u0349\3\2\2\2\u0354"+ - "\u034c\3\2\2\2\u0354\u0350\3\2\2\2\u0355\u00b4\3\2\2\2\u0356\u0357\7v"+ - "\2\2\u0357\u0358\7t\2\2\u0358\u0359\7w\2\2\u0359\u0360\7g\2\2\u035a\u035b"+ - "\7h\2\2\u035b\u035c\7c\2\2\u035c\u035d\7n\2\2\u035d\u035e\7u\2\2\u035e"+ - "\u0360\7g\2\2\u035f\u0356\3\2\2\2\u035f\u035a\3\2\2\2\u0360\u00b6\3\2"+ - "\2\2\u0361\u0362\7}\2\2\u0362\u0363\7}\2\2\u0363\u0367\3\2\2\2\u0364\u0366"+ - "\13\2\2\2\u0365\u0364\3\2\2\2\u0366\u0369\3\2\2\2\u0367\u0368\3\2\2\2"+ - "\u0367\u0365\3\2\2\2\u0368\u036a\3\2\2\2\u0369\u0367\3\2\2\2\u036a\u036b"+ - "\7\177\2\2\u036b\u036c\7\177\2\2\u036c\u00b8\3\2\2\2\u036d\u036e\7%\2"+ - "\2\u036e\u036f\7k\2\2\u036f\u0370\7o\2\2\u0370\u0371\7r\2\2\u0371\u0372"+ - "\7q\2\2\u0372\u0373\7t\2\2\u0373\u0374\7v\2\2\u0374\u0375\3\2\2\2\u0375"+ - "\u0376\b\\\4\2\u0376\u00ba\3\2\2\2\u0377\u0378\7%\2\2\u0378\u0379\7k\2"+ - "\2\u0379\u037a\7p\2\2\u037a\u037b\7e\2\2\u037b\u037c\7n\2\2\u037c\u037d"+ - "\7w\2\2\u037d\u037e\7f\2\2\u037e\u037f\7g\2\2\u037f\u0380\3\2\2\2\u0380"+ - "\u0381\b]\5\2\u0381\u00bc\3\2\2\2\u0382\u0383\7%\2\2\u0383\u0384\7r\2"+ - "\2\u0384\u0385\7t\2\2\u0385\u0386\7c\2\2\u0386\u0387\7i\2\2\u0387\u0388"+ - "\7o\2\2\u0388\u0389\7c\2\2\u0389\u00be\3\2\2\2\u038a\u038b\7%\2\2\u038b"+ - "\u038c\7f\2\2\u038c\u038d\7g\2\2\u038d\u038e\7h\2\2\u038e\u038f\7k\2\2"+ - "\u038f\u0390\7p\2\2\u0390\u0391\7g\2\2\u0391\u00c0\3\2\2\2\u0392\u0393"+ - "\7^\2\2\u0393\u0398\7\f\2\2\u0394\u0395\7^\2\2\u0395\u0396\7\17\2\2\u0396"+ - "\u0398\7\f\2\2\u0397\u0392\3\2\2\2\u0397\u0394\3\2\2\2\u0398\u00c2\3\2"+ - "\2\2\u0399\u039a\7%\2\2\u039a\u039b\7w\2\2\u039b\u039c\7p\2\2\u039c\u039d"+ - "\7f\2\2\u039d\u039e\7g\2\2\u039e\u039f\7h\2\2\u039f\u00c4\3\2\2\2\u03a0"+ - "\u03a1\7%\2\2\u03a1\u03a2\7k\2\2\u03a2\u03a3\7h\2\2\u03a3\u03a4\7f\2\2"+ - "\u03a4\u03a5\7g\2\2\u03a5\u03a6\7h\2\2\u03a6\u00c6\3\2\2\2\u03a7\u03a8"+ - "\7%\2\2\u03a8\u03a9\7k\2\2\u03a9\u03aa\7h\2\2\u03aa\u03ab\7p\2\2\u03ab"+ - "\u03ac\7f\2\2\u03ac\u03ad\7g\2\2\u03ad\u03ae\7h\2\2\u03ae\u00c8\3\2\2"+ - "\2\u03af\u03b0\7%\2\2\u03b0\u03b1\7k\2\2\u03b1\u03b2\7h\2\2\u03b2\u00ca"+ - "\3\2\2\2\u03b3\u03b4\7%\2\2\u03b4\u03b5\7g\2\2\u03b5\u03b6\7n\2\2\u03b6"+ - "\u03b7\7k\2\2\u03b7\u03b8\7h\2\2\u03b8\u00cc\3\2\2\2\u03b9\u03ba\7%\2"+ - "\2\u03ba\u03bb\7g\2\2\u03bb\u03bc\7n\2\2\u03bc\u03bd\7u\2\2\u03bd\u03be"+ - "\7g\2\2\u03be\u00ce\3\2\2\2\u03bf\u03c0\7%\2\2\u03c0\u03c1\7g\2\2\u03c1"+ - "\u03c2\7p\2\2\u03c2\u03c3\7f\2\2\u03c3\u03c4\7k\2\2\u03c4\u03c5\7h\2\2"+ - "\u03c5\u00d0\3\2\2\2\u03c6\u03c9\5\u00d3i\2\u03c7\u03c9\5\u00dbm\2\u03c8"+ - "\u03c6\3\2\2\2\u03c8\u03c7\3\2\2\2\u03c9\u00d2\3\2\2\2\u03ca\u03ce\5\u00d5"+ - "j\2\u03cb\u03ce\5\u00d7k\2\u03cc\u03ce\5\u00d9l\2\u03cd\u03ca\3\2\2\2"+ - "\u03cd\u03cb\3\2\2\2\u03cd\u03cc\3\2\2\2\u03ce\u00d4\3\2\2\2\u03cf\u03d5"+ - "\7\'\2\2\u03d0\u03d1\7\62\2\2\u03d1\u03d5\7d\2\2\u03d2\u03d3\7\62\2\2"+ - "\u03d3\u03d5\7D\2\2\u03d4\u03cf\3\2\2\2\u03d4\u03d0\3\2\2\2\u03d4\u03d2"+ - "\3\2\2\2\u03d5\u03d9\3\2\2\2\u03d6\u03d8\5\u00e3q\2\u03d7\u03d6\3\2\2"+ - "\2\u03d8\u03db\3\2\2\2\u03d9\u03d7\3\2\2\2\u03d9\u03da\3\2\2\2\u03da\u03dc"+ - "\3\2\2\2\u03db\u03d9\3\2\2\2\u03dc\u03de\7\60\2\2\u03dd\u03df\5\u00e3"+ - "q\2\u03de\u03dd\3\2\2\2\u03df\u03e0\3\2\2\2\u03e0\u03de\3\2\2\2\u03e0"+ - "\u03e1\3\2\2\2\u03e1\u00d6\3\2\2\2\u03e2\u03e4\5\u00e5r\2\u03e3\u03e2"+ - "\3\2\2\2\u03e4\u03e7\3\2\2\2\u03e5\u03e3\3\2\2\2\u03e5\u03e6\3\2\2\2\u03e6"+ - "\u03e8\3\2\2\2\u03e7\u03e5\3\2\2\2\u03e8\u03ea\7\60\2\2\u03e9\u03eb\5"+ - "\u00e5r\2\u03ea\u03e9\3\2\2\2\u03eb\u03ec\3\2\2\2\u03ec\u03ea\3\2\2\2"+ - "\u03ec\u03ed\3\2\2\2\u03ed\u00d8\3\2\2\2\u03ee\u03f4\7&\2\2\u03ef\u03f0"+ - "\7\62\2\2\u03f0\u03f4\7z\2\2\u03f1\u03f2\7\62\2\2\u03f2\u03f4\7Z\2\2\u03f3"+ - "\u03ee\3\2\2\2\u03f3\u03ef\3\2\2\2\u03f3\u03f1\3\2\2\2\u03f4\u03f8\3\2"+ - "\2\2\u03f5\u03f7\5\u00e7s\2\u03f6\u03f5\3\2\2\2\u03f7\u03fa\3\2\2\2\u03f8"+ - "\u03f6\3\2\2\2\u03f8\u03f9\3\2\2\2\u03f9\u03fb\3\2\2\2\u03fa\u03f8\3\2"+ - "\2\2\u03fb\u03fd\7\60\2\2\u03fc\u03fe\5\u00e7s\2\u03fd\u03fc\3\2\2\2\u03fe"+ - "\u03ff\3\2\2\2\u03ff\u03fd\3\2\2\2\u03ff\u0400\3\2\2\2\u0400\u00da\3\2"+ - "\2\2\u0401\u0405\5\u00dfo\2\u0402\u0405\5\u00e1p\2\u0403\u0405\5\u00dd"+ - "n\2\u0404\u0401\3\2\2\2\u0404\u0402\3\2\2\2\u0404\u0403\3\2\2\2\u0405"+ - "\u0409\3\2\2\2\u0406\u0407\t\2\2\2\u0407\u040a\t\3\2\2\u0408\u040a\7n"+ - "\2\2\u0409\u0406\3\2\2\2\u0409\u0408\3\2\2\2\u0409\u040a\3\2\2\2\u040a"+ - "\u00dc\3\2\2\2\u040b\u040c\7\62\2\2\u040c\u040e\t\4\2\2\u040d\u040f\5"+ - "\u00e3q\2\u040e\u040d\3\2\2\2\u040f\u0410\3\2\2\2\u0410\u040e\3\2\2\2"+ - "\u0410\u0411\3\2\2\2\u0411\u0419\3\2\2\2\u0412\u0414\7\'\2\2\u0413\u0415"+ - "\5\u00e3q\2\u0414\u0413\3\2\2\2\u0415\u0416\3\2\2\2\u0416\u0414\3\2\2"+ - "\2\u0416\u0417\3\2\2\2\u0417\u0419\3\2\2\2\u0418\u040b\3\2\2\2\u0418\u0412"+ - "\3\2\2\2\u0419\u00de\3\2\2\2\u041a\u041c\5\u00e5r\2\u041b\u041a\3\2\2"+ - "\2\u041c\u041d\3\2\2\2\u041d\u041b\3\2\2\2\u041d\u041e\3\2\2\2\u041e\u00e0"+ - "\3\2\2\2\u041f\u0425\7&\2\2\u0420\u0421\7\62\2\2\u0421\u0425\7z\2\2\u0422"+ - "\u0423\7\62\2\2\u0423\u0425\7Z\2\2\u0424\u041f\3\2\2\2\u0424\u0420\3\2"+ - "\2\2\u0424\u0422\3\2\2\2\u0425\u0427\3\2\2\2\u0426\u0428\5\u00e7s\2\u0427"+ - "\u0426\3\2\2\2\u0428\u0429\3\2\2\2\u0429\u0427\3\2\2\2\u0429\u042a\3\2"+ - "\2\2\u042a\u00e2\3\2\2\2\u042b\u042c\t\5\2\2\u042c\u00e4\3\2\2\2\u042d"+ - "\u042e\t\6\2\2\u042e\u00e6\3\2\2\2\u042f\u0430\t\7\2\2\u0430\u00e8\3\2"+ - "\2\2\u0431\u0435\5\u00ebu\2\u0432\u0434\5\u00edv\2\u0433\u0432\3\2\2\2"+ - "\u0434\u0437\3\2\2\2\u0435\u0433\3\2\2\2\u0435\u0436\3\2\2\2\u0436\u0438"+ - "\3\2\2\2\u0437\u0435\3\2\2\2\u0438\u0439\bt\6\2\u0439\u00ea\3\2\2\2\u043a"+ - "\u043b\t\b\2\2\u043b\u00ec\3\2\2\2\u043c\u043d\t\t\2\2\u043d\u00ee\3\2"+ - "\2\2\u043e\u0444\7$\2\2\u043f\u0440\7^\2\2\u0440\u0443\7$\2\2\u0441\u0443"+ - "\n\n\2\2\u0442\u043f\3\2\2\2\u0442\u0441\3\2\2\2\u0443\u0446\3\2\2\2\u0444"+ - "\u0442\3\2\2\2\u0444\u0445\3\2\2\2\u0445\u0447\3\2\2\2\u0446\u0444\3\2"+ - "\2\2\u0447\u0449\7$\2\2\u0448\u044a\t\13\2\2\u0449\u0448\3\2\2\2\u0449"+ - "\u044a\3\2\2\2\u044a\u044f\3\2\2\2\u044b\u044d\t\f\2\2\u044c\u044e\t\r"+ - "\2\2\u044d\u044c\3\2\2\2\u044d\u044e\3\2\2\2\u044e\u0450\3\2\2\2\u044f"+ - "\u044b\3\2\2\2\u044f\u0450\3\2\2\2\u0450\u0452\3\2\2\2\u0451\u0453\t\13"+ - "\2\2\u0452\u0451\3\2\2\2\u0452\u0453\3\2\2\2\u0453\u00f0\3\2\2\2\u0454"+ - "\u0458\7)\2\2\u0455\u0456\7^\2\2\u0456\u0459\t\16\2\2\u0457\u0459\n\17"+ - "\2\2\u0458\u0455\3\2\2\2\u0458\u0457\3\2\2\2\u0459\u045a\3\2\2\2\u045a"+ - "\u045b\7)\2\2\u045b\u00f2\3\2\2\2\u045c\u045e\t\20\2\2\u045d\u045c\3\2"+ - "\2\2\u045e\u045f\3\2\2\2\u045f\u045d\3\2\2\2\u045f\u0460\3\2\2\2\u0460"+ - "\u0461\3\2\2\2\u0461\u0462\by\7\2\u0462\u00f4\3\2\2\2\u0463\u0464\7\61"+ - "\2\2\u0464\u0465\7\61\2\2\u0465\u0469\3\2\2\2\u0466\u0468\n\21\2\2\u0467"+ - "\u0466\3\2\2\2\u0468\u046b\3\2\2\2\u0469\u0467\3\2\2\2\u0469\u046a\3\2"+ - "\2\2\u046a\u046c\3\2\2\2\u046b\u0469\3\2\2\2\u046c\u046d\bz\b\2\u046d"+ - "\u00f6\3\2\2\2\u046e\u046f\7\61\2\2\u046f\u0470\7,\2\2\u0470\u0474\3\2"+ - "\2\2\u0471\u0473\13\2\2\2\u0472\u0471\3\2\2\2\u0473\u0476\3\2\2\2\u0474"+ - "\u0475\3\2\2\2\u0474\u0472\3\2\2\2\u0475\u0477\3\2\2\2\u0476\u0474\3\2"+ - "\2\2\u0477\u0478\7,\2\2\u0478\u0479\7\61\2\2\u0479\u047a\3\2\2\2\u047a"+ - "\u047b\b{\b\2\u047b\u00f8\3\2\2\2\u047c\u047d\7\60\2\2\u047d\u047e\7d"+ - "\2\2\u047e\u047f\7{\2\2\u047f\u0480\7v\2\2\u0480\u0481\7g\2\2\u0481\u00fa"+ - "\3\2\2\2\u0482\u0483\7d\2\2\u0483\u0484\7t\2\2\u0484\u0561\7m\2\2\u0485"+ - "\u0486\7q\2\2\u0486\u0487\7t\2\2\u0487\u0561\7c\2\2\u0488\u0489\7m\2\2"+ - "\u0489\u048a\7k\2\2\u048a\u0561\7n\2\2\u048b\u048c\7u\2\2\u048c\u048d"+ - "\7n\2\2\u048d\u0561\7q\2\2\u048e\u048f\7p\2\2\u048f\u0490\7q\2\2\u0490"+ - "\u0561\7r\2\2\u0491\u0492\7c\2\2\u0492\u0493\7u\2\2\u0493\u0561\7n\2\2"+ - "\u0494\u0495\7r\2\2\u0495\u0496\7j\2\2\u0496\u0561\7r\2\2\u0497\u0498"+ - "\7c\2\2\u0498\u0499\7p\2\2\u0499\u0561\7e\2\2\u049a\u049b\7d\2\2\u049b"+ - "\u049c\7r\2\2\u049c\u0561\7n\2\2\u049d\u049e\7e\2\2\u049e\u049f\7n\2\2"+ - "\u049f\u0561\7e\2\2\u04a0\u04a1\7l\2\2\u04a1\u04a2\7u\2\2\u04a2\u0561"+ - "\7t\2\2\u04a3\u04a4\7c\2\2\u04a4\u04a5\7p\2\2\u04a5\u0561\7f\2\2\u04a6"+ - "\u04a7\7t\2\2\u04a7\u04a8\7n\2\2\u04a8\u0561\7c\2\2\u04a9\u04aa\7d\2\2"+ - "\u04aa\u04ab\7k\2\2\u04ab\u0561\7v\2\2\u04ac\u04ad\7t\2\2\u04ad\u04ae"+ - "\7q\2\2\u04ae\u0561\7n\2\2\u04af\u04b0\7r\2\2\u04b0\u04b1\7n\2\2\u04b1"+ - "\u0561\7c\2\2\u04b2\u04b3\7r\2\2\u04b3\u04b4\7n\2\2\u04b4\u0561\7r\2\2"+ - "\u04b5\u04b6\7d\2\2\u04b6\u04b7\7o\2\2\u04b7\u0561\7k\2\2\u04b8\u04b9"+ - "\7u\2\2\u04b9\u04ba\7g\2\2\u04ba\u0561\7e\2\2\u04bb\u04bc\7t\2\2\u04bc"+ - "\u04bd\7v\2\2\u04bd\u0561\7k\2\2\u04be\u04bf\7g\2\2\u04bf\u04c0\7q\2\2"+ - "\u04c0\u0561\7t\2\2\u04c1\u04c2\7u\2\2\u04c2\u04c3\7t\2\2\u04c3\u0561"+ - "\7g\2\2\u04c4\u04c5\7n\2\2\u04c5\u04c6\7u\2\2\u04c6\u0561\7t\2\2\u04c7"+ - "\u04c8\7r\2\2\u04c8\u04c9\7j\2\2\u04c9\u0561\7c\2\2\u04ca\u04cb\7c\2\2"+ - "\u04cb\u04cc\7n\2\2\u04cc\u0561\7t\2\2\u04cd\u04ce\7l\2\2\u04ce\u04cf"+ - "\7o\2\2\u04cf\u0561\7r\2\2\u04d0\u04d1\7d\2\2\u04d1\u04d2\7x\2\2\u04d2"+ - "\u0561\7e\2\2\u04d3\u04d4\7e\2\2\u04d4\u04d5\7n\2\2\u04d5\u0561\7k\2\2"+ - "\u04d6\u04d7\7t\2\2\u04d7\u04d8\7v\2\2\u04d8\u0561\7u\2\2\u04d9\u04da"+ - "\7c\2\2\u04da\u04db\7f\2\2\u04db\u0561\7e\2\2\u04dc\u04dd\7t\2\2\u04dd"+ - "\u04de\7t\2\2\u04de\u0561\7c\2\2\u04df\u04e0\7d\2\2\u04e0\u04e1\7x\2\2"+ - "\u04e1\u0561\7u\2\2\u04e2\u04e3\7u\2\2\u04e3\u04e4\7g\2\2\u04e4\u0561"+ - "\7k\2\2\u04e5\u04e6\7u\2\2\u04e6\u04e7\7c\2\2\u04e7\u0561\7z\2\2\u04e8"+ - "\u04e9\7u\2\2\u04e9\u04ea\7v\2\2\u04ea\u0561\7{\2\2\u04eb\u04ec\7u\2\2"+ - "\u04ec\u04ed\7v\2\2\u04ed\u0561\7c\2\2\u04ee\u04ef\7u\2\2\u04ef\u04f0"+ - "\7v\2\2\u04f0\u0561\7z\2\2\u04f1\u04f2\7f\2\2\u04f2\u04f3\7g\2\2\u04f3"+ - "\u0561\7{\2\2\u04f4\u04f5\7v\2\2\u04f5\u04f6\7z\2\2\u04f6\u0561\7c\2\2"+ - "\u04f7\u04f8\7z\2\2\u04f8\u04f9\7c\2\2\u04f9\u0561\7c\2\2\u04fa\u04fb"+ - "\7d\2\2\u04fb\u04fc\7e\2\2\u04fc\u0561\7e\2\2\u04fd\u04fe\7c\2\2\u04fe"+ - "\u04ff\7j\2\2\u04ff\u0561\7z\2\2\u0500\u0501\7v\2\2\u0501\u0502\7{\2\2"+ - "\u0502\u0561\7c\2\2\u0503\u0504\7v\2\2\u0504\u0505\7z\2\2\u0505\u0561"+ - "\7u\2\2\u0506\u0507\7v\2\2\u0507\u0508\7c\2\2\u0508\u0561\7u\2\2\u0509"+ - "\u050a\7u\2\2\u050a\u050b\7j\2\2\u050b\u0561\7{\2\2\u050c\u050d\7u\2\2"+ - "\u050d\u050e\7j\2\2\u050e\u0561\7z\2\2\u050f\u0510\7n\2\2\u0510\u0511"+ - "\7f\2\2\u0511\u0561\7{\2\2\u0512\u0513\7n\2\2\u0513\u0514\7f\2\2\u0514"+ - "\u0561\7c\2\2\u0515\u0516\7n\2\2\u0516\u0517\7f\2\2\u0517\u0561\7z\2\2"+ - "\u0518\u0519\7n\2\2\u0519\u051a\7c\2\2\u051a\u0561\7z\2\2\u051b\u051c"+ - "\7v\2\2\u051c\u051d\7c\2\2\u051d\u0561\7{\2\2\u051e\u051f\7v\2\2\u051f"+ - "\u0520\7c\2\2\u0520\u0561\7z\2\2\u0521\u0522\7d\2\2\u0522\u0523\7e\2\2"+ - "\u0523\u0561\7u\2\2\u0524\u0525\7e\2\2\u0525\u0526\7n\2\2\u0526\u0561"+ - "\7x\2\2\u0527\u0528\7v\2\2\u0528\u0529\7u\2\2\u0529\u0561\7z\2\2\u052a"+ - "\u052b\7n\2\2\u052b\u052c\7c\2\2\u052c\u0561\7u\2\2\u052d\u052e\7e\2\2"+ - "\u052e\u052f\7r\2\2\u052f\u0561\7{\2\2\u0530\u0531\7e\2\2\u0531\u0532"+ - "\7o\2\2\u0532\u0561\7r\2\2\u0533\u0534\7e\2\2\u0534\u0535\7r\2\2\u0535"+ - "\u0561\7z\2\2\u0536\u0537\7f\2\2\u0537\u0538\7e\2\2\u0538\u0561\7r\2\2"+ - "\u0539\u053a\7f\2\2\u053a\u053b\7g\2\2\u053b\u0561\7e\2\2\u053c\u053d"+ - "\7k\2\2\u053d\u053e\7p\2\2\u053e\u0561\7e\2\2\u053f\u0540\7c\2\2\u0540"+ - "\u0541\7z\2\2\u0541\u0561\7u\2\2\u0542\u0543\7d\2\2\u0543\u0544\7p\2\2"+ - "\u0544\u0561\7g\2\2\u0545\u0546\7e\2\2\u0546\u0547\7n\2\2\u0547\u0561"+ - "\7f\2\2\u0548\u0549\7u\2\2\u0549\u054a\7d\2\2\u054a\u0561\7e\2\2\u054b"+ - "\u054c\7k\2\2\u054c\u054d\7u\2\2\u054d\u0561\7e\2\2\u054e\u054f\7k\2\2"+ - "\u054f\u0550\7p\2\2\u0550\u0561\7z\2\2\u0551\u0552\7d\2\2\u0552\u0553"+ - "\7g\2\2\u0553\u0561\7s\2\2\u0554\u0555\7u\2\2\u0555\u0556\7g\2\2\u0556"+ - "\u0561\7f\2\2\u0557\u0558\7f\2\2\u0558\u0559\7g\2\2\u0559\u0561\7z\2\2"+ - "\u055a\u055b\7k\2\2\u055b\u055c\7p\2\2\u055c\u0561\7{\2\2\u055d\u055e"+ - "\7t\2\2\u055e\u055f\7q\2\2\u055f\u0561\7t\2\2\u0560\u0482\3\2\2\2\u0560"+ - "\u0485\3\2\2\2\u0560\u0488\3\2\2\2\u0560\u048b\3\2\2\2\u0560\u048e\3\2"+ - "\2\2\u0560\u0491\3\2\2\2\u0560\u0494\3\2\2\2\u0560\u0497\3\2\2\2\u0560"+ - "\u049a\3\2\2\2\u0560\u049d\3\2\2\2\u0560\u04a0\3\2\2\2\u0560\u04a3\3\2"+ - "\2\2\u0560\u04a6\3\2\2\2\u0560\u04a9\3\2\2\2\u0560\u04ac\3\2\2\2\u0560"+ - "\u04af\3\2\2\2\u0560\u04b2\3\2\2\2\u0560\u04b5\3\2\2\2\u0560\u04b8\3\2"+ - "\2\2\u0560\u04bb\3\2\2\2\u0560\u04be\3\2\2\2\u0560\u04c1\3\2\2\2\u0560"+ - "\u04c4\3\2\2\2\u0560\u04c7\3\2\2\2\u0560\u04ca\3\2\2\2\u0560\u04cd\3\2"+ - "\2\2\u0560\u04d0\3\2\2\2\u0560\u04d3\3\2\2\2\u0560\u04d6\3\2\2\2\u0560"+ - "\u04d9\3\2\2\2\u0560\u04dc\3\2\2\2\u0560\u04df\3\2\2\2\u0560\u04e2\3\2"+ - "\2\2\u0560\u04e5\3\2\2\2\u0560\u04e8\3\2\2\2\u0560\u04eb\3\2\2\2\u0560"+ - "\u04ee\3\2\2\2\u0560\u04f1\3\2\2\2\u0560\u04f4\3\2\2\2\u0560\u04f7\3\2"+ - "\2\2\u0560\u04fa\3\2\2\2\u0560\u04fd\3\2\2\2\u0560\u0500\3\2\2\2\u0560"+ - "\u0503\3\2\2\2\u0560\u0506\3\2\2\2\u0560\u0509\3\2\2\2\u0560\u050c\3\2"+ - "\2\2\u0560\u050f\3\2\2\2\u0560\u0512\3\2\2\2\u0560\u0515\3\2\2\2\u0560"+ - "\u0518\3\2\2\2\u0560\u051b\3\2\2\2\u0560\u051e\3\2\2\2\u0560\u0521\3\2"+ - "\2\2\u0560\u0524\3\2\2\2\u0560\u0527\3\2\2\2\u0560\u052a\3\2\2\2\u0560"+ - "\u052d\3\2\2\2\u0560\u0530\3\2\2\2\u0560\u0533\3\2\2\2\u0560\u0536\3\2"+ - "\2\2\u0560\u0539\3\2\2\2\u0560\u053c\3\2\2\2\u0560\u053f\3\2\2\2\u0560"+ - "\u0542\3\2\2\2\u0560\u0545\3\2\2\2\u0560\u0548\3\2\2\2\u0560\u054b\3\2"+ - "\2\2\u0560\u054e\3\2\2\2\u0560\u0551\3\2\2\2\u0560\u0554\3\2\2\2\u0560"+ - "\u0557\3\2\2\2\u0560\u055a\3\2\2\2\u0560\u055d\3\2\2\2\u0561\u00fc\3\2"+ - "\2\2\u0562\u0563\7%\2\2\u0563\u00fe\3\2\2\2\u0564\u0565\7<\2\2\u0565\u0100"+ - "\3\2\2\2\u0566\u0567\7.\2\2\u0567\u0102\3\2\2\2\u0568\u0569\7*\2\2\u0569"+ - "\u0104\3\2\2\2\u056a\u056b\7+\2\2\u056b\u0106\3\2\2\2\u056c\u056d\7]\2"+ - "\2\u056d\u0108\3\2\2\2\u056e\u056f\7_\2\2\u056f\u010a\3\2\2\2\u0570\u0571"+ - "\7\60\2\2\u0571\u010c\3\2\2\2\u0572\u0573\7>\2\2\u0573\u0574\7>\2\2\u0574"+ - "\u010e\3\2\2\2\u0575\u0576\7@\2\2\u0576\u0577\7@\2\2\u0577\u0110\3\2\2"+ - "\2\u0578\u0579\7-\2\2\u0579\u0112\3\2\2\2\u057a\u057b\7/\2\2\u057b\u0114"+ - "\3\2\2\2\u057c\u057d\7>\2\2\u057d\u0116\3\2\2\2\u057e\u057f\7@\2\2\u057f"+ - "\u0118\3\2\2\2\u0580\u0581\7,\2\2\u0581\u011a\3\2\2\2\u0582\u0583\7\61"+ - "\2\2\u0583\u011c\3\2\2\2\u0584\u0585\7}\2\2\u0585\u0586\b\u008e\t\2\u0586"+ - "\u011e\3\2\2\2\u0587\u0588\7\177\2\2\u0588\u0589\b\u008f\n\2\u0589\u0120"+ - "\3\2\2\2\u058a\u058d\5\u0123\u0091\2\u058b\u058d\5\u012b\u0095\2\u058c"+ - "\u058a\3\2\2\2\u058c\u058b\3\2\2\2\u058d\u0122\3\2\2\2\u058e\u0592\5\u0125"+ - "\u0092\2\u058f\u0592\5\u0127\u0093\2\u0590\u0592\5\u0129\u0094\2\u0591"+ - "\u058e\3\2\2\2\u0591\u058f\3\2\2\2\u0591\u0590\3\2\2\2\u0592\u0124\3\2"+ - "\2\2\u0593\u0597\7\'\2\2\u0594\u0596\5\u0133\u0099\2\u0595\u0594\3\2\2"+ - "\2\u0596\u0599\3\2\2\2\u0597\u0595\3\2\2\2\u0597\u0598\3\2\2\2\u0598\u059a"+ - "\3\2\2\2\u0599\u0597\3\2\2\2\u059a\u059c\7\60\2\2\u059b\u059d\5\u0133"+ - "\u0099\2\u059c\u059b\3\2\2\2\u059d\u059e\3\2\2\2\u059e\u059c\3\2\2\2\u059e"+ - "\u059f\3\2\2\2\u059f\u0126\3\2\2\2\u05a0\u05a2\5\u0135\u009a\2\u05a1\u05a0"+ - "\3\2\2\2\u05a2\u05a5\3\2\2\2\u05a3\u05a1\3\2\2\2\u05a3\u05a4\3\2\2\2\u05a4"+ - "\u05a6\3\2\2\2\u05a5\u05a3\3\2\2\2\u05a6\u05a8\7\60\2\2\u05a7\u05a9\5"+ - "\u0135\u009a\2\u05a8\u05a7\3\2\2\2\u05a9\u05aa\3\2\2\2\u05aa\u05a8\3\2"+ - "\2\2\u05aa\u05ab\3\2\2\2\u05ab\u0128\3\2\2\2\u05ac\u05b0\7&\2\2\u05ad"+ - "\u05af\5\u0137\u009b\2\u05ae\u05ad\3\2\2\2\u05af\u05b2\3\2\2\2\u05b0\u05ae"+ - "\3\2\2\2\u05b0\u05b1\3\2\2\2\u05b1\u05b3\3\2\2\2\u05b2\u05b0\3\2\2\2\u05b3"+ - "\u05b5\7\60\2\2\u05b4\u05b6\5\u0137\u009b\2\u05b5\u05b4\3\2\2\2\u05b6"+ - "\u05b7\3\2\2\2\u05b7\u05b5\3\2\2\2\u05b7\u05b8\3\2\2\2\u05b8\u012a\3\2"+ - "\2\2\u05b9\u05bd\5\u012f\u0097\2\u05ba\u05bd\5\u0131\u0098\2\u05bb\u05bd"+ - "\5\u012d\u0096\2\u05bc\u05b9\3\2\2\2\u05bc\u05ba\3\2\2\2\u05bc\u05bb\3"+ - "\2\2\2\u05bd\u012c\3\2\2\2\u05be\u05c0\7\'\2\2\u05bf\u05c1\5\u0133\u0099"+ - "\2\u05c0\u05bf\3\2\2\2\u05c1\u05c2\3\2\2\2\u05c2\u05c0\3\2\2\2\u05c2\u05c3"+ - "\3\2\2\2\u05c3\u012e\3\2\2\2\u05c4\u05c6\5\u0135\u009a\2\u05c5\u05c4\3"+ - "\2\2\2\u05c6\u05c7\3\2\2\2\u05c7\u05c5\3\2\2\2\u05c7\u05c8\3\2\2\2\u05c8"+ - "\u0130\3\2\2\2\u05c9\u05cb\7&\2\2\u05ca\u05cc\5\u0137\u009b\2\u05cb\u05ca"+ - "\3\2\2\2\u05cc\u05cd\3\2\2\2\u05cd\u05cb\3\2\2\2\u05cd\u05ce\3\2\2\2\u05ce"+ - "\u0132\3\2\2\2\u05cf\u05d0\t\5\2\2\u05d0\u0134\3\2\2\2\u05d1\u05d2\t\6"+ - "\2\2\u05d2\u0136\3\2\2\2\u05d3\u05d4\t\7\2\2\u05d4\u0138\3\2\2\2\u05d5"+ - "\u05d9\7)\2\2\u05d6\u05d7\7^\2\2\u05d7\u05da\t\16\2\2\u05d8\u05da\n\17"+ - "\2\2\u05d9\u05d6\3\2\2\2\u05d9\u05d8\3\2\2\2\u05da\u05db\3\2\2\2\u05db"+ - "\u05dc\7)\2\2\u05dc\u013a\3\2\2\2\u05dd\u05df\5\u013d\u009e\2\u05de\u05e0"+ - "\t\22\2\2\u05df\u05de\3\2\2\2\u05e0\u05e1\3\2\2\2\u05e1\u05df\3\2\2\2"+ - "\u05e1\u05e2\3\2\2\2\u05e2\u013c\3\2\2\2\u05e3\u05e7\7#\2\2\u05e4\u05e6"+ - "\5\u0143\u00a1\2\u05e5\u05e4\3\2\2\2\u05e6\u05e9\3\2\2\2\u05e7\u05e5\3"+ - "\2\2\2\u05e7\u05e8\3\2\2\2\u05e8\u013e\3\2\2\2\u05e9\u05e7\3\2\2\2\u05ea"+ - "\u05ee\5\u0141\u00a0\2\u05eb\u05ed\5\u0143\u00a1\2\u05ec\u05eb\3\2\2\2"+ - "\u05ed\u05f0\3\2\2\2\u05ee\u05ec\3\2\2\2\u05ee\u05ef\3\2\2\2\u05ef\u0140"+ - "\3\2\2\2\u05f0\u05ee\3\2\2\2\u05f1\u05f2\t\b\2\2\u05f2\u0142\3\2\2\2\u05f3"+ - "\u05f4\t\t\2\2\u05f4\u0144\3\2\2\2\u05f5\u05f7\t\20\2\2\u05f6\u05f5\3"+ - "\2\2\2\u05f7\u05f8\3\2\2\2\u05f8\u05f6\3\2\2\2\u05f8\u05f9\3\2\2\2\u05f9"+ - "\u05fa\3\2\2\2\u05fa\u05fb\b\u00a2\7\2\u05fb\u0146\3\2\2\2\u05fc\u05fd"+ - "\7\61\2\2\u05fd\u05fe\7\61\2\2\u05fe\u0602\3\2\2\2\u05ff\u0601\n\21\2"+ - "\2\u0600\u05ff\3\2\2\2\u0601\u0604\3\2\2\2\u0602\u0600\3\2\2\2\u0602\u0603"+ - "\3\2\2\2\u0603\u0605\3\2\2\2\u0604\u0602\3\2\2\2\u0605\u0606\b\u00a3\b"+ - "\2\u0606\u0148\3\2\2\2\u0607\u0608\7\61\2\2\u0608\u0609\7,\2\2\u0609\u060d"+ - "\3\2\2\2\u060a\u060c\13\2\2\2\u060b\u060a\3\2\2\2\u060c\u060f\3\2\2\2"+ - "\u060d\u060e\3\2\2\2\u060d\u060b\3\2\2\2\u060e\u0610\3\2\2\2\u060f\u060d"+ - "\3\2\2\2\u0610\u0611\7,\2\2\u0611\u0612\7\61\2\2\u0612\u0613\3\2\2\2\u0613"+ - "\u0614\b\u00a4\b\2\u0614\u014a\3\2\2\2\u0615\u0617\7>\2\2\u0616\u0618"+ - "\t\23\2\2\u0617\u0616\3\2\2\2\u0618\u0619\3\2\2\2\u0619\u0617\3\2\2\2"+ - "\u0619\u061a\3\2\2\2\u061a\u061b\3\2\2\2\u061b\u061c\7@\2\2\u061c\u061d"+ - "\b\u00a5\13\2\u061d\u014c\3\2\2\2\u061e\u0624\7$\2\2\u061f\u0620\7^\2"+ - "\2\u0620\u0623\7$\2\2\u0621\u0623\n\n\2\2\u0622\u061f\3\2\2\2\u0622\u0621"+ - "\3\2\2\2\u0623\u0626\3\2\2\2\u0624\u0622\3\2\2\2\u0624\u0625\3\2\2\2\u0625"+ - "\u0627\3\2\2\2\u0626\u0624\3\2\2\2\u0627\u0628\7$\2\2\u0628\u0629\b\u00a6"+ - "\f\2\u0629\u014e\3\2\2\2\u062a\u062c\t\20\2\2\u062b\u062a\3\2\2\2\u062c"+ - "\u062d\3\2\2\2\u062d\u062b\3\2\2\2\u062d\u062e\3\2\2\2\u062e\u062f\3\2"+ - "\2\2\u062f\u0630\b\u00a7\7\2\u0630\u0150\3\2\2\2\u0631\u0632\7\61\2\2"+ - "\u0632\u0633\7\61\2\2\u0633\u0637\3\2\2\2\u0634\u0636\n\21\2\2\u0635\u0634"+ - "\3\2\2\2\u0636\u0639\3\2\2\2\u0637\u0635\3\2\2\2\u0637\u0638\3\2\2\2\u0638"+ - "\u063a\3\2\2\2\u0639\u0637\3\2\2\2\u063a\u063b\b\u00a8\b\2\u063b\u0152"+ - "\3\2\2\2\u063c\u063d\7\61\2\2\u063d\u063e\7,\2\2\u063e\u0642\3\2\2\2\u063f"+ - "\u0641\13\2\2\2\u0640\u063f\3\2\2\2\u0641\u0644\3\2\2\2\u0642\u0643\3"+ - "\2\2\2\u0642\u0640\3\2\2\2\u0643\u0645\3\2\2\2\u0644\u0642\3\2\2\2\u0645"+ - "\u0646\7,\2\2\u0646\u0647\7\61\2\2\u0647\u0648\3\2\2\2\u0648\u0649\b\u00a9"+ - "\b\2\u0649\u0154\3\2\2\2C\2\3\4\u01be\u027e\u032d\u0354\u035f\u0367\u0397"+ - "\u03c8\u03cd\u03d4\u03d9\u03e0\u03e5\u03ec\u03f3\u03f8\u03ff\u0404\u0409"+ - "\u0410\u0416\u0418\u041d\u0424\u0429\u0435\u0442\u0444\u0449\u044d\u044f"+ - "\u0452\u0458\u045f\u0469\u0474\u0560\u058c\u0591\u0597\u059e\u05a3\u05aa"+ - "\u05b0\u05b7\u05bc\u05c2\u05c7\u05cd\u05d9\u05e1\u05e7\u05ee\u05f8\u0602"+ - "\u060d\u0619\u0622\u0624\u062d\u0637\u0642\r\3\2\2\3I\3\3\\\4\3]\5\3t"+ - "\6\2\3\2\2\4\2\3\u008e\7\3\u008f\b\3\u00a5\t\3\u00a6\n"; + "\nw\3w\5w\u0453\nw\3x\3x\3x\3x\3x\3x\5x\u045b\nx\3x\5x\u045e\nx\3x\3x"+ + "\3y\6y\u0463\ny\ry\16y\u0464\3y\3y\3z\3z\3z\3z\7z\u046d\nz\fz\16z\u0470"+ + "\13z\3z\3z\3{\3{\3{\3{\7{\u0478\n{\f{\16{\u047b\13{\3{\3{\3{\3{\3{\3|"+ + "\3|\3|\3|\3|\3|\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}"+ + "\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\3}\5}\u0566"+ + "\n}\3~\3~\3\177\3\177\3\u0080\3\u0080\3\u0081\3\u0081\3\u0082\3\u0082"+ + "\3\u0083\3\u0083\3\u0084\3\u0084\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086"+ + "\3\u0087\3\u0087\3\u0087\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a"+ + "\3\u008b\3\u008b\3\u008c\3\u008c\3\u008d\3\u008d\3\u008e\3\u008e\3\u008e"+ + "\3\u008f\3\u008f\3\u008f\3\u0090\3\u0090\5\u0090\u0592\n\u0090\3\u0091"+ + "\3\u0091\3\u0091\5\u0091\u0597\n\u0091\3\u0092\3\u0092\7\u0092\u059b\n"+ + "\u0092\f\u0092\16\u0092\u059e\13\u0092\3\u0092\3\u0092\6\u0092\u05a2\n"+ + "\u0092\r\u0092\16\u0092\u05a3\3\u0093\7\u0093\u05a7\n\u0093\f\u0093\16"+ + "\u0093\u05aa\13\u0093\3\u0093\3\u0093\6\u0093\u05ae\n\u0093\r\u0093\16"+ + "\u0093\u05af\3\u0094\3\u0094\7\u0094\u05b4\n\u0094\f\u0094\16\u0094\u05b7"+ + "\13\u0094\3\u0094\3\u0094\6\u0094\u05bb\n\u0094\r\u0094\16\u0094\u05bc"+ + "\3\u0095\3\u0095\3\u0095\5\u0095\u05c2\n\u0095\3\u0096\3\u0096\6\u0096"+ + "\u05c6\n\u0096\r\u0096\16\u0096\u05c7\3\u0097\6\u0097\u05cb\n\u0097\r"+ + "\u0097\16\u0097\u05cc\3\u0098\3\u0098\6\u0098\u05d1\n\u0098\r\u0098\16"+ + "\u0098\u05d2\3\u0099\3\u0099\3\u009a\3\u009a\3\u009b\3\u009b\3\u009c\3"+ + "\u009c\3\u009c\3\u009c\5\u009c\u05df\n\u009c\3\u009c\3\u009c\3\u009d\3"+ + "\u009d\6\u009d\u05e5\n\u009d\r\u009d\16\u009d\u05e6\3\u009e\3\u009e\7"+ + "\u009e\u05eb\n\u009e\f\u009e\16\u009e\u05ee\13\u009e\3\u009f\3\u009f\7"+ + "\u009f\u05f2\n\u009f\f\u009f\16\u009f\u05f5\13\u009f\3\u00a0\3\u00a0\3"+ + "\u00a1\3\u00a1\3\u00a2\6\u00a2\u05fc\n\u00a2\r\u00a2\16\u00a2\u05fd\3"+ + "\u00a2\3\u00a2\3\u00a3\3\u00a3\3\u00a3\3\u00a3\7\u00a3\u0606\n\u00a3\f"+ + "\u00a3\16\u00a3\u0609\13\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4"+ + "\3\u00a4\7\u00a4\u0611\n\u00a4\f\u00a4\16\u00a4\u0614\13\u00a4\3\u00a4"+ + "\3\u00a4\3\u00a4\3\u00a4\3\u00a4\3\u00a5\3\u00a5\6\u00a5\u061d\n\u00a5"+ + "\r\u00a5\16\u00a5\u061e\3\u00a5\3\u00a5\3\u00a5\3\u00a6\3\u00a6\3\u00a6"+ + "\3\u00a6\7\u00a6\u0628\n\u00a6\f\u00a6\16\u00a6\u062b\13\u00a6\3\u00a6"+ + "\3\u00a6\3\u00a6\3\u00a7\6\u00a7\u0631\n\u00a7\r\u00a7\16\u00a7\u0632"+ + "\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8\7\u00a8\u063b\n\u00a8"+ + "\f\u00a8\16\u00a8\u063e\13\u00a8\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9"+ + "\3\u00a9\7\u00a9\u0646\n\u00a9\f\u00a9\16\u00a9\u0649\13\u00a9\3\u00a9"+ + "\3\u00a9\3\u00a9\3\u00a9\3\u00a9\6\u0367\u0479\u0612\u0647\2\u00aa\5\4"+ + "\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22"+ + "#\23%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C"+ + "#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091"+ + "J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5"+ + "T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9"+ + "^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cd"+ + "h\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1"+ + "r\u00e3\2\u00e5\2\u00e7\2\u00e9s\u00eb\2\u00ed\2\u00eft\u00f1u\u00f3v"+ + "\u00f5w\u00f7x\u00f9y\u00fbz\u00fd{\u00ff|\u0101}\u0103~\u0105\177\u0107"+ + "\u0080\u0109\u0081\u010b\u0082\u010d\u0083\u010f\u0084\u0111\u0085\u0113"+ + "\u0086\u0115\u0087\u0117\u0088\u0119\u0089\u011b\u008a\u011d\u008b\u011f"+ + "\u008c\u0121\u008d\u0123\u008e\u0125\u008f\u0127\u0090\u0129\u0091\u012b"+ + "\u0092\u012d\u0093\u012f\u0094\u0131\u0095\u0133\2\u0135\2\u0137\2\u0139"+ + "\u0096\u013b\u0097\u013d\u0098\u013f\u0099\u0141\2\u0143\2\u0145\u009a"+ + "\u0147\u009b\u0149\u009c\u014b\u009d\u014d\u009e\u014f\u009f\u0151\u00a0"+ + "\u0153\u00a1\5\2\3\4\25\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62"+ + ";\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\3\2$$\3\2||\4\2rruu\4\2ooww\7"+ + "\2$$))hhpptt\4\2\62;ch\3\2))\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17"+ + "\17\4\2--//\7\2/;C\\^^aac|\2\u06e0\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2"+ + "\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25"+ + "\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2"+ + "\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2"+ + "\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3"+ + "\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2"+ + "\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2"+ + "Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3"+ + "\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2"+ + "\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2"+ + "w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2"+ + "\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b"+ + "\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2"+ + "\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d"+ + "\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2"+ + "\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af"+ + "\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2"+ + "\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1"+ + "\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2"+ + "\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3"+ + "\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2"+ + "\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\2\u00e9\3\2\2\2\2\u00ef"+ + "\3\2\2\2\2\u00f1\3\2\2\2\2\u00f3\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2"+ + "\2\3\u00f9\3\2\2\2\3\u00fb\3\2\2\2\3\u00fd\3\2\2\2\3\u00ff\3\2\2\2\3\u0101"+ + "\3\2\2\2\3\u0103\3\2\2\2\3\u0105\3\2\2\2\3\u0107\3\2\2\2\3\u0109\3\2\2"+ + "\2\3\u010b\3\2\2\2\3\u010d\3\2\2\2\3\u010f\3\2\2\2\3\u0111\3\2\2\2\3\u0113"+ + "\3\2\2\2\3\u0115\3\2\2\2\3\u0117\3\2\2\2\3\u0119\3\2\2\2\3\u011b\3\2\2"+ + "\2\3\u011d\3\2\2\2\3\u011f\3\2\2\2\3\u0121\3\2\2\2\3\u0123\3\2\2\2\3\u0125"+ + "\3\2\2\2\3\u0127\3\2\2\2\3\u0129\3\2\2\2\3\u012b\3\2\2\2\3\u012d\3\2\2"+ + "\2\3\u012f\3\2\2\2\3\u0131\3\2\2\2\3\u0139\3\2\2\2\3\u013b\3\2\2\2\3\u013d"+ + "\3\2\2\2\3\u013f\3\2\2\2\3\u0145\3\2\2\2\3\u0147\3\2\2\2\3\u0149\3\2\2"+ + "\2\4\u014b\3\2\2\2\4\u014d\3\2\2\2\4\u014f\3\2\2\2\4\u0151\3\2\2\2\4\u0153"+ + "\3\2\2\2\5\u0155\3\2\2\2\7\u0158\3\2\2\2\t\u015a\3\2\2\2\13\u015c\3\2"+ + "\2\2\r\u015e\3\2\2\2\17\u0160\3\2\2\2\21\u0162\3\2\2\2\23\u0164\3\2\2"+ + "\2\25\u0166\3\2\2\2\27\u0168\3\2\2\2\31\u016b\3\2\2\2\33\u016d\3\2\2\2"+ + "\35\u016f\3\2\2\2\37\u0172\3\2\2\2!\u0174\3\2\2\2#\u0176\3\2\2\2%\u0178"+ + "\3\2\2\2\'\u017a\3\2\2\2)\u017c\3\2\2\2+\u017f\3\2\2\2-\u0182\3\2\2\2"+ + "/\u0184\3\2\2\2\61\u0186\3\2\2\2\63\u0188\3\2\2\2\65\u018a\3\2\2\2\67"+ + "\u018d\3\2\2\29\u0190\3\2\2\2;\u0193\3\2\2\2=\u0196\3\2\2\2?\u0198\3\2"+ + "\2\2A\u019b\3\2\2\2C\u019e\3\2\2\2E\u01a0\3\2\2\2G\u01a3\3\2\2\2I\u01a6"+ + "\3\2\2\2K\u01be\3\2\2\2M\u01c0\3\2\2\2O\u01c8\3\2\2\2Q\u01d0\3\2\2\2S"+ + "\u01d3\3\2\2\2U\u01da\3\2\2\2W\u01df\3\2\2\2Y\u01e3\3\2\2\2[\u01ec\3\2"+ + "\2\2]\u01f5\3\2\2\2_\u01fe\3\2\2\2a\u0204\3\2\2\2c\u020b\3\2\2\2e\u0212"+ + "\3\2\2\2g\u0218\3\2\2\2i\u021f\3\2\2\2k\u0228\3\2\2\2m\u022f\3\2\2\2o"+ + "\u0239\3\2\2\2q\u0242\3\2\2\2s\u024c\3\2\2\2u\u0251\3\2\2\2w\u0257\3\2"+ + "\2\2y\u025d\3\2\2\2{\u0262\3\2\2\2}\u027e\3\2\2\2\177\u0280\3\2\2\2\u0081"+ + "\u028a\3\2\2\2\u0083\u028d\3\2\2\2\u0085\u0292\3\2\2\2\u0087\u0298\3\2"+ + "\2\2\u0089\u029b\3\2\2\2\u008b\u029f\3\2\2\2\u008d\u02a6\3\2\2\2\u008f"+ + "\u02ad\3\2\2\2\u0091\u02b3\3\2\2\2\u0093\u02bc\3\2\2\2\u0095\u02c2\3\2"+ + "\2\2\u0097\u02ca\3\2\2\2\u0099\u02cf\3\2\2\2\u009b\u02d6\3\2\2\2\u009d"+ + "\u02db\3\2\2\2\u009f\u02e2\3\2\2\2\u00a1\u02e9\3\2\2\2\u00a3\u02f1\3\2"+ + "\2\2\u00a5\u02f9\3\2\2\2\u00a7\u0302\3\2\2\2\u00a9\u0307\3\2\2\2\u00ab"+ + "\u0310\3\2\2\2\u00ad\u0316\3\2\2\2\u00af\u031d\3\2\2\2\u00b1\u032d\3\2"+ + "\2\2\u00b3\u0354\3\2\2\2\u00b5\u035f\3\2\2\2\u00b7\u0361\3\2\2\2\u00b9"+ + "\u036d\3\2\2\2\u00bb\u0377\3\2\2\2\u00bd\u0382\3\2\2\2\u00bf\u038a\3\2"+ + "\2\2\u00c1\u0397\3\2\2\2\u00c3\u0399\3\2\2\2\u00c5\u03a0\3\2\2\2\u00c7"+ + "\u03a7\3\2\2\2\u00c9\u03af\3\2\2\2\u00cb\u03b3\3\2\2\2\u00cd\u03b9\3\2"+ + "\2\2\u00cf\u03bf\3\2\2\2\u00d1\u03c8\3\2\2\2\u00d3\u03cd\3\2\2\2\u00d5"+ + "\u03d4\3\2\2\2\u00d7\u03e5\3\2\2\2\u00d9\u03f3\3\2\2\2\u00db\u0404\3\2"+ + "\2\2\u00dd\u0418\3\2\2\2\u00df\u041b\3\2\2\2\u00e1\u0424\3\2\2\2\u00e3"+ + "\u042b\3\2\2\2\u00e5\u042d\3\2\2\2\u00e7\u042f\3\2\2\2\u00e9\u0431\3\2"+ + "\2\2\u00eb\u043a\3\2\2\2\u00ed\u043c\3\2\2\2\u00ef\u043e\3\2\2\2\u00f1"+ + "\u0454\3\2\2\2\u00f3\u0462\3\2\2\2\u00f5\u0468\3\2\2\2\u00f7\u0473\3\2"+ + "\2\2\u00f9\u0481\3\2\2\2\u00fb\u0565\3\2\2\2\u00fd\u0567\3\2\2\2\u00ff"+ + "\u0569\3\2\2\2\u0101\u056b\3\2\2\2\u0103\u056d\3\2\2\2\u0105\u056f\3\2"+ + "\2\2\u0107\u0571\3\2\2\2\u0109\u0573\3\2\2\2\u010b\u0575\3\2\2\2\u010d"+ + "\u0577\3\2\2\2\u010f\u057a\3\2\2\2\u0111\u057d\3\2\2\2\u0113\u057f\3\2"+ + "\2\2\u0115\u0581\3\2\2\2\u0117\u0583\3\2\2\2\u0119\u0585\3\2\2\2\u011b"+ + "\u0587\3\2\2\2\u011d\u0589\3\2\2\2\u011f\u058c\3\2\2\2\u0121\u0591\3\2"+ + "\2\2\u0123\u0596\3\2\2\2\u0125\u0598\3\2\2\2\u0127\u05a8\3\2\2\2\u0129"+ + "\u05b1\3\2\2\2\u012b\u05c1\3\2\2\2\u012d\u05c3\3\2\2\2\u012f\u05ca\3\2"+ + "\2\2\u0131\u05ce\3\2\2\2\u0133\u05d4\3\2\2\2\u0135\u05d6\3\2\2\2\u0137"+ + "\u05d8\3\2\2\2\u0139\u05da\3\2\2\2\u013b\u05e2\3\2\2\2\u013d\u05e8\3\2"+ + "\2\2\u013f\u05ef\3\2\2\2\u0141\u05f6\3\2\2\2\u0143\u05f8\3\2\2\2\u0145"+ + "\u05fb\3\2\2\2\u0147\u0601\3\2\2\2\u0149\u060c\3\2\2\2\u014b\u061a\3\2"+ + "\2\2\u014d\u0623\3\2\2\2\u014f\u0630\3\2\2\2\u0151\u0636\3\2\2\2\u0153"+ + "\u0641\3\2\2\2\u0155\u0156\7}\2\2\u0156\u0157\b\2\2\2\u0157\6\3\2\2\2"+ + "\u0158\u0159\7\177\2\2\u0159\b\3\2\2\2\u015a\u015b\7]\2\2\u015b\n\3\2"+ + "\2\2\u015c\u015d\7_\2\2\u015d\f\3\2\2\2\u015e\u015f\7*\2\2\u015f\16\3"+ + "\2\2\2\u0160\u0161\7+\2\2\u0161\20\3\2\2\2\u0162\u0163\7=\2\2\u0163\22"+ + "\3\2\2\2\u0164\u0165\7<\2\2\u0165\24\3\2\2\2\u0166\u0167\7.\2\2\u0167"+ + "\26\3\2\2\2\u0168\u0169\7\60\2\2\u0169\u016a\7\60\2\2\u016a\30\3\2\2\2"+ + "\u016b\u016c\7A\2\2\u016c\32\3\2\2\2\u016d\u016e\7\60\2\2\u016e\34\3\2"+ + "\2\2\u016f\u0170\7/\2\2\u0170\u0171\7@\2\2\u0171\36\3\2\2\2\u0172\u0173"+ + "\7-\2\2\u0173 \3\2\2\2\u0174\u0175\7/\2\2\u0175\"\3\2\2\2\u0176\u0177"+ + "\7,\2\2\u0177$\3\2\2\2\u0178\u0179\7\61\2\2\u0179&\3\2\2\2\u017a\u017b"+ + "\7\'\2\2\u017b(\3\2\2\2\u017c\u017d\7-\2\2\u017d\u017e\7-\2\2\u017e*\3"+ + "\2\2\2\u017f\u0180\7/\2\2\u0180\u0181\7/\2\2\u0181,\3\2\2\2\u0182\u0183"+ + "\7(\2\2\u0183.\3\2\2\2\u0184\u0185\7\u0080\2\2\u0185\60\3\2\2\2\u0186"+ + "\u0187\7`\2\2\u0187\62\3\2\2\2\u0188\u0189\7~\2\2\u0189\64\3\2\2\2\u018a"+ + "\u018b\7>\2\2\u018b\u018c\7>\2\2\u018c\66\3\2\2\2\u018d\u018e\7@\2\2\u018e"+ + "\u018f\7@\2\2\u018f8\3\2\2\2\u0190\u0191\7?\2\2\u0191\u0192\7?\2\2\u0192"+ + ":\3\2\2\2\u0193\u0194\7#\2\2\u0194\u0195\7?\2\2\u0195<\3\2\2\2\u0196\u0197"+ + "\7>\2\2\u0197>\3\2\2\2\u0198\u0199\7>\2\2\u0199\u019a\7?\2\2\u019a@\3"+ + "\2\2\2\u019b\u019c\7@\2\2\u019c\u019d\7?\2\2\u019dB\3\2\2\2\u019e\u019f"+ + "\7@\2\2\u019fD\3\2\2\2\u01a0\u01a1\7(\2\2\u01a1\u01a2\7(\2\2\u01a2F\3"+ + "\2\2\2\u01a3\u01a4\7~\2\2\u01a4\u01a5\7~\2\2\u01a5H\3\2\2\2\u01a6\u01a7"+ + "\7?\2\2\u01a7J\3\2\2\2\u01a8\u01a9\7-\2\2\u01a9\u01bf\7?\2\2\u01aa\u01ab"+ + "\7/\2\2\u01ab\u01bf\7?\2\2\u01ac\u01ad\7,\2\2\u01ad\u01bf\7?\2\2\u01ae"+ + "\u01af\7\61\2\2\u01af\u01bf\7?\2\2\u01b0\u01b1\7\'\2\2\u01b1\u01bf\7?"+ + "\2\2\u01b2\u01b3\7>\2\2\u01b3\u01b4\7>\2\2\u01b4\u01bf\7?\2\2\u01b5\u01b6"+ + "\7@\2\2\u01b6\u01b7\7@\2\2\u01b7\u01bf\7?\2\2\u01b8\u01b9\7(\2\2\u01b9"+ + "\u01bf\7?\2\2\u01ba\u01bb\7~\2\2\u01bb\u01bf\7?\2\2\u01bc\u01bd\7`\2\2"+ + "\u01bd\u01bf\7?\2\2\u01be\u01a8\3\2\2\2\u01be\u01aa\3\2\2\2\u01be\u01ac"+ + "\3\2\2\2\u01be\u01ae\3\2\2\2\u01be\u01b0\3\2\2\2\u01be\u01b2\3\2\2\2\u01be"+ + "\u01b5\3\2\2\2\u01be\u01b8\3\2\2\2\u01be\u01ba\3\2\2\2\u01be\u01bc\3\2"+ + "\2\2\u01bfL\3\2\2\2\u01c0\u01c1\7v\2\2\u01c1\u01c2\7{\2\2\u01c2\u01c3"+ + "\7r\2\2\u01c3\u01c4\7g\2\2\u01c4\u01c5\7f\2\2\u01c5\u01c6\7g\2\2\u01c6"+ + "\u01c7\7h\2\2\u01c7N\3\2\2\2\u01c8\u01c9\7t\2\2\u01c9\u01ca\7g\2\2\u01ca"+ + "\u01cb\7u\2\2\u01cb\u01cc\7g\2\2\u01cc\u01cd\7t\2\2\u01cd\u01ce\7x\2\2"+ + "\u01ce\u01cf\7g\2\2\u01cfP\3\2\2\2\u01d0\u01d1\7r\2\2\u01d1\u01d2\7e\2"+ + "\2\u01d2R\3\2\2\2\u01d3\u01d4\7v\2\2\u01d4\u01d5\7c\2\2\u01d5\u01d6\7"+ + "t\2\2\u01d6\u01d7\7i\2\2\u01d7\u01d8\7g\2\2\u01d8\u01d9\7v\2\2\u01d9T"+ + "\3\2\2\2\u01da\u01db\7n\2\2\u01db\u01dc\7k\2\2\u01dc\u01dd\7p\2\2\u01dd"+ + "\u01de\7m\2\2\u01deV\3\2\2\2\u01df\u01e0\7e\2\2\u01e0\u01e1\7r\2\2\u01e1"+ + "\u01e2\7w\2\2\u01e2X\3\2\2\2\u01e3\u01e4\7e\2\2\u01e4\u01e5\7q\2\2\u01e5"+ + "\u01e6\7f\2\2\u01e6\u01e7\7g\2\2\u01e7\u01e8\7a\2\2\u01e8\u01e9\7u\2\2"+ + "\u01e9\u01ea\7g\2\2\u01ea\u01eb\7i\2\2\u01ebZ\3\2\2\2\u01ec\u01ed\7f\2"+ + "\2\u01ed\u01ee\7c\2\2\u01ee\u01ef\7v\2\2\u01ef\u01f0\7c\2\2\u01f0\u01f1"+ + "\7a\2\2\u01f1\u01f2\7u\2\2\u01f2\u01f3\7g\2\2\u01f3\u01f4\7i\2\2\u01f4"+ + "\\\3\2\2\2\u01f5\u01f6\7g\2\2\u01f6\u01f7\7p\2\2\u01f7\u01f8\7e\2\2\u01f8"+ + "\u01f9\7q\2\2\u01f9\u01fa\7f\2\2\u01fa\u01fb\7k\2\2\u01fb\u01fc\7p\2\2"+ + "\u01fc\u01fd\7i\2\2\u01fd^\3\2\2\2\u01fe\u01ff\7e\2\2\u01ff\u0200\7q\2"+ + "\2\u0200\u0201\7p\2\2\u0201\u0202\7u\2\2\u0202\u0203\7v\2\2\u0203`\3\2"+ + "\2\2\u0204\u0205\7g\2\2\u0205\u0206\7z\2\2\u0206\u0207\7v\2\2\u0207\u0208"+ + "\7g\2\2\u0208\u0209\7t\2\2\u0209\u020a\7p\2\2\u020ab\3\2\2\2\u020b\u020c"+ + "\7g\2\2\u020c\u020d\7z\2\2\u020d\u020e\7r\2\2\u020e\u020f\7q\2\2\u020f"+ + "\u0210\7t\2\2\u0210\u0211\7v\2\2\u0211d\3\2\2\2\u0212\u0213\7c\2\2\u0213"+ + "\u0214\7n\2\2\u0214\u0215\7k\2\2\u0215\u0216\7i\2\2\u0216\u0217\7p\2\2"+ + "\u0217f\3\2\2\2\u0218\u0219\7k\2\2\u0219\u021a\7p\2\2\u021a\u021b\7n\2"+ + "\2\u021b\u021c\7k\2\2\u021c\u021d\7p\2\2\u021d\u021e\7g\2\2\u021eh\3\2"+ + "\2\2\u021f\u0220\7x\2\2\u0220\u0221\7q\2\2\u0221\u0222\7n\2\2\u0222\u0223"+ + "\7c\2\2\u0223\u0224\7v\2\2\u0224\u0225\7k\2\2\u0225\u0226\7n\2\2\u0226"+ + "\u0227\7g\2\2\u0227j\3\2\2\2\u0228\u0229\7u\2\2\u0229\u022a\7v\2\2\u022a"+ + "\u022b\7c\2\2\u022b\u022c\7v\2\2\u022c\u022d\7k\2\2\u022d\u022e\7e\2\2"+ + "\u022el\3\2\2\2\u022f\u0230\7k\2\2\u0230\u0231\7p\2\2\u0231\u0232\7v\2"+ + "\2\u0232\u0233\7g\2\2\u0233\u0234\7t\2\2\u0234\u0235\7t\2\2\u0235\u0236"+ + "\7w\2\2\u0236\u0237\7r\2\2\u0237\u0238\7v\2\2\u0238n\3\2\2\2\u0239\u023a"+ + "\7t\2\2\u023a\u023b\7g\2\2\u023b\u023c\7i\2\2\u023c\u023d\7k\2\2\u023d"+ + "\u023e\7u\2\2\u023e\u023f\7v\2\2\u023f\u0240\7g\2\2\u0240\u0241\7t\2\2"+ + "\u0241p\3\2\2\2\u0242\u0243\7a\2\2\u0243\u0244\7a\2\2\u0244\u0245\7c\2"+ + "\2\u0245\u0246\7f\2\2\u0246\u0247\7f\2\2\u0247\u0248\7t\2\2\u0248\u0249"+ + "\7g\2\2\u0249\u024a\7u\2\2\u024a\u024b\7u\2\2\u024br\3\2\2\2\u024c\u024d"+ + "\7a\2\2\u024d\u024e\7a\2\2\u024e\u024f\7|\2\2\u024f\u0250\7r\2\2\u0250"+ + "t\3\2\2\2\u0251\u0252\7a\2\2\u0252\u0253\7a\2\2\u0253\u0254\7o\2\2\u0254"+ + "\u0255\7g\2\2\u0255\u0256\7o\2\2\u0256v\3\2\2\2\u0257\u0258\7a\2\2\u0258"+ + "\u0259\7a\2\2\u0259\u025a\7u\2\2\u025a\u025b\7u\2\2\u025b\u025c\7c\2\2"+ + "\u025cx\3\2\2\2\u025d\u025e\7a\2\2\u025e\u025f\7a\2\2\u025f\u0260\7o\2"+ + "\2\u0260\u0261\7c\2\2\u0261z\3\2\2\2\u0262\u0263\7e\2\2\u0263\u0264\7"+ + "c\2\2\u0264\u0265\7n\2\2\u0265\u0266\7n\2\2\u0266\u0267\7k\2\2\u0267\u0268"+ + "\7p\2\2\u0268\u0269\7i\2\2\u0269|\3\2\2\2\u026a\u026b\7a\2\2\u026b\u026c"+ + "\7a\2\2\u026c\u026d\7u\2\2\u026d\u026e\7v\2\2\u026e\u026f\7c\2\2\u026f"+ + "\u0270\7e\2\2\u0270\u0271\7m\2\2\u0271\u0272\7e\2\2\u0272\u0273\7c\2\2"+ + "\u0273\u0274\7n\2\2\u0274\u027f\7n\2\2\u0275\u0276\7a\2\2\u0276\u0277"+ + "\7a\2\2\u0277\u0278\7r\2\2\u0278\u0279\7j\2\2\u0279\u027a\7k\2\2\u027a"+ + "\u027b\7e\2\2\u027b\u027c\7c\2\2\u027c\u027d\7n\2\2\u027d\u027f\7n\2\2"+ + "\u027e\u026a\3\2\2\2\u027e\u0275\3\2\2\2\u027f~\3\2\2\2\u0280\u0281\7"+ + "x\2\2\u0281\u0282\7c\2\2\u0282\u0283\7t\2\2\u0283\u0284\7a\2\2\u0284\u0285"+ + "\7o\2\2\u0285\u0286\7q\2\2\u0286\u0287\7f\2\2\u0287\u0288\7g\2\2\u0288"+ + "\u0289\7n\2\2\u0289\u0080\3\2\2\2\u028a\u028b\7k\2\2\u028b\u028c\7h\2"+ + "\2\u028c\u0082\3\2\2\2\u028d\u028e\7g\2\2\u028e\u028f\7n\2\2\u028f\u0290"+ + "\7u\2\2\u0290\u0291\7g\2\2\u0291\u0084\3\2\2\2\u0292\u0293\7y\2\2\u0293"+ + "\u0294\7j\2\2\u0294\u0295\7k\2\2\u0295\u0296\7n\2\2\u0296\u0297\7g\2\2"+ + "\u0297\u0086\3\2\2\2\u0298\u0299\7f\2\2\u0299\u029a\7q\2\2\u029a\u0088"+ + "\3\2\2\2\u029b\u029c\7h\2\2\u029c\u029d\7q\2\2\u029d\u029e\7t\2\2\u029e"+ + "\u008a\3\2\2\2\u029f\u02a0\7u\2\2\u02a0\u02a1\7y\2\2\u02a1\u02a2\7k\2"+ + "\2\u02a2\u02a3\7v\2\2\u02a3\u02a4\7e\2\2\u02a4\u02a5\7j\2\2\u02a5\u008c"+ + "\3\2\2\2\u02a6\u02a7\7t\2\2\u02a7\u02a8\7g\2\2\u02a8\u02a9\7v\2\2\u02a9"+ + "\u02aa\7w\2\2\u02aa\u02ab\7t\2\2\u02ab\u02ac\7p\2\2\u02ac\u008e\3\2\2"+ + "\2\u02ad\u02ae\7d\2\2\u02ae\u02af\7t\2\2\u02af\u02b0\7g\2\2\u02b0\u02b1"+ + "\7c\2\2\u02b1\u02b2\7m\2\2\u02b2\u0090\3\2\2\2\u02b3\u02b4\7e\2\2\u02b4"+ + "\u02b5\7q\2\2\u02b5\u02b6\7p\2\2\u02b6\u02b7\7v\2\2\u02b7\u02b8\7k\2\2"+ + "\u02b8\u02b9\7p\2\2\u02b9\u02ba\7w\2\2\u02ba\u02bb\7g\2\2\u02bb\u0092"+ + "\3\2\2\2\u02bc\u02bd\7c\2\2\u02bd\u02be\7u\2\2\u02be\u02bf\7o\2\2\u02bf"+ + "\u02c0\3\2\2\2\u02c0\u02c1\bI\3\2\u02c1\u0094\3\2\2\2\u02c2\u02c3\7f\2"+ + "\2\u02c3\u02c4\7g\2\2\u02c4\u02c5\7h\2\2\u02c5\u02c6\7c\2\2\u02c6\u02c7"+ + "\7w\2\2\u02c7\u02c8\7n\2\2\u02c8\u02c9\7v\2\2\u02c9\u0096\3\2\2\2\u02ca"+ + "\u02cb\7e\2\2\u02cb\u02cc\7c\2\2\u02cc\u02cd\7u\2\2\u02cd\u02ce\7g\2\2"+ + "\u02ce\u0098\3\2\2\2\u02cf\u02d0\7u\2\2\u02d0\u02d1\7v\2\2\u02d1\u02d2"+ + "\7t\2\2\u02d2\u02d3\7w\2\2\u02d3\u02d4\7e\2\2\u02d4\u02d5\7v\2\2\u02d5"+ + "\u009a\3\2\2\2\u02d6\u02d7\7g\2\2\u02d7\u02d8\7p\2\2\u02d8\u02d9\7w\2"+ + "\2\u02d9\u02da\7o\2\2\u02da\u009c\3\2\2\2\u02db\u02dc\7u\2\2\u02dc\u02dd"+ + "\7k\2\2\u02dd\u02de\7|\2\2\u02de\u02df\7g\2\2\u02df\u02e0\7q\2\2\u02e0"+ + "\u02e1\7h\2\2\u02e1\u009e\3\2\2\2\u02e2\u02e3\7v\2\2\u02e3\u02e4\7{\2"+ + "\2\u02e4\u02e5\7r\2\2\u02e5\u02e6\7g\2\2\u02e6\u02e7\7k\2\2\u02e7\u02e8"+ + "\7f\2\2\u02e8\u00a0\3\2\2\2\u02e9\u02ea\7f\2\2\u02ea\u02eb\7g\2\2\u02eb"+ + "\u02ec\7h\2\2\u02ec\u02ed\7k\2\2\u02ed\u02ee\7p\2\2\u02ee\u02ef\7g\2\2"+ + "\u02ef\u02f0\7f\2\2\u02f0\u00a2\3\2\2\2\u02f1\u02f2\7m\2\2\u02f2\u02f3"+ + "\7k\2\2\u02f3\u02f4\7e\2\2\u02f4\u02f5\7m\2\2\u02f5\u02f6\7c\2\2\u02f6"+ + "\u02f7\7u\2\2\u02f7\u02f8\7o\2\2\u02f8\u00a4\3\2\2\2\u02f9\u02fa\7t\2"+ + "\2\u02fa\u02fb\7g\2\2\u02fb\u02fc\7u\2\2\u02fc\u02fd\7q\2\2\u02fd\u02fe"+ + "\7w\2\2\u02fe\u02ff\7t\2\2\u02ff\u0300\7e\2\2\u0300\u0301\7g\2\2\u0301"+ + "\u00a6\3\2\2\2\u0302\u0303\7w\2\2\u0303\u0304\7u\2\2\u0304\u0305\7g\2"+ + "\2\u0305\u0306\7u\2\2\u0306\u00a8\3\2\2\2\u0307\u0308\7e\2\2\u0308\u0309"+ + "\7n\2\2\u0309\u030a\7q\2\2\u030a\u030b\7d\2\2\u030b\u030c\7d\2\2\u030c"+ + "\u030d\7g\2\2\u030d\u030e\7t\2\2\u030e\u030f\7u\2\2\u030f\u00aa\3\2\2"+ + "\2\u0310\u0311\7d\2\2\u0311\u0312\7{\2\2\u0312\u0313\7v\2\2\u0313\u0314"+ + "\7g\2\2\u0314\u0315\7u\2\2\u0315\u00ac\3\2\2\2\u0316\u0317\7e\2\2\u0317"+ + "\u0318\7{\2\2\u0318\u0319\7e\2\2\u0319\u031a\7n\2\2\u031a\u031b\7g\2\2"+ + "\u031b\u031c\7u\2\2\u031c\u00ae\3\2\2\2\u031d\u031e\7#\2\2\u031e\u00b0"+ + "\3\2\2\2\u031f\u0320\7u\2\2\u0320\u0321\7k\2\2\u0321\u0322\7i\2\2\u0322"+ + "\u0323\7p\2\2\u0323\u0324\7g\2\2\u0324\u032e\7f\2\2\u0325\u0326\7w\2\2"+ + "\u0326\u0327\7p\2\2\u0327\u0328\7u\2\2\u0328\u0329\7k\2\2\u0329\u032a"+ + "\7i\2\2\u032a\u032b\7p\2\2\u032b\u032c\7g\2\2\u032c\u032e\7f\2\2\u032d"+ + "\u031f\3\2\2\2\u032d\u0325\3\2\2\2\u032e\u00b2\3\2\2\2\u032f\u0330\7d"+ + "\2\2\u0330\u0331\7{\2\2\u0331\u0332\7v\2\2\u0332\u0355\7g\2\2\u0333\u0334"+ + "\7y\2\2\u0334\u0335\7q\2\2\u0335\u0336\7t\2\2\u0336\u0355\7f\2\2\u0337"+ + "\u0338\7f\2\2\u0338\u0339\7y\2\2\u0339\u033a\7q\2\2\u033a\u033b\7t\2\2"+ + "\u033b\u0355\7f\2\2\u033c\u033d\7d\2\2\u033d\u033e\7q\2\2\u033e\u033f"+ + "\7q\2\2\u033f\u0355\7n\2\2\u0340\u0341\7e\2\2\u0341\u0342\7j\2\2\u0342"+ + "\u0343\7c\2\2\u0343\u0355\7t\2\2\u0344\u0345\7u\2\2\u0345\u0346\7j\2\2"+ + "\u0346\u0347\7q\2\2\u0347\u0348\7t\2\2\u0348\u0355\7v\2\2\u0349\u034a"+ + "\7k\2\2\u034a\u034b\7p\2\2\u034b\u0355\7v\2\2\u034c\u034d\7n\2\2\u034d"+ + "\u034e\7q\2\2\u034e\u034f\7p\2\2\u034f\u0355\7i\2\2\u0350\u0351\7x\2\2"+ + "\u0351\u0352\7q\2\2\u0352\u0353\7k\2\2\u0353\u0355\7f\2\2\u0354\u032f"+ + "\3\2\2\2\u0354\u0333\3\2\2\2\u0354\u0337\3\2\2\2\u0354\u033c\3\2\2\2\u0354"+ + "\u0340\3\2\2\2\u0354\u0344\3\2\2\2\u0354\u0349\3\2\2\2\u0354\u034c\3\2"+ + "\2\2\u0354\u0350\3\2\2\2\u0355\u00b4\3\2\2\2\u0356\u0357\7v\2\2\u0357"+ + "\u0358\7t\2\2\u0358\u0359\7w\2\2\u0359\u0360\7g\2\2\u035a\u035b\7h\2\2"+ + "\u035b\u035c\7c\2\2\u035c\u035d\7n\2\2\u035d\u035e\7u\2\2\u035e\u0360"+ + "\7g\2\2\u035f\u0356\3\2\2\2\u035f\u035a\3\2\2\2\u0360\u00b6\3\2\2\2\u0361"+ + "\u0362\7}\2\2\u0362\u0363\7}\2\2\u0363\u0367\3\2\2\2\u0364\u0366\13\2"+ + "\2\2\u0365\u0364\3\2\2\2\u0366\u0369\3\2\2\2\u0367\u0368\3\2\2\2\u0367"+ + "\u0365\3\2\2\2\u0368\u036a\3\2\2\2\u0369\u0367\3\2\2\2\u036a\u036b\7\177"+ + "\2\2\u036b\u036c\7\177\2\2\u036c\u00b8\3\2\2\2\u036d\u036e\7%\2\2\u036e"+ + "\u036f\7k\2\2\u036f\u0370\7o\2\2\u0370\u0371\7r\2\2\u0371\u0372\7q\2\2"+ + "\u0372\u0373\7t\2\2\u0373\u0374\7v\2\2\u0374\u0375\3\2\2\2\u0375\u0376"+ + "\b\\\4\2\u0376\u00ba\3\2\2\2\u0377\u0378\7%\2\2\u0378\u0379\7k\2\2\u0379"+ + "\u037a\7p\2\2\u037a\u037b\7e\2\2\u037b\u037c\7n\2\2\u037c\u037d\7w\2\2"+ + "\u037d\u037e\7f\2\2\u037e\u037f\7g\2\2\u037f\u0380\3\2\2\2\u0380\u0381"+ + "\b]\5\2\u0381\u00bc\3\2\2\2\u0382\u0383\7%\2\2\u0383\u0384\7r\2\2\u0384"+ + "\u0385\7t\2\2\u0385\u0386\7c\2\2\u0386\u0387\7i\2\2\u0387\u0388\7o\2\2"+ + "\u0388\u0389\7c\2\2\u0389\u00be\3\2\2\2\u038a\u038b\7%\2\2\u038b\u038c"+ + "\7f\2\2\u038c\u038d\7g\2\2\u038d\u038e\7h\2\2\u038e\u038f\7k\2\2\u038f"+ + "\u0390\7p\2\2\u0390\u0391\7g\2\2\u0391\u00c0\3\2\2\2\u0392\u0393\7^\2"+ + "\2\u0393\u0398\7\f\2\2\u0394\u0395\7^\2\2\u0395\u0396\7\17\2\2\u0396\u0398"+ + "\7\f\2\2\u0397\u0392\3\2\2\2\u0397\u0394\3\2\2\2\u0398\u00c2\3\2\2\2\u0399"+ + "\u039a\7%\2\2\u039a\u039b\7w\2\2\u039b\u039c\7p\2\2\u039c\u039d\7f\2\2"+ + "\u039d\u039e\7g\2\2\u039e\u039f\7h\2\2\u039f\u00c4\3\2\2\2\u03a0\u03a1"+ + "\7%\2\2\u03a1\u03a2\7k\2\2\u03a2\u03a3\7h\2\2\u03a3\u03a4\7f\2\2\u03a4"+ + "\u03a5\7g\2\2\u03a5\u03a6\7h\2\2\u03a6\u00c6\3\2\2\2\u03a7\u03a8\7%\2"+ + "\2\u03a8\u03a9\7k\2\2\u03a9\u03aa\7h\2\2\u03aa\u03ab\7p\2\2\u03ab\u03ac"+ + "\7f\2\2\u03ac\u03ad\7g\2\2\u03ad\u03ae\7h\2\2\u03ae\u00c8\3\2\2\2\u03af"+ + "\u03b0\7%\2\2\u03b0\u03b1\7k\2\2\u03b1\u03b2\7h\2\2\u03b2\u00ca\3\2\2"+ + "\2\u03b3\u03b4\7%\2\2\u03b4\u03b5\7g\2\2\u03b5\u03b6\7n\2\2\u03b6\u03b7"+ + "\7k\2\2\u03b7\u03b8\7h\2\2\u03b8\u00cc\3\2\2\2\u03b9\u03ba\7%\2\2\u03ba"+ + "\u03bb\7g\2\2\u03bb\u03bc\7n\2\2\u03bc\u03bd\7u\2\2\u03bd\u03be\7g\2\2"+ + "\u03be\u00ce\3\2\2\2\u03bf\u03c0\7%\2\2\u03c0\u03c1\7g\2\2\u03c1\u03c2"+ + "\7p\2\2\u03c2\u03c3\7f\2\2\u03c3\u03c4\7k\2\2\u03c4\u03c5\7h\2\2\u03c5"+ + "\u00d0\3\2\2\2\u03c6\u03c9\5\u00d3i\2\u03c7\u03c9\5\u00dbm\2\u03c8\u03c6"+ + "\3\2\2\2\u03c8\u03c7\3\2\2\2\u03c9\u00d2\3\2\2\2\u03ca\u03ce\5\u00d5j"+ + "\2\u03cb\u03ce\5\u00d7k\2\u03cc\u03ce\5\u00d9l\2\u03cd\u03ca\3\2\2\2\u03cd"+ + "\u03cb\3\2\2\2\u03cd\u03cc\3\2\2\2\u03ce\u00d4\3\2\2\2\u03cf\u03d5\7\'"+ + "\2\2\u03d0\u03d1\7\62\2\2\u03d1\u03d5\7d\2\2\u03d2\u03d3\7\62\2\2\u03d3"+ + "\u03d5\7D\2\2\u03d4\u03cf\3\2\2\2\u03d4\u03d0\3\2\2\2\u03d4\u03d2\3\2"+ + "\2\2\u03d5\u03d9\3\2\2\2\u03d6\u03d8\5\u00e3q\2\u03d7\u03d6\3\2\2\2\u03d8"+ + "\u03db\3\2\2\2\u03d9\u03d7\3\2\2\2\u03d9\u03da\3\2\2\2\u03da\u03dc\3\2"+ + "\2\2\u03db\u03d9\3\2\2\2\u03dc\u03de\7\60\2\2\u03dd\u03df\5\u00e3q\2\u03de"+ + "\u03dd\3\2\2\2\u03df\u03e0\3\2\2\2\u03e0\u03de\3\2\2\2\u03e0\u03e1\3\2"+ + "\2\2\u03e1\u00d6\3\2\2\2\u03e2\u03e4\5\u00e5r\2\u03e3\u03e2\3\2\2\2\u03e4"+ + "\u03e7\3\2\2\2\u03e5\u03e3\3\2\2\2\u03e5\u03e6\3\2\2\2\u03e6\u03e8\3\2"+ + "\2\2\u03e7\u03e5\3\2\2\2\u03e8\u03ea\7\60\2\2\u03e9\u03eb\5\u00e5r\2\u03ea"+ + "\u03e9\3\2\2\2\u03eb\u03ec\3\2\2\2\u03ec\u03ea\3\2\2\2\u03ec\u03ed\3\2"+ + "\2\2\u03ed\u00d8\3\2\2\2\u03ee\u03f4\7&\2\2\u03ef\u03f0\7\62\2\2\u03f0"+ + "\u03f4\7z\2\2\u03f1\u03f2\7\62\2\2\u03f2\u03f4\7Z\2\2\u03f3\u03ee\3\2"+ + "\2\2\u03f3\u03ef\3\2\2\2\u03f3\u03f1\3\2\2\2\u03f4\u03f8\3\2\2\2\u03f5"+ + "\u03f7\5\u00e7s\2\u03f6\u03f5\3\2\2\2\u03f7\u03fa\3\2\2\2\u03f8\u03f6"+ + "\3\2\2\2\u03f8\u03f9\3\2\2\2\u03f9\u03fb\3\2\2\2\u03fa\u03f8\3\2\2\2\u03fb"+ + "\u03fd\7\60\2\2\u03fc\u03fe\5\u00e7s\2\u03fd\u03fc\3\2\2\2\u03fe\u03ff"+ + "\3\2\2\2\u03ff\u03fd\3\2\2\2\u03ff\u0400\3\2\2\2\u0400\u00da\3\2\2\2\u0401"+ + "\u0405\5\u00dfo\2\u0402\u0405\5\u00e1p\2\u0403\u0405\5\u00ddn\2\u0404"+ + "\u0401\3\2\2\2\u0404\u0402\3\2\2\2\u0404\u0403\3\2\2\2\u0405\u0409\3\2"+ + "\2\2\u0406\u0407\t\2\2\2\u0407\u040a\t\3\2\2\u0408\u040a\7n\2\2\u0409"+ + "\u0406\3\2\2\2\u0409\u0408\3\2\2\2\u0409\u040a\3\2\2\2\u040a\u00dc\3\2"+ + "\2\2\u040b\u040c\7\62\2\2\u040c\u040e\t\4\2\2\u040d\u040f\5\u00e3q\2\u040e"+ + "\u040d\3\2\2\2\u040f\u0410\3\2\2\2\u0410\u040e\3\2\2\2\u0410\u0411\3\2"+ + "\2\2\u0411\u0419\3\2\2\2\u0412\u0414\7\'\2\2\u0413\u0415\5\u00e3q\2\u0414"+ + "\u0413\3\2\2\2\u0415\u0416\3\2\2\2\u0416\u0414\3\2\2\2\u0416\u0417\3\2"+ + "\2\2\u0417\u0419\3\2\2\2\u0418\u040b\3\2\2\2\u0418\u0412\3\2\2\2\u0419"+ + "\u00de\3\2\2\2\u041a\u041c\5\u00e5r\2\u041b\u041a\3\2\2\2\u041c\u041d"+ + "\3\2\2\2\u041d\u041b\3\2\2\2\u041d\u041e\3\2\2\2\u041e\u00e0\3\2\2\2\u041f"+ + "\u0425\7&\2\2\u0420\u0421\7\62\2\2\u0421\u0425\7z\2\2\u0422\u0423\7\62"+ + "\2\2\u0423\u0425\7Z\2\2\u0424\u041f\3\2\2\2\u0424\u0420\3\2\2\2\u0424"+ + "\u0422\3\2\2\2\u0425\u0427\3\2\2\2\u0426\u0428\5\u00e7s\2\u0427\u0426"+ + "\3\2\2\2\u0428\u0429\3\2\2\2\u0429\u0427\3\2\2\2\u0429\u042a\3\2\2\2\u042a"+ + "\u00e2\3\2\2\2\u042b\u042c\t\5\2\2\u042c\u00e4\3\2\2\2\u042d\u042e\t\6"+ + "\2\2\u042e\u00e6\3\2\2\2\u042f\u0430\t\7\2\2\u0430\u00e8\3\2\2\2\u0431"+ + "\u0435\5\u00ebu\2\u0432\u0434\5\u00edv\2\u0433\u0432\3\2\2\2\u0434\u0437"+ + "\3\2\2\2\u0435\u0433\3\2\2\2\u0435\u0436\3\2\2\2\u0436\u0438\3\2\2\2\u0437"+ + "\u0435\3\2\2\2\u0438\u0439\bt\6\2\u0439\u00ea\3\2\2\2\u043a\u043b\t\b"+ + "\2\2\u043b\u00ec\3\2\2\2\u043c\u043d\t\t\2\2\u043d\u00ee\3\2\2\2\u043e"+ + "\u0444\7$\2\2\u043f\u0440\7^\2\2\u0440\u0443\7$\2\2\u0441\u0443\n\n\2"+ + "\2\u0442\u043f\3\2\2\2\u0442\u0441\3\2\2\2\u0443\u0446\3\2\2\2\u0444\u0442"+ + "\3\2\2\2\u0444\u0445\3\2\2\2\u0445\u0447\3\2\2\2\u0446\u0444\3\2\2\2\u0447"+ + "\u0449\7$\2\2\u0448\u044a\t\13\2\2\u0449\u0448\3\2\2\2\u0449\u044a\3\2"+ + "\2\2\u044a\u044f\3\2\2\2\u044b\u044d\t\f\2\2\u044c\u044e\t\r\2\2\u044d"+ + "\u044c\3\2\2\2\u044d\u044e\3\2\2\2\u044e\u0450\3\2\2\2\u044f\u044b\3\2"+ + "\2\2\u044f\u0450\3\2\2\2\u0450\u0452\3\2\2\2\u0451\u0453\t\13\2\2\u0452"+ + "\u0451\3\2\2\2\u0452\u0453\3\2\2\2\u0453\u00f0\3\2\2\2\u0454\u045d\7)"+ + "\2\2\u0455\u045a\7^\2\2\u0456\u045b\t\16\2\2\u0457\u0458\7z\2\2\u0458"+ + "\u0459\t\17\2\2\u0459\u045b\t\17\2\2\u045a\u0456\3\2\2\2\u045a\u0457\3"+ + "\2\2\2\u045b\u045e\3\2\2\2\u045c\u045e\n\20\2\2\u045d\u0455\3\2\2\2\u045d"+ + "\u045c\3\2\2\2\u045e\u045f\3\2\2\2\u045f\u0460\7)\2\2\u0460\u00f2\3\2"+ + "\2\2\u0461\u0463\t\21\2\2\u0462\u0461\3\2\2\2\u0463\u0464\3\2\2\2\u0464"+ + "\u0462\3\2\2\2\u0464\u0465\3\2\2\2\u0465\u0466\3\2\2\2\u0466\u0467\by"+ + "\7\2\u0467\u00f4\3\2\2\2\u0468\u0469\7\61\2\2\u0469\u046a\7\61\2\2\u046a"+ + "\u046e\3\2\2\2\u046b\u046d\n\22\2\2\u046c\u046b\3\2\2\2\u046d\u0470\3"+ + "\2\2\2\u046e\u046c\3\2\2\2\u046e\u046f\3\2\2\2\u046f\u0471\3\2\2\2\u0470"+ + "\u046e\3\2\2\2\u0471\u0472\bz\b\2\u0472\u00f6\3\2\2\2\u0473\u0474\7\61"+ + "\2\2\u0474\u0475\7,\2\2\u0475\u0479\3\2\2\2\u0476\u0478\13\2\2\2\u0477"+ + "\u0476\3\2\2\2\u0478\u047b\3\2\2\2\u0479\u047a\3\2\2\2\u0479\u0477\3\2"+ + "\2\2\u047a\u047c\3\2\2\2\u047b\u0479\3\2\2\2\u047c\u047d\7,\2\2\u047d"+ + "\u047e\7\61\2\2\u047e\u047f\3\2\2\2\u047f\u0480\b{\b\2\u0480\u00f8\3\2"+ + "\2\2\u0481\u0482\7\60\2\2\u0482\u0483\7d\2\2\u0483\u0484\7{\2\2\u0484"+ + "\u0485\7v\2\2\u0485\u0486\7g\2\2\u0486\u00fa\3\2\2\2\u0487\u0488\7d\2"+ + "\2\u0488\u0489\7t\2\2\u0489\u0566\7m\2\2\u048a\u048b\7q\2\2\u048b\u048c"+ + "\7t\2\2\u048c\u0566\7c\2\2\u048d\u048e\7m\2\2\u048e\u048f\7k\2\2\u048f"+ + "\u0566\7n\2\2\u0490\u0491\7u\2\2\u0491\u0492\7n\2\2\u0492\u0566\7q\2\2"+ + "\u0493\u0494\7p\2\2\u0494\u0495\7q\2\2\u0495\u0566\7r\2\2\u0496\u0497"+ + "\7c\2\2\u0497\u0498\7u\2\2\u0498\u0566\7n\2\2\u0499\u049a\7r\2\2\u049a"+ + "\u049b\7j\2\2\u049b\u0566\7r\2\2\u049c\u049d\7c\2\2\u049d\u049e\7p\2\2"+ + "\u049e\u0566\7e\2\2\u049f\u04a0\7d\2\2\u04a0\u04a1\7r\2\2\u04a1\u0566"+ + "\7n\2\2\u04a2\u04a3\7e\2\2\u04a3\u04a4\7n\2\2\u04a4\u0566\7e\2\2\u04a5"+ + "\u04a6\7l\2\2\u04a6\u04a7\7u\2\2\u04a7\u0566\7t\2\2\u04a8\u04a9\7c\2\2"+ + "\u04a9\u04aa\7p\2\2\u04aa\u0566\7f\2\2\u04ab\u04ac\7t\2\2\u04ac\u04ad"+ + "\7n\2\2\u04ad\u0566\7c\2\2\u04ae\u04af\7d\2\2\u04af\u04b0\7k\2\2\u04b0"+ + "\u0566\7v\2\2\u04b1\u04b2\7t\2\2\u04b2\u04b3\7q\2\2\u04b3\u0566\7n\2\2"+ + "\u04b4\u04b5\7r\2\2\u04b5\u04b6\7n\2\2\u04b6\u0566\7c\2\2\u04b7\u04b8"+ + "\7r\2\2\u04b8\u04b9\7n\2\2\u04b9\u0566\7r\2\2\u04ba\u04bb\7d\2\2\u04bb"+ + "\u04bc\7o\2\2\u04bc\u0566\7k\2\2\u04bd\u04be\7u\2\2\u04be\u04bf\7g\2\2"+ + "\u04bf\u0566\7e\2\2\u04c0\u04c1\7t\2\2\u04c1\u04c2\7v\2\2\u04c2\u0566"+ + "\7k\2\2\u04c3\u04c4\7g\2\2\u04c4\u04c5\7q\2\2\u04c5\u0566\7t\2\2\u04c6"+ + "\u04c7\7u\2\2\u04c7\u04c8\7t\2\2\u04c8\u0566\7g\2\2\u04c9\u04ca\7n\2\2"+ + "\u04ca\u04cb\7u\2\2\u04cb\u0566\7t\2\2\u04cc\u04cd\7r\2\2\u04cd\u04ce"+ + "\7j\2\2\u04ce\u0566\7c\2\2\u04cf\u04d0\7c\2\2\u04d0\u04d1\7n\2\2\u04d1"+ + "\u0566\7t\2\2\u04d2\u04d3\7l\2\2\u04d3\u04d4\7o\2\2\u04d4\u0566\7r\2\2"+ + "\u04d5\u04d6\7d\2\2\u04d6\u04d7\7x\2\2\u04d7\u0566\7e\2\2\u04d8\u04d9"+ + "\7e\2\2\u04d9\u04da\7n\2\2\u04da\u0566\7k\2\2\u04db\u04dc\7t\2\2\u04dc"+ + "\u04dd\7v\2\2\u04dd\u0566\7u\2\2\u04de\u04df\7c\2\2\u04df\u04e0\7f\2\2"+ + "\u04e0\u0566\7e\2\2\u04e1\u04e2\7t\2\2\u04e2\u04e3\7t\2\2\u04e3\u0566"+ + "\7c\2\2\u04e4\u04e5\7d\2\2\u04e5\u04e6\7x\2\2\u04e6\u0566\7u\2\2\u04e7"+ + "\u04e8\7u\2\2\u04e8\u04e9\7g\2\2\u04e9\u0566\7k\2\2\u04ea\u04eb\7u\2\2"+ + "\u04eb\u04ec\7c\2\2\u04ec\u0566\7z\2\2\u04ed\u04ee\7u\2\2\u04ee\u04ef"+ + "\7v\2\2\u04ef\u0566\7{\2\2\u04f0\u04f1\7u\2\2\u04f1\u04f2\7v\2\2\u04f2"+ + "\u0566\7c\2\2\u04f3\u04f4\7u\2\2\u04f4\u04f5\7v\2\2\u04f5\u0566\7z\2\2"+ + "\u04f6\u04f7\7f\2\2\u04f7\u04f8\7g\2\2\u04f8\u0566\7{\2\2\u04f9\u04fa"+ + "\7v\2\2\u04fa\u04fb\7z\2\2\u04fb\u0566\7c\2\2\u04fc\u04fd\7z\2\2\u04fd"+ + "\u04fe\7c\2\2\u04fe\u0566\7c\2\2\u04ff\u0500\7d\2\2\u0500\u0501\7e\2\2"+ + "\u0501\u0566\7e\2\2\u0502\u0503\7c\2\2\u0503\u0504\7j\2\2\u0504\u0566"+ + "\7z\2\2\u0505\u0506\7v\2\2\u0506\u0507\7{\2\2\u0507\u0566\7c\2\2\u0508"+ + "\u0509\7v\2\2\u0509\u050a\7z\2\2\u050a\u0566\7u\2\2\u050b\u050c\7v\2\2"+ + "\u050c\u050d\7c\2\2\u050d\u0566\7u\2\2\u050e\u050f\7u\2\2\u050f\u0510"+ + "\7j\2\2\u0510\u0566\7{\2\2\u0511\u0512\7u\2\2\u0512\u0513\7j\2\2\u0513"+ + "\u0566\7z\2\2\u0514\u0515\7n\2\2\u0515\u0516\7f\2\2\u0516\u0566\7{\2\2"+ + "\u0517\u0518\7n\2\2\u0518\u0519\7f\2\2\u0519\u0566\7c\2\2\u051a\u051b"+ + "\7n\2\2\u051b\u051c\7f\2\2\u051c\u0566\7z\2\2\u051d\u051e\7n\2\2\u051e"+ + "\u051f\7c\2\2\u051f\u0566\7z\2\2\u0520\u0521\7v\2\2\u0521\u0522\7c\2\2"+ + "\u0522\u0566\7{\2\2\u0523\u0524\7v\2\2\u0524\u0525\7c\2\2\u0525\u0566"+ + "\7z\2\2\u0526\u0527\7d\2\2\u0527\u0528\7e\2\2\u0528\u0566\7u\2\2\u0529"+ + "\u052a\7e\2\2\u052a\u052b\7n\2\2\u052b\u0566\7x\2\2\u052c\u052d\7v\2\2"+ + "\u052d\u052e\7u\2\2\u052e\u0566\7z\2\2\u052f\u0530\7n\2\2\u0530\u0531"+ + "\7c\2\2\u0531\u0566\7u\2\2\u0532\u0533\7e\2\2\u0533\u0534\7r\2\2\u0534"+ + "\u0566\7{\2\2\u0535\u0536\7e\2\2\u0536\u0537\7o\2\2\u0537\u0566\7r\2\2"+ + "\u0538\u0539\7e\2\2\u0539\u053a\7r\2\2\u053a\u0566\7z\2\2\u053b\u053c"+ + "\7f\2\2\u053c\u053d\7e\2\2\u053d\u0566\7r\2\2\u053e\u053f\7f\2\2\u053f"+ + "\u0540\7g\2\2\u0540\u0566\7e\2\2\u0541\u0542\7k\2\2\u0542\u0543\7p\2\2"+ + "\u0543\u0566\7e\2\2\u0544\u0545\7c\2\2\u0545\u0546\7z\2\2\u0546\u0566"+ + "\7u\2\2\u0547\u0548\7d\2\2\u0548\u0549\7p\2\2\u0549\u0566\7g\2\2\u054a"+ + "\u054b\7e\2\2\u054b\u054c\7n\2\2\u054c\u0566\7f\2\2\u054d\u054e\7u\2\2"+ + "\u054e\u054f\7d\2\2\u054f\u0566\7e\2\2\u0550\u0551\7k\2\2\u0551\u0552"+ + "\7u\2\2\u0552\u0566\7e\2\2\u0553\u0554\7k\2\2\u0554\u0555\7p\2\2\u0555"+ + "\u0566\7z\2\2\u0556\u0557\7d\2\2\u0557\u0558\7g\2\2\u0558\u0566\7s\2\2"+ + "\u0559\u055a\7u\2\2\u055a\u055b\7g\2\2\u055b\u0566\7f\2\2\u055c\u055d"+ + "\7f\2\2\u055d\u055e\7g\2\2\u055e\u0566\7z\2\2\u055f\u0560\7k\2\2\u0560"+ + "\u0561\7p\2\2\u0561\u0566\7{\2\2\u0562\u0563\7t\2\2\u0563\u0564\7q\2\2"+ + "\u0564\u0566\7t\2\2\u0565\u0487\3\2\2\2\u0565\u048a\3\2\2\2\u0565\u048d"+ + "\3\2\2\2\u0565\u0490\3\2\2\2\u0565\u0493\3\2\2\2\u0565\u0496\3\2\2\2\u0565"+ + "\u0499\3\2\2\2\u0565\u049c\3\2\2\2\u0565\u049f\3\2\2\2\u0565\u04a2\3\2"+ + "\2\2\u0565\u04a5\3\2\2\2\u0565\u04a8\3\2\2\2\u0565\u04ab\3\2\2\2\u0565"+ + "\u04ae\3\2\2\2\u0565\u04b1\3\2\2\2\u0565\u04b4\3\2\2\2\u0565\u04b7\3\2"+ + "\2\2\u0565\u04ba\3\2\2\2\u0565\u04bd\3\2\2\2\u0565\u04c0\3\2\2\2\u0565"+ + "\u04c3\3\2\2\2\u0565\u04c6\3\2\2\2\u0565\u04c9\3\2\2\2\u0565\u04cc\3\2"+ + "\2\2\u0565\u04cf\3\2\2\2\u0565\u04d2\3\2\2\2\u0565\u04d5\3\2\2\2\u0565"+ + "\u04d8\3\2\2\2\u0565\u04db\3\2\2\2\u0565\u04de\3\2\2\2\u0565\u04e1\3\2"+ + "\2\2\u0565\u04e4\3\2\2\2\u0565\u04e7\3\2\2\2\u0565\u04ea\3\2\2\2\u0565"+ + "\u04ed\3\2\2\2\u0565\u04f0\3\2\2\2\u0565\u04f3\3\2\2\2\u0565\u04f6\3\2"+ + "\2\2\u0565\u04f9\3\2\2\2\u0565\u04fc\3\2\2\2\u0565\u04ff\3\2\2\2\u0565"+ + "\u0502\3\2\2\2\u0565\u0505\3\2\2\2\u0565\u0508\3\2\2\2\u0565\u050b\3\2"+ + "\2\2\u0565\u050e\3\2\2\2\u0565\u0511\3\2\2\2\u0565\u0514\3\2\2\2\u0565"+ + "\u0517\3\2\2\2\u0565\u051a\3\2\2\2\u0565\u051d\3\2\2\2\u0565\u0520\3\2"+ + "\2\2\u0565\u0523\3\2\2\2\u0565\u0526\3\2\2\2\u0565\u0529\3\2\2\2\u0565"+ + "\u052c\3\2\2\2\u0565\u052f\3\2\2\2\u0565\u0532\3\2\2\2\u0565\u0535\3\2"+ + "\2\2\u0565\u0538\3\2\2\2\u0565\u053b\3\2\2\2\u0565\u053e\3\2\2\2\u0565"+ + "\u0541\3\2\2\2\u0565\u0544\3\2\2\2\u0565\u0547\3\2\2\2\u0565\u054a\3\2"+ + "\2\2\u0565\u054d\3\2\2\2\u0565\u0550\3\2\2\2\u0565\u0553\3\2\2\2\u0565"+ + "\u0556\3\2\2\2\u0565\u0559\3\2\2\2\u0565\u055c\3\2\2\2\u0565\u055f\3\2"+ + "\2\2\u0565\u0562\3\2\2\2\u0566\u00fc\3\2\2\2\u0567\u0568\7%\2\2\u0568"+ + "\u00fe\3\2\2\2\u0569\u056a\7<\2\2\u056a\u0100\3\2\2\2\u056b\u056c\7.\2"+ + "\2\u056c\u0102\3\2\2\2\u056d\u056e\7*\2\2\u056e\u0104\3\2\2\2\u056f\u0570"+ + "\7+\2\2\u0570\u0106\3\2\2\2\u0571\u0572\7]\2\2\u0572\u0108\3\2\2\2\u0573"+ + "\u0574\7_\2\2\u0574\u010a\3\2\2\2\u0575\u0576\7\60\2\2\u0576\u010c\3\2"+ + "\2\2\u0577\u0578\7>\2\2\u0578\u0579\7>\2\2\u0579\u010e\3\2\2\2\u057a\u057b"+ + "\7@\2\2\u057b\u057c\7@\2\2\u057c\u0110\3\2\2\2\u057d\u057e\7-\2\2\u057e"+ + "\u0112\3\2\2\2\u057f\u0580\7/\2\2\u0580\u0114\3\2\2\2\u0581\u0582\7>\2"+ + "\2\u0582\u0116\3\2\2\2\u0583\u0584\7@\2\2\u0584\u0118\3\2\2\2\u0585\u0586"+ + "\7,\2\2\u0586\u011a\3\2\2\2\u0587\u0588\7\61\2\2\u0588\u011c\3\2\2\2\u0589"+ + "\u058a\7}\2\2\u058a\u058b\b\u008e\t\2\u058b\u011e\3\2\2\2\u058c\u058d"+ + "\7\177\2\2\u058d\u058e\b\u008f\n\2\u058e\u0120\3\2\2\2\u058f\u0592\5\u0123"+ + "\u0091\2\u0590\u0592\5\u012b\u0095\2\u0591\u058f\3\2\2\2\u0591\u0590\3"+ + "\2\2\2\u0592\u0122\3\2\2\2\u0593\u0597\5\u0125\u0092\2\u0594\u0597\5\u0127"+ + "\u0093\2\u0595\u0597\5\u0129\u0094\2\u0596\u0593\3\2\2\2\u0596\u0594\3"+ + "\2\2\2\u0596\u0595\3\2\2\2\u0597\u0124\3\2\2\2\u0598\u059c\7\'\2\2\u0599"+ + "\u059b\5\u0133\u0099\2\u059a\u0599\3\2\2\2\u059b\u059e\3\2\2\2\u059c\u059a"+ + "\3\2\2\2\u059c\u059d\3\2\2\2\u059d\u059f\3\2\2\2\u059e\u059c\3\2\2\2\u059f"+ + "\u05a1\7\60\2\2\u05a0\u05a2\5\u0133\u0099\2\u05a1\u05a0\3\2\2\2\u05a2"+ + "\u05a3\3\2\2\2\u05a3\u05a1\3\2\2\2\u05a3\u05a4\3\2\2\2\u05a4\u0126\3\2"+ + "\2\2\u05a5\u05a7\5\u0135\u009a\2\u05a6\u05a5\3\2\2\2\u05a7\u05aa\3\2\2"+ + "\2\u05a8\u05a6\3\2\2\2\u05a8\u05a9\3\2\2\2\u05a9\u05ab\3\2\2\2\u05aa\u05a8"+ + "\3\2\2\2\u05ab\u05ad\7\60\2\2\u05ac\u05ae\5\u0135\u009a\2\u05ad\u05ac"+ + "\3\2\2\2\u05ae\u05af\3\2\2\2\u05af\u05ad\3\2\2\2\u05af\u05b0\3\2\2\2\u05b0"+ + "\u0128\3\2\2\2\u05b1\u05b5\7&\2\2\u05b2\u05b4\5\u0137\u009b\2\u05b3\u05b2"+ + "\3\2\2\2\u05b4\u05b7\3\2\2\2\u05b5\u05b3\3\2\2\2\u05b5\u05b6\3\2\2\2\u05b6"+ + "\u05b8\3\2\2\2\u05b7\u05b5\3\2\2\2\u05b8\u05ba\7\60\2\2\u05b9\u05bb\5"+ + "\u0137\u009b\2\u05ba\u05b9\3\2\2\2\u05bb\u05bc\3\2\2\2\u05bc\u05ba\3\2"+ + "\2\2\u05bc\u05bd\3\2\2\2\u05bd\u012a\3\2\2\2\u05be\u05c2\5\u012f\u0097"+ + "\2\u05bf\u05c2\5\u0131\u0098\2\u05c0\u05c2\5\u012d\u0096\2\u05c1\u05be"+ + "\3\2\2\2\u05c1\u05bf\3\2\2\2\u05c1\u05c0\3\2\2\2\u05c2\u012c\3\2\2\2\u05c3"+ + "\u05c5\7\'\2\2\u05c4\u05c6\5\u0133\u0099\2\u05c5\u05c4\3\2\2\2\u05c6\u05c7"+ + "\3\2\2\2\u05c7\u05c5\3\2\2\2\u05c7\u05c8\3\2\2\2\u05c8\u012e\3\2\2\2\u05c9"+ + "\u05cb\5\u0135\u009a\2\u05ca\u05c9\3\2\2\2\u05cb\u05cc\3\2\2\2\u05cc\u05ca"+ + "\3\2\2\2\u05cc\u05cd\3\2\2\2\u05cd\u0130\3\2\2\2\u05ce\u05d0\7&\2\2\u05cf"+ + "\u05d1\5\u0137\u009b\2\u05d0\u05cf\3\2\2\2\u05d1\u05d2\3\2\2\2\u05d2\u05d0"+ + "\3\2\2\2\u05d2\u05d3\3\2\2\2\u05d3\u0132\3\2\2\2\u05d4\u05d5\t\5\2\2\u05d5"+ + "\u0134\3\2\2\2\u05d6\u05d7\t\6\2\2\u05d7\u0136\3\2\2\2\u05d8\u05d9\t\7"+ + "\2\2\u05d9\u0138\3\2\2\2\u05da\u05de\7)\2\2\u05db\u05dc\7^\2\2\u05dc\u05df"+ + "\t\16\2\2\u05dd\u05df\n\20\2\2\u05de\u05db\3\2\2\2\u05de\u05dd\3\2\2\2"+ + "\u05df\u05e0\3\2\2\2\u05e0\u05e1\7)\2\2\u05e1\u013a\3\2\2\2\u05e2\u05e4"+ + "\5\u013d\u009e\2\u05e3\u05e5\t\23\2\2\u05e4\u05e3\3\2\2\2\u05e5\u05e6"+ + "\3\2\2\2\u05e6\u05e4\3\2\2\2\u05e6\u05e7\3\2\2\2\u05e7\u013c\3\2\2\2\u05e8"+ + "\u05ec\7#\2\2\u05e9\u05eb\5\u0143\u00a1\2\u05ea\u05e9\3\2\2\2\u05eb\u05ee"+ + "\3\2\2\2\u05ec\u05ea\3\2\2\2\u05ec\u05ed\3\2\2\2\u05ed\u013e\3\2\2\2\u05ee"+ + "\u05ec\3\2\2\2\u05ef\u05f3\5\u0141\u00a0\2\u05f0\u05f2\5\u0143\u00a1\2"+ + "\u05f1\u05f0\3\2\2\2\u05f2\u05f5\3\2\2\2\u05f3\u05f1\3\2\2\2\u05f3\u05f4"+ + "\3\2\2\2\u05f4\u0140\3\2\2\2\u05f5\u05f3\3\2\2\2\u05f6\u05f7\t\b\2\2\u05f7"+ + "\u0142\3\2\2\2\u05f8\u05f9\t\t\2\2\u05f9\u0144\3\2\2\2\u05fa\u05fc\t\21"+ + "\2\2\u05fb\u05fa\3\2\2\2\u05fc\u05fd\3\2\2\2\u05fd\u05fb\3\2\2\2\u05fd"+ + "\u05fe\3\2\2\2\u05fe\u05ff\3\2\2\2\u05ff\u0600\b\u00a2\7\2\u0600\u0146"+ + "\3\2\2\2\u0601\u0602\7\61\2\2\u0602\u0603\7\61\2\2\u0603\u0607\3\2\2\2"+ + "\u0604\u0606\n\22\2\2\u0605\u0604\3\2\2\2\u0606\u0609\3\2\2\2\u0607\u0605"+ + "\3\2\2\2\u0607\u0608\3\2\2\2\u0608\u060a\3\2\2\2\u0609\u0607\3\2\2\2\u060a"+ + "\u060b\b\u00a3\b\2\u060b\u0148\3\2\2\2\u060c\u060d\7\61\2\2\u060d\u060e"+ + "\7,\2\2\u060e\u0612\3\2\2\2\u060f\u0611\13\2\2\2\u0610\u060f\3\2\2\2\u0611"+ + "\u0614\3\2\2\2\u0612\u0613\3\2\2\2\u0612\u0610\3\2\2\2\u0613\u0615\3\2"+ + "\2\2\u0614\u0612\3\2\2\2\u0615\u0616\7,\2\2\u0616\u0617\7\61\2\2\u0617"+ + "\u0618\3\2\2\2\u0618\u0619\b\u00a4\b\2\u0619\u014a\3\2\2\2\u061a\u061c"+ + "\7>\2\2\u061b\u061d\t\24\2\2\u061c\u061b\3\2\2\2\u061d\u061e\3\2\2\2\u061e"+ + "\u061c\3\2\2\2\u061e\u061f\3\2\2\2\u061f\u0620\3\2\2\2\u0620\u0621\7@"+ + "\2\2\u0621\u0622\b\u00a5\13\2\u0622\u014c\3\2\2\2\u0623\u0629\7$\2\2\u0624"+ + "\u0625\7^\2\2\u0625\u0628\7$\2\2\u0626\u0628\n\n\2\2\u0627\u0624\3\2\2"+ + "\2\u0627\u0626\3\2\2\2\u0628\u062b\3\2\2\2\u0629\u0627\3\2\2\2\u0629\u062a"+ + "\3\2\2\2\u062a\u062c\3\2\2\2\u062b\u0629\3\2\2\2\u062c\u062d\7$\2\2\u062d"+ + "\u062e\b\u00a6\f\2\u062e\u014e\3\2\2\2\u062f\u0631\t\21\2\2\u0630\u062f"+ + "\3\2\2\2\u0631\u0632\3\2\2\2\u0632\u0630\3\2\2\2\u0632\u0633\3\2\2\2\u0633"+ + "\u0634\3\2\2\2\u0634\u0635\b\u00a7\7\2\u0635\u0150\3\2\2\2\u0636\u0637"+ + "\7\61\2\2\u0637\u0638\7\61\2\2\u0638\u063c\3\2\2\2\u0639\u063b\n\22\2"+ + "\2\u063a\u0639\3\2\2\2\u063b\u063e\3\2\2\2\u063c\u063a\3\2\2\2\u063c\u063d"+ + "\3\2\2\2\u063d\u063f\3\2\2\2\u063e\u063c\3\2\2\2\u063f\u0640\b\u00a8\b"+ + "\2\u0640\u0152\3\2\2\2\u0641\u0642\7\61\2\2\u0642\u0643\7,\2\2\u0643\u0647"+ + "\3\2\2\2\u0644\u0646\13\2\2\2\u0645\u0644\3\2\2\2\u0646\u0649\3\2\2\2"+ + "\u0647\u0648\3\2\2\2\u0647\u0645\3\2\2\2\u0648\u064a\3\2\2\2\u0649\u0647"+ + "\3\2\2\2\u064a\u064b\7,\2\2\u064b\u064c\7\61\2\2\u064c\u064d\3\2\2\2\u064d"+ + "\u064e\b\u00a9\b\2\u064e\u0154\3\2\2\2D\2\3\4\u01be\u027e\u032d\u0354"+ + "\u035f\u0367\u0397\u03c8\u03cd\u03d4\u03d9\u03e0\u03e5\u03ec\u03f3\u03f8"+ + "\u03ff\u0404\u0409\u0410\u0416\u0418\u041d\u0424\u0429\u0435\u0442\u0444"+ + "\u0449\u044d\u044f\u0452\u045a\u045d\u0464\u046e\u0479\u0565\u0591\u0596"+ + "\u059c\u05a3\u05a8\u05af\u05b5\u05bc\u05c1\u05c7\u05cc\u05d2\u05de\u05e6"+ + "\u05ec\u05f3\u05fd\u0607\u0612\u061e\u0627\u0629\u0632\u063c\u0647\r\3"+ + "\2\2\3I\3\3\\\4\3]\5\3t\6\2\3\2\2\4\2\3\u008e\7\3\u008f\b\3\u00a5\t\3"+ + "\u00a6\n"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index a7875376e..1485ac695 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -153,7 +153,7 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor getEncoding(Value value) { - LinkedHashSet encodings = new LinkedHashSet<>(); + private static Set getEncoding(Value value) { + LinkedHashSet encodings = new LinkedHashSet<>(); ProgramValue programValue = new ProgramValue.GenericValue(value); ProgramValueHandler handler = (ProgramValue pVal, Statement currentStmt, ListIterator stmtIt, ControlFlowBlock currentBlock) -> { Value val = pVal.get(); @@ -1183,8 +1183,8 @@ public class Pass4CodeGeneration { * @param asmFragmentInstance The asm fragment instance to examine * @return Any encoding found inside the constant */ - private static Set getEncoding(AsmFragmentInstanceSpecFactory asmFragmentInstance) { - LinkedHashSet encodings = new LinkedHashSet<>(); + private static Set getEncoding(AsmFragmentInstanceSpecFactory asmFragmentInstance) { + LinkedHashSet encodings = new LinkedHashSet<>(); Map bindings = asmFragmentInstance.getBindings(); for(Value boundValue : bindings.values()) { encodings.addAll(getEncoding(boundValue)); diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index 90c56d274..e916ced33 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -641,6 +641,11 @@ public class TestPrograms { compileAndCompare("code-after-return"); } + @Test + public void testStringEscapesErr2() throws IOException, URISyntaxException { + assertError("string-escapes-err-2", "No character 0xff in encoding petscii_mixed"); + } + @Test public void testStringEscapesErr1() throws IOException, URISyntaxException { assertError("string-escapes-err-1", "Illegal string escape sequence"); @@ -651,6 +656,11 @@ public class TestPrograms { assertError("string-escapes-err-0", "Unfinished string escape sequence at end of string"); } + @Test + public void testStringEscapes4() throws IOException, URISyntaxException { + compileAndCompare("string-escapes-4"); + } + @Test public void testStringEscapes3() throws IOException, URISyntaxException { compileAndCompare("string-escapes-3"); diff --git a/src/test/kc/string-escapes-4.kc b/src/test/kc/string-escapes-4.kc new file mode 100644 index 000000000..d397cd606 --- /dev/null +++ b/src/test/kc/string-escapes-4.kc @@ -0,0 +1,29 @@ +// Test using some simple supported string escape +// Uses \xnn to add chars by hex-code + +#pragma encoding(petscii_mixed) +char MSG1[] = "c\x41m\x45lot"; + +#pragma encoding(screencode_upper) +char MSG2[] = "C\x01M\x05LOT"; + +char CH = '\x10'; + +char* SCREEN1 = 0x0400; +char* SCREEN2 = 0x0428; +char* SCREEN3 = 0x0428; + +void main() { + // Show mixed chars on screen + *((char*)0xd018) = 0x17; + + char i=0; + while(MSG1[i]) { + SCREEN1[i] = MSG1[i]; + SCREEN2[i] = MSG2[i]; + i++; + } + + SCREEN3[0] = CH; + +} diff --git a/src/test/kc/string-escapes-err-2.kc b/src/test/kc/string-escapes-err-2.kc new file mode 100644 index 000000000..95731a594 --- /dev/null +++ b/src/test/kc/string-escapes-err-2.kc @@ -0,0 +1,8 @@ +// Test errors using string escape sequences +// Unsupported hex character sequence + +#pragma encoding(petscii_mixed) +char MESSAGE[] = "qwe\xff"; + +void main() { +} \ No newline at end of file diff --git a/src/test/ref/string-escapes-4.asm b/src/test/ref/string-escapes-4.asm new file mode 100644 index 000000000..db41a24fb --- /dev/null +++ b/src/test/ref/string-escapes-4.asm @@ -0,0 +1,43 @@ +// Test using some simple supported string escape +// Uses \xnn to add chars by hex-code +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" +.encoding "screencode_upper" + .const CH = 'P' + .label SCREEN1 = $400 + .label SCREEN2 = $428 + .label SCREEN3 = $428 +main: { + // *((char*)0xd018) = 0x17 + // Show mixed chars on screen + lda #$17 + sta $d018 + ldx #0 + __b1: + // while(MSG1[i]) + lda MSG1,x + cmp #0 + bne __b2 + // SCREEN3[0] = CH + lda #CH + sta SCREEN3 + // } + rts + __b2: + // SCREEN1[i] = MSG1[i] + lda MSG1,x + sta SCREEN1,x + // SCREEN2[i] = MSG2[i] + lda MSG2,x + sta SCREEN2,x + // i++; + inx + jmp __b1 +} +.encoding "petscii_mixed" + MSG1: .text "cAmElot" + .byte 0 +.encoding "screencode_upper" + MSG2: .text "CAMELOT" + .byte 0 diff --git a/src/test/ref/string-escapes-4.cfg b/src/test/ref/string-escapes-4.cfg new file mode 100644 index 000000000..c0d498ac3 --- /dev/null +++ b/src/test/ref/string-escapes-4.cfg @@ -0,0 +1,29 @@ +@begin: scope:[] from + [0] phi() + to:@1 +@1: scope:[] from @begin + [1] phi() + [2] call main + to:@end +@end: scope:[] from @1 + [3] phi() + +(void()) main() +main: scope:[main] from @1 + [4] *((byte*) 53272) ← (byte) $17 + to:main::@1 +main::@1: scope:[main] from main main::@2 + [5] (byte) main::i#2 ← phi( main/(byte) 0 main::@2/(byte) main::i#1 ) + [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 + to:main::@3 +main::@3: scope:[main] from main::@1 + [7] *((const byte*) SCREEN3) ← (const byte) CH + to:main::@return +main::@return: scope:[main] from main::@3 + [8] return + to:@return +main::@2: scope:[main] from main::@1 + [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) + [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) + [11] (byte) main::i#1 ← ++ (byte) main::i#2 + to:main::@1 diff --git a/src/test/ref/string-escapes-4.log b/src/test/ref/string-escapes-4.log new file mode 100644 index 000000000..fdacb0a47 --- /dev/null +++ b/src/test/ref/string-escapes-4.log @@ -0,0 +1,456 @@ +Warning! Adding boolean cast to non-boolean condition *((const byte*) MSG1 + (byte) main::i) +Identified constant variable (byte) CH +Identified constant variable (byte*) SCREEN1 +Identified constant variable (byte*) SCREEN2 +Identified constant variable (byte*) SCREEN3 +Culled Empty Block (label) main::@4 +Culled Empty Block (label) main::@5 +Culled Empty Block (label) main::@6 + +CONTROL FLOW GRAPH SSA +@begin: scope:[] from + to:@1 + +(void()) main() +main: scope:[main] from @1 + *((byte*)(number) $d018) ← (number) $17 + (byte) main::i#0 ← (byte) 0 + to:main::@1 +main::@1: scope:[main] from main main::@2 + (byte) main::i#2 ← phi( main/(byte) main::i#0 main::@2/(byte) main::i#1 ) + (bool~) main::$0 ← (number) 0 != *((const byte*) MSG1 + (byte) main::i#2) + if((bool~) main::$0) goto main::@2 + to:main::@3 +main::@2: scope:[main] from main::@1 + (byte) main::i#3 ← phi( main::@1/(byte) main::i#2 ) + *((const byte*) SCREEN1 + (byte) main::i#3) ← *((const byte*) MSG1 + (byte) main::i#3) + *((const byte*) SCREEN2 + (byte) main::i#3) ← *((const byte*) MSG2 + (byte) main::i#3) + (byte) main::i#1 ← ++ (byte) main::i#3 + to:main::@1 +main::@3: scope:[main] from main::@1 + *((const byte*) SCREEN3 + (number) 0) ← (const byte) CH + to:main::@return +main::@return: scope:[main] from main::@3 + return + to:@return +@1: scope:[] from @begin + call main + to:@2 +@2: scope:[] from @1 + to:@end +@end: scope:[] from @2 + +SYMBOL TABLE SSA +(label) @1 +(label) @2 +(label) @begin +(label) @end +(const byte) CH = (byte) 'P'su +(const byte*) MSG1[] = (byte*) "cAmElot"pm +(const byte*) MSG2[] = (byte*) "CAMELOT"su +(const byte*) SCREEN1 = (byte*)(number) $400 +(const byte*) SCREEN2 = (byte*)(number) $428 +(const byte*) SCREEN3 = (byte*)(number) $428 +(void()) main() +(bool~) main::$0 +(label) main::@1 +(label) main::@2 +(label) main::@3 +(label) main::@return +(byte) main::i +(byte) main::i#0 +(byte) main::i#1 +(byte) main::i#2 +(byte) main::i#3 + +Adding number conversion cast (unumber) $17 in *((byte*)(number) $d018) ← (number) $17 +Adding number conversion cast (unumber) 0 in (bool~) main::$0 ← (number) 0 != *((const byte*) MSG1 + (byte) main::i#2) +Adding number conversion cast (unumber) 0 in *((const byte*) SCREEN3 + (number) 0) ← (const byte) CH +Successful SSA optimization PassNAddNumberTypeConversions +Inlining cast *((byte*)(number) $d018) ← (unumber)(number) $17 +Successful SSA optimization Pass2InlineCast +Simplifying constant pointer cast (byte*) 1024 +Simplifying constant pointer cast (byte*) 1064 +Simplifying constant pointer cast (byte*) 1064 +Simplifying constant integer cast $17 +Simplifying constant pointer cast (byte*) 53272 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) $17 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Alias main::i#2 = main::i#3 +Successful SSA optimization Pass2AliasElimination +Simple Condition (bool~) main::$0 [4] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 +Successful SSA optimization Pass2ConditionalJumpSimplification +Constant (const byte) main::i#0 = 0 +Successful SSA optimization Pass2ConstantIdentification +Simplifying expression containing zero SCREEN3 in [8] *((const byte*) SCREEN3 + (byte) 0) ← (const byte) CH +Successful SSA optimization PassNSimplifyExpressionWithZero +Inlining constant with var siblings (const byte) main::i#0 +Constant inlined main::i#0 = (byte) 0 +Successful SSA optimization Pass2ConstantInlining +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @2 +Adding NOP phi() at start of @end +CALL GRAPH +Calls in [] to main:2 + +Created 1 initial phi equivalence classes +Coalesced [13] main::i#4 ← main::i#1 +Coalesced down to 1 phi equivalence classes +Culled Empty Block (label) @2 +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @end + +FINAL CONTROL FLOW GRAPH +@begin: scope:[] from + [0] phi() + to:@1 +@1: scope:[] from @begin + [1] phi() + [2] call main + to:@end +@end: scope:[] from @1 + [3] phi() + +(void()) main() +main: scope:[main] from @1 + [4] *((byte*) 53272) ← (byte) $17 + to:main::@1 +main::@1: scope:[main] from main main::@2 + [5] (byte) main::i#2 ← phi( main/(byte) 0 main::@2/(byte) main::i#1 ) + [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 + to:main::@3 +main::@3: scope:[main] from main::@1 + [7] *((const byte*) SCREEN3) ← (const byte) CH + to:main::@return +main::@return: scope:[main] from main::@3 + [8] return + to:@return +main::@2: scope:[main] from main::@1 + [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) + [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) + [11] (byte) main::i#1 ← ++ (byte) main::i#2 + to:main::@1 + + +VARIABLE REGISTER WEIGHTS +(void()) main() +(byte) main::i +(byte) main::i#1 202.0 +(byte) main::i#2 176.75 + +Initial phi equivalence classes +[ main::i#2 main::i#1 ] +Complete equivalence classes +[ main::i#2 main::i#1 ] +Allocated zp[1]:2 [ main::i#2 main::i#1 ] + +INITIAL ASM +Target platform is c64basic / MOS6502X + // File Comments +// Test using some simple supported string escape +// Uses \xnn to add chars by hex-code + // Upstart +.pc = $801 "Basic" +:BasicUpstart(__bbegin) +.pc = $80d "Program" + // Global Constants & labels +.encoding "screencode_upper" + .const CH = 'P' + .label SCREEN1 = $400 + .label SCREEN2 = $428 + .label SCREEN3 = $428 + // @begin +__bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +__b1_from___bbegin: + jmp __b1 + // @1 +__b1: + // [2] call main + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +__bend_from___b1: + jmp __bend + // @end +__bend: + // main +main: { + .label i = 2 + // [4] *((byte*) 53272) ← (byte) $17 -- _deref_pbuc1=vbuc2 + // Show mixed chars on screen + lda #$17 + sta $d018 + // [5] phi from main to main::@1 [phi:main->main::@1] + __b1_from_main: + // [5] phi (byte) main::i#2 = (byte) 0 [phi:main->main::@1#0] -- vbuz1=vbuc1 + lda #0 + sta.z i + jmp __b1 + // main::@1 + __b1: + // [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 -- vbuc1_neq_pbuc2_derefidx_vbuz1_then_la1 + lda #0 + ldy.z i + cmp MSG1,y + bne __b2 + jmp __b3 + // main::@3 + __b3: + // [7] *((const byte*) SCREEN3) ← (const byte) CH -- _deref_pbuc1=vbuc2 + lda #CH + sta SCREEN3 + jmp __breturn + // main::@return + __breturn: + // [8] return + rts + // main::@2 + __b2: + // [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) -- pbuc1_derefidx_vbuz1=pbuc2_derefidx_vbuz1 + ldy.z i + lda MSG1,y + sta SCREEN1,y + // [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) -- pbuc1_derefidx_vbuz1=pbuc2_derefidx_vbuz1 + ldy.z i + lda MSG2,y + sta SCREEN2,y + // [11] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuz1=_inc_vbuz1 + inc.z i + // [5] phi from main::@2 to main::@1 [phi:main::@2->main::@1] + __b1_from___b2: + // [5] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@2->main::@1#0] -- register_copy + jmp __b1 +} + // File Data +.encoding "petscii_mixed" + MSG1: .text "cAmElot" + .byte 0 +.encoding "screencode_upper" + MSG2: .text "CAMELOT" + .byte 0 + +REGISTER UPLIFT POTENTIAL REGISTERS +Statement [4] *((byte*) 53272) ← (byte) $17 [ ] ( main:2 [ ] { } ) always clobbers reg byte a +Statement [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 [ main::i#2 ] ( main:2 [ main::i#2 ] { } ) always clobbers reg byte a +Removing always clobbered register reg byte a as potential for zp[1]:2 [ main::i#2 main::i#1 ] +Statement [7] *((const byte*) SCREEN3) ← (const byte) CH [ ] ( main:2 [ ] { } ) always clobbers reg byte a +Statement [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) [ main::i#2 ] ( main:2 [ main::i#2 ] { } ) always clobbers reg byte a +Statement [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) [ main::i#2 ] ( main:2 [ main::i#2 ] { } ) always clobbers reg byte a +Statement [4] *((byte*) 53272) ← (byte) $17 [ ] ( main:2 [ ] { } ) always clobbers reg byte a +Statement [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 [ main::i#2 ] ( main:2 [ main::i#2 ] { } ) always clobbers reg byte a +Statement [7] *((const byte*) SCREEN3) ← (const byte) CH [ ] ( main:2 [ ] { } ) always clobbers reg byte a +Statement [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) [ main::i#2 ] ( main:2 [ main::i#2 ] { } ) always clobbers reg byte a +Statement [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) [ main::i#2 ] ( main:2 [ main::i#2 ] { } ) always clobbers reg byte a +Potential registers zp[1]:2 [ main::i#2 main::i#1 ] : zp[1]:2 , reg byte x , reg byte y , + +REGISTER UPLIFT SCOPES +Uplift Scope [main] 378.75: zp[1]:2 [ main::i#2 main::i#1 ] +Uplift Scope [] + +Uplifting [main] best 443 combination reg byte x [ main::i#2 main::i#1 ] +Uplifting [] best 443 combination + +ASSEMBLER BEFORE OPTIMIZATION + // File Comments +// Test using some simple supported string escape +// Uses \xnn to add chars by hex-code + // Upstart +.pc = $801 "Basic" +:BasicUpstart(__bbegin) +.pc = $80d "Program" + // Global Constants & labels +.encoding "screencode_upper" + .const CH = 'P' + .label SCREEN1 = $400 + .label SCREEN2 = $428 + .label SCREEN3 = $428 + // @begin +__bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +__b1_from___bbegin: + jmp __b1 + // @1 +__b1: + // [2] call main + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +__bend_from___b1: + jmp __bend + // @end +__bend: + // main +main: { + // [4] *((byte*) 53272) ← (byte) $17 -- _deref_pbuc1=vbuc2 + // Show mixed chars on screen + lda #$17 + sta $d018 + // [5] phi from main to main::@1 [phi:main->main::@1] + __b1_from_main: + // [5] phi (byte) main::i#2 = (byte) 0 [phi:main->main::@1#0] -- vbuxx=vbuc1 + ldx #0 + jmp __b1 + // main::@1 + __b1: + // [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 -- vbuc1_neq_pbuc2_derefidx_vbuxx_then_la1 + lda MSG1,x + cmp #0 + bne __b2 + jmp __b3 + // main::@3 + __b3: + // [7] *((const byte*) SCREEN3) ← (const byte) CH -- _deref_pbuc1=vbuc2 + lda #CH + sta SCREEN3 + jmp __breturn + // main::@return + __breturn: + // [8] return + rts + // main::@2 + __b2: + // [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) -- pbuc1_derefidx_vbuxx=pbuc2_derefidx_vbuxx + lda MSG1,x + sta SCREEN1,x + // [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) -- pbuc1_derefidx_vbuxx=pbuc2_derefidx_vbuxx + lda MSG2,x + sta SCREEN2,x + // [11] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx + inx + // [5] phi from main::@2 to main::@1 [phi:main::@2->main::@1] + __b1_from___b2: + // [5] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@2->main::@1#0] -- register_copy + jmp __b1 +} + // File Data +.encoding "petscii_mixed" + MSG1: .text "cAmElot" + .byte 0 +.encoding "screencode_upper" + MSG2: .text "CAMELOT" + .byte 0 + +ASSEMBLER OPTIMIZATIONS +Removing instruction jmp __b1 +Removing instruction jmp __bend +Removing instruction jmp __b1 +Removing instruction jmp __b3 +Removing instruction jmp __breturn +Succesful ASM optimization Pass5NextJumpElimination +Removing instruction __b1_from___bbegin: +Removing instruction __b1: +Removing instruction __bend_from___b1: +Succesful ASM optimization Pass5RedundantLabelElimination +Removing instruction __bend: +Removing instruction __b1_from_main: +Removing instruction __b3: +Removing instruction __breturn: +Removing instruction __b1_from___b2: +Succesful ASM optimization Pass5UnusedLabelElimination +Updating BasicUpstart to call main directly +Removing instruction jsr main +Succesful ASM optimization Pass5SkipBegin +Removing instruction __bbegin: +Succesful ASM optimization Pass5UnusedLabelElimination + +FINAL SYMBOL TABLE +(label) @1 +(label) @begin +(label) @end +(const byte) CH = (byte) 'P'su +(const byte*) MSG1[] = (byte*) "cAmElot"pm +(const byte*) MSG2[] = (byte*) "CAMELOT"su +(const byte*) SCREEN1 = (byte*) 1024 +(const byte*) SCREEN2 = (byte*) 1064 +(const byte*) SCREEN3 = (byte*) 1064 +(void()) main() +(label) main::@1 +(label) main::@2 +(label) main::@3 +(label) main::@return +(byte) main::i +(byte) main::i#1 reg byte x 202.0 +(byte) main::i#2 reg byte x 176.75 + +reg byte x [ main::i#2 main::i#1 ] + + +FINAL ASSEMBLER +Score: 368 + + // File Comments +// Test using some simple supported string escape +// Uses \xnn to add chars by hex-code + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels +.encoding "screencode_upper" + .const CH = 'P' + .label SCREEN1 = $400 + .label SCREEN2 = $428 + .label SCREEN3 = $428 + // @begin + // [1] phi from @begin to @1 [phi:@begin->@1] + // @1 + // [2] call main + // [3] phi from @1 to @end [phi:@1->@end] + // @end + // main +main: { + // *((char*)0xd018) = 0x17 + // [4] *((byte*) 53272) ← (byte) $17 -- _deref_pbuc1=vbuc2 + // Show mixed chars on screen + lda #$17 + sta $d018 + // [5] phi from main to main::@1 [phi:main->main::@1] + // [5] phi (byte) main::i#2 = (byte) 0 [phi:main->main::@1#0] -- vbuxx=vbuc1 + ldx #0 + // main::@1 + __b1: + // while(MSG1[i]) + // [6] if((byte) 0!=*((const byte*) MSG1 + (byte) main::i#2)) goto main::@2 -- vbuc1_neq_pbuc2_derefidx_vbuxx_then_la1 + lda MSG1,x + cmp #0 + bne __b2 + // main::@3 + // SCREEN3[0] = CH + // [7] *((const byte*) SCREEN3) ← (const byte) CH -- _deref_pbuc1=vbuc2 + lda #CH + sta SCREEN3 + // main::@return + // } + // [8] return + rts + // main::@2 + __b2: + // SCREEN1[i] = MSG1[i] + // [9] *((const byte*) SCREEN1 + (byte) main::i#2) ← *((const byte*) MSG1 + (byte) main::i#2) -- pbuc1_derefidx_vbuxx=pbuc2_derefidx_vbuxx + lda MSG1,x + sta SCREEN1,x + // SCREEN2[i] = MSG2[i] + // [10] *((const byte*) SCREEN2 + (byte) main::i#2) ← *((const byte*) MSG2 + (byte) main::i#2) -- pbuc1_derefidx_vbuxx=pbuc2_derefidx_vbuxx + lda MSG2,x + sta SCREEN2,x + // i++; + // [11] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx + inx + // [5] phi from main::@2 to main::@1 [phi:main::@2->main::@1] + // [5] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@2->main::@1#0] -- register_copy + jmp __b1 +} + // File Data +.encoding "petscii_mixed" + MSG1: .text "cAmElot" + .byte 0 +.encoding "screencode_upper" + MSG2: .text "CAMELOT" + .byte 0 + diff --git a/src/test/ref/string-escapes-4.sym b/src/test/ref/string-escapes-4.sym new file mode 100644 index 000000000..450366b26 --- /dev/null +++ b/src/test/ref/string-escapes-4.sym @@ -0,0 +1,19 @@ +(label) @1 +(label) @begin +(label) @end +(const byte) CH = (byte) 'P'su +(const byte*) MSG1[] = (byte*) "cAmElot"pm +(const byte*) MSG2[] = (byte*) "CAMELOT"su +(const byte*) SCREEN1 = (byte*) 1024 +(const byte*) SCREEN2 = (byte*) 1064 +(const byte*) SCREEN3 = (byte*) 1064 +(void()) main() +(label) main::@1 +(label) main::@2 +(label) main::@3 +(label) main::@return +(byte) main::i +(byte) main::i#1 reg byte x 202.0 +(byte) main::i#2 reg byte x 176.75 + +reg byte x [ main::i#2 main::i#1 ]