diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-06-04 10:44:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 10:44:23 +0200 |
commit | 663b99a971f8dd7f7776fe3647f24ce728b3d434 (patch) | |
tree | 31712f708e78597a1e2695d2eb015c9c6ac6a73d | |
parent | 8aa1a2ee7d6fd2af2cada95d1a14a3b881aad5a7 (diff) |
Add Visitor (#2)
-rw-r--r-- | src/Python3Lexer.java | 1039 | ||||
-rw-r--r-- | src/Python3Parser.java | 1143 | ||||
-rw-r--r-- | src/Python3ParserBaseListener.java | 64 | ||||
-rw-r--r-- | src/Python3ParserBaseVisitor.java | 365 | ||||
-rw-r--r-- | src/Python3ParserListener.java | 108 | ||||
-rw-r--r-- | src/Python3ParserVisitor.java | 228 |
6 files changed, 1663 insertions, 1284 deletions
diff --git a/src/Python3Lexer.java b/src/Python3Lexer.java index c70bece..4773386 100644 --- a/src/Python3Lexer.java +++ b/src/Python3Lexer.java @@ -1,20 +1,15 @@ // Generated from src/Python3Lexer.g4 by ANTLR 4.13.1 -import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.Token; +import org.antlr.v4.runtime.TokenStream; +import org.antlr.v4.runtime.*; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; import org.antlr.v4.runtime.misc.*; -@SuppressWarnings({ - "all", - "warnings", - "unchecked", - "unused", - "cast", - "CheckReturnValue", - "this-escape" -}) +@SuppressWarnings({ "all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape" }) public class Python3Lexer extends Python3LexerBase { static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); @@ -22,172 +17,42 @@ public class Python3Lexer extends Python3LexerBase { protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); - public static final int INDENT = 1, - DEDENT = 2, - STRING = 3, - NUMBER = 4, - AND = 5, - AS = 6, - DEF = 7, - ELIF = 8, + public static final int INDENT = 1, DEDENT = 2, STRING = 3, NUMBER = 4, AND = 5, AS = 6, DEF = 7, ELIF = 8, ELSE = 9, - FALSE = 10, - FOR = 11, - FROM = 12, - IF = 13, - IMPORT = 14, - IN = 15, - IS = 16, - NONE = 17, - NOT = 18, - OR = 19, - RETURN = 20, - TRUE = 21, - UNDERSCORE = 22, - WHILE = 23, - NEWLINE = 24, - NAME = 25, - DECIMAL_INTEGER = 26, - FLOAT_NUMBER = 27, - DOT = 28, - ELLIPSIS = 29, - STAR = 30, - OPEN_PAREN = 31, - CLOSE_PAREN = 32, - COMMA = 33, - COLON = 34, - SEMI_COLON = 35, - POWER = 36, - ASSIGN = 37, - OPEN_BRACK = 38, - CLOSE_BRACK = 39, - OR_OP = 40, - XOR = 41, - AND_OP = 42, - LEFT_SHIFT = 43, - RIGHT_SHIFT = 44, - ADD = 45, - MINUS = 46, - DIV = 47, - MOD = 48, - IDIV = 49, - NOT_OP = 50, - OPEN_BRACE = 51, - CLOSE_BRACE = 52, - LESS_THAN = 53, - GREATER_THAN = 54, - EQUALS = 55, - GT_EQ = 56, - LT_EQ = 57, - NOT_EQ_1 = 58, - NOT_EQ_2 = 59, - AT = 60, - ARROW = 61, - ADD_ASSIGN = 62, - SUB_ASSIGN = 63, - MULT_ASSIGN = 64, - AT_ASSIGN = 65, - DIV_ASSIGN = 66, - MOD_ASSIGN = 67, - AND_ASSIGN = 68, - OR_ASSIGN = 69, - XOR_ASSIGN = 70, - LEFT_SHIFT_ASSIGN = 71, - RIGHT_SHIFT_ASSIGN = 72, - POWER_ASSIGN = 73, - IDIV_ASSIGN = 74, - SKIP_ = 75, - UNKNOWN_CHAR = 76; - public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; - - public static String[] modeNames = { "DEFAULT_MODE" }; + FALSE = 10, FOR = 11, FROM = 12, IF = 13, IMPORT = 14, IN = 15, IS = 16, NONE = 17, NOT = 18, + OR = 19, RETURN = 20, TRUE = 21, UNDERSCORE = 22, WHILE = 23, NEWLINE = 24, NAME = 25, + DECIMAL_INTEGER = 26, FLOAT_NUMBER = 27, DOT = 28, ELLIPSIS = 29, STAR = 30, OPEN_PAREN = 31, + CLOSE_PAREN = 32, COMMA = 33, COLON = 34, SEMI_COLON = 35, POWER = 36, ASSIGN = 37, + OPEN_BRACK = 38, CLOSE_BRACK = 39, OR_OP = 40, XOR = 41, AND_OP = 42, LEFT_SHIFT = 43, + RIGHT_SHIFT = 44, ADD = 45, MINUS = 46, DIV = 47, MOD = 48, IDIV = 49, NOT_OP = 50, + OPEN_BRACE = 51, CLOSE_BRACE = 52, LESS_THAN = 53, GREATER_THAN = 54, EQUALS = 55, + GT_EQ = 56, LT_EQ = 57, NOT_EQ_1 = 58, NOT_EQ_2 = 59, AT = 60, ARROW = 61, ADD_ASSIGN = 62, + SUB_ASSIGN = 63, MULT_ASSIGN = 64, AT_ASSIGN = 65, DIV_ASSIGN = 66, MOD_ASSIGN = 67, + AND_ASSIGN = 68, OR_ASSIGN = 69, XOR_ASSIGN = 70, LEFT_SHIFT_ASSIGN = 71, RIGHT_SHIFT_ASSIGN = 72, + POWER_ASSIGN = 73, IDIV_ASSIGN = 74, SKIP_ = 75, UNKNOWN_CHAR = 76; + public static String[] channelNames = { + "DEFAULT_TOKEN_CHANNEL", "HIDDEN" + }; + + public static String[] modeNames = { + "DEFAULT_MODE" + }; private static String[] makeRuleNames() { return new String[] { - "STRING", - "NUMBER", - "AND", - "AS", - "DEF", - "ELIF", - "ELSE", - "FALSE", - "FOR", - "FROM", - "IF", - "IMPORT", - "IN", - "IS", - "NONE", - "NOT", - "OR", - "RETURN", - "TRUE", - "UNDERSCORE", - "WHILE", - "NEWLINE", - "NAME", - "DECIMAL_INTEGER", - "FLOAT_NUMBER", - "DOT", - "ELLIPSIS", - "STAR", - "OPEN_PAREN", - "CLOSE_PAREN", - "COMMA", - "COLON", - "SEMI_COLON", - "POWER", - "ASSIGN", - "OPEN_BRACK", - "CLOSE_BRACK", - "OR_OP", - "XOR", - "AND_OP", - "LEFT_SHIFT", - "RIGHT_SHIFT", - "ADD", - "MINUS", - "DIV", - "MOD", - "IDIV", - "NOT_OP", - "OPEN_BRACE", - "CLOSE_BRACE", - "LESS_THAN", - "GREATER_THAN", - "EQUALS", - "GT_EQ", - "LT_EQ", - "NOT_EQ_1", - "NOT_EQ_2", - "AT", - "ARROW", - "ADD_ASSIGN", - "SUB_ASSIGN", - "MULT_ASSIGN", - "AT_ASSIGN", - "DIV_ASSIGN", - "MOD_ASSIGN", - "AND_ASSIGN", - "OR_ASSIGN", - "XOR_ASSIGN", - "LEFT_SHIFT_ASSIGN", - "RIGHT_SHIFT_ASSIGN", - "POWER_ASSIGN", - "IDIV_ASSIGN", - "SKIP_", - "UNKNOWN_CHAR", - "STRING_ESCAPE_SEQ", - "NON_ZERO_DIGIT", - "DIGIT", - "POINT_FLOAT", - "EXPONENT_FLOAT", - "INT_PART", - "EXPONENT", - "SPACES", - "COMMENT", - "LINE_JOINING" + "STRING", "NUMBER", "AND", "AS", "DEF", "ELIF", "ELSE", "FALSE", "FOR", + "FROM", "IF", "IMPORT", "IN", "IS", "NONE", "NOT", "OR", "RETURN", "TRUE", + "UNDERSCORE", "WHILE", "NEWLINE", "NAME", "DECIMAL_INTEGER", "FLOAT_NUMBER", + "DOT", "ELLIPSIS", "STAR", "OPEN_PAREN", "CLOSE_PAREN", "COMMA", "COLON", + "SEMI_COLON", "POWER", "ASSIGN", "OPEN_BRACK", "CLOSE_BRACK", "OR_OP", + "XOR", "AND_OP", "LEFT_SHIFT", "RIGHT_SHIFT", "ADD", "MINUS", "DIV", + "MOD", "IDIV", "NOT_OP", "OPEN_BRACE", "CLOSE_BRACE", "LESS_THAN", "GREATER_THAN", + "EQUALS", "GT_EQ", "LT_EQ", "NOT_EQ_1", "NOT_EQ_2", "AT", "ARROW", "ADD_ASSIGN", + "SUB_ASSIGN", "MULT_ASSIGN", "AT_ASSIGN", "DIV_ASSIGN", "MOD_ASSIGN", + "AND_ASSIGN", "OR_ASSIGN", "XOR_ASSIGN", "LEFT_SHIFT_ASSIGN", "RIGHT_SHIFT_ASSIGN", + "POWER_ASSIGN", "IDIV_ASSIGN", "SKIP_", "UNKNOWN_CHAR", "STRING_ESCAPE_SEQ", + "NON_ZERO_DIGIT", "DIGIT", "POINT_FLOAT", "EXPONENT_FLOAT", "INT_PART", + "EXPONENT", "SPACES", "COMMENT", "LINE_JOINING" }; } @@ -195,80 +60,14 @@ public class Python3Lexer extends Python3LexerBase { private static String[] makeLiteralNames() { return new String[] { - null, - null, - null, - null, - null, - "'and'", - "'as'", - "'def'", - "'elif'", - "'else'", - "'False'", - "'for'", - "'from'", - "'if'", - "'import'", - "'in'", - "'is'", - "'None'", - "'not'", - "'or'", - "'return'", - "'True'", - "'_'", - "'while'", - null, - null, - null, - null, - "'.'", - "'...'", - "'*'", - "'('", - "')'", - "','", - "':'", - "';'", - "'**'", - "'='", - "'['", - "']'", - "'|'", - "'^'", - "'&'", - "'<<'", - "'>>'", - "'+'", - "'-'", - "'/'", - "'%'", - "'//'", - "'~'", - "'{'", - "'}'", - "'<'", - "'>'", - "'=='", - "'>='", - "'<='", - "'<>'", - "'!='", - "'@'", - "'->'", - "'+='", - "'-='", - "'*='", - "'@='", - "'/='", - "'%='", - "'&='", - "'|='", - "'^='", - "'<<='", - "'>>='", - "'**='", + null, null, null, null, null, "'and'", "'as'", "'def'", "'elif'", "'else'", + "'False'", "'for'", "'from'", "'if'", "'import'", "'in'", "'is'", "'None'", + "'not'", "'or'", "'return'", "'True'", "'_'", "'while'", null, null, + null, null, "'.'", "'...'", "'*'", "'('", "')'", "','", "':'", "';'", + "'**'", "'='", "'['", "']'", "'|'", "'^'", "'&'", "'<<'", "'>>'", "'+'", + "'-'", "'/'", "'%'", "'//'", "'~'", "'{'", "'}'", "'<'", "'>'", "'=='", + "'>='", "'<='", "'<>'", "'!='", "'@'", "'->'", "'+='", "'-='", "'*='", + "'@='", "'/='", "'%='", "'&='", "'|='", "'^='", "'<<='", "'>>='", "'**='", "'//='" }; } @@ -277,83 +76,17 @@ public class Python3Lexer extends Python3LexerBase { private static String[] makeSymbolicNames() { return new String[] { - null, - "INDENT", - "DEDENT", - "STRING", - "NUMBER", - "AND", - "AS", - "DEF", - "ELIF", - "ELSE", - "FALSE", - "FOR", - "FROM", - "IF", - "IMPORT", - "IN", - "IS", - "NONE", - "NOT", - "OR", - "RETURN", - "TRUE", - "UNDERSCORE", - "WHILE", - "NEWLINE", - "NAME", - "DECIMAL_INTEGER", - "FLOAT_NUMBER", - "DOT", - "ELLIPSIS", - "STAR", - "OPEN_PAREN", - "CLOSE_PAREN", - "COMMA", - "COLON", - "SEMI_COLON", - "POWER", - "ASSIGN", - "OPEN_BRACK", - "CLOSE_BRACK", - "OR_OP", - "XOR", - "AND_OP", - "LEFT_SHIFT", - "RIGHT_SHIFT", - "ADD", - "MINUS", - "DIV", - "MOD", - "IDIV", - "NOT_OP", - "OPEN_BRACE", - "CLOSE_BRACE", - "LESS_THAN", - "GREATER_THAN", - "EQUALS", - "GT_EQ", - "LT_EQ", - "NOT_EQ_1", - "NOT_EQ_2", - "AT", - "ARROW", - "ADD_ASSIGN", - "SUB_ASSIGN", - "MULT_ASSIGN", - "AT_ASSIGN", - "DIV_ASSIGN", - "MOD_ASSIGN", - "AND_ASSIGN", - "OR_ASSIGN", - "XOR_ASSIGN", - "LEFT_SHIFT_ASSIGN", - "RIGHT_SHIFT_ASSIGN", - "POWER_ASSIGN", - "IDIV_ASSIGN", - "SKIP_", - "UNKNOWN_CHAR" + null, "INDENT", "DEDENT", "STRING", "NUMBER", "AND", "AS", "DEF", "ELIF", + "ELSE", "FALSE", "FOR", "FROM", "IF", "IMPORT", "IN", "IS", "NONE", "NOT", + "OR", "RETURN", "TRUE", "UNDERSCORE", "WHILE", "NEWLINE", "NAME", "DECIMAL_INTEGER", + "FLOAT_NUMBER", "DOT", "ELLIPSIS", "STAR", "OPEN_PAREN", "CLOSE_PAREN", + "COMMA", "COLON", "SEMI_COLON", "POWER", "ASSIGN", "OPEN_BRACK", "CLOSE_BRACK", + "OR_OP", "XOR", "AND_OP", "LEFT_SHIFT", "RIGHT_SHIFT", "ADD", "MINUS", + "DIV", "MOD", "IDIV", "NOT_OP", "OPEN_BRACE", "CLOSE_BRACE", "LESS_THAN", + "GREATER_THAN", "EQUALS", "GT_EQ", "LT_EQ", "NOT_EQ_1", "NOT_EQ_2", "AT", + "ARROW", "ADD_ASSIGN", "SUB_ASSIGN", "MULT_ASSIGN", "AT_ASSIGN", "DIV_ASSIGN", + "MOD_ASSIGN", "AND_ASSIGN", "OR_ASSIGN", "XOR_ASSIGN", "LEFT_SHIFT_ASSIGN", + "RIGHT_SHIFT_ASSIGN", "POWER_ASSIGN", "IDIV_ASSIGN", "SKIP_", "UNKNOWN_CHAR" }; } @@ -365,7 +98,6 @@ public class Python3Lexer extends Python3LexerBase { */ @Deprecated public static final String[] tokenNames; - static { tokenNames = new String[_SYMBOLIC_NAMES.length]; for (int i = 0; i < tokenNames.length; i++) { @@ -387,6 +119,7 @@ public class Python3Lexer extends Python3LexerBase { } @Override + public Vocabulary getVocabulary() { return VOCABULARY; } @@ -527,336 +260,336 @@ public class Python3Lexer extends Python3LexerBase { } public static final String _serializedATN = "\u0004\u0000L\u020b\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001" - + "\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004" - + "\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007" - + "\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b" - + "\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002" - + "\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002" - + "\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002" - + "\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002" - + "\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002" - + "\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002" - + "\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007" - + "!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007" - + "&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007" - + "+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007" - + "0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007" - + "5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007" - + ":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007" - + "?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007" - + "D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007" - + "I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007" - + "N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007" - + "S\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000\u00ad\b\u0000\n\u0000" - + "\f\u0000\u00b0\t\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000" - + "\u0005\u0000\u00b6\b\u0000\n\u0000\f\u0000\u00b9\t\u0000\u0001\u0000\u0003" - + "\u0000\u00bc\b\u0000\u0001\u0001\u0001\u0001\u0003\u0001\u00c0\b\u0001" - + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003" - + "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005" - + "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006" - + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007" - + "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001" - + "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\u000b" - + "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b" - + "\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e" - + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f" - + "\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011" - + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012" - + "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013" - + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014" - + "\u0001\u0015\u0001\u0015\u0001\u0015\u0003\u0015\u0119\b\u0015\u0001\u0015" - + "\u0001\u0015\u0003\u0015\u011d\b\u0015\u0001\u0015\u0003\u0015\u0120\b" - + "\u0015\u0003\u0015\u0122\b\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001" - + "\u0016\u0005\u0016\u0128\b\u0016\n\u0016\f\u0016\u012b\t\u0016\u0001\u0017" - + "\u0001\u0017\u0005\u0017\u012f\b\u0017\n\u0017\f\u0017\u0132\t\u0017\u0001" - + "\u0017\u0004\u0017\u0135\b\u0017\u000b\u0017\f\u0017\u0136\u0003\u0017" - + "\u0139\b\u0017\u0001\u0018\u0001\u0018\u0003\u0018\u013d\b\u0018\u0001" - + "\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001" - + "\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001" - + "\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001" - + " \u0001 \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001" - + "$\u0001$\u0001$\u0001%\u0001%\u0001&\u0001&\u0001\'\u0001\'\u0001(\u0001" - + "(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001+\u0001+\u0001,\u0001" - + ",\u0001-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u0001" - + "0\u00011\u00011\u00011\u00012\u00012\u00013\u00013\u00014\u00014\u0001" - + "4\u00015\u00015\u00015\u00016\u00016\u00016\u00017\u00017\u00017\u0001" - + "8\u00018\u00018\u00019\u00019\u0001:\u0001:\u0001:\u0001;\u0001;\u0001" - + ";\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001" - + "?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001B\u0001" - + "B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001E\u0001" - + "E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001" - + "G\u0001H\u0001H\u0001H\u0003H\u01c3\bH\u0001H\u0001H\u0001I\u0001I\u0001" - + "J\u0001J\u0001J\u0001J\u0003J\u01cd\bJ\u0001K\u0001K\u0001L\u0001L\u0001" - + "M\u0003M\u01d4\bM\u0001M\u0001M\u0004M\u01d8\bM\u000bM\fM\u01d9\u0001" - + "M\u0001M\u0001M\u0003M\u01df\bM\u0001N\u0001N\u0003N\u01e3\bN\u0001N\u0001" - + "N\u0001O\u0004O\u01e8\bO\u000bO\fO\u01e9\u0001P\u0001P\u0003P\u01ee\b" - + "P\u0001P\u0004P\u01f1\bP\u000bP\fP\u01f2\u0001Q\u0004Q\u01f6\bQ\u000b" - + "Q\fQ\u01f7\u0001R\u0001R\u0005R\u01fc\bR\nR\fR\u01ff\tR\u0001S\u0001S" - + "\u0003S\u0203\bS\u0001S\u0003S\u0206\bS\u0001S\u0001S\u0003S\u020a\bS" - + "\u0000\u0000T\u0001\u0003\u0003\u0004\u0005\u0005\u0007\u0006\t\u0007" - + "\u000b\b\r\t\u000f\n\u0011\u000b\u0013\f\u0015\r\u0017\u000e\u0019\u000f" - + "\u001b\u0010\u001d\u0011\u001f\u0012!\u0013#\u0014%\u0015\'\u0016)\u0017" - + "+\u0018-\u0019/\u001a1\u001b3\u001c5\u001d7\u001e9\u001f; =!?\"A#C$E%" - + "G&I\'K(M)O*Q+S,U-W.Y/[0]1_2a3c4e5g6i7k8m9o:q;s<u=w>y?{@}A\u007fB\u0081" - + "C\u0083D\u0085E\u0087F\u0089G\u008bH\u008dI\u008fJ\u0091K\u0093L\u0095" - + "\u0000\u0097\u0000\u0099\u0000\u009b\u0000\u009d\u0000\u009f\u0000\u00a1" - + "\u0000\u00a3\u0000\u00a5\u0000\u00a7\u0000\u0001\u0000\n\u0004\u0000\n" - + "\n\f\r\'\'\\\\\u0004\u0000\n\n\f\r\"\"\\\\\u0003\u0000AZ__az\u0004\u0000" - + "09AZ__az\u0001\u000019\u0001\u000009\u0002\u0000EEee\u0002\u0000++--\u0002" - + "\u0000\t\t \u0002\u0000\n\n\f\r\u021e\u0000\u0001\u0001\u0000\u0000\u0000" - + "\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0005\u0001\u0000\u0000\u0000" - + "\u0000\u0007\u0001\u0000\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000\u0000" - + "\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000\u000f" - + "\u0001\u0000\u0000\u0000\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013" - + "\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017" - + "\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b" - + "\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f" - + "\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000" - + "\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000" - + "\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000" - + "-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001" - + "\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000" - + "\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000" - + ";\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001" - + "\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000" - + "\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000" - + "I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001" - + "\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000" - + "\u0000\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000" - + "W\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001" - + "\u0000\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000" - + "\u0000\u0000a\u0001\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000" - + "e\u0001\u0000\u0000\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001" - + "\u0000\u0000\u0000\u0000k\u0001\u0000\u0000\u0000\u0000m\u0001\u0000\u0000" - + "\u0000\u0000o\u0001\u0000\u0000\u0000\u0000q\u0001\u0000\u0000\u0000\u0000" - + "s\u0001\u0000\u0000\u0000\u0000u\u0001\u0000\u0000\u0000\u0000w\u0001" - + "\u0000\u0000\u0000\u0000y\u0001\u0000\u0000\u0000\u0000{\u0001\u0000\u0000" - + "\u0000\u0000}\u0001\u0000\u0000\u0000\u0000\u007f\u0001\u0000\u0000\u0000" - + "\u0000\u0081\u0001\u0000\u0000\u0000\u0000\u0083\u0001\u0000\u0000\u0000" - + "\u0000\u0085\u0001\u0000\u0000\u0000\u0000\u0087\u0001\u0000\u0000\u0000" - + "\u0000\u0089\u0001\u0000\u0000\u0000\u0000\u008b\u0001\u0000\u0000\u0000" - + "\u0000\u008d\u0001\u0000\u0000\u0000\u0000\u008f\u0001\u0000\u0000\u0000" - + "\u0000\u0091\u0001\u0000\u0000\u0000\u0000\u0093\u0001\u0000\u0000\u0000" - + "\u0001\u00bb\u0001\u0000\u0000\u0000\u0003\u00bf\u0001\u0000\u0000\u0000" - + "\u0005\u00c1\u0001\u0000\u0000\u0000\u0007\u00c5\u0001\u0000\u0000\u0000" - + "\t\u00c8\u0001\u0000\u0000\u0000\u000b\u00cc\u0001\u0000\u0000\u0000\r" - + "\u00d1\u0001\u0000\u0000\u0000\u000f\u00d6\u0001\u0000\u0000\u0000\u0011" - + "\u00dc\u0001\u0000\u0000\u0000\u0013\u00e0\u0001\u0000\u0000\u0000\u0015" - + "\u00e5\u0001\u0000\u0000\u0000\u0017\u00e8\u0001\u0000\u0000\u0000\u0019" - + "\u00ef\u0001\u0000\u0000\u0000\u001b\u00f2\u0001\u0000\u0000\u0000\u001d" - + "\u00f5\u0001\u0000\u0000\u0000\u001f\u00fa\u0001\u0000\u0000\u0000!\u00fe" - + "\u0001\u0000\u0000\u0000#\u0101\u0001\u0000\u0000\u0000%\u0108\u0001\u0000" - + "\u0000\u0000\'\u010d\u0001\u0000\u0000\u0000)\u010f\u0001\u0000\u0000" - + "\u0000+\u0121\u0001\u0000\u0000\u0000-\u0125\u0001\u0000\u0000\u0000/" - + "\u0138\u0001\u0000\u0000\u00001\u013c\u0001\u0000\u0000\u00003\u013e\u0001" - + "\u0000\u0000\u00005\u0140\u0001\u0000\u0000\u00007\u0144\u0001\u0000\u0000" - + "\u00009\u0146\u0001\u0000\u0000\u0000;\u0149\u0001\u0000\u0000\u0000=" - + "\u014c\u0001\u0000\u0000\u0000?\u014e\u0001\u0000\u0000\u0000A\u0150\u0001" - + "\u0000\u0000\u0000C\u0152\u0001\u0000\u0000\u0000E\u0155\u0001\u0000\u0000" - + "\u0000G\u0157\u0001\u0000\u0000\u0000I\u015a\u0001\u0000\u0000\u0000K" - + "\u015d\u0001\u0000\u0000\u0000M\u015f\u0001\u0000\u0000\u0000O\u0161\u0001" - + "\u0000\u0000\u0000Q\u0163\u0001\u0000\u0000\u0000S\u0166\u0001\u0000\u0000" - + "\u0000U\u0169\u0001\u0000\u0000\u0000W\u016b\u0001\u0000\u0000\u0000Y" - + "\u016d\u0001\u0000\u0000\u0000[\u016f\u0001\u0000\u0000\u0000]\u0171\u0001" - + "\u0000\u0000\u0000_\u0174\u0001\u0000\u0000\u0000a\u0176\u0001\u0000\u0000" - + "\u0000c\u0179\u0001\u0000\u0000\u0000e\u017c\u0001\u0000\u0000\u0000g" - + "\u017e\u0001\u0000\u0000\u0000i\u0180\u0001\u0000\u0000\u0000k\u0183\u0001" - + "\u0000\u0000\u0000m\u0186\u0001\u0000\u0000\u0000o\u0189\u0001\u0000\u0000" - + "\u0000q\u018c\u0001\u0000\u0000\u0000s\u018f\u0001\u0000\u0000\u0000u" - + "\u0191\u0001\u0000\u0000\u0000w\u0194\u0001\u0000\u0000\u0000y\u0197\u0001" - + "\u0000\u0000\u0000{\u019a\u0001\u0000\u0000\u0000}\u019d\u0001\u0000\u0000" - + "\u0000\u007f\u01a0\u0001\u0000\u0000\u0000\u0081\u01a3\u0001\u0000\u0000" - + "\u0000\u0083\u01a6\u0001\u0000\u0000\u0000\u0085\u01a9\u0001\u0000\u0000" - + "\u0000\u0087\u01ac\u0001\u0000\u0000\u0000\u0089\u01af\u0001\u0000\u0000" - + "\u0000\u008b\u01b3\u0001\u0000\u0000\u0000\u008d\u01b7\u0001\u0000\u0000" - + "\u0000\u008f\u01bb\u0001\u0000\u0000\u0000\u0091\u01c2\u0001\u0000\u0000" - + "\u0000\u0093\u01c6\u0001\u0000\u0000\u0000\u0095\u01cc\u0001\u0000\u0000" - + "\u0000\u0097\u01ce\u0001\u0000\u0000\u0000\u0099\u01d0\u0001\u0000\u0000" - + "\u0000\u009b\u01de\u0001\u0000\u0000\u0000\u009d\u01e2\u0001\u0000\u0000" - + "\u0000\u009f\u01e7\u0001\u0000\u0000\u0000\u00a1\u01eb\u0001\u0000\u0000" - + "\u0000\u00a3\u01f5\u0001\u0000\u0000\u0000\u00a5\u01f9\u0001\u0000\u0000" - + "\u0000\u00a7\u0200\u0001\u0000\u0000\u0000\u00a9\u00ae\u0005\'\u0000\u0000" - + "\u00aa\u00ad\u0003\u0095J\u0000\u00ab\u00ad\b\u0000\u0000\u0000\u00ac" - + "\u00aa\u0001\u0000\u0000\u0000\u00ac\u00ab\u0001\u0000\u0000\u0000\u00ad" - + "\u00b0\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00ae" - + "\u00af\u0001\u0000\u0000\u0000\u00af\u00b1\u0001\u0000\u0000\u0000\u00b0" - + "\u00ae\u0001\u0000\u0000\u0000\u00b1\u00bc\u0005\'\u0000\u0000\u00b2\u00b7" - + "\u0005\"\u0000\u0000\u00b3\u00b6\u0003\u0095J\u0000\u00b4\u00b6\b\u0001" - + "\u0000\u0000\u00b5\u00b3\u0001\u0000\u0000\u0000\u00b5\u00b4\u0001\u0000" - + "\u0000\u0000\u00b6\u00b9\u0001\u0000\u0000\u0000\u00b7\u00b5\u0001\u0000" - + "\u0000\u0000\u00b7\u00b8\u0001\u0000\u0000\u0000\u00b8\u00ba\u0001\u0000" - + "\u0000\u0000\u00b9\u00b7\u0001\u0000\u0000\u0000\u00ba\u00bc\u0005\"\u0000" - + "\u0000\u00bb\u00a9\u0001\u0000\u0000\u0000\u00bb\u00b2\u0001\u0000\u0000" - + "\u0000\u00bc\u0002\u0001\u0000\u0000\u0000\u00bd\u00c0\u0003/\u0017\u0000" - + "\u00be\u00c0\u00031\u0018\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000\u00bf" - + "\u00be\u0001\u0000\u0000\u0000\u00c0\u0004\u0001\u0000\u0000\u0000\u00c1" - + "\u00c2\u0005a\u0000\u0000\u00c2\u00c3\u0005n\u0000\u0000\u00c3\u00c4\u0005" - + "d\u0000\u0000\u00c4\u0006\u0001\u0000\u0000\u0000\u00c5\u00c6\u0005a\u0000" - + "\u0000\u00c6\u00c7\u0005s\u0000\u0000\u00c7\b\u0001\u0000\u0000\u0000" - + "\u00c8\u00c9\u0005d\u0000\u0000\u00c9\u00ca\u0005e\u0000\u0000\u00ca\u00cb" - + "\u0005f\u0000\u0000\u00cb\n\u0001\u0000\u0000\u0000\u00cc\u00cd\u0005" - + "e\u0000\u0000\u00cd\u00ce\u0005l\u0000\u0000\u00ce\u00cf\u0005i\u0000" - + "\u0000\u00cf\u00d0\u0005f\u0000\u0000\u00d0\f\u0001\u0000\u0000\u0000" - + "\u00d1\u00d2\u0005e\u0000\u0000\u00d2\u00d3\u0005l\u0000\u0000\u00d3\u00d4" - + "\u0005s\u0000\u0000\u00d4\u00d5\u0005e\u0000\u0000\u00d5\u000e\u0001\u0000" - + "\u0000\u0000\u00d6\u00d7\u0005F\u0000\u0000\u00d7\u00d8\u0005a\u0000\u0000" - + "\u00d8\u00d9\u0005l\u0000\u0000\u00d9\u00da\u0005s\u0000\u0000\u00da\u00db" - + "\u0005e\u0000\u0000\u00db\u0010\u0001\u0000\u0000\u0000\u00dc\u00dd\u0005" - + "f\u0000\u0000\u00dd\u00de\u0005o\u0000\u0000\u00de\u00df\u0005r\u0000" - + "\u0000\u00df\u0012\u0001\u0000\u0000\u0000\u00e0\u00e1\u0005f\u0000\u0000" - + "\u00e1\u00e2\u0005r\u0000\u0000\u00e2\u00e3\u0005o\u0000\u0000\u00e3\u00e4" - + "\u0005m\u0000\u0000\u00e4\u0014\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005" - + "i\u0000\u0000\u00e6\u00e7\u0005f\u0000\u0000\u00e7\u0016\u0001\u0000\u0000" - + "\u0000\u00e8\u00e9\u0005i\u0000\u0000\u00e9\u00ea\u0005m\u0000\u0000\u00ea" - + "\u00eb\u0005p\u0000\u0000\u00eb\u00ec\u0005o\u0000\u0000\u00ec\u00ed\u0005" - + "r\u0000\u0000\u00ed\u00ee\u0005t\u0000\u0000\u00ee\u0018\u0001\u0000\u0000" - + "\u0000\u00ef\u00f0\u0005i\u0000\u0000\u00f0\u00f1\u0005n\u0000\u0000\u00f1" - + "\u001a\u0001\u0000\u0000\u0000\u00f2\u00f3\u0005i\u0000\u0000\u00f3\u00f4" - + "\u0005s\u0000\u0000\u00f4\u001c\u0001\u0000\u0000\u0000\u00f5\u00f6\u0005" - + "N\u0000\u0000\u00f6\u00f7\u0005o\u0000\u0000\u00f7\u00f8\u0005n\u0000" - + "\u0000\u00f8\u00f9\u0005e\u0000\u0000\u00f9\u001e\u0001\u0000\u0000\u0000" - + "\u00fa\u00fb\u0005n\u0000\u0000\u00fb\u00fc\u0005o\u0000\u0000\u00fc\u00fd" - + "\u0005t\u0000\u0000\u00fd \u0001\u0000\u0000\u0000\u00fe\u00ff\u0005o" - + "\u0000\u0000\u00ff\u0100\u0005r\u0000\u0000\u0100\"\u0001\u0000\u0000" - + "\u0000\u0101\u0102\u0005r\u0000\u0000\u0102\u0103\u0005e\u0000\u0000\u0103" - + "\u0104\u0005t\u0000\u0000\u0104\u0105\u0005u\u0000\u0000\u0105\u0106\u0005" - + "r\u0000\u0000\u0106\u0107\u0005n\u0000\u0000\u0107$\u0001\u0000\u0000" - + "\u0000\u0108\u0109\u0005T\u0000\u0000\u0109\u010a\u0005r\u0000\u0000\u010a" - + "\u010b\u0005u\u0000\u0000\u010b\u010c\u0005e\u0000\u0000\u010c&\u0001" - + "\u0000\u0000\u0000\u010d\u010e\u0005_\u0000\u0000\u010e(\u0001\u0000\u0000" - + "\u0000\u010f\u0110\u0005w\u0000\u0000\u0110\u0111\u0005h\u0000\u0000\u0111" - + "\u0112\u0005i\u0000\u0000\u0112\u0113\u0005l\u0000\u0000\u0113\u0114\u0005" - + "e\u0000\u0000\u0114*\u0001\u0000\u0000\u0000\u0115\u0116\u0004\u0015\u0000" - + "\u0000\u0116\u0122\u0003\u00a3Q\u0000\u0117\u0119\u0005\r\u0000\u0000" - + "\u0118\u0117\u0001\u0000\u0000\u0000\u0118\u0119\u0001\u0000\u0000\u0000" - + "\u0119\u011a\u0001\u0000\u0000\u0000\u011a\u011d\u0005\n\u0000\u0000\u011b" - + "\u011d\u0002\f\r\u0000\u011c\u0118\u0001\u0000\u0000\u0000\u011c\u011b" - + "\u0001\u0000\u0000\u0000\u011d\u011f\u0001\u0000\u0000\u0000\u011e\u0120" - + "\u0003\u00a3Q\u0000\u011f\u011e\u0001\u0000\u0000\u0000\u011f\u0120\u0001" - + "\u0000\u0000\u0000\u0120\u0122\u0001\u0000\u0000\u0000\u0121\u0115\u0001" - + "\u0000\u0000\u0000\u0121\u011c\u0001\u0000\u0000\u0000\u0122\u0123\u0001" - + "\u0000\u0000\u0000\u0123\u0124\u0006\u0015\u0000\u0000\u0124,\u0001\u0000" - + "\u0000\u0000\u0125\u0129\u0007\u0002\u0000\u0000\u0126\u0128\u0007\u0003" - + "\u0000\u0000\u0127\u0126\u0001\u0000\u0000\u0000\u0128\u012b\u0001\u0000" - + "\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u0129\u012a\u0001\u0000" - + "\u0000\u0000\u012a.\u0001\u0000\u0000\u0000\u012b\u0129\u0001\u0000\u0000" - + "\u0000\u012c\u0130\u0003\u0097K\u0000\u012d\u012f\u0003\u0099L\u0000\u012e" - + "\u012d\u0001\u0000\u0000\u0000\u012f\u0132\u0001\u0000\u0000\u0000\u0130" - + "\u012e\u0001\u0000\u0000\u0000\u0130\u0131\u0001\u0000\u0000\u0000\u0131" - + "\u0139\u0001\u0000\u0000\u0000\u0132\u0130\u0001\u0000\u0000\u0000\u0133" - + "\u0135\u00050\u0000\u0000\u0134\u0133\u0001\u0000\u0000\u0000\u0135\u0136" - + "\u0001\u0000\u0000\u0000\u0136\u0134\u0001\u0000\u0000\u0000\u0136\u0137" - + "\u0001\u0000\u0000\u0000\u0137\u0139\u0001\u0000\u0000\u0000\u0138\u012c" - + "\u0001\u0000\u0000\u0000\u0138\u0134\u0001\u0000\u0000\u0000\u01390\u0001" - + "\u0000\u0000\u0000\u013a\u013d\u0003\u009bM\u0000\u013b\u013d\u0003\u009d" - + "N\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000\u0000" - + "\u0000\u013d2\u0001\u0000\u0000\u0000\u013e\u013f\u0005.\u0000\u0000\u013f" - + "4\u0001\u0000\u0000\u0000\u0140\u0141\u0005.\u0000\u0000\u0141\u0142\u0005" - + ".\u0000\u0000\u0142\u0143\u0005.\u0000\u0000\u01436\u0001\u0000\u0000" - + "\u0000\u0144\u0145\u0005*\u0000\u0000\u01458\u0001\u0000\u0000\u0000\u0146" - + "\u0147\u0005(\u0000\u0000\u0147\u0148\u0006\u001c\u0001\u0000\u0148:\u0001" - + "\u0000\u0000\u0000\u0149\u014a\u0005)\u0000\u0000\u014a\u014b\u0006\u001d" - + "\u0002\u0000\u014b<\u0001\u0000\u0000\u0000\u014c\u014d\u0005,\u0000\u0000" - + "\u014d>\u0001\u0000\u0000\u0000\u014e\u014f\u0005:\u0000\u0000\u014f@" - + "\u0001\u0000\u0000\u0000\u0150\u0151\u0005;\u0000\u0000\u0151B\u0001\u0000" - + "\u0000\u0000\u0152\u0153\u0005*\u0000\u0000\u0153\u0154\u0005*\u0000\u0000" - + "\u0154D\u0001\u0000\u0000\u0000\u0155\u0156\u0005=\u0000\u0000\u0156F" - + "\u0001\u0000\u0000\u0000\u0157\u0158\u0005[\u0000\u0000\u0158\u0159\u0006" - + "#\u0003\u0000\u0159H\u0001\u0000\u0000\u0000\u015a\u015b\u0005]\u0000" - + "\u0000\u015b\u015c\u0006$\u0004\u0000\u015cJ\u0001\u0000\u0000\u0000\u015d" - + "\u015e\u0005|\u0000\u0000\u015eL\u0001\u0000\u0000\u0000\u015f\u0160\u0005" - + "^\u0000\u0000\u0160N\u0001\u0000\u0000\u0000\u0161\u0162\u0005&\u0000" - + "\u0000\u0162P\u0001\u0000\u0000\u0000\u0163\u0164\u0005<\u0000\u0000\u0164" - + "\u0165\u0005<\u0000\u0000\u0165R\u0001\u0000\u0000\u0000\u0166\u0167\u0005" - + ">\u0000\u0000\u0167\u0168\u0005>\u0000\u0000\u0168T\u0001\u0000\u0000" - + "\u0000\u0169\u016a\u0005+\u0000\u0000\u016aV\u0001\u0000\u0000\u0000\u016b" - + "\u016c\u0005-\u0000\u0000\u016cX\u0001\u0000\u0000\u0000\u016d\u016e\u0005" - + "/\u0000\u0000\u016eZ\u0001\u0000\u0000\u0000\u016f\u0170\u0005%\u0000" - + "\u0000\u0170\\\u0001\u0000\u0000\u0000\u0171\u0172\u0005/\u0000\u0000" - + "\u0172\u0173\u0005/\u0000\u0000\u0173^\u0001\u0000\u0000\u0000\u0174\u0175" - + "\u0005~\u0000\u0000\u0175`\u0001\u0000\u0000\u0000\u0176\u0177\u0005{" - + "\u0000\u0000\u0177\u0178\u00060\u0005\u0000\u0178b\u0001\u0000\u0000\u0000" - + "\u0179\u017a\u0005}\u0000\u0000\u017a\u017b\u00061\u0006\u0000\u017bd" - + "\u0001\u0000\u0000\u0000\u017c\u017d\u0005<\u0000\u0000\u017df\u0001\u0000" - + "\u0000\u0000\u017e\u017f\u0005>\u0000\u0000\u017fh\u0001\u0000\u0000\u0000" - + "\u0180\u0181\u0005=\u0000\u0000\u0181\u0182\u0005=\u0000\u0000\u0182j" - + "\u0001\u0000\u0000\u0000\u0183\u0184\u0005>\u0000\u0000\u0184\u0185\u0005" - + "=\u0000\u0000\u0185l\u0001\u0000\u0000\u0000\u0186\u0187\u0005<\u0000" - + "\u0000\u0187\u0188\u0005=\u0000\u0000\u0188n\u0001\u0000\u0000\u0000\u0189" - + "\u018a\u0005<\u0000\u0000\u018a\u018b\u0005>\u0000\u0000\u018bp\u0001" - + "\u0000\u0000\u0000\u018c\u018d\u0005!\u0000\u0000\u018d\u018e\u0005=\u0000" - + "\u0000\u018er\u0001\u0000\u0000\u0000\u018f\u0190\u0005@\u0000\u0000\u0190" - + "t\u0001\u0000\u0000\u0000\u0191\u0192\u0005-\u0000\u0000\u0192\u0193\u0005" - + ">\u0000\u0000\u0193v\u0001\u0000\u0000\u0000\u0194\u0195\u0005+\u0000" - + "\u0000\u0195\u0196\u0005=\u0000\u0000\u0196x\u0001\u0000\u0000\u0000\u0197" - + "\u0198\u0005-\u0000\u0000\u0198\u0199\u0005=\u0000\u0000\u0199z\u0001" - + "\u0000\u0000\u0000\u019a\u019b\u0005*\u0000\u0000\u019b\u019c\u0005=\u0000" - + "\u0000\u019c|\u0001\u0000\u0000\u0000\u019d\u019e\u0005@\u0000\u0000\u019e" - + "\u019f\u0005=\u0000\u0000\u019f~\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005" - + "/\u0000\u0000\u01a1\u01a2\u0005=\u0000\u0000\u01a2\u0080\u0001\u0000\u0000" - + "\u0000\u01a3\u01a4\u0005%\u0000\u0000\u01a4\u01a5\u0005=\u0000\u0000\u01a5" - + "\u0082\u0001\u0000\u0000\u0000\u01a6\u01a7\u0005&\u0000\u0000\u01a7\u01a8" - + "\u0005=\u0000\u0000\u01a8\u0084\u0001\u0000\u0000\u0000\u01a9\u01aa\u0005" - + "|\u0000\u0000\u01aa\u01ab\u0005=\u0000\u0000\u01ab\u0086\u0001\u0000\u0000" - + "\u0000\u01ac\u01ad\u0005^\u0000\u0000\u01ad\u01ae\u0005=\u0000\u0000\u01ae" - + "\u0088\u0001\u0000\u0000\u0000\u01af\u01b0\u0005<\u0000\u0000\u01b0\u01b1" - + "\u0005<\u0000\u0000\u01b1\u01b2\u0005=\u0000\u0000\u01b2\u008a\u0001\u0000" - + "\u0000\u0000\u01b3\u01b4\u0005>\u0000\u0000\u01b4\u01b5\u0005>\u0000\u0000" - + "\u01b5\u01b6\u0005=\u0000\u0000\u01b6\u008c\u0001\u0000\u0000\u0000\u01b7" - + "\u01b8\u0005*\u0000\u0000\u01b8\u01b9\u0005*\u0000\u0000\u01b9\u01ba\u0005" - + "=\u0000\u0000\u01ba\u008e\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005/\u0000" - + "\u0000\u01bc\u01bd\u0005/\u0000\u0000\u01bd\u01be\u0005=\u0000\u0000\u01be" - + "\u0090\u0001\u0000\u0000\u0000\u01bf\u01c3\u0003\u00a3Q\u0000\u01c0\u01c3" - + "\u0003\u00a5R\u0000\u01c1\u01c3\u0003\u00a7S\u0000\u01c2\u01bf\u0001\u0000" - + "\u0000\u0000\u01c2\u01c0\u0001\u0000\u0000\u0000\u01c2\u01c1\u0001\u0000" - + "\u0000\u0000\u01c3\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c5\u0006H\u0007" - + "\u0000\u01c5\u0092\u0001\u0000\u0000\u0000\u01c6\u01c7\t\u0000\u0000\u0000" - + "\u01c7\u0094\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005\\\u0000\u0000\u01c9" - + "\u01cd\t\u0000\u0000\u0000\u01ca\u01cb\u0005\\\u0000\u0000\u01cb\u01cd" - + "\u0003+\u0015\u0000\u01cc\u01c8\u0001\u0000\u0000\u0000\u01cc\u01ca\u0001" - + "\u0000\u0000\u0000\u01cd\u0096\u0001\u0000\u0000\u0000\u01ce\u01cf\u0007" - + "\u0004\u0000\u0000\u01cf\u0098\u0001\u0000\u0000\u0000\u01d0\u01d1\u0007" - + "\u0005\u0000\u0000\u01d1\u009a\u0001\u0000\u0000\u0000\u01d2\u01d4\u0003" - + "\u009fO\u0000\u01d3\u01d2\u0001\u0000\u0000\u0000\u01d3\u01d4\u0001\u0000" - + "\u0000\u0000\u01d4\u01d5\u0001\u0000\u0000\u0000\u01d5\u01d7\u0005.\u0000" - + "\u0000\u01d6\u01d8\u0003\u0099L\u0000\u01d7\u01d6\u0001\u0000\u0000\u0000" - + "\u01d8\u01d9\u0001\u0000\u0000\u0000\u01d9\u01d7\u0001\u0000\u0000\u0000" - + "\u01d9\u01da\u0001\u0000\u0000\u0000\u01da\u01df\u0001\u0000\u0000\u0000" - + "\u01db\u01dc\u0003\u009fO\u0000\u01dc\u01dd\u0005.\u0000\u0000\u01dd\u01df" - + "\u0001\u0000\u0000\u0000\u01de\u01d3\u0001\u0000\u0000\u0000\u01de\u01db" - + "\u0001\u0000\u0000\u0000\u01df\u009c\u0001\u0000\u0000\u0000\u01e0\u01e3" - + "\u0003\u009fO\u0000\u01e1\u01e3\u0003\u009bM\u0000\u01e2\u01e0\u0001\u0000" - + "\u0000\u0000\u01e2\u01e1\u0001\u0000\u0000\u0000\u01e3\u01e4\u0001\u0000" - + "\u0000\u0000\u01e4\u01e5\u0003\u00a1P\u0000\u01e5\u009e\u0001\u0000\u0000" - + "\u0000\u01e6\u01e8\u0003\u0099L\u0000\u01e7\u01e6\u0001\u0000\u0000\u0000" - + "\u01e8\u01e9\u0001\u0000\u0000\u0000\u01e9\u01e7\u0001\u0000\u0000\u0000" - + "\u01e9\u01ea\u0001\u0000\u0000\u0000\u01ea\u00a0\u0001\u0000\u0000\u0000" - + "\u01eb\u01ed\u0007\u0006\u0000\u0000\u01ec\u01ee\u0007\u0007\u0000\u0000" - + "\u01ed\u01ec\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000\u0000\u0000" - + "\u01ee\u01f0\u0001\u0000\u0000\u0000\u01ef\u01f1\u0003\u0099L\u0000\u01f0" - + "\u01ef\u0001\u0000\u0000\u0000\u01f1\u01f2\u0001\u0000\u0000\u0000\u01f2" - + "\u01f0\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3" - + "\u00a2\u0001\u0000\u0000\u0000\u01f4\u01f6\u0007\b\u0000\u0000\u01f5\u01f4" - + "\u0001\u0000\u0000\u0000\u01f6\u01f7\u0001\u0000\u0000\u0000\u01f7\u01f5" - + "\u0001\u0000\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8\u00a4" - + "\u0001\u0000\u0000\u0000\u01f9\u01fd\u0005#\u0000\u0000\u01fa\u01fc\b" - + "\t\u0000\u0000\u01fb\u01fa\u0001\u0000\u0000\u0000\u01fc\u01ff\u0001\u0000" - + "\u0000\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001\u0000" - + "\u0000\u0000\u01fe\u00a6\u0001\u0000\u0000\u0000\u01ff\u01fd\u0001\u0000" - + "\u0000\u0000\u0200\u0202\u0005\\\u0000\u0000\u0201\u0203\u0003\u00a3Q" - + "\u0000\u0202\u0201\u0001\u0000\u0000\u0000\u0202\u0203\u0001\u0000\u0000" - + "\u0000\u0203\u0209\u0001\u0000\u0000\u0000\u0204\u0206\u0005\r\u0000\u0000" - + "\u0205\u0204\u0001\u0000\u0000\u0000\u0205\u0206\u0001\u0000\u0000\u0000" - + "\u0206\u0207\u0001\u0000\u0000\u0000\u0207\u020a\u0005\n\u0000\u0000\u0208" - + "\u020a\u0002\f\r\u0000\u0209\u0205\u0001\u0000\u0000\u0000\u0209\u0208" - + "\u0001\u0000\u0000\u0000\u020a\u00a8\u0001\u0000\u0000\u0000\u001e\u0000" - + "\u00ac\u00ae\u00b5\u00b7\u00bb\u00bf\u0118\u011c\u011f\u0121\u0129\u0130" - + "\u0136\u0138\u013c\u01c2\u01cc\u01d3\u01d9\u01de\u01e2\u01e9\u01ed\u01f2" - + "\u01f7\u01fd\u0202\u0205\u0209\b\u0001\u0015\u0000\u0001\u001c\u0001\u0001" - + "\u001d\u0002\u0001#\u0003\u0001$\u0004\u00010\u0005\u00011\u0006\u0006" - + "\u0000\u0000"; + + + "\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004" + + "\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007" + + "\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b" + + "\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002" + + "\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002" + + "\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002" + + "\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002" + + "\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002" + + "\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002" + + "\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007" + + "!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007" + + "&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007" + + "+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007" + + "0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007" + + "5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007" + + ":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007" + + "?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007" + + "D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007" + + "I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007" + + "N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007" + + "S\u0001\u0000\u0001\u0000\u0001\u0000\u0005\u0000\u00ad\b\u0000\n\u0000" + + "\f\u0000\u00b0\t\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000" + + "\u0005\u0000\u00b6\b\u0000\n\u0000\f\u0000\u00b9\t\u0000\u0001\u0000\u0003" + + "\u0000\u00bc\b\u0000\u0001\u0001\u0001\u0001\u0003\u0001\u00c0\b\u0001" + + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003" + + "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005" + + "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006" + + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007" + + "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001" + + "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\u000b" + + "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b" + + "\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e" + + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f" + + "\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011" + + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012" + + "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013" + + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014" + + "\u0001\u0015\u0001\u0015\u0001\u0015\u0003\u0015\u0119\b\u0015\u0001\u0015" + + "\u0001\u0015\u0003\u0015\u011d\b\u0015\u0001\u0015\u0003\u0015\u0120\b" + + "\u0015\u0003\u0015\u0122\b\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001" + + "\u0016\u0005\u0016\u0128\b\u0016\n\u0016\f\u0016\u012b\t\u0016\u0001\u0017" + + "\u0001\u0017\u0005\u0017\u012f\b\u0017\n\u0017\f\u0017\u0132\t\u0017\u0001" + + "\u0017\u0004\u0017\u0135\b\u0017\u000b\u0017\f\u0017\u0136\u0003\u0017" + + "\u0139\b\u0017\u0001\u0018\u0001\u0018\u0003\u0018\u013d\b\u0018\u0001" + + "\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001" + + "\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001" + + "\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001" + + " \u0001 \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001" + + "$\u0001$\u0001$\u0001%\u0001%\u0001&\u0001&\u0001\'\u0001\'\u0001(\u0001" + + "(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001+\u0001+\u0001,\u0001" + + ",\u0001-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u0001" + + "0\u00011\u00011\u00011\u00012\u00012\u00013\u00013\u00014\u00014\u0001" + + "4\u00015\u00015\u00015\u00016\u00016\u00016\u00017\u00017\u00017\u0001" + + "8\u00018\u00018\u00019\u00019\u0001:\u0001:\u0001:\u0001;\u0001;\u0001" + + ";\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001" + + "?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001B\u0001" + + "B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001E\u0001" + + "E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001" + + "G\u0001H\u0001H\u0001H\u0003H\u01c3\bH\u0001H\u0001H\u0001I\u0001I\u0001" + + "J\u0001J\u0001J\u0001J\u0003J\u01cd\bJ\u0001K\u0001K\u0001L\u0001L\u0001" + + "M\u0003M\u01d4\bM\u0001M\u0001M\u0004M\u01d8\bM\u000bM\fM\u01d9\u0001" + + "M\u0001M\u0001M\u0003M\u01df\bM\u0001N\u0001N\u0003N\u01e3\bN\u0001N\u0001" + + "N\u0001O\u0004O\u01e8\bO\u000bO\fO\u01e9\u0001P\u0001P\u0003P\u01ee\b" + + "P\u0001P\u0004P\u01f1\bP\u000bP\fP\u01f2\u0001Q\u0004Q\u01f6\bQ\u000b" + + "Q\fQ\u01f7\u0001R\u0001R\u0005R\u01fc\bR\nR\fR\u01ff\tR\u0001S\u0001S" + + "\u0003S\u0203\bS\u0001S\u0003S\u0206\bS\u0001S\u0001S\u0003S\u020a\bS" + + "\u0000\u0000T\u0001\u0003\u0003\u0004\u0005\u0005\u0007\u0006\t\u0007" + + "\u000b\b\r\t\u000f\n\u0011\u000b\u0013\f\u0015\r\u0017\u000e\u0019\u000f" + + "\u001b\u0010\u001d\u0011\u001f\u0012!\u0013#\u0014%\u0015\'\u0016)\u0017" + + "+\u0018-\u0019/\u001a1\u001b3\u001c5\u001d7\u001e9\u001f; =!?\"A#C$E%" + + "G&I\'K(M)O*Q+S,U-W.Y/[0]1_2a3c4e5g6i7k8m9o:q;s<u=w>y?{@}A\u007fB\u0081" + + "C\u0083D\u0085E\u0087F\u0089G\u008bH\u008dI\u008fJ\u0091K\u0093L\u0095" + + "\u0000\u0097\u0000\u0099\u0000\u009b\u0000\u009d\u0000\u009f\u0000\u00a1" + + "\u0000\u00a3\u0000\u00a5\u0000\u00a7\u0000\u0001\u0000\n\u0004\u0000\n" + + "\n\f\r\'\'\\\\\u0004\u0000\n\n\f\r\"\"\\\\\u0003\u0000AZ__az\u0004\u0000" + + "09AZ__az\u0001\u000019\u0001\u000009\u0002\u0000EEee\u0002\u0000++--\u0002" + + "\u0000\t\t \u0002\u0000\n\n\f\r\u021e\u0000\u0001\u0001\u0000\u0000\u0000" + + "\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0005\u0001\u0000\u0000\u0000" + + "\u0000\u0007\u0001\u0000\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000\u0000" + + "\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000\u000f" + + "\u0001\u0000\u0000\u0000\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013" + + "\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017" + + "\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b" + + "\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f" + + "\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000" + + "\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000" + + "\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000" + + "-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001" + + "\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000" + + "\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000" + + ";\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001" + + "\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000" + + "\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000" + + "I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001" + + "\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000" + + "\u0000\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000" + + "W\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001" + + "\u0000\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000" + + "\u0000\u0000a\u0001\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000" + + "e\u0001\u0000\u0000\u0000\u0000g\u0001\u0000\u0000\u0000\u0000i\u0001" + + "\u0000\u0000\u0000\u0000k\u0001\u0000\u0000\u0000\u0000m\u0001\u0000\u0000" + + "\u0000\u0000o\u0001\u0000\u0000\u0000\u0000q\u0001\u0000\u0000\u0000\u0000" + + "s\u0001\u0000\u0000\u0000\u0000u\u0001\u0000\u0000\u0000\u0000w\u0001" + + "\u0000\u0000\u0000\u0000y\u0001\u0000\u0000\u0000\u0000{\u0001\u0000\u0000" + + "\u0000\u0000}\u0001\u0000\u0000\u0000\u0000\u007f\u0001\u0000\u0000\u0000" + + "\u0000\u0081\u0001\u0000\u0000\u0000\u0000\u0083\u0001\u0000\u0000\u0000" + + "\u0000\u0085\u0001\u0000\u0000\u0000\u0000\u0087\u0001\u0000\u0000\u0000" + + "\u0000\u0089\u0001\u0000\u0000\u0000\u0000\u008b\u0001\u0000\u0000\u0000" + + "\u0000\u008d\u0001\u0000\u0000\u0000\u0000\u008f\u0001\u0000\u0000\u0000" + + "\u0000\u0091\u0001\u0000\u0000\u0000\u0000\u0093\u0001\u0000\u0000\u0000" + + "\u0001\u00bb\u0001\u0000\u0000\u0000\u0003\u00bf\u0001\u0000\u0000\u0000" + + "\u0005\u00c1\u0001\u0000\u0000\u0000\u0007\u00c5\u0001\u0000\u0000\u0000" + + "\t\u00c8\u0001\u0000\u0000\u0000\u000b\u00cc\u0001\u0000\u0000\u0000\r" + + "\u00d1\u0001\u0000\u0000\u0000\u000f\u00d6\u0001\u0000\u0000\u0000\u0011" + + "\u00dc\u0001\u0000\u0000\u0000\u0013\u00e0\u0001\u0000\u0000\u0000\u0015" + + "\u00e5\u0001\u0000\u0000\u0000\u0017\u00e8\u0001\u0000\u0000\u0000\u0019" + + "\u00ef\u0001\u0000\u0000\u0000\u001b\u00f2\u0001\u0000\u0000\u0000\u001d" + + "\u00f5\u0001\u0000\u0000\u0000\u001f\u00fa\u0001\u0000\u0000\u0000!\u00fe" + + "\u0001\u0000\u0000\u0000#\u0101\u0001\u0000\u0000\u0000%\u0108\u0001\u0000" + + "\u0000\u0000\'\u010d\u0001\u0000\u0000\u0000)\u010f\u0001\u0000\u0000" + + "\u0000+\u0121\u0001\u0000\u0000\u0000-\u0125\u0001\u0000\u0000\u0000/" + + "\u0138\u0001\u0000\u0000\u00001\u013c\u0001\u0000\u0000\u00003\u013e\u0001" + + "\u0000\u0000\u00005\u0140\u0001\u0000\u0000\u00007\u0144\u0001\u0000\u0000" + + "\u00009\u0146\u0001\u0000\u0000\u0000;\u0149\u0001\u0000\u0000\u0000=" + + "\u014c\u0001\u0000\u0000\u0000?\u014e\u0001\u0000\u0000\u0000A\u0150\u0001" + + "\u0000\u0000\u0000C\u0152\u0001\u0000\u0000\u0000E\u0155\u0001\u0000\u0000" + + "\u0000G\u0157\u0001\u0000\u0000\u0000I\u015a\u0001\u0000\u0000\u0000K" + + "\u015d\u0001\u0000\u0000\u0000M\u015f\u0001\u0000\u0000\u0000O\u0161\u0001" + + "\u0000\u0000\u0000Q\u0163\u0001\u0000\u0000\u0000S\u0166\u0001\u0000\u0000" + + "\u0000U\u0169\u0001\u0000\u0000\u0000W\u016b\u0001\u0000\u0000\u0000Y" + + "\u016d\u0001\u0000\u0000\u0000[\u016f\u0001\u0000\u0000\u0000]\u0171\u0001" + + "\u0000\u0000\u0000_\u0174\u0001\u0000\u0000\u0000a\u0176\u0001\u0000\u0000" + + "\u0000c\u0179\u0001\u0000\u0000\u0000e\u017c\u0001\u0000\u0000\u0000g" + + "\u017e\u0001\u0000\u0000\u0000i\u0180\u0001\u0000\u0000\u0000k\u0183\u0001" + + "\u0000\u0000\u0000m\u0186\u0001\u0000\u0000\u0000o\u0189\u0001\u0000\u0000" + + "\u0000q\u018c\u0001\u0000\u0000\u0000s\u018f\u0001\u0000\u0000\u0000u" + + "\u0191\u0001\u0000\u0000\u0000w\u0194\u0001\u0000\u0000\u0000y\u0197\u0001" + + "\u0000\u0000\u0000{\u019a\u0001\u0000\u0000\u0000}\u019d\u0001\u0000\u0000" + + "\u0000\u007f\u01a0\u0001\u0000\u0000\u0000\u0081\u01a3\u0001\u0000\u0000" + + "\u0000\u0083\u01a6\u0001\u0000\u0000\u0000\u0085\u01a9\u0001\u0000\u0000" + + "\u0000\u0087\u01ac\u0001\u0000\u0000\u0000\u0089\u01af\u0001\u0000\u0000" + + "\u0000\u008b\u01b3\u0001\u0000\u0000\u0000\u008d\u01b7\u0001\u0000\u0000" + + "\u0000\u008f\u01bb\u0001\u0000\u0000\u0000\u0091\u01c2\u0001\u0000\u0000" + + "\u0000\u0093\u01c6\u0001\u0000\u0000\u0000\u0095\u01cc\u0001\u0000\u0000" + + "\u0000\u0097\u01ce\u0001\u0000\u0000\u0000\u0099\u01d0\u0001\u0000\u0000" + + "\u0000\u009b\u01de\u0001\u0000\u0000\u0000\u009d\u01e2\u0001\u0000\u0000" + + "\u0000\u009f\u01e7\u0001\u0000\u0000\u0000\u00a1\u01eb\u0001\u0000\u0000" + + "\u0000\u00a3\u01f5\u0001\u0000\u0000\u0000\u00a5\u01f9\u0001\u0000\u0000" + + "\u0000\u00a7\u0200\u0001\u0000\u0000\u0000\u00a9\u00ae\u0005\'\u0000\u0000" + + "\u00aa\u00ad\u0003\u0095J\u0000\u00ab\u00ad\b\u0000\u0000\u0000\u00ac" + + "\u00aa\u0001\u0000\u0000\u0000\u00ac\u00ab\u0001\u0000\u0000\u0000\u00ad" + + "\u00b0\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00ae" + + "\u00af\u0001\u0000\u0000\u0000\u00af\u00b1\u0001\u0000\u0000\u0000\u00b0" + + "\u00ae\u0001\u0000\u0000\u0000\u00b1\u00bc\u0005\'\u0000\u0000\u00b2\u00b7" + + "\u0005\"\u0000\u0000\u00b3\u00b6\u0003\u0095J\u0000\u00b4\u00b6\b\u0001" + + "\u0000\u0000\u00b5\u00b3\u0001\u0000\u0000\u0000\u00b5\u00b4\u0001\u0000" + + "\u0000\u0000\u00b6\u00b9\u0001\u0000\u0000\u0000\u00b7\u00b5\u0001\u0000" + + "\u0000\u0000\u00b7\u00b8\u0001\u0000\u0000\u0000\u00b8\u00ba\u0001\u0000" + + "\u0000\u0000\u00b9\u00b7\u0001\u0000\u0000\u0000\u00ba\u00bc\u0005\"\u0000" + + "\u0000\u00bb\u00a9\u0001\u0000\u0000\u0000\u00bb\u00b2\u0001\u0000\u0000" + + "\u0000\u00bc\u0002\u0001\u0000\u0000\u0000\u00bd\u00c0\u0003/\u0017\u0000" + + "\u00be\u00c0\u00031\u0018\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000\u00bf" + + "\u00be\u0001\u0000\u0000\u0000\u00c0\u0004\u0001\u0000\u0000\u0000\u00c1" + + "\u00c2\u0005a\u0000\u0000\u00c2\u00c3\u0005n\u0000\u0000\u00c3\u00c4\u0005" + + "d\u0000\u0000\u00c4\u0006\u0001\u0000\u0000\u0000\u00c5\u00c6\u0005a\u0000" + + "\u0000\u00c6\u00c7\u0005s\u0000\u0000\u00c7\b\u0001\u0000\u0000\u0000" + + "\u00c8\u00c9\u0005d\u0000\u0000\u00c9\u00ca\u0005e\u0000\u0000\u00ca\u00cb" + + "\u0005f\u0000\u0000\u00cb\n\u0001\u0000\u0000\u0000\u00cc\u00cd\u0005" + + "e\u0000\u0000\u00cd\u00ce\u0005l\u0000\u0000\u00ce\u00cf\u0005i\u0000" + + "\u0000\u00cf\u00d0\u0005f\u0000\u0000\u00d0\f\u0001\u0000\u0000\u0000" + + "\u00d1\u00d2\u0005e\u0000\u0000\u00d2\u00d3\u0005l\u0000\u0000\u00d3\u00d4" + + "\u0005s\u0000\u0000\u00d4\u00d5\u0005e\u0000\u0000\u00d5\u000e\u0001\u0000" + + "\u0000\u0000\u00d6\u00d7\u0005F\u0000\u0000\u00d7\u00d8\u0005a\u0000\u0000" + + "\u00d8\u00d9\u0005l\u0000\u0000\u00d9\u00da\u0005s\u0000\u0000\u00da\u00db" + + "\u0005e\u0000\u0000\u00db\u0010\u0001\u0000\u0000\u0000\u00dc\u00dd\u0005" + + "f\u0000\u0000\u00dd\u00de\u0005o\u0000\u0000\u00de\u00df\u0005r\u0000" + + "\u0000\u00df\u0012\u0001\u0000\u0000\u0000\u00e0\u00e1\u0005f\u0000\u0000" + + "\u00e1\u00e2\u0005r\u0000\u0000\u00e2\u00e3\u0005o\u0000\u0000\u00e3\u00e4" + + "\u0005m\u0000\u0000\u00e4\u0014\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005" + + "i\u0000\u0000\u00e6\u00e7\u0005f\u0000\u0000\u00e7\u0016\u0001\u0000\u0000" + + "\u0000\u00e8\u00e9\u0005i\u0000\u0000\u00e9\u00ea\u0005m\u0000\u0000\u00ea" + + "\u00eb\u0005p\u0000\u0000\u00eb\u00ec\u0005o\u0000\u0000\u00ec\u00ed\u0005" + + "r\u0000\u0000\u00ed\u00ee\u0005t\u0000\u0000\u00ee\u0018\u0001\u0000\u0000" + + "\u0000\u00ef\u00f0\u0005i\u0000\u0000\u00f0\u00f1\u0005n\u0000\u0000\u00f1" + + "\u001a\u0001\u0000\u0000\u0000\u00f2\u00f3\u0005i\u0000\u0000\u00f3\u00f4" + + "\u0005s\u0000\u0000\u00f4\u001c\u0001\u0000\u0000\u0000\u00f5\u00f6\u0005" + + "N\u0000\u0000\u00f6\u00f7\u0005o\u0000\u0000\u00f7\u00f8\u0005n\u0000" + + "\u0000\u00f8\u00f9\u0005e\u0000\u0000\u00f9\u001e\u0001\u0000\u0000\u0000" + + "\u00fa\u00fb\u0005n\u0000\u0000\u00fb\u00fc\u0005o\u0000\u0000\u00fc\u00fd" + + "\u0005t\u0000\u0000\u00fd \u0001\u0000\u0000\u0000\u00fe\u00ff\u0005o" + + "\u0000\u0000\u00ff\u0100\u0005r\u0000\u0000\u0100\"\u0001\u0000\u0000" + + "\u0000\u0101\u0102\u0005r\u0000\u0000\u0102\u0103\u0005e\u0000\u0000\u0103" + + "\u0104\u0005t\u0000\u0000\u0104\u0105\u0005u\u0000\u0000\u0105\u0106\u0005" + + "r\u0000\u0000\u0106\u0107\u0005n\u0000\u0000\u0107$\u0001\u0000\u0000" + + "\u0000\u0108\u0109\u0005T\u0000\u0000\u0109\u010a\u0005r\u0000\u0000\u010a" + + "\u010b\u0005u\u0000\u0000\u010b\u010c\u0005e\u0000\u0000\u010c&\u0001" + + "\u0000\u0000\u0000\u010d\u010e\u0005_\u0000\u0000\u010e(\u0001\u0000\u0000" + + "\u0000\u010f\u0110\u0005w\u0000\u0000\u0110\u0111\u0005h\u0000\u0000\u0111" + + "\u0112\u0005i\u0000\u0000\u0112\u0113\u0005l\u0000\u0000\u0113\u0114\u0005" + + "e\u0000\u0000\u0114*\u0001\u0000\u0000\u0000\u0115\u0116\u0004\u0015\u0000" + + "\u0000\u0116\u0122\u0003\u00a3Q\u0000\u0117\u0119\u0005\r\u0000\u0000" + + "\u0118\u0117\u0001\u0000\u0000\u0000\u0118\u0119\u0001\u0000\u0000\u0000" + + "\u0119\u011a\u0001\u0000\u0000\u0000\u011a\u011d\u0005\n\u0000\u0000\u011b" + + "\u011d\u0002\f\r\u0000\u011c\u0118\u0001\u0000\u0000\u0000\u011c\u011b" + + "\u0001\u0000\u0000\u0000\u011d\u011f\u0001\u0000\u0000\u0000\u011e\u0120" + + "\u0003\u00a3Q\u0000\u011f\u011e\u0001\u0000\u0000\u0000\u011f\u0120\u0001" + + "\u0000\u0000\u0000\u0120\u0122\u0001\u0000\u0000\u0000\u0121\u0115\u0001" + + "\u0000\u0000\u0000\u0121\u011c\u0001\u0000\u0000\u0000\u0122\u0123\u0001" + + "\u0000\u0000\u0000\u0123\u0124\u0006\u0015\u0000\u0000\u0124,\u0001\u0000" + + "\u0000\u0000\u0125\u0129\u0007\u0002\u0000\u0000\u0126\u0128\u0007\u0003" + + "\u0000\u0000\u0127\u0126\u0001\u0000\u0000\u0000\u0128\u012b\u0001\u0000" + + "\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u0129\u012a\u0001\u0000" + + "\u0000\u0000\u012a.\u0001\u0000\u0000\u0000\u012b\u0129\u0001\u0000\u0000" + + "\u0000\u012c\u0130\u0003\u0097K\u0000\u012d\u012f\u0003\u0099L\u0000\u012e" + + "\u012d\u0001\u0000\u0000\u0000\u012f\u0132\u0001\u0000\u0000\u0000\u0130" + + "\u012e\u0001\u0000\u0000\u0000\u0130\u0131\u0001\u0000\u0000\u0000\u0131" + + "\u0139\u0001\u0000\u0000\u0000\u0132\u0130\u0001\u0000\u0000\u0000\u0133" + + "\u0135\u00050\u0000\u0000\u0134\u0133\u0001\u0000\u0000\u0000\u0135\u0136" + + "\u0001\u0000\u0000\u0000\u0136\u0134\u0001\u0000\u0000\u0000\u0136\u0137" + + "\u0001\u0000\u0000\u0000\u0137\u0139\u0001\u0000\u0000\u0000\u0138\u012c" + + "\u0001\u0000\u0000\u0000\u0138\u0134\u0001\u0000\u0000\u0000\u01390\u0001" + + "\u0000\u0000\u0000\u013a\u013d\u0003\u009bM\u0000\u013b\u013d\u0003\u009d" + + "N\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000\u0000" + + "\u0000\u013d2\u0001\u0000\u0000\u0000\u013e\u013f\u0005.\u0000\u0000\u013f" + + "4\u0001\u0000\u0000\u0000\u0140\u0141\u0005.\u0000\u0000\u0141\u0142\u0005" + + ".\u0000\u0000\u0142\u0143\u0005.\u0000\u0000\u01436\u0001\u0000\u0000" + + "\u0000\u0144\u0145\u0005*\u0000\u0000\u01458\u0001\u0000\u0000\u0000\u0146" + + "\u0147\u0005(\u0000\u0000\u0147\u0148\u0006\u001c\u0001\u0000\u0148:\u0001" + + "\u0000\u0000\u0000\u0149\u014a\u0005)\u0000\u0000\u014a\u014b\u0006\u001d" + + "\u0002\u0000\u014b<\u0001\u0000\u0000\u0000\u014c\u014d\u0005,\u0000\u0000" + + "\u014d>\u0001\u0000\u0000\u0000\u014e\u014f\u0005:\u0000\u0000\u014f@" + + "\u0001\u0000\u0000\u0000\u0150\u0151\u0005;\u0000\u0000\u0151B\u0001\u0000" + + "\u0000\u0000\u0152\u0153\u0005*\u0000\u0000\u0153\u0154\u0005*\u0000\u0000" + + "\u0154D\u0001\u0000\u0000\u0000\u0155\u0156\u0005=\u0000\u0000\u0156F" + + "\u0001\u0000\u0000\u0000\u0157\u0158\u0005[\u0000\u0000\u0158\u0159\u0006" + + "#\u0003\u0000\u0159H\u0001\u0000\u0000\u0000\u015a\u015b\u0005]\u0000" + + "\u0000\u015b\u015c\u0006$\u0004\u0000\u015cJ\u0001\u0000\u0000\u0000\u015d" + + "\u015e\u0005|\u0000\u0000\u015eL\u0001\u0000\u0000\u0000\u015f\u0160\u0005" + + "^\u0000\u0000\u0160N\u0001\u0000\u0000\u0000\u0161\u0162\u0005&\u0000" + + "\u0000\u0162P\u0001\u0000\u0000\u0000\u0163\u0164\u0005<\u0000\u0000\u0164" + + "\u0165\u0005<\u0000\u0000\u0165R\u0001\u0000\u0000\u0000\u0166\u0167\u0005" + + ">\u0000\u0000\u0167\u0168\u0005>\u0000\u0000\u0168T\u0001\u0000\u0000" + + "\u0000\u0169\u016a\u0005+\u0000\u0000\u016aV\u0001\u0000\u0000\u0000\u016b" + + "\u016c\u0005-\u0000\u0000\u016cX\u0001\u0000\u0000\u0000\u016d\u016e\u0005" + + "/\u0000\u0000\u016eZ\u0001\u0000\u0000\u0000\u016f\u0170\u0005%\u0000" + + "\u0000\u0170\\\u0001\u0000\u0000\u0000\u0171\u0172\u0005/\u0000\u0000" + + "\u0172\u0173\u0005/\u0000\u0000\u0173^\u0001\u0000\u0000\u0000\u0174\u0175" + + "\u0005~\u0000\u0000\u0175`\u0001\u0000\u0000\u0000\u0176\u0177\u0005{" + + "\u0000\u0000\u0177\u0178\u00060\u0005\u0000\u0178b\u0001\u0000\u0000\u0000" + + "\u0179\u017a\u0005}\u0000\u0000\u017a\u017b\u00061\u0006\u0000\u017bd" + + "\u0001\u0000\u0000\u0000\u017c\u017d\u0005<\u0000\u0000\u017df\u0001\u0000" + + "\u0000\u0000\u017e\u017f\u0005>\u0000\u0000\u017fh\u0001\u0000\u0000\u0000" + + "\u0180\u0181\u0005=\u0000\u0000\u0181\u0182\u0005=\u0000\u0000\u0182j" + + "\u0001\u0000\u0000\u0000\u0183\u0184\u0005>\u0000\u0000\u0184\u0185\u0005" + + "=\u0000\u0000\u0185l\u0001\u0000\u0000\u0000\u0186\u0187\u0005<\u0000" + + "\u0000\u0187\u0188\u0005=\u0000\u0000\u0188n\u0001\u0000\u0000\u0000\u0189" + + "\u018a\u0005<\u0000\u0000\u018a\u018b\u0005>\u0000\u0000\u018bp\u0001" + + "\u0000\u0000\u0000\u018c\u018d\u0005!\u0000\u0000\u018d\u018e\u0005=\u0000" + + "\u0000\u018er\u0001\u0000\u0000\u0000\u018f\u0190\u0005@\u0000\u0000\u0190" + + "t\u0001\u0000\u0000\u0000\u0191\u0192\u0005-\u0000\u0000\u0192\u0193\u0005" + + ">\u0000\u0000\u0193v\u0001\u0000\u0000\u0000\u0194\u0195\u0005+\u0000" + + "\u0000\u0195\u0196\u0005=\u0000\u0000\u0196x\u0001\u0000\u0000\u0000\u0197" + + "\u0198\u0005-\u0000\u0000\u0198\u0199\u0005=\u0000\u0000\u0199z\u0001" + + "\u0000\u0000\u0000\u019a\u019b\u0005*\u0000\u0000\u019b\u019c\u0005=\u0000" + + "\u0000\u019c|\u0001\u0000\u0000\u0000\u019d\u019e\u0005@\u0000\u0000\u019e" + + "\u019f\u0005=\u0000\u0000\u019f~\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005" + + "/\u0000\u0000\u01a1\u01a2\u0005=\u0000\u0000\u01a2\u0080\u0001\u0000\u0000" + + "\u0000\u01a3\u01a4\u0005%\u0000\u0000\u01a4\u01a5\u0005=\u0000\u0000\u01a5" + + "\u0082\u0001\u0000\u0000\u0000\u01a6\u01a7\u0005&\u0000\u0000\u01a7\u01a8" + + "\u0005=\u0000\u0000\u01a8\u0084\u0001\u0000\u0000\u0000\u01a9\u01aa\u0005" + + "|\u0000\u0000\u01aa\u01ab\u0005=\u0000\u0000\u01ab\u0086\u0001\u0000\u0000" + + "\u0000\u01ac\u01ad\u0005^\u0000\u0000\u01ad\u01ae\u0005=\u0000\u0000\u01ae" + + "\u0088\u0001\u0000\u0000\u0000\u01af\u01b0\u0005<\u0000\u0000\u01b0\u01b1" + + "\u0005<\u0000\u0000\u01b1\u01b2\u0005=\u0000\u0000\u01b2\u008a\u0001\u0000" + + "\u0000\u0000\u01b3\u01b4\u0005>\u0000\u0000\u01b4\u01b5\u0005>\u0000\u0000" + + "\u01b5\u01b6\u0005=\u0000\u0000\u01b6\u008c\u0001\u0000\u0000\u0000\u01b7" + + "\u01b8\u0005*\u0000\u0000\u01b8\u01b9\u0005*\u0000\u0000\u01b9\u01ba\u0005" + + "=\u0000\u0000\u01ba\u008e\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005/\u0000" + + "\u0000\u01bc\u01bd\u0005/\u0000\u0000\u01bd\u01be\u0005=\u0000\u0000\u01be" + + "\u0090\u0001\u0000\u0000\u0000\u01bf\u01c3\u0003\u00a3Q\u0000\u01c0\u01c3" + + "\u0003\u00a5R\u0000\u01c1\u01c3\u0003\u00a7S\u0000\u01c2\u01bf\u0001\u0000" + + "\u0000\u0000\u01c2\u01c0\u0001\u0000\u0000\u0000\u01c2\u01c1\u0001\u0000" + + "\u0000\u0000\u01c3\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c5\u0006H\u0007" + + "\u0000\u01c5\u0092\u0001\u0000\u0000\u0000\u01c6\u01c7\t\u0000\u0000\u0000" + + "\u01c7\u0094\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005\\\u0000\u0000\u01c9" + + "\u01cd\t\u0000\u0000\u0000\u01ca\u01cb\u0005\\\u0000\u0000\u01cb\u01cd" + + "\u0003+\u0015\u0000\u01cc\u01c8\u0001\u0000\u0000\u0000\u01cc\u01ca\u0001" + + "\u0000\u0000\u0000\u01cd\u0096\u0001\u0000\u0000\u0000\u01ce\u01cf\u0007" + + "\u0004\u0000\u0000\u01cf\u0098\u0001\u0000\u0000\u0000\u01d0\u01d1\u0007" + + "\u0005\u0000\u0000\u01d1\u009a\u0001\u0000\u0000\u0000\u01d2\u01d4\u0003" + + "\u009fO\u0000\u01d3\u01d2\u0001\u0000\u0000\u0000\u01d3\u01d4\u0001\u0000" + + "\u0000\u0000\u01d4\u01d5\u0001\u0000\u0000\u0000\u01d5\u01d7\u0005.\u0000" + + "\u0000\u01d6\u01d8\u0003\u0099L\u0000\u01d7\u01d6\u0001\u0000\u0000\u0000" + + "\u01d8\u01d9\u0001\u0000\u0000\u0000\u01d9\u01d7\u0001\u0000\u0000\u0000" + + "\u01d9\u01da\u0001\u0000\u0000\u0000\u01da\u01df\u0001\u0000\u0000\u0000" + + "\u01db\u01dc\u0003\u009fO\u0000\u01dc\u01dd\u0005.\u0000\u0000\u01dd\u01df" + + "\u0001\u0000\u0000\u0000\u01de\u01d3\u0001\u0000\u0000\u0000\u01de\u01db" + + "\u0001\u0000\u0000\u0000\u01df\u009c\u0001\u0000\u0000\u0000\u01e0\u01e3" + + "\u0003\u009fO\u0000\u01e1\u01e3\u0003\u009bM\u0000\u01e2\u01e0\u0001\u0000" + + "\u0000\u0000\u01e2\u01e1\u0001\u0000\u0000\u0000\u01e3\u01e4\u0001\u0000" + + "\u0000\u0000\u01e4\u01e5\u0003\u00a1P\u0000\u01e5\u009e\u0001\u0000\u0000" + + "\u0000\u01e6\u01e8\u0003\u0099L\u0000\u01e7\u01e6\u0001\u0000\u0000\u0000" + + "\u01e8\u01e9\u0001\u0000\u0000\u0000\u01e9\u01e7\u0001\u0000\u0000\u0000" + + "\u01e9\u01ea\u0001\u0000\u0000\u0000\u01ea\u00a0\u0001\u0000\u0000\u0000" + + "\u01eb\u01ed\u0007\u0006\u0000\u0000\u01ec\u01ee\u0007\u0007\u0000\u0000" + + "\u01ed\u01ec\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000\u0000\u0000" + + "\u01ee\u01f0\u0001\u0000\u0000\u0000\u01ef\u01f1\u0003\u0099L\u0000\u01f0" + + "\u01ef\u0001\u0000\u0000\u0000\u01f1\u01f2\u0001\u0000\u0000\u0000\u01f2" + + "\u01f0\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3" + + "\u00a2\u0001\u0000\u0000\u0000\u01f4\u01f6\u0007\b\u0000\u0000\u01f5\u01f4" + + "\u0001\u0000\u0000\u0000\u01f6\u01f7\u0001\u0000\u0000\u0000\u01f7\u01f5" + + "\u0001\u0000\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8\u00a4" + + "\u0001\u0000\u0000\u0000\u01f9\u01fd\u0005#\u0000\u0000\u01fa\u01fc\b" + + "\t\u0000\u0000\u01fb\u01fa\u0001\u0000\u0000\u0000\u01fc\u01ff\u0001\u0000" + + "\u0000\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001\u0000" + + "\u0000\u0000\u01fe\u00a6\u0001\u0000\u0000\u0000\u01ff\u01fd\u0001\u0000" + + "\u0000\u0000\u0200\u0202\u0005\\\u0000\u0000\u0201\u0203\u0003\u00a3Q" + + "\u0000\u0202\u0201\u0001\u0000\u0000\u0000\u0202\u0203\u0001\u0000\u0000" + + "\u0000\u0203\u0209\u0001\u0000\u0000\u0000\u0204\u0206\u0005\r\u0000\u0000" + + "\u0205\u0204\u0001\u0000\u0000\u0000\u0205\u0206\u0001\u0000\u0000\u0000" + + "\u0206\u0207\u0001\u0000\u0000\u0000\u0207\u020a\u0005\n\u0000\u0000\u0208" + + "\u020a\u0002\f\r\u0000\u0209\u0205\u0001\u0000\u0000\u0000\u0209\u0208" + + "\u0001\u0000\u0000\u0000\u020a\u00a8\u0001\u0000\u0000\u0000\u001e\u0000" + + "\u00ac\u00ae\u00b5\u00b7\u00bb\u00bf\u0118\u011c\u011f\u0121\u0129\u0130" + + "\u0136\u0138\u013c\u01c2\u01cc\u01d3\u01d9\u01de\u01e2\u01e9\u01ed\u01f2" + + "\u01f7\u01fd\u0202\u0205\u0209\b\u0001\u0015\u0000\u0001\u001c\u0001\u0001" + + "\u001d\u0002\u0001#\u0003\u0001$\u0004\u00010\u0005\u00011\u0006\u0006" + + "\u0000\u0000"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { diff --git a/src/Python3Parser.java b/src/Python3Parser.java index 4dd03d2..5e6c750 100644 --- a/src/Python3Parser.java +++ b/src/Python3Parser.java @@ -1,11 +1,13 @@ // Generated from src/Python3Parser.g4 by ANTLR 4.13.1 -import java.util.List; -import org.antlr.v4.runtime.*; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.*; import org.antlr.v4.runtime.misc.*; import org.antlr.v4.runtime.tree.*; +import java.util.List; +import java.util.Iterator; +import java.util.ArrayList; @SuppressWarnings({ "all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue" }) public class Python3Parser extends Python3ParserBase { @@ -15,139 +17,34 @@ public class Python3Parser extends Python3ParserBase { protected static final DFA[] _decisionToDFA; protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); - public static final int INDENT = 1, - DEDENT = 2, - STRING = 3, - NUMBER = 4, - AND = 5, - AS = 6, - DEF = 7, - ELIF = 8, + public static final int INDENT = 1, DEDENT = 2, STRING = 3, NUMBER = 4, AND = 5, AS = 6, DEF = 7, ELIF = 8, ELSE = 9, - FALSE = 10, - FOR = 11, - FROM = 12, - IF = 13, - IMPORT = 14, - IN = 15, - IS = 16, - NONE = 17, - NOT = 18, - OR = 19, - RETURN = 20, - TRUE = 21, - UNDERSCORE = 22, - WHILE = 23, - NEWLINE = 24, - NAME = 25, - DECIMAL_INTEGER = 26, - FLOAT_NUMBER = 27, - DOT = 28, - ELLIPSIS = 29, - STAR = 30, - OPEN_PAREN = 31, - CLOSE_PAREN = 32, - COMMA = 33, - COLON = 34, - SEMI_COLON = 35, - POWER = 36, - ASSIGN = 37, - OPEN_BRACK = 38, - CLOSE_BRACK = 39, - OR_OP = 40, - XOR = 41, - AND_OP = 42, - LEFT_SHIFT = 43, - RIGHT_SHIFT = 44, - ADD = 45, - MINUS = 46, - DIV = 47, - MOD = 48, - IDIV = 49, - NOT_OP = 50, - OPEN_BRACE = 51, - CLOSE_BRACE = 52, - LESS_THAN = 53, - GREATER_THAN = 54, - EQUALS = 55, - GT_EQ = 56, - LT_EQ = 57, - NOT_EQ_1 = 58, - NOT_EQ_2 = 59, - AT = 60, - ARROW = 61, - ADD_ASSIGN = 62, - SUB_ASSIGN = 63, - MULT_ASSIGN = 64, - AT_ASSIGN = 65, - DIV_ASSIGN = 66, - MOD_ASSIGN = 67, - AND_ASSIGN = 68, - OR_ASSIGN = 69, - XOR_ASSIGN = 70, - LEFT_SHIFT_ASSIGN = 71, - RIGHT_SHIFT_ASSIGN = 72, - POWER_ASSIGN = 73, - IDIV_ASSIGN = 74, - SKIP_ = 75, - UNKNOWN_CHAR = 76; - public static final int RULE_root = 0, - RULE_simple_stmts = 1, - RULE_compound_stmt = 2, - RULE_simple_stmt = 3, - RULE_assignment = 4, - RULE_return_stmt = 5, - RULE_import_stm = 6, - RULE_dotted_name = 7, - RULE_funcdef = 8, - RULE_paramlist = 9, - RULE_paramdef = 10, - RULE_augassign = 11, - RULE_if_stmt = 12, - RULE_while_stmt = 13, - RULE_for_stmt = 14, - RULE_block = 15, - RULE_comp_op = 16, - RULE_expr = 17, - RULE_atom = 18, - RULE_testlist_comp = 19, - RULE_trailer = 20, - RULE_exprlist = 21, - RULE_arglist = 22, - RULE_argument = 23, - RULE_comp_iter = 24, - RULE_comp_for = 25, - RULE_comp_if = 26; + FALSE = 10, FOR = 11, FROM = 12, IF = 13, IMPORT = 14, IN = 15, IS = 16, NONE = 17, NOT = 18, + OR = 19, RETURN = 20, TRUE = 21, UNDERSCORE = 22, WHILE = 23, NEWLINE = 24, NAME = 25, + DECIMAL_INTEGER = 26, FLOAT_NUMBER = 27, DOT = 28, ELLIPSIS = 29, STAR = 30, OPEN_PAREN = 31, + CLOSE_PAREN = 32, COMMA = 33, COLON = 34, SEMI_COLON = 35, POWER = 36, ASSIGN = 37, + OPEN_BRACK = 38, CLOSE_BRACK = 39, OR_OP = 40, XOR = 41, AND_OP = 42, LEFT_SHIFT = 43, + RIGHT_SHIFT = 44, ADD = 45, MINUS = 46, DIV = 47, MOD = 48, IDIV = 49, NOT_OP = 50, + OPEN_BRACE = 51, CLOSE_BRACE = 52, LESS_THAN = 53, GREATER_THAN = 54, EQUALS = 55, + GT_EQ = 56, LT_EQ = 57, NOT_EQ_1 = 58, NOT_EQ_2 = 59, AT = 60, ARROW = 61, ADD_ASSIGN = 62, + SUB_ASSIGN = 63, MULT_ASSIGN = 64, AT_ASSIGN = 65, DIV_ASSIGN = 66, MOD_ASSIGN = 67, + AND_ASSIGN = 68, OR_ASSIGN = 69, XOR_ASSIGN = 70, LEFT_SHIFT_ASSIGN = 71, RIGHT_SHIFT_ASSIGN = 72, + POWER_ASSIGN = 73, IDIV_ASSIGN = 74, SKIP_ = 75, UNKNOWN_CHAR = 76; + public static final int RULE_root = 0, RULE_simple_stmts = 1, RULE_compound_stmt = 2, RULE_simple_stmt = 3, + RULE_assignment = 4, RULE_return_stmt = 5, RULE_import_stm = 6, RULE_dotted_name = 7, + RULE_funcdef = 8, RULE_paramlist = 9, RULE_paramdef = 10, RULE_augassign = 11, + RULE_if_stmt = 12, RULE_while_stmt = 13, RULE_for_stmt = 14, RULE_block = 15, + RULE_comp_op = 16, RULE_expr = 17, RULE_atom = 18, RULE_testlist_comp = 19, + RULE_trailer = 20, RULE_exprlist = 21, RULE_arglist = 22, RULE_argument = 23, + RULE_comp_iter = 24, RULE_comp_for = 25, RULE_comp_if = 26; private static String[] makeRuleNames() { return new String[] { - "root", - "simple_stmts", - "compound_stmt", - "simple_stmt", - "assignment", - "return_stmt", - "import_stm", - "dotted_name", - "funcdef", - "paramlist", - "paramdef", - "augassign", - "if_stmt", - "while_stmt", - "for_stmt", - "block", - "comp_op", - "expr", - "atom", - "testlist_comp", - "trailer", - "exprlist", - "arglist", - "argument", - "comp_iter", - "comp_for", - "comp_if" + "root", "simple_stmts", "compound_stmt", "simple_stmt", "assignment", + "return_stmt", "import_stm", "dotted_name", "funcdef", "paramlist", "paramdef", + "augassign", "if_stmt", "while_stmt", "for_stmt", "block", "comp_op", + "expr", "atom", "testlist_comp", "trailer", "exprlist", "arglist", "argument", + "comp_iter", "comp_for", "comp_if" }; } @@ -155,80 +52,14 @@ public class Python3Parser extends Python3ParserBase { private static String[] makeLiteralNames() { return new String[] { - null, - null, - null, - null, - null, - "'and'", - "'as'", - "'def'", - "'elif'", - "'else'", - "'False'", - "'for'", - "'from'", - "'if'", - "'import'", - "'in'", - "'is'", - "'None'", - "'not'", - "'or'", - "'return'", - "'True'", - "'_'", - "'while'", - null, - null, - null, - null, - "'.'", - "'...'", - "'*'", - "'('", - "')'", - "','", - "':'", - "';'", - "'**'", - "'='", - "'['", - "']'", - "'|'", - "'^'", - "'&'", - "'<<'", - "'>>'", - "'+'", - "'-'", - "'/'", - "'%'", - "'//'", - "'~'", - "'{'", - "'}'", - "'<'", - "'>'", - "'=='", - "'>='", - "'<='", - "'<>'", - "'!='", - "'@'", - "'->'", - "'+='", - "'-='", - "'*='", - "'@='", - "'/='", - "'%='", - "'&='", - "'|='", - "'^='", - "'<<='", - "'>>='", - "'**='", + null, null, null, null, null, "'and'", "'as'", "'def'", "'elif'", "'else'", + "'False'", "'for'", "'from'", "'if'", "'import'", "'in'", "'is'", "'None'", + "'not'", "'or'", "'return'", "'True'", "'_'", "'while'", null, null, + null, null, "'.'", "'...'", "'*'", "'('", "')'", "','", "':'", "';'", + "'**'", "'='", "'['", "']'", "'|'", "'^'", "'&'", "'<<'", "'>>'", "'+'", + "'-'", "'/'", "'%'", "'//'", "'~'", "'{'", "'}'", "'<'", "'>'", "'=='", + "'>='", "'<='", "'<>'", "'!='", "'@'", "'->'", "'+='", "'-='", "'*='", + "'@='", "'/='", "'%='", "'&='", "'|='", "'^='", "'<<='", "'>>='", "'**='", "'//='" }; } @@ -237,83 +68,17 @@ public class Python3Parser extends Python3ParserBase { private static String[] makeSymbolicNames() { return new String[] { - null, - "INDENT", - "DEDENT", - "STRING", - "NUMBER", - "AND", - "AS", - "DEF", - "ELIF", - "ELSE", - "FALSE", - "FOR", - "FROM", - "IF", - "IMPORT", - "IN", - "IS", - "NONE", - "NOT", - "OR", - "RETURN", - "TRUE", - "UNDERSCORE", - "WHILE", - "NEWLINE", - "NAME", - "DECIMAL_INTEGER", - "FLOAT_NUMBER", - "DOT", - "ELLIPSIS", - "STAR", - "OPEN_PAREN", - "CLOSE_PAREN", - "COMMA", - "COLON", - "SEMI_COLON", - "POWER", - "ASSIGN", - "OPEN_BRACK", - "CLOSE_BRACK", - "OR_OP", - "XOR", - "AND_OP", - "LEFT_SHIFT", - "RIGHT_SHIFT", - "ADD", - "MINUS", - "DIV", - "MOD", - "IDIV", - "NOT_OP", - "OPEN_BRACE", - "CLOSE_BRACE", - "LESS_THAN", - "GREATER_THAN", - "EQUALS", - "GT_EQ", - "LT_EQ", - "NOT_EQ_1", - "NOT_EQ_2", - "AT", - "ARROW", - "ADD_ASSIGN", - "SUB_ASSIGN", - "MULT_ASSIGN", - "AT_ASSIGN", - "DIV_ASSIGN", - "MOD_ASSIGN", - "AND_ASSIGN", - "OR_ASSIGN", - "XOR_ASSIGN", - "LEFT_SHIFT_ASSIGN", - "RIGHT_SHIFT_ASSIGN", - "POWER_ASSIGN", - "IDIV_ASSIGN", - "SKIP_", - "UNKNOWN_CHAR" + null, "INDENT", "DEDENT", "STRING", "NUMBER", "AND", "AS", "DEF", "ELIF", + "ELSE", "FALSE", "FOR", "FROM", "IF", "IMPORT", "IN", "IS", "NONE", "NOT", + "OR", "RETURN", "TRUE", "UNDERSCORE", "WHILE", "NEWLINE", "NAME", "DECIMAL_INTEGER", + "FLOAT_NUMBER", "DOT", "ELLIPSIS", "STAR", "OPEN_PAREN", "CLOSE_PAREN", + "COMMA", "COLON", "SEMI_COLON", "POWER", "ASSIGN", "OPEN_BRACK", "CLOSE_BRACK", + "OR_OP", "XOR", "AND_OP", "LEFT_SHIFT", "RIGHT_SHIFT", "ADD", "MINUS", + "DIV", "MOD", "IDIV", "NOT_OP", "OPEN_BRACE", "CLOSE_BRACE", "LESS_THAN", + "GREATER_THAN", "EQUALS", "GT_EQ", "LT_EQ", "NOT_EQ_1", "NOT_EQ_2", "AT", + "ARROW", "ADD_ASSIGN", "SUB_ASSIGN", "MULT_ASSIGN", "AT_ASSIGN", "DIV_ASSIGN", + "MOD_ASSIGN", "AND_ASSIGN", "OR_ASSIGN", "XOR_ASSIGN", "LEFT_SHIFT_ASSIGN", + "RIGHT_SHIFT_ASSIGN", "POWER_ASSIGN", "IDIV_ASSIGN", "SKIP_", "UNKNOWN_CHAR" }; } @@ -325,7 +90,6 @@ public class Python3Parser extends Python3ParserBase { */ @Deprecated public static final String[] tokenNames; - static { tokenNames = new String[_SYMBOLIC_NAMES.length]; for (int i = 0; i < tokenNames.length; i++) { @@ -347,6 +111,7 @@ public class Python3Parser extends Python3ParserBase { } @Override + public Vocabulary getVocabulary() { return VOCABULARY; } @@ -426,6 +191,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitRoot(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitRoot(this); + else + return visitor.visitChildren(this); + } } public final RootContext root() throws RecognitionException { @@ -549,6 +322,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitSimple_stmts(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitSimple_stmts(this); + else + return visitor.visitChildren(this); + } } public final Simple_stmtsContext simple_stmts() throws RecognitionException { @@ -640,6 +421,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitCompound_stmt(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitCompound_stmt(this); + else + return visitor.visitChildren(this); + } } public final Compound_stmtContext compound_stmt() throws RecognitionException { @@ -724,6 +513,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitSimple_stmt(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitSimple_stmt(this); + else + return visitor.visitChildren(this); + } } public final Simple_stmtContext simple_stmt() throws RecognitionException { @@ -802,6 +599,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitAssignment(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitAssignment(this); + else + return visitor.visitChildren(this); + } } public final AssignmentContext assignment() throws RecognitionException { @@ -857,6 +662,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitReturn_stmt(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitReturn_stmt(this); + else + return visitor.visitChildren(this); + } } public final Return_stmtContext return_stmt() throws RecognitionException { @@ -877,6 +690,7 @@ public class Python3Parser extends Python3ParserBase { exprlist(); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -946,6 +760,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitImport_stm(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitImport_stm(this); + else + return visitor.visitChildren(this); + } } public final Import_stmContext import_stm() throws RecognitionException { @@ -973,6 +795,7 @@ public class Python3Parser extends Python3ParserBase { match(NAME); } } + } break; case FROM: @@ -1068,6 +891,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitDotted_name(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitDotted_name(this); + else + return visitor.visitChildren(this); + } } public final Dotted_nameContext dotted_name() throws RecognitionException { @@ -1156,6 +987,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitFuncdef(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitFuncdef(this); + else + return visitor.visitChildren(this); + } } public final FuncdefContext funcdef() throws RecognitionException { @@ -1252,6 +1091,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitParamlist(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitParamlist(this); + else + return visitor.visitChildren(this); + } } public final ParamlistContext paramlist() throws RecognitionException { @@ -1296,6 +1143,7 @@ public class Python3Parser extends Python3ParserBase { expr(0); } } + } } setState(157); @@ -1347,6 +1195,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitParamdef(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitParamdef(this); + else + return visitor.visitChildren(this); + } } public final ParamdefContext paramdef() throws RecognitionException { @@ -1369,6 +1225,7 @@ public class Python3Parser extends Python3ParserBase { expr(0); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -1458,6 +1315,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitAugassign(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitAugassign(this); + else + return visitor.visitChildren(this); + } } public final AugassignContext augassign() throws RecognitionException { @@ -1550,6 +1415,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitIf_stmt(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitIf_stmt(this); + else + return visitor.visitChildren(this); + } } public final If_stmtContext if_stmt() throws RecognitionException { @@ -1600,6 +1473,7 @@ public class Python3Parser extends Python3ParserBase { block(); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -1661,6 +1535,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitWhile_stmt(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitWhile_stmt(this); + else + return visitor.visitChildren(this); + } } public final While_stmtContext while_stmt() throws RecognitionException { @@ -1691,6 +1573,7 @@ public class Python3Parser extends Python3ParserBase { block(); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -1752,6 +1635,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitFor_stmt(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitFor_stmt(this); + else + return visitor.visitChildren(this); + } } public final For_stmtContext for_stmt() throws RecognitionException { @@ -1782,6 +1673,7 @@ public class Python3Parser extends Python3ParserBase { block(); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -1843,6 +1735,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitBlock(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitBlock(this); + else + return visitor.visitChildren(this); + } } public final BlockContext block() throws RecognitionException { @@ -2005,6 +1905,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitComp_op(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitComp_op(this); + else + return visitor.visitChildren(this); + } } public final Comp_opContext comp_op() throws RecognitionException { @@ -2229,6 +2137,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitExpr(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitExpr(this); + else + return visitor.visitChildren(this); + } } public final ExprContext expr() throws RecognitionException { @@ -2597,6 +2513,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitAtom(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitAtom(this); + else + return visitor.visitChildren(this); + } } public final AtomContext atom() throws RecognitionException { @@ -2776,6 +2700,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitTestlist_comp(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitTestlist_comp(this); + else + return visitor.visitChildren(this); + } } public final Testlist_compContext testlist_comp() throws RecognitionException { @@ -2827,6 +2759,7 @@ public class Python3Parser extends Python3ParserBase { match(COMMA); } } + } break; default: @@ -2917,6 +2850,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitTrailer(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitTrailer(this); + else + return visitor.visitChildren(this); + } } public final TrailerContext trailer() throws RecognitionException { @@ -3034,6 +2975,7 @@ public class Python3Parser extends Python3ParserBase { expr(0); } } + } } @@ -3090,6 +3032,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitExprlist(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitExprlist(this); + else + return visitor.visitChildren(this); + } } public final ExprlistContext exprlist() throws RecognitionException { @@ -3129,6 +3079,7 @@ public class Python3Parser extends Python3ParserBase { match(COMMA); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -3178,6 +3129,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitArglist(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitArglist(this); + else + return visitor.visitChildren(this); + } } public final ArglistContext arglist() throws RecognitionException { @@ -3217,6 +3176,7 @@ public class Python3Parser extends Python3ParserBase { match(COMMA); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -3266,6 +3226,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitArgument(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitArgument(this); + else + return visitor.visitChildren(this); + } } public final ArgumentContext argument() throws RecognitionException { @@ -3289,6 +3257,7 @@ public class Python3Parser extends Python3ParserBase { comp_for(); } } + } break; case 2: @@ -3342,6 +3311,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitComp_iter(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitComp_iter(this); + else + return visitor.visitChildren(this); + } } public final Comp_iterContext comp_iter() throws RecognitionException { @@ -3418,6 +3395,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitComp_for(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitComp_for(this); + else + return visitor.visitChildren(this); + } } public final Comp_forContext comp_for() throws RecognitionException { @@ -3444,6 +3429,7 @@ public class Python3Parser extends Python3ParserBase { comp_iter(); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -3489,6 +3475,14 @@ public class Python3Parser extends Python3ParserBase { if (listener instanceof Python3ParserListener) ((Python3ParserListener) listener).exitComp_if(this); } + + @Override + public <T> T accept(ParseTreeVisitor<? extends T> visitor) { + if (visitor instanceof Python3ParserVisitor) + return ((Python3ParserVisitor<? extends T>) visitor).visitComp_if(this); + else + return visitor.visitChildren(this); + } } public final Comp_ifContext comp_if() throws RecognitionException { @@ -3511,6 +3505,7 @@ public class Python3Parser extends Python3ParserBase { comp_iter(); } } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -3559,298 +3554,298 @@ public class Python3Parser extends Python3ParserBase { } public static final String _serializedATN = "\u0004\u0001L\u01a3\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002" - + "\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002" - + "\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002" - + "\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002" - + "\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f" - + "\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012" - + "\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015" - + "\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018" - + "\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0001\u0000\u0005\u0000" - + "8\b\u0000\n\u0000\f\u0000;\t\u0000\u0001\u0000\u0001\u0000\u0005\u0000" - + "?\b\u0000\n\u0000\f\u0000B\t\u0000\u0001\u0000\u0001\u0000\u0001\u0001" - + "\u0001\u0001\u0001\u0001\u0005\u0001I\b\u0001\n\u0001\f\u0001L\t\u0001" - + "\u0001\u0001\u0003\u0001O\b\u0001\u0001\u0001\u0001\u0001\u0001\u0002" - + "\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002W\b\u0002\u0001\u0003" - + "\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003]\b\u0003\u0001\u0004" - + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0003\u0005" - + "e\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006" - + "k\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006" - + "\u0001\u0006\u0005\u0006s\b\u0006\n\u0006\f\u0006v\t\u0006\u0001\u0006" - + "\u0003\u0006y\b\u0006\u0003\u0006{\b\u0006\u0001\u0007\u0001\u0007\u0001" - + "\u0007\u0005\u0007\u0080\b\u0007\n\u0007\f\u0007\u0083\t\u0007\u0001\b" - + "\u0001\b\u0001\b\u0001\b\u0003\b\u0089\b\b\u0001\b\u0001\b\u0001\b\u0001" - + "\b\u0001\t\u0001\t\u0001\t\u0003\t\u0092\b\t\u0001\t\u0001\t\u0001\t\u0001" - + "\t\u0003\t\u0098\b\t\u0005\t\u009a\b\t\n\t\f\t\u009d\t\t\u0001\n\u0001" - + "\n\u0001\n\u0003\n\u00a2\b\n\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001" - + "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0005\f\u00af\b\f\n" - + "\f\f\f\u00b2\t\f\u0001\f\u0001\f\u0001\f\u0003\f\u00b7\b\f\u0001\r\u0001" - + "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0003\r\u00c0\b\r\u0001\u000e" - + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e" - + "\u0003\u000e\u00c9\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f" - + "\u0001\u000f\u0004\u000f\u00d0\b\u000f\u000b\u000f\f\u000f\u00d1\u0001" - + "\u000f\u0001\u000f\u0003\u000f\u00d6\b\u000f\u0001\u0010\u0001\u0010\u0001" - + "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001" - + "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0003\u0010\u00e5" - + "\b\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u00ea\b\u0011" - + "\n\u0011\f\u0011\u00ed\t\u0011\u0001\u0011\u0004\u0011\u00f0\b\u0011\u000b" - + "\u0011\f\u0011\u00f1\u0001\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u00f7" - + "\b\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" - + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" - + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" - + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" - + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" - + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" - + "\u0011\u0001\u0011\u0005\u0011\u011e\b\u0011\n\u0011\f\u0011\u0121\t\u0011" - + "\u0001\u0012\u0001\u0012\u0003\u0012\u0125\b\u0012\u0001\u0012\u0001\u0012" - + "\u0001\u0012\u0003\u0012\u012a\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012" - + "\u0003\u0012\u012f\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012" - + "\u0004\u0012\u0135\b\u0012\u000b\u0012\f\u0012\u0136\u0001\u0012\u0001" - + "\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u013d\b\u0012\u0001\u0013\u0001" - + "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0143\b\u0013\n\u0013\f\u0013" - + "\u0146\t\u0013\u0001\u0013\u0003\u0013\u0149\b\u0013\u0003\u0013\u014b" - + "\b\u0013\u0001\u0014\u0001\u0014\u0003\u0014\u014f\b\u0014\u0001\u0014" - + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0005\u0014\u0156\b\u0014" - + "\n\u0014\f\u0014\u0159\t\u0014\u0001\u0014\u0003\u0014\u015c\b\u0014\u0001" - + "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0003" - + "\u0014\u0164\b\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0168\b\u0014" - + "\u0001\u0014\u0001\u0014\u0003\u0014\u016c\b\u0014\u0003\u0014\u016e\b" - + "\u0014\u0001\u0014\u0003\u0014\u0171\b\u0014\u0001\u0015\u0001\u0015\u0001" - + "\u0015\u0005\u0015\u0176\b\u0015\n\u0015\f\u0015\u0179\t\u0015\u0001\u0015" - + "\u0003\u0015\u017c\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016" - + "\u0181\b\u0016\n\u0016\f\u0016\u0184\t\u0016\u0001\u0016\u0003\u0016\u0187" - + "\b\u0016\u0001\u0017\u0001\u0017\u0003\u0017\u018b\b\u0017\u0001\u0017" - + "\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017\u0191\b\u0017\u0001\u0018" - + "\u0001\u0018\u0003\u0018\u0195\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019" - + "\u0001\u0019\u0001\u0019\u0003\u0019\u019c\b\u0019\u0001\u001a\u0001\u001a" - + "\u0001\u001a\u0003\u001a\u01a1\b\u001a\u0001\u001a\u0000\u0001\"\u001b" - + "\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a" - + "\u001c\u001e \"$&(*,.024\u0000\u0005\u0002\u0000%%>J\u0002\u0000-.22\u0003" - + "\u0000\u001e\u001e/1<<\u0001\u0000-.\u0001\u0000+,\u01e0\u00009\u0001" - + "\u0000\u0000\u0000\u0002E\u0001\u0000\u0000\u0000\u0004V\u0001\u0000\u0000" - + "\u0000\u0006\\\u0001\u0000\u0000\u0000\b^\u0001\u0000\u0000\u0000\nb\u0001" - + "\u0000\u0000\u0000\fz\u0001\u0000\u0000\u0000\u000e|\u0001\u0000\u0000" - + "\u0000\u0010\u0084\u0001\u0000\u0000\u0000\u0012\u008e\u0001\u0000\u0000" - + "\u0000\u0014\u009e\u0001\u0000\u0000\u0000\u0016\u00a3\u0001\u0000\u0000" - + "\u0000\u0018\u00a5\u0001\u0000\u0000\u0000\u001a\u00b8\u0001\u0000\u0000" - + "\u0000\u001c\u00c1\u0001\u0000\u0000\u0000\u001e\u00d5\u0001\u0000\u0000" - + "\u0000 \u00e4\u0001\u0000\u0000\u0000\"\u00f6\u0001\u0000\u0000\u0000" - + "$\u013c\u0001\u0000\u0000\u0000&\u013e\u0001\u0000\u0000\u0000(\u0170" - + "\u0001\u0000\u0000\u0000*\u0172\u0001\u0000\u0000\u0000,\u017d\u0001\u0000" - + "\u0000\u0000.\u0190\u0001\u0000\u0000\u00000\u0194\u0001\u0000\u0000\u0000" - + "2\u0196\u0001\u0000\u0000\u00004\u019d\u0001\u0000\u0000\u000068\u0005" - + "\u0018\u0000\u000076\u0001\u0000\u0000\u00008;\u0001\u0000\u0000\u0000" - + "97\u0001\u0000\u0000\u00009:\u0001\u0000\u0000\u0000:@\u0001\u0000\u0000" - + "\u0000;9\u0001\u0000\u0000\u0000<?\u0003\u0002\u0001\u0000=?\u0003\u0004" - + "\u0002\u0000><\u0001\u0000\u0000\u0000>=\u0001\u0000\u0000\u0000?B\u0001" - + "\u0000\u0000\u0000@>\u0001\u0000\u0000\u0000@A\u0001\u0000\u0000\u0000" - + "AC\u0001\u0000\u0000\u0000B@\u0001\u0000\u0000\u0000CD\u0005\u0000\u0000" - + "\u0001D\u0001\u0001\u0000\u0000\u0000EJ\u0003\u0006\u0003\u0000FG\u0005" - + "#\u0000\u0000GI\u0003\u0006\u0003\u0000HF\u0001\u0000\u0000\u0000IL\u0001" - + "\u0000\u0000\u0000JH\u0001\u0000\u0000\u0000JK\u0001\u0000\u0000\u0000" - + "KN\u0001\u0000\u0000\u0000LJ\u0001\u0000\u0000\u0000MO\u0005#\u0000\u0000" - + "NM\u0001\u0000\u0000\u0000NO\u0001\u0000\u0000\u0000OP\u0001\u0000\u0000" - + "\u0000PQ\u0005\u0018\u0000\u0000Q\u0003\u0001\u0000\u0000\u0000RW\u0003" - + "\u0018\f\u0000SW\u0003\u001a\r\u0000TW\u0003\u001c\u000e\u0000UW\u0003" - + "\u0010\b\u0000VR\u0001\u0000\u0000\u0000VS\u0001\u0000\u0000\u0000VT\u0001" - + "\u0000\u0000\u0000VU\u0001\u0000\u0000\u0000W\u0005\u0001\u0000\u0000" - + "\u0000X]\u0003\b\u0004\u0000Y]\u0003\"\u0011\u0000Z]\u0003\n\u0005\u0000" - + "[]\u0003\f\u0006\u0000\\X\u0001\u0000\u0000\u0000\\Y\u0001\u0000\u0000" - + "\u0000\\Z\u0001\u0000\u0000\u0000\\[\u0001\u0000\u0000\u0000]\u0007\u0001" - + "\u0000\u0000\u0000^_\u0003*\u0015\u0000_`\u0003\u0016\u000b\u0000`a\u0003" - + "*\u0015\u0000a\t\u0001\u0000\u0000\u0000bd\u0005\u0014\u0000\u0000ce\u0003" - + "*\u0015\u0000dc\u0001\u0000\u0000\u0000de\u0001\u0000\u0000\u0000e\u000b" - + "\u0001\u0000\u0000\u0000fg\u0005\u000e\u0000\u0000gj\u0003\u000e\u0007" - + "\u0000hi\u0005\u0006\u0000\u0000ik\u0005\u0019\u0000\u0000jh\u0001\u0000" - + "\u0000\u0000jk\u0001\u0000\u0000\u0000k{\u0001\u0000\u0000\u0000lm\u0005" - + "\f\u0000\u0000mn\u0003\u000e\u0007\u0000nx\u0005\u000e\u0000\u0000ot\u0005" - + "\u0019\u0000\u0000pq\u0005!\u0000\u0000qs\u0005\u0019\u0000\u0000rp\u0001" - + "\u0000\u0000\u0000sv\u0001\u0000\u0000\u0000tr\u0001\u0000\u0000\u0000" - + "tu\u0001\u0000\u0000\u0000uy\u0001\u0000\u0000\u0000vt\u0001\u0000\u0000" - + "\u0000wy\u0005\u001e\u0000\u0000xo\u0001\u0000\u0000\u0000xw\u0001\u0000" - + "\u0000\u0000y{\u0001\u0000\u0000\u0000zf\u0001\u0000\u0000\u0000zl\u0001" - + "\u0000\u0000\u0000{\r\u0001\u0000\u0000\u0000|\u0081\u0005\u0019\u0000" - + "\u0000}~\u0005\u001c\u0000\u0000~\u0080\u0005\u0019\u0000\u0000\u007f" - + "}\u0001\u0000\u0000\u0000\u0080\u0083\u0001\u0000\u0000\u0000\u0081\u007f" - + "\u0001\u0000\u0000\u0000\u0081\u0082\u0001\u0000\u0000\u0000\u0082\u000f" - + "\u0001\u0000\u0000\u0000\u0083\u0081\u0001\u0000\u0000\u0000\u0084\u0085" - + "\u0005\u0007\u0000\u0000\u0085\u0086\u0005\u0019\u0000\u0000\u0086\u0088" - + "\u0005\u001f\u0000\u0000\u0087\u0089\u0003\u0012\t\u0000\u0088\u0087\u0001" - + "\u0000\u0000\u0000\u0088\u0089\u0001\u0000\u0000\u0000\u0089\u008a\u0001" - + "\u0000\u0000\u0000\u008a\u008b\u0005 \u0000\u0000\u008b\u008c\u0005\"" - + "\u0000\u0000\u008c\u008d\u0003\u001e\u000f\u0000\u008d\u0011\u0001\u0000" - + "\u0000\u0000\u008e\u0091\u0003\u0014\n\u0000\u008f\u0090\u0005%\u0000" - + "\u0000\u0090\u0092\u0003\"\u0011\u0000\u0091\u008f\u0001\u0000\u0000\u0000" - + "\u0091\u0092\u0001\u0000\u0000\u0000\u0092\u009b\u0001\u0000\u0000\u0000" - + "\u0093\u0094\u0005!\u0000\u0000\u0094\u0097\u0003\u0014\n\u0000\u0095" - + "\u0096\u0005%\u0000\u0000\u0096\u0098\u0003\"\u0011\u0000\u0097\u0095" - + "\u0001\u0000\u0000\u0000\u0097\u0098\u0001\u0000\u0000\u0000\u0098\u009a" - + "\u0001\u0000\u0000\u0000\u0099\u0093\u0001\u0000\u0000\u0000\u009a\u009d" - + "\u0001\u0000\u0000\u0000\u009b\u0099\u0001\u0000\u0000\u0000\u009b\u009c" - + "\u0001\u0000\u0000\u0000\u009c\u0013\u0001\u0000\u0000\u0000\u009d\u009b" - + "\u0001\u0000\u0000\u0000\u009e\u00a1\u0005\u0019\u0000\u0000\u009f\u00a0" - + "\u0005\"\u0000\u0000\u00a0\u00a2\u0003\"\u0011\u0000\u00a1\u009f\u0001" - + "\u0000\u0000\u0000\u00a1\u00a2\u0001\u0000\u0000\u0000\u00a2\u0015\u0001" - + "\u0000\u0000\u0000\u00a3\u00a4\u0007\u0000\u0000\u0000\u00a4\u0017\u0001" - + "\u0000\u0000\u0000\u00a5\u00a6\u0005\r\u0000\u0000\u00a6\u00a7\u0003\"" - + "\u0011\u0000\u00a7\u00a8\u0005\"\u0000\u0000\u00a8\u00b0\u0003\u001e\u000f" - + "\u0000\u00a9\u00aa\u0005\b\u0000\u0000\u00aa\u00ab\u0003\"\u0011\u0000" - + "\u00ab\u00ac\u0005\"\u0000\u0000\u00ac\u00ad\u0003\u001e\u000f\u0000\u00ad" - + "\u00af\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000\u00af" - + "\u00b2\u0001\u0000\u0000\u0000\u00b0\u00ae\u0001\u0000\u0000\u0000\u00b0" - + "\u00b1\u0001\u0000\u0000\u0000\u00b1\u00b6\u0001\u0000\u0000\u0000\u00b2" - + "\u00b0\u0001\u0000\u0000\u0000\u00b3\u00b4\u0005\t\u0000\u0000\u00b4\u00b5" - + "\u0005\"\u0000\u0000\u00b5\u00b7\u0003\u001e\u000f\u0000\u00b6\u00b3\u0001" - + "\u0000\u0000\u0000\u00b6\u00b7\u0001\u0000\u0000\u0000\u00b7\u0019\u0001" - + "\u0000\u0000\u0000\u00b8\u00b9\u0005\u0017\u0000\u0000\u00b9\u00ba\u0003" - + "\"\u0011\u0000\u00ba\u00bb\u0005\"\u0000\u0000\u00bb\u00bf\u0003\u001e" - + "\u000f\u0000\u00bc\u00bd\u0005\t\u0000\u0000\u00bd\u00be\u0005\"\u0000" - + "\u0000\u00be\u00c0\u0003\u001e\u000f\u0000\u00bf\u00bc\u0001\u0000\u0000" - + "\u0000\u00bf\u00c0\u0001\u0000\u0000\u0000\u00c0\u001b\u0001\u0000\u0000" - + "\u0000\u00c1\u00c2\u0005\u000b\u0000\u0000\u00c2\u00c3\u0003*\u0015\u0000" - + "\u00c3\u00c4\u0005\"\u0000\u0000\u00c4\u00c8\u0003\u001e\u000f\u0000\u00c5" - + "\u00c6\u0005\t\u0000\u0000\u00c6\u00c7\u0005\"\u0000\u0000\u00c7\u00c9" - + "\u0003\u001e\u000f\u0000\u00c8\u00c5\u0001\u0000\u0000\u0000\u00c8\u00c9" - + "\u0001\u0000\u0000\u0000\u00c9\u001d\u0001\u0000\u0000\u0000\u00ca\u00d6" - + "\u0003\u0002\u0001\u0000\u00cb\u00cc\u0005\u0018\u0000\u0000\u00cc\u00cf" - + "\u0005\u0001\u0000\u0000\u00cd\u00d0\u0003\u0002\u0001\u0000\u00ce\u00d0" - + "\u0003\u0004\u0002\u0000\u00cf\u00cd\u0001\u0000\u0000\u0000\u00cf\u00ce" - + "\u0001\u0000\u0000\u0000\u00d0\u00d1\u0001\u0000\u0000\u0000\u00d1\u00cf" - + "\u0001\u0000\u0000\u0000\u00d1\u00d2\u0001\u0000\u0000\u0000\u00d2\u00d3" - + "\u0001\u0000\u0000\u0000\u00d3\u00d4\u0005\u0002\u0000\u0000\u00d4\u00d6" - + "\u0001\u0000\u0000\u0000\u00d5\u00ca\u0001\u0000\u0000\u0000\u00d5\u00cb" - + "\u0001\u0000\u0000\u0000\u00d6\u001f\u0001\u0000\u0000\u0000\u00d7\u00e5" - + "\u00055\u0000\u0000\u00d8\u00e5\u00056\u0000\u0000\u00d9\u00e5\u00057" - + "\u0000\u0000\u00da\u00e5\u00058\u0000\u0000\u00db\u00e5\u00059\u0000\u0000" - + "\u00dc\u00e5\u0005:\u0000\u0000\u00dd\u00e5\u0005;\u0000\u0000\u00de\u00e5" - + "\u0005\u000f\u0000\u0000\u00df\u00e0\u0005\u0012\u0000\u0000\u00e0\u00e5" - + "\u0005\u000f\u0000\u0000\u00e1\u00e5\u0005\u0010\u0000\u0000\u00e2\u00e3" - + "\u0005\u0010\u0000\u0000\u00e3\u00e5\u0005\u0012\u0000\u0000\u00e4\u00d7" - + "\u0001\u0000\u0000\u0000\u00e4\u00d8\u0001\u0000\u0000\u0000\u00e4\u00d9" - + "\u0001\u0000\u0000\u0000\u00e4\u00da\u0001\u0000\u0000\u0000\u00e4\u00db" - + "\u0001\u0000\u0000\u0000\u00e4\u00dc\u0001\u0000\u0000\u0000\u00e4\u00dd" - + "\u0001\u0000\u0000\u0000\u00e4\u00de\u0001\u0000\u0000\u0000\u00e4\u00df" - + "\u0001\u0000\u0000\u0000\u00e4\u00e1\u0001\u0000\u0000\u0000\u00e4\u00e2" - + "\u0001\u0000\u0000\u0000\u00e5!\u0001\u0000\u0000\u0000\u00e6\u00e7\u0006" - + "\u0011\uffff\uffff\u0000\u00e7\u00eb\u0003$\u0012\u0000\u00e8\u00ea\u0003" - + "(\u0014\u0000\u00e9\u00e8\u0001\u0000\u0000\u0000\u00ea\u00ed\u0001\u0000" - + "\u0000\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000\u00eb\u00ec\u0001\u0000" - + "\u0000\u0000\u00ec\u00f7\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000" - + "\u0000\u0000\u00ee\u00f0\u0007\u0001\u0000\u0000\u00ef\u00ee\u0001\u0000" - + "\u0000\u0000\u00f0\u00f1\u0001\u0000\u0000\u0000\u00f1\u00ef\u0001\u0000" - + "\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2\u00f3\u0001\u0000" - + "\u0000\u0000\u00f3\u00f7\u0003\"\u0011\f\u00f4\u00f5\u0005\u0012\u0000" - + "\u0000\u00f5\u00f7\u0003\"\u0011\u0005\u00f6\u00e6\u0001\u0000\u0000\u0000" - + "\u00f6\u00ef\u0001\u0000\u0000\u0000\u00f6\u00f4\u0001\u0000\u0000\u0000" - + "\u00f7\u011f\u0001\u0000\u0000\u0000\u00f8\u00f9\n\r\u0000\u0000\u00f9" - + "\u00fa\u0005$\u0000\u0000\u00fa\u011e\u0003\"\u0011\u000e\u00fb\u00fc" - + "\n\u000b\u0000\u0000\u00fc\u00fd\u0007\u0002\u0000\u0000\u00fd\u011e\u0003" - + "\"\u0011\f\u00fe\u00ff\n\n\u0000\u0000\u00ff\u0100\u0007\u0003\u0000\u0000" - + "\u0100\u011e\u0003\"\u0011\u000b\u0101\u0102\n\t\u0000\u0000\u0102\u0103" - + "\u0007\u0004\u0000\u0000\u0103\u011e\u0003\"\u0011\n\u0104\u0105\n\b\u0000" - + "\u0000\u0105\u0106\u0005*\u0000\u0000\u0106\u011e\u0003\"\u0011\t\u0107" - + "\u0108\n\u0007\u0000\u0000\u0108\u0109\u0005)\u0000\u0000\u0109\u011e" - + "\u0003\"\u0011\b\u010a\u010b\n\u0006\u0000\u0000\u010b\u010c\u0005(\u0000" - + "\u0000\u010c\u011e\u0003\"\u0011\u0007\u010d\u010e\n\u0004\u0000\u0000" - + "\u010e\u010f\u0003 \u0010\u0000\u010f\u0110\u0003\"\u0011\u0005\u0110" - + "\u011e\u0001\u0000\u0000\u0000\u0111\u0112\n\u0003\u0000\u0000\u0112\u0113" - + "\u0005\u0005\u0000\u0000\u0113\u011e\u0003\"\u0011\u0004\u0114\u0115\n" - + "\u0002\u0000\u0000\u0115\u0116\u0005\u0013\u0000\u0000\u0116\u011e\u0003" - + "\"\u0011\u0003\u0117\u0118\n\u0001\u0000\u0000\u0118\u0119\u0005\r\u0000" - + "\u0000\u0119\u011a\u0003\"\u0011\u0000\u011a\u011b\u0005\t\u0000\u0000" - + "\u011b\u011c\u0003\"\u0011\u0002\u011c\u011e\u0001\u0000\u0000\u0000\u011d" - + "\u00f8\u0001\u0000\u0000\u0000\u011d\u00fb\u0001\u0000\u0000\u0000\u011d" - + "\u00fe\u0001\u0000\u0000\u0000\u011d\u0101\u0001\u0000\u0000\u0000\u011d" - + "\u0104\u0001\u0000\u0000\u0000\u011d\u0107\u0001\u0000\u0000\u0000\u011d" - + "\u010a\u0001\u0000\u0000\u0000\u011d\u010d\u0001\u0000\u0000\u0000\u011d" - + "\u0111\u0001\u0000\u0000\u0000\u011d\u0114\u0001\u0000\u0000\u0000\u011d" - + "\u0117\u0001\u0000\u0000\u0000\u011e\u0121\u0001\u0000\u0000\u0000\u011f" - + "\u011d\u0001\u0000\u0000\u0000\u011f\u0120\u0001\u0000\u0000\u0000\u0120" - + "#\u0001\u0000\u0000\u0000\u0121\u011f\u0001\u0000\u0000\u0000\u0122\u0124" - + "\u0005\u001f\u0000\u0000\u0123\u0125\u0003&\u0013\u0000\u0124\u0123\u0001" - + "\u0000\u0000\u0000\u0124\u0125\u0001\u0000\u0000\u0000\u0125\u0126\u0001" - + "\u0000\u0000\u0000\u0126\u013d\u0005 \u0000\u0000\u0127\u0129\u0005&\u0000" - + "\u0000\u0128\u012a\u0003&\u0013\u0000\u0129\u0128\u0001\u0000\u0000\u0000" - + "\u0129\u012a\u0001\u0000\u0000\u0000\u012a\u012b\u0001\u0000\u0000\u0000" - + "\u012b\u013d\u0005\'\u0000\u0000\u012c\u012e\u00053\u0000\u0000\u012d" - + "\u012f\u0003&\u0013\u0000\u012e\u012d\u0001\u0000\u0000\u0000\u012e\u012f" - + "\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130\u013d" - + "\u00054\u0000\u0000\u0131\u013d\u0005\u0019\u0000\u0000\u0132\u013d\u0005" - + "\u0004\u0000\u0000\u0133\u0135\u0005\u0003\u0000\u0000\u0134\u0133\u0001" - + "\u0000\u0000\u0000\u0135\u0136\u0001\u0000\u0000\u0000\u0136\u0134\u0001" - + "\u0000\u0000\u0000\u0136\u0137\u0001\u0000\u0000\u0000\u0137\u013d\u0001" - + "\u0000\u0000\u0000\u0138\u013d\u0005\u001d\u0000\u0000\u0139\u013d\u0005" - + "\u0011\u0000\u0000\u013a\u013d\u0005\u0015\u0000\u0000\u013b\u013d\u0005" - + "\n\u0000\u0000\u013c\u0122\u0001\u0000\u0000\u0000\u013c\u0127\u0001\u0000" - + "\u0000\u0000\u013c\u012c\u0001\u0000\u0000\u0000\u013c\u0131\u0001\u0000" - + "\u0000\u0000\u013c\u0132\u0001\u0000\u0000\u0000\u013c\u0134\u0001\u0000" - + "\u0000\u0000\u013c\u0138\u0001\u0000\u0000\u0000\u013c\u0139\u0001\u0000" - + "\u0000\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000" - + "\u0000\u0000\u013d%\u0001\u0000\u0000\u0000\u013e\u014a\u0003\"\u0011" - + "\u0000\u013f\u014b\u00032\u0019\u0000\u0140\u0141\u0005!\u0000\u0000\u0141" - + "\u0143\u0003\"\u0011\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0143\u0146" - + "\u0001\u0000\u0000\u0000\u0144\u0142\u0001\u0000\u0000\u0000\u0144\u0145" - + "\u0001\u0000\u0000\u0000\u0145\u0148\u0001\u0000\u0000\u0000\u0146\u0144" - + "\u0001\u0000\u0000\u0000\u0147\u0149\u0005!\u0000\u0000\u0148\u0147\u0001" - + "\u0000\u0000\u0000\u0148\u0149\u0001\u0000\u0000\u0000\u0149\u014b\u0001" - + "\u0000\u0000\u0000\u014a\u013f\u0001\u0000\u0000\u0000\u014a\u0144\u0001" - + "\u0000\u0000\u0000\u014b\'\u0001\u0000\u0000\u0000\u014c\u014e\u0005\u001f" - + "\u0000\u0000\u014d\u014f\u0003,\u0016\u0000\u014e\u014d\u0001\u0000\u0000" - + "\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014f\u0150\u0001\u0000\u0000" - + "\u0000\u0150\u0171\u0005 \u0000\u0000\u0151\u0152\u0005&\u0000\u0000\u0152" - + "\u0157\u0003\"\u0011\u0000\u0153\u0154\u0005!\u0000\u0000\u0154\u0156" - + "\u0003\"\u0011\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0156\u0159\u0001" - + "\u0000\u0000\u0000\u0157\u0155\u0001\u0000\u0000\u0000\u0157\u0158\u0001" - + "\u0000\u0000\u0000\u0158\u015b\u0001\u0000\u0000\u0000\u0159\u0157\u0001" - + "\u0000\u0000\u0000\u015a\u015c\u0005!\u0000\u0000\u015b\u015a\u0001\u0000" - + "\u0000\u0000\u015b\u015c\u0001\u0000\u0000\u0000\u015c\u015d\u0001\u0000" - + "\u0000\u0000\u015d\u015e\u0005\'\u0000\u0000\u015e\u0171\u0001\u0000\u0000" - + "\u0000\u015f\u0160\u0005\u001c\u0000\u0000\u0160\u0171\u0005\u0019\u0000" - + "\u0000\u0161\u0163\u0005&\u0000\u0000\u0162\u0164\u0003\"\u0011\u0000" - + "\u0163\u0162\u0001\u0000\u0000\u0000\u0163\u0164\u0001\u0000\u0000\u0000" - + "\u0164\u0165\u0001\u0000\u0000\u0000\u0165\u0167\u0005\"\u0000\u0000\u0166" - + "\u0168\u0003\"\u0011\u0000\u0167\u0166\u0001\u0000\u0000\u0000\u0167\u0168" - + "\u0001\u0000\u0000\u0000\u0168\u016d\u0001\u0000\u0000\u0000\u0169\u016b" - + "\u0005\"\u0000\u0000\u016a\u016c\u0003\"\u0011\u0000\u016b\u016a\u0001" - + "\u0000\u0000\u0000\u016b\u016c\u0001\u0000\u0000\u0000\u016c\u016e\u0001" - + "\u0000\u0000\u0000\u016d\u0169\u0001\u0000\u0000\u0000\u016d\u016e\u0001" - + "\u0000\u0000\u0000\u016e\u016f\u0001\u0000\u0000\u0000\u016f\u0171\u0005" - + "\'\u0000\u0000\u0170\u014c\u0001\u0000\u0000\u0000\u0170\u0151\u0001\u0000" - + "\u0000\u0000\u0170\u015f\u0001\u0000\u0000\u0000\u0170\u0161\u0001\u0000" - + "\u0000\u0000\u0171)\u0001\u0000\u0000\u0000\u0172\u0177\u0003\"\u0011" - + "\u0000\u0173\u0174\u0005!\u0000\u0000\u0174\u0176\u0003\"\u0011\u0000" - + "\u0175\u0173\u0001\u0000\u0000\u0000\u0176\u0179\u0001\u0000\u0000\u0000" - + "\u0177\u0175\u0001\u0000\u0000\u0000\u0177\u0178\u0001\u0000\u0000\u0000" - + "\u0178\u017b\u0001\u0000\u0000\u0000\u0179\u0177\u0001\u0000\u0000\u0000" - + "\u017a\u017c\u0005!\u0000\u0000\u017b\u017a\u0001\u0000\u0000\u0000\u017b" - + "\u017c\u0001\u0000\u0000\u0000\u017c+\u0001\u0000\u0000\u0000\u017d\u0182" - + "\u0003.\u0017\u0000\u017e\u017f\u0005!\u0000\u0000\u017f\u0181\u0003." - + "\u0017\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0181\u0184\u0001\u0000" - + "\u0000\u0000\u0182\u0180\u0001\u0000\u0000\u0000\u0182\u0183\u0001\u0000" - + "\u0000\u0000\u0183\u0186\u0001\u0000\u0000\u0000\u0184\u0182\u0001\u0000" - + "\u0000\u0000\u0185\u0187\u0005!\u0000\u0000\u0186\u0185\u0001\u0000\u0000" - + "\u0000\u0186\u0187\u0001\u0000\u0000\u0000\u0187-\u0001\u0000\u0000\u0000" - + "\u0188\u018a\u0003\"\u0011\u0000\u0189\u018b\u00032\u0019\u0000\u018a" - + "\u0189\u0001\u0000\u0000\u0000\u018a\u018b\u0001\u0000\u0000\u0000\u018b" - + "\u0191\u0001\u0000\u0000\u0000\u018c\u018d\u0003\"\u0011\u0000\u018d\u018e" - + "\u0005%\u0000\u0000\u018e\u018f\u0003\"\u0011\u0000\u018f\u0191\u0001" - + "\u0000\u0000\u0000\u0190\u0188\u0001\u0000\u0000\u0000\u0190\u018c\u0001" - + "\u0000\u0000\u0000\u0191/\u0001\u0000\u0000\u0000\u0192\u0195\u00032\u0019" - + "\u0000\u0193\u0195\u00034\u001a\u0000\u0194\u0192\u0001\u0000\u0000\u0000" - + "\u0194\u0193\u0001\u0000\u0000\u0000\u01951\u0001\u0000\u0000\u0000\u0196" - + "\u0197\u0005\u000b\u0000\u0000\u0197\u0198\u0003*\u0015\u0000\u0198\u0199" - + "\u0005\u000f\u0000\u0000\u0199\u019b\u0003\"\u0011\u0000\u019a\u019c\u0003" - + "0\u0018\u0000\u019b\u019a\u0001\u0000\u0000\u0000\u019b\u019c\u0001\u0000" - + "\u0000\u0000\u019c3\u0001\u0000\u0000\u0000\u019d\u019e\u0005\r\u0000" - + "\u0000\u019e\u01a0\u0003\"\u0011\u0000\u019f\u01a1\u00030\u0018\u0000" - + "\u01a0\u019f\u0001\u0000\u0000\u0000\u01a0\u01a1\u0001\u0000\u0000\u0000" - + "\u01a15\u0001\u0000\u0000\u000089>@JNV\\djtxz\u0081\u0088\u0091\u0097" - + "\u009b\u00a1\u00b0\u00b6\u00bf\u00c8\u00cf\u00d1\u00d5\u00e4\u00eb\u00f1" - + "\u00f6\u011d\u011f\u0124\u0129\u012e\u0136\u013c\u0144\u0148\u014a\u014e" - + "\u0157\u015b\u0163\u0167\u016b\u016d\u0170\u0177\u017b\u0182\u0186\u018a" - + "\u0190\u0194\u019b\u01a0"; + + + "\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002" + + "\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002" + + "\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002" + + "\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007\u000f" + + "\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007\u0012" + + "\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007\u0015" + + "\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007\u0018" + + "\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0001\u0000\u0005\u0000" + + "8\b\u0000\n\u0000\f\u0000;\t\u0000\u0001\u0000\u0001\u0000\u0005\u0000" + + "?\b\u0000\n\u0000\f\u0000B\t\u0000\u0001\u0000\u0001\u0000\u0001\u0001" + + "\u0001\u0001\u0001\u0001\u0005\u0001I\b\u0001\n\u0001\f\u0001L\t\u0001" + + "\u0001\u0001\u0003\u0001O\b\u0001\u0001\u0001\u0001\u0001\u0001\u0002" + + "\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002W\b\u0002\u0001\u0003" + + "\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003]\b\u0003\u0001\u0004" + + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0003\u0005" + + "e\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006" + + "k\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006" + + "\u0001\u0006\u0005\u0006s\b\u0006\n\u0006\f\u0006v\t\u0006\u0001\u0006" + + "\u0003\u0006y\b\u0006\u0003\u0006{\b\u0006\u0001\u0007\u0001\u0007\u0001" + + "\u0007\u0005\u0007\u0080\b\u0007\n\u0007\f\u0007\u0083\t\u0007\u0001\b" + + "\u0001\b\u0001\b\u0001\b\u0003\b\u0089\b\b\u0001\b\u0001\b\u0001\b\u0001" + + "\b\u0001\t\u0001\t\u0001\t\u0003\t\u0092\b\t\u0001\t\u0001\t\u0001\t\u0001" + + "\t\u0003\t\u0098\b\t\u0005\t\u009a\b\t\n\t\f\t\u009d\t\t\u0001\n\u0001" + + "\n\u0001\n\u0003\n\u00a2\b\n\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001" + + "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0005\f\u00af\b\f\n" + + "\f\f\f\u00b2\t\f\u0001\f\u0001\f\u0001\f\u0003\f\u00b7\b\f\u0001\r\u0001" + + "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0003\r\u00c0\b\r\u0001\u000e" + + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e" + + "\u0003\u000e\u00c9\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f" + + "\u0001\u000f\u0004\u000f\u00d0\b\u000f\u000b\u000f\f\u000f\u00d1\u0001" + + "\u000f\u0001\u000f\u0003\u000f\u00d6\b\u000f\u0001\u0010\u0001\u0010\u0001" + + "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001" + + "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0003\u0010\u00e5" + + "\b\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u00ea\b\u0011" + + "\n\u0011\f\u0011\u00ed\t\u0011\u0001\u0011\u0004\u0011\u00f0\b\u0011\u000b" + + "\u0011\f\u0011\u00f1\u0001\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u00f7" + + "\b\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" + + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" + + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" + + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" + + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" + + "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001" + + "\u0011\u0001\u0011\u0005\u0011\u011e\b\u0011\n\u0011\f\u0011\u0121\t\u0011" + + "\u0001\u0012\u0001\u0012\u0003\u0012\u0125\b\u0012\u0001\u0012\u0001\u0012" + + "\u0001\u0012\u0003\u0012\u012a\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012" + + "\u0003\u0012\u012f\b\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012" + + "\u0004\u0012\u0135\b\u0012\u000b\u0012\f\u0012\u0136\u0001\u0012\u0001" + + "\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u013d\b\u0012\u0001\u0013\u0001" + + "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0143\b\u0013\n\u0013\f\u0013" + + "\u0146\t\u0013\u0001\u0013\u0003\u0013\u0149\b\u0013\u0003\u0013\u014b" + + "\b\u0013\u0001\u0014\u0001\u0014\u0003\u0014\u014f\b\u0014\u0001\u0014" + + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0005\u0014\u0156\b\u0014" + + "\n\u0014\f\u0014\u0159\t\u0014\u0001\u0014\u0003\u0014\u015c\b\u0014\u0001" + + "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0003" + + "\u0014\u0164\b\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0168\b\u0014" + + "\u0001\u0014\u0001\u0014\u0003\u0014\u016c\b\u0014\u0003\u0014\u016e\b" + + "\u0014\u0001\u0014\u0003\u0014\u0171\b\u0014\u0001\u0015\u0001\u0015\u0001" + + "\u0015\u0005\u0015\u0176\b\u0015\n\u0015\f\u0015\u0179\t\u0015\u0001\u0015" + + "\u0003\u0015\u017c\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016" + + "\u0181\b\u0016\n\u0016\f\u0016\u0184\t\u0016\u0001\u0016\u0003\u0016\u0187" + + "\b\u0016\u0001\u0017\u0001\u0017\u0003\u0017\u018b\b\u0017\u0001\u0017" + + "\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017\u0191\b\u0017\u0001\u0018" + + "\u0001\u0018\u0003\u0018\u0195\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019" + + "\u0001\u0019\u0001\u0019\u0003\u0019\u019c\b\u0019\u0001\u001a\u0001\u001a" + + "\u0001\u001a\u0003\u001a\u01a1\b\u001a\u0001\u001a\u0000\u0001\"\u001b" + + "\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a" + + "\u001c\u001e \"$&(*,.024\u0000\u0005\u0002\u0000%%>J\u0002\u0000-.22\u0003" + + "\u0000\u001e\u001e/1<<\u0001\u0000-.\u0001\u0000+,\u01e0\u00009\u0001" + + "\u0000\u0000\u0000\u0002E\u0001\u0000\u0000\u0000\u0004V\u0001\u0000\u0000" + + "\u0000\u0006\\\u0001\u0000\u0000\u0000\b^\u0001\u0000\u0000\u0000\nb\u0001" + + "\u0000\u0000\u0000\fz\u0001\u0000\u0000\u0000\u000e|\u0001\u0000\u0000" + + "\u0000\u0010\u0084\u0001\u0000\u0000\u0000\u0012\u008e\u0001\u0000\u0000" + + "\u0000\u0014\u009e\u0001\u0000\u0000\u0000\u0016\u00a3\u0001\u0000\u0000" + + "\u0000\u0018\u00a5\u0001\u0000\u0000\u0000\u001a\u00b8\u0001\u0000\u0000" + + "\u0000\u001c\u00c1\u0001\u0000\u0000\u0000\u001e\u00d5\u0001\u0000\u0000" + + "\u0000 \u00e4\u0001\u0000\u0000\u0000\"\u00f6\u0001\u0000\u0000\u0000" + + "$\u013c\u0001\u0000\u0000\u0000&\u013e\u0001\u0000\u0000\u0000(\u0170" + + "\u0001\u0000\u0000\u0000*\u0172\u0001\u0000\u0000\u0000,\u017d\u0001\u0000" + + "\u0000\u0000.\u0190\u0001\u0000\u0000\u00000\u0194\u0001\u0000\u0000\u0000" + + "2\u0196\u0001\u0000\u0000\u00004\u019d\u0001\u0000\u0000\u000068\u0005" + + "\u0018\u0000\u000076\u0001\u0000\u0000\u00008;\u0001\u0000\u0000\u0000" + + "97\u0001\u0000\u0000\u00009:\u0001\u0000\u0000\u0000:@\u0001\u0000\u0000" + + "\u0000;9\u0001\u0000\u0000\u0000<?\u0003\u0002\u0001\u0000=?\u0003\u0004" + + "\u0002\u0000><\u0001\u0000\u0000\u0000>=\u0001\u0000\u0000\u0000?B\u0001" + + "\u0000\u0000\u0000@>\u0001\u0000\u0000\u0000@A\u0001\u0000\u0000\u0000" + + "AC\u0001\u0000\u0000\u0000B@\u0001\u0000\u0000\u0000CD\u0005\u0000\u0000" + + "\u0001D\u0001\u0001\u0000\u0000\u0000EJ\u0003\u0006\u0003\u0000FG\u0005" + + "#\u0000\u0000GI\u0003\u0006\u0003\u0000HF\u0001\u0000\u0000\u0000IL\u0001" + + "\u0000\u0000\u0000JH\u0001\u0000\u0000\u0000JK\u0001\u0000\u0000\u0000" + + "KN\u0001\u0000\u0000\u0000LJ\u0001\u0000\u0000\u0000MO\u0005#\u0000\u0000" + + "NM\u0001\u0000\u0000\u0000NO\u0001\u0000\u0000\u0000OP\u0001\u0000\u0000" + + "\u0000PQ\u0005\u0018\u0000\u0000Q\u0003\u0001\u0000\u0000\u0000RW\u0003" + + "\u0018\f\u0000SW\u0003\u001a\r\u0000TW\u0003\u001c\u000e\u0000UW\u0003" + + "\u0010\b\u0000VR\u0001\u0000\u0000\u0000VS\u0001\u0000\u0000\u0000VT\u0001" + + "\u0000\u0000\u0000VU\u0001\u0000\u0000\u0000W\u0005\u0001\u0000\u0000" + + "\u0000X]\u0003\b\u0004\u0000Y]\u0003\"\u0011\u0000Z]\u0003\n\u0005\u0000" + + "[]\u0003\f\u0006\u0000\\X\u0001\u0000\u0000\u0000\\Y\u0001\u0000\u0000" + + "\u0000\\Z\u0001\u0000\u0000\u0000\\[\u0001\u0000\u0000\u0000]\u0007\u0001" + + "\u0000\u0000\u0000^_\u0003*\u0015\u0000_`\u0003\u0016\u000b\u0000`a\u0003" + + "*\u0015\u0000a\t\u0001\u0000\u0000\u0000bd\u0005\u0014\u0000\u0000ce\u0003" + + "*\u0015\u0000dc\u0001\u0000\u0000\u0000de\u0001\u0000\u0000\u0000e\u000b" + + "\u0001\u0000\u0000\u0000fg\u0005\u000e\u0000\u0000gj\u0003\u000e\u0007" + + "\u0000hi\u0005\u0006\u0000\u0000ik\u0005\u0019\u0000\u0000jh\u0001\u0000" + + "\u0000\u0000jk\u0001\u0000\u0000\u0000k{\u0001\u0000\u0000\u0000lm\u0005" + + "\f\u0000\u0000mn\u0003\u000e\u0007\u0000nx\u0005\u000e\u0000\u0000ot\u0005" + + "\u0019\u0000\u0000pq\u0005!\u0000\u0000qs\u0005\u0019\u0000\u0000rp\u0001" + + "\u0000\u0000\u0000sv\u0001\u0000\u0000\u0000tr\u0001\u0000\u0000\u0000" + + "tu\u0001\u0000\u0000\u0000uy\u0001\u0000\u0000\u0000vt\u0001\u0000\u0000" + + "\u0000wy\u0005\u001e\u0000\u0000xo\u0001\u0000\u0000\u0000xw\u0001\u0000" + + "\u0000\u0000y{\u0001\u0000\u0000\u0000zf\u0001\u0000\u0000\u0000zl\u0001" + + "\u0000\u0000\u0000{\r\u0001\u0000\u0000\u0000|\u0081\u0005\u0019\u0000" + + "\u0000}~\u0005\u001c\u0000\u0000~\u0080\u0005\u0019\u0000\u0000\u007f" + + "}\u0001\u0000\u0000\u0000\u0080\u0083\u0001\u0000\u0000\u0000\u0081\u007f" + + "\u0001\u0000\u0000\u0000\u0081\u0082\u0001\u0000\u0000\u0000\u0082\u000f" + + "\u0001\u0000\u0000\u0000\u0083\u0081\u0001\u0000\u0000\u0000\u0084\u0085" + + "\u0005\u0007\u0000\u0000\u0085\u0086\u0005\u0019\u0000\u0000\u0086\u0088" + + "\u0005\u001f\u0000\u0000\u0087\u0089\u0003\u0012\t\u0000\u0088\u0087\u0001" + + "\u0000\u0000\u0000\u0088\u0089\u0001\u0000\u0000\u0000\u0089\u008a\u0001" + + "\u0000\u0000\u0000\u008a\u008b\u0005 \u0000\u0000\u008b\u008c\u0005\"" + + "\u0000\u0000\u008c\u008d\u0003\u001e\u000f\u0000\u008d\u0011\u0001\u0000" + + "\u0000\u0000\u008e\u0091\u0003\u0014\n\u0000\u008f\u0090\u0005%\u0000" + + "\u0000\u0090\u0092\u0003\"\u0011\u0000\u0091\u008f\u0001\u0000\u0000\u0000" + + "\u0091\u0092\u0001\u0000\u0000\u0000\u0092\u009b\u0001\u0000\u0000\u0000" + + "\u0093\u0094\u0005!\u0000\u0000\u0094\u0097\u0003\u0014\n\u0000\u0095" + + "\u0096\u0005%\u0000\u0000\u0096\u0098\u0003\"\u0011\u0000\u0097\u0095" + + "\u0001\u0000\u0000\u0000\u0097\u0098\u0001\u0000\u0000\u0000\u0098\u009a" + + "\u0001\u0000\u0000\u0000\u0099\u0093\u0001\u0000\u0000\u0000\u009a\u009d" + + "\u0001\u0000\u0000\u0000\u009b\u0099\u0001\u0000\u0000\u0000\u009b\u009c" + + "\u0001\u0000\u0000\u0000\u009c\u0013\u0001\u0000\u0000\u0000\u009d\u009b" + + "\u0001\u0000\u0000\u0000\u009e\u00a1\u0005\u0019\u0000\u0000\u009f\u00a0" + + "\u0005\"\u0000\u0000\u00a0\u00a2\u0003\"\u0011\u0000\u00a1\u009f\u0001" + + "\u0000\u0000\u0000\u00a1\u00a2\u0001\u0000\u0000\u0000\u00a2\u0015\u0001" + + "\u0000\u0000\u0000\u00a3\u00a4\u0007\u0000\u0000\u0000\u00a4\u0017\u0001" + + "\u0000\u0000\u0000\u00a5\u00a6\u0005\r\u0000\u0000\u00a6\u00a7\u0003\"" + + "\u0011\u0000\u00a7\u00a8\u0005\"\u0000\u0000\u00a8\u00b0\u0003\u001e\u000f" + + "\u0000\u00a9\u00aa\u0005\b\u0000\u0000\u00aa\u00ab\u0003\"\u0011\u0000" + + "\u00ab\u00ac\u0005\"\u0000\u0000\u00ac\u00ad\u0003\u001e\u000f\u0000\u00ad" + + "\u00af\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000\u00af" + + "\u00b2\u0001\u0000\u0000\u0000\u00b0\u00ae\u0001\u0000\u0000\u0000\u00b0" + + "\u00b1\u0001\u0000\u0000\u0000\u00b1\u00b6\u0001\u0000\u0000\u0000\u00b2" + + "\u00b0\u0001\u0000\u0000\u0000\u00b3\u00b4\u0005\t\u0000\u0000\u00b4\u00b5" + + "\u0005\"\u0000\u0000\u00b5\u00b7\u0003\u001e\u000f\u0000\u00b6\u00b3\u0001" + + "\u0000\u0000\u0000\u00b6\u00b7\u0001\u0000\u0000\u0000\u00b7\u0019\u0001" + + "\u0000\u0000\u0000\u00b8\u00b9\u0005\u0017\u0000\u0000\u00b9\u00ba\u0003" + + "\"\u0011\u0000\u00ba\u00bb\u0005\"\u0000\u0000\u00bb\u00bf\u0003\u001e" + + "\u000f\u0000\u00bc\u00bd\u0005\t\u0000\u0000\u00bd\u00be\u0005\"\u0000" + + "\u0000\u00be\u00c0\u0003\u001e\u000f\u0000\u00bf\u00bc\u0001\u0000\u0000" + + "\u0000\u00bf\u00c0\u0001\u0000\u0000\u0000\u00c0\u001b\u0001\u0000\u0000" + + "\u0000\u00c1\u00c2\u0005\u000b\u0000\u0000\u00c2\u00c3\u0003*\u0015\u0000" + + "\u00c3\u00c4\u0005\"\u0000\u0000\u00c4\u00c8\u0003\u001e\u000f\u0000\u00c5" + + "\u00c6\u0005\t\u0000\u0000\u00c6\u00c7\u0005\"\u0000\u0000\u00c7\u00c9" + + "\u0003\u001e\u000f\u0000\u00c8\u00c5\u0001\u0000\u0000\u0000\u00c8\u00c9" + + "\u0001\u0000\u0000\u0000\u00c9\u001d\u0001\u0000\u0000\u0000\u00ca\u00d6" + + "\u0003\u0002\u0001\u0000\u00cb\u00cc\u0005\u0018\u0000\u0000\u00cc\u00cf" + + "\u0005\u0001\u0000\u0000\u00cd\u00d0\u0003\u0002\u0001\u0000\u00ce\u00d0" + + "\u0003\u0004\u0002\u0000\u00cf\u00cd\u0001\u0000\u0000\u0000\u00cf\u00ce" + + "\u0001\u0000\u0000\u0000\u00d0\u00d1\u0001\u0000\u0000\u0000\u00d1\u00cf" + + "\u0001\u0000\u0000\u0000\u00d1\u00d2\u0001\u0000\u0000\u0000\u00d2\u00d3" + + "\u0001\u0000\u0000\u0000\u00d3\u00d4\u0005\u0002\u0000\u0000\u00d4\u00d6" + + "\u0001\u0000\u0000\u0000\u00d5\u00ca\u0001\u0000\u0000\u0000\u00d5\u00cb" + + "\u0001\u0000\u0000\u0000\u00d6\u001f\u0001\u0000\u0000\u0000\u00d7\u00e5" + + "\u00055\u0000\u0000\u00d8\u00e5\u00056\u0000\u0000\u00d9\u00e5\u00057" + + "\u0000\u0000\u00da\u00e5\u00058\u0000\u0000\u00db\u00e5\u00059\u0000\u0000" + + "\u00dc\u00e5\u0005:\u0000\u0000\u00dd\u00e5\u0005;\u0000\u0000\u00de\u00e5" + + "\u0005\u000f\u0000\u0000\u00df\u00e0\u0005\u0012\u0000\u0000\u00e0\u00e5" + + "\u0005\u000f\u0000\u0000\u00e1\u00e5\u0005\u0010\u0000\u0000\u00e2\u00e3" + + "\u0005\u0010\u0000\u0000\u00e3\u00e5\u0005\u0012\u0000\u0000\u00e4\u00d7" + + "\u0001\u0000\u0000\u0000\u00e4\u00d8\u0001\u0000\u0000\u0000\u00e4\u00d9" + + "\u0001\u0000\u0000\u0000\u00e4\u00da\u0001\u0000\u0000\u0000\u00e4\u00db" + + "\u0001\u0000\u0000\u0000\u00e4\u00dc\u0001\u0000\u0000\u0000\u00e4\u00dd" + + "\u0001\u0000\u0000\u0000\u00e4\u00de\u0001\u0000\u0000\u0000\u00e4\u00df" + + "\u0001\u0000\u0000\u0000\u00e4\u00e1\u0001\u0000\u0000\u0000\u00e4\u00e2" + + "\u0001\u0000\u0000\u0000\u00e5!\u0001\u0000\u0000\u0000\u00e6\u00e7\u0006" + + "\u0011\uffff\uffff\u0000\u00e7\u00eb\u0003$\u0012\u0000\u00e8\u00ea\u0003" + + "(\u0014\u0000\u00e9\u00e8\u0001\u0000\u0000\u0000\u00ea\u00ed\u0001\u0000" + + "\u0000\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000\u00eb\u00ec\u0001\u0000" + + "\u0000\u0000\u00ec\u00f7\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000" + + "\u0000\u0000\u00ee\u00f0\u0007\u0001\u0000\u0000\u00ef\u00ee\u0001\u0000" + + "\u0000\u0000\u00f0\u00f1\u0001\u0000\u0000\u0000\u00f1\u00ef\u0001\u0000" + + "\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2\u00f3\u0001\u0000" + + "\u0000\u0000\u00f3\u00f7\u0003\"\u0011\f\u00f4\u00f5\u0005\u0012\u0000" + + "\u0000\u00f5\u00f7\u0003\"\u0011\u0005\u00f6\u00e6\u0001\u0000\u0000\u0000" + + "\u00f6\u00ef\u0001\u0000\u0000\u0000\u00f6\u00f4\u0001\u0000\u0000\u0000" + + "\u00f7\u011f\u0001\u0000\u0000\u0000\u00f8\u00f9\n\r\u0000\u0000\u00f9" + + "\u00fa\u0005$\u0000\u0000\u00fa\u011e\u0003\"\u0011\u000e\u00fb\u00fc" + + "\n\u000b\u0000\u0000\u00fc\u00fd\u0007\u0002\u0000\u0000\u00fd\u011e\u0003" + + "\"\u0011\f\u00fe\u00ff\n\n\u0000\u0000\u00ff\u0100\u0007\u0003\u0000\u0000" + + "\u0100\u011e\u0003\"\u0011\u000b\u0101\u0102\n\t\u0000\u0000\u0102\u0103" + + "\u0007\u0004\u0000\u0000\u0103\u011e\u0003\"\u0011\n\u0104\u0105\n\b\u0000" + + "\u0000\u0105\u0106\u0005*\u0000\u0000\u0106\u011e\u0003\"\u0011\t\u0107" + + "\u0108\n\u0007\u0000\u0000\u0108\u0109\u0005)\u0000\u0000\u0109\u011e" + + "\u0003\"\u0011\b\u010a\u010b\n\u0006\u0000\u0000\u010b\u010c\u0005(\u0000" + + "\u0000\u010c\u011e\u0003\"\u0011\u0007\u010d\u010e\n\u0004\u0000\u0000" + + "\u010e\u010f\u0003 \u0010\u0000\u010f\u0110\u0003\"\u0011\u0005\u0110" + + "\u011e\u0001\u0000\u0000\u0000\u0111\u0112\n\u0003\u0000\u0000\u0112\u0113" + + "\u0005\u0005\u0000\u0000\u0113\u011e\u0003\"\u0011\u0004\u0114\u0115\n" + + "\u0002\u0000\u0000\u0115\u0116\u0005\u0013\u0000\u0000\u0116\u011e\u0003" + + "\"\u0011\u0003\u0117\u0118\n\u0001\u0000\u0000\u0118\u0119\u0005\r\u0000" + + "\u0000\u0119\u011a\u0003\"\u0011\u0000\u011a\u011b\u0005\t\u0000\u0000" + + "\u011b\u011c\u0003\"\u0011\u0002\u011c\u011e\u0001\u0000\u0000\u0000\u011d" + + "\u00f8\u0001\u0000\u0000\u0000\u011d\u00fb\u0001\u0000\u0000\u0000\u011d" + + "\u00fe\u0001\u0000\u0000\u0000\u011d\u0101\u0001\u0000\u0000\u0000\u011d" + + "\u0104\u0001\u0000\u0000\u0000\u011d\u0107\u0001\u0000\u0000\u0000\u011d" + + "\u010a\u0001\u0000\u0000\u0000\u011d\u010d\u0001\u0000\u0000\u0000\u011d" + + "\u0111\u0001\u0000\u0000\u0000\u011d\u0114\u0001\u0000\u0000\u0000\u011d" + + "\u0117\u0001\u0000\u0000\u0000\u011e\u0121\u0001\u0000\u0000\u0000\u011f" + + "\u011d\u0001\u0000\u0000\u0000\u011f\u0120\u0001\u0000\u0000\u0000\u0120" + + "#\u0001\u0000\u0000\u0000\u0121\u011f\u0001\u0000\u0000\u0000\u0122\u0124" + + "\u0005\u001f\u0000\u0000\u0123\u0125\u0003&\u0013\u0000\u0124\u0123\u0001" + + "\u0000\u0000\u0000\u0124\u0125\u0001\u0000\u0000\u0000\u0125\u0126\u0001" + + "\u0000\u0000\u0000\u0126\u013d\u0005 \u0000\u0000\u0127\u0129\u0005&\u0000" + + "\u0000\u0128\u012a\u0003&\u0013\u0000\u0129\u0128\u0001\u0000\u0000\u0000" + + "\u0129\u012a\u0001\u0000\u0000\u0000\u012a\u012b\u0001\u0000\u0000\u0000" + + "\u012b\u013d\u0005\'\u0000\u0000\u012c\u012e\u00053\u0000\u0000\u012d" + + "\u012f\u0003&\u0013\u0000\u012e\u012d\u0001\u0000\u0000\u0000\u012e\u012f" + + "\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130\u013d" + + "\u00054\u0000\u0000\u0131\u013d\u0005\u0019\u0000\u0000\u0132\u013d\u0005" + + "\u0004\u0000\u0000\u0133\u0135\u0005\u0003\u0000\u0000\u0134\u0133\u0001" + + "\u0000\u0000\u0000\u0135\u0136\u0001\u0000\u0000\u0000\u0136\u0134\u0001" + + "\u0000\u0000\u0000\u0136\u0137\u0001\u0000\u0000\u0000\u0137\u013d\u0001" + + "\u0000\u0000\u0000\u0138\u013d\u0005\u001d\u0000\u0000\u0139\u013d\u0005" + + "\u0011\u0000\u0000\u013a\u013d\u0005\u0015\u0000\u0000\u013b\u013d\u0005" + + "\n\u0000\u0000\u013c\u0122\u0001\u0000\u0000\u0000\u013c\u0127\u0001\u0000" + + "\u0000\u0000\u013c\u012c\u0001\u0000\u0000\u0000\u013c\u0131\u0001\u0000" + + "\u0000\u0000\u013c\u0132\u0001\u0000\u0000\u0000\u013c\u0134\u0001\u0000" + + "\u0000\u0000\u013c\u0138\u0001\u0000\u0000\u0000\u013c\u0139\u0001\u0000" + + "\u0000\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013b\u0001\u0000" + + "\u0000\u0000\u013d%\u0001\u0000\u0000\u0000\u013e\u014a\u0003\"\u0011" + + "\u0000\u013f\u014b\u00032\u0019\u0000\u0140\u0141\u0005!\u0000\u0000\u0141" + + "\u0143\u0003\"\u0011\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0143\u0146" + + "\u0001\u0000\u0000\u0000\u0144\u0142\u0001\u0000\u0000\u0000\u0144\u0145" + + "\u0001\u0000\u0000\u0000\u0145\u0148\u0001\u0000\u0000\u0000\u0146\u0144" + + "\u0001\u0000\u0000\u0000\u0147\u0149\u0005!\u0000\u0000\u0148\u0147\u0001" + + "\u0000\u0000\u0000\u0148\u0149\u0001\u0000\u0000\u0000\u0149\u014b\u0001" + + "\u0000\u0000\u0000\u014a\u013f\u0001\u0000\u0000\u0000\u014a\u0144\u0001" + + "\u0000\u0000\u0000\u014b\'\u0001\u0000\u0000\u0000\u014c\u014e\u0005\u001f" + + "\u0000\u0000\u014d\u014f\u0003,\u0016\u0000\u014e\u014d\u0001\u0000\u0000" + + "\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014f\u0150\u0001\u0000\u0000" + + "\u0000\u0150\u0171\u0005 \u0000\u0000\u0151\u0152\u0005&\u0000\u0000\u0152" + + "\u0157\u0003\"\u0011\u0000\u0153\u0154\u0005!\u0000\u0000\u0154\u0156" + + "\u0003\"\u0011\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0156\u0159\u0001" + + "\u0000\u0000\u0000\u0157\u0155\u0001\u0000\u0000\u0000\u0157\u0158\u0001" + + "\u0000\u0000\u0000\u0158\u015b\u0001\u0000\u0000\u0000\u0159\u0157\u0001" + + "\u0000\u0000\u0000\u015a\u015c\u0005!\u0000\u0000\u015b\u015a\u0001\u0000" + + "\u0000\u0000\u015b\u015c\u0001\u0000\u0000\u0000\u015c\u015d\u0001\u0000" + + "\u0000\u0000\u015d\u015e\u0005\'\u0000\u0000\u015e\u0171\u0001\u0000\u0000" + + "\u0000\u015f\u0160\u0005\u001c\u0000\u0000\u0160\u0171\u0005\u0019\u0000" + + "\u0000\u0161\u0163\u0005&\u0000\u0000\u0162\u0164\u0003\"\u0011\u0000" + + "\u0163\u0162\u0001\u0000\u0000\u0000\u0163\u0164\u0001\u0000\u0000\u0000" + + "\u0164\u0165\u0001\u0000\u0000\u0000\u0165\u0167\u0005\"\u0000\u0000\u0166" + + "\u0168\u0003\"\u0011\u0000\u0167\u0166\u0001\u0000\u0000\u0000\u0167\u0168" + + "\u0001\u0000\u0000\u0000\u0168\u016d\u0001\u0000\u0000\u0000\u0169\u016b" + + "\u0005\"\u0000\u0000\u016a\u016c\u0003\"\u0011\u0000\u016b\u016a\u0001" + + "\u0000\u0000\u0000\u016b\u016c\u0001\u0000\u0000\u0000\u016c\u016e\u0001" + + "\u0000\u0000\u0000\u016d\u0169\u0001\u0000\u0000\u0000\u016d\u016e\u0001" + + "\u0000\u0000\u0000\u016e\u016f\u0001\u0000\u0000\u0000\u016f\u0171\u0005" + + "\'\u0000\u0000\u0170\u014c\u0001\u0000\u0000\u0000\u0170\u0151\u0001\u0000" + + "\u0000\u0000\u0170\u015f\u0001\u0000\u0000\u0000\u0170\u0161\u0001\u0000" + + "\u0000\u0000\u0171)\u0001\u0000\u0000\u0000\u0172\u0177\u0003\"\u0011" + + "\u0000\u0173\u0174\u0005!\u0000\u0000\u0174\u0176\u0003\"\u0011\u0000" + + "\u0175\u0173\u0001\u0000\u0000\u0000\u0176\u0179\u0001\u0000\u0000\u0000" + + "\u0177\u0175\u0001\u0000\u0000\u0000\u0177\u0178\u0001\u0000\u0000\u0000" + + "\u0178\u017b\u0001\u0000\u0000\u0000\u0179\u0177\u0001\u0000\u0000\u0000" + + "\u017a\u017c\u0005!\u0000\u0000\u017b\u017a\u0001\u0000\u0000\u0000\u017b" + + "\u017c\u0001\u0000\u0000\u0000\u017c+\u0001\u0000\u0000\u0000\u017d\u0182" + + "\u0003.\u0017\u0000\u017e\u017f\u0005!\u0000\u0000\u017f\u0181\u0003." + + "\u0017\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0181\u0184\u0001\u0000" + + "\u0000\u0000\u0182\u0180\u0001\u0000\u0000\u0000\u0182\u0183\u0001\u0000" + + "\u0000\u0000\u0183\u0186\u0001\u0000\u0000\u0000\u0184\u0182\u0001\u0000" + + "\u0000\u0000\u0185\u0187\u0005!\u0000\u0000\u0186\u0185\u0001\u0000\u0000" + + "\u0000\u0186\u0187\u0001\u0000\u0000\u0000\u0187-\u0001\u0000\u0000\u0000" + + "\u0188\u018a\u0003\"\u0011\u0000\u0189\u018b\u00032\u0019\u0000\u018a" + + "\u0189\u0001\u0000\u0000\u0000\u018a\u018b\u0001\u0000\u0000\u0000\u018b" + + "\u0191\u0001\u0000\u0000\u0000\u018c\u018d\u0003\"\u0011\u0000\u018d\u018e" + + "\u0005%\u0000\u0000\u018e\u018f\u0003\"\u0011\u0000\u018f\u0191\u0001" + + "\u0000\u0000\u0000\u0190\u0188\u0001\u0000\u0000\u0000\u0190\u018c\u0001" + + "\u0000\u0000\u0000\u0191/\u0001\u0000\u0000\u0000\u0192\u0195\u00032\u0019" + + "\u0000\u0193\u0195\u00034\u001a\u0000\u0194\u0192\u0001\u0000\u0000\u0000" + + "\u0194\u0193\u0001\u0000\u0000\u0000\u01951\u0001\u0000\u0000\u0000\u0196" + + "\u0197\u0005\u000b\u0000\u0000\u0197\u0198\u0003*\u0015\u0000\u0198\u0199" + + "\u0005\u000f\u0000\u0000\u0199\u019b\u0003\"\u0011\u0000\u019a\u019c\u0003" + + "0\u0018\u0000\u019b\u019a\u0001\u0000\u0000\u0000\u019b\u019c\u0001\u0000" + + "\u0000\u0000\u019c3\u0001\u0000\u0000\u0000\u019d\u019e\u0005\r\u0000" + + "\u0000\u019e\u01a0\u0003\"\u0011\u0000\u019f\u01a1\u00030\u0018\u0000" + + "\u01a0\u019f\u0001\u0000\u0000\u0000\u01a0\u01a1\u0001\u0000\u0000\u0000" + + "\u01a15\u0001\u0000\u0000\u000089>@JNV\\djtxz\u0081\u0088\u0091\u0097" + + "\u009b\u00a1\u00b0\u00b6\u00bf\u00c8\u00cf\u00d1\u00d5\u00e4\u00eb\u00f1" + + "\u00f6\u011d\u011f\u0124\u0129\u012e\u0136\u013c\u0144\u0148\u014a\u014e" + + "\u0157\u015b\u0163\u0167\u016b\u016d\u0170\u0177\u017b\u0182\u0186\u018a" + + "\u0190\u0194\u019b\u01a0"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { diff --git a/src/Python3ParserBaseListener.java b/src/Python3ParserBaseListener.java index dbe30f4..b03531e 100644 --- a/src/Python3ParserBaseListener.java +++ b/src/Python3ParserBaseListener.java @@ -6,9 +6,9 @@ import org.antlr.v4.runtime.tree.TerminalNode; /** * This class provides an empty implementation of {@link Python3ParserListener}, - * which can be - * extended to create a listener which only needs to handle a subset of the - * available methods. + * which can be extended to create a listener which only needs to handle a + * subset + * of the available methods. */ @SuppressWarnings("CheckReturnValue") public class Python3ParserBaseListener implements Python3ParserListener { @@ -17,6 +17,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterRoot(Python3Parser.RootContext ctx) { @@ -27,6 +28,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitRoot(Python3Parser.RootContext ctx) { @@ -37,6 +39,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterSimple_stmts(Python3Parser.Simple_stmtsContext ctx) { @@ -47,6 +50,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitSimple_stmts(Python3Parser.Simple_stmtsContext ctx) { @@ -57,6 +61,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterCompound_stmt(Python3Parser.Compound_stmtContext ctx) { @@ -67,6 +72,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitCompound_stmt(Python3Parser.Compound_stmtContext ctx) { @@ -77,6 +83,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterSimple_stmt(Python3Parser.Simple_stmtContext ctx) { @@ -87,6 +94,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitSimple_stmt(Python3Parser.Simple_stmtContext ctx) { @@ -97,6 +105,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterAssignment(Python3Parser.AssignmentContext ctx) { @@ -107,6 +116,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitAssignment(Python3Parser.AssignmentContext ctx) { @@ -117,6 +127,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterReturn_stmt(Python3Parser.Return_stmtContext ctx) { @@ -127,6 +138,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitReturn_stmt(Python3Parser.Return_stmtContext ctx) { @@ -137,6 +149,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterImport_stm(Python3Parser.Import_stmContext ctx) { @@ -147,6 +160,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitImport_stm(Python3Parser.Import_stmContext ctx) { @@ -157,6 +171,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterDotted_name(Python3Parser.Dotted_nameContext ctx) { @@ -167,6 +182,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitDotted_name(Python3Parser.Dotted_nameContext ctx) { @@ -177,6 +193,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterFuncdef(Python3Parser.FuncdefContext ctx) { @@ -187,6 +204,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitFuncdef(Python3Parser.FuncdefContext ctx) { @@ -197,6 +215,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterParamlist(Python3Parser.ParamlistContext ctx) { @@ -207,6 +226,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitParamlist(Python3Parser.ParamlistContext ctx) { @@ -217,6 +237,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterParamdef(Python3Parser.ParamdefContext ctx) { @@ -227,6 +248,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitParamdef(Python3Parser.ParamdefContext ctx) { @@ -237,6 +259,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterAugassign(Python3Parser.AugassignContext ctx) { @@ -247,6 +270,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitAugassign(Python3Parser.AugassignContext ctx) { @@ -257,6 +281,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterIf_stmt(Python3Parser.If_stmtContext ctx) { @@ -267,6 +292,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitIf_stmt(Python3Parser.If_stmtContext ctx) { @@ -277,6 +303,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterWhile_stmt(Python3Parser.While_stmtContext ctx) { @@ -287,6 +314,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitWhile_stmt(Python3Parser.While_stmtContext ctx) { @@ -297,6 +325,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterFor_stmt(Python3Parser.For_stmtContext ctx) { @@ -307,6 +336,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitFor_stmt(Python3Parser.For_stmtContext ctx) { @@ -317,6 +347,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterBlock(Python3Parser.BlockContext ctx) { @@ -327,6 +358,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitBlock(Python3Parser.BlockContext ctx) { @@ -337,6 +369,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterComp_op(Python3Parser.Comp_opContext ctx) { @@ -347,6 +380,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitComp_op(Python3Parser.Comp_opContext ctx) { @@ -357,6 +391,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterExpr(Python3Parser.ExprContext ctx) { @@ -367,6 +402,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitExpr(Python3Parser.ExprContext ctx) { @@ -377,6 +413,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterAtom(Python3Parser.AtomContext ctx) { @@ -387,6 +424,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitAtom(Python3Parser.AtomContext ctx) { @@ -397,6 +435,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterTestlist_comp(Python3Parser.Testlist_compContext ctx) { @@ -407,6 +446,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitTestlist_comp(Python3Parser.Testlist_compContext ctx) { @@ -417,6 +457,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterTrailer(Python3Parser.TrailerContext ctx) { @@ -427,6 +468,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitTrailer(Python3Parser.TrailerContext ctx) { @@ -437,6 +479,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterExprlist(Python3Parser.ExprlistContext ctx) { @@ -447,6 +490,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitExprlist(Python3Parser.ExprlistContext ctx) { @@ -457,6 +501,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterArglist(Python3Parser.ArglistContext ctx) { @@ -467,6 +512,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitArglist(Python3Parser.ArglistContext ctx) { @@ -477,6 +523,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterArgument(Python3Parser.ArgumentContext ctx) { @@ -487,6 +534,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitArgument(Python3Parser.ArgumentContext ctx) { @@ -497,6 +545,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterComp_iter(Python3Parser.Comp_iterContext ctx) { @@ -507,6 +556,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitComp_iter(Python3Parser.Comp_iterContext ctx) { @@ -517,6 +567,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterComp_for(Python3Parser.Comp_forContext ctx) { @@ -527,6 +578,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitComp_for(Python3Parser.Comp_forContext ctx) { @@ -537,6 +589,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterComp_if(Python3Parser.Comp_ifContext ctx) { @@ -547,6 +600,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitComp_if(Python3Parser.Comp_ifContext ctx) { @@ -557,6 +611,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void enterEveryRule(ParserRuleContext ctx) { @@ -567,6 +622,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void exitEveryRule(ParserRuleContext ctx) { @@ -577,6 +633,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void visitTerminal(TerminalNode node) { @@ -587,6 +644,7 @@ public class Python3ParserBaseListener implements Python3ParserListener { * * <p> * The default implementation does nothing. + * </p> */ @Override public void visitErrorNode(ErrorNode node) { diff --git a/src/Python3ParserBaseVisitor.java b/src/Python3ParserBaseVisitor.java new file mode 100644 index 0000000..1b1832e --- /dev/null +++ b/src/Python3ParserBaseVisitor.java @@ -0,0 +1,365 @@ + +// Generated from src/Python3Parser.g4 by ANTLR 4.13.1 +import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; + +/** + * This class provides an empty implementation of {@link Python3ParserVisitor}, + * which can be extended to create a visitor which only needs to handle a subset + * of the available methods. + * + * @param <T> The return type of the visit operation. Use {@link Void} for + * operations with no return type. + */ +@SuppressWarnings("CheckReturnValue") +public class Python3ParserBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements Python3ParserVisitor<T> { + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitRoot(Python3Parser.RootContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitSimple_stmts(Python3Parser.Simple_stmtsContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitCompound_stmt(Python3Parser.Compound_stmtContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitSimple_stmt(Python3Parser.Simple_stmtContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitAssignment(Python3Parser.AssignmentContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitReturn_stmt(Python3Parser.Return_stmtContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitImport_stm(Python3Parser.Import_stmContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitDotted_name(Python3Parser.Dotted_nameContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitFuncdef(Python3Parser.FuncdefContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitParamlist(Python3Parser.ParamlistContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitParamdef(Python3Parser.ParamdefContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitAugassign(Python3Parser.AugassignContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitIf_stmt(Python3Parser.If_stmtContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitWhile_stmt(Python3Parser.While_stmtContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitFor_stmt(Python3Parser.For_stmtContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitBlock(Python3Parser.BlockContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitComp_op(Python3Parser.Comp_opContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitExpr(Python3Parser.ExprContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitAtom(Python3Parser.AtomContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitTestlist_comp(Python3Parser.Testlist_compContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitTrailer(Python3Parser.TrailerContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitExprlist(Python3Parser.ExprlistContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitArglist(Python3Parser.ArglistContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitArgument(Python3Parser.ArgumentContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitComp_iter(Python3Parser.Comp_iterContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitComp_for(Python3Parser.Comp_forContext ctx) { + return visitChildren(ctx); + } + + /** + * {@inheritDoc} + * + * <p> + * The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}. + * </p> + */ + @Override + public T visitComp_if(Python3Parser.Comp_ifContext ctx) { + return visitChildren(ctx); + } +} diff --git a/src/Python3ParserListener.java b/src/Python3ParserListener.java index f87f312..e256259 100644 --- a/src/Python3ParserListener.java +++ b/src/Python3ParserListener.java @@ -9,378 +9,378 @@ import org.antlr.v4.runtime.tree.ParseTreeListener; public interface Python3ParserListener extends ParseTreeListener { /** * Enter a parse tree produced by {@link Python3Parser#root}. - * + * * @param ctx the parse tree */ void enterRoot(Python3Parser.RootContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#root}. - * + * * @param ctx the parse tree */ void exitRoot(Python3Parser.RootContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#simple_stmts}. - * + * * @param ctx the parse tree */ void enterSimple_stmts(Python3Parser.Simple_stmtsContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#simple_stmts}. - * + * * @param ctx the parse tree */ void exitSimple_stmts(Python3Parser.Simple_stmtsContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#compound_stmt}. - * + * * @param ctx the parse tree */ void enterCompound_stmt(Python3Parser.Compound_stmtContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#compound_stmt}. - * + * * @param ctx the parse tree */ void exitCompound_stmt(Python3Parser.Compound_stmtContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#simple_stmt}. - * + * * @param ctx the parse tree */ void enterSimple_stmt(Python3Parser.Simple_stmtContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#simple_stmt}. - * + * * @param ctx the parse tree */ void exitSimple_stmt(Python3Parser.Simple_stmtContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#assignment}. - * + * * @param ctx the parse tree */ void enterAssignment(Python3Parser.AssignmentContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#assignment}. - * + * * @param ctx the parse tree */ void exitAssignment(Python3Parser.AssignmentContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#return_stmt}. - * + * * @param ctx the parse tree */ void enterReturn_stmt(Python3Parser.Return_stmtContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#return_stmt}. - * + * * @param ctx the parse tree */ void exitReturn_stmt(Python3Parser.Return_stmtContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#import_stm}. - * + * * @param ctx the parse tree */ void enterImport_stm(Python3Parser.Import_stmContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#import_stm}. - * + * * @param ctx the parse tree */ void exitImport_stm(Python3Parser.Import_stmContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#dotted_name}. - * + * * @param ctx the parse tree */ void enterDotted_name(Python3Parser.Dotted_nameContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#dotted_name}. - * + * * @param ctx the parse tree */ void exitDotted_name(Python3Parser.Dotted_nameContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#funcdef}. - * + * * @param ctx the parse tree */ void enterFuncdef(Python3Parser.FuncdefContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#funcdef}. - * + * * @param ctx the parse tree */ void exitFuncdef(Python3Parser.FuncdefContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#paramlist}. - * + * * @param ctx the parse tree */ void enterParamlist(Python3Parser.ParamlistContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#paramlist}. - * + * * @param ctx the parse tree */ void exitParamlist(Python3Parser.ParamlistContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#paramdef}. - * + * * @param ctx the parse tree */ void enterParamdef(Python3Parser.ParamdefContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#paramdef}. - * + * * @param ctx the parse tree */ void exitParamdef(Python3Parser.ParamdefContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#augassign}. - * + * * @param ctx the parse tree */ void enterAugassign(Python3Parser.AugassignContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#augassign}. - * + * * @param ctx the parse tree */ void exitAugassign(Python3Parser.AugassignContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#if_stmt}. - * + * * @param ctx the parse tree */ void enterIf_stmt(Python3Parser.If_stmtContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#if_stmt}. - * + * * @param ctx the parse tree */ void exitIf_stmt(Python3Parser.If_stmtContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#while_stmt}. - * + * * @param ctx the parse tree */ void enterWhile_stmt(Python3Parser.While_stmtContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#while_stmt}. - * + * * @param ctx the parse tree */ void exitWhile_stmt(Python3Parser.While_stmtContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#for_stmt}. - * + * * @param ctx the parse tree */ void enterFor_stmt(Python3Parser.For_stmtContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#for_stmt}. - * + * * @param ctx the parse tree */ void exitFor_stmt(Python3Parser.For_stmtContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#block}. - * + * * @param ctx the parse tree */ void enterBlock(Python3Parser.BlockContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#block}. - * + * * @param ctx the parse tree */ void exitBlock(Python3Parser.BlockContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#comp_op}. - * + * * @param ctx the parse tree */ void enterComp_op(Python3Parser.Comp_opContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#comp_op}. - * + * * @param ctx the parse tree */ void exitComp_op(Python3Parser.Comp_opContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#expr}. - * + * * @param ctx the parse tree */ void enterExpr(Python3Parser.ExprContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#expr}. - * + * * @param ctx the parse tree */ void exitExpr(Python3Parser.ExprContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#atom}. - * + * * @param ctx the parse tree */ void enterAtom(Python3Parser.AtomContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#atom}. - * + * * @param ctx the parse tree */ void exitAtom(Python3Parser.AtomContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#testlist_comp}. - * + * * @param ctx the parse tree */ void enterTestlist_comp(Python3Parser.Testlist_compContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#testlist_comp}. - * + * * @param ctx the parse tree */ void exitTestlist_comp(Python3Parser.Testlist_compContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#trailer}. - * + * * @param ctx the parse tree */ void enterTrailer(Python3Parser.TrailerContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#trailer}. - * + * * @param ctx the parse tree */ void exitTrailer(Python3Parser.TrailerContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#exprlist}. - * + * * @param ctx the parse tree */ void enterExprlist(Python3Parser.ExprlistContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#exprlist}. - * + * * @param ctx the parse tree */ void exitExprlist(Python3Parser.ExprlistContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#arglist}. - * + * * @param ctx the parse tree */ void enterArglist(Python3Parser.ArglistContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#arglist}. - * + * * @param ctx the parse tree */ void exitArglist(Python3Parser.ArglistContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#argument}. - * + * * @param ctx the parse tree */ void enterArgument(Python3Parser.ArgumentContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#argument}. - * + * * @param ctx the parse tree */ void exitArgument(Python3Parser.ArgumentContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#comp_iter}. - * + * * @param ctx the parse tree */ void enterComp_iter(Python3Parser.Comp_iterContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#comp_iter}. - * + * * @param ctx the parse tree */ void exitComp_iter(Python3Parser.Comp_iterContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#comp_for}. - * + * * @param ctx the parse tree */ void enterComp_for(Python3Parser.Comp_forContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#comp_for}. - * + * * @param ctx the parse tree */ void exitComp_for(Python3Parser.Comp_forContext ctx); /** * Enter a parse tree produced by {@link Python3Parser#comp_if}. - * + * * @param ctx the parse tree */ void enterComp_if(Python3Parser.Comp_ifContext ctx); /** * Exit a parse tree produced by {@link Python3Parser#comp_if}. - * + * * @param ctx the parse tree */ void exitComp_if(Python3Parser.Comp_ifContext ctx); diff --git a/src/Python3ParserVisitor.java b/src/Python3ParserVisitor.java new file mode 100644 index 0000000..facb4ae --- /dev/null +++ b/src/Python3ParserVisitor.java @@ -0,0 +1,228 @@ + +// Generated from src/Python3Parser.g4 by ANTLR 4.13.1 +import org.antlr.v4.runtime.tree.ParseTreeVisitor; + +/** + * This interface defines a complete generic visitor for a parse tree produced + * by {@link Python3Parser}. + * + * @param <T> The return type of the visit operation. Use {@link Void} for + * operations with no return type. + */ +public interface Python3ParserVisitor<T> extends ParseTreeVisitor<T> { + /** + * Visit a parse tree produced by {@link Python3Parser#root}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitRoot(Python3Parser.RootContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#simple_stmts}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitSimple_stmts(Python3Parser.Simple_stmtsContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#compound_stmt}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitCompound_stmt(Python3Parser.Compound_stmtContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#simple_stmt}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitSimple_stmt(Python3Parser.Simple_stmtContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#assignment}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitAssignment(Python3Parser.AssignmentContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#return_stmt}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitReturn_stmt(Python3Parser.Return_stmtContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#import_stm}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitImport_stm(Python3Parser.Import_stmContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#dotted_name}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitDotted_name(Python3Parser.Dotted_nameContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#funcdef}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitFuncdef(Python3Parser.FuncdefContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#paramlist}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitParamlist(Python3Parser.ParamlistContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#paramdef}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitParamdef(Python3Parser.ParamdefContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#augassign}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitAugassign(Python3Parser.AugassignContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#if_stmt}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitIf_stmt(Python3Parser.If_stmtContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#while_stmt}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitWhile_stmt(Python3Parser.While_stmtContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#for_stmt}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitFor_stmt(Python3Parser.For_stmtContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#block}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitBlock(Python3Parser.BlockContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#comp_op}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitComp_op(Python3Parser.Comp_opContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#expr}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitExpr(Python3Parser.ExprContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#atom}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitAtom(Python3Parser.AtomContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#testlist_comp}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitTestlist_comp(Python3Parser.Testlist_compContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#trailer}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitTrailer(Python3Parser.TrailerContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#exprlist}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitExprlist(Python3Parser.ExprlistContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#arglist}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitArglist(Python3Parser.ArglistContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#argument}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitArgument(Python3Parser.ArgumentContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#comp_iter}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitComp_iter(Python3Parser.Comp_iterContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#comp_for}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitComp_for(Python3Parser.Comp_forContext ctx); + + /** + * Visit a parse tree produced by {@link Python3Parser#comp_if}. + * + * @param ctx the parse tree + * @return the visitor result + */ + T visitComp_if(Python3Parser.Comp_ifContext ctx); +} |