diff --git a/src/main/java/dk/camelot64/kickc/SourceLoader.java b/src/main/java/dk/camelot64/kickc/SourceLoader.java index ab5522cf9..96dfcb90b 100644 --- a/src/main/java/dk/camelot64/kickc/SourceLoader.java +++ b/src/main/java/dk/camelot64/kickc/SourceLoader.java @@ -18,7 +18,8 @@ public class SourceLoader { public static File loadFile(String fileName, Path currentPath, Program program) { List searchPaths = new ArrayList<>(); - searchPaths.add(currentPath.toString()); + if(currentPath != null) + searchPaths.add(currentPath.toString()); searchPaths.addAll(program.getImportPaths()); for(String importPath : searchPaths) { if(!importPath.endsWith("/")) { diff --git a/src/main/java/dk/camelot64/kickc/fragment/AsmFragmentInstanceSpecFactory.java b/src/main/java/dk/camelot64/kickc/fragment/AsmFragmentInstanceSpecFactory.java index 066d3426d..b197b9bfb 100644 --- a/src/main/java/dk/camelot64/kickc/fragment/AsmFragmentInstanceSpecFactory.java +++ b/src/main/java/dk/camelot64/kickc/fragment/AsmFragmentInstanceSpecFactory.java @@ -290,6 +290,8 @@ public class AsmFragmentInstanceSpecFactory { integerValue = ((ConstantInteger) constantLiteral).getValue(); } else if(constantLiteral instanceof ConstantPointer) { integerValue = ((ConstantPointer) constantLiteral).getValue(); + } else if(constantLiteral instanceof ConstantChar) { + integerValue = ((ConstantChar) constantLiteral).getInteger(); } else { throw new InternalError("Not implemented " + constantLiteral); } diff --git a/src/main/java/dk/camelot64/kickc/parser/CParser.java b/src/main/java/dk/camelot64/kickc/parser/CParser.java index cde65a990..c93c4bb07 100644 --- a/src/main/java/dk/camelot64/kickc/parser/CParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/CParser.java @@ -1,9 +1,9 @@ package dk.camelot64.kickc.parser; import dk.camelot64.kickc.SourceLoader; -import dk.camelot64.kickc.preprocessor.CPreprocessor; import dk.camelot64.kickc.model.CompileError; import dk.camelot64.kickc.model.Program; +import dk.camelot64.kickc.preprocessor.CPreprocessor; import org.antlr.v4.runtime.*; import java.io.File; @@ -112,6 +112,7 @@ public class CParser { /** * Get the C parser + * * @return The C parser */ public KickCParser getParser() { @@ -152,8 +153,9 @@ public class CParser { * * @param fileName The file name of the file */ - public void loadCFile(String fileName) { - loadCFile(fileName, getCurrentSourceFolderPath()); + public void loadCFile(String fileName, boolean isSystem) { + final Path currentSourceFolderPath = isSystem ? null : getCurrentSourceFolderPath(); + loadCFile(fileName, currentSourceFolderPath); } /** @@ -165,10 +167,10 @@ public class CParser { */ private void loadCFile(String fileName, Path currentPath) { try { - if(fileName.startsWith("\"")) { - fileName = fileName.substring(1, fileName.length()-1); + if(fileName.startsWith("\"") || fileName.startsWith("<")) { + fileName = fileName.substring(1, fileName.length() - 1); } - if(!fileName.endsWith(".kc")) { + if(!fileName.endsWith(".kc") && !fileName.contains(".")) { fileName += ".kc"; } File file = SourceLoader.loadFile(fileName, currentPath, program); @@ -192,6 +194,7 @@ public class CParser { /** * Add source code at the start of the token stream being parsed. + * * @param charStream The char stream containing the source code to add * @return The lexer for reading the source tokens of the added source */ diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index 1e0617a7b..48e7d7fcc 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -117,10 +117,6 @@ SIMPLETYPE: 'byte' | 'word' | 'dword' | 'bool' | 'char' | 'short' | 'int' | 'lon BOOLEAN : 'true' | 'false'; KICKASM_BODY: '{{' .*? '}}'; -// Strings and chars - with special handling of imports -STRING : '"' ('\\"' | ~'"')* '"' [z]?([ps][mu]?)?[z]? { if(importEnter) { importEnter=false; cParser.loadCFile(getText()); } } ; -CHAR : '\'' ('\\'['"rfn] | ~'\'' ) '\''; - // Preprocessor IMPORT: '#import' { importEnter=true; } ; INCLUDE: '#include' { importEnter=true; } ; @@ -154,6 +150,11 @@ NAME : NAME_START NAME_CHAR* {if(cParser.isTypedef(getText())) setType(TYPEDEFNA fragment NAME_START : [a-zA-Z_]; fragment NAME_CHAR : [a-zA-Z0-9_]; +// Strings and chars - with special handling of imports +SYSTEMFILE : '<' [a-zA-Z0-9_./\\]+ '>' { if(importEnter) { importEnter=false; cParser.loadCFile(getText(), true); } } ; +STRING : '"' ('\\"' | ~'"')* '"' [z]?([ps][mu]?)?[z]? { if(importEnter) { importEnter=false; cParser.loadCFile(getText(), false); } } ; +CHAR : '\'' ('\\'['"rfn] | ~'\'' ) '\''; + // White space on hidden channel 1 WS : [ \t\r\n\u00a0]+ -> channel(1); // Comments on hidden channel 2 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp index 430ef0791..a1b336a06 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp @@ -91,8 +91,6 @@ null null null null -null -null '#import' '#include' '#pragma' @@ -118,6 +116,9 @@ null null null null +null +null +null '.byte' null '#' @@ -248,8 +249,6 @@ SIGNEDNESS SIMPLETYPE BOOLEAN KICKASM_BODY -STRING -CHAR IMPORT INCLUDE PRAGMA @@ -272,6 +271,9 @@ BININTEGER DECINTEGER HEXINTEGER NAME +SYSTEMFILE +STRING +CHAR WS COMMENT_LINE COMMENT_BLOCK @@ -403,8 +405,6 @@ SIGNEDNESS SIMPLETYPE BOOLEAN KICKASM_BODY -STRING -CHAR IMPORT INCLUDE PRAGMA @@ -432,6 +432,9 @@ HEXDIGIT NAME NAME_START NAME_CHAR +SYSTEMFILE +STRING +CHAR WS COMMENT_LINE COMMENT_BLOCK @@ -486,4 +489,4 @@ DEFAULT_MODE ASM_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 156, 1548, 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, 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, 436, 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, 628, 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, 803, 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, 842, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 853, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 7, 91, 859, 10, 91, 12, 91, 14, 91, 862, 11, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 7, 92, 871, 10, 92, 12, 92, 14, 92, 874, 11, 92, 3, 92, 3, 92, 5, 92, 878, 10, 92, 3, 92, 3, 92, 5, 92, 882, 10, 92, 5, 92, 884, 10, 92, 3, 92, 5, 92, 887, 10, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 5, 93, 895, 10, 93, 3, 93, 3, 93, 3, 94, 3, 94, 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, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 5, 98, 941, 10, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 5, 106, 990, 10, 106, 3, 107, 3, 107, 3, 107, 5, 107, 995, 10, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 5, 108, 1002, 10, 108, 3, 108, 7, 108, 1005, 10, 108, 12, 108, 14, 108, 1008, 11, 108, 3, 108, 3, 108, 6, 108, 1012, 10, 108, 13, 108, 14, 108, 1013, 3, 109, 7, 109, 1017, 10, 109, 12, 109, 14, 109, 1020, 11, 109, 3, 109, 3, 109, 6, 109, 1024, 10, 109, 13, 109, 14, 109, 1025, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1033, 10, 110, 3, 110, 7, 110, 1036, 10, 110, 12, 110, 14, 110, 1039, 11, 110, 3, 110, 3, 110, 6, 110, 1043, 10, 110, 13, 110, 14, 110, 1044, 3, 111, 3, 111, 3, 111, 5, 111, 1050, 10, 111, 3, 111, 3, 111, 3, 111, 5, 111, 1055, 10, 111, 3, 112, 3, 112, 3, 112, 6, 112, 1060, 10, 112, 13, 112, 14, 112, 1061, 3, 112, 3, 112, 6, 112, 1066, 10, 112, 13, 112, 14, 112, 1067, 5, 112, 1070, 10, 112, 3, 113, 6, 113, 1073, 10, 113, 13, 113, 14, 113, 1074, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 5, 114, 1082, 10, 114, 3, 114, 6, 114, 1085, 10, 114, 13, 114, 14, 114, 1086, 3, 115, 3, 115, 3, 116, 3, 116, 3, 117, 3, 117, 3, 118, 3, 118, 7, 118, 1097, 10, 118, 12, 118, 14, 118, 1100, 11, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 120, 3, 120, 3, 121, 6, 121, 1109, 10, 121, 13, 121, 14, 121, 1110, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 1119, 10, 122, 12, 122, 14, 122, 1122, 11, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 7, 123, 1130, 10, 123, 12, 123, 14, 123, 1133, 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, 1368, 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, 1412, 10, 144, 3, 145, 3, 145, 3, 145, 5, 145, 1417, 10, 145, 3, 146, 3, 146, 7, 146, 1421, 10, 146, 12, 146, 14, 146, 1424, 11, 146, 3, 146, 3, 146, 6, 146, 1428, 10, 146, 13, 146, 14, 146, 1429, 3, 147, 7, 147, 1433, 10, 147, 12, 147, 14, 147, 1436, 11, 147, 3, 147, 3, 147, 6, 147, 1440, 10, 147, 13, 147, 14, 147, 1441, 3, 148, 3, 148, 7, 148, 1446, 10, 148, 12, 148, 14, 148, 1449, 11, 148, 3, 148, 3, 148, 6, 148, 1453, 10, 148, 13, 148, 14, 148, 1454, 3, 149, 3, 149, 3, 149, 5, 149, 1460, 10, 149, 3, 150, 3, 150, 6, 150, 1464, 10, 150, 13, 150, 14, 150, 1465, 3, 151, 6, 151, 1469, 10, 151, 13, 151, 14, 151, 1470, 3, 152, 3, 152, 6, 152, 1475, 10, 152, 13, 152, 14, 152, 1476, 3, 153, 3, 153, 3, 154, 3, 154, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 5, 156, 1489, 10, 156, 3, 156, 3, 156, 3, 157, 3, 157, 6, 157, 1495, 10, 157, 13, 157, 14, 157, 1496, 3, 158, 3, 158, 7, 158, 1501, 10, 158, 12, 158, 14, 158, 1504, 11, 158, 3, 159, 3, 159, 7, 159, 1508, 10, 159, 12, 159, 14, 159, 1511, 11, 159, 3, 160, 3, 160, 3, 161, 3, 161, 3, 162, 6, 162, 1518, 10, 162, 13, 162, 14, 162, 1519, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 7, 163, 1528, 10, 163, 12, 163, 14, 163, 1531, 11, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 7, 164, 1539, 10, 164, 12, 164, 14, 164, 1542, 11, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 5, 860, 1131, 1540, 2, 165, 4, 4, 6, 5, 8, 6, 10, 7, 12, 8, 14, 9, 16, 10, 18, 11, 20, 12, 22, 13, 24, 14, 26, 15, 28, 16, 30, 17, 32, 18, 34, 19, 36, 20, 38, 21, 40, 22, 42, 23, 44, 24, 46, 25, 48, 26, 50, 27, 52, 28, 54, 29, 56, 30, 58, 31, 60, 32, 62, 33, 64, 34, 66, 35, 68, 36, 70, 37, 72, 38, 74, 39, 76, 40, 78, 41, 80, 42, 82, 43, 84, 44, 86, 45, 88, 46, 90, 47, 92, 48, 94, 49, 96, 50, 98, 51, 100, 52, 102, 53, 104, 54, 106, 55, 108, 56, 110, 57, 112, 58, 114, 59, 116, 60, 118, 61, 120, 62, 122, 63, 124, 64, 126, 65, 128, 66, 130, 67, 132, 68, 134, 69, 136, 70, 138, 71, 140, 72, 142, 73, 144, 74, 146, 75, 148, 76, 150, 77, 152, 78, 154, 79, 156, 80, 158, 81, 160, 82, 162, 83, 164, 84, 166, 85, 168, 86, 170, 87, 172, 88, 174, 89, 176, 90, 178, 91, 180, 92, 182, 93, 184, 94, 186, 95, 188, 96, 190, 97, 192, 98, 194, 99, 196, 100, 198, 101, 200, 102, 202, 103, 204, 104, 206, 105, 208, 106, 210, 107, 212, 108, 214, 109, 216, 110, 218, 111, 220, 112, 222, 113, 224, 114, 226, 115, 228, 116, 230, 2, 232, 2, 234, 2, 236, 117, 238, 2, 240, 2, 242, 118, 244, 119, 246, 120, 248, 121, 250, 122, 252, 123, 254, 124, 256, 125, 258, 126, 260, 127, 262, 128, 264, 129, 266, 130, 268, 131, 270, 132, 272, 133, 274, 134, 276, 135, 278, 136, 280, 137, 282, 138, 284, 139, 286, 140, 288, 141, 290, 142, 292, 143, 294, 144, 296, 145, 298, 146, 300, 147, 302, 148, 304, 149, 306, 2, 308, 2, 310, 2, 312, 150, 314, 151, 316, 152, 318, 153, 320, 2, 322, 2, 324, 154, 326, 155, 328, 156, 4, 2, 3, 19, 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, 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, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 2, 1687, 2, 4, 3, 2, 2, 2, 2, 6, 3, 2, 2, 2, 2, 8, 3, 2, 2, 2, 2, 10, 3, 2, 2, 2, 2, 12, 3, 2, 2, 2, 2, 14, 3, 2, 2, 2, 2, 16, 3, 2, 2, 2, 2, 18, 3, 2, 2, 2, 2, 20, 3, 2, 2, 2, 2, 22, 3, 2, 2, 2, 2, 24, 3, 2, 2, 2, 2, 26, 3, 2, 2, 2, 2, 28, 3, 2, 2, 2, 2, 30, 3, 2, 2, 2, 2, 32, 3, 2, 2, 2, 2, 34, 3, 2, 2, 2, 2, 36, 3, 2, 2, 2, 2, 38, 3, 2, 2, 2, 2, 40, 3, 2, 2, 2, 2, 42, 3, 2, 2, 2, 2, 44, 3, 2, 2, 2, 2, 46, 3, 2, 2, 2, 2, 48, 3, 2, 2, 2, 2, 50, 3, 2, 2, 2, 2, 52, 3, 2, 2, 2, 2, 54, 3, 2, 2, 2, 2, 56, 3, 2, 2, 2, 2, 58, 3, 2, 2, 2, 2, 60, 3, 2, 2, 2, 2, 62, 3, 2, 2, 2, 2, 64, 3, 2, 2, 2, 2, 66, 3, 2, 2, 2, 2, 68, 3, 2, 2, 2, 2, 70, 3, 2, 2, 2, 2, 72, 3, 2, 2, 2, 2, 74, 3, 2, 2, 2, 2, 76, 3, 2, 2, 2, 2, 78, 3, 2, 2, 2, 2, 80, 3, 2, 2, 2, 2, 82, 3, 2, 2, 2, 2, 84, 3, 2, 2, 2, 2, 86, 3, 2, 2, 2, 2, 88, 3, 2, 2, 2, 2, 90, 3, 2, 2, 2, 2, 92, 3, 2, 2, 2, 2, 94, 3, 2, 2, 2, 2, 96, 3, 2, 2, 2, 2, 98, 3, 2, 2, 2, 2, 100, 3, 2, 2, 2, 2, 102, 3, 2, 2, 2, 2, 104, 3, 2, 2, 2, 2, 106, 3, 2, 2, 2, 2, 108, 3, 2, 2, 2, 2, 110, 3, 2, 2, 2, 2, 112, 3, 2, 2, 2, 2, 114, 3, 2, 2, 2, 2, 116, 3, 2, 2, 2, 2, 118, 3, 2, 2, 2, 2, 120, 3, 2, 2, 2, 2, 122, 3, 2, 2, 2, 2, 124, 3, 2, 2, 2, 2, 126, 3, 2, 2, 2, 2, 128, 3, 2, 2, 2, 2, 130, 3, 2, 2, 2, 2, 132, 3, 2, 2, 2, 2, 134, 3, 2, 2, 2, 2, 136, 3, 2, 2, 2, 2, 138, 3, 2, 2, 2, 2, 140, 3, 2, 2, 2, 2, 142, 3, 2, 2, 2, 2, 144, 3, 2, 2, 2, 2, 146, 3, 2, 2, 2, 2, 148, 3, 2, 2, 2, 2, 150, 3, 2, 2, 2, 2, 152, 3, 2, 2, 2, 2, 154, 3, 2, 2, 2, 2, 156, 3, 2, 2, 2, 2, 158, 3, 2, 2, 2, 2, 160, 3, 2, 2, 2, 2, 162, 3, 2, 2, 2, 2, 164, 3, 2, 2, 2, 2, 166, 3, 2, 2, 2, 2, 168, 3, 2, 2, 2, 2, 170, 3, 2, 2, 2, 2, 172, 3, 2, 2, 2, 2, 174, 3, 2, 2, 2, 2, 176, 3, 2, 2, 2, 2, 178, 3, 2, 2, 2, 2, 180, 3, 2, 2, 2, 2, 182, 3, 2, 2, 2, 2, 184, 3, 2, 2, 2, 2, 186, 3, 2, 2, 2, 2, 188, 3, 2, 2, 2, 2, 190, 3, 2, 2, 2, 2, 192, 3, 2, 2, 2, 2, 194, 3, 2, 2, 2, 2, 196, 3, 2, 2, 2, 2, 198, 3, 2, 2, 2, 2, 200, 3, 2, 2, 2, 2, 202, 3, 2, 2, 2, 2, 204, 3, 2, 2, 2, 2, 206, 3, 2, 2, 2, 2, 208, 3, 2, 2, 2, 2, 210, 3, 2, 2, 2, 2, 212, 3, 2, 2, 2, 2, 214, 3, 2, 2, 2, 2, 216, 3, 2, 2, 2, 2, 218, 3, 2, 2, 2, 2, 220, 3, 2, 2, 2, 2, 222, 3, 2, 2, 2, 2, 224, 3, 2, 2, 2, 2, 226, 3, 2, 2, 2, 2, 228, 3, 2, 2, 2, 2, 236, 3, 2, 2, 2, 2, 242, 3, 2, 2, 2, 2, 244, 3, 2, 2, 2, 2, 246, 3, 2, 2, 2, 3, 248, 3, 2, 2, 2, 3, 250, 3, 2, 2, 2, 3, 252, 3, 2, 2, 2, 3, 254, 3, 2, 2, 2, 3, 256, 3, 2, 2, 2, 3, 258, 3, 2, 2, 2, 3, 260, 3, 2, 2, 2, 3, 262, 3, 2, 2, 2, 3, 264, 3, 2, 2, 2, 3, 266, 3, 2, 2, 2, 3, 268, 3, 2, 2, 2, 3, 270, 3, 2, 2, 2, 3, 272, 3, 2, 2, 2, 3, 274, 3, 2, 2, 2, 3, 276, 3, 2, 2, 2, 3, 278, 3, 2, 2, 2, 3, 280, 3, 2, 2, 2, 3, 282, 3, 2, 2, 2, 3, 284, 3, 2, 2, 2, 3, 286, 3, 2, 2, 2, 3, 288, 3, 2, 2, 2, 3, 290, 3, 2, 2, 2, 3, 292, 3, 2, 2, 2, 3, 294, 3, 2, 2, 2, 3, 296, 3, 2, 2, 2, 3, 298, 3, 2, 2, 2, 3, 300, 3, 2, 2, 2, 3, 302, 3, 2, 2, 2, 3, 304, 3, 2, 2, 2, 3, 312, 3, 2, 2, 2, 3, 314, 3, 2, 2, 2, 3, 316, 3, 2, 2, 2, 3, 318, 3, 2, 2, 2, 3, 324, 3, 2, 2, 2, 3, 326, 3, 2, 2, 2, 3, 328, 3, 2, 2, 2, 4, 330, 3, 2, 2, 2, 6, 333, 3, 2, 2, 2, 8, 335, 3, 2, 2, 2, 10, 337, 3, 2, 2, 2, 12, 339, 3, 2, 2, 2, 14, 341, 3, 2, 2, 2, 16, 343, 3, 2, 2, 2, 18, 345, 3, 2, 2, 2, 20, 347, 3, 2, 2, 2, 22, 349, 3, 2, 2, 2, 24, 352, 3, 2, 2, 2, 26, 354, 3, 2, 2, 2, 28, 356, 3, 2, 2, 2, 30, 359, 3, 2, 2, 2, 32, 361, 3, 2, 2, 2, 34, 363, 3, 2, 2, 2, 36, 365, 3, 2, 2, 2, 38, 367, 3, 2, 2, 2, 40, 369, 3, 2, 2, 2, 42, 372, 3, 2, 2, 2, 44, 375, 3, 2, 2, 2, 46, 377, 3, 2, 2, 2, 48, 379, 3, 2, 2, 2, 50, 381, 3, 2, 2, 2, 52, 383, 3, 2, 2, 2, 54, 386, 3, 2, 2, 2, 56, 389, 3, 2, 2, 2, 58, 392, 3, 2, 2, 2, 60, 395, 3, 2, 2, 2, 62, 397, 3, 2, 2, 2, 64, 400, 3, 2, 2, 2, 66, 403, 3, 2, 2, 2, 68, 405, 3, 2, 2, 2, 70, 408, 3, 2, 2, 2, 72, 411, 3, 2, 2, 2, 74, 435, 3, 2, 2, 2, 76, 437, 3, 2, 2, 2, 78, 445, 3, 2, 2, 2, 80, 453, 3, 2, 2, 2, 82, 456, 3, 2, 2, 2, 84, 463, 3, 2, 2, 2, 86, 468, 3, 2, 2, 2, 88, 472, 3, 2, 2, 2, 90, 481, 3, 2, 2, 2, 92, 490, 3, 2, 2, 2, 94, 499, 3, 2, 2, 2, 96, 505, 3, 2, 2, 2, 98, 512, 3, 2, 2, 2, 100, 519, 3, 2, 2, 2, 102, 525, 3, 2, 2, 2, 104, 532, 3, 2, 2, 2, 106, 541, 3, 2, 2, 2, 108, 548, 3, 2, 2, 2, 110, 558, 3, 2, 2, 2, 112, 567, 3, 2, 2, 2, 114, 577, 3, 2, 2, 2, 116, 582, 3, 2, 2, 2, 118, 588, 3, 2, 2, 2, 120, 594, 3, 2, 2, 2, 122, 599, 3, 2, 2, 2, 124, 627, 3, 2, 2, 2, 126, 629, 3, 2, 2, 2, 128, 639, 3, 2, 2, 2, 130, 642, 3, 2, 2, 2, 132, 647, 3, 2, 2, 2, 134, 653, 3, 2, 2, 2, 136, 656, 3, 2, 2, 2, 138, 660, 3, 2, 2, 2, 140, 667, 3, 2, 2, 2, 142, 674, 3, 2, 2, 2, 144, 680, 3, 2, 2, 2, 146, 689, 3, 2, 2, 2, 148, 695, 3, 2, 2, 2, 150, 703, 3, 2, 2, 2, 152, 708, 3, 2, 2, 2, 154, 715, 3, 2, 2, 2, 156, 720, 3, 2, 2, 2, 158, 727, 3, 2, 2, 2, 160, 734, 3, 2, 2, 2, 162, 742, 3, 2, 2, 2, 164, 750, 3, 2, 2, 2, 166, 759, 3, 2, 2, 2, 168, 764, 3, 2, 2, 2, 170, 773, 3, 2, 2, 2, 172, 779, 3, 2, 2, 2, 174, 786, 3, 2, 2, 2, 176, 802, 3, 2, 2, 2, 178, 841, 3, 2, 2, 2, 180, 852, 3, 2, 2, 2, 182, 854, 3, 2, 2, 2, 184, 866, 3, 2, 2, 2, 186, 890, 3, 2, 2, 2, 188, 898, 3, 2, 2, 2, 190, 908, 3, 2, 2, 2, 192, 919, 3, 2, 2, 2, 194, 927, 3, 2, 2, 2, 196, 940, 3, 2, 2, 2, 198, 942, 3, 2, 2, 2, 200, 949, 3, 2, 2, 2, 202, 956, 3, 2, 2, 2, 204, 964, 3, 2, 2, 2, 206, 968, 3, 2, 2, 2, 208, 974, 3, 2, 2, 2, 210, 980, 3, 2, 2, 2, 212, 989, 3, 2, 2, 2, 214, 994, 3, 2, 2, 2, 216, 1001, 3, 2, 2, 2, 218, 1018, 3, 2, 2, 2, 220, 1032, 3, 2, 2, 2, 222, 1049, 3, 2, 2, 2, 224, 1069, 3, 2, 2, 2, 226, 1072, 3, 2, 2, 2, 228, 1081, 3, 2, 2, 2, 230, 1088, 3, 2, 2, 2, 232, 1090, 3, 2, 2, 2, 234, 1092, 3, 2, 2, 2, 236, 1094, 3, 2, 2, 2, 238, 1103, 3, 2, 2, 2, 240, 1105, 3, 2, 2, 2, 242, 1108, 3, 2, 2, 2, 244, 1114, 3, 2, 2, 2, 246, 1125, 3, 2, 2, 2, 248, 1139, 3, 2, 2, 2, 250, 1367, 3, 2, 2, 2, 252, 1369, 3, 2, 2, 2, 254, 1371, 3, 2, 2, 2, 256, 1373, 3, 2, 2, 2, 258, 1375, 3, 2, 2, 2, 260, 1377, 3, 2, 2, 2, 262, 1379, 3, 2, 2, 2, 264, 1381, 3, 2, 2, 2, 266, 1383, 3, 2, 2, 2, 268, 1385, 3, 2, 2, 2, 270, 1388, 3, 2, 2, 2, 272, 1391, 3, 2, 2, 2, 274, 1393, 3, 2, 2, 2, 276, 1395, 3, 2, 2, 2, 278, 1397, 3, 2, 2, 2, 280, 1399, 3, 2, 2, 2, 282, 1401, 3, 2, 2, 2, 284, 1403, 3, 2, 2, 2, 286, 1406, 3, 2, 2, 2, 288, 1411, 3, 2, 2, 2, 290, 1416, 3, 2, 2, 2, 292, 1418, 3, 2, 2, 2, 294, 1434, 3, 2, 2, 2, 296, 1443, 3, 2, 2, 2, 298, 1459, 3, 2, 2, 2, 300, 1461, 3, 2, 2, 2, 302, 1468, 3, 2, 2, 2, 304, 1472, 3, 2, 2, 2, 306, 1478, 3, 2, 2, 2, 308, 1480, 3, 2, 2, 2, 310, 1482, 3, 2, 2, 2, 312, 1484, 3, 2, 2, 2, 314, 1492, 3, 2, 2, 2, 316, 1498, 3, 2, 2, 2, 318, 1505, 3, 2, 2, 2, 320, 1512, 3, 2, 2, 2, 322, 1514, 3, 2, 2, 2, 324, 1517, 3, 2, 2, 2, 326, 1523, 3, 2, 2, 2, 328, 1534, 3, 2, 2, 2, 330, 331, 7, 125, 2, 2, 331, 332, 8, 2, 2, 2, 332, 5, 3, 2, 2, 2, 333, 334, 7, 127, 2, 2, 334, 7, 3, 2, 2, 2, 335, 336, 7, 93, 2, 2, 336, 9, 3, 2, 2, 2, 337, 338, 7, 95, 2, 2, 338, 11, 3, 2, 2, 2, 339, 340, 7, 42, 2, 2, 340, 13, 3, 2, 2, 2, 341, 342, 7, 43, 2, 2, 342, 15, 3, 2, 2, 2, 343, 344, 7, 61, 2, 2, 344, 17, 3, 2, 2, 2, 345, 346, 7, 60, 2, 2, 346, 19, 3, 2, 2, 2, 347, 348, 7, 46, 2, 2, 348, 21, 3, 2, 2, 2, 349, 350, 7, 48, 2, 2, 350, 351, 7, 48, 2, 2, 351, 23, 3, 2, 2, 2, 352, 353, 7, 65, 2, 2, 353, 25, 3, 2, 2, 2, 354, 355, 7, 48, 2, 2, 355, 27, 3, 2, 2, 2, 356, 357, 7, 47, 2, 2, 357, 358, 7, 64, 2, 2, 358, 29, 3, 2, 2, 2, 359, 360, 7, 45, 2, 2, 360, 31, 3, 2, 2, 2, 361, 362, 7, 47, 2, 2, 362, 33, 3, 2, 2, 2, 363, 364, 7, 44, 2, 2, 364, 35, 3, 2, 2, 2, 365, 366, 7, 49, 2, 2, 366, 37, 3, 2, 2, 2, 367, 368, 7, 39, 2, 2, 368, 39, 3, 2, 2, 2, 369, 370, 7, 45, 2, 2, 370, 371, 7, 45, 2, 2, 371, 41, 3, 2, 2, 2, 372, 373, 7, 47, 2, 2, 373, 374, 7, 47, 2, 2, 374, 43, 3, 2, 2, 2, 375, 376, 7, 40, 2, 2, 376, 45, 3, 2, 2, 2, 377, 378, 7, 128, 2, 2, 378, 47, 3, 2, 2, 2, 379, 380, 7, 96, 2, 2, 380, 49, 3, 2, 2, 2, 381, 382, 7, 126, 2, 2, 382, 51, 3, 2, 2, 2, 383, 384, 7, 62, 2, 2, 384, 385, 7, 62, 2, 2, 385, 53, 3, 2, 2, 2, 386, 387, 7, 64, 2, 2, 387, 388, 7, 64, 2, 2, 388, 55, 3, 2, 2, 2, 389, 390, 7, 63, 2, 2, 390, 391, 7, 63, 2, 2, 391, 57, 3, 2, 2, 2, 392, 393, 7, 35, 2, 2, 393, 394, 7, 63, 2, 2, 394, 59, 3, 2, 2, 2, 395, 396, 7, 62, 2, 2, 396, 61, 3, 2, 2, 2, 397, 398, 7, 62, 2, 2, 398, 399, 7, 63, 2, 2, 399, 63, 3, 2, 2, 2, 400, 401, 7, 64, 2, 2, 401, 402, 7, 63, 2, 2, 402, 65, 3, 2, 2, 2, 403, 404, 7, 64, 2, 2, 404, 67, 3, 2, 2, 2, 405, 406, 7, 40, 2, 2, 406, 407, 7, 40, 2, 2, 407, 69, 3, 2, 2, 2, 408, 409, 7, 126, 2, 2, 409, 410, 7, 126, 2, 2, 410, 71, 3, 2, 2, 2, 411, 412, 7, 63, 2, 2, 412, 73, 3, 2, 2, 2, 413, 414, 7, 45, 2, 2, 414, 436, 7, 63, 2, 2, 415, 416, 7, 47, 2, 2, 416, 436, 7, 63, 2, 2, 417, 418, 7, 44, 2, 2, 418, 436, 7, 63, 2, 2, 419, 420, 7, 49, 2, 2, 420, 436, 7, 63, 2, 2, 421, 422, 7, 39, 2, 2, 422, 436, 7, 63, 2, 2, 423, 424, 7, 62, 2, 2, 424, 425, 7, 62, 2, 2, 425, 436, 7, 63, 2, 2, 426, 427, 7, 64, 2, 2, 427, 428, 7, 64, 2, 2, 428, 436, 7, 63, 2, 2, 429, 430, 7, 40, 2, 2, 430, 436, 7, 63, 2, 2, 431, 432, 7, 126, 2, 2, 432, 436, 7, 63, 2, 2, 433, 434, 7, 96, 2, 2, 434, 436, 7, 63, 2, 2, 435, 413, 3, 2, 2, 2, 435, 415, 3, 2, 2, 2, 435, 417, 3, 2, 2, 2, 435, 419, 3, 2, 2, 2, 435, 421, 3, 2, 2, 2, 435, 423, 3, 2, 2, 2, 435, 426, 3, 2, 2, 2, 435, 429, 3, 2, 2, 2, 435, 431, 3, 2, 2, 2, 435, 433, 3, 2, 2, 2, 436, 75, 3, 2, 2, 2, 437, 438, 7, 118, 2, 2, 438, 439, 7, 123, 2, 2, 439, 440, 7, 114, 2, 2, 440, 441, 7, 103, 2, 2, 441, 442, 7, 102, 2, 2, 442, 443, 7, 103, 2, 2, 443, 444, 7, 104, 2, 2, 444, 77, 3, 2, 2, 2, 445, 446, 7, 116, 2, 2, 446, 447, 7, 103, 2, 2, 447, 448, 7, 117, 2, 2, 448, 449, 7, 103, 2, 2, 449, 450, 7, 116, 2, 2, 450, 451, 7, 120, 2, 2, 451, 452, 7, 103, 2, 2, 452, 79, 3, 2, 2, 2, 453, 454, 7, 114, 2, 2, 454, 455, 7, 101, 2, 2, 455, 81, 3, 2, 2, 2, 456, 457, 7, 118, 2, 2, 457, 458, 7, 99, 2, 2, 458, 459, 7, 116, 2, 2, 459, 460, 7, 105, 2, 2, 460, 461, 7, 103, 2, 2, 461, 462, 7, 118, 2, 2, 462, 83, 3, 2, 2, 2, 463, 464, 7, 110, 2, 2, 464, 465, 7, 107, 2, 2, 465, 466, 7, 112, 2, 2, 466, 467, 7, 109, 2, 2, 467, 85, 3, 2, 2, 2, 468, 469, 7, 101, 2, 2, 469, 470, 7, 114, 2, 2, 470, 471, 7, 119, 2, 2, 471, 87, 3, 2, 2, 2, 472, 473, 7, 101, 2, 2, 473, 474, 7, 113, 2, 2, 474, 475, 7, 102, 2, 2, 475, 476, 7, 103, 2, 2, 476, 477, 7, 97, 2, 2, 477, 478, 7, 117, 2, 2, 478, 479, 7, 103, 2, 2, 479, 480, 7, 105, 2, 2, 480, 89, 3, 2, 2, 2, 481, 482, 7, 102, 2, 2, 482, 483, 7, 99, 2, 2, 483, 484, 7, 118, 2, 2, 484, 485, 7, 99, 2, 2, 485, 486, 7, 97, 2, 2, 486, 487, 7, 117, 2, 2, 487, 488, 7, 103, 2, 2, 488, 489, 7, 105, 2, 2, 489, 91, 3, 2, 2, 2, 490, 491, 7, 103, 2, 2, 491, 492, 7, 112, 2, 2, 492, 493, 7, 101, 2, 2, 493, 494, 7, 113, 2, 2, 494, 495, 7, 102, 2, 2, 495, 496, 7, 107, 2, 2, 496, 497, 7, 112, 2, 2, 497, 498, 7, 105, 2, 2, 498, 93, 3, 2, 2, 2, 499, 500, 7, 101, 2, 2, 500, 501, 7, 113, 2, 2, 501, 502, 7, 112, 2, 2, 502, 503, 7, 117, 2, 2, 503, 504, 7, 118, 2, 2, 504, 95, 3, 2, 2, 2, 505, 506, 7, 103, 2, 2, 506, 507, 7, 122, 2, 2, 507, 508, 7, 118, 2, 2, 508, 509, 7, 103, 2, 2, 509, 510, 7, 116, 2, 2, 510, 511, 7, 112, 2, 2, 511, 97, 3, 2, 2, 2, 512, 513, 7, 103, 2, 2, 513, 514, 7, 122, 2, 2, 514, 515, 7, 114, 2, 2, 515, 516, 7, 113, 2, 2, 516, 517, 7, 116, 2, 2, 517, 518, 7, 118, 2, 2, 518, 99, 3, 2, 2, 2, 519, 520, 7, 99, 2, 2, 520, 521, 7, 110, 2, 2, 521, 522, 7, 107, 2, 2, 522, 523, 7, 105, 2, 2, 523, 524, 7, 112, 2, 2, 524, 101, 3, 2, 2, 2, 525, 526, 7, 107, 2, 2, 526, 527, 7, 112, 2, 2, 527, 528, 7, 110, 2, 2, 528, 529, 7, 107, 2, 2, 529, 530, 7, 112, 2, 2, 530, 531, 7, 103, 2, 2, 531, 103, 3, 2, 2, 2, 532, 533, 7, 120, 2, 2, 533, 534, 7, 113, 2, 2, 534, 535, 7, 110, 2, 2, 535, 536, 7, 99, 2, 2, 536, 537, 7, 118, 2, 2, 537, 538, 7, 107, 2, 2, 538, 539, 7, 110, 2, 2, 539, 540, 7, 103, 2, 2, 540, 105, 3, 2, 2, 2, 541, 542, 7, 117, 2, 2, 542, 543, 7, 118, 2, 2, 543, 544, 7, 99, 2, 2, 544, 545, 7, 118, 2, 2, 545, 546, 7, 107, 2, 2, 546, 547, 7, 101, 2, 2, 547, 107, 3, 2, 2, 2, 548, 549, 7, 107, 2, 2, 549, 550, 7, 112, 2, 2, 550, 551, 7, 118, 2, 2, 551, 552, 7, 103, 2, 2, 552, 553, 7, 116, 2, 2, 553, 554, 7, 116, 2, 2, 554, 555, 7, 119, 2, 2, 555, 556, 7, 114, 2, 2, 556, 557, 7, 118, 2, 2, 557, 109, 3, 2, 2, 2, 558, 559, 7, 116, 2, 2, 559, 560, 7, 103, 2, 2, 560, 561, 7, 105, 2, 2, 561, 562, 7, 107, 2, 2, 562, 563, 7, 117, 2, 2, 563, 564, 7, 118, 2, 2, 564, 565, 7, 103, 2, 2, 565, 566, 7, 116, 2, 2, 566, 111, 3, 2, 2, 2, 567, 568, 7, 97, 2, 2, 568, 569, 7, 97, 2, 2, 569, 570, 7, 99, 2, 2, 570, 571, 7, 102, 2, 2, 571, 572, 7, 102, 2, 2, 572, 573, 7, 116, 2, 2, 573, 574, 7, 103, 2, 2, 574, 575, 7, 117, 2, 2, 575, 576, 7, 117, 2, 2, 576, 113, 3, 2, 2, 2, 577, 578, 7, 97, 2, 2, 578, 579, 7, 97, 2, 2, 579, 580, 7, 124, 2, 2, 580, 581, 7, 114, 2, 2, 581, 115, 3, 2, 2, 2, 582, 583, 7, 97, 2, 2, 583, 584, 7, 97, 2, 2, 584, 585, 7, 111, 2, 2, 585, 586, 7, 103, 2, 2, 586, 587, 7, 111, 2, 2, 587, 117, 3, 2, 2, 2, 588, 589, 7, 97, 2, 2, 589, 590, 7, 97, 2, 2, 590, 591, 7, 117, 2, 2, 591, 592, 7, 117, 2, 2, 592, 593, 7, 99, 2, 2, 593, 119, 3, 2, 2, 2, 594, 595, 7, 97, 2, 2, 595, 596, 7, 97, 2, 2, 596, 597, 7, 111, 2, 2, 597, 598, 7, 99, 2, 2, 598, 121, 3, 2, 2, 2, 599, 600, 7, 101, 2, 2, 600, 601, 7, 99, 2, 2, 601, 602, 7, 110, 2, 2, 602, 603, 7, 110, 2, 2, 603, 604, 7, 107, 2, 2, 604, 605, 7, 112, 2, 2, 605, 606, 7, 105, 2, 2, 606, 123, 3, 2, 2, 2, 607, 608, 7, 97, 2, 2, 608, 609, 7, 97, 2, 2, 609, 610, 7, 117, 2, 2, 610, 611, 7, 118, 2, 2, 611, 612, 7, 99, 2, 2, 612, 613, 7, 101, 2, 2, 613, 614, 7, 109, 2, 2, 614, 615, 7, 101, 2, 2, 615, 616, 7, 99, 2, 2, 616, 617, 7, 110, 2, 2, 617, 628, 7, 110, 2, 2, 618, 619, 7, 97, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 114, 2, 2, 621, 622, 7, 106, 2, 2, 622, 623, 7, 107, 2, 2, 623, 624, 7, 101, 2, 2, 624, 625, 7, 99, 2, 2, 625, 626, 7, 110, 2, 2, 626, 628, 7, 110, 2, 2, 627, 607, 3, 2, 2, 2, 627, 618, 3, 2, 2, 2, 628, 125, 3, 2, 2, 2, 629, 630, 7, 120, 2, 2, 630, 631, 7, 99, 2, 2, 631, 632, 7, 116, 2, 2, 632, 633, 7, 97, 2, 2, 633, 634, 7, 111, 2, 2, 634, 635, 7, 113, 2, 2, 635, 636, 7, 102, 2, 2, 636, 637, 7, 103, 2, 2, 637, 638, 7, 110, 2, 2, 638, 127, 3, 2, 2, 2, 639, 640, 7, 107, 2, 2, 640, 641, 7, 104, 2, 2, 641, 129, 3, 2, 2, 2, 642, 643, 7, 103, 2, 2, 643, 644, 7, 110, 2, 2, 644, 645, 7, 117, 2, 2, 645, 646, 7, 103, 2, 2, 646, 131, 3, 2, 2, 2, 647, 648, 7, 121, 2, 2, 648, 649, 7, 106, 2, 2, 649, 650, 7, 107, 2, 2, 650, 651, 7, 110, 2, 2, 651, 652, 7, 103, 2, 2, 652, 133, 3, 2, 2, 2, 653, 654, 7, 102, 2, 2, 654, 655, 7, 113, 2, 2, 655, 135, 3, 2, 2, 2, 656, 657, 7, 104, 2, 2, 657, 658, 7, 113, 2, 2, 658, 659, 7, 116, 2, 2, 659, 137, 3, 2, 2, 2, 660, 661, 7, 117, 2, 2, 661, 662, 7, 121, 2, 2, 662, 663, 7, 107, 2, 2, 663, 664, 7, 118, 2, 2, 664, 665, 7, 101, 2, 2, 665, 666, 7, 106, 2, 2, 666, 139, 3, 2, 2, 2, 667, 668, 7, 116, 2, 2, 668, 669, 7, 103, 2, 2, 669, 670, 7, 118, 2, 2, 670, 671, 7, 119, 2, 2, 671, 672, 7, 116, 2, 2, 672, 673, 7, 112, 2, 2, 673, 141, 3, 2, 2, 2, 674, 675, 7, 100, 2, 2, 675, 676, 7, 116, 2, 2, 676, 677, 7, 103, 2, 2, 677, 678, 7, 99, 2, 2, 678, 679, 7, 109, 2, 2, 679, 143, 3, 2, 2, 2, 680, 681, 7, 101, 2, 2, 681, 682, 7, 113, 2, 2, 682, 683, 7, 112, 2, 2, 683, 684, 7, 118, 2, 2, 684, 685, 7, 107, 2, 2, 685, 686, 7, 112, 2, 2, 686, 687, 7, 119, 2, 2, 687, 688, 7, 103, 2, 2, 688, 145, 3, 2, 2, 2, 689, 690, 7, 99, 2, 2, 690, 691, 7, 117, 2, 2, 691, 692, 7, 111, 2, 2, 692, 693, 3, 2, 2, 2, 693, 694, 8, 73, 3, 2, 694, 147, 3, 2, 2, 2, 695, 696, 7, 102, 2, 2, 696, 697, 7, 103, 2, 2, 697, 698, 7, 104, 2, 2, 698, 699, 7, 99, 2, 2, 699, 700, 7, 119, 2, 2, 700, 701, 7, 110, 2, 2, 701, 702, 7, 118, 2, 2, 702, 149, 3, 2, 2, 2, 703, 704, 7, 101, 2, 2, 704, 705, 7, 99, 2, 2, 705, 706, 7, 117, 2, 2, 706, 707, 7, 103, 2, 2, 707, 151, 3, 2, 2, 2, 708, 709, 7, 117, 2, 2, 709, 710, 7, 118, 2, 2, 710, 711, 7, 116, 2, 2, 711, 712, 7, 119, 2, 2, 712, 713, 7, 101, 2, 2, 713, 714, 7, 118, 2, 2, 714, 153, 3, 2, 2, 2, 715, 716, 7, 103, 2, 2, 716, 717, 7, 112, 2, 2, 717, 718, 7, 119, 2, 2, 718, 719, 7, 111, 2, 2, 719, 155, 3, 2, 2, 2, 720, 721, 7, 117, 2, 2, 721, 722, 7, 107, 2, 2, 722, 723, 7, 124, 2, 2, 723, 724, 7, 103, 2, 2, 724, 725, 7, 113, 2, 2, 725, 726, 7, 104, 2, 2, 726, 157, 3, 2, 2, 2, 727, 728, 7, 118, 2, 2, 728, 729, 7, 123, 2, 2, 729, 730, 7, 114, 2, 2, 730, 731, 7, 103, 2, 2, 731, 732, 7, 107, 2, 2, 732, 733, 7, 102, 2, 2, 733, 159, 3, 2, 2, 2, 734, 735, 7, 102, 2, 2, 735, 736, 7, 103, 2, 2, 736, 737, 7, 104, 2, 2, 737, 738, 7, 107, 2, 2, 738, 739, 7, 112, 2, 2, 739, 740, 7, 103, 2, 2, 740, 741, 7, 102, 2, 2, 741, 161, 3, 2, 2, 2, 742, 743, 7, 109, 2, 2, 743, 744, 7, 107, 2, 2, 744, 745, 7, 101, 2, 2, 745, 746, 7, 109, 2, 2, 746, 747, 7, 99, 2, 2, 747, 748, 7, 117, 2, 2, 748, 749, 7, 111, 2, 2, 749, 163, 3, 2, 2, 2, 750, 751, 7, 116, 2, 2, 751, 752, 7, 103, 2, 2, 752, 753, 7, 117, 2, 2, 753, 754, 7, 113, 2, 2, 754, 755, 7, 119, 2, 2, 755, 756, 7, 116, 2, 2, 756, 757, 7, 101, 2, 2, 757, 758, 7, 103, 2, 2, 758, 165, 3, 2, 2, 2, 759, 760, 7, 119, 2, 2, 760, 761, 7, 117, 2, 2, 761, 762, 7, 103, 2, 2, 762, 763, 7, 117, 2, 2, 763, 167, 3, 2, 2, 2, 764, 765, 7, 101, 2, 2, 765, 766, 7, 110, 2, 2, 766, 767, 7, 113, 2, 2, 767, 768, 7, 100, 2, 2, 768, 769, 7, 100, 2, 2, 769, 770, 7, 103, 2, 2, 770, 771, 7, 116, 2, 2, 771, 772, 7, 117, 2, 2, 772, 169, 3, 2, 2, 2, 773, 774, 7, 100, 2, 2, 774, 775, 7, 123, 2, 2, 775, 776, 7, 118, 2, 2, 776, 777, 7, 103, 2, 2, 777, 778, 7, 117, 2, 2, 778, 171, 3, 2, 2, 2, 779, 780, 7, 101, 2, 2, 780, 781, 7, 123, 2, 2, 781, 782, 7, 101, 2, 2, 782, 783, 7, 110, 2, 2, 783, 784, 7, 103, 2, 2, 784, 785, 7, 117, 2, 2, 785, 173, 3, 2, 2, 2, 786, 787, 7, 35, 2, 2, 787, 175, 3, 2, 2, 2, 788, 789, 7, 117, 2, 2, 789, 790, 7, 107, 2, 2, 790, 791, 7, 105, 2, 2, 791, 792, 7, 112, 2, 2, 792, 793, 7, 103, 2, 2, 793, 803, 7, 102, 2, 2, 794, 795, 7, 119, 2, 2, 795, 796, 7, 112, 2, 2, 796, 797, 7, 117, 2, 2, 797, 798, 7, 107, 2, 2, 798, 799, 7, 105, 2, 2, 799, 800, 7, 112, 2, 2, 800, 801, 7, 103, 2, 2, 801, 803, 7, 102, 2, 2, 802, 788, 3, 2, 2, 2, 802, 794, 3, 2, 2, 2, 803, 177, 3, 2, 2, 2, 804, 805, 7, 100, 2, 2, 805, 806, 7, 123, 2, 2, 806, 807, 7, 118, 2, 2, 807, 842, 7, 103, 2, 2, 808, 809, 7, 121, 2, 2, 809, 810, 7, 113, 2, 2, 810, 811, 7, 116, 2, 2, 811, 842, 7, 102, 2, 2, 812, 813, 7, 102, 2, 2, 813, 814, 7, 121, 2, 2, 814, 815, 7, 113, 2, 2, 815, 816, 7, 116, 2, 2, 816, 842, 7, 102, 2, 2, 817, 818, 7, 100, 2, 2, 818, 819, 7, 113, 2, 2, 819, 820, 7, 113, 2, 2, 820, 842, 7, 110, 2, 2, 821, 822, 7, 101, 2, 2, 822, 823, 7, 106, 2, 2, 823, 824, 7, 99, 2, 2, 824, 842, 7, 116, 2, 2, 825, 826, 7, 117, 2, 2, 826, 827, 7, 106, 2, 2, 827, 828, 7, 113, 2, 2, 828, 829, 7, 116, 2, 2, 829, 842, 7, 118, 2, 2, 830, 831, 7, 107, 2, 2, 831, 832, 7, 112, 2, 2, 832, 842, 7, 118, 2, 2, 833, 834, 7, 110, 2, 2, 834, 835, 7, 113, 2, 2, 835, 836, 7, 112, 2, 2, 836, 842, 7, 105, 2, 2, 837, 838, 7, 120, 2, 2, 838, 839, 7, 113, 2, 2, 839, 840, 7, 107, 2, 2, 840, 842, 7, 102, 2, 2, 841, 804, 3, 2, 2, 2, 841, 808, 3, 2, 2, 2, 841, 812, 3, 2, 2, 2, 841, 817, 3, 2, 2, 2, 841, 821, 3, 2, 2, 2, 841, 825, 3, 2, 2, 2, 841, 830, 3, 2, 2, 2, 841, 833, 3, 2, 2, 2, 841, 837, 3, 2, 2, 2, 842, 179, 3, 2, 2, 2, 843, 844, 7, 118, 2, 2, 844, 845, 7, 116, 2, 2, 845, 846, 7, 119, 2, 2, 846, 853, 7, 103, 2, 2, 847, 848, 7, 104, 2, 2, 848, 849, 7, 99, 2, 2, 849, 850, 7, 110, 2, 2, 850, 851, 7, 117, 2, 2, 851, 853, 7, 103, 2, 2, 852, 843, 3, 2, 2, 2, 852, 847, 3, 2, 2, 2, 853, 181, 3, 2, 2, 2, 854, 855, 7, 125, 2, 2, 855, 856, 7, 125, 2, 2, 856, 860, 3, 2, 2, 2, 857, 859, 11, 2, 2, 2, 858, 857, 3, 2, 2, 2, 859, 862, 3, 2, 2, 2, 860, 861, 3, 2, 2, 2, 860, 858, 3, 2, 2, 2, 861, 863, 3, 2, 2, 2, 862, 860, 3, 2, 2, 2, 863, 864, 7, 127, 2, 2, 864, 865, 7, 127, 2, 2, 865, 183, 3, 2, 2, 2, 866, 872, 7, 36, 2, 2, 867, 868, 7, 94, 2, 2, 868, 871, 7, 36, 2, 2, 869, 871, 10, 2, 2, 2, 870, 867, 3, 2, 2, 2, 870, 869, 3, 2, 2, 2, 871, 874, 3, 2, 2, 2, 872, 870, 3, 2, 2, 2, 872, 873, 3, 2, 2, 2, 873, 875, 3, 2, 2, 2, 874, 872, 3, 2, 2, 2, 875, 877, 7, 36, 2, 2, 876, 878, 9, 3, 2, 2, 877, 876, 3, 2, 2, 2, 877, 878, 3, 2, 2, 2, 878, 883, 3, 2, 2, 2, 879, 881, 9, 4, 2, 2, 880, 882, 9, 5, 2, 2, 881, 880, 3, 2, 2, 2, 881, 882, 3, 2, 2, 2, 882, 884, 3, 2, 2, 2, 883, 879, 3, 2, 2, 2, 883, 884, 3, 2, 2, 2, 884, 886, 3, 2, 2, 2, 885, 887, 9, 3, 2, 2, 886, 885, 3, 2, 2, 2, 886, 887, 3, 2, 2, 2, 887, 888, 3, 2, 2, 2, 888, 889, 8, 92, 4, 2, 889, 185, 3, 2, 2, 2, 890, 894, 7, 41, 2, 2, 891, 892, 7, 94, 2, 2, 892, 895, 9, 6, 2, 2, 893, 895, 10, 7, 2, 2, 894, 891, 3, 2, 2, 2, 894, 893, 3, 2, 2, 2, 895, 896, 3, 2, 2, 2, 896, 897, 7, 41, 2, 2, 897, 187, 3, 2, 2, 2, 898, 899, 7, 37, 2, 2, 899, 900, 7, 107, 2, 2, 900, 901, 7, 111, 2, 2, 901, 902, 7, 114, 2, 2, 902, 903, 7, 113, 2, 2, 903, 904, 7, 116, 2, 2, 904, 905, 7, 118, 2, 2, 905, 906, 3, 2, 2, 2, 906, 907, 8, 94, 5, 2, 907, 189, 3, 2, 2, 2, 908, 909, 7, 37, 2, 2, 909, 910, 7, 107, 2, 2, 910, 911, 7, 112, 2, 2, 911, 912, 7, 101, 2, 2, 912, 913, 7, 110, 2, 2, 913, 914, 7, 119, 2, 2, 914, 915, 7, 102, 2, 2, 915, 916, 7, 103, 2, 2, 916, 917, 3, 2, 2, 2, 917, 918, 8, 95, 6, 2, 918, 191, 3, 2, 2, 2, 919, 920, 7, 37, 2, 2, 920, 921, 7, 114, 2, 2, 921, 922, 7, 116, 2, 2, 922, 923, 7, 99, 2, 2, 923, 924, 7, 105, 2, 2, 924, 925, 7, 111, 2, 2, 925, 926, 7, 99, 2, 2, 926, 193, 3, 2, 2, 2, 927, 928, 7, 37, 2, 2, 928, 929, 7, 102, 2, 2, 929, 930, 7, 103, 2, 2, 930, 931, 7, 104, 2, 2, 931, 932, 7, 107, 2, 2, 932, 933, 7, 112, 2, 2, 933, 934, 7, 103, 2, 2, 934, 195, 3, 2, 2, 2, 935, 936, 7, 94, 2, 2, 936, 941, 7, 12, 2, 2, 937, 938, 7, 94, 2, 2, 938, 939, 7, 15, 2, 2, 939, 941, 7, 12, 2, 2, 940, 935, 3, 2, 2, 2, 940, 937, 3, 2, 2, 2, 941, 197, 3, 2, 2, 2, 942, 943, 7, 37, 2, 2, 943, 944, 7, 119, 2, 2, 944, 945, 7, 112, 2, 2, 945, 946, 7, 102, 2, 2, 946, 947, 7, 103, 2, 2, 947, 948, 7, 104, 2, 2, 948, 199, 3, 2, 2, 2, 949, 950, 7, 37, 2, 2, 950, 951, 7, 107, 2, 2, 951, 952, 7, 104, 2, 2, 952, 953, 7, 102, 2, 2, 953, 954, 7, 103, 2, 2, 954, 955, 7, 104, 2, 2, 955, 201, 3, 2, 2, 2, 956, 957, 7, 37, 2, 2, 957, 958, 7, 107, 2, 2, 958, 959, 7, 104, 2, 2, 959, 960, 7, 112, 2, 2, 960, 961, 7, 102, 2, 2, 961, 962, 7, 103, 2, 2, 962, 963, 7, 104, 2, 2, 963, 203, 3, 2, 2, 2, 964, 965, 7, 37, 2, 2, 965, 966, 7, 107, 2, 2, 966, 967, 7, 104, 2, 2, 967, 205, 3, 2, 2, 2, 968, 969, 7, 37, 2, 2, 969, 970, 7, 103, 2, 2, 970, 971, 7, 110, 2, 2, 971, 972, 7, 107, 2, 2, 972, 973, 7, 104, 2, 2, 973, 207, 3, 2, 2, 2, 974, 975, 7, 37, 2, 2, 975, 976, 7, 103, 2, 2, 976, 977, 7, 110, 2, 2, 977, 978, 7, 117, 2, 2, 978, 979, 7, 103, 2, 2, 979, 209, 3, 2, 2, 2, 980, 981, 7, 37, 2, 2, 981, 982, 7, 103, 2, 2, 982, 983, 7, 112, 2, 2, 983, 984, 7, 102, 2, 2, 984, 985, 7, 107, 2, 2, 985, 986, 7, 104, 2, 2, 986, 211, 3, 2, 2, 2, 987, 990, 5, 214, 107, 2, 988, 990, 5, 222, 111, 2, 989, 987, 3, 2, 2, 2, 989, 988, 3, 2, 2, 2, 990, 213, 3, 2, 2, 2, 991, 995, 5, 216, 108, 2, 992, 995, 5, 218, 109, 2, 993, 995, 5, 220, 110, 2, 994, 991, 3, 2, 2, 2, 994, 992, 3, 2, 2, 2, 994, 993, 3, 2, 2, 2, 995, 215, 3, 2, 2, 2, 996, 1002, 7, 39, 2, 2, 997, 998, 7, 50, 2, 2, 998, 1002, 7, 100, 2, 2, 999, 1000, 7, 50, 2, 2, 1000, 1002, 7, 68, 2, 2, 1001, 996, 3, 2, 2, 2, 1001, 997, 3, 2, 2, 2, 1001, 999, 3, 2, 2, 2, 1002, 1006, 3, 2, 2, 2, 1003, 1005, 5, 230, 115, 2, 1004, 1003, 3, 2, 2, 2, 1005, 1008, 3, 2, 2, 2, 1006, 1004, 3, 2, 2, 2, 1006, 1007, 3, 2, 2, 2, 1007, 1009, 3, 2, 2, 2, 1008, 1006, 3, 2, 2, 2, 1009, 1011, 7, 48, 2, 2, 1010, 1012, 5, 230, 115, 2, 1011, 1010, 3, 2, 2, 2, 1012, 1013, 3, 2, 2, 2, 1013, 1011, 3, 2, 2, 2, 1013, 1014, 3, 2, 2, 2, 1014, 217, 3, 2, 2, 2, 1015, 1017, 5, 232, 116, 2, 1016, 1015, 3, 2, 2, 2, 1017, 1020, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1018, 1019, 3, 2, 2, 2, 1019, 1021, 3, 2, 2, 2, 1020, 1018, 3, 2, 2, 2, 1021, 1023, 7, 48, 2, 2, 1022, 1024, 5, 232, 116, 2, 1023, 1022, 3, 2, 2, 2, 1024, 1025, 3, 2, 2, 2, 1025, 1023, 3, 2, 2, 2, 1025, 1026, 3, 2, 2, 2, 1026, 219, 3, 2, 2, 2, 1027, 1033, 7, 38, 2, 2, 1028, 1029, 7, 50, 2, 2, 1029, 1033, 7, 122, 2, 2, 1030, 1031, 7, 50, 2, 2, 1031, 1033, 7, 90, 2, 2, 1032, 1027, 3, 2, 2, 2, 1032, 1028, 3, 2, 2, 2, 1032, 1030, 3, 2, 2, 2, 1033, 1037, 3, 2, 2, 2, 1034, 1036, 5, 234, 117, 2, 1035, 1034, 3, 2, 2, 2, 1036, 1039, 3, 2, 2, 2, 1037, 1035, 3, 2, 2, 2, 1037, 1038, 3, 2, 2, 2, 1038, 1040, 3, 2, 2, 2, 1039, 1037, 3, 2, 2, 2, 1040, 1042, 7, 48, 2, 2, 1041, 1043, 5, 234, 117, 2, 1042, 1041, 3, 2, 2, 2, 1043, 1044, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1045, 221, 3, 2, 2, 2, 1046, 1050, 5, 226, 113, 2, 1047, 1050, 5, 228, 114, 2, 1048, 1050, 5, 224, 112, 2, 1049, 1046, 3, 2, 2, 2, 1049, 1047, 3, 2, 2, 2, 1049, 1048, 3, 2, 2, 2, 1050, 1054, 3, 2, 2, 2, 1051, 1052, 9, 8, 2, 2, 1052, 1055, 9, 9, 2, 2, 1053, 1055, 7, 110, 2, 2, 1054, 1051, 3, 2, 2, 2, 1054, 1053, 3, 2, 2, 2, 1054, 1055, 3, 2, 2, 2, 1055, 223, 3, 2, 2, 2, 1056, 1057, 7, 50, 2, 2, 1057, 1059, 9, 10, 2, 2, 1058, 1060, 5, 230, 115, 2, 1059, 1058, 3, 2, 2, 2, 1060, 1061, 3, 2, 2, 2, 1061, 1059, 3, 2, 2, 2, 1061, 1062, 3, 2, 2, 2, 1062, 1070, 3, 2, 2, 2, 1063, 1065, 7, 39, 2, 2, 1064, 1066, 5, 230, 115, 2, 1065, 1064, 3, 2, 2, 2, 1066, 1067, 3, 2, 2, 2, 1067, 1065, 3, 2, 2, 2, 1067, 1068, 3, 2, 2, 2, 1068, 1070, 3, 2, 2, 2, 1069, 1056, 3, 2, 2, 2, 1069, 1063, 3, 2, 2, 2, 1070, 225, 3, 2, 2, 2, 1071, 1073, 5, 232, 116, 2, 1072, 1071, 3, 2, 2, 2, 1073, 1074, 3, 2, 2, 2, 1074, 1072, 3, 2, 2, 2, 1074, 1075, 3, 2, 2, 2, 1075, 227, 3, 2, 2, 2, 1076, 1082, 7, 38, 2, 2, 1077, 1078, 7, 50, 2, 2, 1078, 1082, 7, 122, 2, 2, 1079, 1080, 7, 50, 2, 2, 1080, 1082, 7, 90, 2, 2, 1081, 1076, 3, 2, 2, 2, 1081, 1077, 3, 2, 2, 2, 1081, 1079, 3, 2, 2, 2, 1082, 1084, 3, 2, 2, 2, 1083, 1085, 5, 234, 117, 2, 1084, 1083, 3, 2, 2, 2, 1085, 1086, 3, 2, 2, 2, 1086, 1084, 3, 2, 2, 2, 1086, 1087, 3, 2, 2, 2, 1087, 229, 3, 2, 2, 2, 1088, 1089, 9, 11, 2, 2, 1089, 231, 3, 2, 2, 2, 1090, 1091, 9, 12, 2, 2, 1091, 233, 3, 2, 2, 2, 1092, 1093, 9, 13, 2, 2, 1093, 235, 3, 2, 2, 2, 1094, 1098, 5, 238, 119, 2, 1095, 1097, 5, 240, 120, 2, 1096, 1095, 3, 2, 2, 2, 1097, 1100, 3, 2, 2, 2, 1098, 1096, 3, 2, 2, 2, 1098, 1099, 3, 2, 2, 2, 1099, 1101, 3, 2, 2, 2, 1100, 1098, 3, 2, 2, 2, 1101, 1102, 8, 118, 7, 2, 1102, 237, 3, 2, 2, 2, 1103, 1104, 9, 14, 2, 2, 1104, 239, 3, 2, 2, 2, 1105, 1106, 9, 15, 2, 2, 1106, 241, 3, 2, 2, 2, 1107, 1109, 9, 16, 2, 2, 1108, 1107, 3, 2, 2, 2, 1109, 1110, 3, 2, 2, 2, 1110, 1108, 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1112, 3, 2, 2, 2, 1112, 1113, 8, 121, 8, 2, 1113, 243, 3, 2, 2, 2, 1114, 1115, 7, 49, 2, 2, 1115, 1116, 7, 49, 2, 2, 1116, 1120, 3, 2, 2, 2, 1117, 1119, 10, 17, 2, 2, 1118, 1117, 3, 2, 2, 2, 1119, 1122, 3, 2, 2, 2, 1120, 1118, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1123, 3, 2, 2, 2, 1122, 1120, 3, 2, 2, 2, 1123, 1124, 8, 122, 9, 2, 1124, 245, 3, 2, 2, 2, 1125, 1126, 7, 49, 2, 2, 1126, 1127, 7, 44, 2, 2, 1127, 1131, 3, 2, 2, 2, 1128, 1130, 11, 2, 2, 2, 1129, 1128, 3, 2, 2, 2, 1130, 1133, 3, 2, 2, 2, 1131, 1132, 3, 2, 2, 2, 1131, 1129, 3, 2, 2, 2, 1132, 1134, 3, 2, 2, 2, 1133, 1131, 3, 2, 2, 2, 1134, 1135, 7, 44, 2, 2, 1135, 1136, 7, 49, 2, 2, 1136, 1137, 3, 2, 2, 2, 1137, 1138, 8, 123, 9, 2, 1138, 247, 3, 2, 2, 2, 1139, 1140, 7, 48, 2, 2, 1140, 1141, 7, 100, 2, 2, 1141, 1142, 7, 123, 2, 2, 1142, 1143, 7, 118, 2, 2, 1143, 1144, 7, 103, 2, 2, 1144, 249, 3, 2, 2, 2, 1145, 1146, 7, 100, 2, 2, 1146, 1147, 7, 116, 2, 2, 1147, 1368, 7, 109, 2, 2, 1148, 1149, 7, 113, 2, 2, 1149, 1150, 7, 116, 2, 2, 1150, 1368, 7, 99, 2, 2, 1151, 1152, 7, 109, 2, 2, 1152, 1153, 7, 107, 2, 2, 1153, 1368, 7, 110, 2, 2, 1154, 1155, 7, 117, 2, 2, 1155, 1156, 7, 110, 2, 2, 1156, 1368, 7, 113, 2, 2, 1157, 1158, 7, 112, 2, 2, 1158, 1159, 7, 113, 2, 2, 1159, 1368, 7, 114, 2, 2, 1160, 1161, 7, 99, 2, 2, 1161, 1162, 7, 117, 2, 2, 1162, 1368, 7, 110, 2, 2, 1163, 1164, 7, 114, 2, 2, 1164, 1165, 7, 106, 2, 2, 1165, 1368, 7, 114, 2, 2, 1166, 1167, 7, 99, 2, 2, 1167, 1168, 7, 112, 2, 2, 1168, 1368, 7, 101, 2, 2, 1169, 1170, 7, 100, 2, 2, 1170, 1171, 7, 114, 2, 2, 1171, 1368, 7, 110, 2, 2, 1172, 1173, 7, 101, 2, 2, 1173, 1174, 7, 110, 2, 2, 1174, 1368, 7, 101, 2, 2, 1175, 1176, 7, 108, 2, 2, 1176, 1177, 7, 117, 2, 2, 1177, 1368, 7, 116, 2, 2, 1178, 1179, 7, 99, 2, 2, 1179, 1180, 7, 112, 2, 2, 1180, 1368, 7, 102, 2, 2, 1181, 1182, 7, 116, 2, 2, 1182, 1183, 7, 110, 2, 2, 1183, 1368, 7, 99, 2, 2, 1184, 1185, 7, 100, 2, 2, 1185, 1186, 7, 107, 2, 2, 1186, 1368, 7, 118, 2, 2, 1187, 1188, 7, 116, 2, 2, 1188, 1189, 7, 113, 2, 2, 1189, 1368, 7, 110, 2, 2, 1190, 1191, 7, 114, 2, 2, 1191, 1192, 7, 110, 2, 2, 1192, 1368, 7, 99, 2, 2, 1193, 1194, 7, 114, 2, 2, 1194, 1195, 7, 110, 2, 2, 1195, 1368, 7, 114, 2, 2, 1196, 1197, 7, 100, 2, 2, 1197, 1198, 7, 111, 2, 2, 1198, 1368, 7, 107, 2, 2, 1199, 1200, 7, 117, 2, 2, 1200, 1201, 7, 103, 2, 2, 1201, 1368, 7, 101, 2, 2, 1202, 1203, 7, 116, 2, 2, 1203, 1204, 7, 118, 2, 2, 1204, 1368, 7, 107, 2, 2, 1205, 1206, 7, 103, 2, 2, 1206, 1207, 7, 113, 2, 2, 1207, 1368, 7, 116, 2, 2, 1208, 1209, 7, 117, 2, 2, 1209, 1210, 7, 116, 2, 2, 1210, 1368, 7, 103, 2, 2, 1211, 1212, 7, 110, 2, 2, 1212, 1213, 7, 117, 2, 2, 1213, 1368, 7, 116, 2, 2, 1214, 1215, 7, 114, 2, 2, 1215, 1216, 7, 106, 2, 2, 1216, 1368, 7, 99, 2, 2, 1217, 1218, 7, 99, 2, 2, 1218, 1219, 7, 110, 2, 2, 1219, 1368, 7, 116, 2, 2, 1220, 1221, 7, 108, 2, 2, 1221, 1222, 7, 111, 2, 2, 1222, 1368, 7, 114, 2, 2, 1223, 1224, 7, 100, 2, 2, 1224, 1225, 7, 120, 2, 2, 1225, 1368, 7, 101, 2, 2, 1226, 1227, 7, 101, 2, 2, 1227, 1228, 7, 110, 2, 2, 1228, 1368, 7, 107, 2, 2, 1229, 1230, 7, 116, 2, 2, 1230, 1231, 7, 118, 2, 2, 1231, 1368, 7, 117, 2, 2, 1232, 1233, 7, 99, 2, 2, 1233, 1234, 7, 102, 2, 2, 1234, 1368, 7, 101, 2, 2, 1235, 1236, 7, 116, 2, 2, 1236, 1237, 7, 116, 2, 2, 1237, 1368, 7, 99, 2, 2, 1238, 1239, 7, 100, 2, 2, 1239, 1240, 7, 120, 2, 2, 1240, 1368, 7, 117, 2, 2, 1241, 1242, 7, 117, 2, 2, 1242, 1243, 7, 103, 2, 2, 1243, 1368, 7, 107, 2, 2, 1244, 1245, 7, 117, 2, 2, 1245, 1246, 7, 99, 2, 2, 1246, 1368, 7, 122, 2, 2, 1247, 1248, 7, 117, 2, 2, 1248, 1249, 7, 118, 2, 2, 1249, 1368, 7, 123, 2, 2, 1250, 1251, 7, 117, 2, 2, 1251, 1252, 7, 118, 2, 2, 1252, 1368, 7, 99, 2, 2, 1253, 1254, 7, 117, 2, 2, 1254, 1255, 7, 118, 2, 2, 1255, 1368, 7, 122, 2, 2, 1256, 1257, 7, 102, 2, 2, 1257, 1258, 7, 103, 2, 2, 1258, 1368, 7, 123, 2, 2, 1259, 1260, 7, 118, 2, 2, 1260, 1261, 7, 122, 2, 2, 1261, 1368, 7, 99, 2, 2, 1262, 1263, 7, 122, 2, 2, 1263, 1264, 7, 99, 2, 2, 1264, 1368, 7, 99, 2, 2, 1265, 1266, 7, 100, 2, 2, 1266, 1267, 7, 101, 2, 2, 1267, 1368, 7, 101, 2, 2, 1268, 1269, 7, 99, 2, 2, 1269, 1270, 7, 106, 2, 2, 1270, 1368, 7, 122, 2, 2, 1271, 1272, 7, 118, 2, 2, 1272, 1273, 7, 123, 2, 2, 1273, 1368, 7, 99, 2, 2, 1274, 1275, 7, 118, 2, 2, 1275, 1276, 7, 122, 2, 2, 1276, 1368, 7, 117, 2, 2, 1277, 1278, 7, 118, 2, 2, 1278, 1279, 7, 99, 2, 2, 1279, 1368, 7, 117, 2, 2, 1280, 1281, 7, 117, 2, 2, 1281, 1282, 7, 106, 2, 2, 1282, 1368, 7, 123, 2, 2, 1283, 1284, 7, 117, 2, 2, 1284, 1285, 7, 106, 2, 2, 1285, 1368, 7, 122, 2, 2, 1286, 1287, 7, 110, 2, 2, 1287, 1288, 7, 102, 2, 2, 1288, 1368, 7, 123, 2, 2, 1289, 1290, 7, 110, 2, 2, 1290, 1291, 7, 102, 2, 2, 1291, 1368, 7, 99, 2, 2, 1292, 1293, 7, 110, 2, 2, 1293, 1294, 7, 102, 2, 2, 1294, 1368, 7, 122, 2, 2, 1295, 1296, 7, 110, 2, 2, 1296, 1297, 7, 99, 2, 2, 1297, 1368, 7, 122, 2, 2, 1298, 1299, 7, 118, 2, 2, 1299, 1300, 7, 99, 2, 2, 1300, 1368, 7, 123, 2, 2, 1301, 1302, 7, 118, 2, 2, 1302, 1303, 7, 99, 2, 2, 1303, 1368, 7, 122, 2, 2, 1304, 1305, 7, 100, 2, 2, 1305, 1306, 7, 101, 2, 2, 1306, 1368, 7, 117, 2, 2, 1307, 1308, 7, 101, 2, 2, 1308, 1309, 7, 110, 2, 2, 1309, 1368, 7, 120, 2, 2, 1310, 1311, 7, 118, 2, 2, 1311, 1312, 7, 117, 2, 2, 1312, 1368, 7, 122, 2, 2, 1313, 1314, 7, 110, 2, 2, 1314, 1315, 7, 99, 2, 2, 1315, 1368, 7, 117, 2, 2, 1316, 1317, 7, 101, 2, 2, 1317, 1318, 7, 114, 2, 2, 1318, 1368, 7, 123, 2, 2, 1319, 1320, 7, 101, 2, 2, 1320, 1321, 7, 111, 2, 2, 1321, 1368, 7, 114, 2, 2, 1322, 1323, 7, 101, 2, 2, 1323, 1324, 7, 114, 2, 2, 1324, 1368, 7, 122, 2, 2, 1325, 1326, 7, 102, 2, 2, 1326, 1327, 7, 101, 2, 2, 1327, 1368, 7, 114, 2, 2, 1328, 1329, 7, 102, 2, 2, 1329, 1330, 7, 103, 2, 2, 1330, 1368, 7, 101, 2, 2, 1331, 1332, 7, 107, 2, 2, 1332, 1333, 7, 112, 2, 2, 1333, 1368, 7, 101, 2, 2, 1334, 1335, 7, 99, 2, 2, 1335, 1336, 7, 122, 2, 2, 1336, 1368, 7, 117, 2, 2, 1337, 1338, 7, 100, 2, 2, 1338, 1339, 7, 112, 2, 2, 1339, 1368, 7, 103, 2, 2, 1340, 1341, 7, 101, 2, 2, 1341, 1342, 7, 110, 2, 2, 1342, 1368, 7, 102, 2, 2, 1343, 1344, 7, 117, 2, 2, 1344, 1345, 7, 100, 2, 2, 1345, 1368, 7, 101, 2, 2, 1346, 1347, 7, 107, 2, 2, 1347, 1348, 7, 117, 2, 2, 1348, 1368, 7, 101, 2, 2, 1349, 1350, 7, 107, 2, 2, 1350, 1351, 7, 112, 2, 2, 1351, 1368, 7, 122, 2, 2, 1352, 1353, 7, 100, 2, 2, 1353, 1354, 7, 103, 2, 2, 1354, 1368, 7, 115, 2, 2, 1355, 1356, 7, 117, 2, 2, 1356, 1357, 7, 103, 2, 2, 1357, 1368, 7, 102, 2, 2, 1358, 1359, 7, 102, 2, 2, 1359, 1360, 7, 103, 2, 2, 1360, 1368, 7, 122, 2, 2, 1361, 1362, 7, 107, 2, 2, 1362, 1363, 7, 112, 2, 2, 1363, 1368, 7, 123, 2, 2, 1364, 1365, 7, 116, 2, 2, 1365, 1366, 7, 113, 2, 2, 1366, 1368, 7, 116, 2, 2, 1367, 1145, 3, 2, 2, 2, 1367, 1148, 3, 2, 2, 2, 1367, 1151, 3, 2, 2, 2, 1367, 1154, 3, 2, 2, 2, 1367, 1157, 3, 2, 2, 2, 1367, 1160, 3, 2, 2, 2, 1367, 1163, 3, 2, 2, 2, 1367, 1166, 3, 2, 2, 2, 1367, 1169, 3, 2, 2, 2, 1367, 1172, 3, 2, 2, 2, 1367, 1175, 3, 2, 2, 2, 1367, 1178, 3, 2, 2, 2, 1367, 1181, 3, 2, 2, 2, 1367, 1184, 3, 2, 2, 2, 1367, 1187, 3, 2, 2, 2, 1367, 1190, 3, 2, 2, 2, 1367, 1193, 3, 2, 2, 2, 1367, 1196, 3, 2, 2, 2, 1367, 1199, 3, 2, 2, 2, 1367, 1202, 3, 2, 2, 2, 1367, 1205, 3, 2, 2, 2, 1367, 1208, 3, 2, 2, 2, 1367, 1211, 3, 2, 2, 2, 1367, 1214, 3, 2, 2, 2, 1367, 1217, 3, 2, 2, 2, 1367, 1220, 3, 2, 2, 2, 1367, 1223, 3, 2, 2, 2, 1367, 1226, 3, 2, 2, 2, 1367, 1229, 3, 2, 2, 2, 1367, 1232, 3, 2, 2, 2, 1367, 1235, 3, 2, 2, 2, 1367, 1238, 3, 2, 2, 2, 1367, 1241, 3, 2, 2, 2, 1367, 1244, 3, 2, 2, 2, 1367, 1247, 3, 2, 2, 2, 1367, 1250, 3, 2, 2, 2, 1367, 1253, 3, 2, 2, 2, 1367, 1256, 3, 2, 2, 2, 1367, 1259, 3, 2, 2, 2, 1367, 1262, 3, 2, 2, 2, 1367, 1265, 3, 2, 2, 2, 1367, 1268, 3, 2, 2, 2, 1367, 1271, 3, 2, 2, 2, 1367, 1274, 3, 2, 2, 2, 1367, 1277, 3, 2, 2, 2, 1367, 1280, 3, 2, 2, 2, 1367, 1283, 3, 2, 2, 2, 1367, 1286, 3, 2, 2, 2, 1367, 1289, 3, 2, 2, 2, 1367, 1292, 3, 2, 2, 2, 1367, 1295, 3, 2, 2, 2, 1367, 1298, 3, 2, 2, 2, 1367, 1301, 3, 2, 2, 2, 1367, 1304, 3, 2, 2, 2, 1367, 1307, 3, 2, 2, 2, 1367, 1310, 3, 2, 2, 2, 1367, 1313, 3, 2, 2, 2, 1367, 1316, 3, 2, 2, 2, 1367, 1319, 3, 2, 2, 2, 1367, 1322, 3, 2, 2, 2, 1367, 1325, 3, 2, 2, 2, 1367, 1328, 3, 2, 2, 2, 1367, 1331, 3, 2, 2, 2, 1367, 1334, 3, 2, 2, 2, 1367, 1337, 3, 2, 2, 2, 1367, 1340, 3, 2, 2, 2, 1367, 1343, 3, 2, 2, 2, 1367, 1346, 3, 2, 2, 2, 1367, 1349, 3, 2, 2, 2, 1367, 1352, 3, 2, 2, 2, 1367, 1355, 3, 2, 2, 2, 1367, 1358, 3, 2, 2, 2, 1367, 1361, 3, 2, 2, 2, 1367, 1364, 3, 2, 2, 2, 1368, 251, 3, 2, 2, 2, 1369, 1370, 7, 37, 2, 2, 1370, 253, 3, 2, 2, 2, 1371, 1372, 7, 60, 2, 2, 1372, 255, 3, 2, 2, 2, 1373, 1374, 7, 46, 2, 2, 1374, 257, 3, 2, 2, 2, 1375, 1376, 7, 42, 2, 2, 1376, 259, 3, 2, 2, 2, 1377, 1378, 7, 43, 2, 2, 1378, 261, 3, 2, 2, 2, 1379, 1380, 7, 93, 2, 2, 1380, 263, 3, 2, 2, 2, 1381, 1382, 7, 95, 2, 2, 1382, 265, 3, 2, 2, 2, 1383, 1384, 7, 48, 2, 2, 1384, 267, 3, 2, 2, 2, 1385, 1386, 7, 62, 2, 2, 1386, 1387, 7, 62, 2, 2, 1387, 269, 3, 2, 2, 2, 1388, 1389, 7, 64, 2, 2, 1389, 1390, 7, 64, 2, 2, 1390, 271, 3, 2, 2, 2, 1391, 1392, 7, 45, 2, 2, 1392, 273, 3, 2, 2, 2, 1393, 1394, 7, 47, 2, 2, 1394, 275, 3, 2, 2, 2, 1395, 1396, 7, 62, 2, 2, 1396, 277, 3, 2, 2, 2, 1397, 1398, 7, 64, 2, 2, 1398, 279, 3, 2, 2, 2, 1399, 1400, 7, 44, 2, 2, 1400, 281, 3, 2, 2, 2, 1401, 1402, 7, 49, 2, 2, 1402, 283, 3, 2, 2, 2, 1403, 1404, 7, 125, 2, 2, 1404, 1405, 8, 142, 10, 2, 1405, 285, 3, 2, 2, 2, 1406, 1407, 7, 127, 2, 2, 1407, 1408, 8, 143, 11, 2, 1408, 287, 3, 2, 2, 2, 1409, 1412, 5, 290, 145, 2, 1410, 1412, 5, 298, 149, 2, 1411, 1409, 3, 2, 2, 2, 1411, 1410, 3, 2, 2, 2, 1412, 289, 3, 2, 2, 2, 1413, 1417, 5, 292, 146, 2, 1414, 1417, 5, 294, 147, 2, 1415, 1417, 5, 296, 148, 2, 1416, 1413, 3, 2, 2, 2, 1416, 1414, 3, 2, 2, 2, 1416, 1415, 3, 2, 2, 2, 1417, 291, 3, 2, 2, 2, 1418, 1422, 7, 39, 2, 2, 1419, 1421, 5, 306, 153, 2, 1420, 1419, 3, 2, 2, 2, 1421, 1424, 3, 2, 2, 2, 1422, 1420, 3, 2, 2, 2, 1422, 1423, 3, 2, 2, 2, 1423, 1425, 3, 2, 2, 2, 1424, 1422, 3, 2, 2, 2, 1425, 1427, 7, 48, 2, 2, 1426, 1428, 5, 306, 153, 2, 1427, 1426, 3, 2, 2, 2, 1428, 1429, 3, 2, 2, 2, 1429, 1427, 3, 2, 2, 2, 1429, 1430, 3, 2, 2, 2, 1430, 293, 3, 2, 2, 2, 1431, 1433, 5, 308, 154, 2, 1432, 1431, 3, 2, 2, 2, 1433, 1436, 3, 2, 2, 2, 1434, 1432, 3, 2, 2, 2, 1434, 1435, 3, 2, 2, 2, 1435, 1437, 3, 2, 2, 2, 1436, 1434, 3, 2, 2, 2, 1437, 1439, 7, 48, 2, 2, 1438, 1440, 5, 308, 154, 2, 1439, 1438, 3, 2, 2, 2, 1440, 1441, 3, 2, 2, 2, 1441, 1439, 3, 2, 2, 2, 1441, 1442, 3, 2, 2, 2, 1442, 295, 3, 2, 2, 2, 1443, 1447, 7, 38, 2, 2, 1444, 1446, 5, 310, 155, 2, 1445, 1444, 3, 2, 2, 2, 1446, 1449, 3, 2, 2, 2, 1447, 1445, 3, 2, 2, 2, 1447, 1448, 3, 2, 2, 2, 1448, 1450, 3, 2, 2, 2, 1449, 1447, 3, 2, 2, 2, 1450, 1452, 7, 48, 2, 2, 1451, 1453, 5, 310, 155, 2, 1452, 1451, 3, 2, 2, 2, 1453, 1454, 3, 2, 2, 2, 1454, 1452, 3, 2, 2, 2, 1454, 1455, 3, 2, 2, 2, 1455, 297, 3, 2, 2, 2, 1456, 1460, 5, 302, 151, 2, 1457, 1460, 5, 304, 152, 2, 1458, 1460, 5, 300, 150, 2, 1459, 1456, 3, 2, 2, 2, 1459, 1457, 3, 2, 2, 2, 1459, 1458, 3, 2, 2, 2, 1460, 299, 3, 2, 2, 2, 1461, 1463, 7, 39, 2, 2, 1462, 1464, 5, 306, 153, 2, 1463, 1462, 3, 2, 2, 2, 1464, 1465, 3, 2, 2, 2, 1465, 1463, 3, 2, 2, 2, 1465, 1466, 3, 2, 2, 2, 1466, 301, 3, 2, 2, 2, 1467, 1469, 5, 308, 154, 2, 1468, 1467, 3, 2, 2, 2, 1469, 1470, 3, 2, 2, 2, 1470, 1468, 3, 2, 2, 2, 1470, 1471, 3, 2, 2, 2, 1471, 303, 3, 2, 2, 2, 1472, 1474, 7, 38, 2, 2, 1473, 1475, 5, 310, 155, 2, 1474, 1473, 3, 2, 2, 2, 1475, 1476, 3, 2, 2, 2, 1476, 1474, 3, 2, 2, 2, 1476, 1477, 3, 2, 2, 2, 1477, 305, 3, 2, 2, 2, 1478, 1479, 9, 11, 2, 2, 1479, 307, 3, 2, 2, 2, 1480, 1481, 9, 12, 2, 2, 1481, 309, 3, 2, 2, 2, 1482, 1483, 9, 13, 2, 2, 1483, 311, 3, 2, 2, 2, 1484, 1488, 7, 41, 2, 2, 1485, 1486, 7, 94, 2, 2, 1486, 1489, 9, 6, 2, 2, 1487, 1489, 10, 7, 2, 2, 1488, 1485, 3, 2, 2, 2, 1488, 1487, 3, 2, 2, 2, 1489, 1490, 3, 2, 2, 2, 1490, 1491, 7, 41, 2, 2, 1491, 313, 3, 2, 2, 2, 1492, 1494, 5, 316, 158, 2, 1493, 1495, 9, 18, 2, 2, 1494, 1493, 3, 2, 2, 2, 1495, 1496, 3, 2, 2, 2, 1496, 1494, 3, 2, 2, 2, 1496, 1497, 3, 2, 2, 2, 1497, 315, 3, 2, 2, 2, 1498, 1502, 7, 35, 2, 2, 1499, 1501, 5, 322, 161, 2, 1500, 1499, 3, 2, 2, 2, 1501, 1504, 3, 2, 2, 2, 1502, 1500, 3, 2, 2, 2, 1502, 1503, 3, 2, 2, 2, 1503, 317, 3, 2, 2, 2, 1504, 1502, 3, 2, 2, 2, 1505, 1509, 5, 320, 160, 2, 1506, 1508, 5, 322, 161, 2, 1507, 1506, 3, 2, 2, 2, 1508, 1511, 3, 2, 2, 2, 1509, 1507, 3, 2, 2, 2, 1509, 1510, 3, 2, 2, 2, 1510, 319, 3, 2, 2, 2, 1511, 1509, 3, 2, 2, 2, 1512, 1513, 9, 14, 2, 2, 1513, 321, 3, 2, 2, 2, 1514, 1515, 9, 15, 2, 2, 1515, 323, 3, 2, 2, 2, 1516, 1518, 9, 16, 2, 2, 1517, 1516, 3, 2, 2, 2, 1518, 1519, 3, 2, 2, 2, 1519, 1517, 3, 2, 2, 2, 1519, 1520, 3, 2, 2, 2, 1520, 1521, 3, 2, 2, 2, 1521, 1522, 8, 162, 8, 2, 1522, 325, 3, 2, 2, 2, 1523, 1524, 7, 49, 2, 2, 1524, 1525, 7, 49, 2, 2, 1525, 1529, 3, 2, 2, 2, 1526, 1528, 10, 17, 2, 2, 1527, 1526, 3, 2, 2, 2, 1528, 1531, 3, 2, 2, 2, 1529, 1527, 3, 2, 2, 2, 1529, 1530, 3, 2, 2, 2, 1530, 1532, 3, 2, 2, 2, 1531, 1529, 3, 2, 2, 2, 1532, 1533, 8, 163, 9, 2, 1533, 327, 3, 2, 2, 2, 1534, 1535, 7, 49, 2, 2, 1535, 1536, 7, 44, 2, 2, 1536, 1540, 3, 2, 2, 2, 1537, 1539, 11, 2, 2, 2, 1538, 1537, 3, 2, 2, 2, 1539, 1542, 3, 2, 2, 2, 1540, 1541, 3, 2, 2, 2, 1540, 1538, 3, 2, 2, 2, 1541, 1543, 3, 2, 2, 2, 1542, 1540, 3, 2, 2, 2, 1543, 1544, 7, 44, 2, 2, 1544, 1545, 7, 49, 2, 2, 1545, 1546, 3, 2, 2, 2, 1546, 1547, 8, 164, 9, 2, 1547, 329, 3, 2, 2, 2, 60, 2, 3, 435, 627, 802, 841, 852, 860, 870, 872, 877, 881, 883, 886, 894, 940, 989, 994, 1001, 1006, 1013, 1018, 1025, 1032, 1037, 1044, 1049, 1054, 1061, 1067, 1069, 1074, 1081, 1086, 1098, 1110, 1120, 1131, 1367, 1411, 1416, 1422, 1429, 1434, 1441, 1447, 1454, 1459, 1465, 1470, 1476, 1488, 1496, 1502, 1509, 1519, 1529, 1540, 12, 3, 2, 2, 3, 73, 3, 3, 92, 4, 3, 94, 5, 3, 95, 6, 3, 118, 7, 2, 3, 2, 2, 4, 2, 3, 142, 8, 3, 143, 9] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 157, 1559, 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, 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, 438, 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, 630, 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, 805, 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, 844, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 855, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 7, 91, 861, 10, 91, 12, 91, 14, 91, 864, 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, 911, 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, 960, 10, 104, 3, 105, 3, 105, 3, 105, 5, 105, 965, 10, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 972, 10, 106, 3, 106, 7, 106, 975, 10, 106, 12, 106, 14, 106, 978, 11, 106, 3, 106, 3, 106, 6, 106, 982, 10, 106, 13, 106, 14, 106, 983, 3, 107, 7, 107, 987, 10, 107, 12, 107, 14, 107, 990, 11, 107, 3, 107, 3, 107, 6, 107, 994, 10, 107, 13, 107, 14, 107, 995, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 5, 108, 1003, 10, 108, 3, 108, 7, 108, 1006, 10, 108, 12, 108, 14, 108, 1009, 11, 108, 3, 108, 3, 108, 6, 108, 1013, 10, 108, 13, 108, 14, 108, 1014, 3, 109, 3, 109, 3, 109, 5, 109, 1020, 10, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1025, 10, 109, 3, 110, 3, 110, 3, 110, 6, 110, 1030, 10, 110, 13, 110, 14, 110, 1031, 3, 110, 3, 110, 6, 110, 1036, 10, 110, 13, 110, 14, 110, 1037, 5, 110, 1040, 10, 110, 3, 111, 6, 111, 1043, 10, 111, 13, 111, 14, 111, 1044, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 5, 112, 1052, 10, 112, 3, 112, 6, 112, 1055, 10, 112, 13, 112, 14, 112, 1056, 3, 113, 3, 113, 3, 114, 3, 114, 3, 115, 3, 115, 3, 116, 3, 116, 7, 116, 1067, 10, 116, 12, 116, 14, 116, 1070, 11, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 6, 119, 1080, 10, 119, 13, 119, 14, 119, 1081, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 7, 120, 1091, 10, 120, 12, 120, 14, 120, 1094, 11, 120, 3, 120, 3, 120, 5, 120, 1098, 10, 120, 3, 120, 3, 120, 5, 120, 1102, 10, 120, 5, 120, 1104, 10, 120, 3, 120, 5, 120, 1107, 10, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 5, 121, 1115, 10, 121, 3, 121, 3, 121, 3, 122, 6, 122, 1120, 10, 122, 13, 122, 14, 122, 1121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 7, 123, 1130, 10, 123, 12, 123, 14, 123, 1133, 11, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 7, 124, 1141, 10, 124, 12, 124, 14, 124, 1144, 11, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 5, 126, 1379, 10, 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, 135, 3, 135, 3, 135, 3, 136, 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, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 5, 145, 1423, 10, 145, 3, 146, 3, 146, 3, 146, 5, 146, 1428, 10, 146, 3, 147, 3, 147, 7, 147, 1432, 10, 147, 12, 147, 14, 147, 1435, 11, 147, 3, 147, 3, 147, 6, 147, 1439, 10, 147, 13, 147, 14, 147, 1440, 3, 148, 7, 148, 1444, 10, 148, 12, 148, 14, 148, 1447, 11, 148, 3, 148, 3, 148, 6, 148, 1451, 10, 148, 13, 148, 14, 148, 1452, 3, 149, 3, 149, 7, 149, 1457, 10, 149, 12, 149, 14, 149, 1460, 11, 149, 3, 149, 3, 149, 6, 149, 1464, 10, 149, 13, 149, 14, 149, 1465, 3, 150, 3, 150, 3, 150, 5, 150, 1471, 10, 150, 3, 151, 3, 151, 6, 151, 1475, 10, 151, 13, 151, 14, 151, 1476, 3, 152, 6, 152, 1480, 10, 152, 13, 152, 14, 152, 1481, 3, 153, 3, 153, 6, 153, 1486, 10, 153, 13, 153, 14, 153, 1487, 3, 154, 3, 154, 3, 155, 3, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 5, 157, 1500, 10, 157, 3, 157, 3, 157, 3, 158, 3, 158, 6, 158, 1506, 10, 158, 13, 158, 14, 158, 1507, 3, 159, 3, 159, 7, 159, 1512, 10, 159, 12, 159, 14, 159, 1515, 11, 159, 3, 160, 3, 160, 7, 160, 1519, 10, 160, 12, 160, 14, 160, 1522, 11, 160, 3, 161, 3, 161, 3, 162, 3, 162, 3, 163, 6, 163, 1529, 10, 163, 13, 163, 14, 163, 1530, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 7, 164, 1539, 10, 164, 12, 164, 14, 164, 1542, 11, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 7, 165, 1550, 10, 165, 12, 165, 14, 165, 1553, 11, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 5, 862, 1142, 1551, 2, 166, 4, 4, 6, 5, 8, 6, 10, 7, 12, 8, 14, 9, 16, 10, 18, 11, 20, 12, 22, 13, 24, 14, 26, 15, 28, 16, 30, 17, 32, 18, 34, 19, 36, 20, 38, 21, 40, 22, 42, 23, 44, 24, 46, 25, 48, 26, 50, 27, 52, 28, 54, 29, 56, 30, 58, 31, 60, 32, 62, 33, 64, 34, 66, 35, 68, 36, 70, 37, 72, 38, 74, 39, 76, 40, 78, 41, 80, 42, 82, 43, 84, 44, 86, 45, 88, 46, 90, 47, 92, 48, 94, 49, 96, 50, 98, 51, 100, 52, 102, 53, 104, 54, 106, 55, 108, 56, 110, 57, 112, 58, 114, 59, 116, 60, 118, 61, 120, 62, 122, 63, 124, 64, 126, 65, 128, 66, 130, 67, 132, 68, 134, 69, 136, 70, 138, 71, 140, 72, 142, 73, 144, 74, 146, 75, 148, 76, 150, 77, 152, 78, 154, 79, 156, 80, 158, 81, 160, 82, 162, 83, 164, 84, 166, 85, 168, 86, 170, 87, 172, 88, 174, 89, 176, 90, 178, 91, 180, 92, 182, 93, 184, 94, 186, 95, 188, 96, 190, 97, 192, 98, 194, 99, 196, 100, 198, 101, 200, 102, 202, 103, 204, 104, 206, 105, 208, 106, 210, 107, 212, 108, 214, 109, 216, 110, 218, 111, 220, 112, 222, 113, 224, 114, 226, 2, 228, 2, 230, 2, 232, 115, 234, 2, 236, 2, 238, 116, 240, 117, 242, 118, 244, 119, 246, 120, 248, 121, 250, 122, 252, 123, 254, 124, 256, 125, 258, 126, 260, 127, 262, 128, 264, 129, 266, 130, 268, 131, 270, 132, 272, 133, 274, 134, 276, 135, 278, 136, 280, 137, 282, 138, 284, 139, 286, 140, 288, 141, 290, 142, 292, 143, 294, 144, 296, 145, 298, 146, 300, 147, 302, 148, 304, 149, 306, 150, 308, 2, 310, 2, 312, 2, 314, 151, 316, 152, 318, 153, 320, 154, 322, 2, 324, 2, 326, 155, 328, 156, 330, 157, 4, 2, 3, 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, 7, 2, 48, 59, 67, 92, 94, 94, 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, 2, 1699, 2, 4, 3, 2, 2, 2, 2, 6, 3, 2, 2, 2, 2, 8, 3, 2, 2, 2, 2, 10, 3, 2, 2, 2, 2, 12, 3, 2, 2, 2, 2, 14, 3, 2, 2, 2, 2, 16, 3, 2, 2, 2, 2, 18, 3, 2, 2, 2, 2, 20, 3, 2, 2, 2, 2, 22, 3, 2, 2, 2, 2, 24, 3, 2, 2, 2, 2, 26, 3, 2, 2, 2, 2, 28, 3, 2, 2, 2, 2, 30, 3, 2, 2, 2, 2, 32, 3, 2, 2, 2, 2, 34, 3, 2, 2, 2, 2, 36, 3, 2, 2, 2, 2, 38, 3, 2, 2, 2, 2, 40, 3, 2, 2, 2, 2, 42, 3, 2, 2, 2, 2, 44, 3, 2, 2, 2, 2, 46, 3, 2, 2, 2, 2, 48, 3, 2, 2, 2, 2, 50, 3, 2, 2, 2, 2, 52, 3, 2, 2, 2, 2, 54, 3, 2, 2, 2, 2, 56, 3, 2, 2, 2, 2, 58, 3, 2, 2, 2, 2, 60, 3, 2, 2, 2, 2, 62, 3, 2, 2, 2, 2, 64, 3, 2, 2, 2, 2, 66, 3, 2, 2, 2, 2, 68, 3, 2, 2, 2, 2, 70, 3, 2, 2, 2, 2, 72, 3, 2, 2, 2, 2, 74, 3, 2, 2, 2, 2, 76, 3, 2, 2, 2, 2, 78, 3, 2, 2, 2, 2, 80, 3, 2, 2, 2, 2, 82, 3, 2, 2, 2, 2, 84, 3, 2, 2, 2, 2, 86, 3, 2, 2, 2, 2, 88, 3, 2, 2, 2, 2, 90, 3, 2, 2, 2, 2, 92, 3, 2, 2, 2, 2, 94, 3, 2, 2, 2, 2, 96, 3, 2, 2, 2, 2, 98, 3, 2, 2, 2, 2, 100, 3, 2, 2, 2, 2, 102, 3, 2, 2, 2, 2, 104, 3, 2, 2, 2, 2, 106, 3, 2, 2, 2, 2, 108, 3, 2, 2, 2, 2, 110, 3, 2, 2, 2, 2, 112, 3, 2, 2, 2, 2, 114, 3, 2, 2, 2, 2, 116, 3, 2, 2, 2, 2, 118, 3, 2, 2, 2, 2, 120, 3, 2, 2, 2, 2, 122, 3, 2, 2, 2, 2, 124, 3, 2, 2, 2, 2, 126, 3, 2, 2, 2, 2, 128, 3, 2, 2, 2, 2, 130, 3, 2, 2, 2, 2, 132, 3, 2, 2, 2, 2, 134, 3, 2, 2, 2, 2, 136, 3, 2, 2, 2, 2, 138, 3, 2, 2, 2, 2, 140, 3, 2, 2, 2, 2, 142, 3, 2, 2, 2, 2, 144, 3, 2, 2, 2, 2, 146, 3, 2, 2, 2, 2, 148, 3, 2, 2, 2, 2, 150, 3, 2, 2, 2, 2, 152, 3, 2, 2, 2, 2, 154, 3, 2, 2, 2, 2, 156, 3, 2, 2, 2, 2, 158, 3, 2, 2, 2, 2, 160, 3, 2, 2, 2, 2, 162, 3, 2, 2, 2, 2, 164, 3, 2, 2, 2, 2, 166, 3, 2, 2, 2, 2, 168, 3, 2, 2, 2, 2, 170, 3, 2, 2, 2, 2, 172, 3, 2, 2, 2, 2, 174, 3, 2, 2, 2, 2, 176, 3, 2, 2, 2, 2, 178, 3, 2, 2, 2, 2, 180, 3, 2, 2, 2, 2, 182, 3, 2, 2, 2, 2, 184, 3, 2, 2, 2, 2, 186, 3, 2, 2, 2, 2, 188, 3, 2, 2, 2, 2, 190, 3, 2, 2, 2, 2, 192, 3, 2, 2, 2, 2, 194, 3, 2, 2, 2, 2, 196, 3, 2, 2, 2, 2, 198, 3, 2, 2, 2, 2, 200, 3, 2, 2, 2, 2, 202, 3, 2, 2, 2, 2, 204, 3, 2, 2, 2, 2, 206, 3, 2, 2, 2, 2, 208, 3, 2, 2, 2, 2, 210, 3, 2, 2, 2, 2, 212, 3, 2, 2, 2, 2, 214, 3, 2, 2, 2, 2, 216, 3, 2, 2, 2, 2, 218, 3, 2, 2, 2, 2, 220, 3, 2, 2, 2, 2, 222, 3, 2, 2, 2, 2, 224, 3, 2, 2, 2, 2, 232, 3, 2, 2, 2, 2, 238, 3, 2, 2, 2, 2, 240, 3, 2, 2, 2, 2, 242, 3, 2, 2, 2, 2, 244, 3, 2, 2, 2, 2, 246, 3, 2, 2, 2, 2, 248, 3, 2, 2, 2, 3, 250, 3, 2, 2, 2, 3, 252, 3, 2, 2, 2, 3, 254, 3, 2, 2, 2, 3, 256, 3, 2, 2, 2, 3, 258, 3, 2, 2, 2, 3, 260, 3, 2, 2, 2, 3, 262, 3, 2, 2, 2, 3, 264, 3, 2, 2, 2, 3, 266, 3, 2, 2, 2, 3, 268, 3, 2, 2, 2, 3, 270, 3, 2, 2, 2, 3, 272, 3, 2, 2, 2, 3, 274, 3, 2, 2, 2, 3, 276, 3, 2, 2, 2, 3, 278, 3, 2, 2, 2, 3, 280, 3, 2, 2, 2, 3, 282, 3, 2, 2, 2, 3, 284, 3, 2, 2, 2, 3, 286, 3, 2, 2, 2, 3, 288, 3, 2, 2, 2, 3, 290, 3, 2, 2, 2, 3, 292, 3, 2, 2, 2, 3, 294, 3, 2, 2, 2, 3, 296, 3, 2, 2, 2, 3, 298, 3, 2, 2, 2, 3, 300, 3, 2, 2, 2, 3, 302, 3, 2, 2, 2, 3, 304, 3, 2, 2, 2, 3, 306, 3, 2, 2, 2, 3, 314, 3, 2, 2, 2, 3, 316, 3, 2, 2, 2, 3, 318, 3, 2, 2, 2, 3, 320, 3, 2, 2, 2, 3, 326, 3, 2, 2, 2, 3, 328, 3, 2, 2, 2, 3, 330, 3, 2, 2, 2, 4, 332, 3, 2, 2, 2, 6, 335, 3, 2, 2, 2, 8, 337, 3, 2, 2, 2, 10, 339, 3, 2, 2, 2, 12, 341, 3, 2, 2, 2, 14, 343, 3, 2, 2, 2, 16, 345, 3, 2, 2, 2, 18, 347, 3, 2, 2, 2, 20, 349, 3, 2, 2, 2, 22, 351, 3, 2, 2, 2, 24, 354, 3, 2, 2, 2, 26, 356, 3, 2, 2, 2, 28, 358, 3, 2, 2, 2, 30, 361, 3, 2, 2, 2, 32, 363, 3, 2, 2, 2, 34, 365, 3, 2, 2, 2, 36, 367, 3, 2, 2, 2, 38, 369, 3, 2, 2, 2, 40, 371, 3, 2, 2, 2, 42, 374, 3, 2, 2, 2, 44, 377, 3, 2, 2, 2, 46, 379, 3, 2, 2, 2, 48, 381, 3, 2, 2, 2, 50, 383, 3, 2, 2, 2, 52, 385, 3, 2, 2, 2, 54, 388, 3, 2, 2, 2, 56, 391, 3, 2, 2, 2, 58, 394, 3, 2, 2, 2, 60, 397, 3, 2, 2, 2, 62, 399, 3, 2, 2, 2, 64, 402, 3, 2, 2, 2, 66, 405, 3, 2, 2, 2, 68, 407, 3, 2, 2, 2, 70, 410, 3, 2, 2, 2, 72, 413, 3, 2, 2, 2, 74, 437, 3, 2, 2, 2, 76, 439, 3, 2, 2, 2, 78, 447, 3, 2, 2, 2, 80, 455, 3, 2, 2, 2, 82, 458, 3, 2, 2, 2, 84, 465, 3, 2, 2, 2, 86, 470, 3, 2, 2, 2, 88, 474, 3, 2, 2, 2, 90, 483, 3, 2, 2, 2, 92, 492, 3, 2, 2, 2, 94, 501, 3, 2, 2, 2, 96, 507, 3, 2, 2, 2, 98, 514, 3, 2, 2, 2, 100, 521, 3, 2, 2, 2, 102, 527, 3, 2, 2, 2, 104, 534, 3, 2, 2, 2, 106, 543, 3, 2, 2, 2, 108, 550, 3, 2, 2, 2, 110, 560, 3, 2, 2, 2, 112, 569, 3, 2, 2, 2, 114, 579, 3, 2, 2, 2, 116, 584, 3, 2, 2, 2, 118, 590, 3, 2, 2, 2, 120, 596, 3, 2, 2, 2, 122, 601, 3, 2, 2, 2, 124, 629, 3, 2, 2, 2, 126, 631, 3, 2, 2, 2, 128, 641, 3, 2, 2, 2, 130, 644, 3, 2, 2, 2, 132, 649, 3, 2, 2, 2, 134, 655, 3, 2, 2, 2, 136, 658, 3, 2, 2, 2, 138, 662, 3, 2, 2, 2, 140, 669, 3, 2, 2, 2, 142, 676, 3, 2, 2, 2, 144, 682, 3, 2, 2, 2, 146, 691, 3, 2, 2, 2, 148, 697, 3, 2, 2, 2, 150, 705, 3, 2, 2, 2, 152, 710, 3, 2, 2, 2, 154, 717, 3, 2, 2, 2, 156, 722, 3, 2, 2, 2, 158, 729, 3, 2, 2, 2, 160, 736, 3, 2, 2, 2, 162, 744, 3, 2, 2, 2, 164, 752, 3, 2, 2, 2, 166, 761, 3, 2, 2, 2, 168, 766, 3, 2, 2, 2, 170, 775, 3, 2, 2, 2, 172, 781, 3, 2, 2, 2, 174, 788, 3, 2, 2, 2, 176, 804, 3, 2, 2, 2, 178, 843, 3, 2, 2, 2, 180, 854, 3, 2, 2, 2, 182, 856, 3, 2, 2, 2, 184, 868, 3, 2, 2, 2, 186, 878, 3, 2, 2, 2, 188, 889, 3, 2, 2, 2, 190, 897, 3, 2, 2, 2, 192, 910, 3, 2, 2, 2, 194, 912, 3, 2, 2, 2, 196, 919, 3, 2, 2, 2, 198, 926, 3, 2, 2, 2, 200, 934, 3, 2, 2, 2, 202, 938, 3, 2, 2, 2, 204, 944, 3, 2, 2, 2, 206, 950, 3, 2, 2, 2, 208, 959, 3, 2, 2, 2, 210, 964, 3, 2, 2, 2, 212, 971, 3, 2, 2, 2, 214, 988, 3, 2, 2, 2, 216, 1002, 3, 2, 2, 2, 218, 1019, 3, 2, 2, 2, 220, 1039, 3, 2, 2, 2, 222, 1042, 3, 2, 2, 2, 224, 1051, 3, 2, 2, 2, 226, 1058, 3, 2, 2, 2, 228, 1060, 3, 2, 2, 2, 230, 1062, 3, 2, 2, 2, 232, 1064, 3, 2, 2, 2, 234, 1073, 3, 2, 2, 2, 236, 1075, 3, 2, 2, 2, 238, 1077, 3, 2, 2, 2, 240, 1086, 3, 2, 2, 2, 242, 1110, 3, 2, 2, 2, 244, 1119, 3, 2, 2, 2, 246, 1125, 3, 2, 2, 2, 248, 1136, 3, 2, 2, 2, 250, 1150, 3, 2, 2, 2, 252, 1378, 3, 2, 2, 2, 254, 1380, 3, 2, 2, 2, 256, 1382, 3, 2, 2, 2, 258, 1384, 3, 2, 2, 2, 260, 1386, 3, 2, 2, 2, 262, 1388, 3, 2, 2, 2, 264, 1390, 3, 2, 2, 2, 266, 1392, 3, 2, 2, 2, 268, 1394, 3, 2, 2, 2, 270, 1396, 3, 2, 2, 2, 272, 1399, 3, 2, 2, 2, 274, 1402, 3, 2, 2, 2, 276, 1404, 3, 2, 2, 2, 278, 1406, 3, 2, 2, 2, 280, 1408, 3, 2, 2, 2, 282, 1410, 3, 2, 2, 2, 284, 1412, 3, 2, 2, 2, 286, 1414, 3, 2, 2, 2, 288, 1417, 3, 2, 2, 2, 290, 1422, 3, 2, 2, 2, 292, 1427, 3, 2, 2, 2, 294, 1429, 3, 2, 2, 2, 296, 1445, 3, 2, 2, 2, 298, 1454, 3, 2, 2, 2, 300, 1470, 3, 2, 2, 2, 302, 1472, 3, 2, 2, 2, 304, 1479, 3, 2, 2, 2, 306, 1483, 3, 2, 2, 2, 308, 1489, 3, 2, 2, 2, 310, 1491, 3, 2, 2, 2, 312, 1493, 3, 2, 2, 2, 314, 1495, 3, 2, 2, 2, 316, 1503, 3, 2, 2, 2, 318, 1509, 3, 2, 2, 2, 320, 1516, 3, 2, 2, 2, 322, 1523, 3, 2, 2, 2, 324, 1525, 3, 2, 2, 2, 326, 1528, 3, 2, 2, 2, 328, 1534, 3, 2, 2, 2, 330, 1545, 3, 2, 2, 2, 332, 333, 7, 125, 2, 2, 333, 334, 8, 2, 2, 2, 334, 5, 3, 2, 2, 2, 335, 336, 7, 127, 2, 2, 336, 7, 3, 2, 2, 2, 337, 338, 7, 93, 2, 2, 338, 9, 3, 2, 2, 2, 339, 340, 7, 95, 2, 2, 340, 11, 3, 2, 2, 2, 341, 342, 7, 42, 2, 2, 342, 13, 3, 2, 2, 2, 343, 344, 7, 43, 2, 2, 344, 15, 3, 2, 2, 2, 345, 346, 7, 61, 2, 2, 346, 17, 3, 2, 2, 2, 347, 348, 7, 60, 2, 2, 348, 19, 3, 2, 2, 2, 349, 350, 7, 46, 2, 2, 350, 21, 3, 2, 2, 2, 351, 352, 7, 48, 2, 2, 352, 353, 7, 48, 2, 2, 353, 23, 3, 2, 2, 2, 354, 355, 7, 65, 2, 2, 355, 25, 3, 2, 2, 2, 356, 357, 7, 48, 2, 2, 357, 27, 3, 2, 2, 2, 358, 359, 7, 47, 2, 2, 359, 360, 7, 64, 2, 2, 360, 29, 3, 2, 2, 2, 361, 362, 7, 45, 2, 2, 362, 31, 3, 2, 2, 2, 363, 364, 7, 47, 2, 2, 364, 33, 3, 2, 2, 2, 365, 366, 7, 44, 2, 2, 366, 35, 3, 2, 2, 2, 367, 368, 7, 49, 2, 2, 368, 37, 3, 2, 2, 2, 369, 370, 7, 39, 2, 2, 370, 39, 3, 2, 2, 2, 371, 372, 7, 45, 2, 2, 372, 373, 7, 45, 2, 2, 373, 41, 3, 2, 2, 2, 374, 375, 7, 47, 2, 2, 375, 376, 7, 47, 2, 2, 376, 43, 3, 2, 2, 2, 377, 378, 7, 40, 2, 2, 378, 45, 3, 2, 2, 2, 379, 380, 7, 128, 2, 2, 380, 47, 3, 2, 2, 2, 381, 382, 7, 96, 2, 2, 382, 49, 3, 2, 2, 2, 383, 384, 7, 126, 2, 2, 384, 51, 3, 2, 2, 2, 385, 386, 7, 62, 2, 2, 386, 387, 7, 62, 2, 2, 387, 53, 3, 2, 2, 2, 388, 389, 7, 64, 2, 2, 389, 390, 7, 64, 2, 2, 390, 55, 3, 2, 2, 2, 391, 392, 7, 63, 2, 2, 392, 393, 7, 63, 2, 2, 393, 57, 3, 2, 2, 2, 394, 395, 7, 35, 2, 2, 395, 396, 7, 63, 2, 2, 396, 59, 3, 2, 2, 2, 397, 398, 7, 62, 2, 2, 398, 61, 3, 2, 2, 2, 399, 400, 7, 62, 2, 2, 400, 401, 7, 63, 2, 2, 401, 63, 3, 2, 2, 2, 402, 403, 7, 64, 2, 2, 403, 404, 7, 63, 2, 2, 404, 65, 3, 2, 2, 2, 405, 406, 7, 64, 2, 2, 406, 67, 3, 2, 2, 2, 407, 408, 7, 40, 2, 2, 408, 409, 7, 40, 2, 2, 409, 69, 3, 2, 2, 2, 410, 411, 7, 126, 2, 2, 411, 412, 7, 126, 2, 2, 412, 71, 3, 2, 2, 2, 413, 414, 7, 63, 2, 2, 414, 73, 3, 2, 2, 2, 415, 416, 7, 45, 2, 2, 416, 438, 7, 63, 2, 2, 417, 418, 7, 47, 2, 2, 418, 438, 7, 63, 2, 2, 419, 420, 7, 44, 2, 2, 420, 438, 7, 63, 2, 2, 421, 422, 7, 49, 2, 2, 422, 438, 7, 63, 2, 2, 423, 424, 7, 39, 2, 2, 424, 438, 7, 63, 2, 2, 425, 426, 7, 62, 2, 2, 426, 427, 7, 62, 2, 2, 427, 438, 7, 63, 2, 2, 428, 429, 7, 64, 2, 2, 429, 430, 7, 64, 2, 2, 430, 438, 7, 63, 2, 2, 431, 432, 7, 40, 2, 2, 432, 438, 7, 63, 2, 2, 433, 434, 7, 126, 2, 2, 434, 438, 7, 63, 2, 2, 435, 436, 7, 96, 2, 2, 436, 438, 7, 63, 2, 2, 437, 415, 3, 2, 2, 2, 437, 417, 3, 2, 2, 2, 437, 419, 3, 2, 2, 2, 437, 421, 3, 2, 2, 2, 437, 423, 3, 2, 2, 2, 437, 425, 3, 2, 2, 2, 437, 428, 3, 2, 2, 2, 437, 431, 3, 2, 2, 2, 437, 433, 3, 2, 2, 2, 437, 435, 3, 2, 2, 2, 438, 75, 3, 2, 2, 2, 439, 440, 7, 118, 2, 2, 440, 441, 7, 123, 2, 2, 441, 442, 7, 114, 2, 2, 442, 443, 7, 103, 2, 2, 443, 444, 7, 102, 2, 2, 444, 445, 7, 103, 2, 2, 445, 446, 7, 104, 2, 2, 446, 77, 3, 2, 2, 2, 447, 448, 7, 116, 2, 2, 448, 449, 7, 103, 2, 2, 449, 450, 7, 117, 2, 2, 450, 451, 7, 103, 2, 2, 451, 452, 7, 116, 2, 2, 452, 453, 7, 120, 2, 2, 453, 454, 7, 103, 2, 2, 454, 79, 3, 2, 2, 2, 455, 456, 7, 114, 2, 2, 456, 457, 7, 101, 2, 2, 457, 81, 3, 2, 2, 2, 458, 459, 7, 118, 2, 2, 459, 460, 7, 99, 2, 2, 460, 461, 7, 116, 2, 2, 461, 462, 7, 105, 2, 2, 462, 463, 7, 103, 2, 2, 463, 464, 7, 118, 2, 2, 464, 83, 3, 2, 2, 2, 465, 466, 7, 110, 2, 2, 466, 467, 7, 107, 2, 2, 467, 468, 7, 112, 2, 2, 468, 469, 7, 109, 2, 2, 469, 85, 3, 2, 2, 2, 470, 471, 7, 101, 2, 2, 471, 472, 7, 114, 2, 2, 472, 473, 7, 119, 2, 2, 473, 87, 3, 2, 2, 2, 474, 475, 7, 101, 2, 2, 475, 476, 7, 113, 2, 2, 476, 477, 7, 102, 2, 2, 477, 478, 7, 103, 2, 2, 478, 479, 7, 97, 2, 2, 479, 480, 7, 117, 2, 2, 480, 481, 7, 103, 2, 2, 481, 482, 7, 105, 2, 2, 482, 89, 3, 2, 2, 2, 483, 484, 7, 102, 2, 2, 484, 485, 7, 99, 2, 2, 485, 486, 7, 118, 2, 2, 486, 487, 7, 99, 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, 91, 3, 2, 2, 2, 492, 493, 7, 103, 2, 2, 493, 494, 7, 112, 2, 2, 494, 495, 7, 101, 2, 2, 495, 496, 7, 113, 2, 2, 496, 497, 7, 102, 2, 2, 497, 498, 7, 107, 2, 2, 498, 499, 7, 112, 2, 2, 499, 500, 7, 105, 2, 2, 500, 93, 3, 2, 2, 2, 501, 502, 7, 101, 2, 2, 502, 503, 7, 113, 2, 2, 503, 504, 7, 112, 2, 2, 504, 505, 7, 117, 2, 2, 505, 506, 7, 118, 2, 2, 506, 95, 3, 2, 2, 2, 507, 508, 7, 103, 2, 2, 508, 509, 7, 122, 2, 2, 509, 510, 7, 118, 2, 2, 510, 511, 7, 103, 2, 2, 511, 512, 7, 116, 2, 2, 512, 513, 7, 112, 2, 2, 513, 97, 3, 2, 2, 2, 514, 515, 7, 103, 2, 2, 515, 516, 7, 122, 2, 2, 516, 517, 7, 114, 2, 2, 517, 518, 7, 113, 2, 2, 518, 519, 7, 116, 2, 2, 519, 520, 7, 118, 2, 2, 520, 99, 3, 2, 2, 2, 521, 522, 7, 99, 2, 2, 522, 523, 7, 110, 2, 2, 523, 524, 7, 107, 2, 2, 524, 525, 7, 105, 2, 2, 525, 526, 7, 112, 2, 2, 526, 101, 3, 2, 2, 2, 527, 528, 7, 107, 2, 2, 528, 529, 7, 112, 2, 2, 529, 530, 7, 110, 2, 2, 530, 531, 7, 107, 2, 2, 531, 532, 7, 112, 2, 2, 532, 533, 7, 103, 2, 2, 533, 103, 3, 2, 2, 2, 534, 535, 7, 120, 2, 2, 535, 536, 7, 113, 2, 2, 536, 537, 7, 110, 2, 2, 537, 538, 7, 99, 2, 2, 538, 539, 7, 118, 2, 2, 539, 540, 7, 107, 2, 2, 540, 541, 7, 110, 2, 2, 541, 542, 7, 103, 2, 2, 542, 105, 3, 2, 2, 2, 543, 544, 7, 117, 2, 2, 544, 545, 7, 118, 2, 2, 545, 546, 7, 99, 2, 2, 546, 547, 7, 118, 2, 2, 547, 548, 7, 107, 2, 2, 548, 549, 7, 101, 2, 2, 549, 107, 3, 2, 2, 2, 550, 551, 7, 107, 2, 2, 551, 552, 7, 112, 2, 2, 552, 553, 7, 118, 2, 2, 553, 554, 7, 103, 2, 2, 554, 555, 7, 116, 2, 2, 555, 556, 7, 116, 2, 2, 556, 557, 7, 119, 2, 2, 557, 558, 7, 114, 2, 2, 558, 559, 7, 118, 2, 2, 559, 109, 3, 2, 2, 2, 560, 561, 7, 116, 2, 2, 561, 562, 7, 103, 2, 2, 562, 563, 7, 105, 2, 2, 563, 564, 7, 107, 2, 2, 564, 565, 7, 117, 2, 2, 565, 566, 7, 118, 2, 2, 566, 567, 7, 103, 2, 2, 567, 568, 7, 116, 2, 2, 568, 111, 3, 2, 2, 2, 569, 570, 7, 97, 2, 2, 570, 571, 7, 97, 2, 2, 571, 572, 7, 99, 2, 2, 572, 573, 7, 102, 2, 2, 573, 574, 7, 102, 2, 2, 574, 575, 7, 116, 2, 2, 575, 576, 7, 103, 2, 2, 576, 577, 7, 117, 2, 2, 577, 578, 7, 117, 2, 2, 578, 113, 3, 2, 2, 2, 579, 580, 7, 97, 2, 2, 580, 581, 7, 97, 2, 2, 581, 582, 7, 124, 2, 2, 582, 583, 7, 114, 2, 2, 583, 115, 3, 2, 2, 2, 584, 585, 7, 97, 2, 2, 585, 586, 7, 97, 2, 2, 586, 587, 7, 111, 2, 2, 587, 588, 7, 103, 2, 2, 588, 589, 7, 111, 2, 2, 589, 117, 3, 2, 2, 2, 590, 591, 7, 97, 2, 2, 591, 592, 7, 97, 2, 2, 592, 593, 7, 117, 2, 2, 593, 594, 7, 117, 2, 2, 594, 595, 7, 99, 2, 2, 595, 119, 3, 2, 2, 2, 596, 597, 7, 97, 2, 2, 597, 598, 7, 97, 2, 2, 598, 599, 7, 111, 2, 2, 599, 600, 7, 99, 2, 2, 600, 121, 3, 2, 2, 2, 601, 602, 7, 101, 2, 2, 602, 603, 7, 99, 2, 2, 603, 604, 7, 110, 2, 2, 604, 605, 7, 110, 2, 2, 605, 606, 7, 107, 2, 2, 606, 607, 7, 112, 2, 2, 607, 608, 7, 105, 2, 2, 608, 123, 3, 2, 2, 2, 609, 610, 7, 97, 2, 2, 610, 611, 7, 97, 2, 2, 611, 612, 7, 117, 2, 2, 612, 613, 7, 118, 2, 2, 613, 614, 7, 99, 2, 2, 614, 615, 7, 101, 2, 2, 615, 616, 7, 109, 2, 2, 616, 617, 7, 101, 2, 2, 617, 618, 7, 99, 2, 2, 618, 619, 7, 110, 2, 2, 619, 630, 7, 110, 2, 2, 620, 621, 7, 97, 2, 2, 621, 622, 7, 97, 2, 2, 622, 623, 7, 114, 2, 2, 623, 624, 7, 106, 2, 2, 624, 625, 7, 107, 2, 2, 625, 626, 7, 101, 2, 2, 626, 627, 7, 99, 2, 2, 627, 628, 7, 110, 2, 2, 628, 630, 7, 110, 2, 2, 629, 609, 3, 2, 2, 2, 629, 620, 3, 2, 2, 2, 630, 125, 3, 2, 2, 2, 631, 632, 7, 120, 2, 2, 632, 633, 7, 99, 2, 2, 633, 634, 7, 116, 2, 2, 634, 635, 7, 97, 2, 2, 635, 636, 7, 111, 2, 2, 636, 637, 7, 113, 2, 2, 637, 638, 7, 102, 2, 2, 638, 639, 7, 103, 2, 2, 639, 640, 7, 110, 2, 2, 640, 127, 3, 2, 2, 2, 641, 642, 7, 107, 2, 2, 642, 643, 7, 104, 2, 2, 643, 129, 3, 2, 2, 2, 644, 645, 7, 103, 2, 2, 645, 646, 7, 110, 2, 2, 646, 647, 7, 117, 2, 2, 647, 648, 7, 103, 2, 2, 648, 131, 3, 2, 2, 2, 649, 650, 7, 121, 2, 2, 650, 651, 7, 106, 2, 2, 651, 652, 7, 107, 2, 2, 652, 653, 7, 110, 2, 2, 653, 654, 7, 103, 2, 2, 654, 133, 3, 2, 2, 2, 655, 656, 7, 102, 2, 2, 656, 657, 7, 113, 2, 2, 657, 135, 3, 2, 2, 2, 658, 659, 7, 104, 2, 2, 659, 660, 7, 113, 2, 2, 660, 661, 7, 116, 2, 2, 661, 137, 3, 2, 2, 2, 662, 663, 7, 117, 2, 2, 663, 664, 7, 121, 2, 2, 664, 665, 7, 107, 2, 2, 665, 666, 7, 118, 2, 2, 666, 667, 7, 101, 2, 2, 667, 668, 7, 106, 2, 2, 668, 139, 3, 2, 2, 2, 669, 670, 7, 116, 2, 2, 670, 671, 7, 103, 2, 2, 671, 672, 7, 118, 2, 2, 672, 673, 7, 119, 2, 2, 673, 674, 7, 116, 2, 2, 674, 675, 7, 112, 2, 2, 675, 141, 3, 2, 2, 2, 676, 677, 7, 100, 2, 2, 677, 678, 7, 116, 2, 2, 678, 679, 7, 103, 2, 2, 679, 680, 7, 99, 2, 2, 680, 681, 7, 109, 2, 2, 681, 143, 3, 2, 2, 2, 682, 683, 7, 101, 2, 2, 683, 684, 7, 113, 2, 2, 684, 685, 7, 112, 2, 2, 685, 686, 7, 118, 2, 2, 686, 687, 7, 107, 2, 2, 687, 688, 7, 112, 2, 2, 688, 689, 7, 119, 2, 2, 689, 690, 7, 103, 2, 2, 690, 145, 3, 2, 2, 2, 691, 692, 7, 99, 2, 2, 692, 693, 7, 117, 2, 2, 693, 694, 7, 111, 2, 2, 694, 695, 3, 2, 2, 2, 695, 696, 8, 73, 3, 2, 696, 147, 3, 2, 2, 2, 697, 698, 7, 102, 2, 2, 698, 699, 7, 103, 2, 2, 699, 700, 7, 104, 2, 2, 700, 701, 7, 99, 2, 2, 701, 702, 7, 119, 2, 2, 702, 703, 7, 110, 2, 2, 703, 704, 7, 118, 2, 2, 704, 149, 3, 2, 2, 2, 705, 706, 7, 101, 2, 2, 706, 707, 7, 99, 2, 2, 707, 708, 7, 117, 2, 2, 708, 709, 7, 103, 2, 2, 709, 151, 3, 2, 2, 2, 710, 711, 7, 117, 2, 2, 711, 712, 7, 118, 2, 2, 712, 713, 7, 116, 2, 2, 713, 714, 7, 119, 2, 2, 714, 715, 7, 101, 2, 2, 715, 716, 7, 118, 2, 2, 716, 153, 3, 2, 2, 2, 717, 718, 7, 103, 2, 2, 718, 719, 7, 112, 2, 2, 719, 720, 7, 119, 2, 2, 720, 721, 7, 111, 2, 2, 721, 155, 3, 2, 2, 2, 722, 723, 7, 117, 2, 2, 723, 724, 7, 107, 2, 2, 724, 725, 7, 124, 2, 2, 725, 726, 7, 103, 2, 2, 726, 727, 7, 113, 2, 2, 727, 728, 7, 104, 2, 2, 728, 157, 3, 2, 2, 2, 729, 730, 7, 118, 2, 2, 730, 731, 7, 123, 2, 2, 731, 732, 7, 114, 2, 2, 732, 733, 7, 103, 2, 2, 733, 734, 7, 107, 2, 2, 734, 735, 7, 102, 2, 2, 735, 159, 3, 2, 2, 2, 736, 737, 7, 102, 2, 2, 737, 738, 7, 103, 2, 2, 738, 739, 7, 104, 2, 2, 739, 740, 7, 107, 2, 2, 740, 741, 7, 112, 2, 2, 741, 742, 7, 103, 2, 2, 742, 743, 7, 102, 2, 2, 743, 161, 3, 2, 2, 2, 744, 745, 7, 109, 2, 2, 745, 746, 7, 107, 2, 2, 746, 747, 7, 101, 2, 2, 747, 748, 7, 109, 2, 2, 748, 749, 7, 99, 2, 2, 749, 750, 7, 117, 2, 2, 750, 751, 7, 111, 2, 2, 751, 163, 3, 2, 2, 2, 752, 753, 7, 116, 2, 2, 753, 754, 7, 103, 2, 2, 754, 755, 7, 117, 2, 2, 755, 756, 7, 113, 2, 2, 756, 757, 7, 119, 2, 2, 757, 758, 7, 116, 2, 2, 758, 759, 7, 101, 2, 2, 759, 760, 7, 103, 2, 2, 760, 165, 3, 2, 2, 2, 761, 762, 7, 119, 2, 2, 762, 763, 7, 117, 2, 2, 763, 764, 7, 103, 2, 2, 764, 765, 7, 117, 2, 2, 765, 167, 3, 2, 2, 2, 766, 767, 7, 101, 2, 2, 767, 768, 7, 110, 2, 2, 768, 769, 7, 113, 2, 2, 769, 770, 7, 100, 2, 2, 770, 771, 7, 100, 2, 2, 771, 772, 7, 103, 2, 2, 772, 773, 7, 116, 2, 2, 773, 774, 7, 117, 2, 2, 774, 169, 3, 2, 2, 2, 775, 776, 7, 100, 2, 2, 776, 777, 7, 123, 2, 2, 777, 778, 7, 118, 2, 2, 778, 779, 7, 103, 2, 2, 779, 780, 7, 117, 2, 2, 780, 171, 3, 2, 2, 2, 781, 782, 7, 101, 2, 2, 782, 783, 7, 123, 2, 2, 783, 784, 7, 101, 2, 2, 784, 785, 7, 110, 2, 2, 785, 786, 7, 103, 2, 2, 786, 787, 7, 117, 2, 2, 787, 173, 3, 2, 2, 2, 788, 789, 7, 35, 2, 2, 789, 175, 3, 2, 2, 2, 790, 791, 7, 117, 2, 2, 791, 792, 7, 107, 2, 2, 792, 793, 7, 105, 2, 2, 793, 794, 7, 112, 2, 2, 794, 795, 7, 103, 2, 2, 795, 805, 7, 102, 2, 2, 796, 797, 7, 119, 2, 2, 797, 798, 7, 112, 2, 2, 798, 799, 7, 117, 2, 2, 799, 800, 7, 107, 2, 2, 800, 801, 7, 105, 2, 2, 801, 802, 7, 112, 2, 2, 802, 803, 7, 103, 2, 2, 803, 805, 7, 102, 2, 2, 804, 790, 3, 2, 2, 2, 804, 796, 3, 2, 2, 2, 805, 177, 3, 2, 2, 2, 806, 807, 7, 100, 2, 2, 807, 808, 7, 123, 2, 2, 808, 809, 7, 118, 2, 2, 809, 844, 7, 103, 2, 2, 810, 811, 7, 121, 2, 2, 811, 812, 7, 113, 2, 2, 812, 813, 7, 116, 2, 2, 813, 844, 7, 102, 2, 2, 814, 815, 7, 102, 2, 2, 815, 816, 7, 121, 2, 2, 816, 817, 7, 113, 2, 2, 817, 818, 7, 116, 2, 2, 818, 844, 7, 102, 2, 2, 819, 820, 7, 100, 2, 2, 820, 821, 7, 113, 2, 2, 821, 822, 7, 113, 2, 2, 822, 844, 7, 110, 2, 2, 823, 824, 7, 101, 2, 2, 824, 825, 7, 106, 2, 2, 825, 826, 7, 99, 2, 2, 826, 844, 7, 116, 2, 2, 827, 828, 7, 117, 2, 2, 828, 829, 7, 106, 2, 2, 829, 830, 7, 113, 2, 2, 830, 831, 7, 116, 2, 2, 831, 844, 7, 118, 2, 2, 832, 833, 7, 107, 2, 2, 833, 834, 7, 112, 2, 2, 834, 844, 7, 118, 2, 2, 835, 836, 7, 110, 2, 2, 836, 837, 7, 113, 2, 2, 837, 838, 7, 112, 2, 2, 838, 844, 7, 105, 2, 2, 839, 840, 7, 120, 2, 2, 840, 841, 7, 113, 2, 2, 841, 842, 7, 107, 2, 2, 842, 844, 7, 102, 2, 2, 843, 806, 3, 2, 2, 2, 843, 810, 3, 2, 2, 2, 843, 814, 3, 2, 2, 2, 843, 819, 3, 2, 2, 2, 843, 823, 3, 2, 2, 2, 843, 827, 3, 2, 2, 2, 843, 832, 3, 2, 2, 2, 843, 835, 3, 2, 2, 2, 843, 839, 3, 2, 2, 2, 844, 179, 3, 2, 2, 2, 845, 846, 7, 118, 2, 2, 846, 847, 7, 116, 2, 2, 847, 848, 7, 119, 2, 2, 848, 855, 7, 103, 2, 2, 849, 850, 7, 104, 2, 2, 850, 851, 7, 99, 2, 2, 851, 852, 7, 110, 2, 2, 852, 853, 7, 117, 2, 2, 853, 855, 7, 103, 2, 2, 854, 845, 3, 2, 2, 2, 854, 849, 3, 2, 2, 2, 855, 181, 3, 2, 2, 2, 856, 857, 7, 125, 2, 2, 857, 858, 7, 125, 2, 2, 858, 862, 3, 2, 2, 2, 859, 861, 11, 2, 2, 2, 860, 859, 3, 2, 2, 2, 861, 864, 3, 2, 2, 2, 862, 863, 3, 2, 2, 2, 862, 860, 3, 2, 2, 2, 863, 865, 3, 2, 2, 2, 864, 862, 3, 2, 2, 2, 865, 866, 7, 127, 2, 2, 866, 867, 7, 127, 2, 2, 867, 183, 3, 2, 2, 2, 868, 869, 7, 37, 2, 2, 869, 870, 7, 107, 2, 2, 870, 871, 7, 111, 2, 2, 871, 872, 7, 114, 2, 2, 872, 873, 7, 113, 2, 2, 873, 874, 7, 116, 2, 2, 874, 875, 7, 118, 2, 2, 875, 876, 3, 2, 2, 2, 876, 877, 8, 92, 4, 2, 877, 185, 3, 2, 2, 2, 878, 879, 7, 37, 2, 2, 879, 880, 7, 107, 2, 2, 880, 881, 7, 112, 2, 2, 881, 882, 7, 101, 2, 2, 882, 883, 7, 110, 2, 2, 883, 884, 7, 119, 2, 2, 884, 885, 7, 102, 2, 2, 885, 886, 7, 103, 2, 2, 886, 887, 3, 2, 2, 2, 887, 888, 8, 93, 5, 2, 888, 187, 3, 2, 2, 2, 889, 890, 7, 37, 2, 2, 890, 891, 7, 114, 2, 2, 891, 892, 7, 116, 2, 2, 892, 893, 7, 99, 2, 2, 893, 894, 7, 105, 2, 2, 894, 895, 7, 111, 2, 2, 895, 896, 7, 99, 2, 2, 896, 189, 3, 2, 2, 2, 897, 898, 7, 37, 2, 2, 898, 899, 7, 102, 2, 2, 899, 900, 7, 103, 2, 2, 900, 901, 7, 104, 2, 2, 901, 902, 7, 107, 2, 2, 902, 903, 7, 112, 2, 2, 903, 904, 7, 103, 2, 2, 904, 191, 3, 2, 2, 2, 905, 906, 7, 94, 2, 2, 906, 911, 7, 12, 2, 2, 907, 908, 7, 94, 2, 2, 908, 909, 7, 15, 2, 2, 909, 911, 7, 12, 2, 2, 910, 905, 3, 2, 2, 2, 910, 907, 3, 2, 2, 2, 911, 193, 3, 2, 2, 2, 912, 913, 7, 37, 2, 2, 913, 914, 7, 119, 2, 2, 914, 915, 7, 112, 2, 2, 915, 916, 7, 102, 2, 2, 916, 917, 7, 103, 2, 2, 917, 918, 7, 104, 2, 2, 918, 195, 3, 2, 2, 2, 919, 920, 7, 37, 2, 2, 920, 921, 7, 107, 2, 2, 921, 922, 7, 104, 2, 2, 922, 923, 7, 102, 2, 2, 923, 924, 7, 103, 2, 2, 924, 925, 7, 104, 2, 2, 925, 197, 3, 2, 2, 2, 926, 927, 7, 37, 2, 2, 927, 928, 7, 107, 2, 2, 928, 929, 7, 104, 2, 2, 929, 930, 7, 112, 2, 2, 930, 931, 7, 102, 2, 2, 931, 932, 7, 103, 2, 2, 932, 933, 7, 104, 2, 2, 933, 199, 3, 2, 2, 2, 934, 935, 7, 37, 2, 2, 935, 936, 7, 107, 2, 2, 936, 937, 7, 104, 2, 2, 937, 201, 3, 2, 2, 2, 938, 939, 7, 37, 2, 2, 939, 940, 7, 103, 2, 2, 940, 941, 7, 110, 2, 2, 941, 942, 7, 107, 2, 2, 942, 943, 7, 104, 2, 2, 943, 203, 3, 2, 2, 2, 944, 945, 7, 37, 2, 2, 945, 946, 7, 103, 2, 2, 946, 947, 7, 110, 2, 2, 947, 948, 7, 117, 2, 2, 948, 949, 7, 103, 2, 2, 949, 205, 3, 2, 2, 2, 950, 951, 7, 37, 2, 2, 951, 952, 7, 103, 2, 2, 952, 953, 7, 112, 2, 2, 953, 954, 7, 102, 2, 2, 954, 955, 7, 107, 2, 2, 955, 956, 7, 104, 2, 2, 956, 207, 3, 2, 2, 2, 957, 960, 5, 210, 105, 2, 958, 960, 5, 218, 109, 2, 959, 957, 3, 2, 2, 2, 959, 958, 3, 2, 2, 2, 960, 209, 3, 2, 2, 2, 961, 965, 5, 212, 106, 2, 962, 965, 5, 214, 107, 2, 963, 965, 5, 216, 108, 2, 964, 961, 3, 2, 2, 2, 964, 962, 3, 2, 2, 2, 964, 963, 3, 2, 2, 2, 965, 211, 3, 2, 2, 2, 966, 972, 7, 39, 2, 2, 967, 968, 7, 50, 2, 2, 968, 972, 7, 100, 2, 2, 969, 970, 7, 50, 2, 2, 970, 972, 7, 68, 2, 2, 971, 966, 3, 2, 2, 2, 971, 967, 3, 2, 2, 2, 971, 969, 3, 2, 2, 2, 972, 976, 3, 2, 2, 2, 973, 975, 5, 226, 113, 2, 974, 973, 3, 2, 2, 2, 975, 978, 3, 2, 2, 2, 976, 974, 3, 2, 2, 2, 976, 977, 3, 2, 2, 2, 977, 979, 3, 2, 2, 2, 978, 976, 3, 2, 2, 2, 979, 981, 7, 48, 2, 2, 980, 982, 5, 226, 113, 2, 981, 980, 3, 2, 2, 2, 982, 983, 3, 2, 2, 2, 983, 981, 3, 2, 2, 2, 983, 984, 3, 2, 2, 2, 984, 213, 3, 2, 2, 2, 985, 987, 5, 228, 114, 2, 986, 985, 3, 2, 2, 2, 987, 990, 3, 2, 2, 2, 988, 986, 3, 2, 2, 2, 988, 989, 3, 2, 2, 2, 989, 991, 3, 2, 2, 2, 990, 988, 3, 2, 2, 2, 991, 993, 7, 48, 2, 2, 992, 994, 5, 228, 114, 2, 993, 992, 3, 2, 2, 2, 994, 995, 3, 2, 2, 2, 995, 993, 3, 2, 2, 2, 995, 996, 3, 2, 2, 2, 996, 215, 3, 2, 2, 2, 997, 1003, 7, 38, 2, 2, 998, 999, 7, 50, 2, 2, 999, 1003, 7, 122, 2, 2, 1000, 1001, 7, 50, 2, 2, 1001, 1003, 7, 90, 2, 2, 1002, 997, 3, 2, 2, 2, 1002, 998, 3, 2, 2, 2, 1002, 1000, 3, 2, 2, 2, 1003, 1007, 3, 2, 2, 2, 1004, 1006, 5, 230, 115, 2, 1005, 1004, 3, 2, 2, 2, 1006, 1009, 3, 2, 2, 2, 1007, 1005, 3, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1010, 3, 2, 2, 2, 1009, 1007, 3, 2, 2, 2, 1010, 1012, 7, 48, 2, 2, 1011, 1013, 5, 230, 115, 2, 1012, 1011, 3, 2, 2, 2, 1013, 1014, 3, 2, 2, 2, 1014, 1012, 3, 2, 2, 2, 1014, 1015, 3, 2, 2, 2, 1015, 217, 3, 2, 2, 2, 1016, 1020, 5, 222, 111, 2, 1017, 1020, 5, 224, 112, 2, 1018, 1020, 5, 220, 110, 2, 1019, 1016, 3, 2, 2, 2, 1019, 1017, 3, 2, 2, 2, 1019, 1018, 3, 2, 2, 2, 1020, 1024, 3, 2, 2, 2, 1021, 1022, 9, 2, 2, 2, 1022, 1025, 9, 3, 2, 2, 1023, 1025, 7, 110, 2, 2, 1024, 1021, 3, 2, 2, 2, 1024, 1023, 3, 2, 2, 2, 1024, 1025, 3, 2, 2, 2, 1025, 219, 3, 2, 2, 2, 1026, 1027, 7, 50, 2, 2, 1027, 1029, 9, 4, 2, 2, 1028, 1030, 5, 226, 113, 2, 1029, 1028, 3, 2, 2, 2, 1030, 1031, 3, 2, 2, 2, 1031, 1029, 3, 2, 2, 2, 1031, 1032, 3, 2, 2, 2, 1032, 1040, 3, 2, 2, 2, 1033, 1035, 7, 39, 2, 2, 1034, 1036, 5, 226, 113, 2, 1035, 1034, 3, 2, 2, 2, 1036, 1037, 3, 2, 2, 2, 1037, 1035, 3, 2, 2, 2, 1037, 1038, 3, 2, 2, 2, 1038, 1040, 3, 2, 2, 2, 1039, 1026, 3, 2, 2, 2, 1039, 1033, 3, 2, 2, 2, 1040, 221, 3, 2, 2, 2, 1041, 1043, 5, 228, 114, 2, 1042, 1041, 3, 2, 2, 2, 1043, 1044, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1045, 223, 3, 2, 2, 2, 1046, 1052, 7, 38, 2, 2, 1047, 1048, 7, 50, 2, 2, 1048, 1052, 7, 122, 2, 2, 1049, 1050, 7, 50, 2, 2, 1050, 1052, 7, 90, 2, 2, 1051, 1046, 3, 2, 2, 2, 1051, 1047, 3, 2, 2, 2, 1051, 1049, 3, 2, 2, 2, 1052, 1054, 3, 2, 2, 2, 1053, 1055, 5, 230, 115, 2, 1054, 1053, 3, 2, 2, 2, 1055, 1056, 3, 2, 2, 2, 1056, 1054, 3, 2, 2, 2, 1056, 1057, 3, 2, 2, 2, 1057, 225, 3, 2, 2, 2, 1058, 1059, 9, 5, 2, 2, 1059, 227, 3, 2, 2, 2, 1060, 1061, 9, 6, 2, 2, 1061, 229, 3, 2, 2, 2, 1062, 1063, 9, 7, 2, 2, 1063, 231, 3, 2, 2, 2, 1064, 1068, 5, 234, 117, 2, 1065, 1067, 5, 236, 118, 2, 1066, 1065, 3, 2, 2, 2, 1067, 1070, 3, 2, 2, 2, 1068, 1066, 3, 2, 2, 2, 1068, 1069, 3, 2, 2, 2, 1069, 1071, 3, 2, 2, 2, 1070, 1068, 3, 2, 2, 2, 1071, 1072, 8, 116, 6, 2, 1072, 233, 3, 2, 2, 2, 1073, 1074, 9, 8, 2, 2, 1074, 235, 3, 2, 2, 2, 1075, 1076, 9, 9, 2, 2, 1076, 237, 3, 2, 2, 2, 1077, 1079, 7, 62, 2, 2, 1078, 1080, 9, 10, 2, 2, 1079, 1078, 3, 2, 2, 2, 1080, 1081, 3, 2, 2, 2, 1081, 1079, 3, 2, 2, 2, 1081, 1082, 3, 2, 2, 2, 1082, 1083, 3, 2, 2, 2, 1083, 1084, 7, 64, 2, 2, 1084, 1085, 8, 119, 7, 2, 1085, 239, 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, 11, 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, 12, 2, 2, 1097, 1096, 3, 2, 2, 2, 1097, 1098, 3, 2, 2, 2, 1098, 1103, 3, 2, 2, 2, 1099, 1101, 9, 13, 2, 2, 1100, 1102, 9, 14, 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, 12, 2, 2, 1106, 1105, 3, 2, 2, 2, 1106, 1107, 3, 2, 2, 2, 1107, 1108, 3, 2, 2, 2, 1108, 1109, 8, 120, 8, 2, 1109, 241, 3, 2, 2, 2, 1110, 1114, 7, 41, 2, 2, 1111, 1112, 7, 94, 2, 2, 1112, 1115, 9, 15, 2, 2, 1113, 1115, 10, 16, 2, 2, 1114, 1111, 3, 2, 2, 2, 1114, 1113, 3, 2, 2, 2, 1115, 1116, 3, 2, 2, 2, 1116, 1117, 7, 41, 2, 2, 1117, 243, 3, 2, 2, 2, 1118, 1120, 9, 17, 2, 2, 1119, 1118, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1119, 3, 2, 2, 2, 1121, 1122, 3, 2, 2, 2, 1122, 1123, 3, 2, 2, 2, 1123, 1124, 8, 122, 9, 2, 1124, 245, 3, 2, 2, 2, 1125, 1126, 7, 49, 2, 2, 1126, 1127, 7, 49, 2, 2, 1127, 1131, 3, 2, 2, 2, 1128, 1130, 10, 18, 2, 2, 1129, 1128, 3, 2, 2, 2, 1130, 1133, 3, 2, 2, 2, 1131, 1129, 3, 2, 2, 2, 1131, 1132, 3, 2, 2, 2, 1132, 1134, 3, 2, 2, 2, 1133, 1131, 3, 2, 2, 2, 1134, 1135, 8, 123, 10, 2, 1135, 247, 3, 2, 2, 2, 1136, 1137, 7, 49, 2, 2, 1137, 1138, 7, 44, 2, 2, 1138, 1142, 3, 2, 2, 2, 1139, 1141, 11, 2, 2, 2, 1140, 1139, 3, 2, 2, 2, 1141, 1144, 3, 2, 2, 2, 1142, 1143, 3, 2, 2, 2, 1142, 1140, 3, 2, 2, 2, 1143, 1145, 3, 2, 2, 2, 1144, 1142, 3, 2, 2, 2, 1145, 1146, 7, 44, 2, 2, 1146, 1147, 7, 49, 2, 2, 1147, 1148, 3, 2, 2, 2, 1148, 1149, 8, 124, 10, 2, 1149, 249, 3, 2, 2, 2, 1150, 1151, 7, 48, 2, 2, 1151, 1152, 7, 100, 2, 2, 1152, 1153, 7, 123, 2, 2, 1153, 1154, 7, 118, 2, 2, 1154, 1155, 7, 103, 2, 2, 1155, 251, 3, 2, 2, 2, 1156, 1157, 7, 100, 2, 2, 1157, 1158, 7, 116, 2, 2, 1158, 1379, 7, 109, 2, 2, 1159, 1160, 7, 113, 2, 2, 1160, 1161, 7, 116, 2, 2, 1161, 1379, 7, 99, 2, 2, 1162, 1163, 7, 109, 2, 2, 1163, 1164, 7, 107, 2, 2, 1164, 1379, 7, 110, 2, 2, 1165, 1166, 7, 117, 2, 2, 1166, 1167, 7, 110, 2, 2, 1167, 1379, 7, 113, 2, 2, 1168, 1169, 7, 112, 2, 2, 1169, 1170, 7, 113, 2, 2, 1170, 1379, 7, 114, 2, 2, 1171, 1172, 7, 99, 2, 2, 1172, 1173, 7, 117, 2, 2, 1173, 1379, 7, 110, 2, 2, 1174, 1175, 7, 114, 2, 2, 1175, 1176, 7, 106, 2, 2, 1176, 1379, 7, 114, 2, 2, 1177, 1178, 7, 99, 2, 2, 1178, 1179, 7, 112, 2, 2, 1179, 1379, 7, 101, 2, 2, 1180, 1181, 7, 100, 2, 2, 1181, 1182, 7, 114, 2, 2, 1182, 1379, 7, 110, 2, 2, 1183, 1184, 7, 101, 2, 2, 1184, 1185, 7, 110, 2, 2, 1185, 1379, 7, 101, 2, 2, 1186, 1187, 7, 108, 2, 2, 1187, 1188, 7, 117, 2, 2, 1188, 1379, 7, 116, 2, 2, 1189, 1190, 7, 99, 2, 2, 1190, 1191, 7, 112, 2, 2, 1191, 1379, 7, 102, 2, 2, 1192, 1193, 7, 116, 2, 2, 1193, 1194, 7, 110, 2, 2, 1194, 1379, 7, 99, 2, 2, 1195, 1196, 7, 100, 2, 2, 1196, 1197, 7, 107, 2, 2, 1197, 1379, 7, 118, 2, 2, 1198, 1199, 7, 116, 2, 2, 1199, 1200, 7, 113, 2, 2, 1200, 1379, 7, 110, 2, 2, 1201, 1202, 7, 114, 2, 2, 1202, 1203, 7, 110, 2, 2, 1203, 1379, 7, 99, 2, 2, 1204, 1205, 7, 114, 2, 2, 1205, 1206, 7, 110, 2, 2, 1206, 1379, 7, 114, 2, 2, 1207, 1208, 7, 100, 2, 2, 1208, 1209, 7, 111, 2, 2, 1209, 1379, 7, 107, 2, 2, 1210, 1211, 7, 117, 2, 2, 1211, 1212, 7, 103, 2, 2, 1212, 1379, 7, 101, 2, 2, 1213, 1214, 7, 116, 2, 2, 1214, 1215, 7, 118, 2, 2, 1215, 1379, 7, 107, 2, 2, 1216, 1217, 7, 103, 2, 2, 1217, 1218, 7, 113, 2, 2, 1218, 1379, 7, 116, 2, 2, 1219, 1220, 7, 117, 2, 2, 1220, 1221, 7, 116, 2, 2, 1221, 1379, 7, 103, 2, 2, 1222, 1223, 7, 110, 2, 2, 1223, 1224, 7, 117, 2, 2, 1224, 1379, 7, 116, 2, 2, 1225, 1226, 7, 114, 2, 2, 1226, 1227, 7, 106, 2, 2, 1227, 1379, 7, 99, 2, 2, 1228, 1229, 7, 99, 2, 2, 1229, 1230, 7, 110, 2, 2, 1230, 1379, 7, 116, 2, 2, 1231, 1232, 7, 108, 2, 2, 1232, 1233, 7, 111, 2, 2, 1233, 1379, 7, 114, 2, 2, 1234, 1235, 7, 100, 2, 2, 1235, 1236, 7, 120, 2, 2, 1236, 1379, 7, 101, 2, 2, 1237, 1238, 7, 101, 2, 2, 1238, 1239, 7, 110, 2, 2, 1239, 1379, 7, 107, 2, 2, 1240, 1241, 7, 116, 2, 2, 1241, 1242, 7, 118, 2, 2, 1242, 1379, 7, 117, 2, 2, 1243, 1244, 7, 99, 2, 2, 1244, 1245, 7, 102, 2, 2, 1245, 1379, 7, 101, 2, 2, 1246, 1247, 7, 116, 2, 2, 1247, 1248, 7, 116, 2, 2, 1248, 1379, 7, 99, 2, 2, 1249, 1250, 7, 100, 2, 2, 1250, 1251, 7, 120, 2, 2, 1251, 1379, 7, 117, 2, 2, 1252, 1253, 7, 117, 2, 2, 1253, 1254, 7, 103, 2, 2, 1254, 1379, 7, 107, 2, 2, 1255, 1256, 7, 117, 2, 2, 1256, 1257, 7, 99, 2, 2, 1257, 1379, 7, 122, 2, 2, 1258, 1259, 7, 117, 2, 2, 1259, 1260, 7, 118, 2, 2, 1260, 1379, 7, 123, 2, 2, 1261, 1262, 7, 117, 2, 2, 1262, 1263, 7, 118, 2, 2, 1263, 1379, 7, 99, 2, 2, 1264, 1265, 7, 117, 2, 2, 1265, 1266, 7, 118, 2, 2, 1266, 1379, 7, 122, 2, 2, 1267, 1268, 7, 102, 2, 2, 1268, 1269, 7, 103, 2, 2, 1269, 1379, 7, 123, 2, 2, 1270, 1271, 7, 118, 2, 2, 1271, 1272, 7, 122, 2, 2, 1272, 1379, 7, 99, 2, 2, 1273, 1274, 7, 122, 2, 2, 1274, 1275, 7, 99, 2, 2, 1275, 1379, 7, 99, 2, 2, 1276, 1277, 7, 100, 2, 2, 1277, 1278, 7, 101, 2, 2, 1278, 1379, 7, 101, 2, 2, 1279, 1280, 7, 99, 2, 2, 1280, 1281, 7, 106, 2, 2, 1281, 1379, 7, 122, 2, 2, 1282, 1283, 7, 118, 2, 2, 1283, 1284, 7, 123, 2, 2, 1284, 1379, 7, 99, 2, 2, 1285, 1286, 7, 118, 2, 2, 1286, 1287, 7, 122, 2, 2, 1287, 1379, 7, 117, 2, 2, 1288, 1289, 7, 118, 2, 2, 1289, 1290, 7, 99, 2, 2, 1290, 1379, 7, 117, 2, 2, 1291, 1292, 7, 117, 2, 2, 1292, 1293, 7, 106, 2, 2, 1293, 1379, 7, 123, 2, 2, 1294, 1295, 7, 117, 2, 2, 1295, 1296, 7, 106, 2, 2, 1296, 1379, 7, 122, 2, 2, 1297, 1298, 7, 110, 2, 2, 1298, 1299, 7, 102, 2, 2, 1299, 1379, 7, 123, 2, 2, 1300, 1301, 7, 110, 2, 2, 1301, 1302, 7, 102, 2, 2, 1302, 1379, 7, 99, 2, 2, 1303, 1304, 7, 110, 2, 2, 1304, 1305, 7, 102, 2, 2, 1305, 1379, 7, 122, 2, 2, 1306, 1307, 7, 110, 2, 2, 1307, 1308, 7, 99, 2, 2, 1308, 1379, 7, 122, 2, 2, 1309, 1310, 7, 118, 2, 2, 1310, 1311, 7, 99, 2, 2, 1311, 1379, 7, 123, 2, 2, 1312, 1313, 7, 118, 2, 2, 1313, 1314, 7, 99, 2, 2, 1314, 1379, 7, 122, 2, 2, 1315, 1316, 7, 100, 2, 2, 1316, 1317, 7, 101, 2, 2, 1317, 1379, 7, 117, 2, 2, 1318, 1319, 7, 101, 2, 2, 1319, 1320, 7, 110, 2, 2, 1320, 1379, 7, 120, 2, 2, 1321, 1322, 7, 118, 2, 2, 1322, 1323, 7, 117, 2, 2, 1323, 1379, 7, 122, 2, 2, 1324, 1325, 7, 110, 2, 2, 1325, 1326, 7, 99, 2, 2, 1326, 1379, 7, 117, 2, 2, 1327, 1328, 7, 101, 2, 2, 1328, 1329, 7, 114, 2, 2, 1329, 1379, 7, 123, 2, 2, 1330, 1331, 7, 101, 2, 2, 1331, 1332, 7, 111, 2, 2, 1332, 1379, 7, 114, 2, 2, 1333, 1334, 7, 101, 2, 2, 1334, 1335, 7, 114, 2, 2, 1335, 1379, 7, 122, 2, 2, 1336, 1337, 7, 102, 2, 2, 1337, 1338, 7, 101, 2, 2, 1338, 1379, 7, 114, 2, 2, 1339, 1340, 7, 102, 2, 2, 1340, 1341, 7, 103, 2, 2, 1341, 1379, 7, 101, 2, 2, 1342, 1343, 7, 107, 2, 2, 1343, 1344, 7, 112, 2, 2, 1344, 1379, 7, 101, 2, 2, 1345, 1346, 7, 99, 2, 2, 1346, 1347, 7, 122, 2, 2, 1347, 1379, 7, 117, 2, 2, 1348, 1349, 7, 100, 2, 2, 1349, 1350, 7, 112, 2, 2, 1350, 1379, 7, 103, 2, 2, 1351, 1352, 7, 101, 2, 2, 1352, 1353, 7, 110, 2, 2, 1353, 1379, 7, 102, 2, 2, 1354, 1355, 7, 117, 2, 2, 1355, 1356, 7, 100, 2, 2, 1356, 1379, 7, 101, 2, 2, 1357, 1358, 7, 107, 2, 2, 1358, 1359, 7, 117, 2, 2, 1359, 1379, 7, 101, 2, 2, 1360, 1361, 7, 107, 2, 2, 1361, 1362, 7, 112, 2, 2, 1362, 1379, 7, 122, 2, 2, 1363, 1364, 7, 100, 2, 2, 1364, 1365, 7, 103, 2, 2, 1365, 1379, 7, 115, 2, 2, 1366, 1367, 7, 117, 2, 2, 1367, 1368, 7, 103, 2, 2, 1368, 1379, 7, 102, 2, 2, 1369, 1370, 7, 102, 2, 2, 1370, 1371, 7, 103, 2, 2, 1371, 1379, 7, 122, 2, 2, 1372, 1373, 7, 107, 2, 2, 1373, 1374, 7, 112, 2, 2, 1374, 1379, 7, 123, 2, 2, 1375, 1376, 7, 116, 2, 2, 1376, 1377, 7, 113, 2, 2, 1377, 1379, 7, 116, 2, 2, 1378, 1156, 3, 2, 2, 2, 1378, 1159, 3, 2, 2, 2, 1378, 1162, 3, 2, 2, 2, 1378, 1165, 3, 2, 2, 2, 1378, 1168, 3, 2, 2, 2, 1378, 1171, 3, 2, 2, 2, 1378, 1174, 3, 2, 2, 2, 1378, 1177, 3, 2, 2, 2, 1378, 1180, 3, 2, 2, 2, 1378, 1183, 3, 2, 2, 2, 1378, 1186, 3, 2, 2, 2, 1378, 1189, 3, 2, 2, 2, 1378, 1192, 3, 2, 2, 2, 1378, 1195, 3, 2, 2, 2, 1378, 1198, 3, 2, 2, 2, 1378, 1201, 3, 2, 2, 2, 1378, 1204, 3, 2, 2, 2, 1378, 1207, 3, 2, 2, 2, 1378, 1210, 3, 2, 2, 2, 1378, 1213, 3, 2, 2, 2, 1378, 1216, 3, 2, 2, 2, 1378, 1219, 3, 2, 2, 2, 1378, 1222, 3, 2, 2, 2, 1378, 1225, 3, 2, 2, 2, 1378, 1228, 3, 2, 2, 2, 1378, 1231, 3, 2, 2, 2, 1378, 1234, 3, 2, 2, 2, 1378, 1237, 3, 2, 2, 2, 1378, 1240, 3, 2, 2, 2, 1378, 1243, 3, 2, 2, 2, 1378, 1246, 3, 2, 2, 2, 1378, 1249, 3, 2, 2, 2, 1378, 1252, 3, 2, 2, 2, 1378, 1255, 3, 2, 2, 2, 1378, 1258, 3, 2, 2, 2, 1378, 1261, 3, 2, 2, 2, 1378, 1264, 3, 2, 2, 2, 1378, 1267, 3, 2, 2, 2, 1378, 1270, 3, 2, 2, 2, 1378, 1273, 3, 2, 2, 2, 1378, 1276, 3, 2, 2, 2, 1378, 1279, 3, 2, 2, 2, 1378, 1282, 3, 2, 2, 2, 1378, 1285, 3, 2, 2, 2, 1378, 1288, 3, 2, 2, 2, 1378, 1291, 3, 2, 2, 2, 1378, 1294, 3, 2, 2, 2, 1378, 1297, 3, 2, 2, 2, 1378, 1300, 3, 2, 2, 2, 1378, 1303, 3, 2, 2, 2, 1378, 1306, 3, 2, 2, 2, 1378, 1309, 3, 2, 2, 2, 1378, 1312, 3, 2, 2, 2, 1378, 1315, 3, 2, 2, 2, 1378, 1318, 3, 2, 2, 2, 1378, 1321, 3, 2, 2, 2, 1378, 1324, 3, 2, 2, 2, 1378, 1327, 3, 2, 2, 2, 1378, 1330, 3, 2, 2, 2, 1378, 1333, 3, 2, 2, 2, 1378, 1336, 3, 2, 2, 2, 1378, 1339, 3, 2, 2, 2, 1378, 1342, 3, 2, 2, 2, 1378, 1345, 3, 2, 2, 2, 1378, 1348, 3, 2, 2, 2, 1378, 1351, 3, 2, 2, 2, 1378, 1354, 3, 2, 2, 2, 1378, 1357, 3, 2, 2, 2, 1378, 1360, 3, 2, 2, 2, 1378, 1363, 3, 2, 2, 2, 1378, 1366, 3, 2, 2, 2, 1378, 1369, 3, 2, 2, 2, 1378, 1372, 3, 2, 2, 2, 1378, 1375, 3, 2, 2, 2, 1379, 253, 3, 2, 2, 2, 1380, 1381, 7, 37, 2, 2, 1381, 255, 3, 2, 2, 2, 1382, 1383, 7, 60, 2, 2, 1383, 257, 3, 2, 2, 2, 1384, 1385, 7, 46, 2, 2, 1385, 259, 3, 2, 2, 2, 1386, 1387, 7, 42, 2, 2, 1387, 261, 3, 2, 2, 2, 1388, 1389, 7, 43, 2, 2, 1389, 263, 3, 2, 2, 2, 1390, 1391, 7, 93, 2, 2, 1391, 265, 3, 2, 2, 2, 1392, 1393, 7, 95, 2, 2, 1393, 267, 3, 2, 2, 2, 1394, 1395, 7, 48, 2, 2, 1395, 269, 3, 2, 2, 2, 1396, 1397, 7, 62, 2, 2, 1397, 1398, 7, 62, 2, 2, 1398, 271, 3, 2, 2, 2, 1399, 1400, 7, 64, 2, 2, 1400, 1401, 7, 64, 2, 2, 1401, 273, 3, 2, 2, 2, 1402, 1403, 7, 45, 2, 2, 1403, 275, 3, 2, 2, 2, 1404, 1405, 7, 47, 2, 2, 1405, 277, 3, 2, 2, 2, 1406, 1407, 7, 62, 2, 2, 1407, 279, 3, 2, 2, 2, 1408, 1409, 7, 64, 2, 2, 1409, 281, 3, 2, 2, 2, 1410, 1411, 7, 44, 2, 2, 1411, 283, 3, 2, 2, 2, 1412, 1413, 7, 49, 2, 2, 1413, 285, 3, 2, 2, 2, 1414, 1415, 7, 125, 2, 2, 1415, 1416, 8, 143, 11, 2, 1416, 287, 3, 2, 2, 2, 1417, 1418, 7, 127, 2, 2, 1418, 1419, 8, 144, 12, 2, 1419, 289, 3, 2, 2, 2, 1420, 1423, 5, 292, 146, 2, 1421, 1423, 5, 300, 150, 2, 1422, 1420, 3, 2, 2, 2, 1422, 1421, 3, 2, 2, 2, 1423, 291, 3, 2, 2, 2, 1424, 1428, 5, 294, 147, 2, 1425, 1428, 5, 296, 148, 2, 1426, 1428, 5, 298, 149, 2, 1427, 1424, 3, 2, 2, 2, 1427, 1425, 3, 2, 2, 2, 1427, 1426, 3, 2, 2, 2, 1428, 293, 3, 2, 2, 2, 1429, 1433, 7, 39, 2, 2, 1430, 1432, 5, 308, 154, 2, 1431, 1430, 3, 2, 2, 2, 1432, 1435, 3, 2, 2, 2, 1433, 1431, 3, 2, 2, 2, 1433, 1434, 3, 2, 2, 2, 1434, 1436, 3, 2, 2, 2, 1435, 1433, 3, 2, 2, 2, 1436, 1438, 7, 48, 2, 2, 1437, 1439, 5, 308, 154, 2, 1438, 1437, 3, 2, 2, 2, 1439, 1440, 3, 2, 2, 2, 1440, 1438, 3, 2, 2, 2, 1440, 1441, 3, 2, 2, 2, 1441, 295, 3, 2, 2, 2, 1442, 1444, 5, 310, 155, 2, 1443, 1442, 3, 2, 2, 2, 1444, 1447, 3, 2, 2, 2, 1445, 1443, 3, 2, 2, 2, 1445, 1446, 3, 2, 2, 2, 1446, 1448, 3, 2, 2, 2, 1447, 1445, 3, 2, 2, 2, 1448, 1450, 7, 48, 2, 2, 1449, 1451, 5, 310, 155, 2, 1450, 1449, 3, 2, 2, 2, 1451, 1452, 3, 2, 2, 2, 1452, 1450, 3, 2, 2, 2, 1452, 1453, 3, 2, 2, 2, 1453, 297, 3, 2, 2, 2, 1454, 1458, 7, 38, 2, 2, 1455, 1457, 5, 312, 156, 2, 1456, 1455, 3, 2, 2, 2, 1457, 1460, 3, 2, 2, 2, 1458, 1456, 3, 2, 2, 2, 1458, 1459, 3, 2, 2, 2, 1459, 1461, 3, 2, 2, 2, 1460, 1458, 3, 2, 2, 2, 1461, 1463, 7, 48, 2, 2, 1462, 1464, 5, 312, 156, 2, 1463, 1462, 3, 2, 2, 2, 1464, 1465, 3, 2, 2, 2, 1465, 1463, 3, 2, 2, 2, 1465, 1466, 3, 2, 2, 2, 1466, 299, 3, 2, 2, 2, 1467, 1471, 5, 304, 152, 2, 1468, 1471, 5, 306, 153, 2, 1469, 1471, 5, 302, 151, 2, 1470, 1467, 3, 2, 2, 2, 1470, 1468, 3, 2, 2, 2, 1470, 1469, 3, 2, 2, 2, 1471, 301, 3, 2, 2, 2, 1472, 1474, 7, 39, 2, 2, 1473, 1475, 5, 308, 154, 2, 1474, 1473, 3, 2, 2, 2, 1475, 1476, 3, 2, 2, 2, 1476, 1474, 3, 2, 2, 2, 1476, 1477, 3, 2, 2, 2, 1477, 303, 3, 2, 2, 2, 1478, 1480, 5, 310, 155, 2, 1479, 1478, 3, 2, 2, 2, 1480, 1481, 3, 2, 2, 2, 1481, 1479, 3, 2, 2, 2, 1481, 1482, 3, 2, 2, 2, 1482, 305, 3, 2, 2, 2, 1483, 1485, 7, 38, 2, 2, 1484, 1486, 5, 312, 156, 2, 1485, 1484, 3, 2, 2, 2, 1486, 1487, 3, 2, 2, 2, 1487, 1485, 3, 2, 2, 2, 1487, 1488, 3, 2, 2, 2, 1488, 307, 3, 2, 2, 2, 1489, 1490, 9, 5, 2, 2, 1490, 309, 3, 2, 2, 2, 1491, 1492, 9, 6, 2, 2, 1492, 311, 3, 2, 2, 2, 1493, 1494, 9, 7, 2, 2, 1494, 313, 3, 2, 2, 2, 1495, 1499, 7, 41, 2, 2, 1496, 1497, 7, 94, 2, 2, 1497, 1500, 9, 15, 2, 2, 1498, 1500, 10, 16, 2, 2, 1499, 1496, 3, 2, 2, 2, 1499, 1498, 3, 2, 2, 2, 1500, 1501, 3, 2, 2, 2, 1501, 1502, 7, 41, 2, 2, 1502, 315, 3, 2, 2, 2, 1503, 1505, 5, 318, 159, 2, 1504, 1506, 9, 19, 2, 2, 1505, 1504, 3, 2, 2, 2, 1506, 1507, 3, 2, 2, 2, 1507, 1505, 3, 2, 2, 2, 1507, 1508, 3, 2, 2, 2, 1508, 317, 3, 2, 2, 2, 1509, 1513, 7, 35, 2, 2, 1510, 1512, 5, 324, 162, 2, 1511, 1510, 3, 2, 2, 2, 1512, 1515, 3, 2, 2, 2, 1513, 1511, 3, 2, 2, 2, 1513, 1514, 3, 2, 2, 2, 1514, 319, 3, 2, 2, 2, 1515, 1513, 3, 2, 2, 2, 1516, 1520, 5, 322, 161, 2, 1517, 1519, 5, 324, 162, 2, 1518, 1517, 3, 2, 2, 2, 1519, 1522, 3, 2, 2, 2, 1520, 1518, 3, 2, 2, 2, 1520, 1521, 3, 2, 2, 2, 1521, 321, 3, 2, 2, 2, 1522, 1520, 3, 2, 2, 2, 1523, 1524, 9, 8, 2, 2, 1524, 323, 3, 2, 2, 2, 1525, 1526, 9, 9, 2, 2, 1526, 325, 3, 2, 2, 2, 1527, 1529, 9, 17, 2, 2, 1528, 1527, 3, 2, 2, 2, 1529, 1530, 3, 2, 2, 2, 1530, 1528, 3, 2, 2, 2, 1530, 1531, 3, 2, 2, 2, 1531, 1532, 3, 2, 2, 2, 1532, 1533, 8, 163, 9, 2, 1533, 327, 3, 2, 2, 2, 1534, 1535, 7, 49, 2, 2, 1535, 1536, 7, 49, 2, 2, 1536, 1540, 3, 2, 2, 2, 1537, 1539, 10, 18, 2, 2, 1538, 1537, 3, 2, 2, 2, 1539, 1542, 3, 2, 2, 2, 1540, 1538, 3, 2, 2, 2, 1540, 1541, 3, 2, 2, 2, 1541, 1543, 3, 2, 2, 2, 1542, 1540, 3, 2, 2, 2, 1543, 1544, 8, 164, 10, 2, 1544, 329, 3, 2, 2, 2, 1545, 1546, 7, 49, 2, 2, 1546, 1547, 7, 44, 2, 2, 1547, 1551, 3, 2, 2, 2, 1548, 1550, 11, 2, 2, 2, 1549, 1548, 3, 2, 2, 2, 1550, 1553, 3, 2, 2, 2, 1551, 1552, 3, 2, 2, 2, 1551, 1549, 3, 2, 2, 2, 1552, 1554, 3, 2, 2, 2, 1553, 1551, 3, 2, 2, 2, 1554, 1555, 7, 44, 2, 2, 1555, 1556, 7, 49, 2, 2, 1556, 1557, 3, 2, 2, 2, 1557, 1558, 8, 165, 10, 2, 1558, 331, 3, 2, 2, 2, 61, 2, 3, 437, 629, 804, 843, 854, 862, 910, 959, 964, 971, 976, 983, 988, 995, 1002, 1007, 1014, 1019, 1024, 1031, 1037, 1039, 1044, 1051, 1056, 1068, 1081, 1090, 1092, 1097, 1101, 1103, 1106, 1114, 1121, 1131, 1142, 1378, 1422, 1427, 1433, 1440, 1445, 1452, 1458, 1465, 1470, 1476, 1481, 1487, 1499, 1507, 1513, 1520, 1530, 1540, 1551, 13, 3, 2, 2, 3, 73, 3, 3, 92, 4, 3, 93, 5, 3, 116, 6, 3, 119, 7, 3, 120, 8, 2, 3, 2, 2, 4, 2, 3, 143, 9, 3, 144, 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 4d76887cc..83cb9d4f0 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -33,20 +33,20 @@ public class KickCLexer extends Lexer { DO=67, FOR=68, SWITCH=69, RETURN=70, BREAK=71, CONTINUE=72, ASM=73, DEFAULT=74, CASE=75, STRUCT=76, ENUM=77, SIZEOF=78, TYPEID=79, DEFINED=80, KICKASM=81, RESOURCE=82, USES=83, CLOBBERS=84, BYTES=85, CYCLES=86, LOGIC_NOT=87, - SIGNEDNESS=88, SIMPLETYPE=89, BOOLEAN=90, KICKASM_BODY=91, STRING=92, - CHAR=93, IMPORT=94, INCLUDE=95, PRAGMA=96, DEFINE=97, DEFINE_CONTINUE=98, - UNDEF=99, IFDEF=100, IFNDEF=101, IFIF=102, ELIF=103, IFELSE=104, ENDIF=105, - NUMBER=106, NUMFLOAT=107, BINFLOAT=108, DECFLOAT=109, HEXFLOAT=110, NUMINT=111, - BININTEGER=112, DECINTEGER=113, HEXINTEGER=114, NAME=115, WS=116, COMMENT_LINE=117, - COMMENT_BLOCK=118, ASM_BYTE=119, ASM_MNEMONIC=120, ASM_IMM=121, ASM_COLON=122, - ASM_COMMA=123, ASM_PAR_BEGIN=124, ASM_PAR_END=125, ASM_BRACKET_BEGIN=126, - ASM_BRACKET_END=127, ASM_DOT=128, ASM_SHIFT_LEFT=129, ASM_SHIFT_RIGHT=130, - ASM_PLUS=131, ASM_MINUS=132, ASM_LESS_THAN=133, ASM_GREATER_THAN=134, - ASM_MULTIPLY=135, ASM_DIVIDE=136, ASM_CURLY_BEGIN=137, ASM_CURLY_END=138, - ASM_NUMBER=139, ASM_NUMFLOAT=140, ASM_BINFLOAT=141, ASM_DECFLOAT=142, - ASM_HEXFLOAT=143, ASM_NUMINT=144, ASM_BININTEGER=145, ASM_DECINTEGER=146, - ASM_HEXINTEGER=147, ASM_CHAR=148, ASM_MULTI_REL=149, ASM_MULTI_NAME=150, - ASM_NAME=151, ASM_WS=152, ASM_COMMENT_LINE=153, ASM_COMMENT_BLOCK=154; + SIGNEDNESS=88, SIMPLETYPE=89, BOOLEAN=90, KICKASM_BODY=91, IMPORT=92, + INCLUDE=93, PRAGMA=94, DEFINE=95, DEFINE_CONTINUE=96, UNDEF=97, IFDEF=98, + IFNDEF=99, IFIF=100, ELIF=101, IFELSE=102, ENDIF=103, NUMBER=104, NUMFLOAT=105, + BINFLOAT=106, DECFLOAT=107, HEXFLOAT=108, NUMINT=109, BININTEGER=110, + DECINTEGER=111, HEXINTEGER=112, NAME=113, SYSTEMFILE=114, STRING=115, + CHAR=116, WS=117, COMMENT_LINE=118, COMMENT_BLOCK=119, ASM_BYTE=120, ASM_MNEMONIC=121, + ASM_IMM=122, ASM_COLON=123, ASM_COMMA=124, ASM_PAR_BEGIN=125, ASM_PAR_END=126, + ASM_BRACKET_BEGIN=127, ASM_BRACKET_END=128, ASM_DOT=129, ASM_SHIFT_LEFT=130, + ASM_SHIFT_RIGHT=131, ASM_PLUS=132, ASM_MINUS=133, ASM_LESS_THAN=134, ASM_GREATER_THAN=135, + ASM_MULTIPLY=136, ASM_DIVIDE=137, ASM_CURLY_BEGIN=138, ASM_CURLY_END=139, + ASM_NUMBER=140, ASM_NUMFLOAT=141, ASM_BINFLOAT=142, ASM_DECFLOAT=143, + ASM_HEXFLOAT=144, ASM_NUMINT=145, ASM_BININTEGER=146, ASM_DECINTEGER=147, + ASM_HEXINTEGER=148, ASM_CHAR=149, ASM_MULTI_REL=150, ASM_MULTI_NAME=151, + ASM_NAME=152, ASM_WS=153, ASM_COMMENT_LINE=154, ASM_COMMENT_BLOCK=155; public static final int ASM_MODE=1; public static String[] channelNames = { @@ -72,20 +72,21 @@ public class KickCLexer extends Lexer { "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", - "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "IMPORT", - "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", - "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", - "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", - "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", - "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", - "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", - "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", - "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", - "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", - "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", - "ASM_HEXINTEGER", "ASM_BINDIGIT", "ASM_DECDIGIT", "ASM_HEXDIGIT", "ASM_CHAR", - "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_NAME_START", "ASM_NAME_CHAR", - "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" + "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "IMPORT", "INCLUDE", "PRAGMA", + "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", "IFIF", "ELIF", + "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", + "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", + "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", "SYSTEMFILE", "STRING", + "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", + "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", + "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", + "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", + "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", + "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", + "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_BINDIGIT", + "ASM_DECDIGIT", "ASM_HEXDIGIT", "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", + "ASM_NAME", "ASM_NAME_START", "ASM_NAME_CHAR", "ASM_WS", "ASM_COMMENT_LINE", + "ASM_COMMENT_BLOCK" }; } public static final String[] ruleNames = makeRuleNames(); @@ -103,10 +104,11 @@ public class KickCLexer extends Lexer { "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'defined'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", - "'cycles'", "'!'", null, null, null, null, null, null, "'#import'", "'#include'", + "'cycles'", "'!'", null, null, null, null, "'#import'", "'#include'", "'#pragma'", "'#define'", null, "'#undef'", "'#ifdef'", "'#ifndef'", "'#if'", "'#elif'", "'#else'", "'#endif'", null, null, null, null, null, - null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" + null, null, null, null, null, null, null, null, null, null, null, "'.byte'", + null, "'#'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -125,12 +127,12 @@ public class KickCLexer extends Lexer { "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", - "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", - "IMPORT", "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", - "IFDEF", "IFNDEF", "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", - "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", - "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", - "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", + "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "IMPORT", "INCLUDE", + "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", "IFIF", + "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", + "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", + "SYSTEMFILE", "STRING", "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", + "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", @@ -223,21 +225,24 @@ public class KickCLexer extends Lexer { ASM_action((RuleContext)_localctx, actionIndex); break; case 90: - STRING_action((RuleContext)_localctx, actionIndex); - break; - case 92: IMPORT_action((RuleContext)_localctx, actionIndex); break; - case 93: + case 91: INCLUDE_action((RuleContext)_localctx, actionIndex); break; - case 116: + case 114: NAME_action((RuleContext)_localctx, actionIndex); break; - case 140: - ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); + case 117: + SYSTEMFILE_action((RuleContext)_localctx, actionIndex); + break; + case 118: + STRING_action((RuleContext)_localctx, actionIndex); break; case 141: + ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); + break; + case 142: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; } @@ -256,51 +261,58 @@ public class KickCLexer extends Lexer { break; } } - private void STRING_action(RuleContext _localctx, int actionIndex) { - switch (actionIndex) { - case 2: - if(importEnter) { importEnter=false; cParser.loadCFile(getText()); } - break; - } - } private void IMPORT_action(RuleContext _localctx, int actionIndex) { switch (actionIndex) { - case 3: + case 2: importEnter=true; break; } } private void INCLUDE_action(RuleContext _localctx, int actionIndex) { switch (actionIndex) { - case 4: + case 3: importEnter=true; break; } } private void NAME_action(RuleContext _localctx, int actionIndex) { switch (actionIndex) { - case 5: + case 4: if(cParser.isTypedef(getText())) setType(TYPEDEFNAME); break; } } + private void SYSTEMFILE_action(RuleContext _localctx, int actionIndex) { + switch (actionIndex) { + case 5: + if(importEnter) { importEnter=false; cParser.loadCFile(getText(), true); } + break; + } + } + private void STRING_action(RuleContext _localctx, int actionIndex) { + switch (actionIndex) { + case 6: + if(importEnter) { importEnter=false; cParser.loadCFile(getText(), false); } + break; + } + } private void ASM_CURLY_BEGIN_action(RuleContext _localctx, int actionIndex) { switch (actionIndex) { - case 6: + case 7: asmCurlyCount++; break; } } private void ASM_CURLY_END_action(RuleContext _localctx, int actionIndex) { switch (actionIndex) { - case 7: + case 8: asmCurlyCount--; if(asmCurlyCount<0) { popMode(); } break; } } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u009c\u060c\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u009d\u0617\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\t\30"+ @@ -322,558 +334,563 @@ public class KickCLexer extends Lexer { "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ "\t\u009b\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\4\u00a4"+ - "\t\u00a4\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\b\3\b\3"+ - "\t\3\t\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\16\3\17\3\17"+ - "\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\24\3\25\3\25\3\25"+ - "\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\32\3\33\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 \3 \3 \3!\3"+ - "!\3\"\3\"\3\"\3#\3#\3#\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%\u01b4\n%\3&\3&\3&\3&\3&\3&\3&\3&\3\'\3\'"+ - "\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3*\3*\3*\3*\3*"+ - "\3+\3+\3+\3+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3-\3."+ - "\3.\3.\3.\3.\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3\60\3\60\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\62\3\62\3\62\3\62\3\62\3"+ - "\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\64\3"+ - "\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3"+ - "\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3"+ - "\67\38\38\38\38\38\38\38\38\38\38\39\39\39\39\39\3:\3:\3:\3:\3:\3:\3;"+ - "\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3=\3=\3=\3=\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>\u0274\n>\3?\3?\3?\3?"+ - "\3?\3?\3?\3?\3?\3?\3@\3@\3@\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3C\3C\3C"+ - "\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3G\3G\3G\3G\3G"+ - "\3G\3H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J"+ - "\3J\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N"+ - "\3N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q"+ - "\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T"+ - "\3T\3T\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3V\3W\3W\3X\3X\3X\3X\3X\3X"+ - "\3X\3X\3X\3X\3X\3X\3X\3X\5X\u0323\nX\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+ + "\t\u00a4\4\u00a5\t\u00a5\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\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16"+ + "\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\24"+ + "\3\25\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\32"+ + "\3\33\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 \3 \3 \3!\3!\3\"\3\"\3\"\3#\3#\3#\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%\u01b6\n%\3&\3&\3&\3&\3&\3&"+ + "\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3"+ + "*\3*\3*\3*\3*\3+\3+\3+\3+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3"+ + "-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3\60\3\60\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\62\3\62\3\62"+ + "\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64"+ + "\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66"+ + "\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67"+ + "\3\67\3\67\3\67\38\38\38\38\38\38\38\38\38\38\39\39\39\39\39\3:\3:\3:"+ + "\3:\3:\3:\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3=\3=\3=\3=\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>\u0276\n>"+ + "\3?\3?\3?\3?\3?\3?\3?\3?\3?\3?\3@\3@\3@\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B"+ + "\3B\3C\3C\3C\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3E\3F\3F\3F\3F\3F\3F\3F\3G"+ + "\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J"+ + "\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3N"+ + "\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3P\3Q\3Q"+ + "\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3T\3T\3T"+ + "\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3V\3W\3W\3X\3X"+ + "\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\3X\5X\u0325\nX\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+ "\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y"+ - "\3Y\3Y\3Y\5Y\u034a\nY\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\5Z\u0355\nZ\3[\3[\3["+ - "\3[\7[\u035b\n[\f[\16[\u035e\13[\3[\3[\3[\3\\\3\\\3\\\3\\\7\\\u0367\n"+ - "\\\f\\\16\\\u036a\13\\\3\\\3\\\5\\\u036e\n\\\3\\\3\\\5\\\u0372\n\\\5\\"+ - "\u0374\n\\\3\\\5\\\u0377\n\\\3\\\3\\\3]\3]\3]\3]\5]\u037f\n]\3]\3]\3^"+ - "\3^\3^\3^\3^\3^\3^\3^\3^\3^\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`"+ - "\3`\3`\3`\3`\3`\3a\3a\3a\3a\3a\3a\3a\3a\3b\3b\3b\3b\3b\5b\u03ad\nb\3c"+ - "\3c\3c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3e\3e\3f\3f"+ - "\3f\3f\3g\3g\3g\3g\3g\3g\3h\3h\3h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3i\3j\3j"+ - "\5j\u03de\nj\3k\3k\3k\5k\u03e3\nk\3l\3l\3l\3l\3l\5l\u03ea\nl\3l\7l\u03ed"+ - "\nl\fl\16l\u03f0\13l\3l\3l\6l\u03f4\nl\rl\16l\u03f5\3m\7m\u03f9\nm\fm"+ - "\16m\u03fc\13m\3m\3m\6m\u0400\nm\rm\16m\u0401\3n\3n\3n\3n\3n\5n\u0409"+ - "\nn\3n\7n\u040c\nn\fn\16n\u040f\13n\3n\3n\6n\u0413\nn\rn\16n\u0414\3o"+ - "\3o\3o\5o\u041a\no\3o\3o\3o\5o\u041f\no\3p\3p\3p\6p\u0424\np\rp\16p\u0425"+ - "\3p\3p\6p\u042a\np\rp\16p\u042b\5p\u042e\np\3q\6q\u0431\nq\rq\16q\u0432"+ - "\3r\3r\3r\3r\3r\5r\u043a\nr\3r\6r\u043d\nr\rr\16r\u043e\3s\3s\3t\3t\3"+ - "u\3u\3v\3v\7v\u0449\nv\fv\16v\u044c\13v\3v\3v\3w\3w\3x\3x\3y\6y\u0455"+ - "\ny\ry\16y\u0456\3y\3y\3z\3z\3z\3z\7z\u045f\nz\fz\16z\u0462\13z\3z\3z"+ - "\3{\3{\3{\3{\7{\u046a\n{\f{\16{\u046d\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}\u0558\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\u0584\n\u0090\3\u0091\3\u0091\3\u0091"+ - "\5\u0091\u0589\n\u0091\3\u0092\3\u0092\7\u0092\u058d\n\u0092\f\u0092\16"+ - "\u0092\u0590\13\u0092\3\u0092\3\u0092\6\u0092\u0594\n\u0092\r\u0092\16"+ - "\u0092\u0595\3\u0093\7\u0093\u0599\n\u0093\f\u0093\16\u0093\u059c\13\u0093"+ - "\3\u0093\3\u0093\6\u0093\u05a0\n\u0093\r\u0093\16\u0093\u05a1\3\u0094"+ - "\3\u0094\7\u0094\u05a6\n\u0094\f\u0094\16\u0094\u05a9\13\u0094\3\u0094"+ - "\3\u0094\6\u0094\u05ad\n\u0094\r\u0094\16\u0094\u05ae\3\u0095\3\u0095"+ - "\3\u0095\5\u0095\u05b4\n\u0095\3\u0096\3\u0096\6\u0096\u05b8\n\u0096\r"+ - "\u0096\16\u0096\u05b9\3\u0097\6\u0097\u05bd\n\u0097\r\u0097\16\u0097\u05be"+ - "\3\u0098\3\u0098\6\u0098\u05c3\n\u0098\r\u0098\16\u0098\u05c4\3\u0099"+ - "\3\u0099\3\u009a\3\u009a\3\u009b\3\u009b\3\u009c\3\u009c\3\u009c\3\u009c"+ - "\5\u009c\u05d1\n\u009c\3\u009c\3\u009c\3\u009d\3\u009d\6\u009d\u05d7\n"+ - "\u009d\r\u009d\16\u009d\u05d8\3\u009e\3\u009e\7\u009e\u05dd\n\u009e\f"+ - "\u009e\16\u009e\u05e0\13\u009e\3\u009f\3\u009f\7\u009f\u05e4\n\u009f\f"+ - "\u009f\16\u009f\u05e7\13\u009f\3\u00a0\3\u00a0\3\u00a1\3\u00a1\3\u00a2"+ - "\6\u00a2\u05ee\n\u00a2\r\u00a2\16\u00a2\u05ef\3\u00a2\3\u00a2\3\u00a3"+ - "\3\u00a3\3\u00a3\3\u00a3\7\u00a3\u05f8\n\u00a3\f\u00a3\16\u00a3\u05fb"+ - "\13\u00a3\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a4\3\u00a4\7\u00a4\u0603"+ - "\n\u00a4\f\u00a4\16\u00a4\u0606\13\u00a4\3\u00a4\3\u00a4\3\u00a4\3\u00a4"+ - "\3\u00a4\5\u035c\u046b\u0604\2\u00a5\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22"+ - "\13\24\f\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31"+ - "\60\32\62\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60"+ - "^\61`\62b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D"+ - "\u0086E\u0088F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098"+ - "N\u009aO\u009cP\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00ac"+ - "X\u00aeY\u00b0Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0"+ - "b\u00c2c\u00c4d\u00c6e\u00c8f\u00cag\u00cch\u00cei\u00d0j\u00d2k\u00d4"+ - "l\u00d6m\u00d8n\u00dao\u00dcp\u00deq\u00e0r\u00e2s\u00e4t\u00e6\2\u00e8"+ - "\2\u00ea\2\u00ecu\u00ee\2\u00f0\2\u00f2v\u00f4w\u00f6x\u00f8y\u00faz\u00fc"+ - "{\u00fe|\u0100}\u0102~\u0104\177\u0106\u0080\u0108\u0081\u010a\u0082\u010c"+ - "\u0083\u010e\u0084\u0110\u0085\u0112\u0086\u0114\u0087\u0116\u0088\u0118"+ - "\u0089\u011a\u008a\u011c\u008b\u011e\u008c\u0120\u008d\u0122\u008e\u0124"+ - "\u008f\u0126\u0090\u0128\u0091\u012a\u0092\u012c\u0093\u012e\u0094\u0130"+ - "\u0095\u0132\2\u0134\2\u0136\2\u0138\u0096\u013a\u0097\u013c\u0098\u013e"+ - "\u0099\u0140\2\u0142\2\u0144\u009a\u0146\u009b\u0148\u009c\4\2\3\23\3"+ - "\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\3\2))\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|\6\2\13"+ - "\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\2\u0697\2\4\3\2\2\2\2\6"+ - "\3\2\2\2\2\b\3\2\2\2\2\n\3\2\2\2\2\f\3\2\2\2\2\16\3\2\2\2\2\20\3\2\2\2"+ - "\2\22\3\2\2\2\2\24\3\2\2\2\2\26\3\2\2\2\2\30\3\2\2\2\2\32\3\2\2\2\2\34"+ - "\3\2\2\2\2\36\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\60\3\2\2\2\2\62\3\2\2\2\2"+ - "\64\3\2\2\2\2\66\3\2\2\2\28\3\2\2\2\2:\3\2\2\2\2<\3\2\2\2\2>\3\2\2\2\2"+ - "@\3\2\2\2\2B\3\2\2\2\2D\3\2\2\2\2F\3\2\2\2\2H\3\2\2\2\2J\3\2\2\2\2L\3"+ - "\2\2\2\2N\3\2\2\2\2P\3\2\2\2\2R\3\2\2\2\2T\3\2\2\2\2V\3\2\2\2\2X\3\2\2"+ - "\2\2Z\3\2\2\2\2\\\3\2\2\2\2^\3\2\2\2\2`\3\2\2\2\2b\3\2\2\2\2d\3\2\2\2"+ - "\2f\3\2\2\2\2h\3\2\2\2\2j\3\2\2\2\2l\3\2\2\2\2n\3\2\2\2\2p\3\2\2\2\2r"+ - "\3\2\2\2\2t\3\2\2\2\2v\3\2\2\2\2x\3\2\2\2\2z\3\2\2\2\2|\3\2\2\2\2~\3\2"+ - "\2\2\2\u0080\3\2\2\2\2\u0082\3\2\2\2\2\u0084\3\2\2\2\2\u0086\3\2\2\2\2"+ - "\u0088\3\2\2\2\2\u008a\3\2\2\2\2\u008c\3\2\2\2\2\u008e\3\2\2\2\2\u0090"+ - "\3\2\2\2\2\u0092\3\2\2\2\2\u0094\3\2\2\2\2\u0096\3\2\2\2\2\u0098\3\2\2"+ - "\2\2\u009a\3\2\2\2\2\u009c\3\2\2\2\2\u009e\3\2\2\2\2\u00a0\3\2\2\2\2\u00a2"+ - "\3\2\2\2\2\u00a4\3\2\2\2\2\u00a6\3\2\2\2\2\u00a8\3\2\2\2\2\u00aa\3\2\2"+ - "\2\2\u00ac\3\2\2\2\2\u00ae\3\2\2\2\2\u00b0\3\2\2\2\2\u00b2\3\2\2\2\2\u00b4"+ - "\3\2\2\2\2\u00b6\3\2\2\2\2\u00b8\3\2\2\2\2\u00ba\3\2\2\2\2\u00bc\3\2\2"+ - "\2\2\u00be\3\2\2\2\2\u00c0\3\2\2\2\2\u00c2\3\2\2\2\2\u00c4\3\2\2\2\2\u00c6"+ - "\3\2\2\2\2\u00c8\3\2\2\2\2\u00ca\3\2\2\2\2\u00cc\3\2\2\2\2\u00ce\3\2\2"+ - "\2\2\u00d0\3\2\2\2\2\u00d2\3\2\2\2\2\u00d4\3\2\2\2\2\u00d6\3\2\2\2\2\u00d8"+ - "\3\2\2\2\2\u00da\3\2\2\2\2\u00dc\3\2\2\2\2\u00de\3\2\2\2\2\u00e0\3\2\2"+ - "\2\2\u00e2\3\2\2\2\2\u00e4\3\2\2\2\2\u00ec\3\2\2\2\2\u00f2\3\2\2\2\2\u00f4"+ - "\3\2\2\2\2\u00f6\3\2\2\2\3\u00f8\3\2\2\2\3\u00fa\3\2\2\2\3\u00fc\3\2\2"+ - "\2\3\u00fe\3\2\2\2\3\u0100\3\2\2\2\3\u0102\3\2\2\2\3\u0104\3\2\2\2\3\u0106"+ - "\3\2\2\2\3\u0108\3\2\2\2\3\u010a\3\2\2\2\3\u010c\3\2\2\2\3\u010e\3\2\2"+ - "\2\3\u0110\3\2\2\2\3\u0112\3\2\2\2\3\u0114\3\2\2\2\3\u0116\3\2\2\2\3\u0118"+ - "\3\2\2\2\3\u011a\3\2\2\2\3\u011c\3\2\2\2\3\u011e\3\2\2\2\3\u0120\3\2\2"+ - "\2\3\u0122\3\2\2\2\3\u0124\3\2\2\2\3\u0126\3\2\2\2\3\u0128\3\2\2\2\3\u012a"+ - "\3\2\2\2\3\u012c\3\2\2\2\3\u012e\3\2\2\2\3\u0130\3\2\2\2\3\u0138\3\2\2"+ - "\2\3\u013a\3\2\2\2\3\u013c\3\2\2\2\3\u013e\3\2\2\2\3\u0144\3\2\2\2\3\u0146"+ - "\3\2\2\2\3\u0148\3\2\2\2\4\u014a\3\2\2\2\6\u014d\3\2\2\2\b\u014f\3\2\2"+ - "\2\n\u0151\3\2\2\2\f\u0153\3\2\2\2\16\u0155\3\2\2\2\20\u0157\3\2\2\2\22"+ - "\u0159\3\2\2\2\24\u015b\3\2\2\2\26\u015d\3\2\2\2\30\u0160\3\2\2\2\32\u0162"+ - "\3\2\2\2\34\u0164\3\2\2\2\36\u0167\3\2\2\2 \u0169\3\2\2\2\"\u016b\3\2"+ - "\2\2$\u016d\3\2\2\2&\u016f\3\2\2\2(\u0171\3\2\2\2*\u0174\3\2\2\2,\u0177"+ - "\3\2\2\2.\u0179\3\2\2\2\60\u017b\3\2\2\2\62\u017d\3\2\2\2\64\u017f\3\2"+ - "\2\2\66\u0182\3\2\2\28\u0185\3\2\2\2:\u0188\3\2\2\2<\u018b\3\2\2\2>\u018d"+ - "\3\2\2\2@\u0190\3\2\2\2B\u0193\3\2\2\2D\u0195\3\2\2\2F\u0198\3\2\2\2H"+ - "\u019b\3\2\2\2J\u01b3\3\2\2\2L\u01b5\3\2\2\2N\u01bd\3\2\2\2P\u01c5\3\2"+ - "\2\2R\u01c8\3\2\2\2T\u01cf\3\2\2\2V\u01d4\3\2\2\2X\u01d8\3\2\2\2Z\u01e1"+ - "\3\2\2\2\\\u01ea\3\2\2\2^\u01f3\3\2\2\2`\u01f9\3\2\2\2b\u0200\3\2\2\2"+ - "d\u0207\3\2\2\2f\u020d\3\2\2\2h\u0214\3\2\2\2j\u021d\3\2\2\2l\u0224\3"+ - "\2\2\2n\u022e\3\2\2\2p\u0237\3\2\2\2r\u0241\3\2\2\2t\u0246\3\2\2\2v\u024c"+ - "\3\2\2\2x\u0252\3\2\2\2z\u0257\3\2\2\2|\u0273\3\2\2\2~\u0275\3\2\2\2\u0080"+ - "\u027f\3\2\2\2\u0082\u0282\3\2\2\2\u0084\u0287\3\2\2\2\u0086\u028d\3\2"+ - "\2\2\u0088\u0290\3\2\2\2\u008a\u0294\3\2\2\2\u008c\u029b\3\2\2\2\u008e"+ - "\u02a2\3\2\2\2\u0090\u02a8\3\2\2\2\u0092\u02b1\3\2\2\2\u0094\u02b7\3\2"+ - "\2\2\u0096\u02bf\3\2\2\2\u0098\u02c4\3\2\2\2\u009a\u02cb\3\2\2\2\u009c"+ - "\u02d0\3\2\2\2\u009e\u02d7\3\2\2\2\u00a0\u02de\3\2\2\2\u00a2\u02e6\3\2"+ - "\2\2\u00a4\u02ee\3\2\2\2\u00a6\u02f7\3\2\2\2\u00a8\u02fc\3\2\2\2\u00aa"+ - "\u0305\3\2\2\2\u00ac\u030b\3\2\2\2\u00ae\u0312\3\2\2\2\u00b0\u0322\3\2"+ - "\2\2\u00b2\u0349\3\2\2\2\u00b4\u0354\3\2\2\2\u00b6\u0356\3\2\2\2\u00b8"+ - "\u0362\3\2\2\2\u00ba\u037a\3\2\2\2\u00bc\u0382\3\2\2\2\u00be\u038c\3\2"+ - "\2\2\u00c0\u0397\3\2\2\2\u00c2\u039f\3\2\2\2\u00c4\u03ac\3\2\2\2\u00c6"+ - "\u03ae\3\2\2\2\u00c8\u03b5\3\2\2\2\u00ca\u03bc\3\2\2\2\u00cc\u03c4\3\2"+ - "\2\2\u00ce\u03c8\3\2\2\2\u00d0\u03ce\3\2\2\2\u00d2\u03d4\3\2\2\2\u00d4"+ - "\u03dd\3\2\2\2\u00d6\u03e2\3\2\2\2\u00d8\u03e9\3\2\2\2\u00da\u03fa\3\2"+ - "\2\2\u00dc\u0408\3\2\2\2\u00de\u0419\3\2\2\2\u00e0\u042d\3\2\2\2\u00e2"+ - "\u0430\3\2\2\2\u00e4\u0439\3\2\2\2\u00e6\u0440\3\2\2\2\u00e8\u0442\3\2"+ - "\2\2\u00ea\u0444\3\2\2\2\u00ec\u0446\3\2\2\2\u00ee\u044f\3\2\2\2\u00f0"+ - "\u0451\3\2\2\2\u00f2\u0454\3\2\2\2\u00f4\u045a\3\2\2\2\u00f6\u0465\3\2"+ - "\2\2\u00f8\u0473\3\2\2\2\u00fa\u0557\3\2\2\2\u00fc\u0559\3\2\2\2\u00fe"+ - "\u055b\3\2\2\2\u0100\u055d\3\2\2\2\u0102\u055f\3\2\2\2\u0104\u0561\3\2"+ - "\2\2\u0106\u0563\3\2\2\2\u0108\u0565\3\2\2\2\u010a\u0567\3\2\2\2\u010c"+ - "\u0569\3\2\2\2\u010e\u056c\3\2\2\2\u0110\u056f\3\2\2\2\u0112\u0571\3\2"+ - "\2\2\u0114\u0573\3\2\2\2\u0116\u0575\3\2\2\2\u0118\u0577\3\2\2\2\u011a"+ - "\u0579\3\2\2\2\u011c\u057b\3\2\2\2\u011e\u057e\3\2\2\2\u0120\u0583\3\2"+ - "\2\2\u0122\u0588\3\2\2\2\u0124\u058a\3\2\2\2\u0126\u059a\3\2\2\2\u0128"+ - "\u05a3\3\2\2\2\u012a\u05b3\3\2\2\2\u012c\u05b5\3\2\2\2\u012e\u05bc\3\2"+ - "\2\2\u0130\u05c0\3\2\2\2\u0132\u05c6\3\2\2\2\u0134\u05c8\3\2\2\2\u0136"+ - "\u05ca\3\2\2\2\u0138\u05cc\3\2\2\2\u013a\u05d4\3\2\2\2\u013c\u05da\3\2"+ - "\2\2\u013e\u05e1\3\2\2\2\u0140\u05e8\3\2\2\2\u0142\u05ea\3\2\2\2\u0144"+ - "\u05ed\3\2\2\2\u0146\u05f3\3\2\2\2\u0148\u05fe\3\2\2\2\u014a\u014b\7}"+ - "\2\2\u014b\u014c\b\2\2\2\u014c\5\3\2\2\2\u014d\u014e\7\177\2\2\u014e\7"+ - "\3\2\2\2\u014f\u0150\7]\2\2\u0150\t\3\2\2\2\u0151\u0152\7_\2\2\u0152\13"+ - "\3\2\2\2\u0153\u0154\7*\2\2\u0154\r\3\2\2\2\u0155\u0156\7+\2\2\u0156\17"+ - "\3\2\2\2\u0157\u0158\7=\2\2\u0158\21\3\2\2\2\u0159\u015a\7<\2\2\u015a"+ - "\23\3\2\2\2\u015b\u015c\7.\2\2\u015c\25\3\2\2\2\u015d\u015e\7\60\2\2\u015e"+ - "\u015f\7\60\2\2\u015f\27\3\2\2\2\u0160\u0161\7A\2\2\u0161\31\3\2\2\2\u0162"+ - "\u0163\7\60\2\2\u0163\33\3\2\2\2\u0164\u0165\7/\2\2\u0165\u0166\7@\2\2"+ - "\u0166\35\3\2\2\2\u0167\u0168\7-\2\2\u0168\37\3\2\2\2\u0169\u016a\7/\2"+ - "\2\u016a!\3\2\2\2\u016b\u016c\7,\2\2\u016c#\3\2\2\2\u016d\u016e\7\61\2"+ - "\2\u016e%\3\2\2\2\u016f\u0170\7\'\2\2\u0170\'\3\2\2\2\u0171\u0172\7-\2"+ - "\2\u0172\u0173\7-\2\2\u0173)\3\2\2\2\u0174\u0175\7/\2\2\u0175\u0176\7"+ - "/\2\2\u0176+\3\2\2\2\u0177\u0178\7(\2\2\u0178-\3\2\2\2\u0179\u017a\7\u0080"+ - "\2\2\u017a/\3\2\2\2\u017b\u017c\7`\2\2\u017c\61\3\2\2\2\u017d\u017e\7"+ - "~\2\2\u017e\63\3\2\2\2\u017f\u0180\7>\2\2\u0180\u0181\7>\2\2\u0181\65"+ - "\3\2\2\2\u0182\u0183\7@\2\2\u0183\u0184\7@\2\2\u0184\67\3\2\2\2\u0185"+ - "\u0186\7?\2\2\u0186\u0187\7?\2\2\u01879\3\2\2\2\u0188\u0189\7#\2\2\u0189"+ - "\u018a\7?\2\2\u018a;\3\2\2\2\u018b\u018c\7>\2\2\u018c=\3\2\2\2\u018d\u018e"+ - "\7>\2\2\u018e\u018f\7?\2\2\u018f?\3\2\2\2\u0190\u0191\7@\2\2\u0191\u0192"+ - "\7?\2\2\u0192A\3\2\2\2\u0193\u0194\7@\2\2\u0194C\3\2\2\2\u0195\u0196\7"+ - "(\2\2\u0196\u0197\7(\2\2\u0197E\3\2\2\2\u0198\u0199\7~\2\2\u0199\u019a"+ - "\7~\2\2\u019aG\3\2\2\2\u019b\u019c\7?\2\2\u019cI\3\2\2\2\u019d\u019e\7"+ - "-\2\2\u019e\u01b4\7?\2\2\u019f\u01a0\7/\2\2\u01a0\u01b4\7?\2\2\u01a1\u01a2"+ - "\7,\2\2\u01a2\u01b4\7?\2\2\u01a3\u01a4\7\61\2\2\u01a4\u01b4\7?\2\2\u01a5"+ - "\u01a6\7\'\2\2\u01a6\u01b4\7?\2\2\u01a7\u01a8\7>\2\2\u01a8\u01a9\7>\2"+ - "\2\u01a9\u01b4\7?\2\2\u01aa\u01ab\7@\2\2\u01ab\u01ac\7@\2\2\u01ac\u01b4"+ - "\7?\2\2\u01ad\u01ae\7(\2\2\u01ae\u01b4\7?\2\2\u01af\u01b0\7~\2\2\u01b0"+ - "\u01b4\7?\2\2\u01b1\u01b2\7`\2\2\u01b2\u01b4\7?\2\2\u01b3\u019d\3\2\2"+ - "\2\u01b3\u019f\3\2\2\2\u01b3\u01a1\3\2\2\2\u01b3\u01a3\3\2\2\2\u01b3\u01a5"+ - "\3\2\2\2\u01b3\u01a7\3\2\2\2\u01b3\u01aa\3\2\2\2\u01b3\u01ad\3\2\2\2\u01b3"+ - "\u01af\3\2\2\2\u01b3\u01b1\3\2\2\2\u01b4K\3\2\2\2\u01b5\u01b6\7v\2\2\u01b6"+ - "\u01b7\7{\2\2\u01b7\u01b8\7r\2\2\u01b8\u01b9\7g\2\2\u01b9\u01ba\7f\2\2"+ - "\u01ba\u01bb\7g\2\2\u01bb\u01bc\7h\2\2\u01bcM\3\2\2\2\u01bd\u01be\7t\2"+ - "\2\u01be\u01bf\7g\2\2\u01bf\u01c0\7u\2\2\u01c0\u01c1\7g\2\2\u01c1\u01c2"+ - "\7t\2\2\u01c2\u01c3\7x\2\2\u01c3\u01c4\7g\2\2\u01c4O\3\2\2\2\u01c5\u01c6"+ - "\7r\2\2\u01c6\u01c7\7e\2\2\u01c7Q\3\2\2\2\u01c8\u01c9\7v\2\2\u01c9\u01ca"+ - "\7c\2\2\u01ca\u01cb\7t\2\2\u01cb\u01cc\7i\2\2\u01cc\u01cd\7g\2\2\u01cd"+ - "\u01ce\7v\2\2\u01ceS\3\2\2\2\u01cf\u01d0\7n\2\2\u01d0\u01d1\7k\2\2\u01d1"+ - "\u01d2\7p\2\2\u01d2\u01d3\7m\2\2\u01d3U\3\2\2\2\u01d4\u01d5\7e\2\2\u01d5"+ - "\u01d6\7r\2\2\u01d6\u01d7\7w\2\2\u01d7W\3\2\2\2\u01d8\u01d9\7e\2\2\u01d9"+ - "\u01da\7q\2\2\u01da\u01db\7f\2\2\u01db\u01dc\7g\2\2\u01dc\u01dd\7a\2\2"+ - "\u01dd\u01de\7u\2\2\u01de\u01df\7g\2\2\u01df\u01e0\7i\2\2\u01e0Y\3\2\2"+ - "\2\u01e1\u01e2\7f\2\2\u01e2\u01e3\7c\2\2\u01e3\u01e4\7v\2\2\u01e4\u01e5"+ - "\7c\2\2\u01e5\u01e6\7a\2\2\u01e6\u01e7\7u\2\2\u01e7\u01e8\7g\2\2\u01e8"+ - "\u01e9\7i\2\2\u01e9[\3\2\2\2\u01ea\u01eb\7g\2\2\u01eb\u01ec\7p\2\2\u01ec"+ - "\u01ed\7e\2\2\u01ed\u01ee\7q\2\2\u01ee\u01ef\7f\2\2\u01ef\u01f0\7k\2\2"+ - "\u01f0\u01f1\7p\2\2\u01f1\u01f2\7i\2\2\u01f2]\3\2\2\2\u01f3\u01f4\7e\2"+ - "\2\u01f4\u01f5\7q\2\2\u01f5\u01f6\7p\2\2\u01f6\u01f7\7u\2\2\u01f7\u01f8"+ - "\7v\2\2\u01f8_\3\2\2\2\u01f9\u01fa\7g\2\2\u01fa\u01fb\7z\2\2\u01fb\u01fc"+ - "\7v\2\2\u01fc\u01fd\7g\2\2\u01fd\u01fe\7t\2\2\u01fe\u01ff\7p\2\2\u01ff"+ - "a\3\2\2\2\u0200\u0201\7g\2\2\u0201\u0202\7z\2\2\u0202\u0203\7r\2\2\u0203"+ - "\u0204\7q\2\2\u0204\u0205\7t\2\2\u0205\u0206\7v\2\2\u0206c\3\2\2\2\u0207"+ - "\u0208\7c\2\2\u0208\u0209\7n\2\2\u0209\u020a\7k\2\2\u020a\u020b\7i\2\2"+ - "\u020b\u020c\7p\2\2\u020ce\3\2\2\2\u020d\u020e\7k\2\2\u020e\u020f\7p\2"+ - "\2\u020f\u0210\7n\2\2\u0210\u0211\7k\2\2\u0211\u0212\7p\2\2\u0212\u0213"+ - "\7g\2\2\u0213g\3\2\2\2\u0214\u0215\7x\2\2\u0215\u0216\7q\2\2\u0216\u0217"+ - "\7n\2\2\u0217\u0218\7c\2\2\u0218\u0219\7v\2\2\u0219\u021a\7k\2\2\u021a"+ - "\u021b\7n\2\2\u021b\u021c\7g\2\2\u021ci\3\2\2\2\u021d\u021e\7u\2\2\u021e"+ - "\u021f\7v\2\2\u021f\u0220\7c\2\2\u0220\u0221\7v\2\2\u0221\u0222\7k\2\2"+ - "\u0222\u0223\7e\2\2\u0223k\3\2\2\2\u0224\u0225\7k\2\2\u0225\u0226\7p\2"+ - "\2\u0226\u0227\7v\2\2\u0227\u0228\7g\2\2\u0228\u0229\7t\2\2\u0229\u022a"+ - "\7t\2\2\u022a\u022b\7w\2\2\u022b\u022c\7r\2\2\u022c\u022d\7v\2\2\u022d"+ - "m\3\2\2\2\u022e\u022f\7t\2\2\u022f\u0230\7g\2\2\u0230\u0231\7i\2\2\u0231"+ - "\u0232\7k\2\2\u0232\u0233\7u\2\2\u0233\u0234\7v\2\2\u0234\u0235\7g\2\2"+ - "\u0235\u0236\7t\2\2\u0236o\3\2\2\2\u0237\u0238\7a\2\2\u0238\u0239\7a\2"+ - "\2\u0239\u023a\7c\2\2\u023a\u023b\7f\2\2\u023b\u023c\7f\2\2\u023c\u023d"+ - "\7t\2\2\u023d\u023e\7g\2\2\u023e\u023f\7u\2\2\u023f\u0240\7u\2\2\u0240"+ - "q\3\2\2\2\u0241\u0242\7a\2\2\u0242\u0243\7a\2\2\u0243\u0244\7|\2\2\u0244"+ - "\u0245\7r\2\2\u0245s\3\2\2\2\u0246\u0247\7a\2\2\u0247\u0248\7a\2\2\u0248"+ - "\u0249\7o\2\2\u0249\u024a\7g\2\2\u024a\u024b\7o\2\2\u024bu\3\2\2\2\u024c"+ - "\u024d\7a\2\2\u024d\u024e\7a\2\2\u024e\u024f\7u\2\2\u024f\u0250\7u\2\2"+ - "\u0250\u0251\7c\2\2\u0251w\3\2\2\2\u0252\u0253\7a\2\2\u0253\u0254\7a\2"+ - "\2\u0254\u0255\7o\2\2\u0255\u0256\7c\2\2\u0256y\3\2\2\2\u0257\u0258\7"+ - "e\2\2\u0258\u0259\7c\2\2\u0259\u025a\7n\2\2\u025a\u025b\7n\2\2\u025b\u025c"+ - "\7k\2\2\u025c\u025d\7p\2\2\u025d\u025e\7i\2\2\u025e{\3\2\2\2\u025f\u0260"+ - "\7a\2\2\u0260\u0261\7a\2\2\u0261\u0262\7u\2\2\u0262\u0263\7v\2\2\u0263"+ - "\u0264\7c\2\2\u0264\u0265\7e\2\2\u0265\u0266\7m\2\2\u0266\u0267\7e\2\2"+ - "\u0267\u0268\7c\2\2\u0268\u0269\7n\2\2\u0269\u0274\7n\2\2\u026a\u026b"+ - "\7a\2\2\u026b\u026c\7a\2\2\u026c\u026d\7r\2\2\u026d\u026e\7j\2\2\u026e"+ - "\u026f\7k\2\2\u026f\u0270\7e\2\2\u0270\u0271\7c\2\2\u0271\u0272\7n\2\2"+ - "\u0272\u0274\7n\2\2\u0273\u025f\3\2\2\2\u0273\u026a\3\2\2\2\u0274}\3\2"+ - "\2\2\u0275\u0276\7x\2\2\u0276\u0277\7c\2\2\u0277\u0278\7t\2\2\u0278\u0279"+ - "\7a\2\2\u0279\u027a\7o\2\2\u027a\u027b\7q\2\2\u027b\u027c\7f\2\2\u027c"+ - "\u027d\7g\2\2\u027d\u027e\7n\2\2\u027e\177\3\2\2\2\u027f\u0280\7k\2\2"+ - "\u0280\u0281\7h\2\2\u0281\u0081\3\2\2\2\u0282\u0283\7g\2\2\u0283\u0284"+ - "\7n\2\2\u0284\u0285\7u\2\2\u0285\u0286\7g\2\2\u0286\u0083\3\2\2\2\u0287"+ - "\u0288\7y\2\2\u0288\u0289\7j\2\2\u0289\u028a\7k\2\2\u028a\u028b\7n\2\2"+ - "\u028b\u028c\7g\2\2\u028c\u0085\3\2\2\2\u028d\u028e\7f\2\2\u028e\u028f"+ - "\7q\2\2\u028f\u0087\3\2\2\2\u0290\u0291\7h\2\2\u0291\u0292\7q\2\2\u0292"+ - "\u0293\7t\2\2\u0293\u0089\3\2\2\2\u0294\u0295\7u\2\2\u0295\u0296\7y\2"+ - "\2\u0296\u0297\7k\2\2\u0297\u0298\7v\2\2\u0298\u0299\7e\2\2\u0299\u029a"+ - "\7j\2\2\u029a\u008b\3\2\2\2\u029b\u029c\7t\2\2\u029c\u029d\7g\2\2\u029d"+ - "\u029e\7v\2\2\u029e\u029f\7w\2\2\u029f\u02a0\7t\2\2\u02a0\u02a1\7p\2\2"+ - "\u02a1\u008d\3\2\2\2\u02a2\u02a3\7d\2\2\u02a3\u02a4\7t\2\2\u02a4\u02a5"+ - "\7g\2\2\u02a5\u02a6\7c\2\2\u02a6\u02a7\7m\2\2\u02a7\u008f\3\2\2\2\u02a8"+ - "\u02a9\7e\2\2\u02a9\u02aa\7q\2\2\u02aa\u02ab\7p\2\2\u02ab\u02ac\7v\2\2"+ - "\u02ac\u02ad\7k\2\2\u02ad\u02ae\7p\2\2\u02ae\u02af\7w\2\2\u02af\u02b0"+ - "\7g\2\2\u02b0\u0091\3\2\2\2\u02b1\u02b2\7c\2\2\u02b2\u02b3\7u\2\2\u02b3"+ - "\u02b4\7o\2\2\u02b4\u02b5\3\2\2\2\u02b5\u02b6\bI\3\2\u02b6\u0093\3\2\2"+ - "\2\u02b7\u02b8\7f\2\2\u02b8\u02b9\7g\2\2\u02b9\u02ba\7h\2\2\u02ba\u02bb"+ - "\7c\2\2\u02bb\u02bc\7w\2\2\u02bc\u02bd\7n\2\2\u02bd\u02be\7v\2\2\u02be"+ - "\u0095\3\2\2\2\u02bf\u02c0\7e\2\2\u02c0\u02c1\7c\2\2\u02c1\u02c2\7u\2"+ - "\2\u02c2\u02c3\7g\2\2\u02c3\u0097\3\2\2\2\u02c4\u02c5\7u\2\2\u02c5\u02c6"+ - "\7v\2\2\u02c6\u02c7\7t\2\2\u02c7\u02c8\7w\2\2\u02c8\u02c9\7e\2\2\u02c9"+ - "\u02ca\7v\2\2\u02ca\u0099\3\2\2\2\u02cb\u02cc\7g\2\2\u02cc\u02cd\7p\2"+ - "\2\u02cd\u02ce\7w\2\2\u02ce\u02cf\7o\2\2\u02cf\u009b\3\2\2\2\u02d0\u02d1"+ - "\7u\2\2\u02d1\u02d2\7k\2\2\u02d2\u02d3\7|\2\2\u02d3\u02d4\7g\2\2\u02d4"+ - "\u02d5\7q\2\2\u02d5\u02d6\7h\2\2\u02d6\u009d\3\2\2\2\u02d7\u02d8\7v\2"+ - "\2\u02d8\u02d9\7{\2\2\u02d9\u02da\7r\2\2\u02da\u02db\7g\2\2\u02db\u02dc"+ - "\7k\2\2\u02dc\u02dd\7f\2\2\u02dd\u009f\3\2\2\2\u02de\u02df\7f\2\2\u02df"+ - "\u02e0\7g\2\2\u02e0\u02e1\7h\2\2\u02e1\u02e2\7k\2\2\u02e2\u02e3\7p\2\2"+ - "\u02e3\u02e4\7g\2\2\u02e4\u02e5\7f\2\2\u02e5\u00a1\3\2\2\2\u02e6\u02e7"+ - "\7m\2\2\u02e7\u02e8\7k\2\2\u02e8\u02e9\7e\2\2\u02e9\u02ea\7m\2\2\u02ea"+ - "\u02eb\7c\2\2\u02eb\u02ec\7u\2\2\u02ec\u02ed\7o\2\2\u02ed\u00a3\3\2\2"+ - "\2\u02ee\u02ef\7t\2\2\u02ef\u02f0\7g\2\2\u02f0\u02f1\7u\2\2\u02f1\u02f2"+ - "\7q\2\2\u02f2\u02f3\7w\2\2\u02f3\u02f4\7t\2\2\u02f4\u02f5\7e\2\2\u02f5"+ - "\u02f6\7g\2\2\u02f6\u00a5\3\2\2\2\u02f7\u02f8\7w\2\2\u02f8\u02f9\7u\2"+ - "\2\u02f9\u02fa\7g\2\2\u02fa\u02fb\7u\2\2\u02fb\u00a7\3\2\2\2\u02fc\u02fd"+ - "\7e\2\2\u02fd\u02fe\7n\2\2\u02fe\u02ff\7q\2\2\u02ff\u0300\7d\2\2\u0300"+ - "\u0301\7d\2\2\u0301\u0302\7g\2\2\u0302\u0303\7t\2\2\u0303\u0304\7u\2\2"+ - "\u0304\u00a9\3\2\2\2\u0305\u0306\7d\2\2\u0306\u0307\7{\2\2\u0307\u0308"+ - "\7v\2\2\u0308\u0309\7g\2\2\u0309\u030a\7u\2\2\u030a\u00ab\3\2\2\2\u030b"+ - "\u030c\7e\2\2\u030c\u030d\7{\2\2\u030d\u030e\7e\2\2\u030e\u030f\7n\2\2"+ - "\u030f\u0310\7g\2\2\u0310\u0311\7u\2\2\u0311\u00ad\3\2\2\2\u0312\u0313"+ - "\7#\2\2\u0313\u00af\3\2\2\2\u0314\u0315\7u\2\2\u0315\u0316\7k\2\2\u0316"+ - "\u0317\7i\2\2\u0317\u0318\7p\2\2\u0318\u0319\7g\2\2\u0319\u0323\7f\2\2"+ - "\u031a\u031b\7w\2\2\u031b\u031c\7p\2\2\u031c\u031d\7u\2\2\u031d\u031e"+ - "\7k\2\2\u031e\u031f\7i\2\2\u031f\u0320\7p\2\2\u0320\u0321\7g\2\2\u0321"+ - "\u0323\7f\2\2\u0322\u0314\3\2\2\2\u0322\u031a\3\2\2\2\u0323\u00b1\3\2"+ - "\2\2\u0324\u0325\7d\2\2\u0325\u0326\7{\2\2\u0326\u0327\7v\2\2\u0327\u034a"+ - "\7g\2\2\u0328\u0329\7y\2\2\u0329\u032a\7q\2\2\u032a\u032b\7t\2\2\u032b"+ - "\u034a\7f\2\2\u032c\u032d\7f\2\2\u032d\u032e\7y\2\2\u032e\u032f\7q\2\2"+ - "\u032f\u0330\7t\2\2\u0330\u034a\7f\2\2\u0331\u0332\7d\2\2\u0332\u0333"+ - "\7q\2\2\u0333\u0334\7q\2\2\u0334\u034a\7n\2\2\u0335\u0336\7e\2\2\u0336"+ - "\u0337\7j\2\2\u0337\u0338\7c\2\2\u0338\u034a\7t\2\2\u0339\u033a\7u\2\2"+ - "\u033a\u033b\7j\2\2\u033b\u033c\7q\2\2\u033c\u033d\7t\2\2\u033d\u034a"+ - "\7v\2\2\u033e\u033f\7k\2\2\u033f\u0340\7p\2\2\u0340\u034a\7v\2\2\u0341"+ - "\u0342\7n\2\2\u0342\u0343\7q\2\2\u0343\u0344\7p\2\2\u0344\u034a\7i\2\2"+ - "\u0345\u0346\7x\2\2\u0346\u0347\7q\2\2\u0347\u0348\7k\2\2\u0348\u034a"+ - "\7f\2\2\u0349\u0324\3\2\2\2\u0349\u0328\3\2\2\2\u0349\u032c\3\2\2\2\u0349"+ - "\u0331\3\2\2\2\u0349\u0335\3\2\2\2\u0349\u0339\3\2\2\2\u0349\u033e\3\2"+ - "\2\2\u0349\u0341\3\2\2\2\u0349\u0345\3\2\2\2\u034a\u00b3\3\2\2\2\u034b"+ - "\u034c\7v\2\2\u034c\u034d\7t\2\2\u034d\u034e\7w\2\2\u034e\u0355\7g\2\2"+ - "\u034f\u0350\7h\2\2\u0350\u0351\7c\2\2\u0351\u0352\7n\2\2\u0352\u0353"+ - "\7u\2\2\u0353\u0355\7g\2\2\u0354\u034b\3\2\2\2\u0354\u034f\3\2\2\2\u0355"+ - "\u00b5\3\2\2\2\u0356\u0357\7}\2\2\u0357\u0358\7}\2\2\u0358\u035c\3\2\2"+ - "\2\u0359\u035b\13\2\2\2\u035a\u0359\3\2\2\2\u035b\u035e\3\2\2\2\u035c"+ - "\u035d\3\2\2\2\u035c\u035a\3\2\2\2\u035d\u035f\3\2\2\2\u035e\u035c\3\2"+ - "\2\2\u035f\u0360\7\177\2\2\u0360\u0361\7\177\2\2\u0361\u00b7\3\2\2\2\u0362"+ - "\u0368\7$\2\2\u0363\u0364\7^\2\2\u0364\u0367\7$\2\2\u0365\u0367\n\2\2"+ - "\2\u0366\u0363\3\2\2\2\u0366\u0365\3\2\2\2\u0367\u036a\3\2\2\2\u0368\u0366"+ - "\3\2\2\2\u0368\u0369\3\2\2\2\u0369\u036b\3\2\2\2\u036a\u0368\3\2\2\2\u036b"+ - "\u036d\7$\2\2\u036c\u036e\t\3\2\2\u036d\u036c\3\2\2\2\u036d\u036e\3\2"+ - "\2\2\u036e\u0373\3\2\2\2\u036f\u0371\t\4\2\2\u0370\u0372\t\5\2\2\u0371"+ - "\u0370\3\2\2\2\u0371\u0372\3\2\2\2\u0372\u0374\3\2\2\2\u0373\u036f\3\2"+ - "\2\2\u0373\u0374\3\2\2\2\u0374\u0376\3\2\2\2\u0375\u0377\t\3\2\2\u0376"+ - "\u0375\3\2\2\2\u0376\u0377\3\2\2\2\u0377\u0378\3\2\2\2\u0378\u0379\b\\"+ - "\4\2\u0379\u00b9\3\2\2\2\u037a\u037e\7)\2\2\u037b\u037c\7^\2\2\u037c\u037f"+ - "\t\6\2\2\u037d\u037f\n\7\2\2\u037e\u037b\3\2\2\2\u037e\u037d\3\2\2\2\u037f"+ - "\u0380\3\2\2\2\u0380\u0381\7)\2\2\u0381\u00bb\3\2\2\2\u0382\u0383\7%\2"+ - "\2\u0383\u0384\7k\2\2\u0384\u0385\7o\2\2\u0385\u0386\7r\2\2\u0386\u0387"+ - "\7q\2\2\u0387\u0388\7t\2\2\u0388\u0389\7v\2\2\u0389\u038a\3\2\2\2\u038a"+ - "\u038b\b^\5\2\u038b\u00bd\3\2\2\2\u038c\u038d\7%\2\2\u038d\u038e\7k\2"+ - "\2\u038e\u038f\7p\2\2\u038f\u0390\7e\2\2\u0390\u0391\7n\2\2\u0391\u0392"+ - "\7w\2\2\u0392\u0393\7f\2\2\u0393\u0394\7g\2\2\u0394\u0395\3\2\2\2\u0395"+ - "\u0396\b_\6\2\u0396\u00bf\3\2\2\2\u0397\u0398\7%\2\2\u0398\u0399\7r\2"+ - "\2\u0399\u039a\7t\2\2\u039a\u039b\7c\2\2\u039b\u039c\7i\2\2\u039c\u039d"+ - "\7o\2\2\u039d\u039e\7c\2\2\u039e\u00c1\3\2\2\2\u039f\u03a0\7%\2\2\u03a0"+ - "\u03a1\7f\2\2\u03a1\u03a2\7g\2\2\u03a2\u03a3\7h\2\2\u03a3\u03a4\7k\2\2"+ - "\u03a4\u03a5\7p\2\2\u03a5\u03a6\7g\2\2\u03a6\u00c3\3\2\2\2\u03a7\u03a8"+ - "\7^\2\2\u03a8\u03ad\7\f\2\2\u03a9\u03aa\7^\2\2\u03aa\u03ab\7\17\2\2\u03ab"+ - "\u03ad\7\f\2\2\u03ac\u03a7\3\2\2\2\u03ac\u03a9\3\2\2\2\u03ad\u00c5\3\2"+ - "\2\2\u03ae\u03af\7%\2\2\u03af\u03b0\7w\2\2\u03b0\u03b1\7p\2\2\u03b1\u03b2"+ - "\7f\2\2\u03b2\u03b3\7g\2\2\u03b3\u03b4\7h\2\2\u03b4\u00c7\3\2\2\2\u03b5"+ - "\u03b6\7%\2\2\u03b6\u03b7\7k\2\2\u03b7\u03b8\7h\2\2\u03b8\u03b9\7f\2\2"+ - "\u03b9\u03ba\7g\2\2\u03ba\u03bb\7h\2\2\u03bb\u00c9\3\2\2\2\u03bc\u03bd"+ - "\7%\2\2\u03bd\u03be\7k\2\2\u03be\u03bf\7h\2\2\u03bf\u03c0\7p\2\2\u03c0"+ - "\u03c1\7f\2\2\u03c1\u03c2\7g\2\2\u03c2\u03c3\7h\2\2\u03c3\u00cb\3\2\2"+ - "\2\u03c4\u03c5\7%\2\2\u03c5\u03c6\7k\2\2\u03c6\u03c7\7h\2\2\u03c7\u00cd"+ - "\3\2\2\2\u03c8\u03c9\7%\2\2\u03c9\u03ca\7g\2\2\u03ca\u03cb\7n\2\2\u03cb"+ - "\u03cc\7k\2\2\u03cc\u03cd\7h\2\2\u03cd\u00cf\3\2\2\2\u03ce\u03cf\7%\2"+ - "\2\u03cf\u03d0\7g\2\2\u03d0\u03d1\7n\2\2\u03d1\u03d2\7u\2\2\u03d2\u03d3"+ - "\7g\2\2\u03d3\u00d1\3\2\2\2\u03d4\u03d5\7%\2\2\u03d5\u03d6\7g\2\2\u03d6"+ - "\u03d7\7p\2\2\u03d7\u03d8\7f\2\2\u03d8\u03d9\7k\2\2\u03d9\u03da\7h\2\2"+ - "\u03da\u00d3\3\2\2\2\u03db\u03de\5\u00d6k\2\u03dc\u03de\5\u00deo\2\u03dd"+ - "\u03db\3\2\2\2\u03dd\u03dc\3\2\2\2\u03de\u00d5\3\2\2\2\u03df\u03e3\5\u00d8"+ - "l\2\u03e0\u03e3\5\u00dam\2\u03e1\u03e3\5\u00dcn\2\u03e2\u03df\3\2\2\2"+ - "\u03e2\u03e0\3\2\2\2\u03e2\u03e1\3\2\2\2\u03e3\u00d7\3\2\2\2\u03e4\u03ea"+ - "\7\'\2\2\u03e5\u03e6\7\62\2\2\u03e6\u03ea\7d\2\2\u03e7\u03e8\7\62\2\2"+ - "\u03e8\u03ea\7D\2\2\u03e9\u03e4\3\2\2\2\u03e9\u03e5\3\2\2\2\u03e9\u03e7"+ - "\3\2\2\2\u03ea\u03ee\3\2\2\2\u03eb\u03ed\5\u00e6s\2\u03ec\u03eb\3\2\2"+ - "\2\u03ed\u03f0\3\2\2\2\u03ee\u03ec\3\2\2\2\u03ee\u03ef\3\2\2\2\u03ef\u03f1"+ - "\3\2\2\2\u03f0\u03ee\3\2\2\2\u03f1\u03f3\7\60\2\2\u03f2\u03f4\5\u00e6"+ - "s\2\u03f3\u03f2\3\2\2\2\u03f4\u03f5\3\2\2\2\u03f5\u03f3\3\2\2\2\u03f5"+ - "\u03f6\3\2\2\2\u03f6\u00d9\3\2\2\2\u03f7\u03f9\5\u00e8t\2\u03f8\u03f7"+ - "\3\2\2\2\u03f9\u03fc\3\2\2\2\u03fa\u03f8\3\2\2\2\u03fa\u03fb\3\2\2\2\u03fb"+ - "\u03fd\3\2\2\2\u03fc\u03fa\3\2\2\2\u03fd\u03ff\7\60\2\2\u03fe\u0400\5"+ - "\u00e8t\2\u03ff\u03fe\3\2\2\2\u0400\u0401\3\2\2\2\u0401\u03ff\3\2\2\2"+ - "\u0401\u0402\3\2\2\2\u0402\u00db\3\2\2\2\u0403\u0409\7&\2\2\u0404\u0405"+ - "\7\62\2\2\u0405\u0409\7z\2\2\u0406\u0407\7\62\2\2\u0407\u0409\7Z\2\2\u0408"+ - "\u0403\3\2\2\2\u0408\u0404\3\2\2\2\u0408\u0406\3\2\2\2\u0409\u040d\3\2"+ - "\2\2\u040a\u040c\5\u00eau\2\u040b\u040a\3\2\2\2\u040c\u040f\3\2\2\2\u040d"+ - "\u040b\3\2\2\2\u040d\u040e\3\2\2\2\u040e\u0410\3\2\2\2\u040f\u040d\3\2"+ - "\2\2\u0410\u0412\7\60\2\2\u0411\u0413\5\u00eau\2\u0412\u0411\3\2\2\2\u0413"+ - "\u0414\3\2\2\2\u0414\u0412\3\2\2\2\u0414\u0415\3\2\2\2\u0415\u00dd\3\2"+ - "\2\2\u0416\u041a\5\u00e2q\2\u0417\u041a\5\u00e4r\2\u0418\u041a\5\u00e0"+ - "p\2\u0419\u0416\3\2\2\2\u0419\u0417\3\2\2\2\u0419\u0418\3\2\2\2\u041a"+ - "\u041e\3\2\2\2\u041b\u041c\t\b\2\2\u041c\u041f\t\t\2\2\u041d\u041f\7n"+ - "\2\2\u041e\u041b\3\2\2\2\u041e\u041d\3\2\2\2\u041e\u041f\3\2\2\2\u041f"+ - "\u00df\3\2\2\2\u0420\u0421\7\62\2\2\u0421\u0423\t\n\2\2\u0422\u0424\5"+ - "\u00e6s\2\u0423\u0422\3\2\2\2\u0424\u0425\3\2\2\2\u0425\u0423\3\2\2\2"+ - "\u0425\u0426\3\2\2\2\u0426\u042e\3\2\2\2\u0427\u0429\7\'\2\2\u0428\u042a"+ - "\5\u00e6s\2\u0429\u0428\3\2\2\2\u042a\u042b\3\2\2\2\u042b\u0429\3\2\2"+ - "\2\u042b\u042c\3\2\2\2\u042c\u042e\3\2\2\2\u042d\u0420\3\2\2\2\u042d\u0427"+ - "\3\2\2\2\u042e\u00e1\3\2\2\2\u042f\u0431\5\u00e8t\2\u0430\u042f\3\2\2"+ - "\2\u0431\u0432\3\2\2\2\u0432\u0430\3\2\2\2\u0432\u0433\3\2\2\2\u0433\u00e3"+ - "\3\2\2\2\u0434\u043a\7&\2\2\u0435\u0436\7\62\2\2\u0436\u043a\7z\2\2\u0437"+ - "\u0438\7\62\2\2\u0438\u043a\7Z\2\2\u0439\u0434\3\2\2\2\u0439\u0435\3\2"+ - "\2\2\u0439\u0437\3\2\2\2\u043a\u043c\3\2\2\2\u043b\u043d\5\u00eau\2\u043c"+ - "\u043b\3\2\2\2\u043d\u043e\3\2\2\2\u043e\u043c\3\2\2\2\u043e\u043f\3\2"+ - "\2\2\u043f\u00e5\3\2\2\2\u0440\u0441\t\13\2\2\u0441\u00e7\3\2\2\2\u0442"+ - "\u0443\t\f\2\2\u0443\u00e9\3\2\2\2\u0444\u0445\t\r\2\2\u0445\u00eb\3\2"+ - "\2\2\u0446\u044a\5\u00eew\2\u0447\u0449\5\u00f0x\2\u0448\u0447\3\2\2\2"+ - "\u0449\u044c\3\2\2\2\u044a\u0448\3\2\2\2\u044a\u044b\3\2\2\2\u044b\u044d"+ - "\3\2\2\2\u044c\u044a\3\2\2\2\u044d\u044e\bv\7\2\u044e\u00ed\3\2\2\2\u044f"+ - "\u0450\t\16\2\2\u0450\u00ef\3\2\2\2\u0451\u0452\t\17\2\2\u0452\u00f1\3"+ - "\2\2\2\u0453\u0455\t\20\2\2\u0454\u0453\3\2\2\2\u0455\u0456\3\2\2\2\u0456"+ - "\u0454\3\2\2\2\u0456\u0457\3\2\2\2\u0457\u0458\3\2\2\2\u0458\u0459\by"+ - "\b\2\u0459\u00f3\3\2\2\2\u045a\u045b\7\61\2\2\u045b\u045c\7\61\2\2\u045c"+ - "\u0460\3\2\2\2\u045d\u045f\n\21\2\2\u045e\u045d\3\2\2\2\u045f\u0462\3"+ - "\2\2\2\u0460\u045e\3\2\2\2\u0460\u0461\3\2\2\2\u0461\u0463\3\2\2\2\u0462"+ - "\u0460\3\2\2\2\u0463\u0464\bz\t\2\u0464\u00f5\3\2\2\2\u0465\u0466\7\61"+ - "\2\2\u0466\u0467\7,\2\2\u0467\u046b\3\2\2\2\u0468\u046a\13\2\2\2\u0469"+ - "\u0468\3\2\2\2\u046a\u046d\3\2\2\2\u046b\u046c\3\2\2\2\u046b\u0469\3\2"+ - "\2\2\u046c\u046e\3\2\2\2\u046d\u046b\3\2\2\2\u046e\u046f\7,\2\2\u046f"+ - "\u0470\7\61\2\2\u0470\u0471\3\2\2\2\u0471\u0472\b{\t\2\u0472\u00f7\3\2"+ - "\2\2\u0473\u0474\7\60\2\2\u0474\u0475\7d\2\2\u0475\u0476\7{\2\2\u0476"+ - "\u0477\7v\2\2\u0477\u0478\7g\2\2\u0478\u00f9\3\2\2\2\u0479\u047a\7d\2"+ - "\2\u047a\u047b\7t\2\2\u047b\u0558\7m\2\2\u047c\u047d\7q\2\2\u047d\u047e"+ - "\7t\2\2\u047e\u0558\7c\2\2\u047f\u0480\7m\2\2\u0480\u0481\7k\2\2\u0481"+ - "\u0558\7n\2\2\u0482\u0483\7u\2\2\u0483\u0484\7n\2\2\u0484\u0558\7q\2\2"+ - "\u0485\u0486\7p\2\2\u0486\u0487\7q\2\2\u0487\u0558\7r\2\2\u0488\u0489"+ - "\7c\2\2\u0489\u048a\7u\2\2\u048a\u0558\7n\2\2\u048b\u048c\7r\2\2\u048c"+ - "\u048d\7j\2\2\u048d\u0558\7r\2\2\u048e\u048f\7c\2\2\u048f\u0490\7p\2\2"+ - "\u0490\u0558\7e\2\2\u0491\u0492\7d\2\2\u0492\u0493\7r\2\2\u0493\u0558"+ - "\7n\2\2\u0494\u0495\7e\2\2\u0495\u0496\7n\2\2\u0496\u0558\7e\2\2\u0497"+ - "\u0498\7l\2\2\u0498\u0499\7u\2\2\u0499\u0558\7t\2\2\u049a\u049b\7c\2\2"+ - "\u049b\u049c\7p\2\2\u049c\u0558\7f\2\2\u049d\u049e\7t\2\2\u049e\u049f"+ - "\7n\2\2\u049f\u0558\7c\2\2\u04a0\u04a1\7d\2\2\u04a1\u04a2\7k\2\2\u04a2"+ - "\u0558\7v\2\2\u04a3\u04a4\7t\2\2\u04a4\u04a5\7q\2\2\u04a5\u0558\7n\2\2"+ - "\u04a6\u04a7\7r\2\2\u04a7\u04a8\7n\2\2\u04a8\u0558\7c\2\2\u04a9\u04aa"+ - "\7r\2\2\u04aa\u04ab\7n\2\2\u04ab\u0558\7r\2\2\u04ac\u04ad\7d\2\2\u04ad"+ - "\u04ae\7o\2\2\u04ae\u0558\7k\2\2\u04af\u04b0\7u\2\2\u04b0\u04b1\7g\2\2"+ - "\u04b1\u0558\7e\2\2\u04b2\u04b3\7t\2\2\u04b3\u04b4\7v\2\2\u04b4\u0558"+ - "\7k\2\2\u04b5\u04b6\7g\2\2\u04b6\u04b7\7q\2\2\u04b7\u0558\7t\2\2\u04b8"+ - "\u04b9\7u\2\2\u04b9\u04ba\7t\2\2\u04ba\u0558\7g\2\2\u04bb\u04bc\7n\2\2"+ - "\u04bc\u04bd\7u\2\2\u04bd\u0558\7t\2\2\u04be\u04bf\7r\2\2\u04bf\u04c0"+ - "\7j\2\2\u04c0\u0558\7c\2\2\u04c1\u04c2\7c\2\2\u04c2\u04c3\7n\2\2\u04c3"+ - "\u0558\7t\2\2\u04c4\u04c5\7l\2\2\u04c5\u04c6\7o\2\2\u04c6\u0558\7r\2\2"+ - "\u04c7\u04c8\7d\2\2\u04c8\u04c9\7x\2\2\u04c9\u0558\7e\2\2\u04ca\u04cb"+ - "\7e\2\2\u04cb\u04cc\7n\2\2\u04cc\u0558\7k\2\2\u04cd\u04ce\7t\2\2\u04ce"+ - "\u04cf\7v\2\2\u04cf\u0558\7u\2\2\u04d0\u04d1\7c\2\2\u04d1\u04d2\7f\2\2"+ - "\u04d2\u0558\7e\2\2\u04d3\u04d4\7t\2\2\u04d4\u04d5\7t\2\2\u04d5\u0558"+ - "\7c\2\2\u04d6\u04d7\7d\2\2\u04d7\u04d8\7x\2\2\u04d8\u0558\7u\2\2\u04d9"+ - "\u04da\7u\2\2\u04da\u04db\7g\2\2\u04db\u0558\7k\2\2\u04dc\u04dd\7u\2\2"+ - "\u04dd\u04de\7c\2\2\u04de\u0558\7z\2\2\u04df\u04e0\7u\2\2\u04e0\u04e1"+ - "\7v\2\2\u04e1\u0558\7{\2\2\u04e2\u04e3\7u\2\2\u04e3\u04e4\7v\2\2\u04e4"+ - "\u0558\7c\2\2\u04e5\u04e6\7u\2\2\u04e6\u04e7\7v\2\2\u04e7\u0558\7z\2\2"+ - "\u04e8\u04e9\7f\2\2\u04e9\u04ea\7g\2\2\u04ea\u0558\7{\2\2\u04eb\u04ec"+ - "\7v\2\2\u04ec\u04ed\7z\2\2\u04ed\u0558\7c\2\2\u04ee\u04ef\7z\2\2\u04ef"+ - "\u04f0\7c\2\2\u04f0\u0558\7c\2\2\u04f1\u04f2\7d\2\2\u04f2\u04f3\7e\2\2"+ - "\u04f3\u0558\7e\2\2\u04f4\u04f5\7c\2\2\u04f5\u04f6\7j\2\2\u04f6\u0558"+ - "\7z\2\2\u04f7\u04f8\7v\2\2\u04f8\u04f9\7{\2\2\u04f9\u0558\7c\2\2\u04fa"+ - "\u04fb\7v\2\2\u04fb\u04fc\7z\2\2\u04fc\u0558\7u\2\2\u04fd\u04fe\7v\2\2"+ - "\u04fe\u04ff\7c\2\2\u04ff\u0558\7u\2\2\u0500\u0501\7u\2\2\u0501\u0502"+ - "\7j\2\2\u0502\u0558\7{\2\2\u0503\u0504\7u\2\2\u0504\u0505\7j\2\2\u0505"+ - "\u0558\7z\2\2\u0506\u0507\7n\2\2\u0507\u0508\7f\2\2\u0508\u0558\7{\2\2"+ - "\u0509\u050a\7n\2\2\u050a\u050b\7f\2\2\u050b\u0558\7c\2\2\u050c\u050d"+ - "\7n\2\2\u050d\u050e\7f\2\2\u050e\u0558\7z\2\2\u050f\u0510\7n\2\2\u0510"+ - "\u0511\7c\2\2\u0511\u0558\7z\2\2\u0512\u0513\7v\2\2\u0513\u0514\7c\2\2"+ - "\u0514\u0558\7{\2\2\u0515\u0516\7v\2\2\u0516\u0517\7c\2\2\u0517\u0558"+ - "\7z\2\2\u0518\u0519\7d\2\2\u0519\u051a\7e\2\2\u051a\u0558\7u\2\2\u051b"+ - "\u051c\7e\2\2\u051c\u051d\7n\2\2\u051d\u0558\7x\2\2\u051e\u051f\7v\2\2"+ - "\u051f\u0520\7u\2\2\u0520\u0558\7z\2\2\u0521\u0522\7n\2\2\u0522\u0523"+ - "\7c\2\2\u0523\u0558\7u\2\2\u0524\u0525\7e\2\2\u0525\u0526\7r\2\2\u0526"+ - "\u0558\7{\2\2\u0527\u0528\7e\2\2\u0528\u0529\7o\2\2\u0529\u0558\7r\2\2"+ - "\u052a\u052b\7e\2\2\u052b\u052c\7r\2\2\u052c\u0558\7z\2\2\u052d\u052e"+ - "\7f\2\2\u052e\u052f\7e\2\2\u052f\u0558\7r\2\2\u0530\u0531\7f\2\2\u0531"+ - "\u0532\7g\2\2\u0532\u0558\7e\2\2\u0533\u0534\7k\2\2\u0534\u0535\7p\2\2"+ - "\u0535\u0558\7e\2\2\u0536\u0537\7c\2\2\u0537\u0538\7z\2\2\u0538\u0558"+ - "\7u\2\2\u0539\u053a\7d\2\2\u053a\u053b\7p\2\2\u053b\u0558\7g\2\2\u053c"+ - "\u053d\7e\2\2\u053d\u053e\7n\2\2\u053e\u0558\7f\2\2\u053f\u0540\7u\2\2"+ - "\u0540\u0541\7d\2\2\u0541\u0558\7e\2\2\u0542\u0543\7k\2\2\u0543\u0544"+ - "\7u\2\2\u0544\u0558\7e\2\2\u0545\u0546\7k\2\2\u0546\u0547\7p\2\2\u0547"+ - "\u0558\7z\2\2\u0548\u0549\7d\2\2\u0549\u054a\7g\2\2\u054a\u0558\7s\2\2"+ - "\u054b\u054c\7u\2\2\u054c\u054d\7g\2\2\u054d\u0558\7f\2\2\u054e\u054f"+ - "\7f\2\2\u054f\u0550\7g\2\2\u0550\u0558\7z\2\2\u0551\u0552\7k\2\2\u0552"+ - "\u0553\7p\2\2\u0553\u0558\7{\2\2\u0554\u0555\7t\2\2\u0555\u0556\7q\2\2"+ - "\u0556\u0558\7t\2\2\u0557\u0479\3\2\2\2\u0557\u047c\3\2\2\2\u0557\u047f"+ - "\3\2\2\2\u0557\u0482\3\2\2\2\u0557\u0485\3\2\2\2\u0557\u0488\3\2\2\2\u0557"+ - "\u048b\3\2\2\2\u0557\u048e\3\2\2\2\u0557\u0491\3\2\2\2\u0557\u0494\3\2"+ - "\2\2\u0557\u0497\3\2\2\2\u0557\u049a\3\2\2\2\u0557\u049d\3\2\2\2\u0557"+ - "\u04a0\3\2\2\2\u0557\u04a3\3\2\2\2\u0557\u04a6\3\2\2\2\u0557\u04a9\3\2"+ - "\2\2\u0557\u04ac\3\2\2\2\u0557\u04af\3\2\2\2\u0557\u04b2\3\2\2\2\u0557"+ - "\u04b5\3\2\2\2\u0557\u04b8\3\2\2\2\u0557\u04bb\3\2\2\2\u0557\u04be\3\2"+ - "\2\2\u0557\u04c1\3\2\2\2\u0557\u04c4\3\2\2\2\u0557\u04c7\3\2\2\2\u0557"+ - "\u04ca\3\2\2\2\u0557\u04cd\3\2\2\2\u0557\u04d0\3\2\2\2\u0557\u04d3\3\2"+ - "\2\2\u0557\u04d6\3\2\2\2\u0557\u04d9\3\2\2\2\u0557\u04dc\3\2\2\2\u0557"+ - "\u04df\3\2\2\2\u0557\u04e2\3\2\2\2\u0557\u04e5\3\2\2\2\u0557\u04e8\3\2"+ - "\2\2\u0557\u04eb\3\2\2\2\u0557\u04ee\3\2\2\2\u0557\u04f1\3\2\2\2\u0557"+ - "\u04f4\3\2\2\2\u0557\u04f7\3\2\2\2\u0557\u04fa\3\2\2\2\u0557\u04fd\3\2"+ - "\2\2\u0557\u0500\3\2\2\2\u0557\u0503\3\2\2\2\u0557\u0506\3\2\2\2\u0557"+ - "\u0509\3\2\2\2\u0557\u050c\3\2\2\2\u0557\u050f\3\2\2\2\u0557\u0512\3\2"+ - "\2\2\u0557\u0515\3\2\2\2\u0557\u0518\3\2\2\2\u0557\u051b\3\2\2\2\u0557"+ - "\u051e\3\2\2\2\u0557\u0521\3\2\2\2\u0557\u0524\3\2\2\2\u0557\u0527\3\2"+ - "\2\2\u0557\u052a\3\2\2\2\u0557\u052d\3\2\2\2\u0557\u0530\3\2\2\2\u0557"+ - "\u0533\3\2\2\2\u0557\u0536\3\2\2\2\u0557\u0539\3\2\2\2\u0557\u053c\3\2"+ - "\2\2\u0557\u053f\3\2\2\2\u0557\u0542\3\2\2\2\u0557\u0545\3\2\2\2\u0557"+ - "\u0548\3\2\2\2\u0557\u054b\3\2\2\2\u0557\u054e\3\2\2\2\u0557\u0551\3\2"+ - "\2\2\u0557\u0554\3\2\2\2\u0558\u00fb\3\2\2\2\u0559\u055a\7%\2\2\u055a"+ - "\u00fd\3\2\2\2\u055b\u055c\7<\2\2\u055c\u00ff\3\2\2\2\u055d\u055e\7.\2"+ - "\2\u055e\u0101\3\2\2\2\u055f\u0560\7*\2\2\u0560\u0103\3\2\2\2\u0561\u0562"+ - "\7+\2\2\u0562\u0105\3\2\2\2\u0563\u0564\7]\2\2\u0564\u0107\3\2\2\2\u0565"+ - "\u0566\7_\2\2\u0566\u0109\3\2\2\2\u0567\u0568\7\60\2\2\u0568\u010b\3\2"+ - "\2\2\u0569\u056a\7>\2\2\u056a\u056b\7>\2\2\u056b\u010d\3\2\2\2\u056c\u056d"+ - "\7@\2\2\u056d\u056e\7@\2\2\u056e\u010f\3\2\2\2\u056f\u0570\7-\2\2\u0570"+ - "\u0111\3\2\2\2\u0571\u0572\7/\2\2\u0572\u0113\3\2\2\2\u0573\u0574\7>\2"+ - "\2\u0574\u0115\3\2\2\2\u0575\u0576\7@\2\2\u0576\u0117\3\2\2\2\u0577\u0578"+ - "\7,\2\2\u0578\u0119\3\2\2\2\u0579\u057a\7\61\2\2\u057a\u011b\3\2\2\2\u057b"+ - "\u057c\7}\2\2\u057c\u057d\b\u008e\n\2\u057d\u011d\3\2\2\2\u057e\u057f"+ - "\7\177\2\2\u057f\u0580\b\u008f\13\2\u0580\u011f\3\2\2\2\u0581\u0584\5"+ - "\u0122\u0091\2\u0582\u0584\5\u012a\u0095\2\u0583\u0581\3\2\2\2\u0583\u0582"+ - "\3\2\2\2\u0584\u0121\3\2\2\2\u0585\u0589\5\u0124\u0092\2\u0586\u0589\5"+ - "\u0126\u0093\2\u0587\u0589\5\u0128\u0094\2\u0588\u0585\3\2\2\2\u0588\u0586"+ - "\3\2\2\2\u0588\u0587\3\2\2\2\u0589\u0123\3\2\2\2\u058a\u058e\7\'\2\2\u058b"+ - "\u058d\5\u0132\u0099\2\u058c\u058b\3\2\2\2\u058d\u0590\3\2\2\2\u058e\u058c"+ - "\3\2\2\2\u058e\u058f\3\2\2\2\u058f\u0591\3\2\2\2\u0590\u058e\3\2\2\2\u0591"+ - "\u0593\7\60\2\2\u0592\u0594\5\u0132\u0099\2\u0593\u0592\3\2\2\2\u0594"+ - "\u0595\3\2\2\2\u0595\u0593\3\2\2\2\u0595\u0596\3\2\2\2\u0596\u0125\3\2"+ - "\2\2\u0597\u0599\5\u0134\u009a\2\u0598\u0597\3\2\2\2\u0599\u059c\3\2\2"+ - "\2\u059a\u0598\3\2\2\2\u059a\u059b\3\2\2\2\u059b\u059d\3\2\2\2\u059c\u059a"+ - "\3\2\2\2\u059d\u059f\7\60\2\2\u059e\u05a0\5\u0134\u009a\2\u059f\u059e"+ - "\3\2\2\2\u05a0\u05a1\3\2\2\2\u05a1\u059f\3\2\2\2\u05a1\u05a2\3\2\2\2\u05a2"+ - "\u0127\3\2\2\2\u05a3\u05a7\7&\2\2\u05a4\u05a6\5\u0136\u009b\2\u05a5\u05a4"+ - "\3\2\2\2\u05a6\u05a9\3\2\2\2\u05a7\u05a5\3\2\2\2\u05a7\u05a8\3\2\2\2\u05a8"+ - "\u05aa\3\2\2\2\u05a9\u05a7\3\2\2\2\u05aa\u05ac\7\60\2\2\u05ab\u05ad\5"+ - "\u0136\u009b\2\u05ac\u05ab\3\2\2\2\u05ad\u05ae\3\2\2\2\u05ae\u05ac\3\2"+ - "\2\2\u05ae\u05af\3\2\2\2\u05af\u0129\3\2\2\2\u05b0\u05b4\5\u012e\u0097"+ - "\2\u05b1\u05b4\5\u0130\u0098\2\u05b2\u05b4\5\u012c\u0096\2\u05b3\u05b0"+ - "\3\2\2\2\u05b3\u05b1\3\2\2\2\u05b3\u05b2\3\2\2\2\u05b4\u012b\3\2\2\2\u05b5"+ - "\u05b7\7\'\2\2\u05b6\u05b8\5\u0132\u0099\2\u05b7\u05b6\3\2\2\2\u05b8\u05b9"+ - "\3\2\2\2\u05b9\u05b7\3\2\2\2\u05b9\u05ba\3\2\2\2\u05ba\u012d\3\2\2\2\u05bb"+ - "\u05bd\5\u0134\u009a\2\u05bc\u05bb\3\2\2\2\u05bd\u05be\3\2\2\2\u05be\u05bc"+ - "\3\2\2\2\u05be\u05bf\3\2\2\2\u05bf\u012f\3\2\2\2\u05c0\u05c2\7&\2\2\u05c1"+ - "\u05c3\5\u0136\u009b\2\u05c2\u05c1\3\2\2\2\u05c3\u05c4\3\2\2\2\u05c4\u05c2"+ - "\3\2\2\2\u05c4\u05c5\3\2\2\2\u05c5\u0131\3\2\2\2\u05c6\u05c7\t\13\2\2"+ - "\u05c7\u0133\3\2\2\2\u05c8\u05c9\t\f\2\2\u05c9\u0135\3\2\2\2\u05ca\u05cb"+ - "\t\r\2\2\u05cb\u0137\3\2\2\2\u05cc\u05d0\7)\2\2\u05cd\u05ce\7^\2\2\u05ce"+ - "\u05d1\t\6\2\2\u05cf\u05d1\n\7\2\2\u05d0\u05cd\3\2\2\2\u05d0\u05cf\3\2"+ - "\2\2\u05d1\u05d2\3\2\2\2\u05d2\u05d3\7)\2\2\u05d3\u0139\3\2\2\2\u05d4"+ - "\u05d6\5\u013c\u009e\2\u05d5\u05d7\t\22\2\2\u05d6\u05d5\3\2\2\2\u05d7"+ - "\u05d8\3\2\2\2\u05d8\u05d6\3\2\2\2\u05d8\u05d9\3\2\2\2\u05d9\u013b\3\2"+ - "\2\2\u05da\u05de\7#\2\2\u05db\u05dd\5\u0142\u00a1\2\u05dc\u05db\3\2\2"+ - "\2\u05dd\u05e0\3\2\2\2\u05de\u05dc\3\2\2\2\u05de\u05df\3\2\2\2\u05df\u013d"+ - "\3\2\2\2\u05e0\u05de\3\2\2\2\u05e1\u05e5\5\u0140\u00a0\2\u05e2\u05e4\5"+ - "\u0142\u00a1\2\u05e3\u05e2\3\2\2\2\u05e4\u05e7\3\2\2\2\u05e5\u05e3\3\2"+ - "\2\2\u05e5\u05e6\3\2\2\2\u05e6\u013f\3\2\2\2\u05e7\u05e5\3\2\2\2\u05e8"+ - "\u05e9\t\16\2\2\u05e9\u0141\3\2\2\2\u05ea\u05eb\t\17\2\2\u05eb\u0143\3"+ - "\2\2\2\u05ec\u05ee\t\20\2\2\u05ed\u05ec\3\2\2\2\u05ee\u05ef\3\2\2\2\u05ef"+ - "\u05ed\3\2\2\2\u05ef\u05f0\3\2\2\2\u05f0\u05f1\3\2\2\2\u05f1\u05f2\b\u00a2"+ - "\b\2\u05f2\u0145\3\2\2\2\u05f3\u05f4\7\61\2\2\u05f4\u05f5\7\61\2\2\u05f5"+ - "\u05f9\3\2\2\2\u05f6\u05f8\n\21\2\2\u05f7\u05f6\3\2\2\2\u05f8\u05fb\3"+ - "\2\2\2\u05f9\u05f7\3\2\2\2\u05f9\u05fa\3\2\2\2\u05fa\u05fc\3\2\2\2\u05fb"+ - "\u05f9\3\2\2\2\u05fc\u05fd\b\u00a3\t\2\u05fd\u0147\3\2\2\2\u05fe\u05ff"+ - "\7\61\2\2\u05ff\u0600\7,\2\2\u0600\u0604\3\2\2\2\u0601\u0603\13\2\2\2"+ - "\u0602\u0601\3\2\2\2\u0603\u0606\3\2\2\2\u0604\u0605\3\2\2\2\u0604\u0602"+ - "\3\2\2\2\u0605\u0607\3\2\2\2\u0606\u0604\3\2\2\2\u0607\u0608\7,\2\2\u0608"+ - "\u0609\7\61\2\2\u0609\u060a\3\2\2\2\u060a\u060b\b\u00a4\t\2\u060b\u0149"+ - "\3\2\2\2<\2\3\u01b3\u0273\u0322\u0349\u0354\u035c\u0366\u0368\u036d\u0371"+ - "\u0373\u0376\u037e\u03ac\u03dd\u03e2\u03e9\u03ee\u03f5\u03fa\u0401\u0408"+ - "\u040d\u0414\u0419\u041e\u0425\u042b\u042d\u0432\u0439\u043e\u044a\u0456"+ - "\u0460\u046b\u0557\u0583\u0588\u058e\u0595\u059a\u05a1\u05a7\u05ae\u05b3"+ - "\u05b9\u05be\u05c4\u05d0\u05d8\u05de\u05e5\u05ef\u05f9\u0604\f\3\2\2\3"+ - "I\3\3\\\4\3^\5\3_\6\3v\7\2\3\2\2\4\2\3\u008e\b\3\u008f\t"; + "\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u034c\nY\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\5Z\u0357"+ + "\nZ\3[\3[\3[\3[\7[\u035d\n[\f[\16[\u0360\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`\5`\u038f\n`\3a\3a"+ + "\3a\3a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3b\3c\3c\3c\3c\3c\3c\3c\3c\3d\3d\3d"+ + "\3d\3e\3e\3e\3e\3e\3e\3f\3f\3f\3f\3f\3f\3g\3g\3g\3g\3g\3g\3g\3h\3h\5h"+ + "\u03c0\nh\3i\3i\3i\5i\u03c5\ni\3j\3j\3j\3j\3j\5j\u03cc\nj\3j\7j\u03cf"+ + "\nj\fj\16j\u03d2\13j\3j\3j\6j\u03d6\nj\rj\16j\u03d7\3k\7k\u03db\nk\fk"+ + "\16k\u03de\13k\3k\3k\6k\u03e2\nk\rk\16k\u03e3\3l\3l\3l\3l\3l\5l\u03eb"+ + "\nl\3l\7l\u03ee\nl\fl\16l\u03f1\13l\3l\3l\6l\u03f5\nl\rl\16l\u03f6\3m"+ + "\3m\3m\5m\u03fc\nm\3m\3m\3m\5m\u0401\nm\3n\3n\3n\6n\u0406\nn\rn\16n\u0407"+ + "\3n\3n\6n\u040c\nn\rn\16n\u040d\5n\u0410\nn\3o\6o\u0413\no\ro\16o\u0414"+ + "\3p\3p\3p\3p\3p\5p\u041c\np\3p\6p\u041f\np\rp\16p\u0420\3q\3q\3r\3r\3"+ + "s\3s\3t\3t\7t\u042b\nt\ft\16t\u042e\13t\3t\3t\3u\3u\3v\3v\3w\3w\6w\u0438"+ + "\nw\rw\16w\u0439\3w\3w\3w\3x\3x\3x\3x\7x\u0443\nx\fx\16x\u0446\13x\3x"+ + "\3x\5x\u044a\nx\3x\3x\5x\u044e\nx\5x\u0450\nx\3x\5x\u0453\nx\3x\3x\3y"+ + "\3y\3y\3y\5y\u045b\ny\3y\3y\3z\6z\u0460\nz\rz\16z\u0461\3z\3z\3{\3{\3"+ + "{\3{\7{\u046a\n{\f{\16{\u046d\13{\3{\3{\3|\3|\3|\3|\7|\u0475\n|\f|\16"+ + "|\u0478\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~\u0563\n~\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\u0087\3\u0087\3\u0087\3\u0088\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\u008f\3\u008f\3\u008f\3\u0090\3\u0090\3\u0090\3\u0091"+ + "\3\u0091\5\u0091\u058f\n\u0091\3\u0092\3\u0092\3\u0092\5\u0092\u0594\n"+ + "\u0092\3\u0093\3\u0093\7\u0093\u0598\n\u0093\f\u0093\16\u0093\u059b\13"+ + "\u0093\3\u0093\3\u0093\6\u0093\u059f\n\u0093\r\u0093\16\u0093\u05a0\3"+ + "\u0094\7\u0094\u05a4\n\u0094\f\u0094\16\u0094\u05a7\13\u0094\3\u0094\3"+ + "\u0094\6\u0094\u05ab\n\u0094\r\u0094\16\u0094\u05ac\3\u0095\3\u0095\7"+ + "\u0095\u05b1\n\u0095\f\u0095\16\u0095\u05b4\13\u0095\3\u0095\3\u0095\6"+ + "\u0095\u05b8\n\u0095\r\u0095\16\u0095\u05b9\3\u0096\3\u0096\3\u0096\5"+ + "\u0096\u05bf\n\u0096\3\u0097\3\u0097\6\u0097\u05c3\n\u0097\r\u0097\16"+ + "\u0097\u05c4\3\u0098\6\u0098\u05c8\n\u0098\r\u0098\16\u0098\u05c9\3\u0099"+ + "\3\u0099\6\u0099\u05ce\n\u0099\r\u0099\16\u0099\u05cf\3\u009a\3\u009a"+ + "\3\u009b\3\u009b\3\u009c\3\u009c\3\u009d\3\u009d\3\u009d\3\u009d\5\u009d"+ + "\u05dc\n\u009d\3\u009d\3\u009d\3\u009e\3\u009e\6\u009e\u05e2\n\u009e\r"+ + "\u009e\16\u009e\u05e3\3\u009f\3\u009f\7\u009f\u05e8\n\u009f\f\u009f\16"+ + "\u009f\u05eb\13\u009f\3\u00a0\3\u00a0\7\u00a0\u05ef\n\u00a0\f\u00a0\16"+ + "\u00a0\u05f2\13\u00a0\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a3\6\u00a3"+ + "\u05f9\n\u00a3\r\u00a3\16\u00a3\u05fa\3\u00a3\3\u00a3\3\u00a4\3\u00a4"+ + "\3\u00a4\3\u00a4\7\u00a4\u0603\n\u00a4\f\u00a4\16\u00a4\u0606\13\u00a4"+ + "\3\u00a4\3\u00a4\3\u00a5\3\u00a5\3\u00a5\3\u00a5\7\u00a5\u060e\n\u00a5"+ + "\f\u00a5\16\u00a5\u0611\13\u00a5\3\u00a5\3\u00a5\3\u00a5\3\u00a5\3\u00a5"+ + "\5\u035e\u0476\u060f\2\u00a6\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22\13\24\f"+ + "\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31\60\32\62"+ + "\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60^\61`\62"+ + "b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D\u0086E\u0088"+ + "F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098N\u009aO\u009c"+ + "P\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00acX\u00aeY\u00b0"+ + "Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0b\u00c2c\u00c4"+ + "d\u00c6e\u00c8f\u00cag\u00cch\u00cei\u00d0j\u00d2k\u00d4l\u00d6m\u00d8"+ + "n\u00dao\u00dcp\u00deq\u00e0r\u00e2\2\u00e4\2\u00e6\2\u00e8s\u00ea\2\u00ec"+ + "\2\u00eet\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\u00faz\u00fc{\u00fe|\u0100"+ + "}\u0102~\u0104\177\u0106\u0080\u0108\u0081\u010a\u0082\u010c\u0083\u010e"+ + "\u0084\u0110\u0085\u0112\u0086\u0114\u0087\u0116\u0088\u0118\u0089\u011a"+ + "\u008a\u011c\u008b\u011e\u008c\u0120\u008d\u0122\u008e\u0124\u008f\u0126"+ + "\u0090\u0128\u0091\u012a\u0092\u012c\u0093\u012e\u0094\u0130\u0095\u0132"+ + "\u0096\u0134\2\u0136\2\u0138\2\u013a\u0097\u013c\u0098\u013e\u0099\u0140"+ + "\u009a\u0142\2\u0144\2\u0146\u009b\u0148\u009c\u014a\u009d\4\2\3\24\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|\7\2\60;C\\^^aac|\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))h"+ + "hpptt\3\2))\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\2\u06a3"+ + "\2\4\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2\2\2\n\3\2\2\2\2\f\3\2\2\2\2\16\3\2"+ + "\2\2\2\20\3\2\2\2\2\22\3\2\2\2\2\24\3\2\2\2\2\26\3\2\2\2\2\30\3\2\2\2"+ + "\2\32\3\2\2\2\2\34\3\2\2\2\2\36\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\60\3\2\2"+ + "\2\2\62\3\2\2\2\2\64\3\2\2\2\2\66\3\2\2\2\28\3\2\2\2\2:\3\2\2\2\2<\3\2"+ + "\2\2\2>\3\2\2\2\2@\3\2\2\2\2B\3\2\2\2\2D\3\2\2\2\2F\3\2\2\2\2H\3\2\2\2"+ + "\2J\3\2\2\2\2L\3\2\2\2\2N\3\2\2\2\2P\3\2\2\2\2R\3\2\2\2\2T\3\2\2\2\2V"+ + "\3\2\2\2\2X\3\2\2\2\2Z\3\2\2\2\2\\\3\2\2\2\2^\3\2\2\2\2`\3\2\2\2\2b\3"+ + "\2\2\2\2d\3\2\2\2\2f\3\2\2\2\2h\3\2\2\2\2j\3\2\2\2\2l\3\2\2\2\2n\3\2\2"+ + "\2\2p\3\2\2\2\2r\3\2\2\2\2t\3\2\2\2\2v\3\2\2\2\2x\3\2\2\2\2z\3\2\2\2\2"+ + "|\3\2\2\2\2~\3\2\2\2\2\u0080\3\2\2\2\2\u0082\3\2\2\2\2\u0084\3\2\2\2\2"+ + "\u0086\3\2\2\2\2\u0088\3\2\2\2\2\u008a\3\2\2\2\2\u008c\3\2\2\2\2\u008e"+ + "\3\2\2\2\2\u0090\3\2\2\2\2\u0092\3\2\2\2\2\u0094\3\2\2\2\2\u0096\3\2\2"+ + "\2\2\u0098\3\2\2\2\2\u009a\3\2\2\2\2\u009c\3\2\2\2\2\u009e\3\2\2\2\2\u00a0"+ + "\3\2\2\2\2\u00a2\3\2\2\2\2\u00a4\3\2\2\2\2\u00a6\3\2\2\2\2\u00a8\3\2\2"+ + "\2\2\u00aa\3\2\2\2\2\u00ac\3\2\2\2\2\u00ae\3\2\2\2\2\u00b0\3\2\2\2\2\u00b2"+ + "\3\2\2\2\2\u00b4\3\2\2\2\2\u00b6\3\2\2\2\2\u00b8\3\2\2\2\2\u00ba\3\2\2"+ + "\2\2\u00bc\3\2\2\2\2\u00be\3\2\2\2\2\u00c0\3\2\2\2\2\u00c2\3\2\2\2\2\u00c4"+ + "\3\2\2\2\2\u00c6\3\2\2\2\2\u00c8\3\2\2\2\2\u00ca\3\2\2\2\2\u00cc\3\2\2"+ + "\2\2\u00ce\3\2\2\2\2\u00d0\3\2\2\2\2\u00d2\3\2\2\2\2\u00d4\3\2\2\2\2\u00d6"+ + "\3\2\2\2\2\u00d8\3\2\2\2\2\u00da\3\2\2\2\2\u00dc\3\2\2\2\2\u00de\3\2\2"+ + "\2\2\u00e0\3\2\2\2\2\u00e8\3\2\2\2\2\u00ee\3\2\2\2\2\u00f0\3\2\2\2\2\u00f2"+ + "\3\2\2\2\2\u00f4\3\2\2\2\2\u00f6\3\2\2\2\2\u00f8\3\2\2\2\3\u00fa\3\2\2"+ + "\2\3\u00fc\3\2\2\2\3\u00fe\3\2\2\2\3\u0100\3\2\2\2\3\u0102\3\2\2\2\3\u0104"+ + "\3\2\2\2\3\u0106\3\2\2\2\3\u0108\3\2\2\2\3\u010a\3\2\2\2\3\u010c\3\2\2"+ + "\2\3\u010e\3\2\2\2\3\u0110\3\2\2\2\3\u0112\3\2\2\2\3\u0114\3\2\2\2\3\u0116"+ + "\3\2\2\2\3\u0118\3\2\2\2\3\u011a\3\2\2\2\3\u011c\3\2\2\2\3\u011e\3\2\2"+ + "\2\3\u0120\3\2\2\2\3\u0122\3\2\2\2\3\u0124\3\2\2\2\3\u0126\3\2\2\2\3\u0128"+ + "\3\2\2\2\3\u012a\3\2\2\2\3\u012c\3\2\2\2\3\u012e\3\2\2\2\3\u0130\3\2\2"+ + "\2\3\u0132\3\2\2\2\3\u013a\3\2\2\2\3\u013c\3\2\2\2\3\u013e\3\2\2\2\3\u0140"+ + "\3\2\2\2\3\u0146\3\2\2\2\3\u0148\3\2\2\2\3\u014a\3\2\2\2\4\u014c\3\2\2"+ + "\2\6\u014f\3\2\2\2\b\u0151\3\2\2\2\n\u0153\3\2\2\2\f\u0155\3\2\2\2\16"+ + "\u0157\3\2\2\2\20\u0159\3\2\2\2\22\u015b\3\2\2\2\24\u015d\3\2\2\2\26\u015f"+ + "\3\2\2\2\30\u0162\3\2\2\2\32\u0164\3\2\2\2\34\u0166\3\2\2\2\36\u0169\3"+ + "\2\2\2 \u016b\3\2\2\2\"\u016d\3\2\2\2$\u016f\3\2\2\2&\u0171\3\2\2\2(\u0173"+ + "\3\2\2\2*\u0176\3\2\2\2,\u0179\3\2\2\2.\u017b\3\2\2\2\60\u017d\3\2\2\2"+ + "\62\u017f\3\2\2\2\64\u0181\3\2\2\2\66\u0184\3\2\2\28\u0187\3\2\2\2:\u018a"+ + "\3\2\2\2<\u018d\3\2\2\2>\u018f\3\2\2\2@\u0192\3\2\2\2B\u0195\3\2\2\2D"+ + "\u0197\3\2\2\2F\u019a\3\2\2\2H\u019d\3\2\2\2J\u01b5\3\2\2\2L\u01b7\3\2"+ + "\2\2N\u01bf\3\2\2\2P\u01c7\3\2\2\2R\u01ca\3\2\2\2T\u01d1\3\2\2\2V\u01d6"+ + "\3\2\2\2X\u01da\3\2\2\2Z\u01e3\3\2\2\2\\\u01ec\3\2\2\2^\u01f5\3\2\2\2"+ + "`\u01fb\3\2\2\2b\u0202\3\2\2\2d\u0209\3\2\2\2f\u020f\3\2\2\2h\u0216\3"+ + "\2\2\2j\u021f\3\2\2\2l\u0226\3\2\2\2n\u0230\3\2\2\2p\u0239\3\2\2\2r\u0243"+ + "\3\2\2\2t\u0248\3\2\2\2v\u024e\3\2\2\2x\u0254\3\2\2\2z\u0259\3\2\2\2|"+ + "\u0275\3\2\2\2~\u0277\3\2\2\2\u0080\u0281\3\2\2\2\u0082\u0284\3\2\2\2"+ + "\u0084\u0289\3\2\2\2\u0086\u028f\3\2\2\2\u0088\u0292\3\2\2\2\u008a\u0296"+ + "\3\2\2\2\u008c\u029d\3\2\2\2\u008e\u02a4\3\2\2\2\u0090\u02aa\3\2\2\2\u0092"+ + "\u02b3\3\2\2\2\u0094\u02b9\3\2\2\2\u0096\u02c1\3\2\2\2\u0098\u02c6\3\2"+ + "\2\2\u009a\u02cd\3\2\2\2\u009c\u02d2\3\2\2\2\u009e\u02d9\3\2\2\2\u00a0"+ + "\u02e0\3\2\2\2\u00a2\u02e8\3\2\2\2\u00a4\u02f0\3\2\2\2\u00a6\u02f9\3\2"+ + "\2\2\u00a8\u02fe\3\2\2\2\u00aa\u0307\3\2\2\2\u00ac\u030d\3\2\2\2\u00ae"+ + "\u0314\3\2\2\2\u00b0\u0324\3\2\2\2\u00b2\u034b\3\2\2\2\u00b4\u0356\3\2"+ + "\2\2\u00b6\u0358\3\2\2\2\u00b8\u0364\3\2\2\2\u00ba\u036e\3\2\2\2\u00bc"+ + "\u0379\3\2\2\2\u00be\u0381\3\2\2\2\u00c0\u038e\3\2\2\2\u00c2\u0390\3\2"+ + "\2\2\u00c4\u0397\3\2\2\2\u00c6\u039e\3\2\2\2\u00c8\u03a6\3\2\2\2\u00ca"+ + "\u03aa\3\2\2\2\u00cc\u03b0\3\2\2\2\u00ce\u03b6\3\2\2\2\u00d0\u03bf\3\2"+ + "\2\2\u00d2\u03c4\3\2\2\2\u00d4\u03cb\3\2\2\2\u00d6\u03dc\3\2\2\2\u00d8"+ + "\u03ea\3\2\2\2\u00da\u03fb\3\2\2\2\u00dc\u040f\3\2\2\2\u00de\u0412\3\2"+ + "\2\2\u00e0\u041b\3\2\2\2\u00e2\u0422\3\2\2\2\u00e4\u0424\3\2\2\2\u00e6"+ + "\u0426\3\2\2\2\u00e8\u0428\3\2\2\2\u00ea\u0431\3\2\2\2\u00ec\u0433\3\2"+ + "\2\2\u00ee\u0435\3\2\2\2\u00f0\u043e\3\2\2\2\u00f2\u0456\3\2\2\2\u00f4"+ + "\u045f\3\2\2\2\u00f6\u0465\3\2\2\2\u00f8\u0470\3\2\2\2\u00fa\u047e\3\2"+ + "\2\2\u00fc\u0562\3\2\2\2\u00fe\u0564\3\2\2\2\u0100\u0566\3\2\2\2\u0102"+ + "\u0568\3\2\2\2\u0104\u056a\3\2\2\2\u0106\u056c\3\2\2\2\u0108\u056e\3\2"+ + "\2\2\u010a\u0570\3\2\2\2\u010c\u0572\3\2\2\2\u010e\u0574\3\2\2\2\u0110"+ + "\u0577\3\2\2\2\u0112\u057a\3\2\2\2\u0114\u057c\3\2\2\2\u0116\u057e\3\2"+ + "\2\2\u0118\u0580\3\2\2\2\u011a\u0582\3\2\2\2\u011c\u0584\3\2\2\2\u011e"+ + "\u0586\3\2\2\2\u0120\u0589\3\2\2\2\u0122\u058e\3\2\2\2\u0124\u0593\3\2"+ + "\2\2\u0126\u0595\3\2\2\2\u0128\u05a5\3\2\2\2\u012a\u05ae\3\2\2\2\u012c"+ + "\u05be\3\2\2\2\u012e\u05c0\3\2\2\2\u0130\u05c7\3\2\2\2\u0132\u05cb\3\2"+ + "\2\2\u0134\u05d1\3\2\2\2\u0136\u05d3\3\2\2\2\u0138\u05d5\3\2\2\2\u013a"+ + "\u05d7\3\2\2\2\u013c\u05df\3\2\2\2\u013e\u05e5\3\2\2\2\u0140\u05ec\3\2"+ + "\2\2\u0142\u05f3\3\2\2\2\u0144\u05f5\3\2\2\2\u0146\u05f8\3\2\2\2\u0148"+ + "\u05fe\3\2\2\2\u014a\u0609\3\2\2\2\u014c\u014d\7}\2\2\u014d\u014e\b\2"+ + "\2\2\u014e\5\3\2\2\2\u014f\u0150\7\177\2\2\u0150\7\3\2\2\2\u0151\u0152"+ + "\7]\2\2\u0152\t\3\2\2\2\u0153\u0154\7_\2\2\u0154\13\3\2\2\2\u0155\u0156"+ + "\7*\2\2\u0156\r\3\2\2\2\u0157\u0158\7+\2\2\u0158\17\3\2\2\2\u0159\u015a"+ + "\7=\2\2\u015a\21\3\2\2\2\u015b\u015c\7<\2\2\u015c\23\3\2\2\2\u015d\u015e"+ + "\7.\2\2\u015e\25\3\2\2\2\u015f\u0160\7\60\2\2\u0160\u0161\7\60\2\2\u0161"+ + "\27\3\2\2\2\u0162\u0163\7A\2\2\u0163\31\3\2\2\2\u0164\u0165\7\60\2\2\u0165"+ + "\33\3\2\2\2\u0166\u0167\7/\2\2\u0167\u0168\7@\2\2\u0168\35\3\2\2\2\u0169"+ + "\u016a\7-\2\2\u016a\37\3\2\2\2\u016b\u016c\7/\2\2\u016c!\3\2\2\2\u016d"+ + "\u016e\7,\2\2\u016e#\3\2\2\2\u016f\u0170\7\61\2\2\u0170%\3\2\2\2\u0171"+ + "\u0172\7\'\2\2\u0172\'\3\2\2\2\u0173\u0174\7-\2\2\u0174\u0175\7-\2\2\u0175"+ + ")\3\2\2\2\u0176\u0177\7/\2\2\u0177\u0178\7/\2\2\u0178+\3\2\2\2\u0179\u017a"+ + "\7(\2\2\u017a-\3\2\2\2\u017b\u017c\7\u0080\2\2\u017c/\3\2\2\2\u017d\u017e"+ + "\7`\2\2\u017e\61\3\2\2\2\u017f\u0180\7~\2\2\u0180\63\3\2\2\2\u0181\u0182"+ + "\7>\2\2\u0182\u0183\7>\2\2\u0183\65\3\2\2\2\u0184\u0185\7@\2\2\u0185\u0186"+ + "\7@\2\2\u0186\67\3\2\2\2\u0187\u0188\7?\2\2\u0188\u0189\7?\2\2\u01899"+ + "\3\2\2\2\u018a\u018b\7#\2\2\u018b\u018c\7?\2\2\u018c;\3\2\2\2\u018d\u018e"+ + "\7>\2\2\u018e=\3\2\2\2\u018f\u0190\7>\2\2\u0190\u0191\7?\2\2\u0191?\3"+ + "\2\2\2\u0192\u0193\7@\2\2\u0193\u0194\7?\2\2\u0194A\3\2\2\2\u0195\u0196"+ + "\7@\2\2\u0196C\3\2\2\2\u0197\u0198\7(\2\2\u0198\u0199\7(\2\2\u0199E\3"+ + "\2\2\2\u019a\u019b\7~\2\2\u019b\u019c\7~\2\2\u019cG\3\2\2\2\u019d\u019e"+ + "\7?\2\2\u019eI\3\2\2\2\u019f\u01a0\7-\2\2\u01a0\u01b6\7?\2\2\u01a1\u01a2"+ + "\7/\2\2\u01a2\u01b6\7?\2\2\u01a3\u01a4\7,\2\2\u01a4\u01b6\7?\2\2\u01a5"+ + "\u01a6\7\61\2\2\u01a6\u01b6\7?\2\2\u01a7\u01a8\7\'\2\2\u01a8\u01b6\7?"+ + "\2\2\u01a9\u01aa\7>\2\2\u01aa\u01ab\7>\2\2\u01ab\u01b6\7?\2\2\u01ac\u01ad"+ + "\7@\2\2\u01ad\u01ae\7@\2\2\u01ae\u01b6\7?\2\2\u01af\u01b0\7(\2\2\u01b0"+ + "\u01b6\7?\2\2\u01b1\u01b2\7~\2\2\u01b2\u01b6\7?\2\2\u01b3\u01b4\7`\2\2"+ + "\u01b4\u01b6\7?\2\2\u01b5\u019f\3\2\2\2\u01b5\u01a1\3\2\2\2\u01b5\u01a3"+ + "\3\2\2\2\u01b5\u01a5\3\2\2\2\u01b5\u01a7\3\2\2\2\u01b5\u01a9\3\2\2\2\u01b5"+ + "\u01ac\3\2\2\2\u01b5\u01af\3\2\2\2\u01b5\u01b1\3\2\2\2\u01b5\u01b3\3\2"+ + "\2\2\u01b6K\3\2\2\2\u01b7\u01b8\7v\2\2\u01b8\u01b9\7{\2\2\u01b9\u01ba"+ + "\7r\2\2\u01ba\u01bb\7g\2\2\u01bb\u01bc\7f\2\2\u01bc\u01bd\7g\2\2\u01bd"+ + "\u01be\7h\2\2\u01beM\3\2\2\2\u01bf\u01c0\7t\2\2\u01c0\u01c1\7g\2\2\u01c1"+ + "\u01c2\7u\2\2\u01c2\u01c3\7g\2\2\u01c3\u01c4\7t\2\2\u01c4\u01c5\7x\2\2"+ + "\u01c5\u01c6\7g\2\2\u01c6O\3\2\2\2\u01c7\u01c8\7r\2\2\u01c8\u01c9\7e\2"+ + "\2\u01c9Q\3\2\2\2\u01ca\u01cb\7v\2\2\u01cb\u01cc\7c\2\2\u01cc\u01cd\7"+ + "t\2\2\u01cd\u01ce\7i\2\2\u01ce\u01cf\7g\2\2\u01cf\u01d0\7v\2\2\u01d0S"+ + "\3\2\2\2\u01d1\u01d2\7n\2\2\u01d2\u01d3\7k\2\2\u01d3\u01d4\7p\2\2\u01d4"+ + "\u01d5\7m\2\2\u01d5U\3\2\2\2\u01d6\u01d7\7e\2\2\u01d7\u01d8\7r\2\2\u01d8"+ + "\u01d9\7w\2\2\u01d9W\3\2\2\2\u01da\u01db\7e\2\2\u01db\u01dc\7q\2\2\u01dc"+ + "\u01dd\7f\2\2\u01dd\u01de\7g\2\2\u01de\u01df\7a\2\2\u01df\u01e0\7u\2\2"+ + "\u01e0\u01e1\7g\2\2\u01e1\u01e2\7i\2\2\u01e2Y\3\2\2\2\u01e3\u01e4\7f\2"+ + "\2\u01e4\u01e5\7c\2\2\u01e5\u01e6\7v\2\2\u01e6\u01e7\7c\2\2\u01e7\u01e8"+ + "\7a\2\2\u01e8\u01e9\7u\2\2\u01e9\u01ea\7g\2\2\u01ea\u01eb\7i\2\2\u01eb"+ + "[\3\2\2\2\u01ec\u01ed\7g\2\2\u01ed\u01ee\7p\2\2\u01ee\u01ef\7e\2\2\u01ef"+ + "\u01f0\7q\2\2\u01f0\u01f1\7f\2\2\u01f1\u01f2\7k\2\2\u01f2\u01f3\7p\2\2"+ + "\u01f3\u01f4\7i\2\2\u01f4]\3\2\2\2\u01f5\u01f6\7e\2\2\u01f6\u01f7\7q\2"+ + "\2\u01f7\u01f8\7p\2\2\u01f8\u01f9\7u\2\2\u01f9\u01fa\7v\2\2\u01fa_\3\2"+ + "\2\2\u01fb\u01fc\7g\2\2\u01fc\u01fd\7z\2\2\u01fd\u01fe\7v\2\2\u01fe\u01ff"+ + "\7g\2\2\u01ff\u0200\7t\2\2\u0200\u0201\7p\2\2\u0201a\3\2\2\2\u0202\u0203"+ + "\7g\2\2\u0203\u0204\7z\2\2\u0204\u0205\7r\2\2\u0205\u0206\7q\2\2\u0206"+ + "\u0207\7t\2\2\u0207\u0208\7v\2\2\u0208c\3\2\2\2\u0209\u020a\7c\2\2\u020a"+ + "\u020b\7n\2\2\u020b\u020c\7k\2\2\u020c\u020d\7i\2\2\u020d\u020e\7p\2\2"+ + "\u020ee\3\2\2\2\u020f\u0210\7k\2\2\u0210\u0211\7p\2\2\u0211\u0212\7n\2"+ + "\2\u0212\u0213\7k\2\2\u0213\u0214\7p\2\2\u0214\u0215\7g\2\2\u0215g\3\2"+ + "\2\2\u0216\u0217\7x\2\2\u0217\u0218\7q\2\2\u0218\u0219\7n\2\2\u0219\u021a"+ + "\7c\2\2\u021a\u021b\7v\2\2\u021b\u021c\7k\2\2\u021c\u021d\7n\2\2\u021d"+ + "\u021e\7g\2\2\u021ei\3\2\2\2\u021f\u0220\7u\2\2\u0220\u0221\7v\2\2\u0221"+ + "\u0222\7c\2\2\u0222\u0223\7v\2\2\u0223\u0224\7k\2\2\u0224\u0225\7e\2\2"+ + "\u0225k\3\2\2\2\u0226\u0227\7k\2\2\u0227\u0228\7p\2\2\u0228\u0229\7v\2"+ + "\2\u0229\u022a\7g\2\2\u022a\u022b\7t\2\2\u022b\u022c\7t\2\2\u022c\u022d"+ + "\7w\2\2\u022d\u022e\7r\2\2\u022e\u022f\7v\2\2\u022fm\3\2\2\2\u0230\u0231"+ + "\7t\2\2\u0231\u0232\7g\2\2\u0232\u0233\7i\2\2\u0233\u0234\7k\2\2\u0234"+ + "\u0235\7u\2\2\u0235\u0236\7v\2\2\u0236\u0237\7g\2\2\u0237\u0238\7t\2\2"+ + "\u0238o\3\2\2\2\u0239\u023a\7a\2\2\u023a\u023b\7a\2\2\u023b\u023c\7c\2"+ + "\2\u023c\u023d\7f\2\2\u023d\u023e\7f\2\2\u023e\u023f\7t\2\2\u023f\u0240"+ + "\7g\2\2\u0240\u0241\7u\2\2\u0241\u0242\7u\2\2\u0242q\3\2\2\2\u0243\u0244"+ + "\7a\2\2\u0244\u0245\7a\2\2\u0245\u0246\7|\2\2\u0246\u0247\7r\2\2\u0247"+ + "s\3\2\2\2\u0248\u0249\7a\2\2\u0249\u024a\7a\2\2\u024a\u024b\7o\2\2\u024b"+ + "\u024c\7g\2\2\u024c\u024d\7o\2\2\u024du\3\2\2\2\u024e\u024f\7a\2\2\u024f"+ + "\u0250\7a\2\2\u0250\u0251\7u\2\2\u0251\u0252\7u\2\2\u0252\u0253\7c\2\2"+ + "\u0253w\3\2\2\2\u0254\u0255\7a\2\2\u0255\u0256\7a\2\2\u0256\u0257\7o\2"+ + "\2\u0257\u0258\7c\2\2\u0258y\3\2\2\2\u0259\u025a\7e\2\2\u025a\u025b\7"+ + "c\2\2\u025b\u025c\7n\2\2\u025c\u025d\7n\2\2\u025d\u025e\7k\2\2\u025e\u025f"+ + "\7p\2\2\u025f\u0260\7i\2\2\u0260{\3\2\2\2\u0261\u0262\7a\2\2\u0262\u0263"+ + "\7a\2\2\u0263\u0264\7u\2\2\u0264\u0265\7v\2\2\u0265\u0266\7c\2\2\u0266"+ + "\u0267\7e\2\2\u0267\u0268\7m\2\2\u0268\u0269\7e\2\2\u0269\u026a\7c\2\2"+ + "\u026a\u026b\7n\2\2\u026b\u0276\7n\2\2\u026c\u026d\7a\2\2\u026d\u026e"+ + "\7a\2\2\u026e\u026f\7r\2\2\u026f\u0270\7j\2\2\u0270\u0271\7k\2\2\u0271"+ + "\u0272\7e\2\2\u0272\u0273\7c\2\2\u0273\u0274\7n\2\2\u0274\u0276\7n\2\2"+ + "\u0275\u0261\3\2\2\2\u0275\u026c\3\2\2\2\u0276}\3\2\2\2\u0277\u0278\7"+ + "x\2\2\u0278\u0279\7c\2\2\u0279\u027a\7t\2\2\u027a\u027b\7a\2\2\u027b\u027c"+ + "\7o\2\2\u027c\u027d\7q\2\2\u027d\u027e\7f\2\2\u027e\u027f\7g\2\2\u027f"+ + "\u0280\7n\2\2\u0280\177\3\2\2\2\u0281\u0282\7k\2\2\u0282\u0283\7h\2\2"+ + "\u0283\u0081\3\2\2\2\u0284\u0285\7g\2\2\u0285\u0286\7n\2\2\u0286\u0287"+ + "\7u\2\2\u0287\u0288\7g\2\2\u0288\u0083\3\2\2\2\u0289\u028a\7y\2\2\u028a"+ + "\u028b\7j\2\2\u028b\u028c\7k\2\2\u028c\u028d\7n\2\2\u028d\u028e\7g\2\2"+ + "\u028e\u0085\3\2\2\2\u028f\u0290\7f\2\2\u0290\u0291\7q\2\2\u0291\u0087"+ + "\3\2\2\2\u0292\u0293\7h\2\2\u0293\u0294\7q\2\2\u0294\u0295\7t\2\2\u0295"+ + "\u0089\3\2\2\2\u0296\u0297\7u\2\2\u0297\u0298\7y\2\2\u0298\u0299\7k\2"+ + "\2\u0299\u029a\7v\2\2\u029a\u029b\7e\2\2\u029b\u029c\7j\2\2\u029c\u008b"+ + "\3\2\2\2\u029d\u029e\7t\2\2\u029e\u029f\7g\2\2\u029f\u02a0\7v\2\2\u02a0"+ + "\u02a1\7w\2\2\u02a1\u02a2\7t\2\2\u02a2\u02a3\7p\2\2\u02a3\u008d\3\2\2"+ + "\2\u02a4\u02a5\7d\2\2\u02a5\u02a6\7t\2\2\u02a6\u02a7\7g\2\2\u02a7\u02a8"+ + "\7c\2\2\u02a8\u02a9\7m\2\2\u02a9\u008f\3\2\2\2\u02aa\u02ab\7e\2\2\u02ab"+ + "\u02ac\7q\2\2\u02ac\u02ad\7p\2\2\u02ad\u02ae\7v\2\2\u02ae\u02af\7k\2\2"+ + "\u02af\u02b0\7p\2\2\u02b0\u02b1\7w\2\2\u02b1\u02b2\7g\2\2\u02b2\u0091"+ + "\3\2\2\2\u02b3\u02b4\7c\2\2\u02b4\u02b5\7u\2\2\u02b5\u02b6\7o\2\2\u02b6"+ + "\u02b7\3\2\2\2\u02b7\u02b8\bI\3\2\u02b8\u0093\3\2\2\2\u02b9\u02ba\7f\2"+ + "\2\u02ba\u02bb\7g\2\2\u02bb\u02bc\7h\2\2\u02bc\u02bd\7c\2\2\u02bd\u02be"+ + "\7w\2\2\u02be\u02bf\7n\2\2\u02bf\u02c0\7v\2\2\u02c0\u0095\3\2\2\2\u02c1"+ + "\u02c2\7e\2\2\u02c2\u02c3\7c\2\2\u02c3\u02c4\7u\2\2\u02c4\u02c5\7g\2\2"+ + "\u02c5\u0097\3\2\2\2\u02c6\u02c7\7u\2\2\u02c7\u02c8\7v\2\2\u02c8\u02c9"+ + "\7t\2\2\u02c9\u02ca\7w\2\2\u02ca\u02cb\7e\2\2\u02cb\u02cc\7v\2\2\u02cc"+ + "\u0099\3\2\2\2\u02cd\u02ce\7g\2\2\u02ce\u02cf\7p\2\2\u02cf\u02d0\7w\2"+ + "\2\u02d0\u02d1\7o\2\2\u02d1\u009b\3\2\2\2\u02d2\u02d3\7u\2\2\u02d3\u02d4"+ + "\7k\2\2\u02d4\u02d5\7|\2\2\u02d5\u02d6\7g\2\2\u02d6\u02d7\7q\2\2\u02d7"+ + "\u02d8\7h\2\2\u02d8\u009d\3\2\2\2\u02d9\u02da\7v\2\2\u02da\u02db\7{\2"+ + "\2\u02db\u02dc\7r\2\2\u02dc\u02dd\7g\2\2\u02dd\u02de\7k\2\2\u02de\u02df"+ + "\7f\2\2\u02df\u009f\3\2\2\2\u02e0\u02e1\7f\2\2\u02e1\u02e2\7g\2\2\u02e2"+ + "\u02e3\7h\2\2\u02e3\u02e4\7k\2\2\u02e4\u02e5\7p\2\2\u02e5\u02e6\7g\2\2"+ + "\u02e6\u02e7\7f\2\2\u02e7\u00a1\3\2\2\2\u02e8\u02e9\7m\2\2\u02e9\u02ea"+ + "\7k\2\2\u02ea\u02eb\7e\2\2\u02eb\u02ec\7m\2\2\u02ec\u02ed\7c\2\2\u02ed"+ + "\u02ee\7u\2\2\u02ee\u02ef\7o\2\2\u02ef\u00a3\3\2\2\2\u02f0\u02f1\7t\2"+ + "\2\u02f1\u02f2\7g\2\2\u02f2\u02f3\7u\2\2\u02f3\u02f4\7q\2\2\u02f4\u02f5"+ + "\7w\2\2\u02f5\u02f6\7t\2\2\u02f6\u02f7\7e\2\2\u02f7\u02f8\7g\2\2\u02f8"+ + "\u00a5\3\2\2\2\u02f9\u02fa\7w\2\2\u02fa\u02fb\7u\2\2\u02fb\u02fc\7g\2"+ + "\2\u02fc\u02fd\7u\2\2\u02fd\u00a7\3\2\2\2\u02fe\u02ff\7e\2\2\u02ff\u0300"+ + "\7n\2\2\u0300\u0301\7q\2\2\u0301\u0302\7d\2\2\u0302\u0303\7d\2\2\u0303"+ + "\u0304\7g\2\2\u0304\u0305\7t\2\2\u0305\u0306\7u\2\2\u0306\u00a9\3\2\2"+ + "\2\u0307\u0308\7d\2\2\u0308\u0309\7{\2\2\u0309\u030a\7v\2\2\u030a\u030b"+ + "\7g\2\2\u030b\u030c\7u\2\2\u030c\u00ab\3\2\2\2\u030d\u030e\7e\2\2\u030e"+ + "\u030f\7{\2\2\u030f\u0310\7e\2\2\u0310\u0311\7n\2\2\u0311\u0312\7g\2\2"+ + "\u0312\u0313\7u\2\2\u0313\u00ad\3\2\2\2\u0314\u0315\7#\2\2\u0315\u00af"+ + "\3\2\2\2\u0316\u0317\7u\2\2\u0317\u0318\7k\2\2\u0318\u0319\7i\2\2\u0319"+ + "\u031a\7p\2\2\u031a\u031b\7g\2\2\u031b\u0325\7f\2\2\u031c\u031d\7w\2\2"+ + "\u031d\u031e\7p\2\2\u031e\u031f\7u\2\2\u031f\u0320\7k\2\2\u0320\u0321"+ + "\7i\2\2\u0321\u0322\7p\2\2\u0322\u0323\7g\2\2\u0323\u0325\7f\2\2\u0324"+ + "\u0316\3\2\2\2\u0324\u031c\3\2\2\2\u0325\u00b1\3\2\2\2\u0326\u0327\7d"+ + "\2\2\u0327\u0328\7{\2\2\u0328\u0329\7v\2\2\u0329\u034c\7g\2\2\u032a\u032b"+ + "\7y\2\2\u032b\u032c\7q\2\2\u032c\u032d\7t\2\2\u032d\u034c\7f\2\2\u032e"+ + "\u032f\7f\2\2\u032f\u0330\7y\2\2\u0330\u0331\7q\2\2\u0331\u0332\7t\2\2"+ + "\u0332\u034c\7f\2\2\u0333\u0334\7d\2\2\u0334\u0335\7q\2\2\u0335\u0336"+ + "\7q\2\2\u0336\u034c\7n\2\2\u0337\u0338\7e\2\2\u0338\u0339\7j\2\2\u0339"+ + "\u033a\7c\2\2\u033a\u034c\7t\2\2\u033b\u033c\7u\2\2\u033c\u033d\7j\2\2"+ + "\u033d\u033e\7q\2\2\u033e\u033f\7t\2\2\u033f\u034c\7v\2\2\u0340\u0341"+ + "\7k\2\2\u0341\u0342\7p\2\2\u0342\u034c\7v\2\2\u0343\u0344\7n\2\2\u0344"+ + "\u0345\7q\2\2\u0345\u0346\7p\2\2\u0346\u034c\7i\2\2\u0347\u0348\7x\2\2"+ + "\u0348\u0349\7q\2\2\u0349\u034a\7k\2\2\u034a\u034c\7f\2\2\u034b\u0326"+ + "\3\2\2\2\u034b\u032a\3\2\2\2\u034b\u032e\3\2\2\2\u034b\u0333\3\2\2\2\u034b"+ + "\u0337\3\2\2\2\u034b\u033b\3\2\2\2\u034b\u0340\3\2\2\2\u034b\u0343\3\2"+ + "\2\2\u034b\u0347\3\2\2\2\u034c\u00b3\3\2\2\2\u034d\u034e\7v\2\2\u034e"+ + "\u034f\7t\2\2\u034f\u0350\7w\2\2\u0350\u0357\7g\2\2\u0351\u0352\7h\2\2"+ + "\u0352\u0353\7c\2\2\u0353\u0354\7n\2\2\u0354\u0355\7u\2\2\u0355\u0357"+ + "\7g\2\2\u0356\u034d\3\2\2\2\u0356\u0351\3\2\2\2\u0357\u00b5\3\2\2\2\u0358"+ + "\u0359\7}\2\2\u0359\u035a\7}\2\2\u035a\u035e\3\2\2\2\u035b\u035d\13\2"+ + "\2\2\u035c\u035b\3\2\2\2\u035d\u0360\3\2\2\2\u035e\u035f\3\2\2\2\u035e"+ + "\u035c\3\2\2\2\u035f\u0361\3\2\2\2\u0360\u035e\3\2\2\2\u0361\u0362\7\177"+ + "\2\2\u0362\u0363\7\177\2\2\u0363\u00b7\3\2\2\2\u0364\u0365\7%\2\2\u0365"+ + "\u0366\7k\2\2\u0366\u0367\7o\2\2\u0367\u0368\7r\2\2\u0368\u0369\7q\2\2"+ + "\u0369\u036a\7t\2\2\u036a\u036b\7v\2\2\u036b\u036c\3\2\2\2\u036c\u036d"+ + "\b\\\4\2\u036d\u00b9\3\2\2\2\u036e\u036f\7%\2\2\u036f\u0370\7k\2\2\u0370"+ + "\u0371\7p\2\2\u0371\u0372\7e\2\2\u0372\u0373\7n\2\2\u0373\u0374\7w\2\2"+ + "\u0374\u0375\7f\2\2\u0375\u0376\7g\2\2\u0376\u0377\3\2\2\2\u0377\u0378"+ + "\b]\5\2\u0378\u00bb\3\2\2\2\u0379\u037a\7%\2\2\u037a\u037b\7r\2\2\u037b"+ + "\u037c\7t\2\2\u037c\u037d\7c\2\2\u037d\u037e\7i\2\2\u037e\u037f\7o\2\2"+ + "\u037f\u0380\7c\2\2\u0380\u00bd\3\2\2\2\u0381\u0382\7%\2\2\u0382\u0383"+ + "\7f\2\2\u0383\u0384\7g\2\2\u0384\u0385\7h\2\2\u0385\u0386\7k\2\2\u0386"+ + "\u0387\7p\2\2\u0387\u0388\7g\2\2\u0388\u00bf\3\2\2\2\u0389\u038a\7^\2"+ + "\2\u038a\u038f\7\f\2\2\u038b\u038c\7^\2\2\u038c\u038d\7\17\2\2\u038d\u038f"+ + "\7\f\2\2\u038e\u0389\3\2\2\2\u038e\u038b\3\2\2\2\u038f\u00c1\3\2\2\2\u0390"+ + "\u0391\7%\2\2\u0391\u0392\7w\2\2\u0392\u0393\7p\2\2\u0393\u0394\7f\2\2"+ + "\u0394\u0395\7g\2\2\u0395\u0396\7h\2\2\u0396\u00c3\3\2\2\2\u0397\u0398"+ + "\7%\2\2\u0398\u0399\7k\2\2\u0399\u039a\7h\2\2\u039a\u039b\7f\2\2\u039b"+ + "\u039c\7g\2\2\u039c\u039d\7h\2\2\u039d\u00c5\3\2\2\2\u039e\u039f\7%\2"+ + "\2\u039f\u03a0\7k\2\2\u03a0\u03a1\7h\2\2\u03a1\u03a2\7p\2\2\u03a2\u03a3"+ + "\7f\2\2\u03a3\u03a4\7g\2\2\u03a4\u03a5\7h\2\2\u03a5\u00c7\3\2\2\2\u03a6"+ + "\u03a7\7%\2\2\u03a7\u03a8\7k\2\2\u03a8\u03a9\7h\2\2\u03a9\u00c9\3\2\2"+ + "\2\u03aa\u03ab\7%\2\2\u03ab\u03ac\7g\2\2\u03ac\u03ad\7n\2\2\u03ad\u03ae"+ + "\7k\2\2\u03ae\u03af\7h\2\2\u03af\u00cb\3\2\2\2\u03b0\u03b1\7%\2\2\u03b1"+ + "\u03b2\7g\2\2\u03b2\u03b3\7n\2\2\u03b3\u03b4\7u\2\2\u03b4\u03b5\7g\2\2"+ + "\u03b5\u00cd\3\2\2\2\u03b6\u03b7\7%\2\2\u03b7\u03b8\7g\2\2\u03b8\u03b9"+ + "\7p\2\2\u03b9\u03ba\7f\2\2\u03ba\u03bb\7k\2\2\u03bb\u03bc\7h\2\2\u03bc"+ + "\u00cf\3\2\2\2\u03bd\u03c0\5\u00d2i\2\u03be\u03c0\5\u00dam\2\u03bf\u03bd"+ + "\3\2\2\2\u03bf\u03be\3\2\2\2\u03c0\u00d1\3\2\2\2\u03c1\u03c5\5\u00d4j"+ + "\2\u03c2\u03c5\5\u00d6k\2\u03c3\u03c5\5\u00d8l\2\u03c4\u03c1\3\2\2\2\u03c4"+ + "\u03c2\3\2\2\2\u03c4\u03c3\3\2\2\2\u03c5\u00d3\3\2\2\2\u03c6\u03cc\7\'"+ + "\2\2\u03c7\u03c8\7\62\2\2\u03c8\u03cc\7d\2\2\u03c9\u03ca\7\62\2\2\u03ca"+ + "\u03cc\7D\2\2\u03cb\u03c6\3\2\2\2\u03cb\u03c7\3\2\2\2\u03cb\u03c9\3\2"+ + "\2\2\u03cc\u03d0\3\2\2\2\u03cd\u03cf\5\u00e2q\2\u03ce\u03cd\3\2\2\2\u03cf"+ + "\u03d2\3\2\2\2\u03d0\u03ce\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u03d3\3\2"+ + "\2\2\u03d2\u03d0\3\2\2\2\u03d3\u03d5\7\60\2\2\u03d4\u03d6\5\u00e2q\2\u03d5"+ + "\u03d4\3\2\2\2\u03d6\u03d7\3\2\2\2\u03d7\u03d5\3\2\2\2\u03d7\u03d8\3\2"+ + "\2\2\u03d8\u00d5\3\2\2\2\u03d9\u03db\5\u00e4r\2\u03da\u03d9\3\2\2\2\u03db"+ + "\u03de\3\2\2\2\u03dc\u03da\3\2\2\2\u03dc\u03dd\3\2\2\2\u03dd\u03df\3\2"+ + "\2\2\u03de\u03dc\3\2\2\2\u03df\u03e1\7\60\2\2\u03e0\u03e2\5\u00e4r\2\u03e1"+ + "\u03e0\3\2\2\2\u03e2\u03e3\3\2\2\2\u03e3\u03e1\3\2\2\2\u03e3\u03e4\3\2"+ + "\2\2\u03e4\u00d7\3\2\2\2\u03e5\u03eb\7&\2\2\u03e6\u03e7\7\62\2\2\u03e7"+ + "\u03eb\7z\2\2\u03e8\u03e9\7\62\2\2\u03e9\u03eb\7Z\2\2\u03ea\u03e5\3\2"+ + "\2\2\u03ea\u03e6\3\2\2\2\u03ea\u03e8\3\2\2\2\u03eb\u03ef\3\2\2\2\u03ec"+ + "\u03ee\5\u00e6s\2\u03ed\u03ec\3\2\2\2\u03ee\u03f1\3\2\2\2\u03ef\u03ed"+ + "\3\2\2\2\u03ef\u03f0\3\2\2\2\u03f0\u03f2\3\2\2\2\u03f1\u03ef\3\2\2\2\u03f2"+ + "\u03f4\7\60\2\2\u03f3\u03f5\5\u00e6s\2\u03f4\u03f3\3\2\2\2\u03f5\u03f6"+ + "\3\2\2\2\u03f6\u03f4\3\2\2\2\u03f6\u03f7\3\2\2\2\u03f7\u00d9\3\2\2\2\u03f8"+ + "\u03fc\5\u00deo\2\u03f9\u03fc\5\u00e0p\2\u03fa\u03fc\5\u00dcn\2\u03fb"+ + "\u03f8\3\2\2\2\u03fb\u03f9\3\2\2\2\u03fb\u03fa\3\2\2\2\u03fc\u0400\3\2"+ + "\2\2\u03fd\u03fe\t\2\2\2\u03fe\u0401\t\3\2\2\u03ff\u0401\7n\2\2\u0400"+ + "\u03fd\3\2\2\2\u0400\u03ff\3\2\2\2\u0400\u0401\3\2\2\2\u0401\u00db\3\2"+ + "\2\2\u0402\u0403\7\62\2\2\u0403\u0405\t\4\2\2\u0404\u0406\5\u00e2q\2\u0405"+ + "\u0404\3\2\2\2\u0406\u0407\3\2\2\2\u0407\u0405\3\2\2\2\u0407\u0408\3\2"+ + "\2\2\u0408\u0410\3\2\2\2\u0409\u040b\7\'\2\2\u040a\u040c\5\u00e2q\2\u040b"+ + "\u040a\3\2\2\2\u040c\u040d\3\2\2\2\u040d\u040b\3\2\2\2\u040d\u040e\3\2"+ + "\2\2\u040e\u0410\3\2\2\2\u040f\u0402\3\2\2\2\u040f\u0409\3\2\2\2\u0410"+ + "\u00dd\3\2\2\2\u0411\u0413\5\u00e4r\2\u0412\u0411\3\2\2\2\u0413\u0414"+ + "\3\2\2\2\u0414\u0412\3\2\2\2\u0414\u0415\3\2\2\2\u0415\u00df\3\2\2\2\u0416"+ + "\u041c\7&\2\2\u0417\u0418\7\62\2\2\u0418\u041c\7z\2\2\u0419\u041a\7\62"+ + "\2\2\u041a\u041c\7Z\2\2\u041b\u0416\3\2\2\2\u041b\u0417\3\2\2\2\u041b"+ + "\u0419\3\2\2\2\u041c\u041e\3\2\2\2\u041d\u041f\5\u00e6s\2\u041e\u041d"+ + "\3\2\2\2\u041f\u0420\3\2\2\2\u0420\u041e\3\2\2\2\u0420\u0421\3\2\2\2\u0421"+ + "\u00e1\3\2\2\2\u0422\u0423\t\5\2\2\u0423\u00e3\3\2\2\2\u0424\u0425\t\6"+ + "\2\2\u0425\u00e5\3\2\2\2\u0426\u0427\t\7\2\2\u0427\u00e7\3\2\2\2\u0428"+ + "\u042c\5\u00eau\2\u0429\u042b\5\u00ecv\2\u042a\u0429\3\2\2\2\u042b\u042e"+ + "\3\2\2\2\u042c\u042a\3\2\2\2\u042c\u042d\3\2\2\2\u042d\u042f\3\2\2\2\u042e"+ + "\u042c\3\2\2\2\u042f\u0430\bt\6\2\u0430\u00e9\3\2\2\2\u0431\u0432\t\b"+ + "\2\2\u0432\u00eb\3\2\2\2\u0433\u0434\t\t\2\2\u0434\u00ed\3\2\2\2\u0435"+ + "\u0437\7>\2\2\u0436\u0438\t\n\2\2\u0437\u0436\3\2\2\2\u0438\u0439\3\2"+ + "\2\2\u0439\u0437\3\2\2\2\u0439\u043a\3\2\2\2\u043a\u043b\3\2\2\2\u043b"+ + "\u043c\7@\2\2\u043c\u043d\bw\7\2\u043d\u00ef\3\2\2\2\u043e\u0444\7$\2"+ + "\2\u043f\u0440\7^\2\2\u0440\u0443\7$\2\2\u0441\u0443\n\13\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\f\2\2\u0449\u0448\3\2\2\2\u0449\u044a\3\2\2\2\u044a"+ + "\u044f\3\2\2\2\u044b\u044d\t\r\2\2\u044c\u044e\t\16\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\f\2\2\u0452\u0451\3\2"+ + "\2\2\u0452\u0453\3\2\2\2\u0453\u0454\3\2\2\2\u0454\u0455\bx\b\2\u0455"+ + "\u00f1\3\2\2\2\u0456\u045a\7)\2\2\u0457\u0458\7^\2\2\u0458\u045b\t\17"+ + "\2\2\u0459\u045b\n\20\2\2\u045a\u0457\3\2\2\2\u045a\u0459\3\2\2\2\u045b"+ + "\u045c\3\2\2\2\u045c\u045d\7)\2\2\u045d\u00f3\3\2\2\2\u045e\u0460\t\21"+ + "\2\2\u045f\u045e\3\2\2\2\u0460\u0461\3\2\2\2\u0461\u045f\3\2\2\2\u0461"+ + "\u0462\3\2\2\2\u0462\u0463\3\2\2\2\u0463\u0464\bz\t\2\u0464\u00f5\3\2"+ + "\2\2\u0465\u0466\7\61\2\2\u0466\u0467\7\61\2\2\u0467\u046b\3\2\2\2\u0468"+ + "\u046a\n\22\2\2\u0469\u0468\3\2\2\2\u046a\u046d\3\2\2\2\u046b\u0469\3"+ + "\2\2\2\u046b\u046c\3\2\2\2\u046c\u046e\3\2\2\2\u046d\u046b\3\2\2\2\u046e"+ + "\u046f\b{\n\2\u046f\u00f7\3\2\2\2\u0470\u0471\7\61\2\2\u0471\u0472\7,"+ + "\2\2\u0472\u0476\3\2\2\2\u0473\u0475\13\2\2\2\u0474\u0473\3\2\2\2\u0475"+ + "\u0478\3\2\2\2\u0476\u0477\3\2\2\2\u0476\u0474\3\2\2\2\u0477\u0479\3\2"+ + "\2\2\u0478\u0476\3\2\2\2\u0479\u047a\7,\2\2\u047a\u047b\7\61\2\2\u047b"+ + "\u047c\3\2\2\2\u047c\u047d\b|\n\2\u047d\u00f9\3\2\2\2\u047e\u047f\7\60"+ + "\2\2\u047f\u0480\7d\2\2\u0480\u0481\7{\2\2\u0481\u0482\7v\2\2\u0482\u0483"+ + "\7g\2\2\u0483\u00fb\3\2\2\2\u0484\u0485\7d\2\2\u0485\u0486\7t\2\2\u0486"+ + "\u0563\7m\2\2\u0487\u0488\7q\2\2\u0488\u0489\7t\2\2\u0489\u0563\7c\2\2"+ + "\u048a\u048b\7m\2\2\u048b\u048c\7k\2\2\u048c\u0563\7n\2\2\u048d\u048e"+ + "\7u\2\2\u048e\u048f\7n\2\2\u048f\u0563\7q\2\2\u0490\u0491\7p\2\2\u0491"+ + "\u0492\7q\2\2\u0492\u0563\7r\2\2\u0493\u0494\7c\2\2\u0494\u0495\7u\2\2"+ + "\u0495\u0563\7n\2\2\u0496\u0497\7r\2\2\u0497\u0498\7j\2\2\u0498\u0563"+ + "\7r\2\2\u0499\u049a\7c\2\2\u049a\u049b\7p\2\2\u049b\u0563\7e\2\2\u049c"+ + "\u049d\7d\2\2\u049d\u049e\7r\2\2\u049e\u0563\7n\2\2\u049f\u04a0\7e\2\2"+ + "\u04a0\u04a1\7n\2\2\u04a1\u0563\7e\2\2\u04a2\u04a3\7l\2\2\u04a3\u04a4"+ + "\7u\2\2\u04a4\u0563\7t\2\2\u04a5\u04a6\7c\2\2\u04a6\u04a7\7p\2\2\u04a7"+ + "\u0563\7f\2\2\u04a8\u04a9\7t\2\2\u04a9\u04aa\7n\2\2\u04aa\u0563\7c\2\2"+ + "\u04ab\u04ac\7d\2\2\u04ac\u04ad\7k\2\2\u04ad\u0563\7v\2\2\u04ae\u04af"+ + "\7t\2\2\u04af\u04b0\7q\2\2\u04b0\u0563\7n\2\2\u04b1\u04b2\7r\2\2\u04b2"+ + "\u04b3\7n\2\2\u04b3\u0563\7c\2\2\u04b4\u04b5\7r\2\2\u04b5\u04b6\7n\2\2"+ + "\u04b6\u0563\7r\2\2\u04b7\u04b8\7d\2\2\u04b8\u04b9\7o\2\2\u04b9\u0563"+ + "\7k\2\2\u04ba\u04bb\7u\2\2\u04bb\u04bc\7g\2\2\u04bc\u0563\7e\2\2\u04bd"+ + "\u04be\7t\2\2\u04be\u04bf\7v\2\2\u04bf\u0563\7k\2\2\u04c0\u04c1\7g\2\2"+ + "\u04c1\u04c2\7q\2\2\u04c2\u0563\7t\2\2\u04c3\u04c4\7u\2\2\u04c4\u04c5"+ + "\7t\2\2\u04c5\u0563\7g\2\2\u04c6\u04c7\7n\2\2\u04c7\u04c8\7u\2\2\u04c8"+ + "\u0563\7t\2\2\u04c9\u04ca\7r\2\2\u04ca\u04cb\7j\2\2\u04cb\u0563\7c\2\2"+ + "\u04cc\u04cd\7c\2\2\u04cd\u04ce\7n\2\2\u04ce\u0563\7t\2\2\u04cf\u04d0"+ + "\7l\2\2\u04d0\u04d1\7o\2\2\u04d1\u0563\7r\2\2\u04d2\u04d3\7d\2\2\u04d3"+ + "\u04d4\7x\2\2\u04d4\u0563\7e\2\2\u04d5\u04d6\7e\2\2\u04d6\u04d7\7n\2\2"+ + "\u04d7\u0563\7k\2\2\u04d8\u04d9\7t\2\2\u04d9\u04da\7v\2\2\u04da\u0563"+ + "\7u\2\2\u04db\u04dc\7c\2\2\u04dc\u04dd\7f\2\2\u04dd\u0563\7e\2\2\u04de"+ + "\u04df\7t\2\2\u04df\u04e0\7t\2\2\u04e0\u0563\7c\2\2\u04e1\u04e2\7d\2\2"+ + "\u04e2\u04e3\7x\2\2\u04e3\u0563\7u\2\2\u04e4\u04e5\7u\2\2\u04e5\u04e6"+ + "\7g\2\2\u04e6\u0563\7k\2\2\u04e7\u04e8\7u\2\2\u04e8\u04e9\7c\2\2\u04e9"+ + "\u0563\7z\2\2\u04ea\u04eb\7u\2\2\u04eb\u04ec\7v\2\2\u04ec\u0563\7{\2\2"+ + "\u04ed\u04ee\7u\2\2\u04ee\u04ef\7v\2\2\u04ef\u0563\7c\2\2\u04f0\u04f1"+ + "\7u\2\2\u04f1\u04f2\7v\2\2\u04f2\u0563\7z\2\2\u04f3\u04f4\7f\2\2\u04f4"+ + "\u04f5\7g\2\2\u04f5\u0563\7{\2\2\u04f6\u04f7\7v\2\2\u04f7\u04f8\7z\2\2"+ + "\u04f8\u0563\7c\2\2\u04f9\u04fa\7z\2\2\u04fa\u04fb\7c\2\2\u04fb\u0563"+ + "\7c\2\2\u04fc\u04fd\7d\2\2\u04fd\u04fe\7e\2\2\u04fe\u0563\7e\2\2\u04ff"+ + "\u0500\7c\2\2\u0500\u0501\7j\2\2\u0501\u0563\7z\2\2\u0502\u0503\7v\2\2"+ + "\u0503\u0504\7{\2\2\u0504\u0563\7c\2\2\u0505\u0506\7v\2\2\u0506\u0507"+ + "\7z\2\2\u0507\u0563\7u\2\2\u0508\u0509\7v\2\2\u0509\u050a\7c\2\2\u050a"+ + "\u0563\7u\2\2\u050b\u050c\7u\2\2\u050c\u050d\7j\2\2\u050d\u0563\7{\2\2"+ + "\u050e\u050f\7u\2\2\u050f\u0510\7j\2\2\u0510\u0563\7z\2\2\u0511\u0512"+ + "\7n\2\2\u0512\u0513\7f\2\2\u0513\u0563\7{\2\2\u0514\u0515\7n\2\2\u0515"+ + "\u0516\7f\2\2\u0516\u0563\7c\2\2\u0517\u0518\7n\2\2\u0518\u0519\7f\2\2"+ + "\u0519\u0563\7z\2\2\u051a\u051b\7n\2\2\u051b\u051c\7c\2\2\u051c\u0563"+ + "\7z\2\2\u051d\u051e\7v\2\2\u051e\u051f\7c\2\2\u051f\u0563\7{\2\2\u0520"+ + "\u0521\7v\2\2\u0521\u0522\7c\2\2\u0522\u0563\7z\2\2\u0523\u0524\7d\2\2"+ + "\u0524\u0525\7e\2\2\u0525\u0563\7u\2\2\u0526\u0527\7e\2\2\u0527\u0528"+ + "\7n\2\2\u0528\u0563\7x\2\2\u0529\u052a\7v\2\2\u052a\u052b\7u\2\2\u052b"+ + "\u0563\7z\2\2\u052c\u052d\7n\2\2\u052d\u052e\7c\2\2\u052e\u0563\7u\2\2"+ + "\u052f\u0530\7e\2\2\u0530\u0531\7r\2\2\u0531\u0563\7{\2\2\u0532\u0533"+ + "\7e\2\2\u0533\u0534\7o\2\2\u0534\u0563\7r\2\2\u0535\u0536\7e\2\2\u0536"+ + "\u0537\7r\2\2\u0537\u0563\7z\2\2\u0538\u0539\7f\2\2\u0539\u053a\7e\2\2"+ + "\u053a\u0563\7r\2\2\u053b\u053c\7f\2\2\u053c\u053d\7g\2\2\u053d\u0563"+ + "\7e\2\2\u053e\u053f\7k\2\2\u053f\u0540\7p\2\2\u0540\u0563\7e\2\2\u0541"+ + "\u0542\7c\2\2\u0542\u0543\7z\2\2\u0543\u0563\7u\2\2\u0544\u0545\7d\2\2"+ + "\u0545\u0546\7p\2\2\u0546\u0563\7g\2\2\u0547\u0548\7e\2\2\u0548\u0549"+ + "\7n\2\2\u0549\u0563\7f\2\2\u054a\u054b\7u\2\2\u054b\u054c\7d\2\2\u054c"+ + "\u0563\7e\2\2\u054d\u054e\7k\2\2\u054e\u054f\7u\2\2\u054f\u0563\7e\2\2"+ + "\u0550\u0551\7k\2\2\u0551\u0552\7p\2\2\u0552\u0563\7z\2\2\u0553\u0554"+ + "\7d\2\2\u0554\u0555\7g\2\2\u0555\u0563\7s\2\2\u0556\u0557\7u\2\2\u0557"+ + "\u0558\7g\2\2\u0558\u0563\7f\2\2\u0559\u055a\7f\2\2\u055a\u055b\7g\2\2"+ + "\u055b\u0563\7z\2\2\u055c\u055d\7k\2\2\u055d\u055e\7p\2\2\u055e\u0563"+ + "\7{\2\2\u055f\u0560\7t\2\2\u0560\u0561\7q\2\2\u0561\u0563\7t\2\2\u0562"+ + "\u0484\3\2\2\2\u0562\u0487\3\2\2\2\u0562\u048a\3\2\2\2\u0562\u048d\3\2"+ + "\2\2\u0562\u0490\3\2\2\2\u0562\u0493\3\2\2\2\u0562\u0496\3\2\2\2\u0562"+ + "\u0499\3\2\2\2\u0562\u049c\3\2\2\2\u0562\u049f\3\2\2\2\u0562\u04a2\3\2"+ + "\2\2\u0562\u04a5\3\2\2\2\u0562\u04a8\3\2\2\2\u0562\u04ab\3\2\2\2\u0562"+ + "\u04ae\3\2\2\2\u0562\u04b1\3\2\2\2\u0562\u04b4\3\2\2\2\u0562\u04b7\3\2"+ + "\2\2\u0562\u04ba\3\2\2\2\u0562\u04bd\3\2\2\2\u0562\u04c0\3\2\2\2\u0562"+ + "\u04c3\3\2\2\2\u0562\u04c6\3\2\2\2\u0562\u04c9\3\2\2\2\u0562\u04cc\3\2"+ + "\2\2\u0562\u04cf\3\2\2\2\u0562\u04d2\3\2\2\2\u0562\u04d5\3\2\2\2\u0562"+ + "\u04d8\3\2\2\2\u0562\u04db\3\2\2\2\u0562\u04de\3\2\2\2\u0562\u04e1\3\2"+ + "\2\2\u0562\u04e4\3\2\2\2\u0562\u04e7\3\2\2\2\u0562\u04ea\3\2\2\2\u0562"+ + "\u04ed\3\2\2\2\u0562\u04f0\3\2\2\2\u0562\u04f3\3\2\2\2\u0562\u04f6\3\2"+ + "\2\2\u0562\u04f9\3\2\2\2\u0562\u04fc\3\2\2\2\u0562\u04ff\3\2\2\2\u0562"+ + "\u0502\3\2\2\2\u0562\u0505\3\2\2\2\u0562\u0508\3\2\2\2\u0562\u050b\3\2"+ + "\2\2\u0562\u050e\3\2\2\2\u0562\u0511\3\2\2\2\u0562\u0514\3\2\2\2\u0562"+ + "\u0517\3\2\2\2\u0562\u051a\3\2\2\2\u0562\u051d\3\2\2\2\u0562\u0520\3\2"+ + "\2\2\u0562\u0523\3\2\2\2\u0562\u0526\3\2\2\2\u0562\u0529\3\2\2\2\u0562"+ + "\u052c\3\2\2\2\u0562\u052f\3\2\2\2\u0562\u0532\3\2\2\2\u0562\u0535\3\2"+ + "\2\2\u0562\u0538\3\2\2\2\u0562\u053b\3\2\2\2\u0562\u053e\3\2\2\2\u0562"+ + "\u0541\3\2\2\2\u0562\u0544\3\2\2\2\u0562\u0547\3\2\2\2\u0562\u054a\3\2"+ + "\2\2\u0562\u054d\3\2\2\2\u0562\u0550\3\2\2\2\u0562\u0553\3\2\2\2\u0562"+ + "\u0556\3\2\2\2\u0562\u0559\3\2\2\2\u0562\u055c\3\2\2\2\u0562\u055f\3\2"+ + "\2\2\u0563\u00fd\3\2\2\2\u0564\u0565\7%\2\2\u0565\u00ff\3\2\2\2\u0566"+ + "\u0567\7<\2\2\u0567\u0101\3\2\2\2\u0568\u0569\7.\2\2\u0569\u0103\3\2\2"+ + "\2\u056a\u056b\7*\2\2\u056b\u0105\3\2\2\2\u056c\u056d\7+\2\2\u056d\u0107"+ + "\3\2\2\2\u056e\u056f\7]\2\2\u056f\u0109\3\2\2\2\u0570\u0571\7_\2\2\u0571"+ + "\u010b\3\2\2\2\u0572\u0573\7\60\2\2\u0573\u010d\3\2\2\2\u0574\u0575\7"+ + ">\2\2\u0575\u0576\7>\2\2\u0576\u010f\3\2\2\2\u0577\u0578\7@\2\2\u0578"+ + "\u0579\7@\2\2\u0579\u0111\3\2\2\2\u057a\u057b\7-\2\2\u057b\u0113\3\2\2"+ + "\2\u057c\u057d\7/\2\2\u057d\u0115\3\2\2\2\u057e\u057f\7>\2\2\u057f\u0117"+ + "\3\2\2\2\u0580\u0581\7@\2\2\u0581\u0119\3\2\2\2\u0582\u0583\7,\2\2\u0583"+ + "\u011b\3\2\2\2\u0584\u0585\7\61\2\2\u0585\u011d\3\2\2\2\u0586\u0587\7"+ + "}\2\2\u0587\u0588\b\u008f\13\2\u0588\u011f\3\2\2\2\u0589\u058a\7\177\2"+ + "\2\u058a\u058b\b\u0090\f\2\u058b\u0121\3\2\2\2\u058c\u058f\5\u0124\u0092"+ + "\2\u058d\u058f\5\u012c\u0096\2\u058e\u058c\3\2\2\2\u058e\u058d\3\2\2\2"+ + "\u058f\u0123\3\2\2\2\u0590\u0594\5\u0126\u0093\2\u0591\u0594\5\u0128\u0094"+ + "\2\u0592\u0594\5\u012a\u0095\2\u0593\u0590\3\2\2\2\u0593\u0591\3\2\2\2"+ + "\u0593\u0592\3\2\2\2\u0594\u0125\3\2\2\2\u0595\u0599\7\'\2\2\u0596\u0598"+ + "\5\u0134\u009a\2\u0597\u0596\3\2\2\2\u0598\u059b\3\2\2\2\u0599\u0597\3"+ + "\2\2\2\u0599\u059a\3\2\2\2\u059a\u059c\3\2\2\2\u059b\u0599\3\2\2\2\u059c"+ + "\u059e\7\60\2\2\u059d\u059f\5\u0134\u009a\2\u059e\u059d\3\2\2\2\u059f"+ + "\u05a0\3\2\2\2\u05a0\u059e\3\2\2\2\u05a0\u05a1\3\2\2\2\u05a1\u0127\3\2"+ + "\2\2\u05a2\u05a4\5\u0136\u009b\2\u05a3\u05a2\3\2\2\2\u05a4\u05a7\3\2\2"+ + "\2\u05a5\u05a3\3\2\2\2\u05a5\u05a6\3\2\2\2\u05a6\u05a8\3\2\2\2\u05a7\u05a5"+ + "\3\2\2\2\u05a8\u05aa\7\60\2\2\u05a9\u05ab\5\u0136\u009b\2\u05aa\u05a9"+ + "\3\2\2\2\u05ab\u05ac\3\2\2\2\u05ac\u05aa\3\2\2\2\u05ac\u05ad\3\2\2\2\u05ad"+ + "\u0129\3\2\2\2\u05ae\u05b2\7&\2\2\u05af\u05b1\5\u0138\u009c\2\u05b0\u05af"+ + "\3\2\2\2\u05b1\u05b4\3\2\2\2\u05b2\u05b0\3\2\2\2\u05b2\u05b3\3\2\2\2\u05b3"+ + "\u05b5\3\2\2\2\u05b4\u05b2\3\2\2\2\u05b5\u05b7\7\60\2\2\u05b6\u05b8\5"+ + "\u0138\u009c\2\u05b7\u05b6\3\2\2\2\u05b8\u05b9\3\2\2\2\u05b9\u05b7\3\2"+ + "\2\2\u05b9\u05ba\3\2\2\2\u05ba\u012b\3\2\2\2\u05bb\u05bf\5\u0130\u0098"+ + "\2\u05bc\u05bf\5\u0132\u0099\2\u05bd\u05bf\5\u012e\u0097\2\u05be\u05bb"+ + "\3\2\2\2\u05be\u05bc\3\2\2\2\u05be\u05bd\3\2\2\2\u05bf\u012d\3\2\2\2\u05c0"+ + "\u05c2\7\'\2\2\u05c1\u05c3\5\u0134\u009a\2\u05c2\u05c1\3\2\2\2\u05c3\u05c4"+ + "\3\2\2\2\u05c4\u05c2\3\2\2\2\u05c4\u05c5\3\2\2\2\u05c5\u012f\3\2\2\2\u05c6"+ + "\u05c8\5\u0136\u009b\2\u05c7\u05c6\3\2\2\2\u05c8\u05c9\3\2\2\2\u05c9\u05c7"+ + "\3\2\2\2\u05c9\u05ca\3\2\2\2\u05ca\u0131\3\2\2\2\u05cb\u05cd\7&\2\2\u05cc"+ + "\u05ce\5\u0138\u009c\2\u05cd\u05cc\3\2\2\2\u05ce\u05cf\3\2\2\2\u05cf\u05cd"+ + "\3\2\2\2\u05cf\u05d0\3\2\2\2\u05d0\u0133\3\2\2\2\u05d1\u05d2\t\5\2\2\u05d2"+ + "\u0135\3\2\2\2\u05d3\u05d4\t\6\2\2\u05d4\u0137\3\2\2\2\u05d5\u05d6\t\7"+ + "\2\2\u05d6\u0139\3\2\2\2\u05d7\u05db\7)\2\2\u05d8\u05d9\7^\2\2\u05d9\u05dc"+ + "\t\17\2\2\u05da\u05dc\n\20\2\2\u05db\u05d8\3\2\2\2\u05db\u05da\3\2\2\2"+ + "\u05dc\u05dd\3\2\2\2\u05dd\u05de\7)\2\2\u05de\u013b\3\2\2\2\u05df\u05e1"+ + "\5\u013e\u009f\2\u05e0\u05e2\t\23\2\2\u05e1\u05e0\3\2\2\2\u05e2\u05e3"+ + "\3\2\2\2\u05e3\u05e1\3\2\2\2\u05e3\u05e4\3\2\2\2\u05e4\u013d\3\2\2\2\u05e5"+ + "\u05e9\7#\2\2\u05e6\u05e8\5\u0144\u00a2\2\u05e7\u05e6\3\2\2\2\u05e8\u05eb"+ + "\3\2\2\2\u05e9\u05e7\3\2\2\2\u05e9\u05ea\3\2\2\2\u05ea\u013f\3\2\2\2\u05eb"+ + "\u05e9\3\2\2\2\u05ec\u05f0\5\u0142\u00a1\2\u05ed\u05ef\5\u0144\u00a2\2"+ + "\u05ee\u05ed\3\2\2\2\u05ef\u05f2\3\2\2\2\u05f0\u05ee\3\2\2\2\u05f0\u05f1"+ + "\3\2\2\2\u05f1\u0141\3\2\2\2\u05f2\u05f0\3\2\2\2\u05f3\u05f4\t\b\2\2\u05f4"+ + "\u0143\3\2\2\2\u05f5\u05f6\t\t\2\2\u05f6\u0145\3\2\2\2\u05f7\u05f9\t\21"+ + "\2\2\u05f8\u05f7\3\2\2\2\u05f9\u05fa\3\2\2\2\u05fa\u05f8\3\2\2\2\u05fa"+ + "\u05fb\3\2\2\2\u05fb\u05fc\3\2\2\2\u05fc\u05fd\b\u00a3\t\2\u05fd\u0147"+ + "\3\2\2\2\u05fe\u05ff\7\61\2\2\u05ff\u0600\7\61\2\2\u0600\u0604\3\2\2\2"+ + "\u0601\u0603\n\22\2\2\u0602\u0601\3\2\2\2\u0603\u0606\3\2\2\2\u0604\u0602"+ + "\3\2\2\2\u0604\u0605\3\2\2\2\u0605\u0607\3\2\2\2\u0606\u0604\3\2\2\2\u0607"+ + "\u0608\b\u00a4\n\2\u0608\u0149\3\2\2\2\u0609\u060a\7\61\2\2\u060a\u060b"+ + "\7,\2\2\u060b\u060f\3\2\2\2\u060c\u060e\13\2\2\2\u060d\u060c\3\2\2\2\u060e"+ + "\u0611\3\2\2\2\u060f\u0610\3\2\2\2\u060f\u060d\3\2\2\2\u0610\u0612\3\2"+ + "\2\2\u0611\u060f\3\2\2\2\u0612\u0613\7,\2\2\u0613\u0614\7\61\2\2\u0614"+ + "\u0615\3\2\2\2\u0615\u0616\b\u00a5\n\2\u0616\u014b\3\2\2\2=\2\3\u01b5"+ + "\u0275\u0324\u034b\u0356\u035e\u038e\u03bf\u03c4\u03cb\u03d0\u03d7\u03dc"+ + "\u03e3\u03ea\u03ef\u03f6\u03fb\u0400\u0407\u040d\u040f\u0414\u041b\u0420"+ + "\u042c\u0439\u0442\u0444\u0449\u044d\u044f\u0452\u045a\u0461\u046b\u0476"+ + "\u0562\u058e\u0593\u0599\u05a0\u05a5\u05ac\u05b2\u05b9\u05be\u05c4\u05c9"+ + "\u05cf\u05db\u05e3\u05e9\u05f0\u05fa\u0604\u060f\r\3\2\2\3I\3\3\\\4\3"+ + "]\5\3t\6\3w\7\3x\b\2\3\2\2\4\2\3\u008f\t\3\u0090\n"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens index a2df68f24..4f9aecee7 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -89,69 +89,70 @@ SIGNEDNESS=88 SIMPLETYPE=89 BOOLEAN=90 KICKASM_BODY=91 -STRING=92 -CHAR=93 -IMPORT=94 -INCLUDE=95 -PRAGMA=96 -DEFINE=97 -DEFINE_CONTINUE=98 -UNDEF=99 -IFDEF=100 -IFNDEF=101 -IFIF=102 -ELIF=103 -IFELSE=104 -ENDIF=105 -NUMBER=106 -NUMFLOAT=107 -BINFLOAT=108 -DECFLOAT=109 -HEXFLOAT=110 -NUMINT=111 -BININTEGER=112 -DECINTEGER=113 -HEXINTEGER=114 -NAME=115 -WS=116 -COMMENT_LINE=117 -COMMENT_BLOCK=118 -ASM_BYTE=119 -ASM_MNEMONIC=120 -ASM_IMM=121 -ASM_COLON=122 -ASM_COMMA=123 -ASM_PAR_BEGIN=124 -ASM_PAR_END=125 -ASM_BRACKET_BEGIN=126 -ASM_BRACKET_END=127 -ASM_DOT=128 -ASM_SHIFT_LEFT=129 -ASM_SHIFT_RIGHT=130 -ASM_PLUS=131 -ASM_MINUS=132 -ASM_LESS_THAN=133 -ASM_GREATER_THAN=134 -ASM_MULTIPLY=135 -ASM_DIVIDE=136 -ASM_CURLY_BEGIN=137 -ASM_CURLY_END=138 -ASM_NUMBER=139 -ASM_NUMFLOAT=140 -ASM_BINFLOAT=141 -ASM_DECFLOAT=142 -ASM_HEXFLOAT=143 -ASM_NUMINT=144 -ASM_BININTEGER=145 -ASM_DECINTEGER=146 -ASM_HEXINTEGER=147 -ASM_CHAR=148 -ASM_MULTI_REL=149 -ASM_MULTI_NAME=150 -ASM_NAME=151 -ASM_WS=152 -ASM_COMMENT_LINE=153 -ASM_COMMENT_BLOCK=154 +IMPORT=92 +INCLUDE=93 +PRAGMA=94 +DEFINE=95 +DEFINE_CONTINUE=96 +UNDEF=97 +IFDEF=98 +IFNDEF=99 +IFIF=100 +ELIF=101 +IFELSE=102 +ENDIF=103 +NUMBER=104 +NUMFLOAT=105 +BINFLOAT=106 +DECFLOAT=107 +HEXFLOAT=108 +NUMINT=109 +BININTEGER=110 +DECINTEGER=111 +HEXINTEGER=112 +NAME=113 +SYSTEMFILE=114 +STRING=115 +CHAR=116 +WS=117 +COMMENT_LINE=118 +COMMENT_BLOCK=119 +ASM_BYTE=120 +ASM_MNEMONIC=121 +ASM_IMM=122 +ASM_COLON=123 +ASM_COMMA=124 +ASM_PAR_BEGIN=125 +ASM_PAR_END=126 +ASM_BRACKET_BEGIN=127 +ASM_BRACKET_END=128 +ASM_DOT=129 +ASM_SHIFT_LEFT=130 +ASM_SHIFT_RIGHT=131 +ASM_PLUS=132 +ASM_MINUS=133 +ASM_LESS_THAN=134 +ASM_GREATER_THAN=135 +ASM_MULTIPLY=136 +ASM_DIVIDE=137 +ASM_CURLY_BEGIN=138 +ASM_CURLY_END=139 +ASM_NUMBER=140 +ASM_NUMFLOAT=141 +ASM_BINFLOAT=142 +ASM_DECFLOAT=143 +ASM_HEXFLOAT=144 +ASM_NUMINT=145 +ASM_BININTEGER=146 +ASM_DECINTEGER=147 +ASM_HEXINTEGER=148 +ASM_CHAR=149 +ASM_MULTI_REL=150 +ASM_MULTI_NAME=151 +ASM_NAME=152 +ASM_WS=153 +ASM_COMMENT_LINE=154 +ASM_COMMENT_BLOCK=155 ';'=8 '..'=11 '?'=12 @@ -219,16 +220,16 @@ ASM_COMMENT_BLOCK=154 'bytes'=85 'cycles'=86 '!'=87 -'#import'=94 -'#include'=95 -'#pragma'=96 -'#define'=97 -'#undef'=99 -'#ifdef'=100 -'#ifndef'=101 -'#if'=102 -'#elif'=103 -'#else'=104 -'#endif'=105 -'.byte'=119 -'#'=121 +'#import'=92 +'#include'=93 +'#pragma'=94 +'#define'=95 +'#undef'=97 +'#ifdef'=98 +'#ifndef'=99 +'#if'=100 +'#elif'=101 +'#else'=102 +'#endif'=103 +'.byte'=120 +'#'=122 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 index dfa998a80..f6043d6e1 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 @@ -37,6 +37,7 @@ declOrImport importDecl : IMPORT STRING #importFile | INCLUDE STRING #includeFile + | INCLUDE SYSTEMFILE #includeSystem ; decl diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp index 357c0cd0e..80af70e2c 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp @@ -91,8 +91,6 @@ null null null null -null -null '#import' '#include' '#pragma' @@ -118,6 +116,9 @@ null null null null +null +null +null '.byte' null '#' @@ -248,8 +249,6 @@ SIGNEDNESS SIMPLETYPE BOOLEAN KICKASM_BODY -STRING -CHAR IMPORT INCLUDE PRAGMA @@ -272,6 +271,9 @@ BININTEGER DECINTEGER HEXINTEGER NAME +SYSTEMFILE +STRING +CHAR WS COMMENT_LINE COMMENT_BLOCK @@ -363,4 +365,4 @@ asmExpr atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 156, 889, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 5, 3, 5, 5, 5, 111, 10, 5, 3, 6, 3, 6, 3, 6, 3, 6, 5, 6, 117, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 134, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 141, 10, 9, 12, 9, 14, 9, 144, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 151, 10, 9, 12, 9, 14, 9, 154, 11, 9, 3, 9, 7, 9, 157, 10, 9, 12, 9, 14, 9, 160, 11, 9, 3, 10, 3, 10, 3, 10, 7, 10, 165, 10, 10, 12, 10, 14, 10, 168, 11, 10, 3, 10, 3, 10, 7, 10, 172, 10, 10, 12, 10, 14, 10, 175, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 7, 11, 181, 10, 11, 12, 11, 14, 11, 184, 11, 11, 3, 11, 3, 11, 5, 11, 188, 10, 11, 3, 11, 3, 11, 7, 11, 192, 10, 11, 12, 11, 14, 11, 195, 11, 11, 3, 11, 3, 11, 5, 11, 199, 10, 11, 3, 12, 7, 12, 202, 10, 12, 12, 12, 14, 12, 205, 11, 12, 3, 12, 3, 12, 7, 12, 209, 10, 12, 12, 12, 14, 12, 212, 11, 12, 3, 13, 3, 13, 7, 13, 216, 10, 13, 12, 13, 14, 13, 219, 11, 13, 3, 14, 3, 14, 5, 14, 223, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 235, 10, 15, 3, 15, 7, 15, 238, 10, 15, 12, 15, 14, 15, 241, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 251, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 258, 10, 16, 3, 16, 3, 16, 3, 16, 5, 16, 263, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 269, 10, 16, 12, 16, 14, 16, 272, 11, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 5, 18, 279, 10, 18, 3, 18, 3, 18, 6, 18, 283, 10, 18, 13, 18, 14, 18, 284, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 297, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 309, 10, 22, 12, 22, 14, 22, 312, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 317, 10, 23, 3, 24, 3, 24, 7, 24, 321, 10, 24, 12, 24, 14, 24, 324, 11, 24, 3, 24, 3, 24, 3, 24, 5, 24, 329, 10, 24, 3, 24, 3, 24, 3, 24, 5, 24, 334, 10, 24, 3, 25, 3, 25, 5, 25, 338, 10, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 7, 26, 345, 10, 26, 12, 26, 14, 26, 348, 11, 26, 3, 27, 3, 27, 7, 27, 352, 10, 27, 12, 27, 14, 27, 355, 11, 27, 3, 27, 3, 27, 3, 27, 5, 27, 360, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 369, 10, 28, 12, 28, 14, 28, 372, 11, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 430, 10, 28, 12, 28, 14, 28, 433, 11, 28, 3, 28, 5, 28, 436, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 447, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 466, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 473, 10, 29, 12, 29, 14, 29, 476, 11, 29, 3, 29, 3, 29, 5, 29, 480, 10, 29, 3, 30, 6, 30, 483, 10, 30, 13, 30, 14, 30, 484, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 492, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 505, 10, 31, 3, 31, 7, 31, 508, 10, 31, 12, 31, 14, 31, 511, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 520, 10, 31, 12, 31, 14, 31, 523, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 534, 10, 31, 12, 31, 14, 31, 537, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 555, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 564, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 571, 10, 31, 3, 32, 6, 32, 574, 10, 32, 13, 32, 14, 32, 575, 3, 32, 3, 32, 3, 32, 5, 32, 581, 10, 32, 5, 32, 583, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 589, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 596, 10, 34, 3, 34, 3, 34, 7, 34, 600, 10, 34, 12, 34, 14, 34, 603, 11, 34, 5, 34, 605, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 613, 10, 34, 3, 35, 5, 35, 616, 10, 35, 3, 35, 5, 35, 619, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 627, 10, 36, 12, 36, 14, 36, 630, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 641, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 649, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 655, 10, 37, 3, 37, 3, 37, 5, 37, 659, 10, 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, 7, 37, 678, 10, 37, 12, 37, 14, 37, 681, 11, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 6, 37, 688, 10, 37, 13, 37, 14, 37, 689, 3, 37, 3, 37, 5, 37, 694, 10, 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, 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, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 744, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 754, 10, 37, 12, 37, 14, 37, 757, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 762, 10, 38, 12, 38, 14, 38, 765, 11, 38, 3, 39, 3, 39, 5, 39, 769, 10, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 777, 10, 40, 12, 40, 14, 40, 780, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 797, 10, 41, 5, 41, 799, 10, 41, 3, 42, 7, 42, 802, 10, 42, 12, 42, 14, 42, 805, 11, 42, 3, 43, 3, 43, 3, 43, 5, 43, 810, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 816, 10, 44, 3, 45, 3, 45, 5, 45, 820, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 826, 10, 46, 12, 46, 14, 46, 829, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 854, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 870, 10, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 7, 48, 884, 10, 48, 12, 48, 14, 48, 887, 11, 48, 3, 48, 2, 9, 16, 28, 30, 42, 70, 72, 94, 49, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 2, 13, 3, 2, 22, 23, 5, 2, 17, 18, 24, 25, 89, 89, 4, 2, 32, 32, 35, 35, 3, 2, 28, 29, 3, 2, 19, 21, 3, 2, 17, 18, 3, 2, 30, 35, 3, 2, 133, 136, 3, 2, 131, 132, 3, 2, 137, 138, 3, 2, 133, 134, 2, 1017, 2, 96, 3, 2, 2, 2, 4, 99, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 110, 3, 2, 2, 2, 10, 116, 3, 2, 2, 2, 12, 133, 3, 2, 2, 2, 14, 135, 3, 2, 2, 2, 16, 138, 3, 2, 2, 2, 18, 161, 3, 2, 2, 2, 20, 198, 3, 2, 2, 2, 22, 203, 3, 2, 2, 2, 24, 213, 3, 2, 2, 2, 26, 220, 3, 2, 2, 2, 28, 226, 3, 2, 2, 2, 30, 257, 3, 2, 2, 2, 32, 273, 3, 2, 2, 2, 34, 276, 3, 2, 2, 2, 36, 288, 3, 2, 2, 2, 38, 291, 3, 2, 2, 2, 40, 294, 3, 2, 2, 2, 42, 302, 3, 2, 2, 2, 44, 313, 3, 2, 2, 2, 46, 318, 3, 2, 2, 2, 48, 335, 3, 2, 2, 2, 50, 341, 3, 2, 2, 2, 52, 359, 3, 2, 2, 2, 54, 435, 3, 2, 2, 2, 56, 479, 3, 2, 2, 2, 58, 482, 3, 2, 2, 2, 60, 570, 3, 2, 2, 2, 62, 573, 3, 2, 2, 2, 64, 584, 3, 2, 2, 2, 66, 612, 3, 2, 2, 2, 68, 618, 3, 2, 2, 2, 70, 620, 3, 2, 2, 2, 72, 693, 3, 2, 2, 2, 74, 758, 3, 2, 2, 2, 76, 766, 3, 2, 2, 2, 78, 772, 3, 2, 2, 2, 80, 798, 3, 2, 2, 2, 82, 803, 3, 2, 2, 2, 84, 809, 3, 2, 2, 2, 86, 815, 3, 2, 2, 2, 88, 817, 3, 2, 2, 2, 90, 821, 3, 2, 2, 2, 92, 853, 3, 2, 2, 2, 94, 869, 3, 2, 2, 2, 96, 97, 5, 6, 4, 2, 97, 98, 7, 2, 2, 3, 98, 3, 3, 2, 2, 2, 99, 100, 5, 82, 42, 2, 100, 101, 7, 2, 2, 3, 101, 5, 3, 2, 2, 2, 102, 104, 5, 8, 5, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 7, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 111, 5, 12, 7, 2, 109, 111, 5, 10, 6, 2, 110, 108, 3, 2, 2, 2, 110, 109, 3, 2, 2, 2, 111, 9, 3, 2, 2, 2, 112, 113, 7, 96, 2, 2, 113, 117, 7, 94, 2, 2, 114, 115, 7, 97, 2, 2, 115, 117, 7, 94, 2, 2, 116, 112, 3, 2, 2, 2, 116, 114, 3, 2, 2, 2, 117, 11, 3, 2, 2, 2, 118, 119, 5, 14, 8, 2, 119, 120, 7, 10, 2, 2, 120, 134, 3, 2, 2, 2, 121, 122, 5, 34, 18, 2, 122, 123, 7, 10, 2, 2, 123, 134, 3, 2, 2, 2, 124, 125, 5, 40, 21, 2, 125, 126, 7, 10, 2, 2, 126, 134, 3, 2, 2, 2, 127, 134, 5, 46, 24, 2, 128, 134, 5, 76, 39, 2, 129, 134, 5, 54, 28, 2, 130, 131, 5, 18, 10, 2, 131, 132, 7, 10, 2, 2, 132, 134, 3, 2, 2, 2, 133, 118, 3, 2, 2, 2, 133, 121, 3, 2, 2, 2, 133, 124, 3, 2, 2, 2, 133, 127, 3, 2, 2, 2, 133, 128, 3, 2, 2, 2, 133, 129, 3, 2, 2, 2, 133, 130, 3, 2, 2, 2, 134, 13, 3, 2, 2, 2, 135, 136, 5, 22, 12, 2, 136, 137, 5, 16, 9, 2, 137, 15, 3, 2, 2, 2, 138, 142, 8, 9, 1, 2, 139, 141, 5, 24, 13, 2, 140, 139, 3, 2, 2, 2, 141, 144, 3, 2, 2, 2, 142, 140, 3, 2, 2, 2, 142, 143, 3, 2, 2, 2, 143, 145, 3, 2, 2, 2, 144, 142, 3, 2, 2, 2, 145, 146, 5, 20, 11, 2, 146, 158, 3, 2, 2, 2, 147, 148, 12, 3, 2, 2, 148, 152, 7, 12, 2, 2, 149, 151, 5, 24, 13, 2, 150, 149, 3, 2, 2, 2, 151, 154, 3, 2, 2, 2, 152, 150, 3, 2, 2, 2, 152, 153, 3, 2, 2, 2, 153, 155, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 155, 157, 5, 20, 11, 2, 156, 147, 3, 2, 2, 2, 157, 160, 3, 2, 2, 2, 158, 156, 3, 2, 2, 2, 158, 159, 3, 2, 2, 2, 159, 17, 3, 2, 2, 2, 160, 158, 3, 2, 2, 2, 161, 162, 7, 40, 2, 2, 162, 166, 5, 22, 12, 2, 163, 165, 5, 24, 13, 2, 164, 163, 3, 2, 2, 2, 165, 168, 3, 2, 2, 2, 166, 164, 3, 2, 2, 2, 166, 167, 3, 2, 2, 2, 167, 169, 3, 2, 2, 2, 168, 166, 3, 2, 2, 2, 169, 173, 7, 117, 2, 2, 170, 172, 5, 26, 14, 2, 171, 170, 3, 2, 2, 2, 172, 175, 3, 2, 2, 2, 173, 171, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 176, 3, 2, 2, 2, 175, 173, 3, 2, 2, 2, 176, 177, 8, 10, 1, 2, 177, 19, 3, 2, 2, 2, 178, 182, 7, 117, 2, 2, 179, 181, 5, 26, 14, 2, 180, 179, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 187, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 185, 186, 7, 38, 2, 2, 186, 188, 5, 72, 37, 2, 187, 185, 3, 2, 2, 2, 187, 188, 3, 2, 2, 2, 188, 199, 3, 2, 2, 2, 189, 193, 7, 117, 2, 2, 190, 192, 5, 26, 14, 2, 191, 190, 3, 2, 2, 2, 192, 195, 3, 2, 2, 2, 193, 191, 3, 2, 2, 2, 193, 194, 3, 2, 2, 2, 194, 196, 3, 2, 2, 2, 195, 193, 3, 2, 2, 2, 196, 197, 7, 38, 2, 2, 197, 199, 5, 76, 39, 2, 198, 178, 3, 2, 2, 2, 198, 189, 3, 2, 2, 2, 199, 21, 3, 2, 2, 2, 200, 202, 5, 56, 29, 2, 201, 200, 3, 2, 2, 2, 202, 205, 3, 2, 2, 2, 203, 201, 3, 2, 2, 2, 203, 204, 3, 2, 2, 2, 204, 206, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 206, 210, 5, 30, 16, 2, 207, 209, 5, 56, 29, 2, 208, 207, 3, 2, 2, 2, 209, 212, 3, 2, 2, 2, 210, 208, 3, 2, 2, 2, 210, 211, 3, 2, 2, 2, 211, 23, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 213, 217, 7, 19, 2, 2, 214, 216, 5, 56, 29, 2, 215, 214, 3, 2, 2, 2, 216, 219, 3, 2, 2, 2, 217, 215, 3, 2, 2, 2, 217, 218, 3, 2, 2, 2, 218, 25, 3, 2, 2, 2, 219, 217, 3, 2, 2, 2, 220, 222, 7, 6, 2, 2, 221, 223, 5, 72, 37, 2, 222, 221, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 7, 7, 2, 2, 225, 27, 3, 2, 2, 2, 226, 227, 8, 15, 1, 2, 227, 228, 5, 30, 16, 2, 228, 239, 3, 2, 2, 2, 229, 230, 12, 4, 2, 2, 230, 238, 7, 19, 2, 2, 231, 232, 12, 3, 2, 2, 232, 234, 7, 6, 2, 2, 233, 235, 5, 72, 37, 2, 234, 233, 3, 2, 2, 2, 234, 235, 3, 2, 2, 2, 235, 236, 3, 2, 2, 2, 236, 238, 7, 7, 2, 2, 237, 229, 3, 2, 2, 2, 237, 231, 3, 2, 2, 2, 238, 241, 3, 2, 2, 2, 239, 237, 3, 2, 2, 2, 239, 240, 3, 2, 2, 2, 240, 29, 3, 2, 2, 2, 241, 239, 3, 2, 2, 2, 242, 243, 8, 16, 1, 2, 243, 244, 7, 8, 2, 2, 244, 245, 5, 30, 16, 2, 245, 246, 7, 9, 2, 2, 246, 258, 3, 2, 2, 2, 247, 258, 7, 91, 2, 2, 248, 250, 7, 90, 2, 2, 249, 251, 7, 91, 2, 2, 250, 249, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 258, 3, 2, 2, 2, 252, 258, 5, 34, 18, 2, 253, 258, 5, 32, 17, 2, 254, 258, 5, 40, 21, 2, 255, 258, 5, 38, 20, 2, 256, 258, 7, 3, 2, 2, 257, 242, 3, 2, 2, 2, 257, 247, 3, 2, 2, 2, 257, 248, 3, 2, 2, 2, 257, 252, 3, 2, 2, 2, 257, 253, 3, 2, 2, 2, 257, 254, 3, 2, 2, 2, 257, 255, 3, 2, 2, 2, 257, 256, 3, 2, 2, 2, 258, 270, 3, 2, 2, 2, 259, 260, 12, 9, 2, 2, 260, 262, 7, 6, 2, 2, 261, 263, 5, 72, 37, 2, 262, 261, 3, 2, 2, 2, 262, 263, 3, 2, 2, 2, 263, 264, 3, 2, 2, 2, 264, 269, 7, 7, 2, 2, 265, 266, 12, 8, 2, 2, 266, 267, 7, 8, 2, 2, 267, 269, 7, 9, 2, 2, 268, 259, 3, 2, 2, 2, 268, 265, 3, 2, 2, 2, 269, 272, 3, 2, 2, 2, 270, 268, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 31, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 273, 274, 7, 78, 2, 2, 274, 275, 7, 117, 2, 2, 275, 33, 3, 2, 2, 2, 276, 278, 7, 78, 2, 2, 277, 279, 7, 117, 2, 2, 278, 277, 3, 2, 2, 2, 278, 279, 3, 2, 2, 2, 279, 280, 3, 2, 2, 2, 280, 282, 7, 4, 2, 2, 281, 283, 5, 36, 19, 2, 282, 281, 3, 2, 2, 2, 283, 284, 3, 2, 2, 2, 284, 282, 3, 2, 2, 2, 284, 285, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 7, 5, 2, 2, 287, 35, 3, 2, 2, 2, 288, 289, 5, 14, 8, 2, 289, 290, 7, 10, 2, 2, 290, 37, 3, 2, 2, 2, 291, 292, 7, 79, 2, 2, 292, 293, 7, 117, 2, 2, 293, 39, 3, 2, 2, 2, 294, 296, 7, 79, 2, 2, 295, 297, 7, 117, 2, 2, 296, 295, 3, 2, 2, 2, 296, 297, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 299, 7, 4, 2, 2, 299, 300, 5, 42, 22, 2, 300, 301, 7, 5, 2, 2, 301, 41, 3, 2, 2, 2, 302, 303, 8, 22, 1, 2, 303, 304, 5, 44, 23, 2, 304, 310, 3, 2, 2, 2, 305, 306, 12, 3, 2, 2, 306, 307, 7, 12, 2, 2, 307, 309, 5, 44, 23, 2, 308, 305, 3, 2, 2, 2, 309, 312, 3, 2, 2, 2, 310, 308, 3, 2, 2, 2, 310, 311, 3, 2, 2, 2, 311, 43, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 313, 316, 7, 117, 2, 2, 314, 315, 7, 38, 2, 2, 315, 317, 5, 72, 37, 2, 316, 314, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 45, 3, 2, 2, 2, 318, 322, 5, 22, 12, 2, 319, 321, 5, 24, 13, 2, 320, 319, 3, 2, 2, 2, 321, 324, 3, 2, 2, 2, 322, 320, 3, 2, 2, 2, 322, 323, 3, 2, 2, 2, 323, 325, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 325, 326, 7, 117, 2, 2, 326, 328, 7, 8, 2, 2, 327, 329, 5, 50, 26, 2, 328, 327, 3, 2, 2, 2, 328, 329, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 333, 7, 9, 2, 2, 331, 334, 5, 48, 25, 2, 332, 334, 7, 10, 2, 2, 333, 331, 3, 2, 2, 2, 333, 332, 3, 2, 2, 2, 334, 47, 3, 2, 2, 2, 335, 337, 7, 4, 2, 2, 336, 338, 5, 58, 30, 2, 337, 336, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 339, 3, 2, 2, 2, 339, 340, 7, 5, 2, 2, 340, 49, 3, 2, 2, 2, 341, 346, 5, 52, 27, 2, 342, 343, 7, 12, 2, 2, 343, 345, 5, 52, 27, 2, 344, 342, 3, 2, 2, 2, 345, 348, 3, 2, 2, 2, 346, 344, 3, 2, 2, 2, 346, 347, 3, 2, 2, 2, 347, 51, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 349, 353, 5, 22, 12, 2, 350, 352, 5, 24, 13, 2, 351, 350, 3, 2, 2, 2, 352, 355, 3, 2, 2, 2, 353, 351, 3, 2, 2, 2, 353, 354, 3, 2, 2, 2, 354, 356, 3, 2, 2, 2, 355, 353, 3, 2, 2, 2, 356, 357, 7, 117, 2, 2, 357, 360, 3, 2, 2, 2, 358, 360, 7, 91, 2, 2, 359, 349, 3, 2, 2, 2, 359, 358, 3, 2, 2, 2, 360, 53, 3, 2, 2, 2, 361, 362, 7, 98, 2, 2, 362, 363, 7, 41, 2, 2, 363, 364, 3, 2, 2, 2, 364, 365, 7, 8, 2, 2, 365, 370, 7, 108, 2, 2, 366, 367, 7, 12, 2, 2, 367, 369, 7, 108, 2, 2, 368, 366, 3, 2, 2, 2, 369, 372, 3, 2, 2, 2, 370, 368, 3, 2, 2, 2, 370, 371, 3, 2, 2, 2, 371, 373, 3, 2, 2, 2, 372, 370, 3, 2, 2, 2, 373, 436, 7, 9, 2, 2, 374, 375, 7, 98, 2, 2, 375, 376, 7, 42, 2, 2, 376, 377, 3, 2, 2, 2, 377, 378, 7, 8, 2, 2, 378, 379, 7, 108, 2, 2, 379, 436, 7, 9, 2, 2, 380, 381, 7, 98, 2, 2, 381, 382, 7, 43, 2, 2, 382, 383, 3, 2, 2, 2, 383, 384, 7, 8, 2, 2, 384, 385, 7, 117, 2, 2, 385, 436, 7, 9, 2, 2, 386, 387, 7, 98, 2, 2, 387, 388, 7, 45, 2, 2, 388, 389, 3, 2, 2, 2, 389, 390, 7, 8, 2, 2, 390, 391, 7, 117, 2, 2, 391, 436, 7, 9, 2, 2, 392, 393, 7, 98, 2, 2, 393, 394, 7, 44, 2, 2, 394, 395, 3, 2, 2, 2, 395, 396, 7, 8, 2, 2, 396, 397, 7, 94, 2, 2, 397, 436, 7, 9, 2, 2, 398, 399, 7, 98, 2, 2, 399, 400, 7, 46, 2, 2, 400, 401, 3, 2, 2, 2, 401, 402, 7, 8, 2, 2, 402, 403, 7, 117, 2, 2, 403, 436, 7, 9, 2, 2, 404, 405, 7, 98, 2, 2, 405, 406, 7, 47, 2, 2, 406, 407, 3, 2, 2, 2, 407, 408, 7, 8, 2, 2, 408, 409, 7, 117, 2, 2, 409, 436, 7, 9, 2, 2, 410, 411, 7, 98, 2, 2, 411, 412, 7, 48, 2, 2, 412, 413, 3, 2, 2, 2, 413, 414, 7, 8, 2, 2, 414, 415, 7, 117, 2, 2, 415, 436, 7, 9, 2, 2, 416, 417, 7, 98, 2, 2, 417, 418, 7, 63, 2, 2, 418, 419, 3, 2, 2, 2, 419, 420, 7, 8, 2, 2, 420, 421, 7, 64, 2, 2, 421, 436, 7, 9, 2, 2, 422, 423, 7, 98, 2, 2, 423, 424, 7, 65, 2, 2, 424, 425, 3, 2, 2, 2, 425, 426, 7, 8, 2, 2, 426, 431, 7, 117, 2, 2, 427, 428, 7, 12, 2, 2, 428, 430, 7, 117, 2, 2, 429, 427, 3, 2, 2, 2, 430, 433, 3, 2, 2, 2, 431, 429, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 434, 3, 2, 2, 2, 433, 431, 3, 2, 2, 2, 434, 436, 7, 9, 2, 2, 435, 361, 3, 2, 2, 2, 435, 374, 3, 2, 2, 2, 435, 380, 3, 2, 2, 2, 435, 386, 3, 2, 2, 2, 435, 392, 3, 2, 2, 2, 435, 398, 3, 2, 2, 2, 435, 404, 3, 2, 2, 2, 435, 410, 3, 2, 2, 2, 435, 416, 3, 2, 2, 2, 435, 422, 3, 2, 2, 2, 436, 55, 3, 2, 2, 2, 437, 480, 7, 49, 2, 2, 438, 439, 7, 52, 2, 2, 439, 440, 7, 8, 2, 2, 440, 441, 7, 108, 2, 2, 441, 480, 7, 9, 2, 2, 442, 446, 7, 57, 2, 2, 443, 444, 7, 8, 2, 2, 444, 445, 7, 117, 2, 2, 445, 447, 7, 9, 2, 2, 446, 443, 3, 2, 2, 2, 446, 447, 3, 2, 2, 2, 447, 480, 3, 2, 2, 2, 448, 480, 7, 59, 2, 2, 449, 480, 7, 60, 2, 2, 450, 451, 7, 58, 2, 2, 451, 452, 7, 8, 2, 2, 452, 453, 7, 108, 2, 2, 453, 480, 7, 9, 2, 2, 454, 480, 7, 54, 2, 2, 455, 480, 7, 55, 2, 2, 456, 480, 7, 61, 2, 2, 457, 480, 7, 62, 2, 2, 458, 480, 7, 50, 2, 2, 459, 480, 7, 51, 2, 2, 460, 480, 7, 53, 2, 2, 461, 465, 7, 56, 2, 2, 462, 463, 7, 8, 2, 2, 463, 464, 7, 117, 2, 2, 464, 466, 7, 9, 2, 2, 465, 462, 3, 2, 2, 2, 465, 466, 3, 2, 2, 2, 466, 480, 3, 2, 2, 2, 467, 468, 7, 41, 2, 2, 468, 469, 7, 8, 2, 2, 469, 474, 7, 108, 2, 2, 470, 471, 7, 12, 2, 2, 471, 473, 7, 108, 2, 2, 472, 470, 3, 2, 2, 2, 473, 476, 3, 2, 2, 2, 474, 472, 3, 2, 2, 2, 474, 475, 3, 2, 2, 2, 475, 477, 3, 2, 2, 2, 476, 474, 3, 2, 2, 2, 477, 480, 7, 9, 2, 2, 478, 480, 7, 64, 2, 2, 479, 437, 3, 2, 2, 2, 479, 438, 3, 2, 2, 2, 479, 442, 3, 2, 2, 2, 479, 448, 3, 2, 2, 2, 479, 449, 3, 2, 2, 2, 479, 450, 3, 2, 2, 2, 479, 454, 3, 2, 2, 2, 479, 455, 3, 2, 2, 2, 479, 456, 3, 2, 2, 2, 479, 457, 3, 2, 2, 2, 479, 458, 3, 2, 2, 2, 479, 459, 3, 2, 2, 2, 479, 460, 3, 2, 2, 2, 479, 461, 3, 2, 2, 2, 479, 467, 3, 2, 2, 2, 479, 478, 3, 2, 2, 2, 480, 57, 3, 2, 2, 2, 481, 483, 5, 60, 31, 2, 482, 481, 3, 2, 2, 2, 483, 484, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 59, 3, 2, 2, 2, 486, 487, 5, 14, 8, 2, 487, 488, 7, 10, 2, 2, 488, 571, 3, 2, 2, 2, 489, 491, 7, 4, 2, 2, 490, 492, 5, 58, 30, 2, 491, 490, 3, 2, 2, 2, 491, 492, 3, 2, 2, 2, 492, 493, 3, 2, 2, 2, 493, 571, 7, 5, 2, 2, 494, 495, 5, 70, 36, 2, 495, 496, 7, 10, 2, 2, 496, 571, 3, 2, 2, 2, 497, 498, 7, 66, 2, 2, 498, 499, 7, 8, 2, 2, 499, 500, 5, 70, 36, 2, 500, 501, 7, 9, 2, 2, 501, 504, 5, 60, 31, 2, 502, 503, 7, 67, 2, 2, 503, 505, 5, 60, 31, 2, 504, 502, 3, 2, 2, 2, 504, 505, 3, 2, 2, 2, 505, 571, 3, 2, 2, 2, 506, 508, 5, 56, 29, 2, 507, 506, 3, 2, 2, 2, 508, 511, 3, 2, 2, 2, 509, 507, 3, 2, 2, 2, 509, 510, 3, 2, 2, 2, 510, 512, 3, 2, 2, 2, 511, 509, 3, 2, 2, 2, 512, 513, 7, 68, 2, 2, 513, 514, 7, 8, 2, 2, 514, 515, 5, 70, 36, 2, 515, 516, 7, 9, 2, 2, 516, 517, 5, 60, 31, 2, 517, 571, 3, 2, 2, 2, 518, 520, 5, 56, 29, 2, 519, 518, 3, 2, 2, 2, 520, 523, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 521, 522, 3, 2, 2, 2, 522, 524, 3, 2, 2, 2, 523, 521, 3, 2, 2, 2, 524, 525, 7, 69, 2, 2, 525, 526, 5, 60, 31, 2, 526, 527, 7, 68, 2, 2, 527, 528, 7, 8, 2, 2, 528, 529, 5, 70, 36, 2, 529, 530, 7, 9, 2, 2, 530, 531, 7, 10, 2, 2, 531, 571, 3, 2, 2, 2, 532, 534, 5, 56, 29, 2, 533, 532, 3, 2, 2, 2, 534, 537, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 538, 3, 2, 2, 2, 537, 535, 3, 2, 2, 2, 538, 539, 7, 70, 2, 2, 539, 540, 7, 8, 2, 2, 540, 541, 5, 66, 34, 2, 541, 542, 7, 9, 2, 2, 542, 543, 5, 60, 31, 2, 543, 571, 3, 2, 2, 2, 544, 545, 7, 71, 2, 2, 545, 546, 7, 8, 2, 2, 546, 547, 5, 70, 36, 2, 547, 548, 7, 9, 2, 2, 548, 549, 7, 4, 2, 2, 549, 550, 5, 62, 32, 2, 550, 551, 7, 5, 2, 2, 551, 571, 3, 2, 2, 2, 552, 554, 7, 72, 2, 2, 553, 555, 5, 70, 36, 2, 554, 553, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 556, 3, 2, 2, 2, 556, 571, 7, 10, 2, 2, 557, 558, 7, 73, 2, 2, 558, 571, 7, 10, 2, 2, 559, 560, 7, 74, 2, 2, 560, 571, 7, 10, 2, 2, 561, 563, 7, 75, 2, 2, 562, 564, 5, 78, 40, 2, 563, 562, 3, 2, 2, 2, 563, 564, 3, 2, 2, 2, 564, 565, 3, 2, 2, 2, 565, 566, 7, 4, 2, 2, 566, 567, 5, 82, 42, 2, 567, 568, 7, 140, 2, 2, 568, 571, 3, 2, 2, 2, 569, 571, 5, 76, 39, 2, 570, 486, 3, 2, 2, 2, 570, 489, 3, 2, 2, 2, 570, 494, 3, 2, 2, 2, 570, 497, 3, 2, 2, 2, 570, 509, 3, 2, 2, 2, 570, 521, 3, 2, 2, 2, 570, 535, 3, 2, 2, 2, 570, 544, 3, 2, 2, 2, 570, 552, 3, 2, 2, 2, 570, 557, 3, 2, 2, 2, 570, 559, 3, 2, 2, 2, 570, 561, 3, 2, 2, 2, 570, 569, 3, 2, 2, 2, 571, 61, 3, 2, 2, 2, 572, 574, 5, 64, 33, 2, 573, 572, 3, 2, 2, 2, 574, 575, 3, 2, 2, 2, 575, 573, 3, 2, 2, 2, 575, 576, 3, 2, 2, 2, 576, 582, 3, 2, 2, 2, 577, 578, 7, 76, 2, 2, 578, 580, 7, 11, 2, 2, 579, 581, 5, 58, 30, 2, 580, 579, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 583, 3, 2, 2, 2, 582, 577, 3, 2, 2, 2, 582, 583, 3, 2, 2, 2, 583, 63, 3, 2, 2, 2, 584, 585, 7, 77, 2, 2, 585, 586, 5, 72, 37, 2, 586, 588, 7, 11, 2, 2, 587, 589, 5, 58, 30, 2, 588, 587, 3, 2, 2, 2, 588, 589, 3, 2, 2, 2, 589, 65, 3, 2, 2, 2, 590, 591, 5, 68, 35, 2, 591, 592, 7, 10, 2, 2, 592, 593, 5, 70, 36, 2, 593, 595, 7, 10, 2, 2, 594, 596, 5, 70, 36, 2, 595, 594, 3, 2, 2, 2, 595, 596, 3, 2, 2, 2, 596, 613, 3, 2, 2, 2, 597, 601, 5, 22, 12, 2, 598, 600, 5, 24, 13, 2, 599, 598, 3, 2, 2, 2, 600, 603, 3, 2, 2, 2, 601, 599, 3, 2, 2, 2, 601, 602, 3, 2, 2, 2, 602, 605, 3, 2, 2, 2, 603, 601, 3, 2, 2, 2, 604, 597, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 606, 3, 2, 2, 2, 606, 607, 7, 117, 2, 2, 607, 608, 7, 11, 2, 2, 608, 609, 5, 72, 37, 2, 609, 610, 7, 13, 2, 2, 610, 611, 5, 72, 37, 2, 611, 613, 3, 2, 2, 2, 612, 590, 3, 2, 2, 2, 612, 604, 3, 2, 2, 2, 613, 67, 3, 2, 2, 2, 614, 616, 5, 14, 8, 2, 615, 614, 3, 2, 2, 2, 615, 616, 3, 2, 2, 2, 616, 619, 3, 2, 2, 2, 617, 619, 5, 70, 36, 2, 618, 615, 3, 2, 2, 2, 618, 617, 3, 2, 2, 2, 619, 69, 3, 2, 2, 2, 620, 621, 8, 36, 1, 2, 621, 622, 5, 72, 37, 2, 622, 628, 3, 2, 2, 2, 623, 624, 12, 3, 2, 2, 624, 625, 7, 12, 2, 2, 625, 627, 5, 72, 37, 2, 626, 623, 3, 2, 2, 2, 627, 630, 3, 2, 2, 2, 628, 626, 3, 2, 2, 2, 628, 629, 3, 2, 2, 2, 629, 71, 3, 2, 2, 2, 630, 628, 3, 2, 2, 2, 631, 632, 8, 37, 1, 2, 632, 633, 7, 8, 2, 2, 633, 634, 5, 70, 36, 2, 634, 635, 7, 9, 2, 2, 635, 694, 3, 2, 2, 2, 636, 637, 7, 80, 2, 2, 637, 640, 7, 8, 2, 2, 638, 641, 5, 72, 37, 2, 639, 641, 5, 28, 15, 2, 640, 638, 3, 2, 2, 2, 640, 639, 3, 2, 2, 2, 641, 642, 3, 2, 2, 2, 642, 643, 7, 9, 2, 2, 643, 694, 3, 2, 2, 2, 644, 645, 7, 81, 2, 2, 645, 648, 7, 8, 2, 2, 646, 649, 5, 72, 37, 2, 647, 649, 5, 28, 15, 2, 648, 646, 3, 2, 2, 2, 648, 647, 3, 2, 2, 2, 649, 650, 3, 2, 2, 2, 650, 651, 7, 9, 2, 2, 651, 694, 3, 2, 2, 2, 652, 654, 7, 82, 2, 2, 653, 655, 7, 8, 2, 2, 654, 653, 3, 2, 2, 2, 654, 655, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 658, 7, 117, 2, 2, 657, 659, 7, 9, 2, 2, 658, 657, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 694, 3, 2, 2, 2, 660, 661, 7, 8, 2, 2, 661, 662, 5, 28, 15, 2, 662, 663, 7, 9, 2, 2, 663, 664, 5, 72, 37, 26, 664, 694, 3, 2, 2, 2, 665, 666, 9, 2, 2, 2, 666, 694, 5, 72, 37, 25, 667, 668, 7, 19, 2, 2, 668, 694, 5, 72, 37, 23, 669, 670, 9, 3, 2, 2, 670, 694, 5, 72, 37, 22, 671, 672, 9, 4, 2, 2, 672, 694, 5, 72, 37, 18, 673, 674, 7, 4, 2, 2, 674, 679, 5, 72, 37, 2, 675, 676, 7, 12, 2, 2, 676, 678, 5, 72, 37, 2, 677, 675, 3, 2, 2, 2, 678, 681, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 679, 680, 3, 2, 2, 2, 680, 682, 3, 2, 2, 2, 681, 679, 3, 2, 2, 2, 682, 683, 7, 5, 2, 2, 683, 694, 3, 2, 2, 2, 684, 694, 7, 117, 2, 2, 685, 694, 7, 108, 2, 2, 686, 688, 7, 94, 2, 2, 687, 686, 3, 2, 2, 2, 688, 689, 3, 2, 2, 2, 689, 687, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 694, 3, 2, 2, 2, 691, 694, 7, 95, 2, 2, 692, 694, 7, 92, 2, 2, 693, 631, 3, 2, 2, 2, 693, 636, 3, 2, 2, 2, 693, 644, 3, 2, 2, 2, 693, 652, 3, 2, 2, 2, 693, 660, 3, 2, 2, 2, 693, 665, 3, 2, 2, 2, 693, 667, 3, 2, 2, 2, 693, 669, 3, 2, 2, 2, 693, 671, 3, 2, 2, 2, 693, 673, 3, 2, 2, 2, 693, 684, 3, 2, 2, 2, 693, 685, 3, 2, 2, 2, 693, 687, 3, 2, 2, 2, 693, 691, 3, 2, 2, 2, 693, 692, 3, 2, 2, 2, 694, 755, 3, 2, 2, 2, 695, 696, 12, 21, 2, 2, 696, 697, 9, 5, 2, 2, 697, 754, 5, 72, 37, 22, 698, 699, 12, 20, 2, 2, 699, 700, 9, 6, 2, 2, 700, 754, 5, 72, 37, 21, 701, 702, 12, 19, 2, 2, 702, 703, 9, 7, 2, 2, 703, 754, 5, 72, 37, 20, 704, 705, 12, 17, 2, 2, 705, 706, 9, 8, 2, 2, 706, 754, 5, 72, 37, 18, 707, 708, 12, 16, 2, 2, 708, 709, 7, 24, 2, 2, 709, 754, 5, 72, 37, 17, 710, 711, 12, 15, 2, 2, 711, 712, 7, 26, 2, 2, 712, 754, 5, 72, 37, 16, 713, 714, 12, 14, 2, 2, 714, 715, 7, 27, 2, 2, 715, 754, 5, 72, 37, 15, 716, 717, 12, 13, 2, 2, 717, 718, 7, 36, 2, 2, 718, 754, 5, 72, 37, 14, 719, 720, 12, 12, 2, 2, 720, 721, 7, 37, 2, 2, 721, 754, 5, 72, 37, 13, 722, 723, 12, 11, 2, 2, 723, 724, 7, 14, 2, 2, 724, 725, 5, 72, 37, 2, 725, 726, 7, 11, 2, 2, 726, 727, 5, 72, 37, 12, 727, 754, 3, 2, 2, 2, 728, 729, 12, 10, 2, 2, 729, 730, 7, 38, 2, 2, 730, 754, 5, 72, 37, 10, 731, 732, 12, 9, 2, 2, 732, 733, 7, 39, 2, 2, 733, 754, 5, 72, 37, 9, 734, 735, 12, 33, 2, 2, 735, 736, 7, 15, 2, 2, 736, 754, 7, 117, 2, 2, 737, 738, 12, 32, 2, 2, 738, 739, 7, 16, 2, 2, 739, 754, 7, 117, 2, 2, 740, 741, 12, 31, 2, 2, 741, 743, 7, 8, 2, 2, 742, 744, 5, 74, 38, 2, 743, 742, 3, 2, 2, 2, 743, 744, 3, 2, 2, 2, 744, 745, 3, 2, 2, 2, 745, 754, 7, 9, 2, 2, 746, 747, 12, 27, 2, 2, 747, 748, 7, 6, 2, 2, 748, 749, 5, 70, 36, 2, 749, 750, 7, 7, 2, 2, 750, 754, 3, 2, 2, 2, 751, 752, 12, 24, 2, 2, 752, 754, 9, 2, 2, 2, 753, 695, 3, 2, 2, 2, 753, 698, 3, 2, 2, 2, 753, 701, 3, 2, 2, 2, 753, 704, 3, 2, 2, 2, 753, 707, 3, 2, 2, 2, 753, 710, 3, 2, 2, 2, 753, 713, 3, 2, 2, 2, 753, 716, 3, 2, 2, 2, 753, 719, 3, 2, 2, 2, 753, 722, 3, 2, 2, 2, 753, 728, 3, 2, 2, 2, 753, 731, 3, 2, 2, 2, 753, 734, 3, 2, 2, 2, 753, 737, 3, 2, 2, 2, 753, 740, 3, 2, 2, 2, 753, 746, 3, 2, 2, 2, 753, 751, 3, 2, 2, 2, 754, 757, 3, 2, 2, 2, 755, 753, 3, 2, 2, 2, 755, 756, 3, 2, 2, 2, 756, 73, 3, 2, 2, 2, 757, 755, 3, 2, 2, 2, 758, 763, 5, 72, 37, 2, 759, 760, 7, 12, 2, 2, 760, 762, 5, 72, 37, 2, 761, 759, 3, 2, 2, 2, 762, 765, 3, 2, 2, 2, 763, 761, 3, 2, 2, 2, 763, 764, 3, 2, 2, 2, 764, 75, 3, 2, 2, 2, 765, 763, 3, 2, 2, 2, 766, 768, 7, 83, 2, 2, 767, 769, 5, 78, 40, 2, 768, 767, 3, 2, 2, 2, 768, 769, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 771, 7, 93, 2, 2, 771, 77, 3, 2, 2, 2, 772, 773, 7, 8, 2, 2, 773, 778, 5, 80, 41, 2, 774, 775, 7, 12, 2, 2, 775, 777, 5, 80, 41, 2, 776, 774, 3, 2, 2, 2, 777, 780, 3, 2, 2, 2, 778, 776, 3, 2, 2, 2, 778, 779, 3, 2, 2, 2, 779, 781, 3, 2, 2, 2, 780, 778, 3, 2, 2, 2, 781, 782, 7, 9, 2, 2, 782, 79, 3, 2, 2, 2, 783, 784, 7, 84, 2, 2, 784, 799, 7, 94, 2, 2, 785, 786, 7, 85, 2, 2, 786, 799, 7, 117, 2, 2, 787, 788, 7, 86, 2, 2, 788, 799, 7, 94, 2, 2, 789, 790, 7, 87, 2, 2, 790, 799, 5, 72, 37, 2, 791, 792, 7, 88, 2, 2, 792, 799, 5, 72, 37, 2, 793, 796, 7, 42, 2, 2, 794, 797, 7, 53, 2, 2, 795, 797, 5, 72, 37, 2, 796, 794, 3, 2, 2, 2, 796, 795, 3, 2, 2, 2, 797, 799, 3, 2, 2, 2, 798, 783, 3, 2, 2, 2, 798, 785, 3, 2, 2, 2, 798, 787, 3, 2, 2, 2, 798, 789, 3, 2, 2, 2, 798, 791, 3, 2, 2, 2, 798, 793, 3, 2, 2, 2, 799, 81, 3, 2, 2, 2, 800, 802, 5, 84, 43, 2, 801, 800, 3, 2, 2, 2, 802, 805, 3, 2, 2, 2, 803, 801, 3, 2, 2, 2, 803, 804, 3, 2, 2, 2, 804, 83, 3, 2, 2, 2, 805, 803, 3, 2, 2, 2, 806, 810, 5, 86, 44, 2, 807, 810, 5, 88, 45, 2, 808, 810, 5, 90, 46, 2, 809, 806, 3, 2, 2, 2, 809, 807, 3, 2, 2, 2, 809, 808, 3, 2, 2, 2, 810, 85, 3, 2, 2, 2, 811, 812, 7, 153, 2, 2, 812, 816, 7, 124, 2, 2, 813, 814, 7, 152, 2, 2, 814, 816, 7, 124, 2, 2, 815, 811, 3, 2, 2, 2, 815, 813, 3, 2, 2, 2, 816, 87, 3, 2, 2, 2, 817, 819, 7, 122, 2, 2, 818, 820, 5, 92, 47, 2, 819, 818, 3, 2, 2, 2, 819, 820, 3, 2, 2, 2, 820, 89, 3, 2, 2, 2, 821, 822, 7, 121, 2, 2, 822, 827, 5, 94, 48, 2, 823, 824, 7, 125, 2, 2, 824, 826, 5, 94, 48, 2, 825, 823, 3, 2, 2, 2, 826, 829, 3, 2, 2, 2, 827, 825, 3, 2, 2, 2, 827, 828, 3, 2, 2, 2, 828, 91, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 830, 854, 5, 94, 48, 2, 831, 832, 7, 123, 2, 2, 832, 854, 5, 94, 48, 2, 833, 834, 5, 94, 48, 2, 834, 835, 7, 125, 2, 2, 835, 836, 7, 153, 2, 2, 836, 854, 3, 2, 2, 2, 837, 838, 7, 126, 2, 2, 838, 839, 5, 94, 48, 2, 839, 840, 7, 127, 2, 2, 840, 841, 7, 125, 2, 2, 841, 842, 7, 153, 2, 2, 842, 854, 3, 2, 2, 2, 843, 844, 7, 126, 2, 2, 844, 845, 5, 94, 48, 2, 845, 846, 7, 125, 2, 2, 846, 847, 7, 153, 2, 2, 847, 848, 7, 127, 2, 2, 848, 854, 3, 2, 2, 2, 849, 850, 7, 126, 2, 2, 850, 851, 5, 94, 48, 2, 851, 852, 7, 127, 2, 2, 852, 854, 3, 2, 2, 2, 853, 830, 3, 2, 2, 2, 853, 831, 3, 2, 2, 2, 853, 833, 3, 2, 2, 2, 853, 837, 3, 2, 2, 2, 853, 843, 3, 2, 2, 2, 853, 849, 3, 2, 2, 2, 854, 93, 3, 2, 2, 2, 855, 856, 8, 48, 1, 2, 856, 857, 7, 128, 2, 2, 857, 858, 5, 94, 48, 2, 858, 859, 7, 129, 2, 2, 859, 870, 3, 2, 2, 2, 860, 861, 9, 9, 2, 2, 861, 870, 5, 94, 48, 10, 862, 870, 7, 153, 2, 2, 863, 870, 7, 151, 2, 2, 864, 865, 7, 139, 2, 2, 865, 866, 7, 153, 2, 2, 866, 870, 7, 140, 2, 2, 867, 870, 7, 141, 2, 2, 868, 870, 7, 150, 2, 2, 869, 855, 3, 2, 2, 2, 869, 860, 3, 2, 2, 2, 869, 862, 3, 2, 2, 2, 869, 863, 3, 2, 2, 2, 869, 864, 3, 2, 2, 2, 869, 867, 3, 2, 2, 2, 869, 868, 3, 2, 2, 2, 870, 885, 3, 2, 2, 2, 871, 872, 12, 12, 2, 2, 872, 873, 7, 130, 2, 2, 873, 884, 5, 94, 48, 13, 874, 875, 12, 11, 2, 2, 875, 876, 9, 10, 2, 2, 876, 884, 5, 94, 48, 12, 877, 878, 12, 9, 2, 2, 878, 879, 9, 11, 2, 2, 879, 884, 5, 94, 48, 10, 880, 881, 12, 8, 2, 2, 881, 882, 9, 12, 2, 2, 882, 884, 5, 94, 48, 9, 883, 871, 3, 2, 2, 2, 883, 874, 3, 2, 2, 2, 883, 877, 3, 2, 2, 2, 883, 880, 3, 2, 2, 2, 884, 887, 3, 2, 2, 2, 885, 883, 3, 2, 2, 2, 885, 886, 3, 2, 2, 2, 886, 95, 3, 2, 2, 2, 887, 885, 3, 2, 2, 2, 90, 105, 110, 116, 133, 142, 152, 158, 166, 173, 182, 187, 193, 198, 203, 210, 217, 222, 234, 237, 239, 250, 257, 262, 268, 270, 278, 284, 296, 310, 316, 322, 328, 333, 337, 346, 353, 359, 370, 431, 435, 446, 465, 474, 479, 484, 491, 504, 509, 521, 535, 554, 563, 570, 575, 580, 582, 588, 595, 601, 604, 612, 615, 618, 628, 640, 648, 654, 658, 679, 689, 693, 743, 753, 755, 763, 768, 778, 796, 798, 803, 809, 815, 819, 827, 853, 869, 883, 885] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 157, 891, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 5, 3, 5, 5, 5, 111, 10, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 5, 6, 119, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 136, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 143, 10, 9, 12, 9, 14, 9, 146, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 153, 10, 9, 12, 9, 14, 9, 156, 11, 9, 3, 9, 7, 9, 159, 10, 9, 12, 9, 14, 9, 162, 11, 9, 3, 10, 3, 10, 3, 10, 7, 10, 167, 10, 10, 12, 10, 14, 10, 170, 11, 10, 3, 10, 3, 10, 7, 10, 174, 10, 10, 12, 10, 14, 10, 177, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 7, 11, 183, 10, 11, 12, 11, 14, 11, 186, 11, 11, 3, 11, 3, 11, 5, 11, 190, 10, 11, 3, 11, 3, 11, 7, 11, 194, 10, 11, 12, 11, 14, 11, 197, 11, 11, 3, 11, 3, 11, 5, 11, 201, 10, 11, 3, 12, 7, 12, 204, 10, 12, 12, 12, 14, 12, 207, 11, 12, 3, 12, 3, 12, 7, 12, 211, 10, 12, 12, 12, 14, 12, 214, 11, 12, 3, 13, 3, 13, 7, 13, 218, 10, 13, 12, 13, 14, 13, 221, 11, 13, 3, 14, 3, 14, 5, 14, 225, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 237, 10, 15, 3, 15, 7, 15, 240, 10, 15, 12, 15, 14, 15, 243, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 253, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 260, 10, 16, 3, 16, 3, 16, 3, 16, 5, 16, 265, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 271, 10, 16, 12, 16, 14, 16, 274, 11, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 5, 18, 281, 10, 18, 3, 18, 3, 18, 6, 18, 285, 10, 18, 13, 18, 14, 18, 286, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 299, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 311, 10, 22, 12, 22, 14, 22, 314, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 319, 10, 23, 3, 24, 3, 24, 7, 24, 323, 10, 24, 12, 24, 14, 24, 326, 11, 24, 3, 24, 3, 24, 3, 24, 5, 24, 331, 10, 24, 3, 24, 3, 24, 3, 24, 5, 24, 336, 10, 24, 3, 25, 3, 25, 5, 25, 340, 10, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 7, 26, 347, 10, 26, 12, 26, 14, 26, 350, 11, 26, 3, 27, 3, 27, 7, 27, 354, 10, 27, 12, 27, 14, 27, 357, 11, 27, 3, 27, 3, 27, 3, 27, 5, 27, 362, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 371, 10, 28, 12, 28, 14, 28, 374, 11, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 432, 10, 28, 12, 28, 14, 28, 435, 11, 28, 3, 28, 5, 28, 438, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 449, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 468, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 475, 10, 29, 12, 29, 14, 29, 478, 11, 29, 3, 29, 3, 29, 5, 29, 482, 10, 29, 3, 30, 6, 30, 485, 10, 30, 13, 30, 14, 30, 486, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 494, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 507, 10, 31, 3, 31, 7, 31, 510, 10, 31, 12, 31, 14, 31, 513, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 522, 10, 31, 12, 31, 14, 31, 525, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 536, 10, 31, 12, 31, 14, 31, 539, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 557, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 566, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 573, 10, 31, 3, 32, 6, 32, 576, 10, 32, 13, 32, 14, 32, 577, 3, 32, 3, 32, 3, 32, 5, 32, 583, 10, 32, 5, 32, 585, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 591, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 598, 10, 34, 3, 34, 3, 34, 7, 34, 602, 10, 34, 12, 34, 14, 34, 605, 11, 34, 5, 34, 607, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 615, 10, 34, 3, 35, 5, 35, 618, 10, 35, 3, 35, 5, 35, 621, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 629, 10, 36, 12, 36, 14, 36, 632, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 643, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 651, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 657, 10, 37, 3, 37, 3, 37, 5, 37, 661, 10, 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, 7, 37, 680, 10, 37, 12, 37, 14, 37, 683, 11, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 6, 37, 690, 10, 37, 13, 37, 14, 37, 691, 3, 37, 3, 37, 5, 37, 696, 10, 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, 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, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 746, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 756, 10, 37, 12, 37, 14, 37, 759, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 764, 10, 38, 12, 38, 14, 38, 767, 11, 38, 3, 39, 3, 39, 5, 39, 771, 10, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 779, 10, 40, 12, 40, 14, 40, 782, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 799, 10, 41, 5, 41, 801, 10, 41, 3, 42, 7, 42, 804, 10, 42, 12, 42, 14, 42, 807, 11, 42, 3, 43, 3, 43, 3, 43, 5, 43, 812, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 818, 10, 44, 3, 45, 3, 45, 5, 45, 822, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 828, 10, 46, 12, 46, 14, 46, 831, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 856, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 872, 10, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 7, 48, 886, 10, 48, 12, 48, 14, 48, 889, 11, 48, 3, 48, 2, 9, 16, 28, 30, 42, 70, 72, 94, 49, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 2, 13, 3, 2, 22, 23, 5, 2, 17, 18, 24, 25, 89, 89, 4, 2, 32, 32, 35, 35, 3, 2, 28, 29, 3, 2, 19, 21, 3, 2, 17, 18, 3, 2, 30, 35, 3, 2, 134, 137, 3, 2, 132, 133, 3, 2, 138, 139, 3, 2, 134, 135, 2, 1020, 2, 96, 3, 2, 2, 2, 4, 99, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 110, 3, 2, 2, 2, 10, 118, 3, 2, 2, 2, 12, 135, 3, 2, 2, 2, 14, 137, 3, 2, 2, 2, 16, 140, 3, 2, 2, 2, 18, 163, 3, 2, 2, 2, 20, 200, 3, 2, 2, 2, 22, 205, 3, 2, 2, 2, 24, 215, 3, 2, 2, 2, 26, 222, 3, 2, 2, 2, 28, 228, 3, 2, 2, 2, 30, 259, 3, 2, 2, 2, 32, 275, 3, 2, 2, 2, 34, 278, 3, 2, 2, 2, 36, 290, 3, 2, 2, 2, 38, 293, 3, 2, 2, 2, 40, 296, 3, 2, 2, 2, 42, 304, 3, 2, 2, 2, 44, 315, 3, 2, 2, 2, 46, 320, 3, 2, 2, 2, 48, 337, 3, 2, 2, 2, 50, 343, 3, 2, 2, 2, 52, 361, 3, 2, 2, 2, 54, 437, 3, 2, 2, 2, 56, 481, 3, 2, 2, 2, 58, 484, 3, 2, 2, 2, 60, 572, 3, 2, 2, 2, 62, 575, 3, 2, 2, 2, 64, 586, 3, 2, 2, 2, 66, 614, 3, 2, 2, 2, 68, 620, 3, 2, 2, 2, 70, 622, 3, 2, 2, 2, 72, 695, 3, 2, 2, 2, 74, 760, 3, 2, 2, 2, 76, 768, 3, 2, 2, 2, 78, 774, 3, 2, 2, 2, 80, 800, 3, 2, 2, 2, 82, 805, 3, 2, 2, 2, 84, 811, 3, 2, 2, 2, 86, 817, 3, 2, 2, 2, 88, 819, 3, 2, 2, 2, 90, 823, 3, 2, 2, 2, 92, 855, 3, 2, 2, 2, 94, 871, 3, 2, 2, 2, 96, 97, 5, 6, 4, 2, 97, 98, 7, 2, 2, 3, 98, 3, 3, 2, 2, 2, 99, 100, 5, 82, 42, 2, 100, 101, 7, 2, 2, 3, 101, 5, 3, 2, 2, 2, 102, 104, 5, 8, 5, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 7, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 111, 5, 12, 7, 2, 109, 111, 5, 10, 6, 2, 110, 108, 3, 2, 2, 2, 110, 109, 3, 2, 2, 2, 111, 9, 3, 2, 2, 2, 112, 113, 7, 94, 2, 2, 113, 119, 7, 117, 2, 2, 114, 115, 7, 95, 2, 2, 115, 119, 7, 117, 2, 2, 116, 117, 7, 95, 2, 2, 117, 119, 7, 116, 2, 2, 118, 112, 3, 2, 2, 2, 118, 114, 3, 2, 2, 2, 118, 116, 3, 2, 2, 2, 119, 11, 3, 2, 2, 2, 120, 121, 5, 14, 8, 2, 121, 122, 7, 10, 2, 2, 122, 136, 3, 2, 2, 2, 123, 124, 5, 34, 18, 2, 124, 125, 7, 10, 2, 2, 125, 136, 3, 2, 2, 2, 126, 127, 5, 40, 21, 2, 127, 128, 7, 10, 2, 2, 128, 136, 3, 2, 2, 2, 129, 136, 5, 46, 24, 2, 130, 136, 5, 76, 39, 2, 131, 136, 5, 54, 28, 2, 132, 133, 5, 18, 10, 2, 133, 134, 7, 10, 2, 2, 134, 136, 3, 2, 2, 2, 135, 120, 3, 2, 2, 2, 135, 123, 3, 2, 2, 2, 135, 126, 3, 2, 2, 2, 135, 129, 3, 2, 2, 2, 135, 130, 3, 2, 2, 2, 135, 131, 3, 2, 2, 2, 135, 132, 3, 2, 2, 2, 136, 13, 3, 2, 2, 2, 137, 138, 5, 22, 12, 2, 138, 139, 5, 16, 9, 2, 139, 15, 3, 2, 2, 2, 140, 144, 8, 9, 1, 2, 141, 143, 5, 24, 13, 2, 142, 141, 3, 2, 2, 2, 143, 146, 3, 2, 2, 2, 144, 142, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 147, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 147, 148, 5, 20, 11, 2, 148, 160, 3, 2, 2, 2, 149, 150, 12, 3, 2, 2, 150, 154, 7, 12, 2, 2, 151, 153, 5, 24, 13, 2, 152, 151, 3, 2, 2, 2, 153, 156, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 157, 3, 2, 2, 2, 156, 154, 3, 2, 2, 2, 157, 159, 5, 20, 11, 2, 158, 149, 3, 2, 2, 2, 159, 162, 3, 2, 2, 2, 160, 158, 3, 2, 2, 2, 160, 161, 3, 2, 2, 2, 161, 17, 3, 2, 2, 2, 162, 160, 3, 2, 2, 2, 163, 164, 7, 40, 2, 2, 164, 168, 5, 22, 12, 2, 165, 167, 5, 24, 13, 2, 166, 165, 3, 2, 2, 2, 167, 170, 3, 2, 2, 2, 168, 166, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 171, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 171, 175, 7, 115, 2, 2, 172, 174, 5, 26, 14, 2, 173, 172, 3, 2, 2, 2, 174, 177, 3, 2, 2, 2, 175, 173, 3, 2, 2, 2, 175, 176, 3, 2, 2, 2, 176, 178, 3, 2, 2, 2, 177, 175, 3, 2, 2, 2, 178, 179, 8, 10, 1, 2, 179, 19, 3, 2, 2, 2, 180, 184, 7, 115, 2, 2, 181, 183, 5, 26, 14, 2, 182, 181, 3, 2, 2, 2, 183, 186, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 184, 185, 3, 2, 2, 2, 185, 189, 3, 2, 2, 2, 186, 184, 3, 2, 2, 2, 187, 188, 7, 38, 2, 2, 188, 190, 5, 72, 37, 2, 189, 187, 3, 2, 2, 2, 189, 190, 3, 2, 2, 2, 190, 201, 3, 2, 2, 2, 191, 195, 7, 115, 2, 2, 192, 194, 5, 26, 14, 2, 193, 192, 3, 2, 2, 2, 194, 197, 3, 2, 2, 2, 195, 193, 3, 2, 2, 2, 195, 196, 3, 2, 2, 2, 196, 198, 3, 2, 2, 2, 197, 195, 3, 2, 2, 2, 198, 199, 7, 38, 2, 2, 199, 201, 5, 76, 39, 2, 200, 180, 3, 2, 2, 2, 200, 191, 3, 2, 2, 2, 201, 21, 3, 2, 2, 2, 202, 204, 5, 56, 29, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 208, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 212, 5, 30, 16, 2, 209, 211, 5, 56, 29, 2, 210, 209, 3, 2, 2, 2, 211, 214, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 23, 3, 2, 2, 2, 214, 212, 3, 2, 2, 2, 215, 219, 7, 19, 2, 2, 216, 218, 5, 56, 29, 2, 217, 216, 3, 2, 2, 2, 218, 221, 3, 2, 2, 2, 219, 217, 3, 2, 2, 2, 219, 220, 3, 2, 2, 2, 220, 25, 3, 2, 2, 2, 221, 219, 3, 2, 2, 2, 222, 224, 7, 6, 2, 2, 223, 225, 5, 72, 37, 2, 224, 223, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 227, 7, 7, 2, 2, 227, 27, 3, 2, 2, 2, 228, 229, 8, 15, 1, 2, 229, 230, 5, 30, 16, 2, 230, 241, 3, 2, 2, 2, 231, 232, 12, 4, 2, 2, 232, 240, 7, 19, 2, 2, 233, 234, 12, 3, 2, 2, 234, 236, 7, 6, 2, 2, 235, 237, 5, 72, 37, 2, 236, 235, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 238, 3, 2, 2, 2, 238, 240, 7, 7, 2, 2, 239, 231, 3, 2, 2, 2, 239, 233, 3, 2, 2, 2, 240, 243, 3, 2, 2, 2, 241, 239, 3, 2, 2, 2, 241, 242, 3, 2, 2, 2, 242, 29, 3, 2, 2, 2, 243, 241, 3, 2, 2, 2, 244, 245, 8, 16, 1, 2, 245, 246, 7, 8, 2, 2, 246, 247, 5, 30, 16, 2, 247, 248, 7, 9, 2, 2, 248, 260, 3, 2, 2, 2, 249, 260, 7, 91, 2, 2, 250, 252, 7, 90, 2, 2, 251, 253, 7, 91, 2, 2, 252, 251, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 260, 3, 2, 2, 2, 254, 260, 5, 34, 18, 2, 255, 260, 5, 32, 17, 2, 256, 260, 5, 40, 21, 2, 257, 260, 5, 38, 20, 2, 258, 260, 7, 3, 2, 2, 259, 244, 3, 2, 2, 2, 259, 249, 3, 2, 2, 2, 259, 250, 3, 2, 2, 2, 259, 254, 3, 2, 2, 2, 259, 255, 3, 2, 2, 2, 259, 256, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 258, 3, 2, 2, 2, 260, 272, 3, 2, 2, 2, 261, 262, 12, 9, 2, 2, 262, 264, 7, 6, 2, 2, 263, 265, 5, 72, 37, 2, 264, 263, 3, 2, 2, 2, 264, 265, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 271, 7, 7, 2, 2, 267, 268, 12, 8, 2, 2, 268, 269, 7, 8, 2, 2, 269, 271, 7, 9, 2, 2, 270, 261, 3, 2, 2, 2, 270, 267, 3, 2, 2, 2, 271, 274, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 31, 3, 2, 2, 2, 274, 272, 3, 2, 2, 2, 275, 276, 7, 78, 2, 2, 276, 277, 7, 115, 2, 2, 277, 33, 3, 2, 2, 2, 278, 280, 7, 78, 2, 2, 279, 281, 7, 115, 2, 2, 280, 279, 3, 2, 2, 2, 280, 281, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 284, 7, 4, 2, 2, 283, 285, 5, 36, 19, 2, 284, 283, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 284, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 289, 7, 5, 2, 2, 289, 35, 3, 2, 2, 2, 290, 291, 5, 14, 8, 2, 291, 292, 7, 10, 2, 2, 292, 37, 3, 2, 2, 2, 293, 294, 7, 79, 2, 2, 294, 295, 7, 115, 2, 2, 295, 39, 3, 2, 2, 2, 296, 298, 7, 79, 2, 2, 297, 299, 7, 115, 2, 2, 298, 297, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 301, 7, 4, 2, 2, 301, 302, 5, 42, 22, 2, 302, 303, 7, 5, 2, 2, 303, 41, 3, 2, 2, 2, 304, 305, 8, 22, 1, 2, 305, 306, 5, 44, 23, 2, 306, 312, 3, 2, 2, 2, 307, 308, 12, 3, 2, 2, 308, 309, 7, 12, 2, 2, 309, 311, 5, 44, 23, 2, 310, 307, 3, 2, 2, 2, 311, 314, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 43, 3, 2, 2, 2, 314, 312, 3, 2, 2, 2, 315, 318, 7, 115, 2, 2, 316, 317, 7, 38, 2, 2, 317, 319, 5, 72, 37, 2, 318, 316, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 45, 3, 2, 2, 2, 320, 324, 5, 22, 12, 2, 321, 323, 5, 24, 13, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 327, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 115, 2, 2, 328, 330, 7, 8, 2, 2, 329, 331, 5, 50, 26, 2, 330, 329, 3, 2, 2, 2, 330, 331, 3, 2, 2, 2, 331, 332, 3, 2, 2, 2, 332, 335, 7, 9, 2, 2, 333, 336, 5, 48, 25, 2, 334, 336, 7, 10, 2, 2, 335, 333, 3, 2, 2, 2, 335, 334, 3, 2, 2, 2, 336, 47, 3, 2, 2, 2, 337, 339, 7, 4, 2, 2, 338, 340, 5, 58, 30, 2, 339, 338, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 341, 3, 2, 2, 2, 341, 342, 7, 5, 2, 2, 342, 49, 3, 2, 2, 2, 343, 348, 5, 52, 27, 2, 344, 345, 7, 12, 2, 2, 345, 347, 5, 52, 27, 2, 346, 344, 3, 2, 2, 2, 347, 350, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 348, 349, 3, 2, 2, 2, 349, 51, 3, 2, 2, 2, 350, 348, 3, 2, 2, 2, 351, 355, 5, 22, 12, 2, 352, 354, 5, 24, 13, 2, 353, 352, 3, 2, 2, 2, 354, 357, 3, 2, 2, 2, 355, 353, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 358, 3, 2, 2, 2, 357, 355, 3, 2, 2, 2, 358, 359, 7, 115, 2, 2, 359, 362, 3, 2, 2, 2, 360, 362, 7, 91, 2, 2, 361, 351, 3, 2, 2, 2, 361, 360, 3, 2, 2, 2, 362, 53, 3, 2, 2, 2, 363, 364, 7, 96, 2, 2, 364, 365, 7, 41, 2, 2, 365, 366, 3, 2, 2, 2, 366, 367, 7, 8, 2, 2, 367, 372, 7, 106, 2, 2, 368, 369, 7, 12, 2, 2, 369, 371, 7, 106, 2, 2, 370, 368, 3, 2, 2, 2, 371, 374, 3, 2, 2, 2, 372, 370, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 375, 3, 2, 2, 2, 374, 372, 3, 2, 2, 2, 375, 438, 7, 9, 2, 2, 376, 377, 7, 96, 2, 2, 377, 378, 7, 42, 2, 2, 378, 379, 3, 2, 2, 2, 379, 380, 7, 8, 2, 2, 380, 381, 7, 106, 2, 2, 381, 438, 7, 9, 2, 2, 382, 383, 7, 96, 2, 2, 383, 384, 7, 43, 2, 2, 384, 385, 3, 2, 2, 2, 385, 386, 7, 8, 2, 2, 386, 387, 7, 115, 2, 2, 387, 438, 7, 9, 2, 2, 388, 389, 7, 96, 2, 2, 389, 390, 7, 45, 2, 2, 390, 391, 3, 2, 2, 2, 391, 392, 7, 8, 2, 2, 392, 393, 7, 115, 2, 2, 393, 438, 7, 9, 2, 2, 394, 395, 7, 96, 2, 2, 395, 396, 7, 44, 2, 2, 396, 397, 3, 2, 2, 2, 397, 398, 7, 8, 2, 2, 398, 399, 7, 117, 2, 2, 399, 438, 7, 9, 2, 2, 400, 401, 7, 96, 2, 2, 401, 402, 7, 46, 2, 2, 402, 403, 3, 2, 2, 2, 403, 404, 7, 8, 2, 2, 404, 405, 7, 115, 2, 2, 405, 438, 7, 9, 2, 2, 406, 407, 7, 96, 2, 2, 407, 408, 7, 47, 2, 2, 408, 409, 3, 2, 2, 2, 409, 410, 7, 8, 2, 2, 410, 411, 7, 115, 2, 2, 411, 438, 7, 9, 2, 2, 412, 413, 7, 96, 2, 2, 413, 414, 7, 48, 2, 2, 414, 415, 3, 2, 2, 2, 415, 416, 7, 8, 2, 2, 416, 417, 7, 115, 2, 2, 417, 438, 7, 9, 2, 2, 418, 419, 7, 96, 2, 2, 419, 420, 7, 63, 2, 2, 420, 421, 3, 2, 2, 2, 421, 422, 7, 8, 2, 2, 422, 423, 7, 64, 2, 2, 423, 438, 7, 9, 2, 2, 424, 425, 7, 96, 2, 2, 425, 426, 7, 65, 2, 2, 426, 427, 3, 2, 2, 2, 427, 428, 7, 8, 2, 2, 428, 433, 7, 115, 2, 2, 429, 430, 7, 12, 2, 2, 430, 432, 7, 115, 2, 2, 431, 429, 3, 2, 2, 2, 432, 435, 3, 2, 2, 2, 433, 431, 3, 2, 2, 2, 433, 434, 3, 2, 2, 2, 434, 436, 3, 2, 2, 2, 435, 433, 3, 2, 2, 2, 436, 438, 7, 9, 2, 2, 437, 363, 3, 2, 2, 2, 437, 376, 3, 2, 2, 2, 437, 382, 3, 2, 2, 2, 437, 388, 3, 2, 2, 2, 437, 394, 3, 2, 2, 2, 437, 400, 3, 2, 2, 2, 437, 406, 3, 2, 2, 2, 437, 412, 3, 2, 2, 2, 437, 418, 3, 2, 2, 2, 437, 424, 3, 2, 2, 2, 438, 55, 3, 2, 2, 2, 439, 482, 7, 49, 2, 2, 440, 441, 7, 52, 2, 2, 441, 442, 7, 8, 2, 2, 442, 443, 7, 106, 2, 2, 443, 482, 7, 9, 2, 2, 444, 448, 7, 57, 2, 2, 445, 446, 7, 8, 2, 2, 446, 447, 7, 115, 2, 2, 447, 449, 7, 9, 2, 2, 448, 445, 3, 2, 2, 2, 448, 449, 3, 2, 2, 2, 449, 482, 3, 2, 2, 2, 450, 482, 7, 59, 2, 2, 451, 482, 7, 60, 2, 2, 452, 453, 7, 58, 2, 2, 453, 454, 7, 8, 2, 2, 454, 455, 7, 106, 2, 2, 455, 482, 7, 9, 2, 2, 456, 482, 7, 54, 2, 2, 457, 482, 7, 55, 2, 2, 458, 482, 7, 61, 2, 2, 459, 482, 7, 62, 2, 2, 460, 482, 7, 50, 2, 2, 461, 482, 7, 51, 2, 2, 462, 482, 7, 53, 2, 2, 463, 467, 7, 56, 2, 2, 464, 465, 7, 8, 2, 2, 465, 466, 7, 115, 2, 2, 466, 468, 7, 9, 2, 2, 467, 464, 3, 2, 2, 2, 467, 468, 3, 2, 2, 2, 468, 482, 3, 2, 2, 2, 469, 470, 7, 41, 2, 2, 470, 471, 7, 8, 2, 2, 471, 476, 7, 106, 2, 2, 472, 473, 7, 12, 2, 2, 473, 475, 7, 106, 2, 2, 474, 472, 3, 2, 2, 2, 475, 478, 3, 2, 2, 2, 476, 474, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 479, 3, 2, 2, 2, 478, 476, 3, 2, 2, 2, 479, 482, 7, 9, 2, 2, 480, 482, 7, 64, 2, 2, 481, 439, 3, 2, 2, 2, 481, 440, 3, 2, 2, 2, 481, 444, 3, 2, 2, 2, 481, 450, 3, 2, 2, 2, 481, 451, 3, 2, 2, 2, 481, 452, 3, 2, 2, 2, 481, 456, 3, 2, 2, 2, 481, 457, 3, 2, 2, 2, 481, 458, 3, 2, 2, 2, 481, 459, 3, 2, 2, 2, 481, 460, 3, 2, 2, 2, 481, 461, 3, 2, 2, 2, 481, 462, 3, 2, 2, 2, 481, 463, 3, 2, 2, 2, 481, 469, 3, 2, 2, 2, 481, 480, 3, 2, 2, 2, 482, 57, 3, 2, 2, 2, 483, 485, 5, 60, 31, 2, 484, 483, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 484, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 59, 3, 2, 2, 2, 488, 489, 5, 14, 8, 2, 489, 490, 7, 10, 2, 2, 490, 573, 3, 2, 2, 2, 491, 493, 7, 4, 2, 2, 492, 494, 5, 58, 30, 2, 493, 492, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 573, 7, 5, 2, 2, 496, 497, 5, 70, 36, 2, 497, 498, 7, 10, 2, 2, 498, 573, 3, 2, 2, 2, 499, 500, 7, 66, 2, 2, 500, 501, 7, 8, 2, 2, 501, 502, 5, 70, 36, 2, 502, 503, 7, 9, 2, 2, 503, 506, 5, 60, 31, 2, 504, 505, 7, 67, 2, 2, 505, 507, 5, 60, 31, 2, 506, 504, 3, 2, 2, 2, 506, 507, 3, 2, 2, 2, 507, 573, 3, 2, 2, 2, 508, 510, 5, 56, 29, 2, 509, 508, 3, 2, 2, 2, 510, 513, 3, 2, 2, 2, 511, 509, 3, 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 514, 3, 2, 2, 2, 513, 511, 3, 2, 2, 2, 514, 515, 7, 68, 2, 2, 515, 516, 7, 8, 2, 2, 516, 517, 5, 70, 36, 2, 517, 518, 7, 9, 2, 2, 518, 519, 5, 60, 31, 2, 519, 573, 3, 2, 2, 2, 520, 522, 5, 56, 29, 2, 521, 520, 3, 2, 2, 2, 522, 525, 3, 2, 2, 2, 523, 521, 3, 2, 2, 2, 523, 524, 3, 2, 2, 2, 524, 526, 3, 2, 2, 2, 525, 523, 3, 2, 2, 2, 526, 527, 7, 69, 2, 2, 527, 528, 5, 60, 31, 2, 528, 529, 7, 68, 2, 2, 529, 530, 7, 8, 2, 2, 530, 531, 5, 70, 36, 2, 531, 532, 7, 9, 2, 2, 532, 533, 7, 10, 2, 2, 533, 573, 3, 2, 2, 2, 534, 536, 5, 56, 29, 2, 535, 534, 3, 2, 2, 2, 536, 539, 3, 2, 2, 2, 537, 535, 3, 2, 2, 2, 537, 538, 3, 2, 2, 2, 538, 540, 3, 2, 2, 2, 539, 537, 3, 2, 2, 2, 540, 541, 7, 70, 2, 2, 541, 542, 7, 8, 2, 2, 542, 543, 5, 66, 34, 2, 543, 544, 7, 9, 2, 2, 544, 545, 5, 60, 31, 2, 545, 573, 3, 2, 2, 2, 546, 547, 7, 71, 2, 2, 547, 548, 7, 8, 2, 2, 548, 549, 5, 70, 36, 2, 549, 550, 7, 9, 2, 2, 550, 551, 7, 4, 2, 2, 551, 552, 5, 62, 32, 2, 552, 553, 7, 5, 2, 2, 553, 573, 3, 2, 2, 2, 554, 556, 7, 72, 2, 2, 555, 557, 5, 70, 36, 2, 556, 555, 3, 2, 2, 2, 556, 557, 3, 2, 2, 2, 557, 558, 3, 2, 2, 2, 558, 573, 7, 10, 2, 2, 559, 560, 7, 73, 2, 2, 560, 573, 7, 10, 2, 2, 561, 562, 7, 74, 2, 2, 562, 573, 7, 10, 2, 2, 563, 565, 7, 75, 2, 2, 564, 566, 5, 78, 40, 2, 565, 564, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 568, 7, 4, 2, 2, 568, 569, 5, 82, 42, 2, 569, 570, 7, 141, 2, 2, 570, 573, 3, 2, 2, 2, 571, 573, 5, 76, 39, 2, 572, 488, 3, 2, 2, 2, 572, 491, 3, 2, 2, 2, 572, 496, 3, 2, 2, 2, 572, 499, 3, 2, 2, 2, 572, 511, 3, 2, 2, 2, 572, 523, 3, 2, 2, 2, 572, 537, 3, 2, 2, 2, 572, 546, 3, 2, 2, 2, 572, 554, 3, 2, 2, 2, 572, 559, 3, 2, 2, 2, 572, 561, 3, 2, 2, 2, 572, 563, 3, 2, 2, 2, 572, 571, 3, 2, 2, 2, 573, 61, 3, 2, 2, 2, 574, 576, 5, 64, 33, 2, 575, 574, 3, 2, 2, 2, 576, 577, 3, 2, 2, 2, 577, 575, 3, 2, 2, 2, 577, 578, 3, 2, 2, 2, 578, 584, 3, 2, 2, 2, 579, 580, 7, 76, 2, 2, 580, 582, 7, 11, 2, 2, 581, 583, 5, 58, 30, 2, 582, 581, 3, 2, 2, 2, 582, 583, 3, 2, 2, 2, 583, 585, 3, 2, 2, 2, 584, 579, 3, 2, 2, 2, 584, 585, 3, 2, 2, 2, 585, 63, 3, 2, 2, 2, 586, 587, 7, 77, 2, 2, 587, 588, 5, 72, 37, 2, 588, 590, 7, 11, 2, 2, 589, 591, 5, 58, 30, 2, 590, 589, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 65, 3, 2, 2, 2, 592, 593, 5, 68, 35, 2, 593, 594, 7, 10, 2, 2, 594, 595, 5, 70, 36, 2, 595, 597, 7, 10, 2, 2, 596, 598, 5, 70, 36, 2, 597, 596, 3, 2, 2, 2, 597, 598, 3, 2, 2, 2, 598, 615, 3, 2, 2, 2, 599, 603, 5, 22, 12, 2, 600, 602, 5, 24, 13, 2, 601, 600, 3, 2, 2, 2, 602, 605, 3, 2, 2, 2, 603, 601, 3, 2, 2, 2, 603, 604, 3, 2, 2, 2, 604, 607, 3, 2, 2, 2, 605, 603, 3, 2, 2, 2, 606, 599, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 609, 7, 115, 2, 2, 609, 610, 7, 11, 2, 2, 610, 611, 5, 72, 37, 2, 611, 612, 7, 13, 2, 2, 612, 613, 5, 72, 37, 2, 613, 615, 3, 2, 2, 2, 614, 592, 3, 2, 2, 2, 614, 606, 3, 2, 2, 2, 615, 67, 3, 2, 2, 2, 616, 618, 5, 14, 8, 2, 617, 616, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 621, 3, 2, 2, 2, 619, 621, 5, 70, 36, 2, 620, 617, 3, 2, 2, 2, 620, 619, 3, 2, 2, 2, 621, 69, 3, 2, 2, 2, 622, 623, 8, 36, 1, 2, 623, 624, 5, 72, 37, 2, 624, 630, 3, 2, 2, 2, 625, 626, 12, 3, 2, 2, 626, 627, 7, 12, 2, 2, 627, 629, 5, 72, 37, 2, 628, 625, 3, 2, 2, 2, 629, 632, 3, 2, 2, 2, 630, 628, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 71, 3, 2, 2, 2, 632, 630, 3, 2, 2, 2, 633, 634, 8, 37, 1, 2, 634, 635, 7, 8, 2, 2, 635, 636, 5, 70, 36, 2, 636, 637, 7, 9, 2, 2, 637, 696, 3, 2, 2, 2, 638, 639, 7, 80, 2, 2, 639, 642, 7, 8, 2, 2, 640, 643, 5, 72, 37, 2, 641, 643, 5, 28, 15, 2, 642, 640, 3, 2, 2, 2, 642, 641, 3, 2, 2, 2, 643, 644, 3, 2, 2, 2, 644, 645, 7, 9, 2, 2, 645, 696, 3, 2, 2, 2, 646, 647, 7, 81, 2, 2, 647, 650, 7, 8, 2, 2, 648, 651, 5, 72, 37, 2, 649, 651, 5, 28, 15, 2, 650, 648, 3, 2, 2, 2, 650, 649, 3, 2, 2, 2, 651, 652, 3, 2, 2, 2, 652, 653, 7, 9, 2, 2, 653, 696, 3, 2, 2, 2, 654, 656, 7, 82, 2, 2, 655, 657, 7, 8, 2, 2, 656, 655, 3, 2, 2, 2, 656, 657, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 660, 7, 115, 2, 2, 659, 661, 7, 9, 2, 2, 660, 659, 3, 2, 2, 2, 660, 661, 3, 2, 2, 2, 661, 696, 3, 2, 2, 2, 662, 663, 7, 8, 2, 2, 663, 664, 5, 28, 15, 2, 664, 665, 7, 9, 2, 2, 665, 666, 5, 72, 37, 26, 666, 696, 3, 2, 2, 2, 667, 668, 9, 2, 2, 2, 668, 696, 5, 72, 37, 25, 669, 670, 7, 19, 2, 2, 670, 696, 5, 72, 37, 23, 671, 672, 9, 3, 2, 2, 672, 696, 5, 72, 37, 22, 673, 674, 9, 4, 2, 2, 674, 696, 5, 72, 37, 18, 675, 676, 7, 4, 2, 2, 676, 681, 5, 72, 37, 2, 677, 678, 7, 12, 2, 2, 678, 680, 5, 72, 37, 2, 679, 677, 3, 2, 2, 2, 680, 683, 3, 2, 2, 2, 681, 679, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 684, 3, 2, 2, 2, 683, 681, 3, 2, 2, 2, 684, 685, 7, 5, 2, 2, 685, 696, 3, 2, 2, 2, 686, 696, 7, 115, 2, 2, 687, 696, 7, 106, 2, 2, 688, 690, 7, 117, 2, 2, 689, 688, 3, 2, 2, 2, 690, 691, 3, 2, 2, 2, 691, 689, 3, 2, 2, 2, 691, 692, 3, 2, 2, 2, 692, 696, 3, 2, 2, 2, 693, 696, 7, 118, 2, 2, 694, 696, 7, 92, 2, 2, 695, 633, 3, 2, 2, 2, 695, 638, 3, 2, 2, 2, 695, 646, 3, 2, 2, 2, 695, 654, 3, 2, 2, 2, 695, 662, 3, 2, 2, 2, 695, 667, 3, 2, 2, 2, 695, 669, 3, 2, 2, 2, 695, 671, 3, 2, 2, 2, 695, 673, 3, 2, 2, 2, 695, 675, 3, 2, 2, 2, 695, 686, 3, 2, 2, 2, 695, 687, 3, 2, 2, 2, 695, 689, 3, 2, 2, 2, 695, 693, 3, 2, 2, 2, 695, 694, 3, 2, 2, 2, 696, 757, 3, 2, 2, 2, 697, 698, 12, 21, 2, 2, 698, 699, 9, 5, 2, 2, 699, 756, 5, 72, 37, 22, 700, 701, 12, 20, 2, 2, 701, 702, 9, 6, 2, 2, 702, 756, 5, 72, 37, 21, 703, 704, 12, 19, 2, 2, 704, 705, 9, 7, 2, 2, 705, 756, 5, 72, 37, 20, 706, 707, 12, 17, 2, 2, 707, 708, 9, 8, 2, 2, 708, 756, 5, 72, 37, 18, 709, 710, 12, 16, 2, 2, 710, 711, 7, 24, 2, 2, 711, 756, 5, 72, 37, 17, 712, 713, 12, 15, 2, 2, 713, 714, 7, 26, 2, 2, 714, 756, 5, 72, 37, 16, 715, 716, 12, 14, 2, 2, 716, 717, 7, 27, 2, 2, 717, 756, 5, 72, 37, 15, 718, 719, 12, 13, 2, 2, 719, 720, 7, 36, 2, 2, 720, 756, 5, 72, 37, 14, 721, 722, 12, 12, 2, 2, 722, 723, 7, 37, 2, 2, 723, 756, 5, 72, 37, 13, 724, 725, 12, 11, 2, 2, 725, 726, 7, 14, 2, 2, 726, 727, 5, 72, 37, 2, 727, 728, 7, 11, 2, 2, 728, 729, 5, 72, 37, 12, 729, 756, 3, 2, 2, 2, 730, 731, 12, 10, 2, 2, 731, 732, 7, 38, 2, 2, 732, 756, 5, 72, 37, 10, 733, 734, 12, 9, 2, 2, 734, 735, 7, 39, 2, 2, 735, 756, 5, 72, 37, 9, 736, 737, 12, 33, 2, 2, 737, 738, 7, 15, 2, 2, 738, 756, 7, 115, 2, 2, 739, 740, 12, 32, 2, 2, 740, 741, 7, 16, 2, 2, 741, 756, 7, 115, 2, 2, 742, 743, 12, 31, 2, 2, 743, 745, 7, 8, 2, 2, 744, 746, 5, 74, 38, 2, 745, 744, 3, 2, 2, 2, 745, 746, 3, 2, 2, 2, 746, 747, 3, 2, 2, 2, 747, 756, 7, 9, 2, 2, 748, 749, 12, 27, 2, 2, 749, 750, 7, 6, 2, 2, 750, 751, 5, 70, 36, 2, 751, 752, 7, 7, 2, 2, 752, 756, 3, 2, 2, 2, 753, 754, 12, 24, 2, 2, 754, 756, 9, 2, 2, 2, 755, 697, 3, 2, 2, 2, 755, 700, 3, 2, 2, 2, 755, 703, 3, 2, 2, 2, 755, 706, 3, 2, 2, 2, 755, 709, 3, 2, 2, 2, 755, 712, 3, 2, 2, 2, 755, 715, 3, 2, 2, 2, 755, 718, 3, 2, 2, 2, 755, 721, 3, 2, 2, 2, 755, 724, 3, 2, 2, 2, 755, 730, 3, 2, 2, 2, 755, 733, 3, 2, 2, 2, 755, 736, 3, 2, 2, 2, 755, 739, 3, 2, 2, 2, 755, 742, 3, 2, 2, 2, 755, 748, 3, 2, 2, 2, 755, 753, 3, 2, 2, 2, 756, 759, 3, 2, 2, 2, 757, 755, 3, 2, 2, 2, 757, 758, 3, 2, 2, 2, 758, 73, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 760, 765, 5, 72, 37, 2, 761, 762, 7, 12, 2, 2, 762, 764, 5, 72, 37, 2, 763, 761, 3, 2, 2, 2, 764, 767, 3, 2, 2, 2, 765, 763, 3, 2, 2, 2, 765, 766, 3, 2, 2, 2, 766, 75, 3, 2, 2, 2, 767, 765, 3, 2, 2, 2, 768, 770, 7, 83, 2, 2, 769, 771, 5, 78, 40, 2, 770, 769, 3, 2, 2, 2, 770, 771, 3, 2, 2, 2, 771, 772, 3, 2, 2, 2, 772, 773, 7, 93, 2, 2, 773, 77, 3, 2, 2, 2, 774, 775, 7, 8, 2, 2, 775, 780, 5, 80, 41, 2, 776, 777, 7, 12, 2, 2, 777, 779, 5, 80, 41, 2, 778, 776, 3, 2, 2, 2, 779, 782, 3, 2, 2, 2, 780, 778, 3, 2, 2, 2, 780, 781, 3, 2, 2, 2, 781, 783, 3, 2, 2, 2, 782, 780, 3, 2, 2, 2, 783, 784, 7, 9, 2, 2, 784, 79, 3, 2, 2, 2, 785, 786, 7, 84, 2, 2, 786, 801, 7, 117, 2, 2, 787, 788, 7, 85, 2, 2, 788, 801, 7, 115, 2, 2, 789, 790, 7, 86, 2, 2, 790, 801, 7, 117, 2, 2, 791, 792, 7, 87, 2, 2, 792, 801, 5, 72, 37, 2, 793, 794, 7, 88, 2, 2, 794, 801, 5, 72, 37, 2, 795, 798, 7, 42, 2, 2, 796, 799, 7, 53, 2, 2, 797, 799, 5, 72, 37, 2, 798, 796, 3, 2, 2, 2, 798, 797, 3, 2, 2, 2, 799, 801, 3, 2, 2, 2, 800, 785, 3, 2, 2, 2, 800, 787, 3, 2, 2, 2, 800, 789, 3, 2, 2, 2, 800, 791, 3, 2, 2, 2, 800, 793, 3, 2, 2, 2, 800, 795, 3, 2, 2, 2, 801, 81, 3, 2, 2, 2, 802, 804, 5, 84, 43, 2, 803, 802, 3, 2, 2, 2, 804, 807, 3, 2, 2, 2, 805, 803, 3, 2, 2, 2, 805, 806, 3, 2, 2, 2, 806, 83, 3, 2, 2, 2, 807, 805, 3, 2, 2, 2, 808, 812, 5, 86, 44, 2, 809, 812, 5, 88, 45, 2, 810, 812, 5, 90, 46, 2, 811, 808, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 811, 810, 3, 2, 2, 2, 812, 85, 3, 2, 2, 2, 813, 814, 7, 154, 2, 2, 814, 818, 7, 125, 2, 2, 815, 816, 7, 153, 2, 2, 816, 818, 7, 125, 2, 2, 817, 813, 3, 2, 2, 2, 817, 815, 3, 2, 2, 2, 818, 87, 3, 2, 2, 2, 819, 821, 7, 123, 2, 2, 820, 822, 5, 92, 47, 2, 821, 820, 3, 2, 2, 2, 821, 822, 3, 2, 2, 2, 822, 89, 3, 2, 2, 2, 823, 824, 7, 122, 2, 2, 824, 829, 5, 94, 48, 2, 825, 826, 7, 126, 2, 2, 826, 828, 5, 94, 48, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 91, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 856, 5, 94, 48, 2, 833, 834, 7, 124, 2, 2, 834, 856, 5, 94, 48, 2, 835, 836, 5, 94, 48, 2, 836, 837, 7, 126, 2, 2, 837, 838, 7, 154, 2, 2, 838, 856, 3, 2, 2, 2, 839, 840, 7, 127, 2, 2, 840, 841, 5, 94, 48, 2, 841, 842, 7, 128, 2, 2, 842, 843, 7, 126, 2, 2, 843, 844, 7, 154, 2, 2, 844, 856, 3, 2, 2, 2, 845, 846, 7, 127, 2, 2, 846, 847, 5, 94, 48, 2, 847, 848, 7, 126, 2, 2, 848, 849, 7, 154, 2, 2, 849, 850, 7, 128, 2, 2, 850, 856, 3, 2, 2, 2, 851, 852, 7, 127, 2, 2, 852, 853, 5, 94, 48, 2, 853, 854, 7, 128, 2, 2, 854, 856, 3, 2, 2, 2, 855, 832, 3, 2, 2, 2, 855, 833, 3, 2, 2, 2, 855, 835, 3, 2, 2, 2, 855, 839, 3, 2, 2, 2, 855, 845, 3, 2, 2, 2, 855, 851, 3, 2, 2, 2, 856, 93, 3, 2, 2, 2, 857, 858, 8, 48, 1, 2, 858, 859, 7, 129, 2, 2, 859, 860, 5, 94, 48, 2, 860, 861, 7, 130, 2, 2, 861, 872, 3, 2, 2, 2, 862, 863, 9, 9, 2, 2, 863, 872, 5, 94, 48, 10, 864, 872, 7, 154, 2, 2, 865, 872, 7, 152, 2, 2, 866, 867, 7, 140, 2, 2, 867, 868, 7, 154, 2, 2, 868, 872, 7, 141, 2, 2, 869, 872, 7, 142, 2, 2, 870, 872, 7, 151, 2, 2, 871, 857, 3, 2, 2, 2, 871, 862, 3, 2, 2, 2, 871, 864, 3, 2, 2, 2, 871, 865, 3, 2, 2, 2, 871, 866, 3, 2, 2, 2, 871, 869, 3, 2, 2, 2, 871, 870, 3, 2, 2, 2, 872, 887, 3, 2, 2, 2, 873, 874, 12, 12, 2, 2, 874, 875, 7, 131, 2, 2, 875, 886, 5, 94, 48, 13, 876, 877, 12, 11, 2, 2, 877, 878, 9, 10, 2, 2, 878, 886, 5, 94, 48, 12, 879, 880, 12, 9, 2, 2, 880, 881, 9, 11, 2, 2, 881, 886, 5, 94, 48, 10, 882, 883, 12, 8, 2, 2, 883, 884, 9, 12, 2, 2, 884, 886, 5, 94, 48, 9, 885, 873, 3, 2, 2, 2, 885, 876, 3, 2, 2, 2, 885, 879, 3, 2, 2, 2, 885, 882, 3, 2, 2, 2, 886, 889, 3, 2, 2, 2, 887, 885, 3, 2, 2, 2, 887, 888, 3, 2, 2, 2, 888, 95, 3, 2, 2, 2, 889, 887, 3, 2, 2, 2, 90, 105, 110, 118, 135, 144, 154, 160, 168, 175, 184, 189, 195, 200, 205, 212, 219, 224, 236, 239, 241, 252, 259, 264, 270, 272, 280, 286, 298, 312, 318, 324, 330, 335, 339, 348, 355, 361, 372, 433, 437, 448, 467, 476, 481, 486, 493, 506, 511, 523, 537, 556, 565, 572, 577, 582, 584, 590, 597, 603, 606, 614, 617, 620, 630, 642, 650, 656, 660, 681, 691, 695, 745, 755, 757, 765, 770, 780, 798, 800, 805, 811, 817, 821, 829, 855, 871, 885, 887] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 426d8b3c0..731e8aca5 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -33,20 +33,20 @@ public class KickCParser extends Parser { DO=67, FOR=68, SWITCH=69, RETURN=70, BREAK=71, CONTINUE=72, ASM=73, DEFAULT=74, CASE=75, STRUCT=76, ENUM=77, SIZEOF=78, TYPEID=79, DEFINED=80, KICKASM=81, RESOURCE=82, USES=83, CLOBBERS=84, BYTES=85, CYCLES=86, LOGIC_NOT=87, - SIGNEDNESS=88, SIMPLETYPE=89, BOOLEAN=90, KICKASM_BODY=91, STRING=92, - CHAR=93, IMPORT=94, INCLUDE=95, PRAGMA=96, DEFINE=97, DEFINE_CONTINUE=98, - UNDEF=99, IFDEF=100, IFNDEF=101, IFIF=102, ELIF=103, IFELSE=104, ENDIF=105, - NUMBER=106, NUMFLOAT=107, BINFLOAT=108, DECFLOAT=109, HEXFLOAT=110, NUMINT=111, - BININTEGER=112, DECINTEGER=113, HEXINTEGER=114, NAME=115, WS=116, COMMENT_LINE=117, - COMMENT_BLOCK=118, ASM_BYTE=119, ASM_MNEMONIC=120, ASM_IMM=121, ASM_COLON=122, - ASM_COMMA=123, ASM_PAR_BEGIN=124, ASM_PAR_END=125, ASM_BRACKET_BEGIN=126, - ASM_BRACKET_END=127, ASM_DOT=128, ASM_SHIFT_LEFT=129, ASM_SHIFT_RIGHT=130, - ASM_PLUS=131, ASM_MINUS=132, ASM_LESS_THAN=133, ASM_GREATER_THAN=134, - ASM_MULTIPLY=135, ASM_DIVIDE=136, ASM_CURLY_BEGIN=137, ASM_CURLY_END=138, - ASM_NUMBER=139, ASM_NUMFLOAT=140, ASM_BINFLOAT=141, ASM_DECFLOAT=142, - ASM_HEXFLOAT=143, ASM_NUMINT=144, ASM_BININTEGER=145, ASM_DECINTEGER=146, - ASM_HEXINTEGER=147, ASM_CHAR=148, ASM_MULTI_REL=149, ASM_MULTI_NAME=150, - ASM_NAME=151, ASM_WS=152, ASM_COMMENT_LINE=153, ASM_COMMENT_BLOCK=154; + SIGNEDNESS=88, SIMPLETYPE=89, BOOLEAN=90, KICKASM_BODY=91, IMPORT=92, + INCLUDE=93, PRAGMA=94, DEFINE=95, DEFINE_CONTINUE=96, UNDEF=97, IFDEF=98, + IFNDEF=99, IFIF=100, ELIF=101, IFELSE=102, ENDIF=103, NUMBER=104, NUMFLOAT=105, + BINFLOAT=106, DECFLOAT=107, HEXFLOAT=108, NUMINT=109, BININTEGER=110, + DECINTEGER=111, HEXINTEGER=112, NAME=113, SYSTEMFILE=114, STRING=115, + CHAR=116, WS=117, COMMENT_LINE=118, COMMENT_BLOCK=119, ASM_BYTE=120, ASM_MNEMONIC=121, + ASM_IMM=122, ASM_COLON=123, ASM_COMMA=124, ASM_PAR_BEGIN=125, ASM_PAR_END=126, + ASM_BRACKET_BEGIN=127, ASM_BRACKET_END=128, ASM_DOT=129, ASM_SHIFT_LEFT=130, + ASM_SHIFT_RIGHT=131, ASM_PLUS=132, ASM_MINUS=133, ASM_LESS_THAN=134, ASM_GREATER_THAN=135, + ASM_MULTIPLY=136, ASM_DIVIDE=137, ASM_CURLY_BEGIN=138, ASM_CURLY_END=139, + ASM_NUMBER=140, ASM_NUMFLOAT=141, ASM_BINFLOAT=142, ASM_DECFLOAT=143, + ASM_HEXFLOAT=144, ASM_NUMINT=145, ASM_BININTEGER=146, ASM_DECINTEGER=147, + ASM_HEXINTEGER=148, ASM_CHAR=149, ASM_MULTI_REL=150, ASM_MULTI_NAME=151, + ASM_NAME=152, ASM_WS=153, ASM_COMMENT_LINE=154, ASM_COMMENT_BLOCK=155; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_declSeq = 2, RULE_declOrImport = 3, RULE_importDecl = 4, RULE_decl = 5, RULE_declVariables = 6, RULE_declVariableList = 7, @@ -89,10 +89,11 @@ public class KickCParser extends Parser { "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'defined'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", - "'cycles'", "'!'", null, null, null, null, null, null, "'#import'", "'#include'", + "'cycles'", "'!'", null, null, null, null, "'#import'", "'#include'", "'#pragma'", "'#define'", null, "'#undef'", "'#ifdef'", "'#ifndef'", "'#if'", "'#elif'", "'#else'", "'#endif'", null, null, null, null, null, - null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" + null, null, null, null, null, null, null, null, null, null, null, "'.byte'", + null, "'#'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -111,12 +112,12 @@ public class KickCParser extends Parser { "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", - "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", - "IMPORT", "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", - "IFDEF", "IFNDEF", "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", - "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", - "HEXINTEGER", "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", - "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", + "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "IMPORT", "INCLUDE", + "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", "IFIF", + "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", + "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", + "SYSTEMFILE", "STRING", "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", + "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", @@ -455,6 +456,24 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } + public static class IncludeSystemContext extends ImportDeclContext { + public TerminalNode INCLUDE() { return getToken(KickCParser.INCLUDE, 0); } + public TerminalNode SYSTEMFILE() { return getToken(KickCParser.SYSTEMFILE, 0); } + public IncludeSystemContext(ImportDeclContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterIncludeSystem(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitIncludeSystem(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitIncludeSystem(this); + else return visitor.visitChildren(this); + } + } public static class ImportFileContext extends ImportDeclContext { public TerminalNode IMPORT() { return getToken(KickCParser.IMPORT, 0); } public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); } @@ -478,10 +497,10 @@ public class KickCParser extends Parser { ImportDeclContext _localctx = new ImportDeclContext(_ctx, getState()); enterRule(_localctx, 8, RULE_importDecl); try { - setState(114); + setState(116); _errHandler.sync(this); - switch (_input.LA(1)) { - case IMPORT: + switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { + case 1: _localctx = new ImportFileContext(_localctx); enterOuterAlt(_localctx, 1); { @@ -491,7 +510,7 @@ public class KickCParser extends Parser { match(STRING); } break; - case INCLUDE: + case 2: _localctx = new IncludeFileContext(_localctx); enterOuterAlt(_localctx, 2); { @@ -501,8 +520,16 @@ public class KickCParser extends Parser { match(STRING); } break; - default: - throw new NoViableAltException(this); + case 3: + _localctx = new IncludeSystemContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(114); + match(INCLUDE); + setState(115); + match(SYSTEMFILE); + } + break; } } catch (RecognitionException re) { @@ -562,63 +589,63 @@ public class KickCParser extends Parser { DeclContext _localctx = new DeclContext(_ctx, getState()); enterRule(_localctx, 10, RULE_decl); try { - setState(131); + setState(133); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(116); + setState(118); declVariables(); - setState(117); + setState(119); match(SEMICOLON); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(119); + setState(121); structDef(); - setState(120); + setState(122); match(SEMICOLON); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(122); + setState(124); enumDef(); - setState(123); + setState(125); match(SEMICOLON); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(125); + setState(127); declFunction(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(126); + setState(128); declKasm(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(127); + setState(129); globalDirective(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(128); + setState(130); typeDef(); - setState(129); + setState(131); match(SEMICOLON); } break; @@ -667,9 +694,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(133); + setState(135); declType(); - setState(134); + setState(136); declVariableList(0); } } @@ -734,25 +761,25 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(140); + setState(142); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(137); + setState(139); declPointer(); } } - setState(142); + setState(144); _errHandler.sync(this); _la = _input.LA(1); } - setState(143); + setState(145); declVariableInit(); } _ctx.stop = _input.LT(-1); - setState(156); + setState(158); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,6,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -763,30 +790,30 @@ public class KickCParser extends Parser { { _localctx = new DeclVariableListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_declVariableList); - setState(145); + setState(147); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(146); + setState(148); match(COMMA); - setState(150); + setState(152); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(147); + setState(149); declPointer(); } } - setState(152); + setState(154); _errHandler.sync(this); _la = _input.LA(1); } - setState(153); + setState(155); declVariableInit(); } } } - setState(158); + setState(160); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,6,_ctx); } @@ -848,37 +875,37 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(159); + setState(161); match(TYPEDEF); - setState(160); + setState(162); declType(); - setState(164); + setState(166); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(161); + setState(163); declPointer(); } } - setState(166); + setState(168); _errHandler.sync(this); _la = _input.LA(1); } - setState(167); + setState(169); ((TypeDefContext)_localctx).NAME = match(NAME); - setState(171); + setState(173); _errHandler.sync(this); _la = _input.LA(1); while (_la==BRACKET_BEGIN) { { { - setState(168); + setState(170); declArray(); } } - setState(173); + setState(175); _errHandler.sync(this); _la = _input.LA(1); } @@ -968,39 +995,39 @@ public class KickCParser extends Parser { int _la; try { int _alt; - setState(196); + setState(198); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: _localctx = new DeclVariableInitExprContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(176); + setState(178); match(NAME); - setState(180); + setState(182); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,9,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(177); + setState(179); declArray(); } } } - setState(182); + setState(184); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,9,_ctx); } - setState(185); + setState(187); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { case 1: { - setState(183); + setState(185); match(ASSIGN); - setState(184); + setState(186); expr(0); } break; @@ -1011,25 +1038,25 @@ public class KickCParser extends Parser { _localctx = new DeclVariableInitKasmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(187); + setState(189); match(NAME); - setState(191); + setState(193); _errHandler.sync(this); _la = _input.LA(1); while (_la==BRACKET_BEGIN) { { { - setState(188); + setState(190); declArray(); } } - setState(193); + setState(195); _errHandler.sync(this); _la = _input.LA(1); } - setState(194); + setState(196); match(ASSIGN); - setState(195); + setState(197); declKasm(); } break; @@ -1082,33 +1109,33 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(201); + setState(203); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(198); + setState(200); directive(); } } - setState(203); + setState(205); _errHandler.sync(this); _la = _input.LA(1); } - setState(204); + setState(206); type(0); - setState(208); + setState(210); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(205); + setState(207); directive(); } } - setState(210); + setState(212); _errHandler.sync(this); _la = _input.LA(1); } @@ -1159,19 +1186,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(211); + setState(213); match(ASTERISK); - setState(215); + setState(217); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(212); + setState(214); directive(); } } - setState(217); + setState(219); _errHandler.sync(this); _la = _input.LA(1); } @@ -1220,19 +1247,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(218); - match(BRACKET_BEGIN); setState(220); + match(BRACKET_BEGIN); + setState(222); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)))) != 0)) { { - setState(219); + setState(221); expr(0); } } - setState(222); + setState(224); match(BRACKET_END); } } @@ -1343,11 +1370,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(225); + setState(227); type(0); } _ctx.stop = _input.LT(-1); - setState(237); + setState(239); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,19,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1355,16 +1382,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(235); + setState(237); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { case 1: { _localctx = new TypeSpecifierPointerContext(new TypeSpecifierContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeSpecifier); - setState(227); + setState(229); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(228); + setState(230); match(ASTERISK); } break; @@ -1372,28 +1399,28 @@ public class KickCParser extends Parser { { _localctx = new TypeSpecifierArrayContext(new TypeSpecifierContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeSpecifier); - setState(229); + setState(231); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(230); - match(BRACKET_BEGIN); setState(232); + match(BRACKET_BEGIN); + setState(234); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)))) != 0)) { { - setState(231); + setState(233); expr(0); } } - setState(234); + setState(236); match(BRACKET_END); } break; } } } - setState(239); + setState(241); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,19,_ctx); } @@ -1632,7 +1659,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(255); + setState(257); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) { case 1: @@ -1641,11 +1668,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(241); - match(PAR_BEGIN); - setState(242); - type(0); setState(243); + match(PAR_BEGIN); + setState(244); + type(0); + setState(245); match(PAR_END); } break; @@ -1654,7 +1681,7 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(245); + setState(247); match(SIMPLETYPE); } break; @@ -1663,14 +1690,14 @@ public class KickCParser extends Parser { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(246); - match(SIGNEDNESS); setState(248); + match(SIGNEDNESS); + setState(250); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { case 1: { - setState(247); + setState(249); match(SIMPLETYPE); } break; @@ -1682,7 +1709,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(250); + setState(252); structDef(); } break; @@ -1691,7 +1718,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(251); + setState(253); structRef(); } break; @@ -1700,7 +1727,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(252); + setState(254); enumDef(); } break; @@ -1709,7 +1736,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(253); + setState(255); enumRef(); } break; @@ -1718,13 +1745,13 @@ public class KickCParser extends Parser { _localctx = new TypeNamedRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(254); + setState(256); match(TYPEDEFNAME); } break; } _ctx.stop = _input.LT(-1); - setState(268); + setState(270); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,24,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1732,28 +1759,28 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(266); + setState(268); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: { _localctx = new TypeArrayContext(new TypeContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_type); - setState(257); + setState(259); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(258); - match(BRACKET_BEGIN); setState(260); + match(BRACKET_BEGIN); + setState(262); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)))) != 0)) { { - setState(259); + setState(261); expr(0); } } - setState(262); + setState(264); match(BRACKET_END); } break; @@ -1761,18 +1788,18 @@ public class KickCParser extends Parser { { _localctx = new TypeProcedureContext(new TypeContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_type); - setState(263); - if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(264); - match(PAR_BEGIN); setState(265); + if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); + setState(266); + match(PAR_BEGIN); + setState(267); match(PAR_END); } break; } } } - setState(270); + setState(272); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,24,_ctx); } @@ -1817,9 +1844,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(271); + setState(273); match(STRUCT); - setState(272); + setState(274); match(NAME); } } @@ -1871,35 +1898,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(274); - match(STRUCT); setState(276); + match(STRUCT); + setState(278); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(275); + setState(277); match(NAME); } } - setState(278); + setState(280); match(CURLY_BEGIN); - setState(280); + setState(282); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(279); + setState(281); structMembers(); } } - setState(282); + setState(284); _errHandler.sync(this); _la = _input.LA(1); } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (STRUCT - 76)) | (1L << (ENUM - 76)) | (1L << (SIGNEDNESS - 76)) | (1L << (SIMPLETYPE - 76)))) != 0) ); - setState(284); + setState(286); match(CURLY_END); } } @@ -1944,9 +1971,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(286); + setState(288); declVariables(); - setState(287); + setState(289); match(SEMICOLON); } } @@ -1989,9 +2016,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(289); + setState(291); match(ENUM); - setState(290); + setState(292); match(NAME); } } @@ -2040,23 +2067,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(292); - match(ENUM); setState(294); + match(ENUM); + setState(296); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(293); + setState(295); match(NAME); } } - setState(296); - match(CURLY_BEGIN); - setState(297); - enumMemberList(0); setState(298); + match(CURLY_BEGIN); + setState(299); + enumMemberList(0); + setState(300); match(CURLY_END); } } @@ -2114,11 +2141,11 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(301); + setState(303); enumMember(); } _ctx.stop = _input.LT(-1); - setState(308); + setState(310); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,28,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -2129,16 +2156,16 @@ public class KickCParser extends Parser { { _localctx = new EnumMemberListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList); - setState(303); - if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(304); - match(COMMA); setState(305); + if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); + setState(306); + match(COMMA); + setState(307); enumMember(); } } } - setState(310); + setState(312); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,28,_ctx); } @@ -2186,16 +2213,16 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(311); + setState(313); match(NAME); - setState(314); + setState(316); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { case 1: { - setState(312); + setState(314); match(ASSIGN); - setState(313); + setState(315); expr(0); } break; @@ -2259,50 +2286,50 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(316); + setState(318); declType(); - setState(320); + setState(322); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(317); + setState(319); declPointer(); } } - setState(322); + setState(324); _errHandler.sync(this); _la = _input.LA(1); } - setState(323); + setState(325); match(NAME); - setState(324); - match(PAR_BEGIN); setState(326); + match(PAR_BEGIN); + setState(328); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (STRUCT - 76)) | (1L << (ENUM - 76)) | (1L << (SIGNEDNESS - 76)) | (1L << (SIMPLETYPE - 76)))) != 0)) { { - setState(325); + setState(327); parameterListDecl(); } } - setState(328); + setState(330); match(PAR_END); - setState(331); + setState(333); _errHandler.sync(this); switch (_input.LA(1)) { case CURLY_BEGIN: { - setState(329); + setState(331); declFunctionBody(); } break; case SEMICOLON: { - setState(330); + setState(332); match(SEMICOLON); } break; @@ -2354,19 +2381,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(333); - match(CURLY_BEGIN); setState(335); + match(CURLY_BEGIN); + setState(337); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(334); + setState(336); stmtSeq(); } } - setState(337); + setState(339); match(CURLY_END); } } @@ -2418,21 +2445,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(339); + setState(341); parameterDecl(); - setState(344); + setState(346); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(340); + setState(342); match(COMMA); - setState(341); + setState(343); parameterDecl(); } } - setState(346); + setState(348); _errHandler.sync(this); _la = _input.LA(1); } @@ -2509,30 +2536,30 @@ public class KickCParser extends Parser { enterRule(_localctx, 50, RULE_parameterDecl); int _la; try { - setState(357); + setState(359); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: _localctx = new ParameterDeclTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(347); + setState(349); declType(); - setState(351); + setState(353); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(348); + setState(350); declPointer(); } } - setState(353); + setState(355); _errHandler.sync(this); _la = _input.LA(1); } - setState(354); + setState(356); match(NAME); } break; @@ -2540,7 +2567,7 @@ public class KickCParser extends Parser { _localctx = new ParameterDeclVoidContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(356); + setState(358); match(SIMPLETYPE); } break; @@ -2798,7 +2825,7 @@ public class KickCParser extends Parser { enterRule(_localctx, 52, RULE_globalDirective); int _la; try { - setState(433); + setState(435); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: @@ -2806,32 +2833,32 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(359); + setState(361); match(PRAGMA); - setState(360); + setState(362); match(RESERVE); } - setState(362); + setState(364); match(PAR_BEGIN); - setState(363); + setState(365); match(NUMBER); - setState(368); + setState(370); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(364); + setState(366); match(COMMA); - setState(365); + setState(367); match(NUMBER); } } - setState(370); + setState(372); _errHandler.sync(this); _la = _input.LA(1); } - setState(371); + setState(373); match(PAR_END); } break; @@ -2840,16 +2867,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 2); { { - setState(372); + setState(374); match(PRAGMA); - setState(373); + setState(375); match(PC); } - setState(375); - match(PAR_BEGIN); - setState(376); - match(NUMBER); setState(377); + match(PAR_BEGIN); + setState(378); + match(NUMBER); + setState(379); match(PAR_END); } break; @@ -2858,16 +2885,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 3); { { - setState(378); + setState(380); match(PRAGMA); - setState(379); + setState(381); match(TARGET); } - setState(381); - match(PAR_BEGIN); - setState(382); - match(NAME); setState(383); + match(PAR_BEGIN); + setState(384); + match(NAME); + setState(385); match(PAR_END); } break; @@ -2876,16 +2903,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 4); { { - setState(384); + setState(386); match(PRAGMA); - setState(385); + setState(387); match(CPU); } - setState(387); - match(PAR_BEGIN); - setState(388); - match(NAME); setState(389); + match(PAR_BEGIN); + setState(390); + match(NAME); + setState(391); match(PAR_END); } break; @@ -2894,16 +2921,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 5); { { - setState(390); + setState(392); match(PRAGMA); - setState(391); + setState(393); match(LINK); } - setState(393); - match(PAR_BEGIN); - setState(394); - match(STRING); setState(395); + match(PAR_BEGIN); + setState(396); + match(STRING); + setState(397); match(PAR_END); } break; @@ -2912,16 +2939,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 6); { { - setState(396); + setState(398); match(PRAGMA); - setState(397); + setState(399); match(CODESEG); } - setState(399); - match(PAR_BEGIN); - setState(400); - match(NAME); setState(401); + match(PAR_BEGIN); + setState(402); + match(NAME); + setState(403); match(PAR_END); } break; @@ -2930,16 +2957,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 7); { { - setState(402); + setState(404); match(PRAGMA); - setState(403); + setState(405); match(DATASEG); } - setState(405); - match(PAR_BEGIN); - setState(406); - match(NAME); setState(407); + match(PAR_BEGIN); + setState(408); + match(NAME); + setState(409); match(PAR_END); } break; @@ -2948,16 +2975,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 8); { { - setState(408); + setState(410); match(PRAGMA); - setState(409); + setState(411); match(ENCODING); } - setState(411); - match(PAR_BEGIN); - setState(412); - match(NAME); setState(413); + match(PAR_BEGIN); + setState(414); + match(NAME); + setState(415); match(PAR_END); } break; @@ -2966,16 +2993,16 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 9); { { - setState(414); + setState(416); match(PRAGMA); - setState(415); + setState(417); match(CALLING); } - setState(417); - match(PAR_BEGIN); - setState(418); - match(CALLINGCONVENTION); setState(419); + match(PAR_BEGIN); + setState(420); + match(CALLINGCONVENTION); + setState(421); match(PAR_END); } break; @@ -2984,32 +3011,32 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 10); { { - setState(420); + setState(422); match(PRAGMA); - setState(421); + setState(423); match(VARMODEL); } - setState(423); + setState(425); match(PAR_BEGIN); - setState(424); + setState(426); match(NAME); - setState(429); + setState(431); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(425); + setState(427); match(COMMA); - setState(426); + setState(428); match(NAME); } } - setState(431); + setState(433); _errHandler.sync(this); _la = _input.LA(1); } - setState(432); + setState(434); match(PAR_END); } break; @@ -3337,14 +3364,14 @@ public class KickCParser extends Parser { enterRule(_localctx, 54, RULE_directive); int _la; try { - setState(477); + setState(479); _errHandler.sync(this); switch (_input.LA(1)) { case CONST: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(435); + setState(437); match(CONST); } break; @@ -3352,13 +3379,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveAlignContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(436); - match(ALIGN); - setState(437); - match(PAR_BEGIN); setState(438); - match(NUMBER); + match(ALIGN); setState(439); + match(PAR_BEGIN); + setState(440); + match(NUMBER); + setState(441); match(PAR_END); } break; @@ -3366,20 +3393,20 @@ public class KickCParser extends Parser { _localctx = new DirectiveRegisterContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(440); + setState(442); match(REGISTER); - setState(444); + setState(446); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(441); + setState(443); match(PAR_BEGIN); { - setState(442); + setState(444); match(NAME); } - setState(443); + setState(445); match(PAR_END); } break; @@ -3390,7 +3417,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaZpContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(446); + setState(448); match(ADDRESS_ZEROPAGE); } break; @@ -3398,7 +3425,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaMainContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(447); + setState(449); match(ADDRESS_MAINMEM); } break; @@ -3406,15 +3433,15 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(448); + setState(450); match(ADDRESS); - setState(449); + setState(451); match(PAR_BEGIN); { - setState(450); + setState(452); match(NUMBER); } - setState(451); + setState(453); match(PAR_END); } break; @@ -3422,7 +3449,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveVolatileContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(452); + setState(454); match(VOLATILE); } break; @@ -3430,7 +3457,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveStaticContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(453); + setState(455); match(STATIC); } break; @@ -3438,7 +3465,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveFormSsaContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(454); + setState(456); match(FORM_SSA); } break; @@ -3446,7 +3473,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveFormMaContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(455); + setState(457); match(FORM_MA); } break; @@ -3454,7 +3481,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExternContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(456); + setState(458); match(EXTERN); } break; @@ -3462,7 +3489,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExportContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(457); + setState(459); match(EXPORT); } break; @@ -3470,7 +3497,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveInlineContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(458); + setState(460); match(INLINE); } break; @@ -3478,18 +3505,18 @@ public class KickCParser extends Parser { _localctx = new DirectiveInterruptContext(_localctx); enterOuterAlt(_localctx, 14); { - setState(459); + setState(461); match(INTERRUPT); - setState(463); + setState(465); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: { - setState(460); - match(PAR_BEGIN); - setState(461); - match(NAME); setState(462); + match(PAR_BEGIN); + setState(463); + match(NAME); + setState(464); match(PAR_END); } break; @@ -3500,29 +3527,29 @@ public class KickCParser extends Parser { _localctx = new DirectiveReserveZpContext(_localctx); enterOuterAlt(_localctx, 15); { - setState(465); - match(RESERVE); - setState(466); - match(PAR_BEGIN); setState(467); + match(RESERVE); + setState(468); + match(PAR_BEGIN); + setState(469); match(NUMBER); - setState(472); + setState(474); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(468); + setState(470); match(COMMA); - setState(469); + setState(471); match(NUMBER); } } - setState(474); + setState(476); _errHandler.sync(this); _la = _input.LA(1); } - setState(475); + setState(477); match(PAR_END); } break; @@ -3530,7 +3557,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveCallingConventionContext(_localctx); enterOuterAlt(_localctx, 16); { - setState(476); + setState(478); match(CALLINGCONVENTION); } break; @@ -3582,20 +3609,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(480); + setState(482); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(479); + setState(481); stmt(); } } - setState(482); + setState(484); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0) ); } } catch (RecognitionException re) { @@ -3939,16 +3966,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 58, RULE_stmt); int _la; try { - setState(568); + setState(570); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(484); + setState(486); declVariables(); - setState(485); + setState(487); match(SEMICOLON); } break; @@ -3956,19 +3983,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(487); - match(CURLY_BEGIN); setState(489); + match(CURLY_BEGIN); + setState(491); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(488); + setState(490); stmtSeq(); } } - setState(491); + setState(493); match(CURLY_END); } break; @@ -3976,9 +4003,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(492); + setState(494); commaExpr(0); - setState(493); + setState(495); match(SEMICOLON); } break; @@ -3986,24 +4013,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(495); - match(IF); - setState(496); - match(PAR_BEGIN); setState(497); - commaExpr(0); + match(IF); setState(498); - match(PAR_END); + match(PAR_BEGIN); setState(499); + commaExpr(0); + setState(500); + match(PAR_END); + setState(501); stmt(); - setState(502); + setState(504); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: { - setState(500); + setState(502); match(ELSE); - setState(501); + setState(503); stmt(); } break; @@ -4014,29 +4041,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(507); + setState(509); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(504); + setState(506); directive(); } } - setState(509); + setState(511); _errHandler.sync(this); _la = _input.LA(1); } - setState(510); - match(WHILE); - setState(511); - match(PAR_BEGIN); setState(512); - commaExpr(0); + match(WHILE); setState(513); - match(PAR_END); + match(PAR_BEGIN); setState(514); + commaExpr(0); + setState(515); + match(PAR_END); + setState(516); stmt(); } break; @@ -4044,33 +4071,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(519); + setState(521); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(516); + setState(518); directive(); } } - setState(521); + setState(523); _errHandler.sync(this); _la = _input.LA(1); } - setState(522); - match(DO); - setState(523); - stmt(); setState(524); - match(WHILE); + match(DO); setState(525); - match(PAR_BEGIN); + stmt(); setState(526); - commaExpr(0); + match(WHILE); setState(527); - match(PAR_END); + match(PAR_BEGIN); setState(528); + commaExpr(0); + setState(529); + match(PAR_END); + setState(530); match(SEMICOLON); } break; @@ -4078,29 +4105,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(533); + setState(535); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0)) { { { - setState(530); + setState(532); directive(); } } - setState(535); + setState(537); _errHandler.sync(this); _la = _input.LA(1); } - setState(536); - match(FOR); - setState(537); - match(PAR_BEGIN); setState(538); - forLoop(); + match(FOR); setState(539); - match(PAR_END); + match(PAR_BEGIN); setState(540); + forLoop(); + setState(541); + match(PAR_END); + setState(542); stmt(); } break; @@ -4108,19 +4135,19 @@ public class KickCParser extends Parser { _localctx = new StmtSwitchContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(542); - match(SWITCH); - setState(543); - match(PAR_BEGIN); setState(544); - commaExpr(0); + match(SWITCH); setState(545); - match(PAR_END); + match(PAR_BEGIN); setState(546); - match(CURLY_BEGIN); + commaExpr(0); setState(547); - switchCases(); + match(PAR_END); setState(548); + match(CURLY_BEGIN); + setState(549); + switchCases(); + setState(550); match(CURLY_END); } break; @@ -4128,19 +4155,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(550); - match(RETURN); setState(552); + match(RETURN); + setState(554); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)))) != 0)) { { - setState(551); + setState(553); commaExpr(0); } } - setState(554); + setState(556); match(SEMICOLON); } break; @@ -4148,9 +4175,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(555); + setState(557); match(BREAK); - setState(556); + setState(558); match(SEMICOLON); } break; @@ -4158,9 +4185,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(557); + setState(559); match(CONTINUE); - setState(558); + setState(560); match(SEMICOLON); } break; @@ -4168,23 +4195,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(559); - match(ASM); setState(561); + match(ASM); + setState(563); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(560); + setState(562); asmDirectives(); } } - setState(563); - match(CURLY_BEGIN); - setState(564); - asmLines(); setState(565); + match(CURLY_BEGIN); + setState(566); + asmLines(); + setState(567); match(ASM_CURLY_END); } break; @@ -4192,7 +4219,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(567); + setState(569); declKasm(); } break; @@ -4247,35 +4274,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(571); + setState(573); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(570); + setState(572); switchCase(); } } - setState(573); + setState(575); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==CASE ); - setState(580); + setState(582); _errHandler.sync(this); _la = _input.LA(1); if (_la==DEFAULT) { { - setState(575); + setState(577); match(DEFAULT); - setState(576); - match(COLON); setState(578); + match(COLON); + setState(580); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(577); + setState(579); stmtSeq(); } } @@ -4331,18 +4358,18 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(582); - match(CASE); - setState(583); - expr(0); setState(584); - match(COLON); + match(CASE); + setState(585); + expr(0); setState(586); + match(COLON); + setState(588); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(585); + setState(587); stmtSeq(); } } @@ -4440,27 +4467,27 @@ public class KickCParser extends Parser { enterRule(_localctx, 64, RULE_forLoop); int _la; try { - setState(610); + setState(612); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(588); - forClassicInit(); - setState(589); - match(SEMICOLON); setState(590); - commaExpr(0); + forClassicInit(); setState(591); match(SEMICOLON); + setState(592); + commaExpr(0); setState(593); + match(SEMICOLON); + setState(595); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)))) != 0)) { { - setState(592); + setState(594); commaExpr(0); } } @@ -4471,40 +4498,40 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(602); + setState(604); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (STRUCT - 76)) | (1L << (ENUM - 76)) | (1L << (SIGNEDNESS - 76)) | (1L << (SIMPLETYPE - 76)))) != 0)) { { - setState(595); + setState(597); declType(); - setState(599); + setState(601); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(596); + setState(598); declPointer(); } } - setState(601); + setState(603); _errHandler.sync(this); _la = _input.LA(1); } } } - setState(604); - match(NAME); - setState(605); - match(COLON); setState(606); - expr(0); + match(NAME); setState(607); - match(RANGE); + match(COLON); setState(608); expr(0); + setState(609); + match(RANGE); + setState(610); + expr(0); } break; } @@ -4575,19 +4602,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 66, RULE_forClassicInit); int _la; try { - setState(616); + setState(618); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(613); + setState(615); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << CALLINGCONVENTION))) != 0) || ((((_la - 76)) & ~0x3f) == 0 && ((1L << (_la - 76)) & ((1L << (STRUCT - 76)) | (1L << (ENUM - 76)) | (1L << (SIGNEDNESS - 76)) | (1L << (SIMPLETYPE - 76)))) != 0)) { { - setState(612); + setState(614); declVariables(); } } @@ -4598,7 +4625,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(615); + setState(617); commaExpr(0); } break; @@ -4689,11 +4716,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(619); + setState(621); expr(0); } _ctx.stop = _input.LT(-1); - setState(626); + setState(628); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4704,16 +4731,16 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(621); - if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(622); - match(COMMA); setState(623); + if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); + setState(624); + match(COMMA); + setState(625); expr(0); } } } - setState(628); + setState(630); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); } @@ -5277,7 +5304,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(691); + setState(693); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: @@ -5286,11 +5313,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(630); - match(PAR_BEGIN); - setState(631); - commaExpr(0); setState(632); + match(PAR_BEGIN); + setState(633); + commaExpr(0); + setState(634); match(PAR_END); } break; @@ -5299,27 +5326,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(634); + setState(636); match(SIZEOF); - setState(635); + setState(637); match(PAR_BEGIN); - setState(638); + setState(640); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(636); + setState(638); expr(0); } break; case 2: { - setState(637); + setState(639); typeSpecifier(0); } break; } - setState(640); + setState(642); match(PAR_END); } break; @@ -5328,27 +5355,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(642); + setState(644); match(TYPEID); - setState(643); + setState(645); match(PAR_BEGIN); - setState(646); + setState(648); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: { - setState(644); + setState(646); expr(0); } break; case 2: { - setState(645); + setState(647); typeSpecifier(0); } break; } - setState(648); + setState(650); match(PAR_END); } break; @@ -5357,26 +5384,26 @@ public class KickCParser extends Parser { _localctx = new ExprDefinedContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(650); - match(DEFINED); setState(652); + match(DEFINED); + setState(654); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(651); + setState(653); match(PAR_BEGIN); } } - setState(654); - match(NAME); setState(656); + match(NAME); + setState(658); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { - setState(655); + setState(657); match(PAR_END); } break; @@ -5388,13 +5415,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(658); - match(PAR_BEGIN); - setState(659); - typeSpecifier(0); setState(660); - match(PAR_END); + match(PAR_BEGIN); setState(661); + typeSpecifier(0); + setState(662); + match(PAR_END); + setState(663); expr(24); } break; @@ -5403,7 +5430,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(663); + setState(665); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5413,7 +5440,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(664); + setState(666); expr(23); } break; @@ -5422,9 +5449,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(665); + setState(667); match(ASTERISK); - setState(666); + setState(668); expr(21); } break; @@ -5433,7 +5460,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(667); + setState(669); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << MINUS) | (1L << AND) | (1L << BIT_NOT))) != 0) || _la==LOGIC_NOT) ) { _errHandler.recoverInline(this); @@ -5443,7 +5470,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(668); + setState(670); expr(20); } break; @@ -5452,7 +5479,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(669); + setState(671); _la = _input.LA(1); if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) { _errHandler.recoverInline(this); @@ -5462,7 +5489,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(670); + setState(672); expr(16); } break; @@ -5471,27 +5498,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(671); + setState(673); match(CURLY_BEGIN); - setState(672); + setState(674); expr(0); - setState(677); + setState(679); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(673); + setState(675); match(COMMA); - setState(674); + setState(676); expr(0); } } - setState(679); + setState(681); _errHandler.sync(this); _la = _input.LA(1); } - setState(680); + setState(682); match(CURLY_END); } break; @@ -5500,7 +5527,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(682); + setState(684); match(NAME); } break; @@ -5509,7 +5536,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(683); + setState(685); match(NUMBER); } break; @@ -5518,7 +5545,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(685); + setState(687); _errHandler.sync(this); _alt = 1; do { @@ -5526,7 +5553,7 @@ public class KickCParser extends Parser { case 1: { { - setState(684); + setState(686); match(STRING); } } @@ -5534,7 +5561,7 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(687); + setState(689); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -5545,7 +5572,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(689); + setState(691); match(CHAR); } break; @@ -5554,13 +5581,13 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(690); + setState(692); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(753); + setState(755); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,73,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5568,16 +5595,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(751); + setState(753); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(693); + setState(695); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(694); + setState(696); _la = _input.LA(1); if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -5587,7 +5614,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(695); + setState(697); expr(20); } break; @@ -5595,9 +5622,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(696); + setState(698); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(697); + setState(699); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) { _errHandler.recoverInline(this); @@ -5607,7 +5634,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(698); + setState(700); expr(19); } break; @@ -5615,9 +5642,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(699); + setState(701); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(700); + setState(702); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5627,7 +5654,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(701); + setState(703); expr(18); } break; @@ -5635,9 +5662,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(702); + setState(704); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(703); + setState(705); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << EQUAL) | (1L << NOT_EQUAL) | (1L << LESS_THAN) | (1L << LESS_THAN_EQUAL) | (1L << GREATER_THAN_EQUAL) | (1L << GREATER_THAN))) != 0)) ) { _errHandler.recoverInline(this); @@ -5647,7 +5674,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(704); + setState(706); expr(16); } break; @@ -5655,13 +5682,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(705); + setState(707); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(706); + setState(708); match(AND); } - setState(707); + setState(709); expr(15); } break; @@ -5669,13 +5696,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(708); + setState(710); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(709); + setState(711); match(BIT_XOR); } - setState(710); + setState(712); expr(14); } break; @@ -5683,13 +5710,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(711); + setState(713); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(712); + setState(714); match(BIT_OR); } - setState(713); + setState(715); expr(13); } break; @@ -5697,13 +5724,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(714); + setState(716); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(715); + setState(717); match(LOGIC_AND); } - setState(716); + setState(718); expr(12); } break; @@ -5711,13 +5738,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(717); + setState(719); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(718); + setState(720); match(LOGIC_OR); } - setState(719); + setState(721); expr(11); } break; @@ -5725,15 +5752,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(720); - if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(721); - match(CONDITION); setState(722); - expr(0); + if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); setState(723); - match(COLON); + match(CONDITION); setState(724); + expr(0); + setState(725); + match(COLON); + setState(726); expr(10); } break; @@ -5741,11 +5768,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(726); - if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(727); - match(ASSIGN); setState(728); + if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); + setState(729); + match(ASSIGN); + setState(730); expr(8); } break; @@ -5753,11 +5780,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(729); - if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(730); - match(ASSIGN_COMPOUND); setState(731); + if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); + setState(732); + match(ASSIGN_COMPOUND); + setState(733); expr(7); } break; @@ -5765,11 +5792,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(732); - if (!(precpred(_ctx, 31))) throw new FailedPredicateException(this, "precpred(_ctx, 31)"); - setState(733); - match(DOT); setState(734); + if (!(precpred(_ctx, 31))) throw new FailedPredicateException(this, "precpred(_ctx, 31)"); + setState(735); + match(DOT); + setState(736); match(NAME); } break; @@ -5777,11 +5804,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(735); - if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(736); - match(ARROW); setState(737); + if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); + setState(738); + match(ARROW); + setState(739); match(NAME); } break; @@ -5789,21 +5816,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(738); + setState(740); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(739); - match(PAR_BEGIN); setState(741); + match(PAR_BEGIN); + setState(743); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & ((1L << (SIZEOF - 78)) | (1L << (TYPEID - 78)) | (1L << (DEFINED - 78)) | (1L << (LOGIC_NOT - 78)) | (1L << (BOOLEAN - 78)) | (1L << (NUMBER - 78)) | (1L << (NAME - 78)) | (1L << (STRING - 78)) | (1L << (CHAR - 78)))) != 0)) { { - setState(740); + setState(742); parameterList(); } } - setState(743); + setState(745); match(PAR_END); } break; @@ -5811,13 +5838,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(744); - if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(745); - match(BRACKET_BEGIN); setState(746); - commaExpr(0); + if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); setState(747); + match(BRACKET_BEGIN); + setState(748); + commaExpr(0); + setState(749); match(BRACKET_END); } break; @@ -5825,9 +5852,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(749); + setState(751); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(750); + setState(752); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5842,7 +5869,7 @@ public class KickCParser extends Parser { } } } - setState(755); + setState(757); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,73,_ctx); } @@ -5896,21 +5923,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(756); + setState(758); expr(0); - setState(761); + setState(763); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(757); + setState(759); match(COMMA); - setState(758); + setState(760); expr(0); } } - setState(763); + setState(765); _errHandler.sync(this); _la = _input.LA(1); } @@ -5959,19 +5986,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(764); - match(KICKASM); setState(766); + match(KICKASM); + setState(768); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(765); + setState(767); asmDirectives(); } } - setState(768); + setState(770); match(KICKASM_BODY); } } @@ -6025,27 +6052,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(770); + setState(772); match(PAR_BEGIN); - setState(771); + setState(773); asmDirective(); - setState(776); + setState(778); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(772); + setState(774); match(COMMA); - setState(773); + setState(775); asmDirective(); } } - setState(778); + setState(780); _errHandler.sync(this); _la = _input.LA(1); } - setState(779); + setState(781); match(PAR_END); } } @@ -6191,16 +6218,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 78, RULE_asmDirective); try { - setState(796); + setState(798); _errHandler.sync(this); switch (_input.LA(1)) { case RESOURCE: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(781); + setState(783); match(RESOURCE); - setState(782); + setState(784); match(STRING); } break; @@ -6208,9 +6235,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(783); + setState(785); match(USES); - setState(784); + setState(786); match(NAME); } break; @@ -6218,9 +6245,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(785); + setState(787); match(CLOBBERS); - setState(786); + setState(788); match(STRING); } break; @@ -6228,9 +6255,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(787); + setState(789); match(BYTES); - setState(788); + setState(790); expr(0); } break; @@ -6238,9 +6265,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(789); + setState(791); match(CYCLES); - setState(790); + setState(792); expr(0); } break; @@ -6248,14 +6275,14 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(791); + setState(793); match(PC); - setState(794); + setState(796); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: { - setState(792); + setState(794); match(INLINE); } break; @@ -6275,12 +6302,12 @@ public class KickCParser extends Parser { case DEFINED: case LOGIC_NOT: case BOOLEAN: - case STRING: - case CHAR: case NUMBER: case NAME: + case STRING: + case CHAR: { - setState(793); + setState(795); expr(0); } break; @@ -6337,17 +6364,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(801); + setState(803); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 119)) & ~0x3f) == 0 && ((1L << (_la - 119)) & ((1L << (ASM_BYTE - 119)) | (1L << (ASM_MNEMONIC - 119)) | (1L << (ASM_MULTI_NAME - 119)) | (1L << (ASM_NAME - 119)))) != 0)) { + while (((((_la - 120)) & ~0x3f) == 0 && ((1L << (_la - 120)) & ((1L << (ASM_BYTE - 120)) | (1L << (ASM_MNEMONIC - 120)) | (1L << (ASM_MULTI_NAME - 120)) | (1L << (ASM_NAME - 120)))) != 0)) { { { - setState(798); + setState(800); asmLine(); } } - setState(803); + setState(805); _errHandler.sync(this); _la = _input.LA(1); } @@ -6397,28 +6424,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 82, RULE_asmLine); try { - setState(807); + setState(809); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_MULTI_NAME: case ASM_NAME: enterOuterAlt(_localctx, 1); { - setState(804); + setState(806); asmLabel(); } break; case ASM_MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(805); + setState(807); asmInstruction(); } break; case ASM_BYTE: enterOuterAlt(_localctx, 3); { - setState(806); + setState(808); asmBytes(); } break; @@ -6489,16 +6516,16 @@ public class KickCParser extends Parser { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); enterRule(_localctx, 84, RULE_asmLabel); try { - setState(813); + setState(815); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(809); + setState(811); match(ASM_NAME); - setState(810); + setState(812); match(ASM_COLON); } break; @@ -6506,9 +6533,9 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(811); + setState(813); match(ASM_MULTI_NAME); - setState(812); + setState(814); match(ASM_COLON); } break; @@ -6557,14 +6584,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(815); - match(ASM_MNEMONIC); setState(817); + match(ASM_MNEMONIC); + setState(819); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) { case 1: { - setState(816); + setState(818); asmParamMode(); } break; @@ -6620,23 +6647,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(819); + setState(821); match(ASM_BYTE); - setState(820); + setState(822); asmExpr(0); - setState(825); + setState(827); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASM_COMMA) { { { - setState(821); + setState(823); match(ASM_COMMA); - setState(822); + setState(824); asmExpr(0); } } - setState(827); + setState(829); _errHandler.sync(this); _la = _input.LA(1); } @@ -6796,14 +6823,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 90, RULE_asmParamMode); try { - setState(851); + setState(853); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(828); + setState(830); asmExpr(0); } break; @@ -6811,9 +6838,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(829); + setState(831); match(ASM_IMM); - setState(830); + setState(832); asmExpr(0); } break; @@ -6821,11 +6848,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(831); - asmExpr(0); - setState(832); - match(ASM_COMMA); setState(833); + asmExpr(0); + setState(834); + match(ASM_COMMA); + setState(835); match(ASM_NAME); } break; @@ -6833,15 +6860,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(835); - match(ASM_PAR_BEGIN); - setState(836); - asmExpr(0); setState(837); - match(ASM_PAR_END); + match(ASM_PAR_BEGIN); setState(838); - match(ASM_COMMA); + asmExpr(0); setState(839); + match(ASM_PAR_END); + setState(840); + match(ASM_COMMA); + setState(841); match(ASM_NAME); } break; @@ -6849,15 +6876,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(841); - match(ASM_PAR_BEGIN); - setState(842); - asmExpr(0); setState(843); - match(ASM_COMMA); + match(ASM_PAR_BEGIN); setState(844); - match(ASM_NAME); + asmExpr(0); setState(845); + match(ASM_COMMA); + setState(846); + match(ASM_NAME); + setState(847); match(ASM_PAR_END); } break; @@ -6865,11 +6892,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(847); - match(ASM_PAR_BEGIN); - setState(848); - asmExpr(0); setState(849); + match(ASM_PAR_BEGIN); + setState(850); + asmExpr(0); + setState(851); match(ASM_PAR_END); } break; @@ -7074,7 +7101,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(867); + setState(869); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_BRACKET_BEGIN: @@ -7083,11 +7110,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(854); - match(ASM_BRACKET_BEGIN); - setState(855); - asmExpr(0); setState(856); + match(ASM_BRACKET_BEGIN); + setState(857); + asmExpr(0); + setState(858); match(ASM_BRACKET_END); } break; @@ -7099,9 +7126,9 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(858); + setState(860); _la = _input.LA(1); - if ( !(((((_la - 131)) & ~0x3f) == 0 && ((1L << (_la - 131)) & ((1L << (ASM_PLUS - 131)) | (1L << (ASM_MINUS - 131)) | (1L << (ASM_LESS_THAN - 131)) | (1L << (ASM_GREATER_THAN - 131)))) != 0)) ) { + if ( !(((((_la - 132)) & ~0x3f) == 0 && ((1L << (_la - 132)) & ((1L << (ASM_PLUS - 132)) | (1L << (ASM_MINUS - 132)) | (1L << (ASM_LESS_THAN - 132)) | (1L << (ASM_GREATER_THAN - 132)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -7109,7 +7136,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(859); + setState(861); asmExpr(8); } break; @@ -7118,7 +7145,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(860); + setState(862); match(ASM_NAME); } break; @@ -7127,7 +7154,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(861); + setState(863); match(ASM_MULTI_REL); } break; @@ -7136,11 +7163,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(862); - match(ASM_CURLY_BEGIN); - setState(863); - match(ASM_NAME); setState(864); + match(ASM_CURLY_BEGIN); + setState(865); + match(ASM_NAME); + setState(866); match(ASM_CURLY_END); } break; @@ -7149,7 +7176,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(865); + setState(867); match(ASM_NUMBER); } break; @@ -7158,7 +7185,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(866); + setState(868); match(ASM_CHAR); } break; @@ -7166,7 +7193,7 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(883); + setState(885); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,87,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -7174,20 +7201,20 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(881); + setState(883); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,86,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(869); + setState(871); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(870); + setState(872); match(ASM_DOT); } - setState(871); + setState(873); asmExpr(11); } break; @@ -7195,9 +7222,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(872); + setState(874); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(873); + setState(875); _la = _input.LA(1); if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -7207,7 +7234,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(874); + setState(876); asmExpr(10); } break; @@ -7215,9 +7242,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(875); + setState(877); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(876); + setState(878); _la = _input.LA(1); if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) { _errHandler.recoverInline(this); @@ -7227,7 +7254,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(877); + setState(879); asmExpr(8); } break; @@ -7235,9 +7262,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(878); + setState(880); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(879); + setState(881); _la = _input.LA(1); if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) { _errHandler.recoverInline(this); @@ -7247,14 +7274,14 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(880); + setState(882); asmExpr(7); } break; } } } - setState(885); + setState(887); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,87,_ctx); } @@ -7383,357 +7410,358 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u009c\u0379\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u009d\u037b\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\t\30\4\31\t\31"+ "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\3\2\3\2\3\2\3\3\3\3\3\3\3\4\7\4h\n\4"+ - "\f\4\16\4k\13\4\3\5\3\5\5\5o\n\5\3\6\3\6\3\6\3\6\5\6u\n\6\3\7\3\7\3\7"+ - "\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\5\7\u0086\n\7\3\b\3\b"+ - "\3\b\3\t\3\t\7\t\u008d\n\t\f\t\16\t\u0090\13\t\3\t\3\t\3\t\3\t\3\t\7\t"+ - "\u0097\n\t\f\t\16\t\u009a\13\t\3\t\7\t\u009d\n\t\f\t\16\t\u00a0\13\t\3"+ - "\n\3\n\3\n\7\n\u00a5\n\n\f\n\16\n\u00a8\13\n\3\n\3\n\7\n\u00ac\n\n\f\n"+ - "\16\n\u00af\13\n\3\n\3\n\3\13\3\13\7\13\u00b5\n\13\f\13\16\13\u00b8\13"+ - "\13\3\13\3\13\5\13\u00bc\n\13\3\13\3\13\7\13\u00c0\n\13\f\13\16\13\u00c3"+ - "\13\13\3\13\3\13\5\13\u00c7\n\13\3\f\7\f\u00ca\n\f\f\f\16\f\u00cd\13\f"+ - "\3\f\3\f\7\f\u00d1\n\f\f\f\16\f\u00d4\13\f\3\r\3\r\7\r\u00d8\n\r\f\r\16"+ - "\r\u00db\13\r\3\16\3\16\5\16\u00df\n\16\3\16\3\16\3\17\3\17\3\17\3\17"+ - "\3\17\3\17\3\17\3\17\5\17\u00eb\n\17\3\17\7\17\u00ee\n\17\f\17\16\17\u00f1"+ - "\13\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00fb\n\20\3\20\3"+ - "\20\3\20\3\20\3\20\5\20\u0102\n\20\3\20\3\20\3\20\5\20\u0107\n\20\3\20"+ - "\3\20\3\20\3\20\7\20\u010d\n\20\f\20\16\20\u0110\13\20\3\21\3\21\3\21"+ - "\3\22\3\22\5\22\u0117\n\22\3\22\3\22\6\22\u011b\n\22\r\22\16\22\u011c"+ - "\3\22\3\22\3\23\3\23\3\23\3\24\3\24\3\24\3\25\3\25\5\25\u0129\n\25\3\25"+ - "\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\7\26\u0135\n\26\f\26\16"+ - "\26\u0138\13\26\3\27\3\27\3\27\5\27\u013d\n\27\3\30\3\30\7\30\u0141\n"+ - "\30\f\30\16\30\u0144\13\30\3\30\3\30\3\30\5\30\u0149\n\30\3\30\3\30\3"+ - "\30\5\30\u014e\n\30\3\31\3\31\5\31\u0152\n\31\3\31\3\31\3\32\3\32\3\32"+ - "\7\32\u0159\n\32\f\32\16\32\u015c\13\32\3\33\3\33\7\33\u0160\n\33\f\33"+ - "\16\33\u0163\13\33\3\33\3\33\3\33\5\33\u0168\n\33\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\7\34\u0171\n\34\f\34\16\34\u0174\13\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ - "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u01ae\n\34"+ - "\f\34\16\34\u01b1\13\34\3\34\5\34\u01b4\n\34\3\35\3\35\3\35\3\35\3\35"+ - "\3\35\3\35\3\35\3\35\5\35\u01bf\n\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35"+ - "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01d2\n\35\3\35"+ - "\3\35\3\35\3\35\3\35\7\35\u01d9\n\35\f\35\16\35\u01dc\13\35\3\35\3\35"+ - "\5\35\u01e0\n\35\3\36\6\36\u01e3\n\36\r\36\16\36\u01e4\3\37\3\37\3\37"+ - "\3\37\3\37\5\37\u01ec\n\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\u01f9\n\37\3\37\7\37\u01fc\n\37\f\37\16\37\u01ff\13\37"+ - "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u0208\n\37\f\37\16\37\u020b\13"+ - "\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u0216\n\37\f\37"+ - "\16\37\u0219\13\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\u022b\n\37\3\37\3\37\3\37\3\37\3\37"+ - "\3\37\3\37\5\37\u0234\n\37\3\37\3\37\3\37\3\37\3\37\5\37\u023b\n\37\3"+ - " \6 \u023e\n \r \16 \u023f\3 \3 \3 \5 \u0245\n \5 \u0247\n \3!\3!\3!\3"+ - "!\5!\u024d\n!\3\"\3\"\3\"\3\"\3\"\5\"\u0254\n\"\3\"\3\"\7\"\u0258\n\""+ - "\f\"\16\"\u025b\13\"\5\"\u025d\n\"\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u0265\n"+ - "\"\3#\5#\u0268\n#\3#\5#\u026b\n#\3$\3$\3$\3$\3$\3$\7$\u0273\n$\f$\16$"+ - "\u0276\13$\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u0281\n%\3%\3%\3%\3%\3%\3%\5"+ - "%\u0289\n%\3%\3%\3%\3%\5%\u028f\n%\3%\3%\5%\u0293\n%\3%\3%\3%\3%\3%\3"+ - "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02a6\n%\f%\16%\u02a9\13%\3%\3%"+ - "\3%\3%\3%\6%\u02b0\n%\r%\16%\u02b1\3%\3%\5%\u02b6\n%\3%\3%\3%\3%\3%\3"+ + "\f\4\16\4k\13\4\3\5\3\5\5\5o\n\5\3\6\3\6\3\6\3\6\3\6\3\6\5\6w\n\6\3\7"+ + "\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\5\7\u0088\n\7"+ + "\3\b\3\b\3\b\3\t\3\t\7\t\u008f\n\t\f\t\16\t\u0092\13\t\3\t\3\t\3\t\3\t"+ + "\3\t\7\t\u0099\n\t\f\t\16\t\u009c\13\t\3\t\7\t\u009f\n\t\f\t\16\t\u00a2"+ + "\13\t\3\n\3\n\3\n\7\n\u00a7\n\n\f\n\16\n\u00aa\13\n\3\n\3\n\7\n\u00ae"+ + "\n\n\f\n\16\n\u00b1\13\n\3\n\3\n\3\13\3\13\7\13\u00b7\n\13\f\13\16\13"+ + "\u00ba\13\13\3\13\3\13\5\13\u00be\n\13\3\13\3\13\7\13\u00c2\n\13\f\13"+ + "\16\13\u00c5\13\13\3\13\3\13\5\13\u00c9\n\13\3\f\7\f\u00cc\n\f\f\f\16"+ + "\f\u00cf\13\f\3\f\3\f\7\f\u00d3\n\f\f\f\16\f\u00d6\13\f\3\r\3\r\7\r\u00da"+ + "\n\r\f\r\16\r\u00dd\13\r\3\16\3\16\5\16\u00e1\n\16\3\16\3\16\3\17\3\17"+ + "\3\17\3\17\3\17\3\17\3\17\3\17\5\17\u00ed\n\17\3\17\7\17\u00f0\n\17\f"+ + "\17\16\17\u00f3\13\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00fd"+ + "\n\20\3\20\3\20\3\20\3\20\3\20\5\20\u0104\n\20\3\20\3\20\3\20\5\20\u0109"+ + "\n\20\3\20\3\20\3\20\3\20\7\20\u010f\n\20\f\20\16\20\u0112\13\20\3\21"+ + "\3\21\3\21\3\22\3\22\5\22\u0119\n\22\3\22\3\22\6\22\u011d\n\22\r\22\16"+ + "\22\u011e\3\22\3\22\3\23\3\23\3\23\3\24\3\24\3\24\3\25\3\25\5\25\u012b"+ + "\n\25\3\25\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\7\26\u0137\n\26"+ + "\f\26\16\26\u013a\13\26\3\27\3\27\3\27\5\27\u013f\n\27\3\30\3\30\7\30"+ + "\u0143\n\30\f\30\16\30\u0146\13\30\3\30\3\30\3\30\5\30\u014b\n\30\3\30"+ + "\3\30\3\30\5\30\u0150\n\30\3\31\3\31\5\31\u0154\n\31\3\31\3\31\3\32\3"+ + "\32\3\32\7\32\u015b\n\32\f\32\16\32\u015e\13\32\3\33\3\33\7\33\u0162\n"+ + "\33\f\33\16\33\u0165\13\33\3\33\3\33\3\33\5\33\u016a\n\33\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\7\34\u0173\n\34\f\34\16\34\u0176\13\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u01b0"+ + "\n\34\f\34\16\34\u01b3\13\34\3\34\5\34\u01b6\n\34\3\35\3\35\3\35\3\35"+ + "\3\35\3\35\3\35\3\35\3\35\5\35\u01c1\n\35\3\35\3\35\3\35\3\35\3\35\3\35"+ + "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01d4\n\35"+ + "\3\35\3\35\3\35\3\35\3\35\7\35\u01db\n\35\f\35\16\35\u01de\13\35\3\35"+ + "\3\35\5\35\u01e2\n\35\3\36\6\36\u01e5\n\36\r\36\16\36\u01e6\3\37\3\37"+ + "\3\37\3\37\3\37\5\37\u01ee\n\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\u01fb\n\37\3\37\7\37\u01fe\n\37\f\37\16\37\u0201"+ + "\13\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u020a\n\37\f\37\16\37\u020d"+ + "\13\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u0218\n\37\f"+ + "\37\16\37\u021b\13\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\u022d\n\37\3\37\3\37\3\37\3\37\3\37"+ + "\3\37\3\37\5\37\u0236\n\37\3\37\3\37\3\37\3\37\3\37\5\37\u023d\n\37\3"+ + " \6 \u0240\n \r \16 \u0241\3 \3 \3 \5 \u0247\n \5 \u0249\n \3!\3!\3!\3"+ + "!\5!\u024f\n!\3\"\3\"\3\"\3\"\3\"\5\"\u0256\n\"\3\"\3\"\7\"\u025a\n\""+ + "\f\"\16\"\u025d\13\"\5\"\u025f\n\"\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u0267\n"+ + "\"\3#\5#\u026a\n#\3#\5#\u026d\n#\3$\3$\3$\3$\3$\3$\7$\u0275\n$\f$\16$"+ + "\u0278\13$\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u0283\n%\3%\3%\3%\3%\3%\3%\5"+ + "%\u028b\n%\3%\3%\3%\3%\5%\u0291\n%\3%\3%\5%\u0295\n%\3%\3%\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02a8\n%\f%\16%\u02ab\13%\3%\3%"+ + "\3%\3%\3%\6%\u02b2\n%\r%\16%\u02b3\3%\3%\5%\u02b8\n%\3%\3%\3%\3%\3%\3"+ "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\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%\u02e8\n"+ - "%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02f2\n%\f%\16%\u02f5\13%\3&\3&\3&\7&\u02fa"+ - "\n&\f&\16&\u02fd\13&\3\'\3\'\5\'\u0301\n\'\3\'\3\'\3(\3(\3(\3(\7(\u0309"+ - "\n(\f(\16(\u030c\13(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u031d"+ - "\n)\5)\u031f\n)\3*\7*\u0322\n*\f*\16*\u0325\13*\3+\3+\3+\5+\u032a\n+\3"+ - ",\3,\3,\3,\5,\u0330\n,\3-\3-\5-\u0334\n-\3.\3.\3.\3.\7.\u033a\n.\f.\16"+ - ".\u033d\13.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3"+ - "/\3/\3/\3/\5/\u0356\n/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3"+ - "\60\3\60\3\60\3\60\3\60\5\60\u0366\n\60\3\60\3\60\3\60\3\60\3\60\3\60"+ - "\3\60\3\60\3\60\3\60\3\60\3\60\7\60\u0374\n\60\f\60\16\60\u0377\13\60"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u02ea\n"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02f4\n%\f%\16%\u02f7\13%\3&\3&\3&\7&\u02fc"+ + "\n&\f&\16&\u02ff\13&\3\'\3\'\5\'\u0303\n\'\3\'\3\'\3(\3(\3(\3(\7(\u030b"+ + "\n(\f(\16(\u030e\13(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u031f"+ + "\n)\5)\u0321\n)\3*\7*\u0324\n*\f*\16*\u0327\13*\3+\3+\3+\5+\u032c\n+\3"+ + ",\3,\3,\3,\5,\u0332\n,\3-\3-\5-\u0336\n-\3.\3.\3.\3.\7.\u033c\n.\f.\16"+ + ".\u033f\13.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3"+ + "/\3/\3/\3/\5/\u0358\n/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3"+ + "\60\3\60\3\60\3\60\3\60\5\60\u0368\n\60\3\60\3\60\3\60\3\60\3\60\3\60"+ + "\3\60\3\60\3\60\3\60\3\60\3\60\7\60\u0376\n\60\f\60\16\60\u0379\13\60"+ "\3\60\2\t\20\34\36*FH^\61\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&"+ "(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^\2\r\3\2\26\27\5\2\21\22\30\31YY"+ - "\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3\2\36#\3\2\u0085\u0088\3\2\u0083"+ - "\u0084\3\2\u0089\u008a\3\2\u0085\u0086\2\u03f9\2`\3\2\2\2\4c\3\2\2\2\6"+ - "i\3\2\2\2\bn\3\2\2\2\nt\3\2\2\2\f\u0085\3\2\2\2\16\u0087\3\2\2\2\20\u008a"+ - "\3\2\2\2\22\u00a1\3\2\2\2\24\u00c6\3\2\2\2\26\u00cb\3\2\2\2\30\u00d5\3"+ - "\2\2\2\32\u00dc\3\2\2\2\34\u00e2\3\2\2\2\36\u0101\3\2\2\2 \u0111\3\2\2"+ - "\2\"\u0114\3\2\2\2$\u0120\3\2\2\2&\u0123\3\2\2\2(\u0126\3\2\2\2*\u012e"+ - "\3\2\2\2,\u0139\3\2\2\2.\u013e\3\2\2\2\60\u014f\3\2\2\2\62\u0155\3\2\2"+ - "\2\64\u0167\3\2\2\2\66\u01b3\3\2\2\28\u01df\3\2\2\2:\u01e2\3\2\2\2<\u023a"+ - "\3\2\2\2>\u023d\3\2\2\2@\u0248\3\2\2\2B\u0264\3\2\2\2D\u026a\3\2\2\2F"+ - "\u026c\3\2\2\2H\u02b5\3\2\2\2J\u02f6\3\2\2\2L\u02fe\3\2\2\2N\u0304\3\2"+ - "\2\2P\u031e\3\2\2\2R\u0323\3\2\2\2T\u0329\3\2\2\2V\u032f\3\2\2\2X\u0331"+ - "\3\2\2\2Z\u0335\3\2\2\2\\\u0355\3\2\2\2^\u0365\3\2\2\2`a\5\6\4\2ab\7\2"+ + "\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3\2\36#\3\2\u0086\u0089\3\2\u0084"+ + "\u0085\3\2\u008a\u008b\3\2\u0086\u0087\2\u03fc\2`\3\2\2\2\4c\3\2\2\2\6"+ + "i\3\2\2\2\bn\3\2\2\2\nv\3\2\2\2\f\u0087\3\2\2\2\16\u0089\3\2\2\2\20\u008c"+ + "\3\2\2\2\22\u00a3\3\2\2\2\24\u00c8\3\2\2\2\26\u00cd\3\2\2\2\30\u00d7\3"+ + "\2\2\2\32\u00de\3\2\2\2\34\u00e4\3\2\2\2\36\u0103\3\2\2\2 \u0113\3\2\2"+ + "\2\"\u0116\3\2\2\2$\u0122\3\2\2\2&\u0125\3\2\2\2(\u0128\3\2\2\2*\u0130"+ + "\3\2\2\2,\u013b\3\2\2\2.\u0140\3\2\2\2\60\u0151\3\2\2\2\62\u0157\3\2\2"+ + "\2\64\u0169\3\2\2\2\66\u01b5\3\2\2\28\u01e1\3\2\2\2:\u01e4\3\2\2\2<\u023c"+ + "\3\2\2\2>\u023f\3\2\2\2@\u024a\3\2\2\2B\u0266\3\2\2\2D\u026c\3\2\2\2F"+ + "\u026e\3\2\2\2H\u02b7\3\2\2\2J\u02f8\3\2\2\2L\u0300\3\2\2\2N\u0306\3\2"+ + "\2\2P\u0320\3\2\2\2R\u0325\3\2\2\2T\u032b\3\2\2\2V\u0331\3\2\2\2X\u0333"+ + "\3\2\2\2Z\u0337\3\2\2\2\\\u0357\3\2\2\2^\u0367\3\2\2\2`a\5\6\4\2ab\7\2"+ "\2\3b\3\3\2\2\2cd\5R*\2de\7\2\2\3e\5\3\2\2\2fh\5\b\5\2gf\3\2\2\2hk\3\2"+ "\2\2ig\3\2\2\2ij\3\2\2\2j\7\3\2\2\2ki\3\2\2\2lo\5\f\7\2mo\5\n\6\2nl\3"+ - "\2\2\2nm\3\2\2\2o\t\3\2\2\2pq\7`\2\2qu\7^\2\2rs\7a\2\2su\7^\2\2tp\3\2"+ - "\2\2tr\3\2\2\2u\13\3\2\2\2vw\5\16\b\2wx\7\n\2\2x\u0086\3\2\2\2yz\5\"\22"+ - "\2z{\7\n\2\2{\u0086\3\2\2\2|}\5(\25\2}~\7\n\2\2~\u0086\3\2\2\2\177\u0086"+ - "\5.\30\2\u0080\u0086\5L\'\2\u0081\u0086\5\66\34\2\u0082\u0083\5\22\n\2"+ - "\u0083\u0084\7\n\2\2\u0084\u0086\3\2\2\2\u0085v\3\2\2\2\u0085y\3\2\2\2"+ - "\u0085|\3\2\2\2\u0085\177\3\2\2\2\u0085\u0080\3\2\2\2\u0085\u0081\3\2"+ - "\2\2\u0085\u0082\3\2\2\2\u0086\r\3\2\2\2\u0087\u0088\5\26\f\2\u0088\u0089"+ - "\5\20\t\2\u0089\17\3\2\2\2\u008a\u008e\b\t\1\2\u008b\u008d\5\30\r\2\u008c"+ - "\u008b\3\2\2\2\u008d\u0090\3\2\2\2\u008e\u008c\3\2\2\2\u008e\u008f\3\2"+ - "\2\2\u008f\u0091\3\2\2\2\u0090\u008e\3\2\2\2\u0091\u0092\5\24\13\2\u0092"+ - "\u009e\3\2\2\2\u0093\u0094\f\3\2\2\u0094\u0098\7\f\2\2\u0095\u0097\5\30"+ - "\r\2\u0096\u0095\3\2\2\2\u0097\u009a\3\2\2\2\u0098\u0096\3\2\2\2\u0098"+ - "\u0099\3\2\2\2\u0099\u009b\3\2\2\2\u009a\u0098\3\2\2\2\u009b\u009d\5\24"+ - "\13\2\u009c\u0093\3\2\2\2\u009d\u00a0\3\2\2\2\u009e\u009c\3\2\2\2\u009e"+ - "\u009f\3\2\2\2\u009f\21\3\2\2\2\u00a0\u009e\3\2\2\2\u00a1\u00a2\7(\2\2"+ - "\u00a2\u00a6\5\26\f\2\u00a3\u00a5\5\30\r\2\u00a4\u00a3\3\2\2\2\u00a5\u00a8"+ - "\3\2\2\2\u00a6\u00a4\3\2\2\2\u00a6\u00a7\3\2\2\2\u00a7\u00a9\3\2\2\2\u00a8"+ - "\u00a6\3\2\2\2\u00a9\u00ad\7u\2\2\u00aa\u00ac\5\32\16\2\u00ab\u00aa\3"+ - "\2\2\2\u00ac\u00af\3\2\2\2\u00ad\u00ab\3\2\2\2\u00ad\u00ae\3\2\2\2\u00ae"+ - "\u00b0\3\2\2\2\u00af\u00ad\3\2\2\2\u00b0\u00b1\b\n\1\2\u00b1\23\3\2\2"+ - "\2\u00b2\u00b6\7u\2\2\u00b3\u00b5\5\32\16\2\u00b4\u00b3\3\2\2\2\u00b5"+ - "\u00b8\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00bb\3\2"+ - "\2\2\u00b8\u00b6\3\2\2\2\u00b9\u00ba\7&\2\2\u00ba\u00bc\5H%\2\u00bb\u00b9"+ - "\3\2\2\2\u00bb\u00bc\3\2\2\2\u00bc\u00c7\3\2\2\2\u00bd\u00c1\7u\2\2\u00be"+ - "\u00c0\5\32\16\2\u00bf\u00be\3\2\2\2\u00c0\u00c3\3\2\2\2\u00c1\u00bf\3"+ - "\2\2\2\u00c1\u00c2\3\2\2\2\u00c2\u00c4\3\2\2\2\u00c3\u00c1\3\2\2\2\u00c4"+ - "\u00c5\7&\2\2\u00c5\u00c7\5L\'\2\u00c6\u00b2\3\2\2\2\u00c6\u00bd\3\2\2"+ - "\2\u00c7\25\3\2\2\2\u00c8\u00ca\58\35\2\u00c9\u00c8\3\2\2\2\u00ca\u00cd"+ - "\3\2\2\2\u00cb\u00c9\3\2\2\2\u00cb\u00cc\3\2\2\2\u00cc\u00ce\3\2\2\2\u00cd"+ - "\u00cb\3\2\2\2\u00ce\u00d2\5\36\20\2\u00cf\u00d1\58\35\2\u00d0\u00cf\3"+ - "\2\2\2\u00d1\u00d4\3\2\2\2\u00d2\u00d0\3\2\2\2\u00d2\u00d3\3\2\2\2\u00d3"+ - "\27\3\2\2\2\u00d4\u00d2\3\2\2\2\u00d5\u00d9\7\23\2\2\u00d6\u00d8\58\35"+ - "\2\u00d7\u00d6\3\2\2\2\u00d8\u00db\3\2\2\2\u00d9\u00d7\3\2\2\2\u00d9\u00da"+ - "\3\2\2\2\u00da\31\3\2\2\2\u00db\u00d9\3\2\2\2\u00dc\u00de\7\6\2\2\u00dd"+ - "\u00df\5H%\2\u00de\u00dd\3\2\2\2\u00de\u00df\3\2\2\2\u00df\u00e0\3\2\2"+ - "\2\u00e0\u00e1\7\7\2\2\u00e1\33\3\2\2\2\u00e2\u00e3\b\17\1\2\u00e3\u00e4"+ - "\5\36\20\2\u00e4\u00ef\3\2\2\2\u00e5\u00e6\f\4\2\2\u00e6\u00ee\7\23\2"+ - "\2\u00e7\u00e8\f\3\2\2\u00e8\u00ea\7\6\2\2\u00e9\u00eb\5H%\2\u00ea\u00e9"+ - "\3\2\2\2\u00ea\u00eb\3\2\2\2\u00eb\u00ec\3\2\2\2\u00ec\u00ee\7\7\2\2\u00ed"+ - "\u00e5\3\2\2\2\u00ed\u00e7\3\2\2\2\u00ee\u00f1\3\2\2\2\u00ef\u00ed\3\2"+ - "\2\2\u00ef\u00f0\3\2\2\2\u00f0\35\3\2\2\2\u00f1\u00ef\3\2\2\2\u00f2\u00f3"+ - "\b\20\1\2\u00f3\u00f4\7\b\2\2\u00f4\u00f5\5\36\20\2\u00f5\u00f6\7\t\2"+ - "\2\u00f6\u0102\3\2\2\2\u00f7\u0102\7[\2\2\u00f8\u00fa\7Z\2\2\u00f9\u00fb"+ - "\7[\2\2\u00fa\u00f9\3\2\2\2\u00fa\u00fb\3\2\2\2\u00fb\u0102\3\2\2\2\u00fc"+ - "\u0102\5\"\22\2\u00fd\u0102\5 \21\2\u00fe\u0102\5(\25\2\u00ff\u0102\5"+ - "&\24\2\u0100\u0102\7\3\2\2\u0101\u00f2\3\2\2\2\u0101\u00f7\3\2\2\2\u0101"+ - "\u00f8\3\2\2\2\u0101\u00fc\3\2\2\2\u0101\u00fd\3\2\2\2\u0101\u00fe\3\2"+ - "\2\2\u0101\u00ff\3\2\2\2\u0101\u0100\3\2\2\2\u0102\u010e\3\2\2\2\u0103"+ - "\u0104\f\t\2\2\u0104\u0106\7\6\2\2\u0105\u0107\5H%\2\u0106\u0105\3\2\2"+ - "\2\u0106\u0107\3\2\2\2\u0107\u0108\3\2\2\2\u0108\u010d\7\7\2\2\u0109\u010a"+ - "\f\b\2\2\u010a\u010b\7\b\2\2\u010b\u010d\7\t\2\2\u010c\u0103\3\2\2\2\u010c"+ - "\u0109\3\2\2\2\u010d\u0110\3\2\2\2\u010e\u010c\3\2\2\2\u010e\u010f\3\2"+ - "\2\2\u010f\37\3\2\2\2\u0110\u010e\3\2\2\2\u0111\u0112\7N\2\2\u0112\u0113"+ - "\7u\2\2\u0113!\3\2\2\2\u0114\u0116\7N\2\2\u0115\u0117\7u\2\2\u0116\u0115"+ - "\3\2\2\2\u0116\u0117\3\2\2\2\u0117\u0118\3\2\2\2\u0118\u011a\7\4\2\2\u0119"+ - "\u011b\5$\23\2\u011a\u0119\3\2\2\2\u011b\u011c\3\2\2\2\u011c\u011a\3\2"+ - "\2\2\u011c\u011d\3\2\2\2\u011d\u011e\3\2\2\2\u011e\u011f\7\5\2\2\u011f"+ - "#\3\2\2\2\u0120\u0121\5\16\b\2\u0121\u0122\7\n\2\2\u0122%\3\2\2\2\u0123"+ - "\u0124\7O\2\2\u0124\u0125\7u\2\2\u0125\'\3\2\2\2\u0126\u0128\7O\2\2\u0127"+ - "\u0129\7u\2\2\u0128\u0127\3\2\2\2\u0128\u0129\3\2\2\2\u0129\u012a\3\2"+ - "\2\2\u012a\u012b\7\4\2\2\u012b\u012c\5*\26\2\u012c\u012d\7\5\2\2\u012d"+ - ")\3\2\2\2\u012e\u012f\b\26\1\2\u012f\u0130\5,\27\2\u0130\u0136\3\2\2\2"+ - "\u0131\u0132\f\3\2\2\u0132\u0133\7\f\2\2\u0133\u0135\5,\27\2\u0134\u0131"+ - "\3\2\2\2\u0135\u0138\3\2\2\2\u0136\u0134\3\2\2\2\u0136\u0137\3\2\2\2\u0137"+ - "+\3\2\2\2\u0138\u0136\3\2\2\2\u0139\u013c\7u\2\2\u013a\u013b\7&\2\2\u013b"+ - "\u013d\5H%\2\u013c\u013a\3\2\2\2\u013c\u013d\3\2\2\2\u013d-\3\2\2\2\u013e"+ - "\u0142\5\26\f\2\u013f\u0141\5\30\r\2\u0140\u013f\3\2\2\2\u0141\u0144\3"+ - "\2\2\2\u0142\u0140\3\2\2\2\u0142\u0143\3\2\2\2\u0143\u0145\3\2\2\2\u0144"+ - "\u0142\3\2\2\2\u0145\u0146\7u\2\2\u0146\u0148\7\b\2\2\u0147\u0149\5\62"+ - "\32\2\u0148\u0147\3\2\2\2\u0148\u0149\3\2\2\2\u0149\u014a\3\2\2\2\u014a"+ - "\u014d\7\t\2\2\u014b\u014e\5\60\31\2\u014c\u014e\7\n\2\2\u014d\u014b\3"+ - "\2\2\2\u014d\u014c\3\2\2\2\u014e/\3\2\2\2\u014f\u0151\7\4\2\2\u0150\u0152"+ - "\5:\36\2\u0151\u0150\3\2\2\2\u0151\u0152\3\2\2\2\u0152\u0153\3\2\2\2\u0153"+ - "\u0154\7\5\2\2\u0154\61\3\2\2\2\u0155\u015a\5\64\33\2\u0156\u0157\7\f"+ - "\2\2\u0157\u0159\5\64\33\2\u0158\u0156\3\2\2\2\u0159\u015c\3\2\2\2\u015a"+ - "\u0158\3\2\2\2\u015a\u015b\3\2\2\2\u015b\63\3\2\2\2\u015c\u015a\3\2\2"+ - "\2\u015d\u0161\5\26\f\2\u015e\u0160\5\30\r\2\u015f\u015e\3\2\2\2\u0160"+ - "\u0163\3\2\2\2\u0161\u015f\3\2\2\2\u0161\u0162\3\2\2\2\u0162\u0164\3\2"+ - "\2\2\u0163\u0161\3\2\2\2\u0164\u0165\7u\2\2\u0165\u0168\3\2\2\2\u0166"+ - "\u0168\7[\2\2\u0167\u015d\3\2\2\2\u0167\u0166\3\2\2\2\u0168\65\3\2\2\2"+ - "\u0169\u016a\7b\2\2\u016a\u016b\7)\2\2\u016b\u016c\3\2\2\2\u016c\u016d"+ - "\7\b\2\2\u016d\u0172\7l\2\2\u016e\u016f\7\f\2\2\u016f\u0171\7l\2\2\u0170"+ - "\u016e\3\2\2\2\u0171\u0174\3\2\2\2\u0172\u0170\3\2\2\2\u0172\u0173\3\2"+ - "\2\2\u0173\u0175\3\2\2\2\u0174\u0172\3\2\2\2\u0175\u01b4\7\t\2\2\u0176"+ - "\u0177\7b\2\2\u0177\u0178\7*\2\2\u0178\u0179\3\2\2\2\u0179\u017a\7\b\2"+ - "\2\u017a\u017b\7l\2\2\u017b\u01b4\7\t\2\2\u017c\u017d\7b\2\2\u017d\u017e"+ - "\7+\2\2\u017e\u017f\3\2\2\2\u017f\u0180\7\b\2\2\u0180\u0181\7u\2\2\u0181"+ - "\u01b4\7\t\2\2\u0182\u0183\7b\2\2\u0183\u0184\7-\2\2\u0184\u0185\3\2\2"+ - "\2\u0185\u0186\7\b\2\2\u0186\u0187\7u\2\2\u0187\u01b4\7\t\2\2\u0188\u0189"+ - "\7b\2\2\u0189\u018a\7,\2\2\u018a\u018b\3\2\2\2\u018b\u018c\7\b\2\2\u018c"+ - "\u018d\7^\2\2\u018d\u01b4\7\t\2\2\u018e\u018f\7b\2\2\u018f\u0190\7.\2"+ - "\2\u0190\u0191\3\2\2\2\u0191\u0192\7\b\2\2\u0192\u0193\7u\2\2\u0193\u01b4"+ - "\7\t\2\2\u0194\u0195\7b\2\2\u0195\u0196\7/\2\2\u0196\u0197\3\2\2\2\u0197"+ - "\u0198\7\b\2\2\u0198\u0199\7u\2\2\u0199\u01b4\7\t\2\2\u019a\u019b\7b\2"+ - "\2\u019b\u019c\7\60\2\2\u019c\u019d\3\2\2\2\u019d\u019e\7\b\2\2\u019e"+ - "\u019f\7u\2\2\u019f\u01b4\7\t\2\2\u01a0\u01a1\7b\2\2\u01a1\u01a2\7?\2"+ - "\2\u01a2\u01a3\3\2\2\2\u01a3\u01a4\7\b\2\2\u01a4\u01a5\7@\2\2\u01a5\u01b4"+ - "\7\t\2\2\u01a6\u01a7\7b\2\2\u01a7\u01a8\7A\2\2\u01a8\u01a9\3\2\2\2\u01a9"+ - "\u01aa\7\b\2\2\u01aa\u01af\7u\2\2\u01ab\u01ac\7\f\2\2\u01ac\u01ae\7u\2"+ - "\2\u01ad\u01ab\3\2\2\2\u01ae\u01b1\3\2\2\2\u01af\u01ad\3\2\2\2\u01af\u01b0"+ - "\3\2\2\2\u01b0\u01b2\3\2\2\2\u01b1\u01af\3\2\2\2\u01b2\u01b4\7\t\2\2\u01b3"+ - "\u0169\3\2\2\2\u01b3\u0176\3\2\2\2\u01b3\u017c\3\2\2\2\u01b3\u0182\3\2"+ - "\2\2\u01b3\u0188\3\2\2\2\u01b3\u018e\3\2\2\2\u01b3\u0194\3\2\2\2\u01b3"+ - "\u019a\3\2\2\2\u01b3\u01a0\3\2\2\2\u01b3\u01a6\3\2\2\2\u01b4\67\3\2\2"+ - "\2\u01b5\u01e0\7\61\2\2\u01b6\u01b7\7\64\2\2\u01b7\u01b8\7\b\2\2\u01b8"+ - "\u01b9\7l\2\2\u01b9\u01e0\7\t\2\2\u01ba\u01be\79\2\2\u01bb\u01bc\7\b\2"+ - "\2\u01bc\u01bd\7u\2\2\u01bd\u01bf\7\t\2\2\u01be\u01bb\3\2\2\2\u01be\u01bf"+ - "\3\2\2\2\u01bf\u01e0\3\2\2\2\u01c0\u01e0\7;\2\2\u01c1\u01e0\7<\2\2\u01c2"+ - "\u01c3\7:\2\2\u01c3\u01c4\7\b\2\2\u01c4\u01c5\7l\2\2\u01c5\u01e0\7\t\2"+ - "\2\u01c6\u01e0\7\66\2\2\u01c7\u01e0\7\67\2\2\u01c8\u01e0\7=\2\2\u01c9"+ - "\u01e0\7>\2\2\u01ca\u01e0\7\62\2\2\u01cb\u01e0\7\63\2\2\u01cc\u01e0\7"+ - "\65\2\2\u01cd\u01d1\78\2\2\u01ce\u01cf\7\b\2\2\u01cf\u01d0\7u\2\2\u01d0"+ - "\u01d2\7\t\2\2\u01d1\u01ce\3\2\2\2\u01d1\u01d2\3\2\2\2\u01d2\u01e0\3\2"+ - "\2\2\u01d3\u01d4\7)\2\2\u01d4\u01d5\7\b\2\2\u01d5\u01da\7l\2\2\u01d6\u01d7"+ - "\7\f\2\2\u01d7\u01d9\7l\2\2\u01d8\u01d6\3\2\2\2\u01d9\u01dc\3\2\2\2\u01da"+ - "\u01d8\3\2\2\2\u01da\u01db\3\2\2\2\u01db\u01dd\3\2\2\2\u01dc\u01da\3\2"+ - "\2\2\u01dd\u01e0\7\t\2\2\u01de\u01e0\7@\2\2\u01df\u01b5\3\2\2\2\u01df"+ - "\u01b6\3\2\2\2\u01df\u01ba\3\2\2\2\u01df\u01c0\3\2\2\2\u01df\u01c1\3\2"+ - "\2\2\u01df\u01c2\3\2\2\2\u01df\u01c6\3\2\2\2\u01df\u01c7\3\2\2\2\u01df"+ - "\u01c8\3\2\2\2\u01df\u01c9\3\2\2\2\u01df\u01ca\3\2\2\2\u01df\u01cb\3\2"+ - "\2\2\u01df\u01cc\3\2\2\2\u01df\u01cd\3\2\2\2\u01df\u01d3\3\2\2\2\u01df"+ - "\u01de\3\2\2\2\u01e09\3\2\2\2\u01e1\u01e3\5<\37\2\u01e2\u01e1\3\2\2\2"+ - "\u01e3\u01e4\3\2\2\2\u01e4\u01e2\3\2\2\2\u01e4\u01e5\3\2\2\2\u01e5;\3"+ - "\2\2\2\u01e6\u01e7\5\16\b\2\u01e7\u01e8\7\n\2\2\u01e8\u023b\3\2\2\2\u01e9"+ - "\u01eb\7\4\2\2\u01ea\u01ec\5:\36\2\u01eb\u01ea\3\2\2\2\u01eb\u01ec\3\2"+ - "\2\2\u01ec\u01ed\3\2\2\2\u01ed\u023b\7\5\2\2\u01ee\u01ef\5F$\2\u01ef\u01f0"+ - "\7\n\2\2\u01f0\u023b\3\2\2\2\u01f1\u01f2\7B\2\2\u01f2\u01f3\7\b\2\2\u01f3"+ - "\u01f4\5F$\2\u01f4\u01f5\7\t\2\2\u01f5\u01f8\5<\37\2\u01f6\u01f7\7C\2"+ - "\2\u01f7\u01f9\5<\37\2\u01f8\u01f6\3\2\2\2\u01f8\u01f9\3\2\2\2\u01f9\u023b"+ - "\3\2\2\2\u01fa\u01fc\58\35\2\u01fb\u01fa\3\2\2\2\u01fc\u01ff\3\2\2\2\u01fd"+ - "\u01fb\3\2\2\2\u01fd\u01fe\3\2\2\2\u01fe\u0200\3\2\2\2\u01ff\u01fd\3\2"+ - "\2\2\u0200\u0201\7D\2\2\u0201\u0202\7\b\2\2\u0202\u0203\5F$\2\u0203\u0204"+ - "\7\t\2\2\u0204\u0205\5<\37\2\u0205\u023b\3\2\2\2\u0206\u0208\58\35\2\u0207"+ - "\u0206\3\2\2\2\u0208\u020b\3\2\2\2\u0209\u0207\3\2\2\2\u0209\u020a\3\2"+ - "\2\2\u020a\u020c\3\2\2\2\u020b\u0209\3\2\2\2\u020c\u020d\7E\2\2\u020d"+ - "\u020e\5<\37\2\u020e\u020f\7D\2\2\u020f\u0210\7\b\2\2\u0210\u0211\5F$"+ - "\2\u0211\u0212\7\t\2\2\u0212\u0213\7\n\2\2\u0213\u023b\3\2\2\2\u0214\u0216"+ - "\58\35\2\u0215\u0214\3\2\2\2\u0216\u0219\3\2\2\2\u0217\u0215\3\2\2\2\u0217"+ - "\u0218\3\2\2\2\u0218\u021a\3\2\2\2\u0219\u0217\3\2\2\2\u021a\u021b\7F"+ - "\2\2\u021b\u021c\7\b\2\2\u021c\u021d\5B\"\2\u021d\u021e\7\t\2\2\u021e"+ - "\u021f\5<\37\2\u021f\u023b\3\2\2\2\u0220\u0221\7G\2\2\u0221\u0222\7\b"+ - "\2\2\u0222\u0223\5F$\2\u0223\u0224\7\t\2\2\u0224\u0225\7\4\2\2\u0225\u0226"+ - "\5> \2\u0226\u0227\7\5\2\2\u0227\u023b\3\2\2\2\u0228\u022a\7H\2\2\u0229"+ - "\u022b\5F$\2\u022a\u0229\3\2\2\2\u022a\u022b\3\2\2\2\u022b\u022c\3\2\2"+ - "\2\u022c\u023b\7\n\2\2\u022d\u022e\7I\2\2\u022e\u023b\7\n\2\2\u022f\u0230"+ - "\7J\2\2\u0230\u023b\7\n\2\2\u0231\u0233\7K\2\2\u0232\u0234\5N(\2\u0233"+ - "\u0232\3\2\2\2\u0233\u0234\3\2\2\2\u0234\u0235\3\2\2\2\u0235\u0236\7\4"+ - "\2\2\u0236\u0237\5R*\2\u0237\u0238\7\u008c\2\2\u0238\u023b\3\2\2\2\u0239"+ - "\u023b\5L\'\2\u023a\u01e6\3\2\2\2\u023a\u01e9\3\2\2\2\u023a\u01ee\3\2"+ - "\2\2\u023a\u01f1\3\2\2\2\u023a\u01fd\3\2\2\2\u023a\u0209\3\2\2\2\u023a"+ - "\u0217\3\2\2\2\u023a\u0220\3\2\2\2\u023a\u0228\3\2\2\2\u023a\u022d\3\2"+ - "\2\2\u023a\u022f\3\2\2\2\u023a\u0231\3\2\2\2\u023a\u0239\3\2\2\2\u023b"+ - "=\3\2\2\2\u023c\u023e\5@!\2\u023d\u023c\3\2\2\2\u023e\u023f\3\2\2\2\u023f"+ - "\u023d\3\2\2\2\u023f\u0240\3\2\2\2\u0240\u0246\3\2\2\2\u0241\u0242\7L"+ - "\2\2\u0242\u0244\7\13\2\2\u0243\u0245\5:\36\2\u0244\u0243\3\2\2\2\u0244"+ - "\u0245\3\2\2\2\u0245\u0247\3\2\2\2\u0246\u0241\3\2\2\2\u0246\u0247\3\2"+ - "\2\2\u0247?\3\2\2\2\u0248\u0249\7M\2\2\u0249\u024a\5H%\2\u024a\u024c\7"+ - "\13\2\2\u024b\u024d\5:\36\2\u024c\u024b\3\2\2\2\u024c\u024d\3\2\2\2\u024d"+ - "A\3\2\2\2\u024e\u024f\5D#\2\u024f\u0250\7\n\2\2\u0250\u0251\5F$\2\u0251"+ - "\u0253\7\n\2\2\u0252\u0254\5F$\2\u0253\u0252\3\2\2\2\u0253\u0254\3\2\2"+ - "\2\u0254\u0265\3\2\2\2\u0255\u0259\5\26\f\2\u0256\u0258\5\30\r\2\u0257"+ - "\u0256\3\2\2\2\u0258\u025b\3\2\2\2\u0259\u0257\3\2\2\2\u0259\u025a\3\2"+ - "\2\2\u025a\u025d\3\2\2\2\u025b\u0259\3\2\2\2\u025c\u0255\3\2\2\2\u025c"+ - "\u025d\3\2\2\2\u025d\u025e\3\2\2\2\u025e\u025f\7u\2\2\u025f\u0260\7\13"+ - "\2\2\u0260\u0261\5H%\2\u0261\u0262\7\r\2\2\u0262\u0263\5H%\2\u0263\u0265"+ - "\3\2\2\2\u0264\u024e\3\2\2\2\u0264\u025c\3\2\2\2\u0265C\3\2\2\2\u0266"+ - "\u0268\5\16\b\2\u0267\u0266\3\2\2\2\u0267\u0268\3\2\2\2\u0268\u026b\3"+ - "\2\2\2\u0269\u026b\5F$\2\u026a\u0267\3\2\2\2\u026a\u0269\3\2\2\2\u026b"+ - "E\3\2\2\2\u026c\u026d\b$\1\2\u026d\u026e\5H%\2\u026e\u0274\3\2\2\2\u026f"+ - "\u0270\f\3\2\2\u0270\u0271\7\f\2\2\u0271\u0273\5H%\2\u0272\u026f\3\2\2"+ - "\2\u0273\u0276\3\2\2\2\u0274\u0272\3\2\2\2\u0274\u0275\3\2\2\2\u0275G"+ - "\3\2\2\2\u0276\u0274\3\2\2\2\u0277\u0278\b%\1\2\u0278\u0279\7\b\2\2\u0279"+ - "\u027a\5F$\2\u027a\u027b\7\t\2\2\u027b\u02b6\3\2\2\2\u027c\u027d\7P\2"+ - "\2\u027d\u0280\7\b\2\2\u027e\u0281\5H%\2\u027f\u0281\5\34\17\2\u0280\u027e"+ - "\3\2\2\2\u0280\u027f\3\2\2\2\u0281\u0282\3\2\2\2\u0282\u0283\7\t\2\2\u0283"+ - "\u02b6\3\2\2\2\u0284\u0285\7Q\2\2\u0285\u0288\7\b\2\2\u0286\u0289\5H%"+ - "\2\u0287\u0289\5\34\17\2\u0288\u0286\3\2\2\2\u0288\u0287\3\2\2\2\u0289"+ - "\u028a\3\2\2\2\u028a\u028b\7\t\2\2\u028b\u02b6\3\2\2\2\u028c\u028e\7R"+ - "\2\2\u028d\u028f\7\b\2\2\u028e\u028d\3\2\2\2\u028e\u028f\3\2\2\2\u028f"+ - "\u0290\3\2\2\2\u0290\u0292\7u\2\2\u0291\u0293\7\t\2\2\u0292\u0291\3\2"+ - "\2\2\u0292\u0293\3\2\2\2\u0293\u02b6\3\2\2\2\u0294\u0295\7\b\2\2\u0295"+ - "\u0296\5\34\17\2\u0296\u0297\7\t\2\2\u0297\u0298\5H%\32\u0298\u02b6\3"+ - "\2\2\2\u0299\u029a\t\2\2\2\u029a\u02b6\5H%\31\u029b\u029c\7\23\2\2\u029c"+ - "\u02b6\5H%\27\u029d\u029e\t\3\2\2\u029e\u02b6\5H%\26\u029f\u02a0\t\4\2"+ - "\2\u02a0\u02b6\5H%\22\u02a1\u02a2\7\4\2\2\u02a2\u02a7\5H%\2\u02a3\u02a4"+ - "\7\f\2\2\u02a4\u02a6\5H%\2\u02a5\u02a3\3\2\2\2\u02a6\u02a9\3\2\2\2\u02a7"+ - "\u02a5\3\2\2\2\u02a7\u02a8\3\2\2\2\u02a8\u02aa\3\2\2\2\u02a9\u02a7\3\2"+ - "\2\2\u02aa\u02ab\7\5\2\2\u02ab\u02b6\3\2\2\2\u02ac\u02b6\7u\2\2\u02ad"+ - "\u02b6\7l\2\2\u02ae\u02b0\7^\2\2\u02af\u02ae\3\2\2\2\u02b0\u02b1\3\2\2"+ - "\2\u02b1\u02af\3\2\2\2\u02b1\u02b2\3\2\2\2\u02b2\u02b6\3\2\2\2\u02b3\u02b6"+ - "\7_\2\2\u02b4\u02b6\7\\\2\2\u02b5\u0277\3\2\2\2\u02b5\u027c\3\2\2\2\u02b5"+ - "\u0284\3\2\2\2\u02b5\u028c\3\2\2\2\u02b5\u0294\3\2\2\2\u02b5\u0299\3\2"+ - "\2\2\u02b5\u029b\3\2\2\2\u02b5\u029d\3\2\2\2\u02b5\u029f\3\2\2\2\u02b5"+ - "\u02a1\3\2\2\2\u02b5\u02ac\3\2\2\2\u02b5\u02ad\3\2\2\2\u02b5\u02af\3\2"+ - "\2\2\u02b5\u02b3\3\2\2\2\u02b5\u02b4\3\2\2\2\u02b6\u02f3\3\2\2\2\u02b7"+ - "\u02b8\f\25\2\2\u02b8\u02b9\t\5\2\2\u02b9\u02f2\5H%\26\u02ba\u02bb\f\24"+ - "\2\2\u02bb\u02bc\t\6\2\2\u02bc\u02f2\5H%\25\u02bd\u02be\f\23\2\2\u02be"+ - "\u02bf\t\7\2\2\u02bf\u02f2\5H%\24\u02c0\u02c1\f\21\2\2\u02c1\u02c2\t\b"+ - "\2\2\u02c2\u02f2\5H%\22\u02c3\u02c4\f\20\2\2\u02c4\u02c5\7\30\2\2\u02c5"+ - "\u02f2\5H%\21\u02c6\u02c7\f\17\2\2\u02c7\u02c8\7\32\2\2\u02c8\u02f2\5"+ - "H%\20\u02c9\u02ca\f\16\2\2\u02ca\u02cb\7\33\2\2\u02cb\u02f2\5H%\17\u02cc"+ - "\u02cd\f\r\2\2\u02cd\u02ce\7$\2\2\u02ce\u02f2\5H%\16\u02cf\u02d0\f\f\2"+ - "\2\u02d0\u02d1\7%\2\2\u02d1\u02f2\5H%\r\u02d2\u02d3\f\13\2\2\u02d3\u02d4"+ - "\7\16\2\2\u02d4\u02d5\5H%\2\u02d5\u02d6\7\13\2\2\u02d6\u02d7\5H%\f\u02d7"+ - "\u02f2\3\2\2\2\u02d8\u02d9\f\n\2\2\u02d9\u02da\7&\2\2\u02da\u02f2\5H%"+ - "\n\u02db\u02dc\f\t\2\2\u02dc\u02dd\7\'\2\2\u02dd\u02f2\5H%\t\u02de\u02df"+ - "\f!\2\2\u02df\u02e0\7\17\2\2\u02e0\u02f2\7u\2\2\u02e1\u02e2\f \2\2\u02e2"+ - "\u02e3\7\20\2\2\u02e3\u02f2\7u\2\2\u02e4\u02e5\f\37\2\2\u02e5\u02e7\7"+ - "\b\2\2\u02e6\u02e8\5J&\2\u02e7\u02e6\3\2\2\2\u02e7\u02e8\3\2\2\2\u02e8"+ - "\u02e9\3\2\2\2\u02e9\u02f2\7\t\2\2\u02ea\u02eb\f\33\2\2\u02eb\u02ec\7"+ - "\6\2\2\u02ec\u02ed\5F$\2\u02ed\u02ee\7\7\2\2\u02ee\u02f2\3\2\2\2\u02ef"+ - "\u02f0\f\30\2\2\u02f0\u02f2\t\2\2\2\u02f1\u02b7\3\2\2\2\u02f1\u02ba\3"+ - "\2\2\2\u02f1\u02bd\3\2\2\2\u02f1\u02c0\3\2\2\2\u02f1\u02c3\3\2\2\2\u02f1"+ - "\u02c6\3\2\2\2\u02f1\u02c9\3\2\2\2\u02f1\u02cc\3\2\2\2\u02f1\u02cf\3\2"+ - "\2\2\u02f1\u02d2\3\2\2\2\u02f1\u02d8\3\2\2\2\u02f1\u02db\3\2\2\2\u02f1"+ - "\u02de\3\2\2\2\u02f1\u02e1\3\2\2\2\u02f1\u02e4\3\2\2\2\u02f1\u02ea\3\2"+ - "\2\2\u02f1\u02ef\3\2\2\2\u02f2\u02f5\3\2\2\2\u02f3\u02f1\3\2\2\2\u02f3"+ - "\u02f4\3\2\2\2\u02f4I\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f6\u02fb\5H%\2\u02f7"+ - "\u02f8\7\f\2\2\u02f8\u02fa\5H%\2\u02f9\u02f7\3\2\2\2\u02fa\u02fd\3\2\2"+ - "\2\u02fb\u02f9\3\2\2\2\u02fb\u02fc\3\2\2\2\u02fcK\3\2\2\2\u02fd\u02fb"+ - "\3\2\2\2\u02fe\u0300\7S\2\2\u02ff\u0301\5N(\2\u0300\u02ff\3\2\2\2\u0300"+ - "\u0301\3\2\2\2\u0301\u0302\3\2\2\2\u0302\u0303\7]\2\2\u0303M\3\2\2\2\u0304"+ - "\u0305\7\b\2\2\u0305\u030a\5P)\2\u0306\u0307\7\f\2\2\u0307\u0309\5P)\2"+ - "\u0308\u0306\3\2\2\2\u0309\u030c\3\2\2\2\u030a\u0308\3\2\2\2\u030a\u030b"+ - "\3\2\2\2\u030b\u030d\3\2\2\2\u030c\u030a\3\2\2\2\u030d\u030e\7\t\2\2\u030e"+ - "O\3\2\2\2\u030f\u0310\7T\2\2\u0310\u031f\7^\2\2\u0311\u0312\7U\2\2\u0312"+ - "\u031f\7u\2\2\u0313\u0314\7V\2\2\u0314\u031f\7^\2\2\u0315\u0316\7W\2\2"+ - "\u0316\u031f\5H%\2\u0317\u0318\7X\2\2\u0318\u031f\5H%\2\u0319\u031c\7"+ - "*\2\2\u031a\u031d\7\65\2\2\u031b\u031d\5H%\2\u031c\u031a\3\2\2\2\u031c"+ - "\u031b\3\2\2\2\u031d\u031f\3\2\2\2\u031e\u030f\3\2\2\2\u031e\u0311\3\2"+ - "\2\2\u031e\u0313\3\2\2\2\u031e\u0315\3\2\2\2\u031e\u0317\3\2\2\2\u031e"+ - "\u0319\3\2\2\2\u031fQ\3\2\2\2\u0320\u0322\5T+\2\u0321\u0320\3\2\2\2\u0322"+ - "\u0325\3\2\2\2\u0323\u0321\3\2\2\2\u0323\u0324\3\2\2\2\u0324S\3\2\2\2"+ - "\u0325\u0323\3\2\2\2\u0326\u032a\5V,\2\u0327\u032a\5X-\2\u0328\u032a\5"+ - "Z.\2\u0329\u0326\3\2\2\2\u0329\u0327\3\2\2\2\u0329\u0328\3\2\2\2\u032a"+ - "U\3\2\2\2\u032b\u032c\7\u0099\2\2\u032c\u0330\7|\2\2\u032d\u032e\7\u0098"+ - "\2\2\u032e\u0330\7|\2\2\u032f\u032b\3\2\2\2\u032f\u032d\3\2\2\2\u0330"+ - "W\3\2\2\2\u0331\u0333\7z\2\2\u0332\u0334\5\\/\2\u0333\u0332\3\2\2\2\u0333"+ - "\u0334\3\2\2\2\u0334Y\3\2\2\2\u0335\u0336\7y\2\2\u0336\u033b\5^\60\2\u0337"+ - "\u0338\7}\2\2\u0338\u033a\5^\60\2\u0339\u0337\3\2\2\2\u033a\u033d\3\2"+ - "\2\2\u033b\u0339\3\2\2\2\u033b\u033c\3\2\2\2\u033c[\3\2\2\2\u033d\u033b"+ - "\3\2\2\2\u033e\u0356\5^\60\2\u033f\u0340\7{\2\2\u0340\u0356\5^\60\2\u0341"+ - "\u0342\5^\60\2\u0342\u0343\7}\2\2\u0343\u0344\7\u0099\2\2\u0344\u0356"+ - "\3\2\2\2\u0345\u0346\7~\2\2\u0346\u0347\5^\60\2\u0347\u0348\7\177\2\2"+ - "\u0348\u0349\7}\2\2\u0349\u034a\7\u0099\2\2\u034a\u0356\3\2\2\2\u034b"+ - "\u034c\7~\2\2\u034c\u034d\5^\60\2\u034d\u034e\7}\2\2\u034e\u034f\7\u0099"+ - "\2\2\u034f\u0350\7\177\2\2\u0350\u0356\3\2\2\2\u0351\u0352\7~\2\2\u0352"+ - "\u0353\5^\60\2\u0353\u0354\7\177\2\2\u0354\u0356\3\2\2\2\u0355\u033e\3"+ - "\2\2\2\u0355\u033f\3\2\2\2\u0355\u0341\3\2\2\2\u0355\u0345\3\2\2\2\u0355"+ - "\u034b\3\2\2\2\u0355\u0351\3\2\2\2\u0356]\3\2\2\2\u0357\u0358\b\60\1\2"+ - "\u0358\u0359\7\u0080\2\2\u0359\u035a\5^\60\2\u035a\u035b\7\u0081\2\2\u035b"+ - "\u0366\3\2\2\2\u035c\u035d\t\t\2\2\u035d\u0366\5^\60\n\u035e\u0366\7\u0099"+ - "\2\2\u035f\u0366\7\u0097\2\2\u0360\u0361\7\u008b\2\2\u0361\u0362\7\u0099"+ - "\2\2\u0362\u0366\7\u008c\2\2\u0363\u0366\7\u008d\2\2\u0364\u0366\7\u0096"+ - "\2\2\u0365\u0357\3\2\2\2\u0365\u035c\3\2\2\2\u0365\u035e\3\2\2\2\u0365"+ - "\u035f\3\2\2\2\u0365\u0360\3\2\2\2\u0365\u0363\3\2\2\2\u0365\u0364\3\2"+ - "\2\2\u0366\u0375\3\2\2\2\u0367\u0368\f\f\2\2\u0368\u0369\7\u0082\2\2\u0369"+ - "\u0374\5^\60\r\u036a\u036b\f\13\2\2\u036b\u036c\t\n\2\2\u036c\u0374\5"+ - "^\60\f\u036d\u036e\f\t\2\2\u036e\u036f\t\13\2\2\u036f\u0374\5^\60\n\u0370"+ - "\u0371\f\b\2\2\u0371\u0372\t\f\2\2\u0372\u0374\5^\60\t\u0373\u0367\3\2"+ - "\2\2\u0373\u036a\3\2\2\2\u0373\u036d\3\2\2\2\u0373\u0370\3\2\2\2\u0374"+ - "\u0377\3\2\2\2\u0375\u0373\3\2\2\2\u0375\u0376\3\2\2\2\u0376_\3\2\2\2"+ - "\u0377\u0375\3\2\2\2Zint\u0085\u008e\u0098\u009e\u00a6\u00ad\u00b6\u00bb"+ - "\u00c1\u00c6\u00cb\u00d2\u00d9\u00de\u00ea\u00ed\u00ef\u00fa\u0101\u0106"+ - "\u010c\u010e\u0116\u011c\u0128\u0136\u013c\u0142\u0148\u014d\u0151\u015a"+ - "\u0161\u0167\u0172\u01af\u01b3\u01be\u01d1\u01da\u01df\u01e4\u01eb\u01f8"+ - "\u01fd\u0209\u0217\u022a\u0233\u023a\u023f\u0244\u0246\u024c\u0253\u0259"+ - "\u025c\u0264\u0267\u026a\u0274\u0280\u0288\u028e\u0292\u02a7\u02b1\u02b5"+ - "\u02e7\u02f1\u02f3\u02fb\u0300\u030a\u031c\u031e\u0323\u0329\u032f\u0333"+ - "\u033b\u0355\u0365\u0373\u0375"; + "\2\2\2nm\3\2\2\2o\t\3\2\2\2pq\7^\2\2qw\7u\2\2rs\7_\2\2sw\7u\2\2tu\7_\2"+ + "\2uw\7t\2\2vp\3\2\2\2vr\3\2\2\2vt\3\2\2\2w\13\3\2\2\2xy\5\16\b\2yz\7\n"+ + "\2\2z\u0088\3\2\2\2{|\5\"\22\2|}\7\n\2\2}\u0088\3\2\2\2~\177\5(\25\2\177"+ + "\u0080\7\n\2\2\u0080\u0088\3\2\2\2\u0081\u0088\5.\30\2\u0082\u0088\5L"+ + "\'\2\u0083\u0088\5\66\34\2\u0084\u0085\5\22\n\2\u0085\u0086\7\n\2\2\u0086"+ + "\u0088\3\2\2\2\u0087x\3\2\2\2\u0087{\3\2\2\2\u0087~\3\2\2\2\u0087\u0081"+ + "\3\2\2\2\u0087\u0082\3\2\2\2\u0087\u0083\3\2\2\2\u0087\u0084\3\2\2\2\u0088"+ + "\r\3\2\2\2\u0089\u008a\5\26\f\2\u008a\u008b\5\20\t\2\u008b\17\3\2\2\2"+ + "\u008c\u0090\b\t\1\2\u008d\u008f\5\30\r\2\u008e\u008d\3\2\2\2\u008f\u0092"+ + "\3\2\2\2\u0090\u008e\3\2\2\2\u0090\u0091\3\2\2\2\u0091\u0093\3\2\2\2\u0092"+ + "\u0090\3\2\2\2\u0093\u0094\5\24\13\2\u0094\u00a0\3\2\2\2\u0095\u0096\f"+ + "\3\2\2\u0096\u009a\7\f\2\2\u0097\u0099\5\30\r\2\u0098\u0097\3\2\2\2\u0099"+ + "\u009c\3\2\2\2\u009a\u0098\3\2\2\2\u009a\u009b\3\2\2\2\u009b\u009d\3\2"+ + "\2\2\u009c\u009a\3\2\2\2\u009d\u009f\5\24\13\2\u009e\u0095\3\2\2\2\u009f"+ + "\u00a2\3\2\2\2\u00a0\u009e\3\2\2\2\u00a0\u00a1\3\2\2\2\u00a1\21\3\2\2"+ + "\2\u00a2\u00a0\3\2\2\2\u00a3\u00a4\7(\2\2\u00a4\u00a8\5\26\f\2\u00a5\u00a7"+ + "\5\30\r\2\u00a6\u00a5\3\2\2\2\u00a7\u00aa\3\2\2\2\u00a8\u00a6\3\2\2\2"+ + "\u00a8\u00a9\3\2\2\2\u00a9\u00ab\3\2\2\2\u00aa\u00a8\3\2\2\2\u00ab\u00af"+ + "\7s\2\2\u00ac\u00ae\5\32\16\2\u00ad\u00ac\3\2\2\2\u00ae\u00b1\3\2\2\2"+ + "\u00af\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00b2\3\2\2\2\u00b1\u00af"+ + "\3\2\2\2\u00b2\u00b3\b\n\1\2\u00b3\23\3\2\2\2\u00b4\u00b8\7s\2\2\u00b5"+ + "\u00b7\5\32\16\2\u00b6\u00b5\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3"+ + "\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\u00bd\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb"+ + "\u00bc\7&\2\2\u00bc\u00be\5H%\2\u00bd\u00bb\3\2\2\2\u00bd\u00be\3\2\2"+ + "\2\u00be\u00c9\3\2\2\2\u00bf\u00c3\7s\2\2\u00c0\u00c2\5\32\16\2\u00c1"+ + "\u00c0\3\2\2\2\u00c2\u00c5\3\2\2\2\u00c3\u00c1\3\2\2\2\u00c3\u00c4\3\2"+ + "\2\2\u00c4\u00c6\3\2\2\2\u00c5\u00c3\3\2\2\2\u00c6\u00c7\7&\2\2\u00c7"+ + "\u00c9\5L\'\2\u00c8\u00b4\3\2\2\2\u00c8\u00bf\3\2\2\2\u00c9\25\3\2\2\2"+ + "\u00ca\u00cc\58\35\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb"+ + "\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00d0\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0"+ + "\u00d4\5\36\20\2\u00d1\u00d3\58\35\2\u00d2\u00d1\3\2\2\2\u00d3\u00d6\3"+ + "\2\2\2\u00d4\u00d2\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\27\3\2\2\2\u00d6"+ + "\u00d4\3\2\2\2\u00d7\u00db\7\23\2\2\u00d8\u00da\58\35\2\u00d9\u00d8\3"+ + "\2\2\2\u00da\u00dd\3\2\2\2\u00db\u00d9\3\2\2\2\u00db\u00dc\3\2\2\2\u00dc"+ + "\31\3\2\2\2\u00dd\u00db\3\2\2\2\u00de\u00e0\7\6\2\2\u00df\u00e1\5H%\2"+ + "\u00e0\u00df\3\2\2\2\u00e0\u00e1\3\2\2\2\u00e1\u00e2\3\2\2\2\u00e2\u00e3"+ + "\7\7\2\2\u00e3\33\3\2\2\2\u00e4\u00e5\b\17\1\2\u00e5\u00e6\5\36\20\2\u00e6"+ + "\u00f1\3\2\2\2\u00e7\u00e8\f\4\2\2\u00e8\u00f0\7\23\2\2\u00e9\u00ea\f"+ + "\3\2\2\u00ea\u00ec\7\6\2\2\u00eb\u00ed\5H%\2\u00ec\u00eb\3\2\2\2\u00ec"+ + "\u00ed\3\2\2\2\u00ed\u00ee\3\2\2\2\u00ee\u00f0\7\7\2\2\u00ef\u00e7\3\2"+ + "\2\2\u00ef\u00e9\3\2\2\2\u00f0\u00f3\3\2\2\2\u00f1\u00ef\3\2\2\2\u00f1"+ + "\u00f2\3\2\2\2\u00f2\35\3\2\2\2\u00f3\u00f1\3\2\2\2\u00f4\u00f5\b\20\1"+ + "\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\5\36\20\2\u00f7\u00f8\7\t\2\2\u00f8"+ + "\u0104\3\2\2\2\u00f9\u0104\7[\2\2\u00fa\u00fc\7Z\2\2\u00fb\u00fd\7[\2"+ + "\2\u00fc\u00fb\3\2\2\2\u00fc\u00fd\3\2\2\2\u00fd\u0104\3\2\2\2\u00fe\u0104"+ + "\5\"\22\2\u00ff\u0104\5 \21\2\u0100\u0104\5(\25\2\u0101\u0104\5&\24\2"+ + "\u0102\u0104\7\3\2\2\u0103\u00f4\3\2\2\2\u0103\u00f9\3\2\2\2\u0103\u00fa"+ + "\3\2\2\2\u0103\u00fe\3\2\2\2\u0103\u00ff\3\2\2\2\u0103\u0100\3\2\2\2\u0103"+ + "\u0101\3\2\2\2\u0103\u0102\3\2\2\2\u0104\u0110\3\2\2\2\u0105\u0106\f\t"+ + "\2\2\u0106\u0108\7\6\2\2\u0107\u0109\5H%\2\u0108\u0107\3\2\2\2\u0108\u0109"+ + "\3\2\2\2\u0109\u010a\3\2\2\2\u010a\u010f\7\7\2\2\u010b\u010c\f\b\2\2\u010c"+ + "\u010d\7\b\2\2\u010d\u010f\7\t\2\2\u010e\u0105\3\2\2\2\u010e\u010b\3\2"+ + "\2\2\u010f\u0112\3\2\2\2\u0110\u010e\3\2\2\2\u0110\u0111\3\2\2\2\u0111"+ + "\37\3\2\2\2\u0112\u0110\3\2\2\2\u0113\u0114\7N\2\2\u0114\u0115\7s\2\2"+ + "\u0115!\3\2\2\2\u0116\u0118\7N\2\2\u0117\u0119\7s\2\2\u0118\u0117\3\2"+ + "\2\2\u0118\u0119\3\2\2\2\u0119\u011a\3\2\2\2\u011a\u011c\7\4\2\2\u011b"+ + "\u011d\5$\23\2\u011c\u011b\3\2\2\2\u011d\u011e\3\2\2\2\u011e\u011c\3\2"+ + "\2\2\u011e\u011f\3\2\2\2\u011f\u0120\3\2\2\2\u0120\u0121\7\5\2\2\u0121"+ + "#\3\2\2\2\u0122\u0123\5\16\b\2\u0123\u0124\7\n\2\2\u0124%\3\2\2\2\u0125"+ + "\u0126\7O\2\2\u0126\u0127\7s\2\2\u0127\'\3\2\2\2\u0128\u012a\7O\2\2\u0129"+ + "\u012b\7s\2\2\u012a\u0129\3\2\2\2\u012a\u012b\3\2\2\2\u012b\u012c\3\2"+ + "\2\2\u012c\u012d\7\4\2\2\u012d\u012e\5*\26\2\u012e\u012f\7\5\2\2\u012f"+ + ")\3\2\2\2\u0130\u0131\b\26\1\2\u0131\u0132\5,\27\2\u0132\u0138\3\2\2\2"+ + "\u0133\u0134\f\3\2\2\u0134\u0135\7\f\2\2\u0135\u0137\5,\27\2\u0136\u0133"+ + "\3\2\2\2\u0137\u013a\3\2\2\2\u0138\u0136\3\2\2\2\u0138\u0139\3\2\2\2\u0139"+ + "+\3\2\2\2\u013a\u0138\3\2\2\2\u013b\u013e\7s\2\2\u013c\u013d\7&\2\2\u013d"+ + "\u013f\5H%\2\u013e\u013c\3\2\2\2\u013e\u013f\3\2\2\2\u013f-\3\2\2\2\u0140"+ + "\u0144\5\26\f\2\u0141\u0143\5\30\r\2\u0142\u0141\3\2\2\2\u0143\u0146\3"+ + "\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145\3\2\2\2\u0145\u0147\3\2\2\2\u0146"+ + "\u0144\3\2\2\2\u0147\u0148\7s\2\2\u0148\u014a\7\b\2\2\u0149\u014b\5\62"+ + "\32\2\u014a\u0149\3\2\2\2\u014a\u014b\3\2\2\2\u014b\u014c\3\2\2\2\u014c"+ + "\u014f\7\t\2\2\u014d\u0150\5\60\31\2\u014e\u0150\7\n\2\2\u014f\u014d\3"+ + "\2\2\2\u014f\u014e\3\2\2\2\u0150/\3\2\2\2\u0151\u0153\7\4\2\2\u0152\u0154"+ + "\5:\36\2\u0153\u0152\3\2\2\2\u0153\u0154\3\2\2\2\u0154\u0155\3\2\2\2\u0155"+ + "\u0156\7\5\2\2\u0156\61\3\2\2\2\u0157\u015c\5\64\33\2\u0158\u0159\7\f"+ + "\2\2\u0159\u015b\5\64\33\2\u015a\u0158\3\2\2\2\u015b\u015e\3\2\2\2\u015c"+ + "\u015a\3\2\2\2\u015c\u015d\3\2\2\2\u015d\63\3\2\2\2\u015e\u015c\3\2\2"+ + "\2\u015f\u0163\5\26\f\2\u0160\u0162\5\30\r\2\u0161\u0160\3\2\2\2\u0162"+ + "\u0165\3\2\2\2\u0163\u0161\3\2\2\2\u0163\u0164\3\2\2\2\u0164\u0166\3\2"+ + "\2\2\u0165\u0163\3\2\2\2\u0166\u0167\7s\2\2\u0167\u016a\3\2\2\2\u0168"+ + "\u016a\7[\2\2\u0169\u015f\3\2\2\2\u0169\u0168\3\2\2\2\u016a\65\3\2\2\2"+ + "\u016b\u016c\7`\2\2\u016c\u016d\7)\2\2\u016d\u016e\3\2\2\2\u016e\u016f"+ + "\7\b\2\2\u016f\u0174\7j\2\2\u0170\u0171\7\f\2\2\u0171\u0173\7j\2\2\u0172"+ + "\u0170\3\2\2\2\u0173\u0176\3\2\2\2\u0174\u0172\3\2\2\2\u0174\u0175\3\2"+ + "\2\2\u0175\u0177\3\2\2\2\u0176\u0174\3\2\2\2\u0177\u01b6\7\t\2\2\u0178"+ + "\u0179\7`\2\2\u0179\u017a\7*\2\2\u017a\u017b\3\2\2\2\u017b\u017c\7\b\2"+ + "\2\u017c\u017d\7j\2\2\u017d\u01b6\7\t\2\2\u017e\u017f\7`\2\2\u017f\u0180"+ + "\7+\2\2\u0180\u0181\3\2\2\2\u0181\u0182\7\b\2\2\u0182\u0183\7s\2\2\u0183"+ + "\u01b6\7\t\2\2\u0184\u0185\7`\2\2\u0185\u0186\7-\2\2\u0186\u0187\3\2\2"+ + "\2\u0187\u0188\7\b\2\2\u0188\u0189\7s\2\2\u0189\u01b6\7\t\2\2\u018a\u018b"+ + "\7`\2\2\u018b\u018c\7,\2\2\u018c\u018d\3\2\2\2\u018d\u018e\7\b\2\2\u018e"+ + "\u018f\7u\2\2\u018f\u01b6\7\t\2\2\u0190\u0191\7`\2\2\u0191\u0192\7.\2"+ + "\2\u0192\u0193\3\2\2\2\u0193\u0194\7\b\2\2\u0194\u0195\7s\2\2\u0195\u01b6"+ + "\7\t\2\2\u0196\u0197\7`\2\2\u0197\u0198\7/\2\2\u0198\u0199\3\2\2\2\u0199"+ + "\u019a\7\b\2\2\u019a\u019b\7s\2\2\u019b\u01b6\7\t\2\2\u019c\u019d\7`\2"+ + "\2\u019d\u019e\7\60\2\2\u019e\u019f\3\2\2\2\u019f\u01a0\7\b\2\2\u01a0"+ + "\u01a1\7s\2\2\u01a1\u01b6\7\t\2\2\u01a2\u01a3\7`\2\2\u01a3\u01a4\7?\2"+ + "\2\u01a4\u01a5\3\2\2\2\u01a5\u01a6\7\b\2\2\u01a6\u01a7\7@\2\2\u01a7\u01b6"+ + "\7\t\2\2\u01a8\u01a9\7`\2\2\u01a9\u01aa\7A\2\2\u01aa\u01ab\3\2\2\2\u01ab"+ + "\u01ac\7\b\2\2\u01ac\u01b1\7s\2\2\u01ad\u01ae\7\f\2\2\u01ae\u01b0\7s\2"+ + "\2\u01af\u01ad\3\2\2\2\u01b0\u01b3\3\2\2\2\u01b1\u01af\3\2\2\2\u01b1\u01b2"+ + "\3\2\2\2\u01b2\u01b4\3\2\2\2\u01b3\u01b1\3\2\2\2\u01b4\u01b6\7\t\2\2\u01b5"+ + "\u016b\3\2\2\2\u01b5\u0178\3\2\2\2\u01b5\u017e\3\2\2\2\u01b5\u0184\3\2"+ + "\2\2\u01b5\u018a\3\2\2\2\u01b5\u0190\3\2\2\2\u01b5\u0196\3\2\2\2\u01b5"+ + "\u019c\3\2\2\2\u01b5\u01a2\3\2\2\2\u01b5\u01a8\3\2\2\2\u01b6\67\3\2\2"+ + "\2\u01b7\u01e2\7\61\2\2\u01b8\u01b9\7\64\2\2\u01b9\u01ba\7\b\2\2\u01ba"+ + "\u01bb\7j\2\2\u01bb\u01e2\7\t\2\2\u01bc\u01c0\79\2\2\u01bd\u01be\7\b\2"+ + "\2\u01be\u01bf\7s\2\2\u01bf\u01c1\7\t\2\2\u01c0\u01bd\3\2\2\2\u01c0\u01c1"+ + "\3\2\2\2\u01c1\u01e2\3\2\2\2\u01c2\u01e2\7;\2\2\u01c3\u01e2\7<\2\2\u01c4"+ + "\u01c5\7:\2\2\u01c5\u01c6\7\b\2\2\u01c6\u01c7\7j\2\2\u01c7\u01e2\7\t\2"+ + "\2\u01c8\u01e2\7\66\2\2\u01c9\u01e2\7\67\2\2\u01ca\u01e2\7=\2\2\u01cb"+ + "\u01e2\7>\2\2\u01cc\u01e2\7\62\2\2\u01cd\u01e2\7\63\2\2\u01ce\u01e2\7"+ + "\65\2\2\u01cf\u01d3\78\2\2\u01d0\u01d1\7\b\2\2\u01d1\u01d2\7s\2\2\u01d2"+ + "\u01d4\7\t\2\2\u01d3\u01d0\3\2\2\2\u01d3\u01d4\3\2\2\2\u01d4\u01e2\3\2"+ + "\2\2\u01d5\u01d6\7)\2\2\u01d6\u01d7\7\b\2\2\u01d7\u01dc\7j\2\2\u01d8\u01d9"+ + "\7\f\2\2\u01d9\u01db\7j\2\2\u01da\u01d8\3\2\2\2\u01db\u01de\3\2\2\2\u01dc"+ + "\u01da\3\2\2\2\u01dc\u01dd\3\2\2\2\u01dd\u01df\3\2\2\2\u01de\u01dc\3\2"+ + "\2\2\u01df\u01e2\7\t\2\2\u01e0\u01e2\7@\2\2\u01e1\u01b7\3\2\2\2\u01e1"+ + "\u01b8\3\2\2\2\u01e1\u01bc\3\2\2\2\u01e1\u01c2\3\2\2\2\u01e1\u01c3\3\2"+ + "\2\2\u01e1\u01c4\3\2\2\2\u01e1\u01c8\3\2\2\2\u01e1\u01c9\3\2\2\2\u01e1"+ + "\u01ca\3\2\2\2\u01e1\u01cb\3\2\2\2\u01e1\u01cc\3\2\2\2\u01e1\u01cd\3\2"+ + "\2\2\u01e1\u01ce\3\2\2\2\u01e1\u01cf\3\2\2\2\u01e1\u01d5\3\2\2\2\u01e1"+ + "\u01e0\3\2\2\2\u01e29\3\2\2\2\u01e3\u01e5\5<\37\2\u01e4\u01e3\3\2\2\2"+ + "\u01e5\u01e6\3\2\2\2\u01e6\u01e4\3\2\2\2\u01e6\u01e7\3\2\2\2\u01e7;\3"+ + "\2\2\2\u01e8\u01e9\5\16\b\2\u01e9\u01ea\7\n\2\2\u01ea\u023d\3\2\2\2\u01eb"+ + "\u01ed\7\4\2\2\u01ec\u01ee\5:\36\2\u01ed\u01ec\3\2\2\2\u01ed\u01ee\3\2"+ + "\2\2\u01ee\u01ef\3\2\2\2\u01ef\u023d\7\5\2\2\u01f0\u01f1\5F$\2\u01f1\u01f2"+ + "\7\n\2\2\u01f2\u023d\3\2\2\2\u01f3\u01f4\7B\2\2\u01f4\u01f5\7\b\2\2\u01f5"+ + "\u01f6\5F$\2\u01f6\u01f7\7\t\2\2\u01f7\u01fa\5<\37\2\u01f8\u01f9\7C\2"+ + "\2\u01f9\u01fb\5<\37\2\u01fa\u01f8\3\2\2\2\u01fa\u01fb\3\2\2\2\u01fb\u023d"+ + "\3\2\2\2\u01fc\u01fe\58\35\2\u01fd\u01fc\3\2\2\2\u01fe\u0201\3\2\2\2\u01ff"+ + "\u01fd\3\2\2\2\u01ff\u0200\3\2\2\2\u0200\u0202\3\2\2\2\u0201\u01ff\3\2"+ + "\2\2\u0202\u0203\7D\2\2\u0203\u0204\7\b\2\2\u0204\u0205\5F$\2\u0205\u0206"+ + "\7\t\2\2\u0206\u0207\5<\37\2\u0207\u023d\3\2\2\2\u0208\u020a\58\35\2\u0209"+ + "\u0208\3\2\2\2\u020a\u020d\3\2\2\2\u020b\u0209\3\2\2\2\u020b\u020c\3\2"+ + "\2\2\u020c\u020e\3\2\2\2\u020d\u020b\3\2\2\2\u020e\u020f\7E\2\2\u020f"+ + "\u0210\5<\37\2\u0210\u0211\7D\2\2\u0211\u0212\7\b\2\2\u0212\u0213\5F$"+ + "\2\u0213\u0214\7\t\2\2\u0214\u0215\7\n\2\2\u0215\u023d\3\2\2\2\u0216\u0218"+ + "\58\35\2\u0217\u0216\3\2\2\2\u0218\u021b\3\2\2\2\u0219\u0217\3\2\2\2\u0219"+ + "\u021a\3\2\2\2\u021a\u021c\3\2\2\2\u021b\u0219\3\2\2\2\u021c\u021d\7F"+ + "\2\2\u021d\u021e\7\b\2\2\u021e\u021f\5B\"\2\u021f\u0220\7\t\2\2\u0220"+ + "\u0221\5<\37\2\u0221\u023d\3\2\2\2\u0222\u0223\7G\2\2\u0223\u0224\7\b"+ + "\2\2\u0224\u0225\5F$\2\u0225\u0226\7\t\2\2\u0226\u0227\7\4\2\2\u0227\u0228"+ + "\5> \2\u0228\u0229\7\5\2\2\u0229\u023d\3\2\2\2\u022a\u022c\7H\2\2\u022b"+ + "\u022d\5F$\2\u022c\u022b\3\2\2\2\u022c\u022d\3\2\2\2\u022d\u022e\3\2\2"+ + "\2\u022e\u023d\7\n\2\2\u022f\u0230\7I\2\2\u0230\u023d\7\n\2\2\u0231\u0232"+ + "\7J\2\2\u0232\u023d\7\n\2\2\u0233\u0235\7K\2\2\u0234\u0236\5N(\2\u0235"+ + "\u0234\3\2\2\2\u0235\u0236\3\2\2\2\u0236\u0237\3\2\2\2\u0237\u0238\7\4"+ + "\2\2\u0238\u0239\5R*\2\u0239\u023a\7\u008d\2\2\u023a\u023d\3\2\2\2\u023b"+ + "\u023d\5L\'\2\u023c\u01e8\3\2\2\2\u023c\u01eb\3\2\2\2\u023c\u01f0\3\2"+ + "\2\2\u023c\u01f3\3\2\2\2\u023c\u01ff\3\2\2\2\u023c\u020b\3\2\2\2\u023c"+ + "\u0219\3\2\2\2\u023c\u0222\3\2\2\2\u023c\u022a\3\2\2\2\u023c\u022f\3\2"+ + "\2\2\u023c\u0231\3\2\2\2\u023c\u0233\3\2\2\2\u023c\u023b\3\2\2\2\u023d"+ + "=\3\2\2\2\u023e\u0240\5@!\2\u023f\u023e\3\2\2\2\u0240\u0241\3\2\2\2\u0241"+ + "\u023f\3\2\2\2\u0241\u0242\3\2\2\2\u0242\u0248\3\2\2\2\u0243\u0244\7L"+ + "\2\2\u0244\u0246\7\13\2\2\u0245\u0247\5:\36\2\u0246\u0245\3\2\2\2\u0246"+ + "\u0247\3\2\2\2\u0247\u0249\3\2\2\2\u0248\u0243\3\2\2\2\u0248\u0249\3\2"+ + "\2\2\u0249?\3\2\2\2\u024a\u024b\7M\2\2\u024b\u024c\5H%\2\u024c\u024e\7"+ + "\13\2\2\u024d\u024f\5:\36\2\u024e\u024d\3\2\2\2\u024e\u024f\3\2\2\2\u024f"+ + "A\3\2\2\2\u0250\u0251\5D#\2\u0251\u0252\7\n\2\2\u0252\u0253\5F$\2\u0253"+ + "\u0255\7\n\2\2\u0254\u0256\5F$\2\u0255\u0254\3\2\2\2\u0255\u0256\3\2\2"+ + "\2\u0256\u0267\3\2\2\2\u0257\u025b\5\26\f\2\u0258\u025a\5\30\r\2\u0259"+ + "\u0258\3\2\2\2\u025a\u025d\3\2\2\2\u025b\u0259\3\2\2\2\u025b\u025c\3\2"+ + "\2\2\u025c\u025f\3\2\2\2\u025d\u025b\3\2\2\2\u025e\u0257\3\2\2\2\u025e"+ + "\u025f\3\2\2\2\u025f\u0260\3\2\2\2\u0260\u0261\7s\2\2\u0261\u0262\7\13"+ + "\2\2\u0262\u0263\5H%\2\u0263\u0264\7\r\2\2\u0264\u0265\5H%\2\u0265\u0267"+ + "\3\2\2\2\u0266\u0250\3\2\2\2\u0266\u025e\3\2\2\2\u0267C\3\2\2\2\u0268"+ + "\u026a\5\16\b\2\u0269\u0268\3\2\2\2\u0269\u026a\3\2\2\2\u026a\u026d\3"+ + "\2\2\2\u026b\u026d\5F$\2\u026c\u0269\3\2\2\2\u026c\u026b\3\2\2\2\u026d"+ + "E\3\2\2\2\u026e\u026f\b$\1\2\u026f\u0270\5H%\2\u0270\u0276\3\2\2\2\u0271"+ + "\u0272\f\3\2\2\u0272\u0273\7\f\2\2\u0273\u0275\5H%\2\u0274\u0271\3\2\2"+ + "\2\u0275\u0278\3\2\2\2\u0276\u0274\3\2\2\2\u0276\u0277\3\2\2\2\u0277G"+ + "\3\2\2\2\u0278\u0276\3\2\2\2\u0279\u027a\b%\1\2\u027a\u027b\7\b\2\2\u027b"+ + "\u027c\5F$\2\u027c\u027d\7\t\2\2\u027d\u02b8\3\2\2\2\u027e\u027f\7P\2"+ + "\2\u027f\u0282\7\b\2\2\u0280\u0283\5H%\2\u0281\u0283\5\34\17\2\u0282\u0280"+ + "\3\2\2\2\u0282\u0281\3\2\2\2\u0283\u0284\3\2\2\2\u0284\u0285\7\t\2\2\u0285"+ + "\u02b8\3\2\2\2\u0286\u0287\7Q\2\2\u0287\u028a\7\b\2\2\u0288\u028b\5H%"+ + "\2\u0289\u028b\5\34\17\2\u028a\u0288\3\2\2\2\u028a\u0289\3\2\2\2\u028b"+ + "\u028c\3\2\2\2\u028c\u028d\7\t\2\2\u028d\u02b8\3\2\2\2\u028e\u0290\7R"+ + "\2\2\u028f\u0291\7\b\2\2\u0290\u028f\3\2\2\2\u0290\u0291\3\2\2\2\u0291"+ + "\u0292\3\2\2\2\u0292\u0294\7s\2\2\u0293\u0295\7\t\2\2\u0294\u0293\3\2"+ + "\2\2\u0294\u0295\3\2\2\2\u0295\u02b8\3\2\2\2\u0296\u0297\7\b\2\2\u0297"+ + "\u0298\5\34\17\2\u0298\u0299\7\t\2\2\u0299\u029a\5H%\32\u029a\u02b8\3"+ + "\2\2\2\u029b\u029c\t\2\2\2\u029c\u02b8\5H%\31\u029d\u029e\7\23\2\2\u029e"+ + "\u02b8\5H%\27\u029f\u02a0\t\3\2\2\u02a0\u02b8\5H%\26\u02a1\u02a2\t\4\2"+ + "\2\u02a2\u02b8\5H%\22\u02a3\u02a4\7\4\2\2\u02a4\u02a9\5H%\2\u02a5\u02a6"+ + "\7\f\2\2\u02a6\u02a8\5H%\2\u02a7\u02a5\3\2\2\2\u02a8\u02ab\3\2\2\2\u02a9"+ + "\u02a7\3\2\2\2\u02a9\u02aa\3\2\2\2\u02aa\u02ac\3\2\2\2\u02ab\u02a9\3\2"+ + "\2\2\u02ac\u02ad\7\5\2\2\u02ad\u02b8\3\2\2\2\u02ae\u02b8\7s\2\2\u02af"+ + "\u02b8\7j\2\2\u02b0\u02b2\7u\2\2\u02b1\u02b0\3\2\2\2\u02b2\u02b3\3\2\2"+ + "\2\u02b3\u02b1\3\2\2\2\u02b3\u02b4\3\2\2\2\u02b4\u02b8\3\2\2\2\u02b5\u02b8"+ + "\7v\2\2\u02b6\u02b8\7\\\2\2\u02b7\u0279\3\2\2\2\u02b7\u027e\3\2\2\2\u02b7"+ + "\u0286\3\2\2\2\u02b7\u028e\3\2\2\2\u02b7\u0296\3\2\2\2\u02b7\u029b\3\2"+ + "\2\2\u02b7\u029d\3\2\2\2\u02b7\u029f\3\2\2\2\u02b7\u02a1\3\2\2\2\u02b7"+ + "\u02a3\3\2\2\2\u02b7\u02ae\3\2\2\2\u02b7\u02af\3\2\2\2\u02b7\u02b1\3\2"+ + "\2\2\u02b7\u02b5\3\2\2\2\u02b7\u02b6\3\2\2\2\u02b8\u02f5\3\2\2\2\u02b9"+ + "\u02ba\f\25\2\2\u02ba\u02bb\t\5\2\2\u02bb\u02f4\5H%\26\u02bc\u02bd\f\24"+ + "\2\2\u02bd\u02be\t\6\2\2\u02be\u02f4\5H%\25\u02bf\u02c0\f\23\2\2\u02c0"+ + "\u02c1\t\7\2\2\u02c1\u02f4\5H%\24\u02c2\u02c3\f\21\2\2\u02c3\u02c4\t\b"+ + "\2\2\u02c4\u02f4\5H%\22\u02c5\u02c6\f\20\2\2\u02c6\u02c7\7\30\2\2\u02c7"+ + "\u02f4\5H%\21\u02c8\u02c9\f\17\2\2\u02c9\u02ca\7\32\2\2\u02ca\u02f4\5"+ + "H%\20\u02cb\u02cc\f\16\2\2\u02cc\u02cd\7\33\2\2\u02cd\u02f4\5H%\17\u02ce"+ + "\u02cf\f\r\2\2\u02cf\u02d0\7$\2\2\u02d0\u02f4\5H%\16\u02d1\u02d2\f\f\2"+ + "\2\u02d2\u02d3\7%\2\2\u02d3\u02f4\5H%\r\u02d4\u02d5\f\13\2\2\u02d5\u02d6"+ + "\7\16\2\2\u02d6\u02d7\5H%\2\u02d7\u02d8\7\13\2\2\u02d8\u02d9\5H%\f\u02d9"+ + "\u02f4\3\2\2\2\u02da\u02db\f\n\2\2\u02db\u02dc\7&\2\2\u02dc\u02f4\5H%"+ + "\n\u02dd\u02de\f\t\2\2\u02de\u02df\7\'\2\2\u02df\u02f4\5H%\t\u02e0\u02e1"+ + "\f!\2\2\u02e1\u02e2\7\17\2\2\u02e2\u02f4\7s\2\2\u02e3\u02e4\f \2\2\u02e4"+ + "\u02e5\7\20\2\2\u02e5\u02f4\7s\2\2\u02e6\u02e7\f\37\2\2\u02e7\u02e9\7"+ + "\b\2\2\u02e8\u02ea\5J&\2\u02e9\u02e8\3\2\2\2\u02e9\u02ea\3\2\2\2\u02ea"+ + "\u02eb\3\2\2\2\u02eb\u02f4\7\t\2\2\u02ec\u02ed\f\33\2\2\u02ed\u02ee\7"+ + "\6\2\2\u02ee\u02ef\5F$\2\u02ef\u02f0\7\7\2\2\u02f0\u02f4\3\2\2\2\u02f1"+ + "\u02f2\f\30\2\2\u02f2\u02f4\t\2\2\2\u02f3\u02b9\3\2\2\2\u02f3\u02bc\3"+ + "\2\2\2\u02f3\u02bf\3\2\2\2\u02f3\u02c2\3\2\2\2\u02f3\u02c5\3\2\2\2\u02f3"+ + "\u02c8\3\2\2\2\u02f3\u02cb\3\2\2\2\u02f3\u02ce\3\2\2\2\u02f3\u02d1\3\2"+ + "\2\2\u02f3\u02d4\3\2\2\2\u02f3\u02da\3\2\2\2\u02f3\u02dd\3\2\2\2\u02f3"+ + "\u02e0\3\2\2\2\u02f3\u02e3\3\2\2\2\u02f3\u02e6\3\2\2\2\u02f3\u02ec\3\2"+ + "\2\2\u02f3\u02f1\3\2\2\2\u02f4\u02f7\3\2\2\2\u02f5\u02f3\3\2\2\2\u02f5"+ + "\u02f6\3\2\2\2\u02f6I\3\2\2\2\u02f7\u02f5\3\2\2\2\u02f8\u02fd\5H%\2\u02f9"+ + "\u02fa\7\f\2\2\u02fa\u02fc\5H%\2\u02fb\u02f9\3\2\2\2\u02fc\u02ff\3\2\2"+ + "\2\u02fd\u02fb\3\2\2\2\u02fd\u02fe\3\2\2\2\u02feK\3\2\2\2\u02ff\u02fd"+ + "\3\2\2\2\u0300\u0302\7S\2\2\u0301\u0303\5N(\2\u0302\u0301\3\2\2\2\u0302"+ + "\u0303\3\2\2\2\u0303\u0304\3\2\2\2\u0304\u0305\7]\2\2\u0305M\3\2\2\2\u0306"+ + "\u0307\7\b\2\2\u0307\u030c\5P)\2\u0308\u0309\7\f\2\2\u0309\u030b\5P)\2"+ + "\u030a\u0308\3\2\2\2\u030b\u030e\3\2\2\2\u030c\u030a\3\2\2\2\u030c\u030d"+ + "\3\2\2\2\u030d\u030f\3\2\2\2\u030e\u030c\3\2\2\2\u030f\u0310\7\t\2\2\u0310"+ + "O\3\2\2\2\u0311\u0312\7T\2\2\u0312\u0321\7u\2\2\u0313\u0314\7U\2\2\u0314"+ + "\u0321\7s\2\2\u0315\u0316\7V\2\2\u0316\u0321\7u\2\2\u0317\u0318\7W\2\2"+ + "\u0318\u0321\5H%\2\u0319\u031a\7X\2\2\u031a\u0321\5H%\2\u031b\u031e\7"+ + "*\2\2\u031c\u031f\7\65\2\2\u031d\u031f\5H%\2\u031e\u031c\3\2\2\2\u031e"+ + "\u031d\3\2\2\2\u031f\u0321\3\2\2\2\u0320\u0311\3\2\2\2\u0320\u0313\3\2"+ + "\2\2\u0320\u0315\3\2\2\2\u0320\u0317\3\2\2\2\u0320\u0319\3\2\2\2\u0320"+ + "\u031b\3\2\2\2\u0321Q\3\2\2\2\u0322\u0324\5T+\2\u0323\u0322\3\2\2\2\u0324"+ + "\u0327\3\2\2\2\u0325\u0323\3\2\2\2\u0325\u0326\3\2\2\2\u0326S\3\2\2\2"+ + "\u0327\u0325\3\2\2\2\u0328\u032c\5V,\2\u0329\u032c\5X-\2\u032a\u032c\5"+ + "Z.\2\u032b\u0328\3\2\2\2\u032b\u0329\3\2\2\2\u032b\u032a\3\2\2\2\u032c"+ + "U\3\2\2\2\u032d\u032e\7\u009a\2\2\u032e\u0332\7}\2\2\u032f\u0330\7\u0099"+ + "\2\2\u0330\u0332\7}\2\2\u0331\u032d\3\2\2\2\u0331\u032f\3\2\2\2\u0332"+ + "W\3\2\2\2\u0333\u0335\7{\2\2\u0334\u0336\5\\/\2\u0335\u0334\3\2\2\2\u0335"+ + "\u0336\3\2\2\2\u0336Y\3\2\2\2\u0337\u0338\7z\2\2\u0338\u033d\5^\60\2\u0339"+ + "\u033a\7~\2\2\u033a\u033c\5^\60\2\u033b\u0339\3\2\2\2\u033c\u033f\3\2"+ + "\2\2\u033d\u033b\3\2\2\2\u033d\u033e\3\2\2\2\u033e[\3\2\2\2\u033f\u033d"+ + "\3\2\2\2\u0340\u0358\5^\60\2\u0341\u0342\7|\2\2\u0342\u0358\5^\60\2\u0343"+ + "\u0344\5^\60\2\u0344\u0345\7~\2\2\u0345\u0346\7\u009a\2\2\u0346\u0358"+ + "\3\2\2\2\u0347\u0348\7\177\2\2\u0348\u0349\5^\60\2\u0349\u034a\7\u0080"+ + "\2\2\u034a\u034b\7~\2\2\u034b\u034c\7\u009a\2\2\u034c\u0358\3\2\2\2\u034d"+ + "\u034e\7\177\2\2\u034e\u034f\5^\60\2\u034f\u0350\7~\2\2\u0350\u0351\7"+ + "\u009a\2\2\u0351\u0352\7\u0080\2\2\u0352\u0358\3\2\2\2\u0353\u0354\7\177"+ + "\2\2\u0354\u0355\5^\60\2\u0355\u0356\7\u0080\2\2\u0356\u0358\3\2\2\2\u0357"+ + "\u0340\3\2\2\2\u0357\u0341\3\2\2\2\u0357\u0343\3\2\2\2\u0357\u0347\3\2"+ + "\2\2\u0357\u034d\3\2\2\2\u0357\u0353\3\2\2\2\u0358]\3\2\2\2\u0359\u035a"+ + "\b\60\1\2\u035a\u035b\7\u0081\2\2\u035b\u035c\5^\60\2\u035c\u035d\7\u0082"+ + "\2\2\u035d\u0368\3\2\2\2\u035e\u035f\t\t\2\2\u035f\u0368\5^\60\n\u0360"+ + "\u0368\7\u009a\2\2\u0361\u0368\7\u0098\2\2\u0362\u0363\7\u008c\2\2\u0363"+ + "\u0364\7\u009a\2\2\u0364\u0368\7\u008d\2\2\u0365\u0368\7\u008e\2\2\u0366"+ + "\u0368\7\u0097\2\2\u0367\u0359\3\2\2\2\u0367\u035e\3\2\2\2\u0367\u0360"+ + "\3\2\2\2\u0367\u0361\3\2\2\2\u0367\u0362\3\2\2\2\u0367\u0365\3\2\2\2\u0367"+ + "\u0366\3\2\2\2\u0368\u0377\3\2\2\2\u0369\u036a\f\f\2\2\u036a\u036b\7\u0083"+ + "\2\2\u036b\u0376\5^\60\r\u036c\u036d\f\13\2\2\u036d\u036e\t\n\2\2\u036e"+ + "\u0376\5^\60\f\u036f\u0370\f\t\2\2\u0370\u0371\t\13\2\2\u0371\u0376\5"+ + "^\60\n\u0372\u0373\f\b\2\2\u0373\u0374\t\f\2\2\u0374\u0376\5^\60\t\u0375"+ + "\u0369\3\2\2\2\u0375\u036c\3\2\2\2\u0375\u036f\3\2\2\2\u0375\u0372\3\2"+ + "\2\2\u0376\u0379\3\2\2\2\u0377\u0375\3\2\2\2\u0377\u0378\3\2\2\2\u0378"+ + "_\3\2\2\2\u0379\u0377\3\2\2\2Zinv\u0087\u0090\u009a\u00a0\u00a8\u00af"+ + "\u00b8\u00bd\u00c3\u00c8\u00cd\u00d4\u00db\u00e0\u00ec\u00ef\u00f1\u00fc"+ + "\u0103\u0108\u010e\u0110\u0118\u011e\u012a\u0138\u013e\u0144\u014a\u014f"+ + "\u0153\u015c\u0163\u0169\u0174\u01b1\u01b5\u01c0\u01d3\u01dc\u01e1\u01e6"+ + "\u01ed\u01fa\u01ff\u020b\u0219\u022c\u0235\u023c\u0241\u0246\u0248\u024e"+ + "\u0255\u025b\u025e\u0266\u0269\u026c\u0276\u0282\u028a\u0290\u0294\u02a9"+ + "\u02b3\u02b7\u02e9\u02f3\u02f5\u02fd\u0302\u030c\u031e\u0320\u0325\u032b"+ + "\u0331\u0335\u033d\u0357\u0367\u0375\u0377"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens index a2df68f24..4f9aecee7 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -89,69 +89,70 @@ SIGNEDNESS=88 SIMPLETYPE=89 BOOLEAN=90 KICKASM_BODY=91 -STRING=92 -CHAR=93 -IMPORT=94 -INCLUDE=95 -PRAGMA=96 -DEFINE=97 -DEFINE_CONTINUE=98 -UNDEF=99 -IFDEF=100 -IFNDEF=101 -IFIF=102 -ELIF=103 -IFELSE=104 -ENDIF=105 -NUMBER=106 -NUMFLOAT=107 -BINFLOAT=108 -DECFLOAT=109 -HEXFLOAT=110 -NUMINT=111 -BININTEGER=112 -DECINTEGER=113 -HEXINTEGER=114 -NAME=115 -WS=116 -COMMENT_LINE=117 -COMMENT_BLOCK=118 -ASM_BYTE=119 -ASM_MNEMONIC=120 -ASM_IMM=121 -ASM_COLON=122 -ASM_COMMA=123 -ASM_PAR_BEGIN=124 -ASM_PAR_END=125 -ASM_BRACKET_BEGIN=126 -ASM_BRACKET_END=127 -ASM_DOT=128 -ASM_SHIFT_LEFT=129 -ASM_SHIFT_RIGHT=130 -ASM_PLUS=131 -ASM_MINUS=132 -ASM_LESS_THAN=133 -ASM_GREATER_THAN=134 -ASM_MULTIPLY=135 -ASM_DIVIDE=136 -ASM_CURLY_BEGIN=137 -ASM_CURLY_END=138 -ASM_NUMBER=139 -ASM_NUMFLOAT=140 -ASM_BINFLOAT=141 -ASM_DECFLOAT=142 -ASM_HEXFLOAT=143 -ASM_NUMINT=144 -ASM_BININTEGER=145 -ASM_DECINTEGER=146 -ASM_HEXINTEGER=147 -ASM_CHAR=148 -ASM_MULTI_REL=149 -ASM_MULTI_NAME=150 -ASM_NAME=151 -ASM_WS=152 -ASM_COMMENT_LINE=153 -ASM_COMMENT_BLOCK=154 +IMPORT=92 +INCLUDE=93 +PRAGMA=94 +DEFINE=95 +DEFINE_CONTINUE=96 +UNDEF=97 +IFDEF=98 +IFNDEF=99 +IFIF=100 +ELIF=101 +IFELSE=102 +ENDIF=103 +NUMBER=104 +NUMFLOAT=105 +BINFLOAT=106 +DECFLOAT=107 +HEXFLOAT=108 +NUMINT=109 +BININTEGER=110 +DECINTEGER=111 +HEXINTEGER=112 +NAME=113 +SYSTEMFILE=114 +STRING=115 +CHAR=116 +WS=117 +COMMENT_LINE=118 +COMMENT_BLOCK=119 +ASM_BYTE=120 +ASM_MNEMONIC=121 +ASM_IMM=122 +ASM_COLON=123 +ASM_COMMA=124 +ASM_PAR_BEGIN=125 +ASM_PAR_END=126 +ASM_BRACKET_BEGIN=127 +ASM_BRACKET_END=128 +ASM_DOT=129 +ASM_SHIFT_LEFT=130 +ASM_SHIFT_RIGHT=131 +ASM_PLUS=132 +ASM_MINUS=133 +ASM_LESS_THAN=134 +ASM_GREATER_THAN=135 +ASM_MULTIPLY=136 +ASM_DIVIDE=137 +ASM_CURLY_BEGIN=138 +ASM_CURLY_END=139 +ASM_NUMBER=140 +ASM_NUMFLOAT=141 +ASM_BINFLOAT=142 +ASM_DECFLOAT=143 +ASM_HEXFLOAT=144 +ASM_NUMINT=145 +ASM_BININTEGER=146 +ASM_DECINTEGER=147 +ASM_HEXINTEGER=148 +ASM_CHAR=149 +ASM_MULTI_REL=150 +ASM_MULTI_NAME=151 +ASM_NAME=152 +ASM_WS=153 +ASM_COMMENT_LINE=154 +ASM_COMMENT_BLOCK=155 ';'=8 '..'=11 '?'=12 @@ -219,16 +220,16 @@ ASM_COMMENT_BLOCK=154 'bytes'=85 'cycles'=86 '!'=87 -'#import'=94 -'#include'=95 -'#pragma'=96 -'#define'=97 -'#undef'=99 -'#ifdef'=100 -'#ifndef'=101 -'#if'=102 -'#elif'=103 -'#else'=104 -'#endif'=105 -'.byte'=119 -'#'=121 +'#import'=92 +'#include'=93 +'#pragma'=94 +'#define'=95 +'#undef'=97 +'#ifdef'=98 +'#ifndef'=99 +'#if'=100 +'#elif'=101 +'#else'=102 +'#endif'=103 +'.byte'=120 +'#'=122 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java index 43ed2c7d3..34bcc9ba6 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java @@ -85,6 +85,18 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitIncludeFile(KickCParser.IncludeFileContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterIncludeSystem(KickCParser.IncludeSystemContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitIncludeSystem(KickCParser.IncludeSystemContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java index 31c715e7d..81da039c0 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java @@ -55,6 +55,13 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitIncludeFile(KickCParser.IncludeFileContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitIncludeSystem(KickCParser.IncludeSystemContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java index c4672dfdc..082a8404f 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java @@ -73,6 +73,18 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitIncludeFile(KickCParser.IncludeFileContext ctx); + /** + * Enter a parse tree produced by the {@code includeSystem} + * labeled alternative in {@link KickCParser#importDecl}. + * @param ctx the parse tree + */ + void enterIncludeSystem(KickCParser.IncludeSystemContext ctx); + /** + * Exit a parse tree produced by the {@code includeSystem} + * labeled alternative in {@link KickCParser#importDecl}. + * @param ctx the parse tree + */ + void exitIncludeSystem(KickCParser.IncludeSystemContext ctx); /** * Enter a parse tree produced by {@link KickCParser#decl}. * @param ctx the parse tree diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java index e6f19dba4..bad0023ad 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java @@ -50,6 +50,13 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitIncludeFile(KickCParser.IncludeFileContext ctx); + /** + * Visit a parse tree produced by the {@code includeSystem} + * labeled alternative in {@link KickCParser#importDecl}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitIncludeSystem(KickCParser.IncludeSystemContext ctx); /** * Visit a parse tree produced by {@link KickCParser#decl}. * @param ctx the parse tree diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index 87e980065..2b390a84f 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -111,6 +111,16 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitor settingNodes = new ArrayList<>(ctx.NAME()); diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index 5de2caf7a..90c56d274 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -37,6 +37,16 @@ public class TestPrograms { public TestPrograms() { } + @Test + public void testIncludes2() throws IOException, URISyntaxException { + compileAndCompare("complex/includes/includes-2"); + } + + @Test + public void testIncludes1() throws IOException, URISyntaxException { + compileAndCompare("complex/includes/includes-1"); + } + @Test public void testCStyleDeclVarMultiple() throws IOException, URISyntaxException { compileAndCompare("cstyle-decl-var-multiple"); diff --git a/src/test/kc/complex/includes/includes-1.kc b/src/test/kc/complex/includes/includes-1.kc new file mode 100644 index 000000000..6629ab6ce --- /dev/null +++ b/src/test/kc/complex/includes/includes-1.kc @@ -0,0 +1,11 @@ +// Includes a system library - ignores the local file with the same name + +#include + +char* STR = "camelot!"; + +char* const SCREEN = 0x0400; + +void main() { + SCREEN [0] = (char) strlen(STR); +} \ No newline at end of file diff --git a/src/test/kc/complex/includes/includes-2.kc b/src/test/kc/complex/includes/includes-2.kc new file mode 100644 index 000000000..5b34771dc --- /dev/null +++ b/src/test/kc/complex/includes/includes-2.kc @@ -0,0 +1,11 @@ +// Includes a local file with the same name as a system library + +#include "string" + +char* STR = "camelot!"; + +char* const SCREEN = 0x0400; + +void main() { + SCREEN [0] = (char) strlen(STR); +} \ No newline at end of file diff --git a/src/test/kc/complex/includes/string.kc b/src/test/kc/complex/includes/string.kc new file mode 100644 index 000000000..3de2288dc --- /dev/null +++ b/src/test/kc/complex/includes/string.kc @@ -0,0 +1,5 @@ +// A local stdlib include file + +unsigned int strlen(char *str) { + return 'x'; +} \ No newline at end of file diff --git a/src/test/ref/complex/includes/includes-1.asm b/src/test/ref/complex/includes/includes-1.asm new file mode 100644 index 000000000..792eb2c1e --- /dev/null +++ b/src/test/ref/complex/includes/includes-1.asm @@ -0,0 +1,53 @@ +// Includes a system library - ignores the local file with the same name +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + .label SCREEN = $400 +main: { + .label __0 = 4 + // strlen(STR) + jsr strlen + // strlen(STR) + // (char) strlen(STR) + lda.z __0 + // SCREEN [0] = (char) strlen(STR) + sta SCREEN + // } + rts +} +// Computes the length of the string str up to but not including the terminating null character. +// strlen(byte* zp(2) str) +strlen: { + .label len = 4 + .label str = 2 + .label return = 4 + lda #<0 + sta.z len + sta.z len+1 + lda #STR + sta.z str+1 + __b1: + // while(*str) + ldy #0 + lda (str),y + cmp #0 + bne __b2 + // } + rts + __b2: + // len++; + inc.z len + bne !+ + inc.z len+1 + !: + // str++; + inc.z str + bne !+ + inc.z str+1 + !: + jmp __b1 +} + STR: .text "camelot!" + .byte 0 diff --git a/src/test/ref/complex/includes/includes-1.cfg b/src/test/ref/complex/includes/includes-1.cfg new file mode 100644 index 000000000..b7d75c900 --- /dev/null +++ b/src/test/ref/complex/includes/includes-1.cfg @@ -0,0 +1,41 @@ +@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] phi() + [5] call strlen + [6] (word) strlen::return#2 ← (word) strlen::len#2 + to:main::@1 +main::@1: scope:[main] from main + [7] (word~) main::$0 ← (word) strlen::return#2 + [8] (byte~) main::$1 ← (byte)(word~) main::$0 + [9] *((const nomodify byte*) SCREEN) ← (byte~) main::$1 + to:main::@return +main::@return: scope:[main] from main::@1 + [10] return + to:@return + +(word()) strlen((byte*) strlen::str) +strlen: scope:[strlen] from main + [11] phi() + to:strlen::@1 +strlen::@1: scope:[strlen] from strlen strlen::@2 + [12] (word) strlen::len#2 ← phi( strlen/(word) 0 strlen::@2/(word) strlen::len#1 ) + [12] (byte*) strlen::str#2 ← phi( strlen/(const byte*) STR strlen::@2/(byte*) strlen::str#0 ) + [13] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 + to:strlen::@return +strlen::@return: scope:[strlen] from strlen::@1 + [14] return + to:@return +strlen::@2: scope:[strlen] from strlen::@1 + [15] (word) strlen::len#1 ← ++ (word) strlen::len#2 + [16] (byte*) strlen::str#0 ← ++ (byte*) strlen::str#2 + to:strlen::@1 diff --git a/src/test/ref/complex/includes/includes-1.log b/src/test/ref/complex/includes/includes-1.log new file mode 100644 index 000000000..07ed1cf16 --- /dev/null +++ b/src/test/ref/complex/includes/includes-1.log @@ -0,0 +1,619 @@ +Warning! Adding boolean cast to non-boolean condition *((byte*) strcpy::src) +Warning! Adding boolean cast to non-boolean condition *((byte*) strlen::str) +Identified constant variable (byte*) STR +Culled Empty Block (label) @1 +Culled Empty Block (label) @2 +Culled Empty Block (label) @3 +Culled Empty Block (label) @4 +Culled Empty Block (label) strlen::@4 +Culled Empty Block (label) strlen::@5 +Culled Empty Block (label) strlen::@6 +Culled Empty Block (label) strlen::@7 +Culled Empty Block (label) @5 + +CONTROL FLOW GRAPH SSA +@begin: scope:[] from + to:@6 + +(word()) strlen((byte*) strlen::str) +strlen: scope:[strlen] from main + (byte*) strlen::str#4 ← phi( main/(byte*) strlen::str#1 ) + (word) strlen::len#0 ← (word) 0 + to:strlen::@1 +strlen::@1: scope:[strlen] from strlen strlen::@2 + (word) strlen::len#4 ← phi( strlen/(word) strlen::len#0 strlen::@2/(word) strlen::len#1 ) + (byte*) strlen::str#2 ← phi( strlen/(byte*) strlen::str#4 strlen::@2/(byte*) strlen::str#0 ) + (bool~) strlen::$0 ← (number) 0 != *((byte*) strlen::str#2) + if((bool~) strlen::$0) goto strlen::@2 + to:strlen::@3 +strlen::@2: scope:[strlen] from strlen::@1 + (byte*) strlen::str#3 ← phi( strlen::@1/(byte*) strlen::str#2 ) + (word) strlen::len#2 ← phi( strlen::@1/(word) strlen::len#4 ) + (word) strlen::len#1 ← ++ (word) strlen::len#2 + (byte*) strlen::str#0 ← ++ (byte*) strlen::str#3 + to:strlen::@1 +strlen::@3: scope:[strlen] from strlen::@1 + (word) strlen::len#3 ← phi( strlen::@1/(word) strlen::len#4 ) + (word) strlen::return#0 ← (word) strlen::len#3 + to:strlen::@return +strlen::@return: scope:[strlen] from strlen::@3 + (word) strlen::return#3 ← phi( strlen::@3/(word) strlen::return#0 ) + (word) strlen::return#1 ← (word) strlen::return#3 + return + to:@return + +(void()) main() +main: scope:[main] from @6 + (byte*) strlen::str#1 ← (const byte*) STR + call strlen + (word) strlen::return#2 ← (word) strlen::return#1 + to:main::@1 +main::@1: scope:[main] from main + (word) strlen::return#4 ← phi( main/(word) strlen::return#2 ) + (word~) main::$0 ← (word) strlen::return#4 + (byte~) main::$1 ← ((byte)) (word~) main::$0 + *((const nomodify byte*) SCREEN + (number) 0) ← (byte~) main::$1 + to:main::@return +main::@return: scope:[main] from main::@1 + return + to:@return +@6: scope:[] from @begin + call main + to:@7 +@7: scope:[] from @6 + to:@end +@end: scope:[] from @7 + +SYMBOL TABLE SSA +(label) @6 +(label) @7 +(label) @begin +(label) @end +(const nomodify byte*) SCREEN = (byte*)(number) $400 +(const byte*) STR = (byte*) "camelot!" +(void()) main() +(word~) main::$0 +(byte~) main::$1 +(label) main::@1 +(label) main::@return +(word()) strlen((byte*) strlen::str) +(bool~) strlen::$0 +(label) strlen::@1 +(label) strlen::@2 +(label) strlen::@3 +(label) strlen::@return +(word) strlen::len +(word) strlen::len#0 +(word) strlen::len#1 +(word) strlen::len#2 +(word) strlen::len#3 +(word) strlen::len#4 +(word) strlen::return +(word) strlen::return#0 +(word) strlen::return#1 +(word) strlen::return#2 +(word) strlen::return#3 +(word) strlen::return#4 +(byte*) strlen::str +(byte*) strlen::str#0 +(byte*) strlen::str#1 +(byte*) strlen::str#2 +(byte*) strlen::str#3 +(byte*) strlen::str#4 + +Adding number conversion cast (unumber) 0 in (bool~) strlen::$0 ← (number) 0 != *((byte*) strlen::str#2) +Adding number conversion cast (unumber) 0 in *((const nomodify byte*) SCREEN + (number) 0) ← (byte~) main::$1 +Successful SSA optimization PassNAddNumberTypeConversions +Inlining cast (byte~) main::$1 ← (byte)(word~) main::$0 +Successful SSA optimization Pass2InlineCast +Simplifying constant pointer cast (byte*) 1024 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 +Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Alias strlen::len#2 = strlen::len#4 strlen::len#3 strlen::return#0 strlen::return#3 strlen::return#1 +Alias strlen::str#2 = strlen::str#3 +Alias strlen::return#2 = strlen::return#4 +Successful SSA optimization Pass2AliasElimination +Identical Phi Values (byte*) strlen::str#4 (byte*) strlen::str#1 +Successful SSA optimization Pass2IdenticalPhiElimination +Simple Condition (bool~) strlen::$0 [4] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 +Successful SSA optimization Pass2ConditionalJumpSimplification +Constant (const word) strlen::len#0 = 0 +Constant (const byte*) strlen::str#1 = STR +Successful SSA optimization Pass2ConstantIdentification +Simplifying expression containing zero SCREEN in [13] *((const nomodify byte*) SCREEN + (byte) 0) ← (byte~) main::$1 +Successful SSA optimization PassNSimplifyExpressionWithZero +Inlining constant with var siblings (const word) strlen::len#0 +Inlining constant with var siblings (const byte*) strlen::str#1 +Constant inlined strlen::len#0 = (word) 0 +Constant inlined strlen::str#1 = (const byte*) STR +Successful SSA optimization Pass2ConstantInlining +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @6 +Adding NOP phi() at start of @7 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main +Adding NOP phi() at start of strlen +Adding NOP phi() at start of strlen::@3 +CALL GRAPH +Calls in [] to main:2 +Calls in [main] to strlen:6 + +Created 2 initial phi equivalence classes +Coalesced [19] strlen::str#5 ← strlen::str#0 +Coalesced [20] strlen::len#5 ← strlen::len#1 +Coalesced down to 2 phi equivalence classes +Culled Empty Block (label) @7 +Culled Empty Block (label) strlen::@3 +Renumbering block @6 to @1 +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main +Adding NOP phi() at start of strlen + +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] phi() + [5] call strlen + [6] (word) strlen::return#2 ← (word) strlen::len#2 + to:main::@1 +main::@1: scope:[main] from main + [7] (word~) main::$0 ← (word) strlen::return#2 + [8] (byte~) main::$1 ← (byte)(word~) main::$0 + [9] *((const nomodify byte*) SCREEN) ← (byte~) main::$1 + to:main::@return +main::@return: scope:[main] from main::@1 + [10] return + to:@return + +(word()) strlen((byte*) strlen::str) +strlen: scope:[strlen] from main + [11] phi() + to:strlen::@1 +strlen::@1: scope:[strlen] from strlen strlen::@2 + [12] (word) strlen::len#2 ← phi( strlen/(word) 0 strlen::@2/(word) strlen::len#1 ) + [12] (byte*) strlen::str#2 ← phi( strlen/(const byte*) STR strlen::@2/(byte*) strlen::str#0 ) + [13] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 + to:strlen::@return +strlen::@return: scope:[strlen] from strlen::@1 + [14] return + to:@return +strlen::@2: scope:[strlen] from strlen::@1 + [15] (word) strlen::len#1 ← ++ (word) strlen::len#2 + [16] (byte*) strlen::str#0 ← ++ (byte*) strlen::str#2 + to:strlen::@1 + + +VARIABLE REGISTER WEIGHTS +(void()) main() +(word~) main::$0 11.0 +(byte~) main::$1 22.0 +(word()) strlen((byte*) strlen::str) +(word) strlen::len +(word) strlen::len#1 1001.0 +(word) strlen::len#2 503.25 +(word) strlen::return +(word) strlen::return#2 22.0 +(byte*) strlen::str +(byte*) strlen::str#0 2002.0 +(byte*) strlen::str#2 1001.0 + +Initial phi equivalence classes +[ strlen::str#2 strlen::str#0 ] +[ strlen::len#2 strlen::len#1 ] +Added variable strlen::return#2 to live range equivalence class [ strlen::return#2 ] +Added variable main::$0 to live range equivalence class [ main::$0 ] +Added variable main::$1 to live range equivalence class [ main::$1 ] +Complete equivalence classes +[ strlen::str#2 strlen::str#0 ] +[ strlen::len#2 strlen::len#1 ] +[ strlen::return#2 ] +[ main::$0 ] +[ main::$1 ] +Allocated zp[2]:2 [ strlen::str#2 strlen::str#0 ] +Allocated zp[2]:4 [ strlen::len#2 strlen::len#1 ] +Allocated zp[2]:6 [ strlen::return#2 ] +Allocated zp[2]:8 [ main::$0 ] +Allocated zp[1]:10 [ main::$1 ] + +INITIAL ASM +Target platform is c64basic / MOS6502X + // File Comments +// Includes a system library - ignores the local file with the same name + // Upstart +.pc = $801 "Basic" +:BasicUpstart(__bbegin) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // @begin +__bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +__b1_from___bbegin: + jmp __b1 + // @1 +__b1: + // [2] call main + // [4] phi from @1 to main [phi:@1->main] +main_from___b1: + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +__bend_from___b1: + jmp __bend + // @end +__bend: + // main +main: { + .label __0 = 8 + .label __1 = $a + // [5] call strlen + // [11] phi from main to strlen [phi:main->strlen] + strlen_from_main: + jsr strlen + // [6] (word) strlen::return#2 ← (word) strlen::len#2 -- vwuz1=vwuz2 + lda.z strlen.len + sta.z strlen.return + lda.z strlen.len+1 + sta.z strlen.return+1 + jmp __b1 + // main::@1 + __b1: + // [7] (word~) main::$0 ← (word) strlen::return#2 -- vwuz1=vwuz2 + lda.z strlen.return + sta.z __0 + lda.z strlen.return+1 + sta.z __0+1 + // [8] (byte~) main::$1 ← (byte)(word~) main::$0 -- vbuz1=_byte_vwuz2 + lda.z __0 + sta.z __1 + // [9] *((const nomodify byte*) SCREEN) ← (byte~) main::$1 -- _deref_pbuc1=vbuz1 + lda.z __1 + sta SCREEN + jmp __breturn + // main::@return + __breturn: + // [10] return + rts +} + // strlen +// Computes the length of the string str up to but not including the terminating null character. +// strlen(byte* zp(2) str) +strlen: { + .label len = 4 + .label str = 2 + .label return = 6 + // [12] phi from strlen to strlen::@1 [phi:strlen->strlen::@1] + __b1_from_strlen: + // [12] phi (word) strlen::len#2 = (word) 0 [phi:strlen->strlen::@1#0] -- vwuz1=vwuc1 + lda #<0 + sta.z len + lda #>0 + sta.z len+1 + // [12] phi (byte*) strlen::str#2 = (const byte*) STR [phi:strlen->strlen::@1#1] -- pbuz1=pbuc1 + lda #STR + sta.z str+1 + jmp __b1 + // strlen::@1 + __b1: + // [13] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 -- vbuc1_neq__deref_pbuz1_then_la1 + ldy #0 + lda (str),y + cmp #0 + bne __b2 + jmp __breturn + // strlen::@return + __breturn: + // [14] return + rts + // strlen::@2 + __b2: + // [15] (word) strlen::len#1 ← ++ (word) strlen::len#2 -- vwuz1=_inc_vwuz1 + inc.z len + bne !+ + inc.z len+1 + !: + // [16] (byte*) strlen::str#0 ← ++ (byte*) strlen::str#2 -- pbuz1=_inc_pbuz1 + inc.z str + bne !+ + inc.z str+1 + !: + // [12] phi from strlen::@2 to strlen::@1 [phi:strlen::@2->strlen::@1] + __b1_from___b2: + // [12] phi (word) strlen::len#2 = (word) strlen::len#1 [phi:strlen::@2->strlen::@1#0] -- register_copy + // [12] phi (byte*) strlen::str#2 = (byte*) strlen::str#0 [phi:strlen::@2->strlen::@1#1] -- register_copy + jmp __b1 +} + // File Data + STR: .text "camelot!" + .byte 0 + +REGISTER UPLIFT POTENTIAL REGISTERS +Statement [6] (word) strlen::return#2 ← (word) strlen::len#2 [ strlen::return#2 ] ( main:2 [ strlen::return#2 ] { { strlen::return#2 = strlen::len#2 } } ) always clobbers reg byte a +Statement [7] (word~) main::$0 ← (word) strlen::return#2 [ main::$0 ] ( main:2 [ main::$0 ] { } ) always clobbers reg byte a +Statement [8] (byte~) main::$1 ← (byte)(word~) main::$0 [ main::$1 ] ( main:2 [ main::$1 ] { } ) always clobbers reg byte a +Statement [13] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 [ strlen::len#2 strlen::str#2 ] ( main:2::strlen:5 [ strlen::len#2 strlen::str#2 ] { { strlen::return#2 = strlen::len#2 } } ) always clobbers reg byte a reg byte y +Potential registers zp[2]:2 [ strlen::str#2 strlen::str#0 ] : zp[2]:2 , +Potential registers zp[2]:4 [ strlen::len#2 strlen::len#1 ] : zp[2]:4 , +Potential registers zp[2]:6 [ strlen::return#2 ] : zp[2]:6 , +Potential registers zp[2]:8 [ main::$0 ] : zp[2]:8 , +Potential registers zp[1]:10 [ main::$1 ] : zp[1]:10 , reg byte a , reg byte x , reg byte y , + +REGISTER UPLIFT SCOPES +Uplift Scope [strlen] 3,003: zp[2]:2 [ strlen::str#2 strlen::str#0 ] 1,504.25: zp[2]:4 [ strlen::len#2 strlen::len#1 ] 22: zp[2]:6 [ strlen::return#2 ] +Uplift Scope [main] 22: zp[1]:10 [ main::$1 ] 11: zp[2]:8 [ main::$0 ] +Uplift Scope [] + +Uplifting [strlen] best 733 combination zp[2]:2 [ strlen::str#2 strlen::str#0 ] zp[2]:4 [ strlen::len#2 strlen::len#1 ] zp[2]:6 [ strlen::return#2 ] +Uplifting [main] best 727 combination reg byte a [ main::$1 ] zp[2]:8 [ main::$0 ] +Uplifting [] best 727 combination +Coalescing zero page register [ zp[2]:4 [ strlen::len#2 strlen::len#1 ] ] with [ zp[2]:6 [ strlen::return#2 ] ] - score: 1 +Coalescing zero page register [ zp[2]:4 [ strlen::len#2 strlen::len#1 strlen::return#2 ] ] with [ zp[2]:8 [ main::$0 ] ] - score: 1 + +ASSEMBLER BEFORE OPTIMIZATION + // File Comments +// Includes a system library - ignores the local file with the same name + // Upstart +.pc = $801 "Basic" +:BasicUpstart(__bbegin) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // @begin +__bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +__b1_from___bbegin: + jmp __b1 + // @1 +__b1: + // [2] call main + // [4] phi from @1 to main [phi:@1->main] +main_from___b1: + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +__bend_from___b1: + jmp __bend + // @end +__bend: + // main +main: { + .label __0 = 4 + // [5] call strlen + // [11] phi from main to strlen [phi:main->strlen] + strlen_from_main: + jsr strlen + // [6] (word) strlen::return#2 ← (word) strlen::len#2 + jmp __b1 + // main::@1 + __b1: + // [7] (word~) main::$0 ← (word) strlen::return#2 + // [8] (byte~) main::$1 ← (byte)(word~) main::$0 -- vbuaa=_byte_vwuz1 + lda.z __0 + // [9] *((const nomodify byte*) SCREEN) ← (byte~) main::$1 -- _deref_pbuc1=vbuaa + sta SCREEN + jmp __breturn + // main::@return + __breturn: + // [10] return + rts +} + // strlen +// Computes the length of the string str up to but not including the terminating null character. +// strlen(byte* zp(2) str) +strlen: { + .label len = 4 + .label str = 2 + .label return = 4 + // [12] phi from strlen to strlen::@1 [phi:strlen->strlen::@1] + __b1_from_strlen: + // [12] phi (word) strlen::len#2 = (word) 0 [phi:strlen->strlen::@1#0] -- vwuz1=vwuc1 + lda #<0 + sta.z len + lda #>0 + sta.z len+1 + // [12] phi (byte*) strlen::str#2 = (const byte*) STR [phi:strlen->strlen::@1#1] -- pbuz1=pbuc1 + lda #STR + sta.z str+1 + jmp __b1 + // strlen::@1 + __b1: + // [13] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 -- vbuc1_neq__deref_pbuz1_then_la1 + ldy #0 + lda (str),y + cmp #0 + bne __b2 + jmp __breturn + // strlen::@return + __breturn: + // [14] return + rts + // strlen::@2 + __b2: + // [15] (word) strlen::len#1 ← ++ (word) strlen::len#2 -- vwuz1=_inc_vwuz1 + inc.z len + bne !+ + inc.z len+1 + !: + // [16] (byte*) strlen::str#0 ← ++ (byte*) strlen::str#2 -- pbuz1=_inc_pbuz1 + inc.z str + bne !+ + inc.z str+1 + !: + // [12] phi from strlen::@2 to strlen::@1 [phi:strlen::@2->strlen::@1] + __b1_from___b2: + // [12] phi (word) strlen::len#2 = (word) strlen::len#1 [phi:strlen::@2->strlen::@1#0] -- register_copy + // [12] phi (byte*) strlen::str#2 = (byte*) strlen::str#0 [phi:strlen::@2->strlen::@1#1] -- register_copy + jmp __b1 +} + // File Data + STR: .text "camelot!" + .byte 0 + +ASSEMBLER OPTIMIZATIONS +Removing instruction jmp __b1 +Removing instruction jmp __bend +Removing instruction jmp __b1 +Removing instruction jmp __breturn +Removing instruction jmp __b1 +Removing instruction jmp __breturn +Succesful ASM optimization Pass5NextJumpElimination +Removing instruction lda #>0 +Succesful ASM optimization Pass5UnnecesaryLoadElimination +Removing instruction __b1_from___bbegin: +Removing instruction __b1: +Removing instruction main_from___b1: +Removing instruction __bend_from___b1: +Succesful ASM optimization Pass5RedundantLabelElimination +Removing instruction __bend: +Removing instruction strlen_from_main: +Removing instruction __b1: +Removing instruction __breturn: +Removing instruction __b1_from_strlen: +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 nomodify byte*) SCREEN = (byte*) 1024 +(const byte*) STR = (byte*) "camelot!" +(void()) main() +(word~) main::$0 zp[2]:4 11.0 +(byte~) main::$1 reg byte a 22.0 +(label) main::@1 +(label) main::@return +(word()) strlen((byte*) strlen::str) +(label) strlen::@1 +(label) strlen::@2 +(label) strlen::@return +(word) strlen::len +(word) strlen::len#1 len zp[2]:4 1001.0 +(word) strlen::len#2 len zp[2]:4 503.25 +(word) strlen::return +(word) strlen::return#2 return zp[2]:4 22.0 +(byte*) strlen::str +(byte*) strlen::str#0 str zp[2]:2 2002.0 +(byte*) strlen::str#2 str zp[2]:2 1001.0 + +zp[2]:2 [ strlen::str#2 strlen::str#0 ] +zp[2]:4 [ strlen::len#2 strlen::len#1 strlen::return#2 main::$0 ] +reg byte a [ main::$1 ] + + +FINAL ASSEMBLER +Score: 605 + + // File Comments +// Includes a system library - ignores the local file with the same name + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // @begin + // [1] phi from @begin to @1 [phi:@begin->@1] + // @1 + // [2] call main + // [4] phi from @1 to main [phi:@1->main] + // [3] phi from @1 to @end [phi:@1->@end] + // @end + // main +main: { + .label __0 = 4 + // strlen(STR) + // [5] call strlen + // [11] phi from main to strlen [phi:main->strlen] + jsr strlen + // strlen(STR) + // [6] (word) strlen::return#2 ← (word) strlen::len#2 + // main::@1 + // [7] (word~) main::$0 ← (word) strlen::return#2 + // (char) strlen(STR) + // [8] (byte~) main::$1 ← (byte)(word~) main::$0 -- vbuaa=_byte_vwuz1 + lda.z __0 + // SCREEN [0] = (char) strlen(STR) + // [9] *((const nomodify byte*) SCREEN) ← (byte~) main::$1 -- _deref_pbuc1=vbuaa + sta SCREEN + // main::@return + // } + // [10] return + rts +} + // strlen +// Computes the length of the string str up to but not including the terminating null character. +// strlen(byte* zp(2) str) +strlen: { + .label len = 4 + .label str = 2 + .label return = 4 + // [12] phi from strlen to strlen::@1 [phi:strlen->strlen::@1] + // [12] phi (word) strlen::len#2 = (word) 0 [phi:strlen->strlen::@1#0] -- vwuz1=vwuc1 + lda #<0 + sta.z len + sta.z len+1 + // [12] phi (byte*) strlen::str#2 = (const byte*) STR [phi:strlen->strlen::@1#1] -- pbuz1=pbuc1 + lda #STR + sta.z str+1 + // strlen::@1 + __b1: + // while(*str) + // [13] if((byte) 0!=*((byte*) strlen::str#2)) goto strlen::@2 -- vbuc1_neq__deref_pbuz1_then_la1 + ldy #0 + lda (str),y + cmp #0 + bne __b2 + // strlen::@return + // } + // [14] return + rts + // strlen::@2 + __b2: + // len++; + // [15] (word) strlen::len#1 ← ++ (word) strlen::len#2 -- vwuz1=_inc_vwuz1 + inc.z len + bne !+ + inc.z len+1 + !: + // str++; + // [16] (byte*) strlen::str#0 ← ++ (byte*) strlen::str#2 -- pbuz1=_inc_pbuz1 + inc.z str + bne !+ + inc.z str+1 + !: + // [12] phi from strlen::@2 to strlen::@1 [phi:strlen::@2->strlen::@1] + // [12] phi (word) strlen::len#2 = (word) strlen::len#1 [phi:strlen::@2->strlen::@1#0] -- register_copy + // [12] phi (byte*) strlen::str#2 = (byte*) strlen::str#0 [phi:strlen::@2->strlen::@1#1] -- register_copy + jmp __b1 +} + // File Data + STR: .text "camelot!" + .byte 0 + diff --git a/src/test/ref/complex/includes/includes-1.sym b/src/test/ref/complex/includes/includes-1.sym new file mode 100644 index 000000000..83e857ed0 --- /dev/null +++ b/src/test/ref/complex/includes/includes-1.sym @@ -0,0 +1,26 @@ +(label) @1 +(label) @begin +(label) @end +(const nomodify byte*) SCREEN = (byte*) 1024 +(const byte*) STR = (byte*) "camelot!" +(void()) main() +(word~) main::$0 zp[2]:4 11.0 +(byte~) main::$1 reg byte a 22.0 +(label) main::@1 +(label) main::@return +(word()) strlen((byte*) strlen::str) +(label) strlen::@1 +(label) strlen::@2 +(label) strlen::@return +(word) strlen::len +(word) strlen::len#1 len zp[2]:4 1001.0 +(word) strlen::len#2 len zp[2]:4 503.25 +(word) strlen::return +(word) strlen::return#2 return zp[2]:4 22.0 +(byte*) strlen::str +(byte*) strlen::str#0 str zp[2]:2 2002.0 +(byte*) strlen::str#2 str zp[2]:2 1001.0 + +zp[2]:2 [ strlen::str#2 strlen::str#0 ] +zp[2]:4 [ strlen::len#2 strlen::len#1 strlen::return#2 main::$0 ] +reg byte a [ main::$1 ] diff --git a/src/test/ref/complex/includes/includes-2.asm b/src/test/ref/complex/includes/includes-2.asm new file mode 100644 index 000000000..d77198436 --- /dev/null +++ b/src/test/ref/complex/includes/includes-2.asm @@ -0,0 +1,19 @@ +// Includes a local file with the same name as a system library +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + .label SCREEN = $400 +main: { + // strlen(STR) + jsr strlen + // SCREEN [0] = (char) strlen(STR) + lda #strlen.return + sta SCREEN + // } + rts +} +// A local stdlib include file +strlen: { + .label return = 'x' + rts +} diff --git a/src/test/ref/complex/includes/includes-2.cfg b/src/test/ref/complex/includes/includes-2.cfg new file mode 100644 index 000000000..edcc0303c --- /dev/null +++ b/src/test/ref/complex/includes/includes-2.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] phi() + [5] call strlen + to:main::@1 +main::@1: scope:[main] from main + [6] *((const nomodify byte*) SCREEN) ← (byte)(const word) strlen::return#0 + to:main::@return +main::@return: scope:[main] from main::@1 + [7] return + to:@return + +(word()) strlen((byte*) strlen::str) +strlen: scope:[strlen] from main + [8] phi() + to:strlen::@return +strlen::@return: scope:[strlen] from strlen + [9] return + to:@return diff --git a/src/test/ref/complex/includes/includes-2.log b/src/test/ref/complex/includes/includes-2.log new file mode 100644 index 000000000..f6f30c9f9 --- /dev/null +++ b/src/test/ref/complex/includes/includes-2.log @@ -0,0 +1,363 @@ +Identified constant variable (byte*) STR +Culled Empty Block (label) strlen::@1 +Culled Empty Block (label) @1 + +CONTROL FLOW GRAPH SSA +@begin: scope:[] from + to:@2 + +(word()) strlen((byte*) strlen::str) +strlen: scope:[strlen] from main + (word) strlen::return#0 ← (byte) 'x' + to:strlen::@return +strlen::@return: scope:[strlen] from strlen + (word) strlen::return#3 ← phi( strlen/(word) strlen::return#0 ) + (word) strlen::return#1 ← (word) strlen::return#3 + return + to:@return + +(void()) main() +main: scope:[main] from @2 + (byte*) strlen::str#0 ← (const byte*) STR + call strlen + (word) strlen::return#2 ← (word) strlen::return#1 + to:main::@1 +main::@1: scope:[main] from main + (word) strlen::return#4 ← phi( main/(word) strlen::return#2 ) + (word~) main::$0 ← (word) strlen::return#4 + (byte~) main::$1 ← ((byte)) (word~) main::$0 + *((const nomodify byte*) SCREEN + (number) 0) ← (byte~) main::$1 + to:main::@return +main::@return: scope:[main] from main::@1 + return + to:@return +@2: scope:[] from @begin + call main + to:@3 +@3: scope:[] from @2 + to:@end +@end: scope:[] from @3 + +SYMBOL TABLE SSA +(label) @2 +(label) @3 +(label) @begin +(label) @end +(const nomodify byte*) SCREEN = (byte*)(number) $400 +(const byte*) STR = (byte*) "camelot!" +(void()) main() +(word~) main::$0 +(byte~) main::$1 +(label) main::@1 +(label) main::@return +(word()) strlen((byte*) strlen::str) +(label) strlen::@return +(word) strlen::return +(word) strlen::return#0 +(word) strlen::return#1 +(word) strlen::return#2 +(word) strlen::return#3 +(word) strlen::return#4 +(byte*) strlen::str +(byte*) strlen::str#0 + +Adding number conversion cast (unumber) 0 in *((const nomodify byte*) SCREEN + (number) 0) ← (byte~) main::$1 +Successful SSA optimization PassNAddNumberTypeConversions +Inlining cast (byte~) main::$1 ← (byte)(word~) main::$0 +Successful SSA optimization Pass2InlineCast +Simplifying constant pointer cast (byte*) 1024 +Simplifying constant integer cast 0 +Successful SSA optimization PassNCastSimplification +Finalized unsigned number type (byte) 0 +Successful SSA optimization PassNFinalizeNumberTypeConversions +Alias strlen::return#0 = strlen::return#3 strlen::return#1 +Alias strlen::return#2 = strlen::return#4 +Successful SSA optimization Pass2AliasElimination +Constant (const word) strlen::return#0 = 'x' +Constant (const byte*) strlen::str#0 = STR +Successful SSA optimization Pass2ConstantIdentification +Constant (const word) strlen::return#2 = strlen::return#0 +Successful SSA optimization Pass2ConstantIdentification +Constant (const word) main::$0 = strlen::return#2 +Successful SSA optimization Pass2ConstantIdentification +Constant (const byte) main::$1 = (byte)main::$0 +Successful SSA optimization Pass2ConstantIdentification +Simplifying expression containing zero SCREEN in [7] *((const nomodify byte*) SCREEN + (byte) 0) ← (const byte) main::$1 +Successful SSA optimization PassNSimplifyExpressionWithZero +Eliminating unused constant (const byte*) strlen::str#0 +Successful SSA optimization PassNEliminateUnusedVars +Eliminating unused constant (const byte*) STR +Successful SSA optimization PassNEliminateUnusedVars +Inlining constant with different constant siblings (const word) strlen::return#2 +Constant inlined main::$1 = (byte)(const word) strlen::return#0 +Constant inlined strlen::return#2 = (const word) strlen::return#0 +Constant inlined main::$0 = (const word) strlen::return#0 +Successful SSA optimization Pass2ConstantInlining +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @2 +Adding NOP phi() at start of @3 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main +Adding NOP phi() at start of strlen +CALL GRAPH +Calls in [] to main:2 +Calls in [main] to strlen:6 + +Created 0 initial phi equivalence classes +Coalesced down to 0 phi equivalence classes +Culled Empty Block (label) @3 +Renumbering block @2 to @1 +Adding NOP phi() at start of @begin +Adding NOP phi() at start of @1 +Adding NOP phi() at start of @end +Adding NOP phi() at start of main +Adding NOP phi() at start of strlen + +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] phi() + [5] call strlen + to:main::@1 +main::@1: scope:[main] from main + [6] *((const nomodify byte*) SCREEN) ← (byte)(const word) strlen::return#0 + to:main::@return +main::@return: scope:[main] from main::@1 + [7] return + to:@return + +(word()) strlen((byte*) strlen::str) +strlen: scope:[strlen] from main + [8] phi() + to:strlen::@return +strlen::@return: scope:[strlen] from strlen + [9] return + to:@return + + +VARIABLE REGISTER WEIGHTS +(void()) main() +(word()) strlen((byte*) strlen::str) +(word) strlen::return +(byte*) strlen::str + +Initial phi equivalence classes +Complete equivalence classes + +INITIAL ASM +Target platform is c64basic / MOS6502X + // File Comments +// Includes a local file with the same name as a system library + // Upstart +.pc = $801 "Basic" +:BasicUpstart(__bbegin) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // @begin +__bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +__b1_from___bbegin: + jmp __b1 + // @1 +__b1: + // [2] call main + // [4] phi from @1 to main [phi:@1->main] +main_from___b1: + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +__bend_from___b1: + jmp __bend + // @end +__bend: + // main +main: { + // [5] call strlen + // [8] phi from main to strlen [phi:main->strlen] + strlen_from_main: + jsr strlen + jmp __b1 + // main::@1 + __b1: + // [6] *((const nomodify byte*) SCREEN) ← (byte)(const word) strlen::return#0 -- _deref_pbuc1=vbuc2 + lda #strlen.return + sta SCREEN + jmp __breturn + // main::@return + __breturn: + // [7] return + rts +} + // strlen +// A local stdlib include file +strlen: { + .label return = 'x' + jmp __breturn + // strlen::@return + __breturn: + // [9] return + rts +} + // File Data + +REGISTER UPLIFT POTENTIAL REGISTERS +Statement [6] *((const nomodify byte*) SCREEN) ← (byte)(const word) strlen::return#0 [ ] ( main:2 [ ] { } ) always clobbers reg byte a + +REGISTER UPLIFT SCOPES +Uplift Scope [strlen] +Uplift Scope [main] +Uplift Scope [] + +Uplifting [strlen] best 72 combination +Uplifting [main] best 72 combination +Uplifting [] best 72 combination + +ASSEMBLER BEFORE OPTIMIZATION + // File Comments +// Includes a local file with the same name as a system library + // Upstart +.pc = $801 "Basic" +:BasicUpstart(__bbegin) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // @begin +__bbegin: + // [1] phi from @begin to @1 [phi:@begin->@1] +__b1_from___bbegin: + jmp __b1 + // @1 +__b1: + // [2] call main + // [4] phi from @1 to main [phi:@1->main] +main_from___b1: + jsr main + // [3] phi from @1 to @end [phi:@1->@end] +__bend_from___b1: + jmp __bend + // @end +__bend: + // main +main: { + // [5] call strlen + // [8] phi from main to strlen [phi:main->strlen] + strlen_from_main: + jsr strlen + jmp __b1 + // main::@1 + __b1: + // [6] *((const nomodify byte*) SCREEN) ← (byte)(const word) strlen::return#0 -- _deref_pbuc1=vbuc2 + lda #strlen.return + sta SCREEN + jmp __breturn + // main::@return + __breturn: + // [7] return + rts +} + // strlen +// A local stdlib include file +strlen: { + .label return = 'x' + jmp __breturn + // strlen::@return + __breturn: + // [9] return + rts +} + // File Data + +ASSEMBLER OPTIMIZATIONS +Removing instruction jmp __b1 +Removing instruction jmp __bend +Removing instruction jmp __b1 +Removing instruction jmp __breturn +Removing instruction jmp __breturn +Succesful ASM optimization Pass5NextJumpElimination +Removing instruction __b1_from___bbegin: +Removing instruction __b1: +Removing instruction main_from___b1: +Removing instruction __bend_from___b1: +Succesful ASM optimization Pass5RedundantLabelElimination +Removing instruction __bend: +Removing instruction strlen_from_main: +Removing instruction __b1: +Removing instruction __breturn: +Removing instruction __breturn: +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 nomodify byte*) SCREEN = (byte*) 1024 +(void()) main() +(label) main::@1 +(label) main::@return +(word()) strlen((byte*) strlen::str) +(label) strlen::@return +(word) strlen::return +(const word) strlen::return#0 return = (byte) 'x' +(byte*) strlen::str + + + +FINAL ASSEMBLER +Score: 24 + + // File Comments +// Includes a local file with the same name as a system library + // Upstart +.pc = $801 "Basic" +:BasicUpstart(main) +.pc = $80d "Program" + // Global Constants & labels + .label SCREEN = $400 + // @begin + // [1] phi from @begin to @1 [phi:@begin->@1] + // @1 + // [2] call main + // [4] phi from @1 to main [phi:@1->main] + // [3] phi from @1 to @end [phi:@1->@end] + // @end + // main +main: { + // strlen(STR) + // [5] call strlen + // [8] phi from main to strlen [phi:main->strlen] + jsr strlen + // main::@1 + // SCREEN [0] = (char) strlen(STR) + // [6] *((const nomodify byte*) SCREEN) ← (byte)(const word) strlen::return#0 -- _deref_pbuc1=vbuc2 + lda #strlen.return + sta SCREEN + // main::@return + // } + // [7] return + rts +} + // strlen +// A local stdlib include file +strlen: { + .label return = 'x' + // strlen::@return + // [9] return + rts +} + // File Data + diff --git a/src/test/ref/complex/includes/includes-2.sym b/src/test/ref/complex/includes/includes-2.sym new file mode 100644 index 000000000..4660b383b --- /dev/null +++ b/src/test/ref/complex/includes/includes-2.sym @@ -0,0 +1,13 @@ +(label) @1 +(label) @begin +(label) @end +(const nomodify byte*) SCREEN = (byte*) 1024 +(void()) main() +(label) main::@1 +(label) main::@return +(word()) strlen((byte*) strlen::str) +(label) strlen::@return +(word) strlen::return +(const word) strlen::return#0 return = (byte) 'x' +(byte*) strlen::str +