From 0ef80696f49d26423d98642b82a60cc038c3d8ed Mon Sep 17 00:00:00 2001 From: Erindcl Date: Thu, 26 Nov 2020 11:20:57 +0800 Subject: [PATCH] feat(flink): add describe/explain/use/show statement and some test --- src/grammar/flinksql/FlinkSqlLexer.g4 | 348 + src/grammar/flinksql/FlinkSqlParser.g4 | 395 +- src/lib/flinksql/FlinkSqlLexer.interp | 109 +- src/lib/flinksql/FlinkSqlLexer.js | 4263 ++++---- src/lib/flinksql/FlinkSqlLexer.tokens | 1232 ++- src/lib/flinksql/FlinkSqlParser.interp | 112 +- src/lib/flinksql/FlinkSqlParser.js | 10070 ++++++++++++++---- src/lib/flinksql/FlinkSqlParser.tokens | 274 +- src/lib/flinksql/FlinkSqlParserLexer.interp | 973 -- src/lib/flinksql/FlinkSqlParserLexer.js | 2596 ----- src/lib/flinksql/FlinkSqlParserLexer.tokens | 622 -- src/lib/flinksql/FlinkSqlParserListener.js | 811 +- src/lib/flinksql/FlinkSqlParserParser.js | 8994 ---------------- src/lib/flinksql/FlinkSqlParserVisitor.js | 486 +- src/parser/flinksql.ts | 2 +- test/parser/flinksql/lexer.test.ts | 3 +- test/parser/flinksql/syntax.test.ts | 120 +- test/parser/flinksql/visitor.test.ts | 23 - 18 files changed, 12318 insertions(+), 19115 deletions(-) create mode 100644 src/grammar/flinksql/FlinkSqlLexer.g4 delete mode 100644 src/lib/flinksql/FlinkSqlParserLexer.interp delete mode 100644 src/lib/flinksql/FlinkSqlParserLexer.js delete mode 100644 src/lib/flinksql/FlinkSqlParserLexer.tokens delete mode 100644 src/lib/flinksql/FlinkSqlParserParser.js delete mode 100644 test/parser/flinksql/visitor.test.ts diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 new file mode 100644 index 0000000..1e851e9 --- /dev/null +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -0,0 +1,348 @@ +lexer grammar FlinkSqlLexer; + +// SKIP + +SPACE: [ \t\r\n]+ -> channel(HIDDEN); +COMMENT_INPUT: '/*' .*? '*/' -> channel(HIDDEN); +LINE_COMMENT: ( + ('-- ' | '#') ~[\r\n]* ('\r'? '\n' | EOF) + | '--' ('\r'? '\n' | EOF) + ) -> channel(HIDDEN); + + +// Common Keywords + +SELECT: 'SELECT'; +FROM: 'FROM'; +ADD: 'ADD'; +AS: 'AS'; +ALL: 'ALL'; +ANY: 'ANY'; +DISTINCT: 'DISTINCT'; +WHERE: 'WHERE'; +GROUP: 'GROUP'; +BY: 'BY'; +GROUPING: 'GROUPING'; +SETS: 'SETS'; +CUBE: 'CUBE'; +ROLLUP: 'ROLLUP'; +ORDER: 'ORDER'; +HAVING: 'HAVING'; +LIMIT: 'LIMIT'; +AT: 'AT'; +OR: 'OR'; +AND: 'AND'; +IN: 'IN'; +NOT: 'NOT'; +NO: 'NO'; +EXISTS: 'EXISTS'; +BETWEEN: 'BETWEEN'; +LIKE: 'LIKE'; +RLIKE: 'RLIKE'; +IS: 'IS'; +TRUE: 'TRUE'; +FALSE: 'FALSE'; +NULLS: 'NULLS'; +ASC: 'ASC'; +DESC: 'DESC'; +FOR: 'FOR'; +INTERVAL: 'INTERVAL'; +CASE: 'CASE'; +WHEN: 'WHEN'; +THEN: 'THEN'; +ELSE: 'ELSE'; +END: 'END'; +JOIN: 'JOIN'; +CROSS: 'CROSS'; +OUTER: 'OUTER'; +INNER: 'INNER'; +LEFT: 'LEFT'; +SEMI: 'SEMI'; +RIGHT: 'RIGHT'; +FULL: 'FULL'; +NATURAL: 'NATURAL'; +ON: 'ON'; +PIVOT: 'PIVOT'; +LATERAL: 'LATERAL'; +WINDOW: 'WINDOW'; +OVER: 'OVER'; +PARTITION: 'PARTITION'; +RANGE: 'RANGE'; +ROWS: 'ROWS'; +UNBOUNDED: 'UNBOUNDED'; +PRECEDING: 'PRECEDING'; +FOLLOWING: 'FOLLOWING'; +CURRENT: 'CURRENT'; +FIRST: 'FIRST'; +AFTER: 'AFTER'; +LAST: 'LAST'; +WITH: 'WITH'; +VALUES: 'VALUES'; +CREATE: 'CREATE'; +TABLE: 'TABLE'; +DIRECTORY: 'DIRECTORY'; +VIEW: 'VIEW'; +REPLACE: 'REPLACE'; +INSERT: 'INSERT'; +DELETE: 'DELETE'; +INTO: 'INTO'; +DESCRIBE: 'DESCRIBE'; +EXPLAIN: 'EXPLAIN'; +FORMAT: 'FORMAT'; +LOGICAL: 'LOGICAL'; +CODEGEN: 'CODEGEN'; +COST: 'COST'; +CAST: 'CAST'; +SHOW: 'SHOW'; +TABLES: 'TABLES'; +COLUMNS: 'COLUMNS'; +COLUMN: 'COLUMN'; +USE: 'USE'; +PARTITIONS: 'PARTITIONS'; +FUNCTIONS: 'FUNCTIONS'; +DROP: 'DROP'; +UNION: 'UNION'; +EXCEPT: 'EXCEPT'; +SETMINUS: 'SETMINUS'; +INTERSECT: 'INTERSECT'; +TO: 'TO'; +TABLESAMPLE: 'TABLESAMPLE'; +STRATIFY: 'STRATIFY'; +ALTER: 'ALTER'; +RENAME: 'RENAME'; +STRUCT: 'STRUCT'; +COMMENT: 'COMMENT'; +SET: 'SET'; +RESET: 'RESET'; +DATA: 'DATA'; +START: 'START'; +TRANSACTION: 'TRANSACTION'; +COMMIT: 'COMMIT'; +ROLLBACK: 'ROLLBACK'; +MACRO: 'MACRO'; +IGNORE: 'IGNORE'; +BOTH: 'BOTH'; +LEADING: 'LEADING'; +TRAILING: 'TRAILING'; +IF: 'IF'; +POSITION: 'POSITION'; +EXTRACT: 'EXTRACT'; +EQ: 'EQ'; +NSEQ: 'NSEQ'; +NEQ: 'NEQ'; +NEQJ: 'NEQJ'; +LT: 'LT'; +LTE: 'LTE'; +GT: 'GT'; +GTE: 'GTE'; +PLUS: 'PLUS'; +MINUS: 'MINUS'; +ASTERISK: 'ASTERISK'; +SLASH: 'SLASH'; +PERCENT: 'PERCENT'; +DIV: 'DIV'; +TILDE: 'TILDE'; +AMPERSAND: 'AMPERSAND'; +PIPE: 'PIPE'; +CONCAT_PIPE: 'CONCAT_PIPE'; +HAT: 'HAT'; +PERCENTLIT: 'PERCENTLIT'; +BUCKET: 'BUCKET'; +OUT: 'OUT'; +OF: 'OF'; +SORT: 'SORT'; +CLUSTER: 'CLUSTER'; +DISTRIBUTE: 'DISTRIBUTE'; +OVERWRITE: 'OVERWRITE'; +TRANSFORM: 'TRANSFORM'; +REDUCE: 'REDUCE'; +USING: 'USING'; +SERDE: 'SERDE'; +SERDEPROPERTIES: 'SERDEPROPERTIES'; +RECORDREADER: 'RECORDREADER'; +RECORDWRITER: 'RECORDWRITER'; +DELIMITED: 'DELIMITED'; +FIELDS: 'FIELDS'; +TERMINATED: 'TERMINATED'; +COLLECTION: 'COLLECTION'; +ITEMS: 'ITEMS'; +KEYS: 'KEYS'; +ESCAPED: 'ESCAPED'; +LINES: 'LINES'; +SEPARATED: 'SEPARATED'; +FUNCTION: 'FUNCTION'; +EXTENDED: 'EXTENDED'; +REFRESH: 'REFRESH'; +CLEAR: 'CLEAR'; +CACHE: 'CACHE'; +UNCACHE: 'UNCACHE'; +LAZY: 'LAZY'; +FORMATTED: 'FORMATTED'; +GLOBAL: 'GLOBAL'; +TEMPORARY: 'TEMPORARY'; +OPTIONS: 'OPTIONS'; +UNSET: 'UNSET'; +TBLPROPERTIES: 'TBLPROPERTIES'; +DBPROPERTIES: 'DBPROPERTIES'; +BUCKETS: 'BUCKETS'; +SKEWED: 'SKEWED'; +STORED: 'STORED'; +DIRECTORIES: 'DIRECTORIES'; +LOCATION: 'LOCATION'; +EXCHANGE: 'EXCHANGE'; +ARCHIVE: 'ARCHIVE'; +UNARCHIVE: 'UNARCHIVE'; +FILEFORMAT: 'FILEFORMAT'; +TOUCH: 'TOUCH'; +COMPACT: 'COMPACT'; +CONCATENATE: 'CONCATENATE'; +CHANGE: 'CHANGE'; +CASCADE: 'CASCADE'; +RESTRICT: 'RESTRICT'; +CLUSTERED: 'CLUSTERED'; +SORTED: 'SORTED'; +PURGE: 'PURGE'; +INPUTFORMAT: 'INPUTFORMAT'; +OUTPUTFORMAT: 'OUTPUTFORMAT'; +DATABASE: 'DATABASE'; +DATABASES: 'DATABASES'; +DFS: 'DFS'; +TRUNCATE: 'TRUNCATE'; +ANALYZE: 'ANALYZE'; +COMPUTE: 'COMPUTE'; +LIST: 'LIST'; +STATISTICS: 'STATISTICS'; +PARTITIONED: 'PARTITIONED'; +EXTERNAL: 'EXTERNAL'; +DEFINED: 'DEFINED'; +REVOKE: 'REVOKE'; +GRANT: 'GRANT'; +LOCK: 'LOCK'; +UNLOCK: 'UNLOCK'; +MSCK: 'MSCK'; +REPAIR: 'REPAIR'; +RECOVER: 'RECOVER'; +EXPORT: 'EXPORT'; +IMPORT: 'IMPORT'; +LOAD: 'LOAD'; +ROLE: 'ROLE'; +ROLES: 'ROLES'; +COMPACTIONS: 'COMPACTIONS'; +PRINCIPALS: 'PRINCIPALS'; +TRANSACTIONS: 'TRANSACTIONS'; +INDEX: 'INDEX'; +INDEXES: 'INDEXES'; +LOCKS: 'LOCKS'; +OPTION: 'OPTION'; +ANTI: 'ANTI'; +LOCAL: 'LOCAL'; +INPATH: 'INPATH'; +WATERMARK: 'WATERMARK'; +UNNEST: 'UNNEST'; +MATCH_RECOGNIZE: 'MATCH_RECOGNIZE'; +MEASURES: 'MEASURES'; +ONE: 'ONE'; +PER: 'PER'; +MATCH: 'MATCH'; +SKIP1: 'SKIP1'; +NEXT: 'NEXT'; +PAST: 'PAST'; +PATTERN: 'PATTERN'; +WITHIN: 'WITHIN'; +DEFINE: 'DEFINE'; +WS: 'WS'; +SYSTEM: 'SYSTEM'; +INCLUDING: 'INCLUDING'; +EXCLUDING: 'EXCLUDING'; +CONSTRAINTS: 'CONSTRAINTS'; +OVERWRITING: 'OVERWRITING'; +GENERATED: 'GENERATED'; +CATALOG: 'CATALOG'; +LANGUAGE: 'LANGUAGE'; +CATALOGS: 'CATALOGS'; +VIEWS: 'VIEWS'; + + +// DATA TYPE Keywords + +STRING: 'STRING'; +ARRAY: 'ARRAY'; +MAP: 'MAP'; +CHAR: 'CHAR'; +VARCHAR: 'VARCHAR'; +BINARY: 'BINARY'; +VARBINARY: 'VARBINARY'; +BYTES: 'BYTES'; +DECIMAL: 'DECIMAL'; +TINYINT: 'TINYINT'; +SMALLINT: 'SMALLINT'; +INT: 'INT'; +BIGINT: 'BIGINT'; +FLOAT: 'FLOAT'; +DOUBLE: 'DOUBLE'; +DATE: 'DATE'; +TIME: 'TIME'; +TIMESTAMP: 'TIMESTAMP'; +MULTISET: 'MULTISET'; +BOOLEAN: 'BOOLEAN'; +RAW: 'RAW'; +ROW: 'ROW'; +NULL: 'NULL'; + + +// Operators. Comparation + +EQUAL_SYMBOL: '='; +GREATER_SYMBOL: '>'; +LESS_SYMBOL: '<'; +EXCLAMATION_SYMBOL: '!'; + + +// Operators. Bit + +BIT_NOT_OP: '~'; +BIT_OR_OP: '|'; +BIT_AND_OP: '&'; +BIT_XOR_OP: '^'; + + +// Constructors symbols + +DOT: '.'; +LS_BRACKET: '['; +RS_BRACKET: ']'; +LR_BRACKET: '('; +RR_BRACKET: ')'; +COMMA: ','; +SEMICOLON: ';'; +AT_SIGN: '@'; +SINGLE_QUOTE_SYMB: '\''; +DOUBLE_QUOTE_SYMB: '"'; +REVERSE_QUOTE_SYMB: '`'; +COLON_SYMB: ':'; +ASTERISK_SIGN: '*'; +UNDERLINE_SIGN: '_'; +HYPNEN_SIGN: '-'; +ADD_SIGN: '+'; +PENCENT_SIGN: '%'; +DOUBLE_VERTICAL_SIGN: '||'; +DOUBLE_HYPNEN_SIGN: '--'; +SLASH_SIGN: '/'; +DOT_ID: '.' ID_LITERAL; +STRING_LITERAL: DQUOTA_STRING | SQUOTA_STRING | BQUOTA_STRING; +DIG_LITERAL: DEC_DIGIT+; +REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ + | DEC_DIGIT+ '.' EXPONENT_NUM_PART + | (DEC_DIGIT+)? '.' (DEC_DIGIT+ EXPONENT_NUM_PART) + | DEC_DIGIT+ EXPONENT_NUM_PART; +BIT_STRING: BIT_STRING_L; +ID: ID_LITERAL; + +fragment EXPONENT_NUM_PART: 'E' [-+]? DEC_DIGIT+; +fragment ID_LITERAL: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; +fragment DEC_DIGIT: [0-9]; +fragment DEC_LETTER: [A-Za-z]; +fragment DQUOTA_STRING: '"' ( '\\'. | '""' | ~('"'| '\\') )* '"'; +fragment SQUOTA_STRING: '\'' ('\\'. | '\'\'' | ~('\'' | '\\'))* '\''; +fragment BIT_STRING_L: 'B' '\'' [01]+ '\''; +fragment BQUOTA_STRING: '`' ( '\\'. | '``' | ~('`'|'\\'))* '`'; \ No newline at end of file diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index 218c8b5..d6b0ed2 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -1,7 +1,6 @@ -grammar FlinkSqlParser; +parser grammar FlinkSqlParser; -// import FlinkSqlLexer; -// options { tokenVocab=FlinkSqlLexer; } +options { tokenVocab=FlinkSqlLexer; } program: statement EOF; @@ -10,11 +9,11 @@ statement ; sqlStatements - : (sqlStatement SEMICOLON | emptyStatement)* + : (sqlStatement SEMICOLON? | emptyStatement)* ; sqlStatement - : ddlStatement | dmlStatement + : ddlStatement | dmlStatement | describeStatement | explainStatement | useStatement | showStatememt ; emptyStatement @@ -31,6 +30,22 @@ dmlStatement : queryStatement | insertStatement ; +describeStatement + : DESCRIBE uid + ; + +explainStatement + : EXPLAIN identifier FOR dmlStatement + ; + +useStatement + : USE CATALOG? uid + ; + +showStatememt + : SHOW (CATALOGS | DATABASES | TABLES | FUNCTIONS | VIEWS) + ; + // Create statements @@ -111,7 +126,7 @@ createDatabase ; createView - : CREATE TEMPORARY? VIEW ifNotExists? uid (columnName (',' columnName)*)? commentSpec AS queryStatement + : CREATE TEMPORARY? VIEW ifNotExists? uid (columnName (',' columnName)*)? commentSpec? AS queryStatement ; createFunction @@ -129,9 +144,7 @@ renameDefinition ; setKeyValueDefinition - : SET LR_BRACKET - keyValueDefinition (COMMA keyValueDefinition)* - RR_BRACKET + : SET tablePropertyList ; alterDatabase @@ -139,7 +152,7 @@ alterDatabase ; alterFunction - : + : ALTER (TEMPORARY|TEMPORARY SYSTEM) FUNCTION ifExists? uid AS identifier (LANGUAGE identifier)? ; @@ -167,15 +180,13 @@ dropFunction insertStatement : INSERT (INTO | OVERWRITE) uid ( - insertPartitionDefinition? selectStatement + insertPartitionDefinition? queryStatement | valuesDefinition ) ; insertPartitionDefinition - : PARTITION LR_BRACKET - keyValueDefinition (COMMA keyValueDefinition)* - RR_BRACKET + : PARTITION tablePropertyList ; valuesDefinition @@ -334,7 +345,7 @@ valueExpression : primaryExpression #valueExpressionDefault | operator=('-' | '+' | '~') valueExpression #arithmeticUnary | left=valueExpression operator=('*' | '/' | '%' | DIV) right=valueExpression #arithmeticBinary - | left=valueExpression operator=('+' | '-' | '||') right=valueExpression #arithmeticBinary + | left=valueExpression operator=('+' | '-' | DOUBLE_VERTICAL_SIGN) right=valueExpression #arithmeticBinary | left=valueExpression operator='&' right=valueExpression #arithmeticBinary | left=valueExpression operator='^' right=valueExpression #arithmeticBinary | left=valueExpression operator='|' right=valueExpression #arithmeticBinary @@ -470,10 +481,6 @@ ifNotExists ifExists : IF EXISTS; -keyValueDefinition - : STRING_LITERAL EQUAL_SYMBOL STRING_LITERAL - ; - tablePropertyList : '(' tableProperty (',' tableProperty)* ')' ; @@ -544,353 +551,3 @@ setQuantifier : DISTINCT | ALL ; - - -/* -lexer grammar -*/ - - -// SKIP - -SPACE: [ \t\r\n]+ -> channel(HIDDEN); -COMMENT_INPUT: '/*' .*? '*/' -> channel(HIDDEN); -LINE_COMMENT: ( - ('-- ' | '#') ~[\r\n]* ('\r'? '\n' | EOF) - | '--' ('\r'? '\n' | EOF) - ) -> channel(HIDDEN); - - -// Common Keywords - -SELECT: 'SELECT'; -FROM: 'FROM'; -ADD: 'ADD'; -AS: 'AS'; -ALL: 'ALL'; -ANY: 'ANY'; -DISTINCT: 'DISTINCT'; -WHERE: 'WHERE'; -GROUP: 'GROUP'; -BY: 'BY'; -GROUPING: 'GROUPING'; -SETS: 'SETS'; -CUBE: 'CUBE'; -ROLLUP: 'ROLLUP'; -ORDER: 'ORDER'; -HAVING: 'HAVING'; -LIMIT: 'LIMIT'; -AT: 'AT'; -OR: 'OR'; -AND: 'AND'; -IN: 'IN'; -NOT: 'NOT'; -NO: 'NO'; -EXISTS: 'EXISTS'; -BETWEEN: 'BETWEEN'; -LIKE: 'LIKE'; -RLIKE: 'RLIKE'; -IS: 'IS'; -TRUE: 'TRUE'; -FALSE: 'FALSE'; -NULLS: 'NULLS'; -ASC: 'ASC'; -DESC: 'DESC'; -FOR: 'FOR'; -INTERVAL: 'INTERVAL'; -CASE: 'CASE'; -WHEN: 'WHEN'; -THEN: 'THEN'; -ELSE: 'ELSE'; -END: 'END'; -JOIN: 'JOIN'; -CROSS: 'CROSS'; -OUTER: 'OUTER'; -INNER: 'INNER'; -LEFT: 'LEFT'; -SEMI: 'SEMI'; -RIGHT: 'RIGHT'; -FULL: 'FULL'; -NATURAL: 'NATURAL'; -ON: 'ON'; -PIVOT: 'PIVOT'; -LATERAL: 'LATERAL'; -WINDOW: 'WINDOW'; -OVER: 'OVER'; -PARTITION: 'PARTITION'; -RANGE: 'RANGE'; -ROWS: 'ROWS'; -UNBOUNDED: 'UNBOUNDED'; -PRECEDING: 'PRECEDING'; -FOLLOWING: 'FOLLOWING'; -CURRENT: 'CURRENT'; -FIRST: 'FIRST'; -AFTER: 'AFTER'; -LAST: 'LAST'; -WITH: 'WITH'; -VALUES: 'VALUES'; -CREATE: 'CREATE'; -TABLE: 'TABLE'; -DIRECTORY: 'DIRECTORY'; -VIEW: 'VIEW'; -REPLACE: 'REPLACE'; -INSERT: 'INSERT'; -DELETE: 'DELETE'; -INTO: 'INTO'; -DESCRIBE: 'DESCRIBE'; -EXPLAIN: 'EXPLAIN'; -FORMAT: 'FORMAT'; -LOGICAL: 'LOGICAL'; -CODEGEN: 'CODEGEN'; -COST: 'COST'; -CAST: 'CAST'; -SHOW: 'SHOW'; -TABLES: 'TABLES'; -COLUMNS: 'COLUMNS'; -COLUMN: 'COLUMN'; -USE: 'USE'; -PARTITIONS: 'PARTITIONS'; -FUNCTIONS: 'FUNCTIONS'; -DROP: 'DROP'; -UNION: 'UNION'; -EXCEPT: 'EXCEPT'; -SETMINUS: 'SETMINUS'; -INTERSECT: 'INTERSECT'; -TO: 'TO'; -TABLESAMPLE: 'TABLESAMPLE'; -STRATIFY: 'STRATIFY'; -ALTER: 'ALTER'; -RENAME: 'RENAME'; -STRUCT: 'STRUCT'; -COMMENT: 'COMMENT'; -SET: 'SET'; -RESET: 'RESET'; -DATA: 'DATA'; -START: 'START'; -TRANSACTION: 'TRANSACTION'; -COMMIT: 'COMMIT'; -ROLLBACK: 'ROLLBACK'; -MACRO: 'MACRO'; -IGNORE: 'IGNORE'; -BOTH: 'BOTH'; -LEADING: 'LEADING'; -TRAILING: 'TRAILING'; -IF: 'IF'; -POSITION: 'POSITION'; -EXTRACT: 'EXTRACT'; -EQ: 'EQ'; -NSEQ: 'NSEQ'; -NEQ: 'NEQ'; -NEQJ: 'NEQJ'; -LT: 'LT'; -LTE: 'LTE'; -GT: 'GT'; -GTE: 'GTE'; -PLUS: 'PLUS'; -MINUS: 'MINUS'; -ASTERISK: 'ASTERISK'; -SLASH: 'SLASH'; -PERCENT: 'PERCENT'; -DIV: 'DIV'; -TILDE: 'TILDE'; -AMPERSAND: 'AMPERSAND'; -PIPE: 'PIPE'; -CONCAT_PIPE: 'CONCAT_PIPE'; -HAT: 'HAT'; -PERCENTLIT: 'PERCENTLIT'; -BUCKET: 'BUCKET'; -OUT: 'OUT'; -OF: 'OF'; -SORT: 'SORT'; -CLUSTER: 'CLUSTER'; -DISTRIBUTE: 'DISTRIBUTE'; -OVERWRITE: 'OVERWRITE'; -TRANSFORM: 'TRANSFORM'; -REDUCE: 'REDUCE'; -USING: 'USING'; -SERDE: 'SERDE'; -SERDEPROPERTIES: 'SERDEPROPERTIES'; -RECORDREADER: 'RECORDREADER'; -RECORDWRITER: 'RECORDWRITER'; -DELIMITED: 'DELIMITED'; -FIELDS: 'FIELDS'; -TERMINATED: 'TERMINATED'; -COLLECTION: 'COLLECTION'; -ITEMS: 'ITEMS'; -KEYS: 'KEYS'; -ESCAPED: 'ESCAPED'; -LINES: 'LINES'; -SEPARATED: 'SEPARATED'; -FUNCTION: 'FUNCTION'; -EXTENDED: 'EXTENDED'; -REFRESH: 'REFRESH'; -CLEAR: 'CLEAR'; -CACHE: 'CACHE'; -UNCACHE: 'UNCACHE'; -LAZY: 'LAZY'; -FORMATTED: 'FORMATTED'; -GLOBAL: 'GLOBAL'; -TEMPORARY: 'TEMPORARY'; -OPTIONS: 'OPTIONS'; -UNSET: 'UNSET'; -TBLPROPERTIES: 'TBLPROPERTIES'; -DBPROPERTIES: 'DBPROPERTIES'; -BUCKETS: 'BUCKETS'; -SKEWED: 'SKEWED'; -STORED: 'STORED'; -DIRECTORIES: 'DIRECTORIES'; -LOCATION: 'LOCATION'; -EXCHANGE: 'EXCHANGE'; -ARCHIVE: 'ARCHIVE'; -UNARCHIVE: 'UNARCHIVE'; -FILEFORMAT: 'FILEFORMAT'; -TOUCH: 'TOUCH'; -COMPACT: 'COMPACT'; -CONCATENATE: 'CONCATENATE'; -CHANGE: 'CHANGE'; -CASCADE: 'CASCADE'; -RESTRICT: 'RESTRICT'; -CLUSTERED: 'CLUSTERED'; -SORTED: 'SORTED'; -PURGE: 'PURGE'; -INPUTFORMAT: 'INPUTFORMAT'; -OUTPUTFORMAT: 'OUTPUTFORMAT'; -DATABASE: 'DATABASE'; -DATABASES: 'DATABASES'; -DFS: 'DFS'; -TRUNCATE: 'TRUNCATE'; -ANALYZE: 'ANALYZE'; -COMPUTE: 'COMPUTE'; -LIST: 'LIST'; -STATISTICS: 'STATISTICS'; -PARTITIONED: 'PARTITIONED'; -EXTERNAL: 'EXTERNAL'; -DEFINED: 'DEFINED'; -REVOKE: 'REVOKE'; -GRANT: 'GRANT'; -LOCK: 'LOCK'; -UNLOCK: 'UNLOCK'; -MSCK: 'MSCK'; -REPAIR: 'REPAIR'; -RECOVER: 'RECOVER'; -EXPORT: 'EXPORT'; -IMPORT: 'IMPORT'; -LOAD: 'LOAD'; -ROLE: 'ROLE'; -ROLES: 'ROLES'; -COMPACTIONS: 'COMPACTIONS'; -PRINCIPALS: 'PRINCIPALS'; -TRANSACTIONS: 'TRANSACTIONS'; -INDEX: 'INDEX'; -INDEXES: 'INDEXES'; -LOCKS: 'LOCKS'; -OPTION: 'OPTION'; -ANTI: 'ANTI'; -LOCAL: 'LOCAL'; -INPATH: 'INPATH'; -WATERMARK: 'WATERMARK'; -UNNEST: 'UNNEST'; -MATCH_RECOGNIZE: 'MATCH_RECOGNIZE'; -MEASURES: 'MEASURES'; -ONE: 'ONE'; -PER: 'PER'; -MATCH: 'MATCH'; -SKIP1: 'SKIP1'; -NEXT: 'NEXT'; -PAST: 'PAST'; -PATTERN: 'PATTERN'; -WITHIN: 'WITHIN'; -DEFINE: 'DEFINE'; -WS: 'WS'; -SYSTEM: 'SYSTEM'; -INCLUDING: 'INCLUDING'; -EXCLUDING: 'EXCLUDING'; -CONSTRAINTS: 'CONSTRAINTS'; -OVERWRITING: 'OVERWRITING'; -GENERATED: 'GENERATED'; -CATALOG: 'CATALOG'; -LANGUAGE: 'LANGUAGE'; - - -// DATA TYPE Keywords - -STRING: 'STRING'; -ARRAY: 'ARRAY'; -MAP: 'MAP'; -CHAR: 'CHAR'; -VARCHAR: 'VARCHAR'; -BINARY: 'BINARY'; -VARBINARY: 'VARBINARY'; -BYTES: 'BYTES'; -DECIMAL: 'DECIMAL'; -TINYINT: 'TINYINT'; -SMALLINT: 'SMALLINT'; -INT: 'INT'; -BIGINT: 'BIGINT'; -FLOAT: 'FLOAT'; -DOUBLE: 'DOUBLE'; -DATE: 'DATE'; -TIME: 'TIME'; -TIMESTAMP: 'TIMESTAMP'; -MULTISET: 'MULTISET'; -BOOLEAN: 'BOOLEAN'; -RAW: 'RAW'; -ROW: 'ROW'; -NULL: 'NULL'; - - -// Operators. Comparation - -EQUAL_SYMBOL: '='; -GREATER_SYMBOL: '>'; -LESS_SYMBOL: '<'; -EXCLAMATION_SYMBOL: '!'; - - -// Operators. Bit - -BIT_NOT_OP: '~'; -BIT_OR_OP: '|'; -BIT_AND_OP: '&'; -BIT_XOR_OP: '^'; - - -// Constructors symbols - -DOT: '.'; -LS_BRACKET: '['; -RS_BRACKET: ']'; -LR_BRACKET: '('; -RR_BRACKET: ')'; -COMMA: ','; -SEMICOLON: ';'; -AT_SIGN: '@'; -SINGLE_QUOTE_SYMB: '\''; -DOUBLE_QUOTE_SYMB: '"'; -REVERSE_QUOTE_SYMB: '`'; -COLON_SYMB: ':'; -ASTERISK_SIGN: '*'; -UNDERLINE_SIGN: '_'; -HYPNEN_SIGN: '-'; -ADD_SIGN: '+'; -PENCENT_SIGN: '%'; -DOUBLE_HYPNEN_SIGN: '--'; -SLASH_SIGN: '/'; -DOT_ID: '.' ID_LITERAL; -STRING_LITERAL: DQUOTA_STRING | SQUOTA_STRING | BQUOTA_STRING; -DIG_LITERAL: DEC_DIGIT+; -REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ - | DEC_DIGIT+ '.' EXPONENT_NUM_PART - | (DEC_DIGIT+)? '.' (DEC_DIGIT+ EXPONENT_NUM_PART) - | DEC_DIGIT+ EXPONENT_NUM_PART; -BIT_STRING: BIT_STRING_L; -ID: ID_LITERAL; - -fragment EXPONENT_NUM_PART: 'E' [-+]? DEC_DIGIT+; -fragment ID_LITERAL: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; -fragment DEC_DIGIT: [0-9]; -fragment DEC_LETTER: [A-Za-z]; -fragment DQUOTA_STRING: '"' ( '\\'. | '""' | ~('"'| '\\') )* '"'; -fragment SQUOTA_STRING: '\'' ('\\'. | '\'\'' | ~('\'' | '\\'))* '\''; -fragment BIT_STRING_L: 'B' '\'' [01]+ '\''; -fragment BQUOTA_STRING: '`' ( '\\'. | '``' | ~('`'|'\\'))* '`'; \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index ff72ac6..e0769b5 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -3,7 +3,6 @@ null null null null -null 'SELECT' 'FROM' 'ADD' @@ -242,25 +241,17 @@ null 'PATTERN' 'WITHIN' 'DEFINE' -'BIGINT_LITERAL' -'SMALLINT_LITERAL' -'TINYINT_LITERAL' -'INTEGER_VALUE' -'DECIMAL_VALUE' -'DOUBLE_LITERAL' -'BIGDECIMAL_LITERAL' -'IDENTIFIER' -'BACKQUOTED_IDENTIFIER' -'SIMPLE_COMMENT' -'BRACKETED_EMPTY_COMMENT' -'BRACKETED_COMMENT' 'WS' -'UNRECOGNIZED' -null -null -null -null 'SYSTEM' +'INCLUDING' +'EXCLUDING' +'CONSTRAINTS' +'OVERWRITING' +'GENERATED' +'CATALOG' +'LANGUAGE' +'CATALOGS' +'VIEWS' 'STRING' 'ARRAY' 'MAP' @@ -300,9 +291,6 @@ null ',' ';' '@' -'0' -'1' -'2' '\'' '"' '`' @@ -312,6 +300,7 @@ null '-' '+' '%' +'||' '--' '/' null @@ -319,11 +308,11 @@ null null null null +null token symbolic names: null SPACE -SPEC_MYSQL_COMMENT COMMENT_INPUT LINE_COMMENT SELECT @@ -564,25 +553,17 @@ PAST PATTERN WITHIN DEFINE -BIGINT_LITERAL -SMALLINT_LITERAL -TINYINT_LITERAL -INTEGER_VALUE -DECIMAL_VALUE -DOUBLE_LITERAL -BIGDECIMAL_LITERAL -IDENTIFIER -BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT -BRACKETED_EMPTY_COMMENT -BRACKETED_COMMENT WS -UNRECOGNIZED -REVERSE_QUOTE_ID -DOUBLE_QUOTE_ID -DOT_ID -ID SYSTEM +INCLUDING +EXCLUDING +CONSTRAINTS +OVERWRITING +GENERATED +CATALOG +LANGUAGE +CATALOGS +VIEWS STRING ARRAY MAP @@ -622,9 +603,6 @@ RR_BRACKET COMMA SEMICOLON AT_SIGN -ZERO_DECIMAL -ONE_DECIMAL -TWO_DECIMAL SINGLE_QUOTE_SYMB DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB @@ -634,17 +612,18 @@ UNDERLINE_SIGN HYPNEN_SIGN ADD_SIGN PENCENT_SIGN +DOUBLE_VERTICAL_SIGN DOUBLE_HYPNEN_SIGN SLASH_SIGN +DOT_ID STRING_LITERAL -DECIMAL_LITERAL +DIG_LITERAL REAL_LITERAL BIT_STRING -IDENTIFIER_BASE +ID rule names: SPACE -SPEC_MYSQL_COMMENT COMMENT_INPUT LINE_COMMENT SELECT @@ -885,25 +864,17 @@ PAST PATTERN WITHIN DEFINE -BIGINT_LITERAL -SMALLINT_LITERAL -TINYINT_LITERAL -INTEGER_VALUE -DECIMAL_VALUE -DOUBLE_LITERAL -BIGDECIMAL_LITERAL -IDENTIFIER -BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT -BRACKETED_EMPTY_COMMENT -BRACKETED_COMMENT WS -UNRECOGNIZED -REVERSE_QUOTE_ID -DOUBLE_QUOTE_ID -DOT_ID -ID SYSTEM +INCLUDING +EXCLUDING +CONSTRAINTS +OVERWRITING +GENERATED +CATALOG +LANGUAGE +CATALOGS +VIEWS STRING ARRAY MAP @@ -943,9 +914,6 @@ RR_BRACKET COMMA SEMICOLON AT_SIGN -ZERO_DECIMAL -ONE_DECIMAL -TWO_DECIMAL SINGLE_QUOTE_SYMB DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB @@ -955,13 +923,15 @@ UNDERLINE_SIGN HYPNEN_SIGN ADD_SIGN PENCENT_SIGN +DOUBLE_VERTICAL_SIGN DOUBLE_HYPNEN_SIGN SLASH_SIGN +DOT_ID STRING_LITERAL -DECIMAL_LITERAL +DIG_LITERAL REAL_LITERAL BIT_STRING -IDENTIFIER_BASE +ID EXPONENT_NUM_PART ID_LITERAL DEC_DIGIT @@ -974,12 +944,9 @@ BQUOTA_STRING channel names: DEFAULT_TOKEN_CHANNEL HIDDEN -null -null -MYSQLCOMMENT mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 321, 3002, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 4, 319, 9, 319, 4, 320, 9, 320, 4, 321, 9, 321, 4, 322, 9, 322, 4, 323, 9, 323, 4, 324, 9, 324, 4, 325, 9, 325, 4, 326, 9, 326, 4, 327, 9, 327, 4, 328, 9, 328, 3, 2, 6, 2, 659, 10, 2, 13, 2, 14, 2, 660, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 670, 10, 3, 13, 3, 14, 3, 671, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 683, 10, 4, 12, 4, 14, 4, 686, 11, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 697, 10, 5, 3, 5, 7, 5, 700, 10, 5, 12, 5, 14, 5, 703, 11, 5, 3, 5, 5, 5, 706, 10, 5, 3, 5, 3, 5, 5, 5, 710, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 716, 10, 5, 3, 5, 3, 5, 5, 5, 720, 10, 5, 5, 5, 722, 10, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 6, 258, 2622, 10, 258, 13, 258, 14, 258, 2623, 3, 258, 3, 258, 3, 259, 3, 259, 6, 259, 2630, 10, 259, 13, 259, 14, 259, 2631, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 279, 3, 279, 3, 279, 3, 279, 3, 279, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 283, 3, 283, 3, 283, 3, 283, 3, 284, 3, 284, 3, 284, 3, 284, 3, 285, 3, 285, 3, 285, 3, 285, 3, 285, 3, 286, 3, 286, 3, 287, 3, 287, 3, 288, 3, 288, 3, 289, 3, 289, 3, 290, 3, 290, 3, 291, 3, 291, 3, 292, 3, 292, 3, 293, 3, 293, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 297, 3, 297, 3, 298, 3, 298, 3, 299, 3, 299, 3, 300, 3, 300, 3, 301, 3, 301, 3, 302, 3, 302, 3, 303, 3, 303, 3, 304, 3, 304, 3, 305, 3, 305, 3, 306, 3, 306, 3, 307, 3, 307, 3, 308, 3, 308, 3, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 3, 312, 3, 312, 3, 313, 3, 313, 3, 314, 3, 314, 3, 314, 3, 315, 3, 315, 3, 316, 3, 316, 3, 316, 5, 316, 2864, 10, 316, 3, 317, 6, 317, 2867, 10, 317, 13, 317, 14, 317, 2868, 3, 318, 6, 318, 2872, 10, 318, 13, 318, 14, 318, 2873, 5, 318, 2876, 10, 318, 3, 318, 3, 318, 6, 318, 2880, 10, 318, 13, 318, 14, 318, 2881, 3, 318, 6, 318, 2885, 10, 318, 13, 318, 14, 318, 2886, 3, 318, 3, 318, 3, 318, 3, 318, 6, 318, 2893, 10, 318, 13, 318, 14, 318, 2894, 5, 318, 2897, 10, 318, 3, 318, 3, 318, 6, 318, 2901, 10, 318, 13, 318, 14, 318, 2902, 3, 318, 3, 318, 3, 318, 6, 318, 2908, 10, 318, 13, 318, 14, 318, 2909, 3, 318, 3, 318, 5, 318, 2914, 10, 318, 3, 319, 3, 319, 3, 320, 3, 320, 3, 320, 6, 320, 2921, 10, 320, 13, 320, 14, 320, 2922, 3, 321, 3, 321, 5, 321, 2927, 10, 321, 3, 321, 6, 321, 2930, 10, 321, 13, 321, 14, 321, 2931, 3, 322, 7, 322, 2935, 10, 322, 12, 322, 14, 322, 2938, 11, 322, 3, 322, 6, 322, 2941, 10, 322, 13, 322, 14, 322, 2942, 3, 322, 7, 322, 2946, 10, 322, 12, 322, 14, 322, 2949, 11, 322, 3, 323, 3, 323, 3, 324, 3, 324, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 7, 325, 2961, 10, 325, 12, 325, 14, 325, 2964, 11, 325, 3, 325, 3, 325, 3, 326, 3, 326, 3, 326, 3, 326, 3, 326, 3, 326, 7, 326, 2974, 10, 326, 12, 326, 14, 326, 2977, 11, 326, 3, 326, 3, 326, 3, 327, 3, 327, 3, 327, 6, 327, 2984, 10, 327, 13, 327, 14, 327, 2985, 3, 327, 3, 327, 3, 328, 3, 328, 3, 328, 3, 328, 3, 328, 3, 328, 7, 328, 2996, 10, 328, 12, 328, 14, 328, 2999, 11, 328, 3, 328, 3, 328, 6, 671, 684, 2936, 2942, 2, 329, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 312, 623, 313, 625, 314, 627, 315, 629, 316, 631, 317, 633, 318, 635, 319, 637, 320, 639, 321, 641, 2, 643, 2, 645, 2, 647, 2, 649, 2, 651, 2, 653, 2, 655, 2, 3, 2, 15, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 3, 2, 98, 98, 3, 2, 36, 36, 4, 2, 45, 45, 47, 47, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 4, 2, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 3037, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 2, 621, 3, 2, 2, 2, 2, 623, 3, 2, 2, 2, 2, 625, 3, 2, 2, 2, 2, 627, 3, 2, 2, 2, 2, 629, 3, 2, 2, 2, 2, 631, 3, 2, 2, 2, 2, 633, 3, 2, 2, 2, 2, 635, 3, 2, 2, 2, 2, 637, 3, 2, 2, 2, 2, 639, 3, 2, 2, 2, 3, 658, 3, 2, 2, 2, 5, 664, 3, 2, 2, 2, 7, 678, 3, 2, 2, 2, 9, 721, 3, 2, 2, 2, 11, 725, 3, 2, 2, 2, 13, 732, 3, 2, 2, 2, 15, 737, 3, 2, 2, 2, 17, 741, 3, 2, 2, 2, 19, 744, 3, 2, 2, 2, 21, 748, 3, 2, 2, 2, 23, 752, 3, 2, 2, 2, 25, 761, 3, 2, 2, 2, 27, 767, 3, 2, 2, 2, 29, 773, 3, 2, 2, 2, 31, 776, 3, 2, 2, 2, 33, 785, 3, 2, 2, 2, 35, 790, 3, 2, 2, 2, 37, 795, 3, 2, 2, 2, 39, 802, 3, 2, 2, 2, 41, 808, 3, 2, 2, 2, 43, 815, 3, 2, 2, 2, 45, 821, 3, 2, 2, 2, 47, 824, 3, 2, 2, 2, 49, 827, 3, 2, 2, 2, 51, 831, 3, 2, 2, 2, 53, 834, 3, 2, 2, 2, 55, 838, 3, 2, 2, 2, 57, 841, 3, 2, 2, 2, 59, 848, 3, 2, 2, 2, 61, 856, 3, 2, 2, 2, 63, 861, 3, 2, 2, 2, 65, 867, 3, 2, 2, 2, 67, 870, 3, 2, 2, 2, 69, 875, 3, 2, 2, 2, 71, 881, 3, 2, 2, 2, 73, 887, 3, 2, 2, 2, 75, 891, 3, 2, 2, 2, 77, 896, 3, 2, 2, 2, 79, 900, 3, 2, 2, 2, 81, 909, 3, 2, 2, 2, 83, 914, 3, 2, 2, 2, 85, 919, 3, 2, 2, 2, 87, 924, 3, 2, 2, 2, 89, 929, 3, 2, 2, 2, 91, 933, 3, 2, 2, 2, 93, 938, 3, 2, 2, 2, 95, 944, 3, 2, 2, 2, 97, 950, 3, 2, 2, 2, 99, 956, 3, 2, 2, 2, 101, 961, 3, 2, 2, 2, 103, 966, 3, 2, 2, 2, 105, 972, 3, 2, 2, 2, 107, 977, 3, 2, 2, 2, 109, 985, 3, 2, 2, 2, 111, 988, 3, 2, 2, 2, 113, 994, 3, 2, 2, 2, 115, 1002, 3, 2, 2, 2, 117, 1009, 3, 2, 2, 2, 119, 1014, 3, 2, 2, 2, 121, 1024, 3, 2, 2, 2, 123, 1030, 3, 2, 2, 2, 125, 1035, 3, 2, 2, 2, 127, 1045, 3, 2, 2, 2, 129, 1055, 3, 2, 2, 2, 131, 1065, 3, 2, 2, 2, 133, 1073, 3, 2, 2, 2, 135, 1079, 3, 2, 2, 2, 137, 1085, 3, 2, 2, 2, 139, 1090, 3, 2, 2, 2, 141, 1095, 3, 2, 2, 2, 143, 1102, 3, 2, 2, 2, 145, 1109, 3, 2, 2, 2, 147, 1115, 3, 2, 2, 2, 149, 1125, 3, 2, 2, 2, 151, 1130, 3, 2, 2, 2, 153, 1138, 3, 2, 2, 2, 155, 1145, 3, 2, 2, 2, 157, 1152, 3, 2, 2, 2, 159, 1157, 3, 2, 2, 2, 161, 1166, 3, 2, 2, 2, 163, 1174, 3, 2, 2, 2, 165, 1181, 3, 2, 2, 2, 167, 1189, 3, 2, 2, 2, 169, 1197, 3, 2, 2, 2, 171, 1202, 3, 2, 2, 2, 173, 1207, 3, 2, 2, 2, 175, 1212, 3, 2, 2, 2, 177, 1219, 3, 2, 2, 2, 179, 1227, 3, 2, 2, 2, 181, 1234, 3, 2, 2, 2, 183, 1238, 3, 2, 2, 2, 185, 1249, 3, 2, 2, 2, 187, 1259, 3, 2, 2, 2, 189, 1264, 3, 2, 2, 2, 191, 1270, 3, 2, 2, 2, 193, 1277, 3, 2, 2, 2, 195, 1286, 3, 2, 2, 2, 197, 1296, 3, 2, 2, 2, 199, 1299, 3, 2, 2, 2, 201, 1311, 3, 2, 2, 2, 203, 1320, 3, 2, 2, 2, 205, 1326, 3, 2, 2, 2, 207, 1333, 3, 2, 2, 2, 209, 1340, 3, 2, 2, 2, 211, 1348, 3, 2, 2, 2, 213, 1352, 3, 2, 2, 2, 215, 1358, 3, 2, 2, 2, 217, 1363, 3, 2, 2, 2, 219, 1369, 3, 2, 2, 2, 221, 1381, 3, 2, 2, 2, 223, 1388, 3, 2, 2, 2, 225, 1397, 3, 2, 2, 2, 227, 1403, 3, 2, 2, 2, 229, 1410, 3, 2, 2, 2, 231, 1415, 3, 2, 2, 2, 233, 1423, 3, 2, 2, 2, 235, 1432, 3, 2, 2, 2, 237, 1435, 3, 2, 2, 2, 239, 1444, 3, 2, 2, 2, 241, 1452, 3, 2, 2, 2, 243, 1455, 3, 2, 2, 2, 245, 1460, 3, 2, 2, 2, 247, 1464, 3, 2, 2, 2, 249, 1469, 3, 2, 2, 2, 251, 1472, 3, 2, 2, 2, 253, 1476, 3, 2, 2, 2, 255, 1479, 3, 2, 2, 2, 257, 1483, 3, 2, 2, 2, 259, 1488, 3, 2, 2, 2, 261, 1494, 3, 2, 2, 2, 263, 1503, 3, 2, 2, 2, 265, 1509, 3, 2, 2, 2, 267, 1517, 3, 2, 2, 2, 269, 1521, 3, 2, 2, 2, 271, 1527, 3, 2, 2, 2, 273, 1537, 3, 2, 2, 2, 275, 1542, 3, 2, 2, 2, 277, 1554, 3, 2, 2, 2, 279, 1558, 3, 2, 2, 2, 281, 1569, 3, 2, 2, 2, 283, 1576, 3, 2, 2, 2, 285, 1580, 3, 2, 2, 2, 287, 1583, 3, 2, 2, 2, 289, 1588, 3, 2, 2, 2, 291, 1596, 3, 2, 2, 2, 293, 1607, 3, 2, 2, 2, 295, 1617, 3, 2, 2, 2, 297, 1627, 3, 2, 2, 2, 299, 1634, 3, 2, 2, 2, 301, 1640, 3, 2, 2, 2, 303, 1646, 3, 2, 2, 2, 305, 1662, 3, 2, 2, 2, 307, 1675, 3, 2, 2, 2, 309, 1688, 3, 2, 2, 2, 311, 1698, 3, 2, 2, 2, 313, 1705, 3, 2, 2, 2, 315, 1716, 3, 2, 2, 2, 317, 1727, 3, 2, 2, 2, 319, 1733, 3, 2, 2, 2, 321, 1738, 3, 2, 2, 2, 323, 1746, 3, 2, 2, 2, 325, 1752, 3, 2, 2, 2, 327, 1762, 3, 2, 2, 2, 329, 1771, 3, 2, 2, 2, 331, 1780, 3, 2, 2, 2, 333, 1788, 3, 2, 2, 2, 335, 1794, 3, 2, 2, 2, 337, 1800, 3, 2, 2, 2, 339, 1808, 3, 2, 2, 2, 341, 1813, 3, 2, 2, 2, 343, 1823, 3, 2, 2, 2, 345, 1830, 3, 2, 2, 2, 347, 1840, 3, 2, 2, 2, 349, 1848, 3, 2, 2, 2, 351, 1854, 3, 2, 2, 2, 353, 1868, 3, 2, 2, 2, 355, 1881, 3, 2, 2, 2, 357, 1889, 3, 2, 2, 2, 359, 1896, 3, 2, 2, 2, 361, 1903, 3, 2, 2, 2, 363, 1915, 3, 2, 2, 2, 365, 1924, 3, 2, 2, 2, 367, 1933, 3, 2, 2, 2, 369, 1941, 3, 2, 2, 2, 371, 1951, 3, 2, 2, 2, 373, 1962, 3, 2, 2, 2, 375, 1968, 3, 2, 2, 2, 377, 1976, 3, 2, 2, 2, 379, 1988, 3, 2, 2, 2, 381, 1995, 3, 2, 2, 2, 383, 2003, 3, 2, 2, 2, 385, 2012, 3, 2, 2, 2, 387, 2022, 3, 2, 2, 2, 389, 2029, 3, 2, 2, 2, 391, 2035, 3, 2, 2, 2, 393, 2047, 3, 2, 2, 2, 395, 2060, 3, 2, 2, 2, 397, 2069, 3, 2, 2, 2, 399, 2079, 3, 2, 2, 2, 401, 2083, 3, 2, 2, 2, 403, 2092, 3, 2, 2, 2, 405, 2100, 3, 2, 2, 2, 407, 2108, 3, 2, 2, 2, 409, 2113, 3, 2, 2, 2, 411, 2124, 3, 2, 2, 2, 413, 2136, 3, 2, 2, 2, 415, 2145, 3, 2, 2, 2, 417, 2153, 3, 2, 2, 2, 419, 2160, 3, 2, 2, 2, 421, 2166, 3, 2, 2, 2, 423, 2171, 3, 2, 2, 2, 425, 2178, 3, 2, 2, 2, 427, 2183, 3, 2, 2, 2, 429, 2190, 3, 2, 2, 2, 431, 2198, 3, 2, 2, 2, 433, 2205, 3, 2, 2, 2, 435, 2212, 3, 2, 2, 2, 437, 2217, 3, 2, 2, 2, 439, 2222, 3, 2, 2, 2, 441, 2228, 3, 2, 2, 2, 443, 2240, 3, 2, 2, 2, 445, 2251, 3, 2, 2, 2, 447, 2264, 3, 2, 2, 2, 449, 2270, 3, 2, 2, 2, 451, 2278, 3, 2, 2, 2, 453, 2284, 3, 2, 2, 2, 455, 2291, 3, 2, 2, 2, 457, 2296, 3, 2, 2, 2, 459, 2302, 3, 2, 2, 2, 461, 2309, 3, 2, 2, 2, 463, 2319, 3, 2, 2, 2, 465, 2326, 3, 2, 2, 2, 467, 2342, 3, 2, 2, 2, 469, 2351, 3, 2, 2, 2, 471, 2355, 3, 2, 2, 2, 473, 2359, 3, 2, 2, 2, 475, 2365, 3, 2, 2, 2, 477, 2371, 3, 2, 2, 2, 479, 2376, 3, 2, 2, 2, 481, 2381, 3, 2, 2, 2, 483, 2389, 3, 2, 2, 2, 485, 2396, 3, 2, 2, 2, 487, 2403, 3, 2, 2, 2, 489, 2418, 3, 2, 2, 2, 491, 2435, 3, 2, 2, 2, 493, 2451, 3, 2, 2, 2, 495, 2465, 3, 2, 2, 2, 497, 2479, 3, 2, 2, 2, 499, 2494, 3, 2, 2, 2, 501, 2513, 3, 2, 2, 2, 503, 2524, 3, 2, 2, 2, 505, 2546, 3, 2, 2, 2, 507, 2561, 3, 2, 2, 2, 509, 2585, 3, 2, 2, 2, 511, 2603, 3, 2, 2, 2, 513, 2606, 3, 2, 2, 2, 515, 2619, 3, 2, 2, 2, 517, 2627, 3, 2, 2, 2, 519, 2635, 3, 2, 2, 2, 521, 2638, 3, 2, 2, 2, 523, 2640, 3, 2, 2, 2, 525, 2647, 3, 2, 2, 2, 527, 2654, 3, 2, 2, 2, 529, 2660, 3, 2, 2, 2, 531, 2664, 3, 2, 2, 2, 533, 2669, 3, 2, 2, 2, 535, 2677, 3, 2, 2, 2, 537, 2684, 3, 2, 2, 2, 539, 2694, 3, 2, 2, 2, 541, 2700, 3, 2, 2, 2, 543, 2708, 3, 2, 2, 2, 545, 2716, 3, 2, 2, 2, 547, 2725, 3, 2, 2, 2, 549, 2729, 3, 2, 2, 2, 551, 2736, 3, 2, 2, 2, 553, 2742, 3, 2, 2, 2, 555, 2749, 3, 2, 2, 2, 557, 2754, 3, 2, 2, 2, 559, 2759, 3, 2, 2, 2, 561, 2769, 3, 2, 2, 2, 563, 2778, 3, 2, 2, 2, 565, 2786, 3, 2, 2, 2, 567, 2790, 3, 2, 2, 2, 569, 2794, 3, 2, 2, 2, 571, 2799, 3, 2, 2, 2, 573, 2801, 3, 2, 2, 2, 575, 2803, 3, 2, 2, 2, 577, 2805, 3, 2, 2, 2, 579, 2807, 3, 2, 2, 2, 581, 2809, 3, 2, 2, 2, 583, 2811, 3, 2, 2, 2, 585, 2813, 3, 2, 2, 2, 587, 2815, 3, 2, 2, 2, 589, 2817, 3, 2, 2, 2, 591, 2819, 3, 2, 2, 2, 593, 2821, 3, 2, 2, 2, 595, 2823, 3, 2, 2, 2, 597, 2825, 3, 2, 2, 2, 599, 2827, 3, 2, 2, 2, 601, 2829, 3, 2, 2, 2, 603, 2831, 3, 2, 2, 2, 605, 2833, 3, 2, 2, 2, 607, 2835, 3, 2, 2, 2, 609, 2837, 3, 2, 2, 2, 611, 2839, 3, 2, 2, 2, 613, 2841, 3, 2, 2, 2, 615, 2843, 3, 2, 2, 2, 617, 2845, 3, 2, 2, 2, 619, 2847, 3, 2, 2, 2, 621, 2849, 3, 2, 2, 2, 623, 2851, 3, 2, 2, 2, 625, 2853, 3, 2, 2, 2, 627, 2855, 3, 2, 2, 2, 629, 2858, 3, 2, 2, 2, 631, 2863, 3, 2, 2, 2, 633, 2866, 3, 2, 2, 2, 635, 2913, 3, 2, 2, 2, 637, 2915, 3, 2, 2, 2, 639, 2920, 3, 2, 2, 2, 641, 2924, 3, 2, 2, 2, 643, 2936, 3, 2, 2, 2, 645, 2950, 3, 2, 2, 2, 647, 2952, 3, 2, 2, 2, 649, 2954, 3, 2, 2, 2, 651, 2967, 3, 2, 2, 2, 653, 2980, 3, 2, 2, 2, 655, 2989, 3, 2, 2, 2, 657, 659, 9, 2, 2, 2, 658, 657, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 658, 3, 2, 2, 2, 660, 661, 3, 2, 2, 2, 661, 662, 3, 2, 2, 2, 662, 663, 8, 2, 2, 2, 663, 4, 3, 2, 2, 2, 664, 665, 7, 49, 2, 2, 665, 666, 7, 44, 2, 2, 666, 667, 7, 35, 2, 2, 667, 669, 3, 2, 2, 2, 668, 670, 11, 2, 2, 2, 669, 668, 3, 2, 2, 2, 670, 671, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 671, 669, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 674, 7, 44, 2, 2, 674, 675, 7, 49, 2, 2, 675, 676, 3, 2, 2, 2, 676, 677, 8, 3, 3, 2, 677, 6, 3, 2, 2, 2, 678, 679, 7, 49, 2, 2, 679, 680, 7, 44, 2, 2, 680, 684, 3, 2, 2, 2, 681, 683, 11, 2, 2, 2, 682, 681, 3, 2, 2, 2, 683, 686, 3, 2, 2, 2, 684, 685, 3, 2, 2, 2, 684, 682, 3, 2, 2, 2, 685, 687, 3, 2, 2, 2, 686, 684, 3, 2, 2, 2, 687, 688, 7, 44, 2, 2, 688, 689, 7, 49, 2, 2, 689, 690, 3, 2, 2, 2, 690, 691, 8, 4, 2, 2, 691, 8, 3, 2, 2, 2, 692, 693, 7, 47, 2, 2, 693, 694, 7, 47, 2, 2, 694, 697, 7, 34, 2, 2, 695, 697, 7, 37, 2, 2, 696, 692, 3, 2, 2, 2, 696, 695, 3, 2, 2, 2, 697, 701, 3, 2, 2, 2, 698, 700, 10, 3, 2, 2, 699, 698, 3, 2, 2, 2, 700, 703, 3, 2, 2, 2, 701, 699, 3, 2, 2, 2, 701, 702, 3, 2, 2, 2, 702, 709, 3, 2, 2, 2, 703, 701, 3, 2, 2, 2, 704, 706, 7, 15, 2, 2, 705, 704, 3, 2, 2, 2, 705, 706, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 710, 7, 12, 2, 2, 708, 710, 7, 2, 2, 3, 709, 705, 3, 2, 2, 2, 709, 708, 3, 2, 2, 2, 710, 722, 3, 2, 2, 2, 711, 712, 7, 47, 2, 2, 712, 713, 7, 47, 2, 2, 713, 719, 3, 2, 2, 2, 714, 716, 7, 15, 2, 2, 715, 714, 3, 2, 2, 2, 715, 716, 3, 2, 2, 2, 716, 717, 3, 2, 2, 2, 717, 720, 7, 12, 2, 2, 718, 720, 7, 2, 2, 3, 719, 715, 3, 2, 2, 2, 719, 718, 3, 2, 2, 2, 720, 722, 3, 2, 2, 2, 721, 696, 3, 2, 2, 2, 721, 711, 3, 2, 2, 2, 722, 723, 3, 2, 2, 2, 723, 724, 8, 5, 2, 2, 724, 10, 3, 2, 2, 2, 725, 726, 7, 85, 2, 2, 726, 727, 7, 71, 2, 2, 727, 728, 7, 78, 2, 2, 728, 729, 7, 71, 2, 2, 729, 730, 7, 69, 2, 2, 730, 731, 7, 86, 2, 2, 731, 12, 3, 2, 2, 2, 732, 733, 7, 72, 2, 2, 733, 734, 7, 84, 2, 2, 734, 735, 7, 81, 2, 2, 735, 736, 7, 79, 2, 2, 736, 14, 3, 2, 2, 2, 737, 738, 7, 67, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 70, 2, 2, 740, 16, 3, 2, 2, 2, 741, 742, 7, 67, 2, 2, 742, 743, 7, 85, 2, 2, 743, 18, 3, 2, 2, 2, 744, 745, 7, 67, 2, 2, 745, 746, 7, 78, 2, 2, 746, 747, 7, 78, 2, 2, 747, 20, 3, 2, 2, 2, 748, 749, 7, 67, 2, 2, 749, 750, 7, 80, 2, 2, 750, 751, 7, 91, 2, 2, 751, 22, 3, 2, 2, 2, 752, 753, 7, 70, 2, 2, 753, 754, 7, 75, 2, 2, 754, 755, 7, 85, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 75, 2, 2, 757, 758, 7, 80, 2, 2, 758, 759, 7, 69, 2, 2, 759, 760, 7, 86, 2, 2, 760, 24, 3, 2, 2, 2, 761, 762, 7, 89, 2, 2, 762, 763, 7, 74, 2, 2, 763, 764, 7, 71, 2, 2, 764, 765, 7, 84, 2, 2, 765, 766, 7, 71, 2, 2, 766, 26, 3, 2, 2, 2, 767, 768, 7, 73, 2, 2, 768, 769, 7, 84, 2, 2, 769, 770, 7, 81, 2, 2, 770, 771, 7, 87, 2, 2, 771, 772, 7, 82, 2, 2, 772, 28, 3, 2, 2, 2, 773, 774, 7, 68, 2, 2, 774, 775, 7, 91, 2, 2, 775, 30, 3, 2, 2, 2, 776, 777, 7, 73, 2, 2, 777, 778, 7, 84, 2, 2, 778, 779, 7, 81, 2, 2, 779, 780, 7, 87, 2, 2, 780, 781, 7, 82, 2, 2, 781, 782, 7, 75, 2, 2, 782, 783, 7, 80, 2, 2, 783, 784, 7, 73, 2, 2, 784, 32, 3, 2, 2, 2, 785, 786, 7, 85, 2, 2, 786, 787, 7, 71, 2, 2, 787, 788, 7, 86, 2, 2, 788, 789, 7, 85, 2, 2, 789, 34, 3, 2, 2, 2, 790, 791, 7, 69, 2, 2, 791, 792, 7, 87, 2, 2, 792, 793, 7, 68, 2, 2, 793, 794, 7, 71, 2, 2, 794, 36, 3, 2, 2, 2, 795, 796, 7, 84, 2, 2, 796, 797, 7, 81, 2, 2, 797, 798, 7, 78, 2, 2, 798, 799, 7, 78, 2, 2, 799, 800, 7, 87, 2, 2, 800, 801, 7, 82, 2, 2, 801, 38, 3, 2, 2, 2, 802, 803, 7, 81, 2, 2, 803, 804, 7, 84, 2, 2, 804, 805, 7, 70, 2, 2, 805, 806, 7, 71, 2, 2, 806, 807, 7, 84, 2, 2, 807, 40, 3, 2, 2, 2, 808, 809, 7, 74, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 88, 2, 2, 811, 812, 7, 75, 2, 2, 812, 813, 7, 80, 2, 2, 813, 814, 7, 73, 2, 2, 814, 42, 3, 2, 2, 2, 815, 816, 7, 78, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 79, 2, 2, 818, 819, 7, 75, 2, 2, 819, 820, 7, 86, 2, 2, 820, 44, 3, 2, 2, 2, 821, 822, 7, 67, 2, 2, 822, 823, 7, 86, 2, 2, 823, 46, 3, 2, 2, 2, 824, 825, 7, 81, 2, 2, 825, 826, 7, 84, 2, 2, 826, 48, 3, 2, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 80, 2, 2, 829, 830, 7, 70, 2, 2, 830, 50, 3, 2, 2, 2, 831, 832, 7, 75, 2, 2, 832, 833, 7, 80, 2, 2, 833, 52, 3, 2, 2, 2, 834, 835, 7, 80, 2, 2, 835, 836, 7, 81, 2, 2, 836, 837, 7, 86, 2, 2, 837, 54, 3, 2, 2, 2, 838, 839, 7, 80, 2, 2, 839, 840, 7, 81, 2, 2, 840, 56, 3, 2, 2, 2, 841, 842, 7, 71, 2, 2, 842, 843, 7, 90, 2, 2, 843, 844, 7, 75, 2, 2, 844, 845, 7, 85, 2, 2, 845, 846, 7, 86, 2, 2, 846, 847, 7, 85, 2, 2, 847, 58, 3, 2, 2, 2, 848, 849, 7, 68, 2, 2, 849, 850, 7, 71, 2, 2, 850, 851, 7, 86, 2, 2, 851, 852, 7, 89, 2, 2, 852, 853, 7, 71, 2, 2, 853, 854, 7, 71, 2, 2, 854, 855, 7, 80, 2, 2, 855, 60, 3, 2, 2, 2, 856, 857, 7, 78, 2, 2, 857, 858, 7, 75, 2, 2, 858, 859, 7, 77, 2, 2, 859, 860, 7, 71, 2, 2, 860, 62, 3, 2, 2, 2, 861, 862, 7, 84, 2, 2, 862, 863, 7, 78, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 77, 2, 2, 865, 866, 7, 71, 2, 2, 866, 64, 3, 2, 2, 2, 867, 868, 7, 75, 2, 2, 868, 869, 7, 85, 2, 2, 869, 66, 3, 2, 2, 2, 870, 871, 7, 86, 2, 2, 871, 872, 7, 84, 2, 2, 872, 873, 7, 87, 2, 2, 873, 874, 7, 71, 2, 2, 874, 68, 3, 2, 2, 2, 875, 876, 7, 72, 2, 2, 876, 877, 7, 67, 2, 2, 877, 878, 7, 78, 2, 2, 878, 879, 7, 85, 2, 2, 879, 880, 7, 71, 2, 2, 880, 70, 3, 2, 2, 2, 881, 882, 7, 80, 2, 2, 882, 883, 7, 87, 2, 2, 883, 884, 7, 78, 2, 2, 884, 885, 7, 78, 2, 2, 885, 886, 7, 85, 2, 2, 886, 72, 3, 2, 2, 2, 887, 888, 7, 67, 2, 2, 888, 889, 7, 85, 2, 2, 889, 890, 7, 69, 2, 2, 890, 74, 3, 2, 2, 2, 891, 892, 7, 70, 2, 2, 892, 893, 7, 71, 2, 2, 893, 894, 7, 85, 2, 2, 894, 895, 7, 69, 2, 2, 895, 76, 3, 2, 2, 2, 896, 897, 7, 72, 2, 2, 897, 898, 7, 81, 2, 2, 898, 899, 7, 84, 2, 2, 899, 78, 3, 2, 2, 2, 900, 901, 7, 75, 2, 2, 901, 902, 7, 80, 2, 2, 902, 903, 7, 86, 2, 2, 903, 904, 7, 71, 2, 2, 904, 905, 7, 84, 2, 2, 905, 906, 7, 88, 2, 2, 906, 907, 7, 67, 2, 2, 907, 908, 7, 78, 2, 2, 908, 80, 3, 2, 2, 2, 909, 910, 7, 69, 2, 2, 910, 911, 7, 67, 2, 2, 911, 912, 7, 85, 2, 2, 912, 913, 7, 71, 2, 2, 913, 82, 3, 2, 2, 2, 914, 915, 7, 89, 2, 2, 915, 916, 7, 74, 2, 2, 916, 917, 7, 71, 2, 2, 917, 918, 7, 80, 2, 2, 918, 84, 3, 2, 2, 2, 919, 920, 7, 86, 2, 2, 920, 921, 7, 74, 2, 2, 921, 922, 7, 71, 2, 2, 922, 923, 7, 80, 2, 2, 923, 86, 3, 2, 2, 2, 924, 925, 7, 71, 2, 2, 925, 926, 7, 78, 2, 2, 926, 927, 7, 85, 2, 2, 927, 928, 7, 71, 2, 2, 928, 88, 3, 2, 2, 2, 929, 930, 7, 71, 2, 2, 930, 931, 7, 80, 2, 2, 931, 932, 7, 70, 2, 2, 932, 90, 3, 2, 2, 2, 933, 934, 7, 76, 2, 2, 934, 935, 7, 81, 2, 2, 935, 936, 7, 75, 2, 2, 936, 937, 7, 80, 2, 2, 937, 92, 3, 2, 2, 2, 938, 939, 7, 69, 2, 2, 939, 940, 7, 84, 2, 2, 940, 941, 7, 81, 2, 2, 941, 942, 7, 85, 2, 2, 942, 943, 7, 85, 2, 2, 943, 94, 3, 2, 2, 2, 944, 945, 7, 81, 2, 2, 945, 946, 7, 87, 2, 2, 946, 947, 7, 86, 2, 2, 947, 948, 7, 71, 2, 2, 948, 949, 7, 84, 2, 2, 949, 96, 3, 2, 2, 2, 950, 951, 7, 75, 2, 2, 951, 952, 7, 80, 2, 2, 952, 953, 7, 80, 2, 2, 953, 954, 7, 71, 2, 2, 954, 955, 7, 84, 2, 2, 955, 98, 3, 2, 2, 2, 956, 957, 7, 78, 2, 2, 957, 958, 7, 71, 2, 2, 958, 959, 7, 72, 2, 2, 959, 960, 7, 86, 2, 2, 960, 100, 3, 2, 2, 2, 961, 962, 7, 85, 2, 2, 962, 963, 7, 71, 2, 2, 963, 964, 7, 79, 2, 2, 964, 965, 7, 75, 2, 2, 965, 102, 3, 2, 2, 2, 966, 967, 7, 84, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 73, 2, 2, 969, 970, 7, 74, 2, 2, 970, 971, 7, 86, 2, 2, 971, 104, 3, 2, 2, 2, 972, 973, 7, 72, 2, 2, 973, 974, 7, 87, 2, 2, 974, 975, 7, 78, 2, 2, 975, 976, 7, 78, 2, 2, 976, 106, 3, 2, 2, 2, 977, 978, 7, 80, 2, 2, 978, 979, 7, 67, 2, 2, 979, 980, 7, 86, 2, 2, 980, 981, 7, 87, 2, 2, 981, 982, 7, 84, 2, 2, 982, 983, 7, 67, 2, 2, 983, 984, 7, 78, 2, 2, 984, 108, 3, 2, 2, 2, 985, 986, 7, 81, 2, 2, 986, 987, 7, 80, 2, 2, 987, 110, 3, 2, 2, 2, 988, 989, 7, 82, 2, 2, 989, 990, 7, 75, 2, 2, 990, 991, 7, 88, 2, 2, 991, 992, 7, 81, 2, 2, 992, 993, 7, 86, 2, 2, 993, 112, 3, 2, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 67, 2, 2, 996, 997, 7, 86, 2, 2, 997, 998, 7, 71, 2, 2, 998, 999, 7, 84, 2, 2, 999, 1000, 7, 67, 2, 2, 1000, 1001, 7, 78, 2, 2, 1001, 114, 3, 2, 2, 2, 1002, 1003, 7, 89, 2, 2, 1003, 1004, 7, 75, 2, 2, 1004, 1005, 7, 80, 2, 2, 1005, 1006, 7, 70, 2, 2, 1006, 1007, 7, 81, 2, 2, 1007, 1008, 7, 89, 2, 2, 1008, 116, 3, 2, 2, 2, 1009, 1010, 7, 81, 2, 2, 1010, 1011, 7, 88, 2, 2, 1011, 1012, 7, 71, 2, 2, 1012, 1013, 7, 84, 2, 2, 1013, 118, 3, 2, 2, 2, 1014, 1015, 7, 82, 2, 2, 1015, 1016, 7, 67, 2, 2, 1016, 1017, 7, 84, 2, 2, 1017, 1018, 7, 86, 2, 2, 1018, 1019, 7, 75, 2, 2, 1019, 1020, 7, 86, 2, 2, 1020, 1021, 7, 75, 2, 2, 1021, 1022, 7, 81, 2, 2, 1022, 1023, 7, 80, 2, 2, 1023, 120, 3, 2, 2, 2, 1024, 1025, 7, 84, 2, 2, 1025, 1026, 7, 67, 2, 2, 1026, 1027, 7, 80, 2, 2, 1027, 1028, 7, 73, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 122, 3, 2, 2, 2, 1030, 1031, 7, 84, 2, 2, 1031, 1032, 7, 81, 2, 2, 1032, 1033, 7, 89, 2, 2, 1033, 1034, 7, 85, 2, 2, 1034, 124, 3, 2, 2, 2, 1035, 1036, 7, 87, 2, 2, 1036, 1037, 7, 80, 2, 2, 1037, 1038, 7, 68, 2, 2, 1038, 1039, 7, 81, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 80, 2, 2, 1041, 1042, 7, 70, 2, 2, 1042, 1043, 7, 71, 2, 2, 1043, 1044, 7, 70, 2, 2, 1044, 126, 3, 2, 2, 2, 1045, 1046, 7, 82, 2, 2, 1046, 1047, 7, 84, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 69, 2, 2, 1049, 1050, 7, 71, 2, 2, 1050, 1051, 7, 70, 2, 2, 1051, 1052, 7, 75, 2, 2, 1052, 1053, 7, 80, 2, 2, 1053, 1054, 7, 73, 2, 2, 1054, 128, 3, 2, 2, 2, 1055, 1056, 7, 72, 2, 2, 1056, 1057, 7, 81, 2, 2, 1057, 1058, 7, 78, 2, 2, 1058, 1059, 7, 78, 2, 2, 1059, 1060, 7, 81, 2, 2, 1060, 1061, 7, 89, 2, 2, 1061, 1062, 7, 75, 2, 2, 1062, 1063, 7, 80, 2, 2, 1063, 1064, 7, 73, 2, 2, 1064, 130, 3, 2, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 87, 2, 2, 1067, 1068, 7, 84, 2, 2, 1068, 1069, 7, 84, 2, 2, 1069, 1070, 7, 71, 2, 2, 1070, 1071, 7, 80, 2, 2, 1071, 1072, 7, 86, 2, 2, 1072, 132, 3, 2, 2, 2, 1073, 1074, 7, 72, 2, 2, 1074, 1075, 7, 75, 2, 2, 1075, 1076, 7, 84, 2, 2, 1076, 1077, 7, 85, 2, 2, 1077, 1078, 7, 86, 2, 2, 1078, 134, 3, 2, 2, 2, 1079, 1080, 7, 67, 2, 2, 1080, 1081, 7, 72, 2, 2, 1081, 1082, 7, 86, 2, 2, 1082, 1083, 7, 71, 2, 2, 1083, 1084, 7, 84, 2, 2, 1084, 136, 3, 2, 2, 2, 1085, 1086, 7, 78, 2, 2, 1086, 1087, 7, 67, 2, 2, 1087, 1088, 7, 85, 2, 2, 1088, 1089, 7, 86, 2, 2, 1089, 138, 3, 2, 2, 2, 1090, 1091, 7, 89, 2, 2, 1091, 1092, 7, 75, 2, 2, 1092, 1093, 7, 86, 2, 2, 1093, 1094, 7, 74, 2, 2, 1094, 140, 3, 2, 2, 2, 1095, 1096, 7, 88, 2, 2, 1096, 1097, 7, 67, 2, 2, 1097, 1098, 7, 78, 2, 2, 1098, 1099, 7, 87, 2, 2, 1099, 1100, 7, 71, 2, 2, 1100, 1101, 7, 85, 2, 2, 1101, 142, 3, 2, 2, 2, 1102, 1103, 7, 69, 2, 2, 1103, 1104, 7, 84, 2, 2, 1104, 1105, 7, 71, 2, 2, 1105, 1106, 7, 67, 2, 2, 1106, 1107, 7, 86, 2, 2, 1107, 1108, 7, 71, 2, 2, 1108, 144, 3, 2, 2, 2, 1109, 1110, 7, 86, 2, 2, 1110, 1111, 7, 67, 2, 2, 1111, 1112, 7, 68, 2, 2, 1112, 1113, 7, 78, 2, 2, 1113, 1114, 7, 71, 2, 2, 1114, 146, 3, 2, 2, 2, 1115, 1116, 7, 70, 2, 2, 1116, 1117, 7, 75, 2, 2, 1117, 1118, 7, 84, 2, 2, 1118, 1119, 7, 71, 2, 2, 1119, 1120, 7, 69, 2, 2, 1120, 1121, 7, 86, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 84, 2, 2, 1123, 1124, 7, 91, 2, 2, 1124, 148, 3, 2, 2, 2, 1125, 1126, 7, 88, 2, 2, 1126, 1127, 7, 75, 2, 2, 1127, 1128, 7, 71, 2, 2, 1128, 1129, 7, 89, 2, 2, 1129, 150, 3, 2, 2, 2, 1130, 1131, 7, 84, 2, 2, 1131, 1132, 7, 71, 2, 2, 1132, 1133, 7, 82, 2, 2, 1133, 1134, 7, 78, 2, 2, 1134, 1135, 7, 67, 2, 2, 1135, 1136, 7, 69, 2, 2, 1136, 1137, 7, 71, 2, 2, 1137, 152, 3, 2, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 85, 2, 2, 1141, 1142, 7, 71, 2, 2, 1142, 1143, 7, 84, 2, 2, 1143, 1144, 7, 86, 2, 2, 1144, 154, 3, 2, 2, 2, 1145, 1146, 7, 70, 2, 2, 1146, 1147, 7, 71, 2, 2, 1147, 1148, 7, 78, 2, 2, 1148, 1149, 7, 71, 2, 2, 1149, 1150, 7, 86, 2, 2, 1150, 1151, 7, 71, 2, 2, 1151, 156, 3, 2, 2, 2, 1152, 1153, 7, 75, 2, 2, 1153, 1154, 7, 80, 2, 2, 1154, 1155, 7, 86, 2, 2, 1155, 1156, 7, 81, 2, 2, 1156, 158, 3, 2, 2, 2, 1157, 1158, 7, 70, 2, 2, 1158, 1159, 7, 71, 2, 2, 1159, 1160, 7, 85, 2, 2, 1160, 1161, 7, 69, 2, 2, 1161, 1162, 7, 84, 2, 2, 1162, 1163, 7, 75, 2, 2, 1163, 1164, 7, 68, 2, 2, 1164, 1165, 7, 71, 2, 2, 1165, 160, 3, 2, 2, 2, 1166, 1167, 7, 71, 2, 2, 1167, 1168, 7, 90, 2, 2, 1168, 1169, 7, 82, 2, 2, 1169, 1170, 7, 78, 2, 2, 1170, 1171, 7, 67, 2, 2, 1171, 1172, 7, 75, 2, 2, 1172, 1173, 7, 80, 2, 2, 1173, 162, 3, 2, 2, 2, 1174, 1175, 7, 72, 2, 2, 1175, 1176, 7, 81, 2, 2, 1176, 1177, 7, 84, 2, 2, 1177, 1178, 7, 79, 2, 2, 1178, 1179, 7, 67, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 164, 3, 2, 2, 2, 1181, 1182, 7, 78, 2, 2, 1182, 1183, 7, 81, 2, 2, 1183, 1184, 7, 73, 2, 2, 1184, 1185, 7, 75, 2, 2, 1185, 1186, 7, 69, 2, 2, 1186, 1187, 7, 67, 2, 2, 1187, 1188, 7, 78, 2, 2, 1188, 166, 3, 2, 2, 2, 1189, 1190, 7, 69, 2, 2, 1190, 1191, 7, 81, 2, 2, 1191, 1192, 7, 70, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 73, 2, 2, 1194, 1195, 7, 71, 2, 2, 1195, 1196, 7, 80, 2, 2, 1196, 168, 3, 2, 2, 2, 1197, 1198, 7, 69, 2, 2, 1198, 1199, 7, 81, 2, 2, 1199, 1200, 7, 85, 2, 2, 1200, 1201, 7, 86, 2, 2, 1201, 170, 3, 2, 2, 2, 1202, 1203, 7, 69, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 85, 2, 2, 1205, 1206, 7, 86, 2, 2, 1206, 172, 3, 2, 2, 2, 1207, 1208, 7, 85, 2, 2, 1208, 1209, 7, 74, 2, 2, 1209, 1210, 7, 81, 2, 2, 1210, 1211, 7, 89, 2, 2, 1211, 174, 3, 2, 2, 2, 1212, 1213, 7, 86, 2, 2, 1213, 1214, 7, 67, 2, 2, 1214, 1215, 7, 68, 2, 2, 1215, 1216, 7, 78, 2, 2, 1216, 1217, 7, 71, 2, 2, 1217, 1218, 7, 85, 2, 2, 1218, 176, 3, 2, 2, 2, 1219, 1220, 7, 69, 2, 2, 1220, 1221, 7, 81, 2, 2, 1221, 1222, 7, 78, 2, 2, 1222, 1223, 7, 87, 2, 2, 1223, 1224, 7, 79, 2, 2, 1224, 1225, 7, 80, 2, 2, 1225, 1226, 7, 85, 2, 2, 1226, 178, 3, 2, 2, 2, 1227, 1228, 7, 69, 2, 2, 1228, 1229, 7, 81, 2, 2, 1229, 1230, 7, 78, 2, 2, 1230, 1231, 7, 87, 2, 2, 1231, 1232, 7, 79, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 180, 3, 2, 2, 2, 1234, 1235, 7, 87, 2, 2, 1235, 1236, 7, 85, 2, 2, 1236, 1237, 7, 71, 2, 2, 1237, 182, 3, 2, 2, 2, 1238, 1239, 7, 82, 2, 2, 1239, 1240, 7, 67, 2, 2, 1240, 1241, 7, 84, 2, 2, 1241, 1242, 7, 86, 2, 2, 1242, 1243, 7, 75, 2, 2, 1243, 1244, 7, 86, 2, 2, 1244, 1245, 7, 75, 2, 2, 1245, 1246, 7, 81, 2, 2, 1246, 1247, 7, 80, 2, 2, 1247, 1248, 7, 85, 2, 2, 1248, 184, 3, 2, 2, 2, 1249, 1250, 7, 72, 2, 2, 1250, 1251, 7, 87, 2, 2, 1251, 1252, 7, 80, 2, 2, 1252, 1253, 7, 69, 2, 2, 1253, 1254, 7, 86, 2, 2, 1254, 1255, 7, 75, 2, 2, 1255, 1256, 7, 81, 2, 2, 1256, 1257, 7, 80, 2, 2, 1257, 1258, 7, 85, 2, 2, 1258, 186, 3, 2, 2, 2, 1259, 1260, 7, 70, 2, 2, 1260, 1261, 7, 84, 2, 2, 1261, 1262, 7, 81, 2, 2, 1262, 1263, 7, 82, 2, 2, 1263, 188, 3, 2, 2, 2, 1264, 1265, 7, 87, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 75, 2, 2, 1267, 1268, 7, 81, 2, 2, 1268, 1269, 7, 80, 2, 2, 1269, 190, 3, 2, 2, 2, 1270, 1271, 7, 71, 2, 2, 1271, 1272, 7, 90, 2, 2, 1272, 1273, 7, 69, 2, 2, 1273, 1274, 7, 71, 2, 2, 1274, 1275, 7, 82, 2, 2, 1275, 1276, 7, 86, 2, 2, 1276, 192, 3, 2, 2, 2, 1277, 1278, 7, 85, 2, 2, 1278, 1279, 7, 71, 2, 2, 1279, 1280, 7, 86, 2, 2, 1280, 1281, 7, 79, 2, 2, 1281, 1282, 7, 75, 2, 2, 1282, 1283, 7, 80, 2, 2, 1283, 1284, 7, 87, 2, 2, 1284, 1285, 7, 85, 2, 2, 1285, 194, 3, 2, 2, 2, 1286, 1287, 7, 75, 2, 2, 1287, 1288, 7, 80, 2, 2, 1288, 1289, 7, 86, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 1291, 7, 84, 2, 2, 1291, 1292, 7, 85, 2, 2, 1292, 1293, 7, 71, 2, 2, 1293, 1294, 7, 69, 2, 2, 1294, 1295, 7, 86, 2, 2, 1295, 196, 3, 2, 2, 2, 1296, 1297, 7, 86, 2, 2, 1297, 1298, 7, 81, 2, 2, 1298, 198, 3, 2, 2, 2, 1299, 1300, 7, 86, 2, 2, 1300, 1301, 7, 67, 2, 2, 1301, 1302, 7, 68, 2, 2, 1302, 1303, 7, 78, 2, 2, 1303, 1304, 7, 71, 2, 2, 1304, 1305, 7, 85, 2, 2, 1305, 1306, 7, 67, 2, 2, 1306, 1307, 7, 79, 2, 2, 1307, 1308, 7, 82, 2, 2, 1308, 1309, 7, 78, 2, 2, 1309, 1310, 7, 71, 2, 2, 1310, 200, 3, 2, 2, 2, 1311, 1312, 7, 85, 2, 2, 1312, 1313, 7, 86, 2, 2, 1313, 1314, 7, 84, 2, 2, 1314, 1315, 7, 67, 2, 2, 1315, 1316, 7, 86, 2, 2, 1316, 1317, 7, 75, 2, 2, 1317, 1318, 7, 72, 2, 2, 1318, 1319, 7, 91, 2, 2, 1319, 202, 3, 2, 2, 2, 1320, 1321, 7, 67, 2, 2, 1321, 1322, 7, 78, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 1324, 7, 71, 2, 2, 1324, 1325, 7, 84, 2, 2, 1325, 204, 3, 2, 2, 2, 1326, 1327, 7, 84, 2, 2, 1327, 1328, 7, 71, 2, 2, 1328, 1329, 7, 80, 2, 2, 1329, 1330, 7, 67, 2, 2, 1330, 1331, 7, 79, 2, 2, 1331, 1332, 7, 71, 2, 2, 1332, 206, 3, 2, 2, 2, 1333, 1334, 7, 85, 2, 2, 1334, 1335, 7, 86, 2, 2, 1335, 1336, 7, 84, 2, 2, 1336, 1337, 7, 87, 2, 2, 1337, 1338, 7, 69, 2, 2, 1338, 1339, 7, 86, 2, 2, 1339, 208, 3, 2, 2, 2, 1340, 1341, 7, 69, 2, 2, 1341, 1342, 7, 81, 2, 2, 1342, 1343, 7, 79, 2, 2, 1343, 1344, 7, 79, 2, 2, 1344, 1345, 7, 71, 2, 2, 1345, 1346, 7, 80, 2, 2, 1346, 1347, 7, 86, 2, 2, 1347, 210, 3, 2, 2, 2, 1348, 1349, 7, 85, 2, 2, 1349, 1350, 7, 71, 2, 2, 1350, 1351, 7, 86, 2, 2, 1351, 212, 3, 2, 2, 2, 1352, 1353, 7, 84, 2, 2, 1353, 1354, 7, 71, 2, 2, 1354, 1355, 7, 85, 2, 2, 1355, 1356, 7, 71, 2, 2, 1356, 1357, 7, 86, 2, 2, 1357, 214, 3, 2, 2, 2, 1358, 1359, 7, 70, 2, 2, 1359, 1360, 7, 67, 2, 2, 1360, 1361, 7, 86, 2, 2, 1361, 1362, 7, 67, 2, 2, 1362, 216, 3, 2, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 67, 2, 2, 1366, 1367, 7, 84, 2, 2, 1367, 1368, 7, 86, 2, 2, 1368, 218, 3, 2, 2, 2, 1369, 1370, 7, 86, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 67, 2, 2, 1372, 1373, 7, 80, 2, 2, 1373, 1374, 7, 85, 2, 2, 1374, 1375, 7, 67, 2, 2, 1375, 1376, 7, 69, 2, 2, 1376, 1377, 7, 86, 2, 2, 1377, 1378, 7, 75, 2, 2, 1378, 1379, 7, 81, 2, 2, 1379, 1380, 7, 80, 2, 2, 1380, 220, 3, 2, 2, 2, 1381, 1382, 7, 69, 2, 2, 1382, 1383, 7, 81, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 79, 2, 2, 1385, 1386, 7, 75, 2, 2, 1386, 1387, 7, 86, 2, 2, 1387, 222, 3, 2, 2, 2, 1388, 1389, 7, 84, 2, 2, 1389, 1390, 7, 81, 2, 2, 1390, 1391, 7, 78, 2, 2, 1391, 1392, 7, 78, 2, 2, 1392, 1393, 7, 68, 2, 2, 1393, 1394, 7, 67, 2, 2, 1394, 1395, 7, 69, 2, 2, 1395, 1396, 7, 77, 2, 2, 1396, 224, 3, 2, 2, 2, 1397, 1398, 7, 79, 2, 2, 1398, 1399, 7, 67, 2, 2, 1399, 1400, 7, 69, 2, 2, 1400, 1401, 7, 84, 2, 2, 1401, 1402, 7, 81, 2, 2, 1402, 226, 3, 2, 2, 2, 1403, 1404, 7, 75, 2, 2, 1404, 1405, 7, 73, 2, 2, 1405, 1406, 7, 80, 2, 2, 1406, 1407, 7, 81, 2, 2, 1407, 1408, 7, 84, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 228, 3, 2, 2, 2, 1410, 1411, 7, 68, 2, 2, 1411, 1412, 7, 81, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 74, 2, 2, 1414, 230, 3, 2, 2, 2, 1415, 1416, 7, 78, 2, 2, 1416, 1417, 7, 71, 2, 2, 1417, 1418, 7, 67, 2, 2, 1418, 1419, 7, 70, 2, 2, 1419, 1420, 7, 75, 2, 2, 1420, 1421, 7, 80, 2, 2, 1421, 1422, 7, 73, 2, 2, 1422, 232, 3, 2, 2, 2, 1423, 1424, 7, 86, 2, 2, 1424, 1425, 7, 84, 2, 2, 1425, 1426, 7, 67, 2, 2, 1426, 1427, 7, 75, 2, 2, 1427, 1428, 7, 78, 2, 2, 1428, 1429, 7, 75, 2, 2, 1429, 1430, 7, 80, 2, 2, 1430, 1431, 7, 73, 2, 2, 1431, 234, 3, 2, 2, 2, 1432, 1433, 7, 75, 2, 2, 1433, 1434, 7, 72, 2, 2, 1434, 236, 3, 2, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 1437, 7, 81, 2, 2, 1437, 1438, 7, 85, 2, 2, 1438, 1439, 7, 75, 2, 2, 1439, 1440, 7, 86, 2, 2, 1440, 1441, 7, 75, 2, 2, 1441, 1442, 7, 81, 2, 2, 1442, 1443, 7, 80, 2, 2, 1443, 238, 3, 2, 2, 2, 1444, 1445, 7, 71, 2, 2, 1445, 1446, 7, 90, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 84, 2, 2, 1448, 1449, 7, 67, 2, 2, 1449, 1450, 7, 69, 2, 2, 1450, 1451, 7, 86, 2, 2, 1451, 240, 3, 2, 2, 2, 1452, 1453, 7, 71, 2, 2, 1453, 1454, 7, 83, 2, 2, 1454, 242, 3, 2, 2, 2, 1455, 1456, 7, 80, 2, 2, 1456, 1457, 7, 85, 2, 2, 1457, 1458, 7, 71, 2, 2, 1458, 1459, 7, 83, 2, 2, 1459, 244, 3, 2, 2, 2, 1460, 1461, 7, 80, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 83, 2, 2, 1463, 246, 3, 2, 2, 2, 1464, 1465, 7, 80, 2, 2, 1465, 1466, 7, 71, 2, 2, 1466, 1467, 7, 83, 2, 2, 1467, 1468, 7, 76, 2, 2, 1468, 248, 3, 2, 2, 2, 1469, 1470, 7, 78, 2, 2, 1470, 1471, 7, 86, 2, 2, 1471, 250, 3, 2, 2, 2, 1472, 1473, 7, 78, 2, 2, 1473, 1474, 7, 86, 2, 2, 1474, 1475, 7, 71, 2, 2, 1475, 252, 3, 2, 2, 2, 1476, 1477, 7, 73, 2, 2, 1477, 1478, 7, 86, 2, 2, 1478, 254, 3, 2, 2, 2, 1479, 1480, 7, 73, 2, 2, 1480, 1481, 7, 86, 2, 2, 1481, 1482, 7, 71, 2, 2, 1482, 256, 3, 2, 2, 2, 1483, 1484, 7, 82, 2, 2, 1484, 1485, 7, 78, 2, 2, 1485, 1486, 7, 87, 2, 2, 1486, 1487, 7, 85, 2, 2, 1487, 258, 3, 2, 2, 2, 1488, 1489, 7, 79, 2, 2, 1489, 1490, 7, 75, 2, 2, 1490, 1491, 7, 80, 2, 2, 1491, 1492, 7, 87, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 260, 3, 2, 2, 2, 1494, 1495, 7, 67, 2, 2, 1495, 1496, 7, 85, 2, 2, 1496, 1497, 7, 86, 2, 2, 1497, 1498, 7, 71, 2, 2, 1498, 1499, 7, 84, 2, 2, 1499, 1500, 7, 75, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 1502, 7, 77, 2, 2, 1502, 262, 3, 2, 2, 2, 1503, 1504, 7, 85, 2, 2, 1504, 1505, 7, 78, 2, 2, 1505, 1506, 7, 67, 2, 2, 1506, 1507, 7, 85, 2, 2, 1507, 1508, 7, 74, 2, 2, 1508, 264, 3, 2, 2, 2, 1509, 1510, 7, 82, 2, 2, 1510, 1511, 7, 71, 2, 2, 1511, 1512, 7, 84, 2, 2, 1512, 1513, 7, 69, 2, 2, 1513, 1514, 7, 71, 2, 2, 1514, 1515, 7, 80, 2, 2, 1515, 1516, 7, 86, 2, 2, 1516, 266, 3, 2, 2, 2, 1517, 1518, 7, 70, 2, 2, 1518, 1519, 7, 75, 2, 2, 1519, 1520, 7, 88, 2, 2, 1520, 268, 3, 2, 2, 2, 1521, 1522, 7, 86, 2, 2, 1522, 1523, 7, 75, 2, 2, 1523, 1524, 7, 78, 2, 2, 1524, 1525, 7, 70, 2, 2, 1525, 1526, 7, 71, 2, 2, 1526, 270, 3, 2, 2, 2, 1527, 1528, 7, 67, 2, 2, 1528, 1529, 7, 79, 2, 2, 1529, 1530, 7, 82, 2, 2, 1530, 1531, 7, 71, 2, 2, 1531, 1532, 7, 84, 2, 2, 1532, 1533, 7, 85, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 80, 2, 2, 1535, 1536, 7, 70, 2, 2, 1536, 272, 3, 2, 2, 2, 1537, 1538, 7, 82, 2, 2, 1538, 1539, 7, 75, 2, 2, 1539, 1540, 7, 82, 2, 2, 1540, 1541, 7, 71, 2, 2, 1541, 274, 3, 2, 2, 2, 1542, 1543, 7, 69, 2, 2, 1543, 1544, 7, 81, 2, 2, 1544, 1545, 7, 80, 2, 2, 1545, 1546, 7, 69, 2, 2, 1546, 1547, 7, 67, 2, 2, 1547, 1548, 7, 86, 2, 2, 1548, 1549, 7, 97, 2, 2, 1549, 1550, 7, 82, 2, 2, 1550, 1551, 7, 75, 2, 2, 1551, 1552, 7, 82, 2, 2, 1552, 1553, 7, 71, 2, 2, 1553, 276, 3, 2, 2, 2, 1554, 1555, 7, 74, 2, 2, 1555, 1556, 7, 67, 2, 2, 1556, 1557, 7, 86, 2, 2, 1557, 278, 3, 2, 2, 2, 1558, 1559, 7, 82, 2, 2, 1559, 1560, 7, 71, 2, 2, 1560, 1561, 7, 84, 2, 2, 1561, 1562, 7, 69, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 80, 2, 2, 1564, 1565, 7, 86, 2, 2, 1565, 1566, 7, 78, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 86, 2, 2, 1568, 280, 3, 2, 2, 2, 1569, 1570, 7, 68, 2, 2, 1570, 1571, 7, 87, 2, 2, 1571, 1572, 7, 69, 2, 2, 1572, 1573, 7, 77, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 86, 2, 2, 1575, 282, 3, 2, 2, 2, 1576, 1577, 7, 81, 2, 2, 1577, 1578, 7, 87, 2, 2, 1578, 1579, 7, 86, 2, 2, 1579, 284, 3, 2, 2, 2, 1580, 1581, 7, 81, 2, 2, 1581, 1582, 7, 72, 2, 2, 1582, 286, 3, 2, 2, 2, 1583, 1584, 7, 85, 2, 2, 1584, 1585, 7, 81, 2, 2, 1585, 1586, 7, 84, 2, 2, 1586, 1587, 7, 86, 2, 2, 1587, 288, 3, 2, 2, 2, 1588, 1589, 7, 69, 2, 2, 1589, 1590, 7, 78, 2, 2, 1590, 1591, 7, 87, 2, 2, 1591, 1592, 7, 85, 2, 2, 1592, 1593, 7, 86, 2, 2, 1593, 1594, 7, 71, 2, 2, 1594, 1595, 7, 84, 2, 2, 1595, 290, 3, 2, 2, 2, 1596, 1597, 7, 70, 2, 2, 1597, 1598, 7, 75, 2, 2, 1598, 1599, 7, 85, 2, 2, 1599, 1600, 7, 86, 2, 2, 1600, 1601, 7, 84, 2, 2, 1601, 1602, 7, 75, 2, 2, 1602, 1603, 7, 68, 2, 2, 1603, 1604, 7, 87, 2, 2, 1604, 1605, 7, 86, 2, 2, 1605, 1606, 7, 71, 2, 2, 1606, 292, 3, 2, 2, 2, 1607, 1608, 7, 81, 2, 2, 1608, 1609, 7, 88, 2, 2, 1609, 1610, 7, 71, 2, 2, 1610, 1611, 7, 84, 2, 2, 1611, 1612, 7, 89, 2, 2, 1612, 1613, 7, 84, 2, 2, 1613, 1614, 7, 75, 2, 2, 1614, 1615, 7, 86, 2, 2, 1615, 1616, 7, 71, 2, 2, 1616, 294, 3, 2, 2, 2, 1617, 1618, 7, 86, 2, 2, 1618, 1619, 7, 84, 2, 2, 1619, 1620, 7, 67, 2, 2, 1620, 1621, 7, 80, 2, 2, 1621, 1622, 7, 85, 2, 2, 1622, 1623, 7, 72, 2, 2, 1623, 1624, 7, 81, 2, 2, 1624, 1625, 7, 84, 2, 2, 1625, 1626, 7, 79, 2, 2, 1626, 296, 3, 2, 2, 2, 1627, 1628, 7, 84, 2, 2, 1628, 1629, 7, 71, 2, 2, 1629, 1630, 7, 70, 2, 2, 1630, 1631, 7, 87, 2, 2, 1631, 1632, 7, 69, 2, 2, 1632, 1633, 7, 71, 2, 2, 1633, 298, 3, 2, 2, 2, 1634, 1635, 7, 87, 2, 2, 1635, 1636, 7, 85, 2, 2, 1636, 1637, 7, 75, 2, 2, 1637, 1638, 7, 80, 2, 2, 1638, 1639, 7, 73, 2, 2, 1639, 300, 3, 2, 2, 2, 1640, 1641, 7, 85, 2, 2, 1641, 1642, 7, 71, 2, 2, 1642, 1643, 7, 84, 2, 2, 1643, 1644, 7, 70, 2, 2, 1644, 1645, 7, 71, 2, 2, 1645, 302, 3, 2, 2, 2, 1646, 1647, 7, 85, 2, 2, 1647, 1648, 7, 71, 2, 2, 1648, 1649, 7, 84, 2, 2, 1649, 1650, 7, 70, 2, 2, 1650, 1651, 7, 71, 2, 2, 1651, 1652, 7, 82, 2, 2, 1652, 1653, 7, 84, 2, 2, 1653, 1654, 7, 81, 2, 2, 1654, 1655, 7, 82, 2, 2, 1655, 1656, 7, 71, 2, 2, 1656, 1657, 7, 84, 2, 2, 1657, 1658, 7, 86, 2, 2, 1658, 1659, 7, 75, 2, 2, 1659, 1660, 7, 71, 2, 2, 1660, 1661, 7, 85, 2, 2, 1661, 304, 3, 2, 2, 2, 1662, 1663, 7, 84, 2, 2, 1663, 1664, 7, 71, 2, 2, 1664, 1665, 7, 69, 2, 2, 1665, 1666, 7, 81, 2, 2, 1666, 1667, 7, 84, 2, 2, 1667, 1668, 7, 70, 2, 2, 1668, 1669, 7, 84, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 67, 2, 2, 1671, 1672, 7, 70, 2, 2, 1672, 1673, 7, 71, 2, 2, 1673, 1674, 7, 84, 2, 2, 1674, 306, 3, 2, 2, 2, 1675, 1676, 7, 84, 2, 2, 1676, 1677, 7, 71, 2, 2, 1677, 1678, 7, 69, 2, 2, 1678, 1679, 7, 81, 2, 2, 1679, 1680, 7, 84, 2, 2, 1680, 1681, 7, 70, 2, 2, 1681, 1682, 7, 89, 2, 2, 1682, 1683, 7, 84, 2, 2, 1683, 1684, 7, 75, 2, 2, 1684, 1685, 7, 86, 2, 2, 1685, 1686, 7, 71, 2, 2, 1686, 1687, 7, 84, 2, 2, 1687, 308, 3, 2, 2, 2, 1688, 1689, 7, 70, 2, 2, 1689, 1690, 7, 71, 2, 2, 1690, 1691, 7, 78, 2, 2, 1691, 1692, 7, 75, 2, 2, 1692, 1693, 7, 79, 2, 2, 1693, 1694, 7, 75, 2, 2, 1694, 1695, 7, 86, 2, 2, 1695, 1696, 7, 71, 2, 2, 1696, 1697, 7, 70, 2, 2, 1697, 310, 3, 2, 2, 2, 1698, 1699, 7, 72, 2, 2, 1699, 1700, 7, 75, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 78, 2, 2, 1702, 1703, 7, 70, 2, 2, 1703, 1704, 7, 85, 2, 2, 1704, 312, 3, 2, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 1708, 7, 84, 2, 2, 1708, 1709, 7, 79, 2, 2, 1709, 1710, 7, 75, 2, 2, 1710, 1711, 7, 80, 2, 2, 1711, 1712, 7, 67, 2, 2, 1712, 1713, 7, 86, 2, 2, 1713, 1714, 7, 71, 2, 2, 1714, 1715, 7, 70, 2, 2, 1715, 314, 3, 2, 2, 2, 1716, 1717, 7, 69, 2, 2, 1717, 1718, 7, 81, 2, 2, 1718, 1719, 7, 78, 2, 2, 1719, 1720, 7, 78, 2, 2, 1720, 1721, 7, 71, 2, 2, 1721, 1722, 7, 69, 2, 2, 1722, 1723, 7, 86, 2, 2, 1723, 1724, 7, 75, 2, 2, 1724, 1725, 7, 81, 2, 2, 1725, 1726, 7, 80, 2, 2, 1726, 316, 3, 2, 2, 2, 1727, 1728, 7, 75, 2, 2, 1728, 1729, 7, 86, 2, 2, 1729, 1730, 7, 71, 2, 2, 1730, 1731, 7, 79, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 318, 3, 2, 2, 2, 1733, 1734, 7, 77, 2, 2, 1734, 1735, 7, 71, 2, 2, 1735, 1736, 7, 91, 2, 2, 1736, 1737, 7, 85, 2, 2, 1737, 320, 3, 2, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 85, 2, 2, 1740, 1741, 7, 69, 2, 2, 1741, 1742, 7, 67, 2, 2, 1742, 1743, 7, 82, 2, 2, 1743, 1744, 7, 71, 2, 2, 1744, 1745, 7, 70, 2, 2, 1745, 322, 3, 2, 2, 2, 1746, 1747, 7, 78, 2, 2, 1747, 1748, 7, 75, 2, 2, 1748, 1749, 7, 80, 2, 2, 1749, 1750, 7, 71, 2, 2, 1750, 1751, 7, 85, 2, 2, 1751, 324, 3, 2, 2, 2, 1752, 1753, 7, 85, 2, 2, 1753, 1754, 7, 71, 2, 2, 1754, 1755, 7, 82, 2, 2, 1755, 1756, 7, 67, 2, 2, 1756, 1757, 7, 84, 2, 2, 1757, 1758, 7, 67, 2, 2, 1758, 1759, 7, 86, 2, 2, 1759, 1760, 7, 71, 2, 2, 1760, 1761, 7, 70, 2, 2, 1761, 326, 3, 2, 2, 2, 1762, 1763, 7, 72, 2, 2, 1763, 1764, 7, 87, 2, 2, 1764, 1765, 7, 80, 2, 2, 1765, 1766, 7, 69, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 75, 2, 2, 1768, 1769, 7, 81, 2, 2, 1769, 1770, 7, 80, 2, 2, 1770, 328, 3, 2, 2, 2, 1771, 1772, 7, 71, 2, 2, 1772, 1773, 7, 90, 2, 2, 1773, 1774, 7, 86, 2, 2, 1774, 1775, 7, 71, 2, 2, 1775, 1776, 7, 80, 2, 2, 1776, 1777, 7, 70, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 70, 2, 2, 1779, 330, 3, 2, 2, 2, 1780, 1781, 7, 84, 2, 2, 1781, 1782, 7, 71, 2, 2, 1782, 1783, 7, 72, 2, 2, 1783, 1784, 7, 84, 2, 2, 1784, 1785, 7, 71, 2, 2, 1785, 1786, 7, 85, 2, 2, 1786, 1787, 7, 74, 2, 2, 1787, 332, 3, 2, 2, 2, 1788, 1789, 7, 69, 2, 2, 1789, 1790, 7, 78, 2, 2, 1790, 1791, 7, 71, 2, 2, 1791, 1792, 7, 67, 2, 2, 1792, 1793, 7, 84, 2, 2, 1793, 334, 3, 2, 2, 2, 1794, 1795, 7, 69, 2, 2, 1795, 1796, 7, 67, 2, 2, 1796, 1797, 7, 69, 2, 2, 1797, 1798, 7, 74, 2, 2, 1798, 1799, 7, 71, 2, 2, 1799, 336, 3, 2, 2, 2, 1800, 1801, 7, 87, 2, 2, 1801, 1802, 7, 80, 2, 2, 1802, 1803, 7, 69, 2, 2, 1803, 1804, 7, 67, 2, 2, 1804, 1805, 7, 69, 2, 2, 1805, 1806, 7, 74, 2, 2, 1806, 1807, 7, 71, 2, 2, 1807, 338, 3, 2, 2, 2, 1808, 1809, 7, 78, 2, 2, 1809, 1810, 7, 67, 2, 2, 1810, 1811, 7, 92, 2, 2, 1811, 1812, 7, 91, 2, 2, 1812, 340, 3, 2, 2, 2, 1813, 1814, 7, 72, 2, 2, 1814, 1815, 7, 81, 2, 2, 1815, 1816, 7, 84, 2, 2, 1816, 1817, 7, 79, 2, 2, 1817, 1818, 7, 67, 2, 2, 1818, 1819, 7, 86, 2, 2, 1819, 1820, 7, 86, 2, 2, 1820, 1821, 7, 71, 2, 2, 1821, 1822, 7, 70, 2, 2, 1822, 342, 3, 2, 2, 2, 1823, 1824, 7, 73, 2, 2, 1824, 1825, 7, 78, 2, 2, 1825, 1826, 7, 81, 2, 2, 1826, 1827, 7, 68, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 78, 2, 2, 1829, 344, 3, 2, 2, 2, 1830, 1831, 7, 86, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 79, 2, 2, 1833, 1834, 7, 82, 2, 2, 1834, 1835, 7, 81, 2, 2, 1835, 1836, 7, 84, 2, 2, 1836, 1837, 7, 67, 2, 2, 1837, 1838, 7, 84, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 346, 3, 2, 2, 2, 1840, 1841, 7, 81, 2, 2, 1841, 1842, 7, 82, 2, 2, 1842, 1843, 7, 86, 2, 2, 1843, 1844, 7, 75, 2, 2, 1844, 1845, 7, 81, 2, 2, 1845, 1846, 7, 80, 2, 2, 1846, 1847, 7, 85, 2, 2, 1847, 348, 3, 2, 2, 2, 1848, 1849, 7, 87, 2, 2, 1849, 1850, 7, 80, 2, 2, 1850, 1851, 7, 85, 2, 2, 1851, 1852, 7, 71, 2, 2, 1852, 1853, 7, 86, 2, 2, 1853, 350, 3, 2, 2, 2, 1854, 1855, 7, 86, 2, 2, 1855, 1856, 7, 68, 2, 2, 1856, 1857, 7, 78, 2, 2, 1857, 1858, 7, 82, 2, 2, 1858, 1859, 7, 84, 2, 2, 1859, 1860, 7, 81, 2, 2, 1860, 1861, 7, 82, 2, 2, 1861, 1862, 7, 71, 2, 2, 1862, 1863, 7, 84, 2, 2, 1863, 1864, 7, 86, 2, 2, 1864, 1865, 7, 75, 2, 2, 1865, 1866, 7, 71, 2, 2, 1866, 1867, 7, 85, 2, 2, 1867, 352, 3, 2, 2, 2, 1868, 1869, 7, 70, 2, 2, 1869, 1870, 7, 68, 2, 2, 1870, 1871, 7, 82, 2, 2, 1871, 1872, 7, 84, 2, 2, 1872, 1873, 7, 81, 2, 2, 1873, 1874, 7, 82, 2, 2, 1874, 1875, 7, 71, 2, 2, 1875, 1876, 7, 84, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 71, 2, 2, 1879, 1880, 7, 85, 2, 2, 1880, 354, 3, 2, 2, 2, 1881, 1882, 7, 68, 2, 2, 1882, 1883, 7, 87, 2, 2, 1883, 1884, 7, 69, 2, 2, 1884, 1885, 7, 77, 2, 2, 1885, 1886, 7, 71, 2, 2, 1886, 1887, 7, 86, 2, 2, 1887, 1888, 7, 85, 2, 2, 1888, 356, 3, 2, 2, 2, 1889, 1890, 7, 85, 2, 2, 1890, 1891, 7, 77, 2, 2, 1891, 1892, 7, 71, 2, 2, 1892, 1893, 7, 89, 2, 2, 1893, 1894, 7, 71, 2, 2, 1894, 1895, 7, 70, 2, 2, 1895, 358, 3, 2, 2, 2, 1896, 1897, 7, 85, 2, 2, 1897, 1898, 7, 86, 2, 2, 1898, 1899, 7, 81, 2, 2, 1899, 1900, 7, 84, 2, 2, 1900, 1901, 7, 71, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 360, 3, 2, 2, 2, 1903, 1904, 7, 70, 2, 2, 1904, 1905, 7, 75, 2, 2, 1905, 1906, 7, 84, 2, 2, 1906, 1907, 7, 71, 2, 2, 1907, 1908, 7, 69, 2, 2, 1908, 1909, 7, 86, 2, 2, 1909, 1910, 7, 81, 2, 2, 1910, 1911, 7, 84, 2, 2, 1911, 1912, 7, 75, 2, 2, 1912, 1913, 7, 71, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 362, 3, 2, 2, 2, 1915, 1916, 7, 78, 2, 2, 1916, 1917, 7, 81, 2, 2, 1917, 1918, 7, 69, 2, 2, 1918, 1919, 7, 67, 2, 2, 1919, 1920, 7, 86, 2, 2, 1920, 1921, 7, 75, 2, 2, 1921, 1922, 7, 81, 2, 2, 1922, 1923, 7, 80, 2, 2, 1923, 364, 3, 2, 2, 2, 1924, 1925, 7, 71, 2, 2, 1925, 1926, 7, 90, 2, 2, 1926, 1927, 7, 69, 2, 2, 1927, 1928, 7, 74, 2, 2, 1928, 1929, 7, 67, 2, 2, 1929, 1930, 7, 80, 2, 2, 1930, 1931, 7, 73, 2, 2, 1931, 1932, 7, 71, 2, 2, 1932, 366, 3, 2, 2, 2, 1933, 1934, 7, 67, 2, 2, 1934, 1935, 7, 84, 2, 2, 1935, 1936, 7, 69, 2, 2, 1936, 1937, 7, 74, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 88, 2, 2, 1939, 1940, 7, 71, 2, 2, 1940, 368, 3, 2, 2, 2, 1941, 1942, 7, 87, 2, 2, 1942, 1943, 7, 80, 2, 2, 1943, 1944, 7, 67, 2, 2, 1944, 1945, 7, 84, 2, 2, 1945, 1946, 7, 69, 2, 2, 1946, 1947, 7, 74, 2, 2, 1947, 1948, 7, 75, 2, 2, 1948, 1949, 7, 88, 2, 2, 1949, 1950, 7, 71, 2, 2, 1950, 370, 3, 2, 2, 2, 1951, 1952, 7, 72, 2, 2, 1952, 1953, 7, 75, 2, 2, 1953, 1954, 7, 78, 2, 2, 1954, 1955, 7, 71, 2, 2, 1955, 1956, 7, 72, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 84, 2, 2, 1958, 1959, 7, 79, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 372, 3, 2, 2, 2, 1962, 1963, 7, 86, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 87, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 74, 2, 2, 1967, 374, 3, 2, 2, 2, 1968, 1969, 7, 69, 2, 2, 1969, 1970, 7, 81, 2, 2, 1970, 1971, 7, 79, 2, 2, 1971, 1972, 7, 82, 2, 2, 1972, 1973, 7, 67, 2, 2, 1973, 1974, 7, 69, 2, 2, 1974, 1975, 7, 86, 2, 2, 1975, 376, 3, 2, 2, 2, 1976, 1977, 7, 69, 2, 2, 1977, 1978, 7, 81, 2, 2, 1978, 1979, 7, 80, 2, 2, 1979, 1980, 7, 69, 2, 2, 1980, 1981, 7, 67, 2, 2, 1981, 1982, 7, 86, 2, 2, 1982, 1983, 7, 71, 2, 2, 1983, 1984, 7, 80, 2, 2, 1984, 1985, 7, 67, 2, 2, 1985, 1986, 7, 86, 2, 2, 1986, 1987, 7, 71, 2, 2, 1987, 378, 3, 2, 2, 2, 1988, 1989, 7, 69, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 67, 2, 2, 1991, 1992, 7, 80, 2, 2, 1992, 1993, 7, 73, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 380, 3, 2, 2, 2, 1995, 1996, 7, 69, 2, 2, 1996, 1997, 7, 67, 2, 2, 1997, 1998, 7, 85, 2, 2, 1998, 1999, 7, 69, 2, 2, 1999, 2000, 7, 67, 2, 2, 2000, 2001, 7, 70, 2, 2, 2001, 2002, 7, 71, 2, 2, 2002, 382, 3, 2, 2, 2, 2003, 2004, 7, 84, 2, 2, 2004, 2005, 7, 71, 2, 2, 2005, 2006, 7, 85, 2, 2, 2006, 2007, 7, 86, 2, 2, 2007, 2008, 7, 84, 2, 2, 2008, 2009, 7, 75, 2, 2, 2009, 2010, 7, 69, 2, 2, 2010, 2011, 7, 86, 2, 2, 2011, 384, 3, 2, 2, 2, 2012, 2013, 7, 69, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 87, 2, 2, 2015, 2016, 7, 85, 2, 2, 2016, 2017, 7, 86, 2, 2, 2017, 2018, 7, 71, 2, 2, 2018, 2019, 7, 84, 2, 2, 2019, 2020, 7, 71, 2, 2, 2020, 2021, 7, 70, 2, 2, 2021, 386, 3, 2, 2, 2, 2022, 2023, 7, 85, 2, 2, 2023, 2024, 7, 81, 2, 2, 2024, 2025, 7, 84, 2, 2, 2025, 2026, 7, 86, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 2028, 7, 70, 2, 2, 2028, 388, 3, 2, 2, 2, 2029, 2030, 7, 82, 2, 2, 2030, 2031, 7, 87, 2, 2, 2031, 2032, 7, 84, 2, 2, 2032, 2033, 7, 73, 2, 2, 2033, 2034, 7, 71, 2, 2, 2034, 390, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 80, 2, 2, 2037, 2038, 7, 82, 2, 2, 2038, 2039, 7, 87, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 72, 2, 2, 2041, 2042, 7, 81, 2, 2, 2042, 2043, 7, 84, 2, 2, 2043, 2044, 7, 79, 2, 2, 2044, 2045, 7, 67, 2, 2, 2045, 2046, 7, 86, 2, 2, 2046, 392, 3, 2, 2, 2, 2047, 2048, 7, 81, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 86, 2, 2, 2050, 2051, 7, 82, 2, 2, 2051, 2052, 7, 87, 2, 2, 2052, 2053, 7, 86, 2, 2, 2053, 2054, 7, 72, 2, 2, 2054, 2055, 7, 81, 2, 2, 2055, 2056, 7, 84, 2, 2, 2056, 2057, 7, 79, 2, 2, 2057, 2058, 7, 67, 2, 2, 2058, 2059, 7, 86, 2, 2, 2059, 394, 3, 2, 2, 2, 2060, 2061, 7, 70, 2, 2, 2061, 2062, 7, 67, 2, 2, 2062, 2063, 7, 86, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 68, 2, 2, 2065, 2066, 7, 67, 2, 2, 2066, 2067, 7, 85, 2, 2, 2067, 2068, 7, 71, 2, 2, 2068, 396, 3, 2, 2, 2, 2069, 2070, 7, 70, 2, 2, 2070, 2071, 7, 67, 2, 2, 2071, 2072, 7, 86, 2, 2, 2072, 2073, 7, 67, 2, 2, 2073, 2074, 7, 68, 2, 2, 2074, 2075, 7, 67, 2, 2, 2075, 2076, 7, 85, 2, 2, 2076, 2077, 7, 71, 2, 2, 2077, 2078, 7, 85, 2, 2, 2078, 398, 3, 2, 2, 2, 2079, 2080, 7, 70, 2, 2, 2080, 2081, 7, 72, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 400, 3, 2, 2, 2, 2083, 2084, 7, 86, 2, 2, 2084, 2085, 7, 84, 2, 2, 2085, 2086, 7, 87, 2, 2, 2086, 2087, 7, 80, 2, 2, 2087, 2088, 7, 69, 2, 2, 2088, 2089, 7, 67, 2, 2, 2089, 2090, 7, 86, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 402, 3, 2, 2, 2, 2092, 2093, 7, 67, 2, 2, 2093, 2094, 7, 80, 2, 2, 2094, 2095, 7, 67, 2, 2, 2095, 2096, 7, 78, 2, 2, 2096, 2097, 7, 91, 2, 2, 2097, 2098, 7, 92, 2, 2, 2098, 2099, 7, 71, 2, 2, 2099, 404, 3, 2, 2, 2, 2100, 2101, 7, 69, 2, 2, 2101, 2102, 7, 81, 2, 2, 2102, 2103, 7, 79, 2, 2, 2103, 2104, 7, 82, 2, 2, 2104, 2105, 7, 87, 2, 2, 2105, 2106, 7, 86, 2, 2, 2106, 2107, 7, 71, 2, 2, 2107, 406, 3, 2, 2, 2, 2108, 2109, 7, 78, 2, 2, 2109, 2110, 7, 75, 2, 2, 2110, 2111, 7, 85, 2, 2, 2111, 2112, 7, 86, 2, 2, 2112, 408, 3, 2, 2, 2, 2113, 2114, 7, 85, 2, 2, 2114, 2115, 7, 86, 2, 2, 2115, 2116, 7, 67, 2, 2, 2116, 2117, 7, 86, 2, 2, 2117, 2118, 7, 75, 2, 2, 2118, 2119, 7, 85, 2, 2, 2119, 2120, 7, 86, 2, 2, 2120, 2121, 7, 75, 2, 2, 2121, 2122, 7, 69, 2, 2, 2122, 2123, 7, 85, 2, 2, 2123, 410, 3, 2, 2, 2, 2124, 2125, 7, 82, 2, 2, 2125, 2126, 7, 67, 2, 2, 2126, 2127, 7, 84, 2, 2, 2127, 2128, 7, 86, 2, 2, 2128, 2129, 7, 75, 2, 2, 2129, 2130, 7, 86, 2, 2, 2130, 2131, 7, 75, 2, 2, 2131, 2132, 7, 81, 2, 2, 2132, 2133, 7, 80, 2, 2, 2133, 2134, 7, 71, 2, 2, 2134, 2135, 7, 70, 2, 2, 2135, 412, 3, 2, 2, 2, 2136, 2137, 7, 71, 2, 2, 2137, 2138, 7, 90, 2, 2, 2138, 2139, 7, 86, 2, 2, 2139, 2140, 7, 71, 2, 2, 2140, 2141, 7, 84, 2, 2, 2141, 2142, 7, 80, 2, 2, 2142, 2143, 7, 67, 2, 2, 2143, 2144, 7, 78, 2, 2, 2144, 414, 3, 2, 2, 2, 2145, 2146, 7, 70, 2, 2, 2146, 2147, 7, 71, 2, 2, 2147, 2148, 7, 72, 2, 2, 2148, 2149, 7, 75, 2, 2, 2149, 2150, 7, 80, 2, 2, 2150, 2151, 7, 71, 2, 2, 2151, 2152, 7, 70, 2, 2, 2152, 416, 3, 2, 2, 2, 2153, 2154, 7, 84, 2, 2, 2154, 2155, 7, 71, 2, 2, 2155, 2156, 7, 88, 2, 2, 2156, 2157, 7, 81, 2, 2, 2157, 2158, 7, 77, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 418, 3, 2, 2, 2, 2160, 2161, 7, 73, 2, 2, 2161, 2162, 7, 84, 2, 2, 2162, 2163, 7, 67, 2, 2, 2163, 2164, 7, 80, 2, 2, 2164, 2165, 7, 86, 2, 2, 2165, 420, 3, 2, 2, 2, 2166, 2167, 7, 78, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 69, 2, 2, 2169, 2170, 7, 77, 2, 2, 2170, 422, 3, 2, 2, 2, 2171, 2172, 7, 87, 2, 2, 2172, 2173, 7, 80, 2, 2, 2173, 2174, 7, 78, 2, 2, 2174, 2175, 7, 81, 2, 2, 2175, 2176, 7, 69, 2, 2, 2176, 2177, 7, 77, 2, 2, 2177, 424, 3, 2, 2, 2, 2178, 2179, 7, 79, 2, 2, 2179, 2180, 7, 85, 2, 2, 2180, 2181, 7, 69, 2, 2, 2181, 2182, 7, 77, 2, 2, 2182, 426, 3, 2, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 71, 2, 2, 2185, 2186, 7, 82, 2, 2, 2186, 2187, 7, 67, 2, 2, 2187, 2188, 7, 75, 2, 2, 2188, 2189, 7, 84, 2, 2, 2189, 428, 3, 2, 2, 2, 2190, 2191, 7, 84, 2, 2, 2191, 2192, 7, 71, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 81, 2, 2, 2194, 2195, 7, 88, 2, 2, 2195, 2196, 7, 71, 2, 2, 2196, 2197, 7, 84, 2, 2, 2197, 430, 3, 2, 2, 2, 2198, 2199, 7, 71, 2, 2, 2199, 2200, 7, 90, 2, 2, 2200, 2201, 7, 82, 2, 2, 2201, 2202, 7, 81, 2, 2, 2202, 2203, 7, 84, 2, 2, 2203, 2204, 7, 86, 2, 2, 2204, 432, 3, 2, 2, 2, 2205, 2206, 7, 75, 2, 2, 2206, 2207, 7, 79, 2, 2, 2207, 2208, 7, 82, 2, 2, 2208, 2209, 7, 81, 2, 2, 2209, 2210, 7, 84, 2, 2, 2210, 2211, 7, 86, 2, 2, 2211, 434, 3, 2, 2, 2, 2212, 2213, 7, 78, 2, 2, 2213, 2214, 7, 81, 2, 2, 2214, 2215, 7, 67, 2, 2, 2215, 2216, 7, 70, 2, 2, 2216, 436, 3, 2, 2, 2, 2217, 2218, 7, 84, 2, 2, 2218, 2219, 7, 81, 2, 2, 2219, 2220, 7, 78, 2, 2, 2220, 2221, 7, 71, 2, 2, 2221, 438, 3, 2, 2, 2, 2222, 2223, 7, 84, 2, 2, 2223, 2224, 7, 81, 2, 2, 2224, 2225, 7, 78, 2, 2, 2225, 2226, 7, 71, 2, 2, 2226, 2227, 7, 85, 2, 2, 2227, 440, 3, 2, 2, 2, 2228, 2229, 7, 69, 2, 2, 2229, 2230, 7, 81, 2, 2, 2230, 2231, 7, 79, 2, 2, 2231, 2232, 7, 82, 2, 2, 2232, 2233, 7, 67, 2, 2, 2233, 2234, 7, 69, 2, 2, 2234, 2235, 7, 86, 2, 2, 2235, 2236, 7, 75, 2, 2, 2236, 2237, 7, 81, 2, 2, 2237, 2238, 7, 80, 2, 2, 2238, 2239, 7, 85, 2, 2, 2239, 442, 3, 2, 2, 2, 2240, 2241, 7, 82, 2, 2, 2241, 2242, 7, 84, 2, 2, 2242, 2243, 7, 75, 2, 2, 2243, 2244, 7, 80, 2, 2, 2244, 2245, 7, 69, 2, 2, 2245, 2246, 7, 75, 2, 2, 2246, 2247, 7, 82, 2, 2, 2247, 2248, 7, 67, 2, 2, 2248, 2249, 7, 78, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 444, 3, 2, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 84, 2, 2, 2253, 2254, 7, 67, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 85, 2, 2, 2256, 2257, 7, 67, 2, 2, 2257, 2258, 7, 69, 2, 2, 2258, 2259, 7, 86, 2, 2, 2259, 2260, 7, 75, 2, 2, 2260, 2261, 7, 81, 2, 2, 2261, 2262, 7, 80, 2, 2, 2262, 2263, 7, 85, 2, 2, 2263, 446, 3, 2, 2, 2, 2264, 2265, 7, 75, 2, 2, 2265, 2266, 7, 80, 2, 2, 2266, 2267, 7, 70, 2, 2, 2267, 2268, 7, 71, 2, 2, 2268, 2269, 7, 90, 2, 2, 2269, 448, 3, 2, 2, 2, 2270, 2271, 7, 75, 2, 2, 2271, 2272, 7, 80, 2, 2, 2272, 2273, 7, 70, 2, 2, 2273, 2274, 7, 71, 2, 2, 2274, 2275, 7, 90, 2, 2, 2275, 2276, 7, 71, 2, 2, 2276, 2277, 7, 85, 2, 2, 2277, 450, 3, 2, 2, 2, 2278, 2279, 7, 78, 2, 2, 2279, 2280, 7, 81, 2, 2, 2280, 2281, 7, 69, 2, 2, 2281, 2282, 7, 77, 2, 2, 2282, 2283, 7, 85, 2, 2, 2283, 452, 3, 2, 2, 2, 2284, 2285, 7, 81, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 86, 2, 2, 2287, 2288, 7, 75, 2, 2, 2288, 2289, 7, 81, 2, 2, 2289, 2290, 7, 80, 2, 2, 2290, 454, 3, 2, 2, 2, 2291, 2292, 7, 67, 2, 2, 2292, 2293, 7, 80, 2, 2, 2293, 2294, 7, 86, 2, 2, 2294, 2295, 7, 75, 2, 2, 2295, 456, 3, 2, 2, 2, 2296, 2297, 7, 78, 2, 2, 2297, 2298, 7, 81, 2, 2, 2298, 2299, 7, 69, 2, 2, 2299, 2300, 7, 67, 2, 2, 2300, 2301, 7, 78, 2, 2, 2301, 458, 3, 2, 2, 2, 2302, 2303, 7, 75, 2, 2, 2303, 2304, 7, 80, 2, 2, 2304, 2305, 7, 82, 2, 2, 2305, 2306, 7, 67, 2, 2, 2306, 2307, 7, 86, 2, 2, 2307, 2308, 7, 74, 2, 2, 2308, 460, 3, 2, 2, 2, 2309, 2310, 7, 89, 2, 2, 2310, 2311, 7, 67, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 71, 2, 2, 2313, 2314, 7, 84, 2, 2, 2314, 2315, 7, 79, 2, 2, 2315, 2316, 7, 67, 2, 2, 2316, 2317, 7, 84, 2, 2, 2317, 2318, 7, 77, 2, 2, 2318, 462, 3, 2, 2, 2, 2319, 2320, 7, 87, 2, 2, 2320, 2321, 7, 80, 2, 2, 2321, 2322, 7, 80, 2, 2, 2322, 2323, 7, 71, 2, 2, 2323, 2324, 7, 85, 2, 2, 2324, 2325, 7, 86, 2, 2, 2325, 464, 3, 2, 2, 2, 2326, 2327, 7, 79, 2, 2, 2327, 2328, 7, 67, 2, 2, 2328, 2329, 7, 86, 2, 2, 2329, 2330, 7, 69, 2, 2, 2330, 2331, 7, 74, 2, 2, 2331, 2332, 7, 97, 2, 2, 2332, 2333, 7, 84, 2, 2, 2333, 2334, 7, 71, 2, 2, 2334, 2335, 7, 69, 2, 2, 2335, 2336, 7, 81, 2, 2, 2336, 2337, 7, 73, 2, 2, 2337, 2338, 7, 80, 2, 2, 2338, 2339, 7, 75, 2, 2, 2339, 2340, 7, 92, 2, 2, 2340, 2341, 7, 71, 2, 2, 2341, 466, 3, 2, 2, 2, 2342, 2343, 7, 79, 2, 2, 2343, 2344, 7, 71, 2, 2, 2344, 2345, 7, 67, 2, 2, 2345, 2346, 7, 85, 2, 2, 2346, 2347, 7, 87, 2, 2, 2347, 2348, 7, 84, 2, 2, 2348, 2349, 7, 71, 2, 2, 2349, 2350, 7, 85, 2, 2, 2350, 468, 3, 2, 2, 2, 2351, 2352, 7, 81, 2, 2, 2352, 2353, 7, 80, 2, 2, 2353, 2354, 7, 71, 2, 2, 2354, 470, 3, 2, 2, 2, 2355, 2356, 7, 82, 2, 2, 2356, 2357, 7, 71, 2, 2, 2357, 2358, 7, 84, 2, 2, 2358, 472, 3, 2, 2, 2, 2359, 2360, 7, 79, 2, 2, 2360, 2361, 7, 67, 2, 2, 2361, 2362, 7, 86, 2, 2, 2362, 2363, 7, 69, 2, 2, 2363, 2364, 7, 74, 2, 2, 2364, 474, 3, 2, 2, 2, 2365, 2366, 7, 85, 2, 2, 2366, 2367, 7, 77, 2, 2, 2367, 2368, 7, 75, 2, 2, 2368, 2369, 7, 82, 2, 2, 2369, 2370, 7, 51, 2, 2, 2370, 476, 3, 2, 2, 2, 2371, 2372, 7, 80, 2, 2, 2372, 2373, 7, 71, 2, 2, 2373, 2374, 7, 90, 2, 2, 2374, 2375, 7, 86, 2, 2, 2375, 478, 3, 2, 2, 2, 2376, 2377, 7, 82, 2, 2, 2377, 2378, 7, 67, 2, 2, 2378, 2379, 7, 85, 2, 2, 2379, 2380, 7, 86, 2, 2, 2380, 480, 3, 2, 2, 2, 2381, 2382, 7, 82, 2, 2, 2382, 2383, 7, 67, 2, 2, 2383, 2384, 7, 86, 2, 2, 2384, 2385, 7, 86, 2, 2, 2385, 2386, 7, 71, 2, 2, 2386, 2387, 7, 84, 2, 2, 2387, 2388, 7, 80, 2, 2, 2388, 482, 3, 2, 2, 2, 2389, 2390, 7, 89, 2, 2, 2390, 2391, 7, 75, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 74, 2, 2, 2393, 2394, 7, 75, 2, 2, 2394, 2395, 7, 80, 2, 2, 2395, 484, 3, 2, 2, 2, 2396, 2397, 7, 70, 2, 2, 2397, 2398, 7, 71, 2, 2, 2398, 2399, 7, 72, 2, 2, 2399, 2400, 7, 75, 2, 2, 2400, 2401, 7, 80, 2, 2, 2401, 2402, 7, 71, 2, 2, 2402, 486, 3, 2, 2, 2, 2403, 2404, 7, 68, 2, 2, 2404, 2405, 7, 75, 2, 2, 2405, 2406, 7, 73, 2, 2, 2406, 2407, 7, 75, 2, 2, 2407, 2408, 7, 80, 2, 2, 2408, 2409, 7, 86, 2, 2, 2409, 2410, 7, 97, 2, 2, 2410, 2411, 7, 78, 2, 2, 2411, 2412, 7, 75, 2, 2, 2412, 2413, 7, 86, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 84, 2, 2, 2415, 2416, 7, 67, 2, 2, 2416, 2417, 7, 78, 2, 2, 2417, 488, 3, 2, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 79, 2, 2, 2420, 2421, 7, 67, 2, 2, 2421, 2422, 7, 78, 2, 2, 2422, 2423, 7, 78, 2, 2, 2423, 2424, 7, 75, 2, 2, 2424, 2425, 7, 80, 2, 2, 2425, 2426, 7, 86, 2, 2, 2426, 2427, 7, 97, 2, 2, 2427, 2428, 7, 78, 2, 2, 2428, 2429, 7, 75, 2, 2, 2429, 2430, 7, 86, 2, 2, 2430, 2431, 7, 71, 2, 2, 2431, 2432, 7, 84, 2, 2, 2432, 2433, 7, 67, 2, 2, 2433, 2434, 7, 78, 2, 2, 2434, 490, 3, 2, 2, 2, 2435, 2436, 7, 86, 2, 2, 2436, 2437, 7, 75, 2, 2, 2437, 2438, 7, 80, 2, 2, 2438, 2439, 7, 91, 2, 2, 2439, 2440, 7, 75, 2, 2, 2440, 2441, 7, 80, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 97, 2, 2, 2443, 2444, 7, 78, 2, 2, 2444, 2445, 7, 75, 2, 2, 2445, 2446, 7, 86, 2, 2, 2446, 2447, 7, 71, 2, 2, 2447, 2448, 7, 84, 2, 2, 2448, 2449, 7, 67, 2, 2, 2449, 2450, 7, 78, 2, 2, 2450, 492, 3, 2, 2, 2, 2451, 2452, 7, 75, 2, 2, 2452, 2453, 7, 80, 2, 2, 2453, 2454, 7, 86, 2, 2, 2454, 2455, 7, 71, 2, 2, 2455, 2456, 7, 73, 2, 2, 2456, 2457, 7, 71, 2, 2, 2457, 2458, 7, 84, 2, 2, 2458, 2459, 7, 97, 2, 2, 2459, 2460, 7, 88, 2, 2, 2460, 2461, 7, 67, 2, 2, 2461, 2462, 7, 78, 2, 2, 2462, 2463, 7, 87, 2, 2, 2463, 2464, 7, 71, 2, 2, 2464, 494, 3, 2, 2, 2, 2465, 2466, 7, 70, 2, 2, 2466, 2467, 7, 71, 2, 2, 2467, 2468, 7, 69, 2, 2, 2468, 2469, 7, 75, 2, 2, 2469, 2470, 7, 79, 2, 2, 2470, 2471, 7, 67, 2, 2, 2471, 2472, 7, 78, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 88, 2, 2, 2474, 2475, 7, 67, 2, 2, 2475, 2476, 7, 78, 2, 2, 2476, 2477, 7, 87, 2, 2, 2477, 2478, 7, 71, 2, 2, 2478, 496, 3, 2, 2, 2, 2479, 2480, 7, 70, 2, 2, 2480, 2481, 7, 81, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 68, 2, 2, 2483, 2484, 7, 78, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 78, 2, 2, 2487, 2488, 7, 75, 2, 2, 2488, 2489, 7, 86, 2, 2, 2489, 2490, 7, 71, 2, 2, 2490, 2491, 7, 84, 2, 2, 2491, 2492, 7, 67, 2, 2, 2492, 2493, 7, 78, 2, 2, 2493, 498, 3, 2, 2, 2, 2494, 2495, 7, 68, 2, 2, 2495, 2496, 7, 75, 2, 2, 2496, 2497, 7, 73, 2, 2, 2497, 2498, 7, 70, 2, 2, 2498, 2499, 7, 71, 2, 2, 2499, 2500, 7, 69, 2, 2, 2500, 2501, 7, 75, 2, 2, 2501, 2502, 7, 79, 2, 2, 2502, 2503, 7, 67, 2, 2, 2503, 2504, 7, 78, 2, 2, 2504, 2505, 7, 97, 2, 2, 2505, 2506, 7, 78, 2, 2, 2506, 2507, 7, 75, 2, 2, 2507, 2508, 7, 86, 2, 2, 2508, 2509, 7, 71, 2, 2, 2509, 2510, 7, 84, 2, 2, 2510, 2511, 7, 67, 2, 2, 2511, 2512, 7, 78, 2, 2, 2512, 500, 3, 2, 2, 2, 2513, 2514, 7, 75, 2, 2, 2514, 2515, 7, 70, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 80, 2, 2, 2517, 2518, 7, 86, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 72, 2, 2, 2520, 2521, 7, 75, 2, 2, 2521, 2522, 7, 71, 2, 2, 2522, 2523, 7, 84, 2, 2, 2523, 502, 3, 2, 2, 2, 2524, 2525, 7, 68, 2, 2, 2525, 2526, 7, 67, 2, 2, 2526, 2527, 7, 69, 2, 2, 2527, 2528, 7, 77, 2, 2, 2528, 2529, 7, 83, 2, 2, 2529, 2530, 7, 87, 2, 2, 2530, 2531, 7, 81, 2, 2, 2531, 2532, 7, 86, 2, 2, 2532, 2533, 7, 71, 2, 2, 2533, 2534, 7, 70, 2, 2, 2534, 2535, 7, 97, 2, 2, 2535, 2536, 7, 75, 2, 2, 2536, 2537, 7, 70, 2, 2, 2537, 2538, 7, 71, 2, 2, 2538, 2539, 7, 80, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 75, 2, 2, 2541, 2542, 7, 72, 2, 2, 2542, 2543, 7, 75, 2, 2, 2543, 2544, 7, 71, 2, 2, 2544, 2545, 7, 84, 2, 2, 2545, 504, 3, 2, 2, 2, 2546, 2547, 7, 85, 2, 2, 2547, 2548, 7, 75, 2, 2, 2548, 2549, 7, 79, 2, 2, 2549, 2550, 7, 82, 2, 2, 2550, 2551, 7, 78, 2, 2, 2551, 2552, 7, 71, 2, 2, 2552, 2553, 7, 97, 2, 2, 2553, 2554, 7, 69, 2, 2, 2554, 2555, 7, 81, 2, 2, 2555, 2556, 7, 79, 2, 2, 2556, 2557, 7, 79, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 80, 2, 2, 2559, 2560, 7, 86, 2, 2, 2560, 506, 3, 2, 2, 2, 2561, 2562, 7, 68, 2, 2, 2562, 2563, 7, 84, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 69, 2, 2, 2565, 2566, 7, 77, 2, 2, 2566, 2567, 7, 71, 2, 2, 2567, 2568, 7, 86, 2, 2, 2568, 2569, 7, 71, 2, 2, 2569, 2570, 7, 70, 2, 2, 2570, 2571, 7, 97, 2, 2, 2571, 2572, 7, 71, 2, 2, 2572, 2573, 7, 79, 2, 2, 2573, 2574, 7, 82, 2, 2, 2574, 2575, 7, 86, 2, 2, 2575, 2576, 7, 91, 2, 2, 2576, 2577, 7, 97, 2, 2, 2577, 2578, 7, 69, 2, 2, 2578, 2579, 7, 81, 2, 2, 2579, 2580, 7, 79, 2, 2, 2580, 2581, 7, 79, 2, 2, 2581, 2582, 7, 71, 2, 2, 2582, 2583, 7, 80, 2, 2, 2583, 2584, 7, 86, 2, 2, 2584, 508, 3, 2, 2, 2, 2585, 2586, 7, 68, 2, 2, 2586, 2587, 7, 84, 2, 2, 2587, 2588, 7, 67, 2, 2, 2588, 2589, 7, 69, 2, 2, 2589, 2590, 7, 77, 2, 2, 2590, 2591, 7, 71, 2, 2, 2591, 2592, 7, 86, 2, 2, 2592, 2593, 7, 71, 2, 2, 2593, 2594, 7, 70, 2, 2, 2594, 2595, 7, 97, 2, 2, 2595, 2596, 7, 69, 2, 2, 2596, 2597, 7, 81, 2, 2, 2597, 2598, 7, 79, 2, 2, 2598, 2599, 7, 79, 2, 2, 2599, 2600, 7, 71, 2, 2, 2600, 2601, 7, 80, 2, 2, 2601, 2602, 7, 86, 2, 2, 2602, 510, 3, 2, 2, 2, 2603, 2604, 7, 89, 2, 2, 2604, 2605, 7, 85, 2, 2, 2605, 512, 3, 2, 2, 2, 2606, 2607, 7, 87, 2, 2, 2607, 2608, 7, 80, 2, 2, 2608, 2609, 7, 84, 2, 2, 2609, 2610, 7, 71, 2, 2, 2610, 2611, 7, 69, 2, 2, 2611, 2612, 7, 81, 2, 2, 2612, 2613, 7, 73, 2, 2, 2613, 2614, 7, 80, 2, 2, 2614, 2615, 7, 75, 2, 2, 2615, 2616, 7, 92, 2, 2, 2616, 2617, 7, 71, 2, 2, 2617, 2618, 7, 70, 2, 2, 2618, 514, 3, 2, 2, 2, 2619, 2621, 7, 98, 2, 2, 2620, 2622, 10, 4, 2, 2, 2621, 2620, 3, 2, 2, 2, 2622, 2623, 3, 2, 2, 2, 2623, 2621, 3, 2, 2, 2, 2623, 2624, 3, 2, 2, 2, 2624, 2625, 3, 2, 2, 2, 2625, 2626, 7, 98, 2, 2, 2626, 516, 3, 2, 2, 2, 2627, 2629, 7, 36, 2, 2, 2628, 2630, 10, 5, 2, 2, 2629, 2628, 3, 2, 2, 2, 2630, 2631, 3, 2, 2, 2, 2631, 2629, 3, 2, 2, 2, 2631, 2632, 3, 2, 2, 2, 2632, 2633, 3, 2, 2, 2, 2633, 2634, 7, 36, 2, 2, 2634, 518, 3, 2, 2, 2, 2635, 2636, 7, 48, 2, 2, 2636, 2637, 5, 643, 322, 2, 2637, 520, 3, 2, 2, 2, 2638, 2639, 5, 643, 322, 2, 2639, 522, 3, 2, 2, 2, 2640, 2641, 7, 85, 2, 2, 2641, 2642, 7, 91, 2, 2, 2642, 2643, 7, 85, 2, 2, 2643, 2644, 7, 86, 2, 2, 2644, 2645, 7, 71, 2, 2, 2645, 2646, 7, 79, 2, 2, 2646, 524, 3, 2, 2, 2, 2647, 2648, 7, 85, 2, 2, 2648, 2649, 7, 86, 2, 2, 2649, 2650, 7, 84, 2, 2, 2650, 2651, 7, 75, 2, 2, 2651, 2652, 7, 80, 2, 2, 2652, 2653, 7, 73, 2, 2, 2653, 526, 3, 2, 2, 2, 2654, 2655, 7, 67, 2, 2, 2655, 2656, 7, 84, 2, 2, 2656, 2657, 7, 84, 2, 2, 2657, 2658, 7, 67, 2, 2, 2658, 2659, 7, 91, 2, 2, 2659, 528, 3, 2, 2, 2, 2660, 2661, 7, 79, 2, 2, 2661, 2662, 7, 67, 2, 2, 2662, 2663, 7, 82, 2, 2, 2663, 530, 3, 2, 2, 2, 2664, 2665, 7, 69, 2, 2, 2665, 2666, 7, 74, 2, 2, 2666, 2667, 7, 67, 2, 2, 2667, 2668, 7, 84, 2, 2, 2668, 532, 3, 2, 2, 2, 2669, 2670, 7, 88, 2, 2, 2670, 2671, 7, 67, 2, 2, 2671, 2672, 7, 84, 2, 2, 2672, 2673, 7, 69, 2, 2, 2673, 2674, 7, 74, 2, 2, 2674, 2675, 7, 67, 2, 2, 2675, 2676, 7, 84, 2, 2, 2676, 534, 3, 2, 2, 2, 2677, 2678, 7, 68, 2, 2, 2678, 2679, 7, 75, 2, 2, 2679, 2680, 7, 80, 2, 2, 2680, 2681, 7, 67, 2, 2, 2681, 2682, 7, 84, 2, 2, 2682, 2683, 7, 91, 2, 2, 2683, 536, 3, 2, 2, 2, 2684, 2685, 7, 88, 2, 2, 2685, 2686, 7, 67, 2, 2, 2686, 2687, 7, 84, 2, 2, 2687, 2688, 7, 68, 2, 2, 2688, 2689, 7, 75, 2, 2, 2689, 2690, 7, 80, 2, 2, 2690, 2691, 7, 67, 2, 2, 2691, 2692, 7, 84, 2, 2, 2692, 2693, 7, 91, 2, 2, 2693, 538, 3, 2, 2, 2, 2694, 2695, 7, 68, 2, 2, 2695, 2696, 7, 91, 2, 2, 2696, 2697, 7, 86, 2, 2, 2697, 2698, 7, 71, 2, 2, 2698, 2699, 7, 85, 2, 2, 2699, 540, 3, 2, 2, 2, 2700, 2701, 7, 70, 2, 2, 2701, 2702, 7, 71, 2, 2, 2702, 2703, 7, 69, 2, 2, 2703, 2704, 7, 75, 2, 2, 2704, 2705, 7, 79, 2, 2, 2705, 2706, 7, 67, 2, 2, 2706, 2707, 7, 78, 2, 2, 2707, 542, 3, 2, 2, 2, 2708, 2709, 7, 86, 2, 2, 2709, 2710, 7, 75, 2, 2, 2710, 2711, 7, 80, 2, 2, 2711, 2712, 7, 91, 2, 2, 2712, 2713, 7, 75, 2, 2, 2713, 2714, 7, 80, 2, 2, 2714, 2715, 7, 86, 2, 2, 2715, 544, 3, 2, 2, 2, 2716, 2717, 7, 85, 2, 2, 2717, 2718, 7, 79, 2, 2, 2718, 2719, 7, 67, 2, 2, 2719, 2720, 7, 78, 2, 2, 2720, 2721, 7, 78, 2, 2, 2721, 2722, 7, 75, 2, 2, 2722, 2723, 7, 80, 2, 2, 2723, 2724, 7, 86, 2, 2, 2724, 546, 3, 2, 2, 2, 2725, 2726, 7, 75, 2, 2, 2726, 2727, 7, 80, 2, 2, 2727, 2728, 7, 86, 2, 2, 2728, 548, 3, 2, 2, 2, 2729, 2730, 7, 68, 2, 2, 2730, 2731, 7, 75, 2, 2, 2731, 2732, 7, 73, 2, 2, 2732, 2733, 7, 75, 2, 2, 2733, 2734, 7, 80, 2, 2, 2734, 2735, 7, 86, 2, 2, 2735, 550, 3, 2, 2, 2, 2736, 2737, 7, 72, 2, 2, 2737, 2738, 7, 78, 2, 2, 2738, 2739, 7, 81, 2, 2, 2739, 2740, 7, 67, 2, 2, 2740, 2741, 7, 86, 2, 2, 2741, 552, 3, 2, 2, 2, 2742, 2743, 7, 70, 2, 2, 2743, 2744, 7, 81, 2, 2, 2744, 2745, 7, 87, 2, 2, 2745, 2746, 7, 68, 2, 2, 2746, 2747, 7, 78, 2, 2, 2747, 2748, 7, 71, 2, 2, 2748, 554, 3, 2, 2, 2, 2749, 2750, 7, 70, 2, 2, 2750, 2751, 7, 67, 2, 2, 2751, 2752, 7, 86, 2, 2, 2752, 2753, 7, 71, 2, 2, 2753, 556, 3, 2, 2, 2, 2754, 2755, 7, 86, 2, 2, 2755, 2756, 7, 75, 2, 2, 2756, 2757, 7, 79, 2, 2, 2757, 2758, 7, 71, 2, 2, 2758, 558, 3, 2, 2, 2, 2759, 2760, 7, 86, 2, 2, 2760, 2761, 7, 75, 2, 2, 2761, 2762, 7, 79, 2, 2, 2762, 2763, 7, 71, 2, 2, 2763, 2764, 7, 85, 2, 2, 2764, 2765, 7, 86, 2, 2, 2765, 2766, 7, 67, 2, 2, 2766, 2767, 7, 79, 2, 2, 2767, 2768, 7, 82, 2, 2, 2768, 560, 3, 2, 2, 2, 2769, 2770, 7, 79, 2, 2, 2770, 2771, 7, 87, 2, 2, 2771, 2772, 7, 78, 2, 2, 2772, 2773, 7, 86, 2, 2, 2773, 2774, 7, 75, 2, 2, 2774, 2775, 7, 85, 2, 2, 2775, 2776, 7, 71, 2, 2, 2776, 2777, 7, 86, 2, 2, 2777, 562, 3, 2, 2, 2, 2778, 2779, 7, 68, 2, 2, 2779, 2780, 7, 81, 2, 2, 2780, 2781, 7, 81, 2, 2, 2781, 2782, 7, 78, 2, 2, 2782, 2783, 7, 71, 2, 2, 2783, 2784, 7, 67, 2, 2, 2784, 2785, 7, 80, 2, 2, 2785, 564, 3, 2, 2, 2, 2786, 2787, 7, 84, 2, 2, 2787, 2788, 7, 67, 2, 2, 2788, 2789, 7, 89, 2, 2, 2789, 566, 3, 2, 2, 2, 2790, 2791, 7, 84, 2, 2, 2791, 2792, 7, 81, 2, 2, 2792, 2793, 7, 89, 2, 2, 2793, 568, 3, 2, 2, 2, 2794, 2795, 7, 80, 2, 2, 2795, 2796, 7, 87, 2, 2, 2796, 2797, 7, 78, 2, 2, 2797, 2798, 7, 78, 2, 2, 2798, 570, 3, 2, 2, 2, 2799, 2800, 7, 63, 2, 2, 2800, 572, 3, 2, 2, 2, 2801, 2802, 7, 64, 2, 2, 2802, 574, 3, 2, 2, 2, 2803, 2804, 7, 62, 2, 2, 2804, 576, 3, 2, 2, 2, 2805, 2806, 7, 35, 2, 2, 2806, 578, 3, 2, 2, 2, 2807, 2808, 7, 128, 2, 2, 2808, 580, 3, 2, 2, 2, 2809, 2810, 7, 126, 2, 2, 2810, 582, 3, 2, 2, 2, 2811, 2812, 7, 40, 2, 2, 2812, 584, 3, 2, 2, 2, 2813, 2814, 7, 96, 2, 2, 2814, 586, 3, 2, 2, 2, 2815, 2816, 7, 48, 2, 2, 2816, 588, 3, 2, 2, 2, 2817, 2818, 7, 93, 2, 2, 2818, 590, 3, 2, 2, 2, 2819, 2820, 7, 95, 2, 2, 2820, 592, 3, 2, 2, 2, 2821, 2822, 7, 42, 2, 2, 2822, 594, 3, 2, 2, 2, 2823, 2824, 7, 43, 2, 2, 2824, 596, 3, 2, 2, 2, 2825, 2826, 7, 46, 2, 2, 2826, 598, 3, 2, 2, 2, 2827, 2828, 7, 61, 2, 2, 2828, 600, 3, 2, 2, 2, 2829, 2830, 7, 66, 2, 2, 2830, 602, 3, 2, 2, 2, 2831, 2832, 7, 50, 2, 2, 2832, 604, 3, 2, 2, 2, 2833, 2834, 7, 51, 2, 2, 2834, 606, 3, 2, 2, 2, 2835, 2836, 7, 52, 2, 2, 2836, 608, 3, 2, 2, 2, 2837, 2838, 7, 41, 2, 2, 2838, 610, 3, 2, 2, 2, 2839, 2840, 7, 36, 2, 2, 2840, 612, 3, 2, 2, 2, 2841, 2842, 7, 98, 2, 2, 2842, 614, 3, 2, 2, 2, 2843, 2844, 7, 60, 2, 2, 2844, 616, 3, 2, 2, 2, 2845, 2846, 7, 44, 2, 2, 2846, 618, 3, 2, 2, 2, 2847, 2848, 7, 97, 2, 2, 2848, 620, 3, 2, 2, 2, 2849, 2850, 7, 47, 2, 2, 2850, 622, 3, 2, 2, 2, 2851, 2852, 7, 45, 2, 2, 2852, 624, 3, 2, 2, 2, 2853, 2854, 7, 39, 2, 2, 2854, 626, 3, 2, 2, 2, 2855, 2856, 7, 47, 2, 2, 2856, 2857, 7, 47, 2, 2, 2857, 628, 3, 2, 2, 2, 2858, 2859, 7, 49, 2, 2, 2859, 630, 3, 2, 2, 2, 2860, 2864, 5, 649, 325, 2, 2861, 2864, 5, 651, 326, 2, 2862, 2864, 5, 655, 328, 2, 2863, 2860, 3, 2, 2, 2, 2863, 2861, 3, 2, 2, 2, 2863, 2862, 3, 2, 2, 2, 2864, 632, 3, 2, 2, 2, 2865, 2867, 5, 645, 323, 2, 2866, 2865, 3, 2, 2, 2, 2867, 2868, 3, 2, 2, 2, 2868, 2866, 3, 2, 2, 2, 2868, 2869, 3, 2, 2, 2, 2869, 634, 3, 2, 2, 2, 2870, 2872, 5, 645, 323, 2, 2871, 2870, 3, 2, 2, 2, 2872, 2873, 3, 2, 2, 2, 2873, 2871, 3, 2, 2, 2, 2873, 2874, 3, 2, 2, 2, 2874, 2876, 3, 2, 2, 2, 2875, 2871, 3, 2, 2, 2, 2875, 2876, 3, 2, 2, 2, 2876, 2877, 3, 2, 2, 2, 2877, 2879, 7, 48, 2, 2, 2878, 2880, 5, 645, 323, 2, 2879, 2878, 3, 2, 2, 2, 2880, 2881, 3, 2, 2, 2, 2881, 2879, 3, 2, 2, 2, 2881, 2882, 3, 2, 2, 2, 2882, 2914, 3, 2, 2, 2, 2883, 2885, 5, 645, 323, 2, 2884, 2883, 3, 2, 2, 2, 2885, 2886, 3, 2, 2, 2, 2886, 2884, 3, 2, 2, 2, 2886, 2887, 3, 2, 2, 2, 2887, 2888, 3, 2, 2, 2, 2888, 2889, 7, 48, 2, 2, 2889, 2890, 5, 641, 321, 2, 2890, 2914, 3, 2, 2, 2, 2891, 2893, 5, 645, 323, 2, 2892, 2891, 3, 2, 2, 2, 2893, 2894, 3, 2, 2, 2, 2894, 2892, 3, 2, 2, 2, 2894, 2895, 3, 2, 2, 2, 2895, 2897, 3, 2, 2, 2, 2896, 2892, 3, 2, 2, 2, 2896, 2897, 3, 2, 2, 2, 2897, 2898, 3, 2, 2, 2, 2898, 2900, 7, 48, 2, 2, 2899, 2901, 5, 645, 323, 2, 2900, 2899, 3, 2, 2, 2, 2901, 2902, 3, 2, 2, 2, 2902, 2900, 3, 2, 2, 2, 2902, 2903, 3, 2, 2, 2, 2903, 2904, 3, 2, 2, 2, 2904, 2905, 5, 641, 321, 2, 2905, 2914, 3, 2, 2, 2, 2906, 2908, 5, 645, 323, 2, 2907, 2906, 3, 2, 2, 2, 2908, 2909, 3, 2, 2, 2, 2909, 2907, 3, 2, 2, 2, 2909, 2910, 3, 2, 2, 2, 2910, 2911, 3, 2, 2, 2, 2911, 2912, 5, 641, 321, 2, 2912, 2914, 3, 2, 2, 2, 2913, 2875, 3, 2, 2, 2, 2913, 2884, 3, 2, 2, 2, 2913, 2896, 3, 2, 2, 2, 2913, 2907, 3, 2, 2, 2, 2914, 636, 3, 2, 2, 2, 2915, 2916, 5, 653, 327, 2, 2916, 638, 3, 2, 2, 2, 2917, 2921, 5, 647, 324, 2, 2918, 2921, 5, 645, 323, 2, 2919, 2921, 5, 619, 310, 2, 2920, 2917, 3, 2, 2, 2, 2920, 2918, 3, 2, 2, 2, 2920, 2919, 3, 2, 2, 2, 2921, 2922, 3, 2, 2, 2, 2922, 2920, 3, 2, 2, 2, 2922, 2923, 3, 2, 2, 2, 2923, 640, 3, 2, 2, 2, 2924, 2926, 7, 71, 2, 2, 2925, 2927, 9, 6, 2, 2, 2926, 2925, 3, 2, 2, 2, 2926, 2927, 3, 2, 2, 2, 2927, 2929, 3, 2, 2, 2, 2928, 2930, 5, 645, 323, 2, 2929, 2928, 3, 2, 2, 2, 2930, 2931, 3, 2, 2, 2, 2931, 2929, 3, 2, 2, 2, 2931, 2932, 3, 2, 2, 2, 2932, 642, 3, 2, 2, 2, 2933, 2935, 9, 7, 2, 2, 2934, 2933, 3, 2, 2, 2, 2935, 2938, 3, 2, 2, 2, 2936, 2937, 3, 2, 2, 2, 2936, 2934, 3, 2, 2, 2, 2937, 2940, 3, 2, 2, 2, 2938, 2936, 3, 2, 2, 2, 2939, 2941, 9, 8, 2, 2, 2940, 2939, 3, 2, 2, 2, 2941, 2942, 3, 2, 2, 2, 2942, 2943, 3, 2, 2, 2, 2942, 2940, 3, 2, 2, 2, 2943, 2947, 3, 2, 2, 2, 2944, 2946, 9, 7, 2, 2, 2945, 2944, 3, 2, 2, 2, 2946, 2949, 3, 2, 2, 2, 2947, 2945, 3, 2, 2, 2, 2947, 2948, 3, 2, 2, 2, 2948, 644, 3, 2, 2, 2, 2949, 2947, 3, 2, 2, 2, 2950, 2951, 9, 9, 2, 2, 2951, 646, 3, 2, 2, 2, 2952, 2953, 9, 10, 2, 2, 2953, 648, 3, 2, 2, 2, 2954, 2962, 7, 36, 2, 2, 2955, 2956, 7, 94, 2, 2, 2956, 2961, 11, 2, 2, 2, 2957, 2958, 7, 36, 2, 2, 2958, 2961, 7, 36, 2, 2, 2959, 2961, 10, 11, 2, 2, 2960, 2955, 3, 2, 2, 2, 2960, 2957, 3, 2, 2, 2, 2960, 2959, 3, 2, 2, 2, 2961, 2964, 3, 2, 2, 2, 2962, 2960, 3, 2, 2, 2, 2962, 2963, 3, 2, 2, 2, 2963, 2965, 3, 2, 2, 2, 2964, 2962, 3, 2, 2, 2, 2965, 2966, 7, 36, 2, 2, 2966, 650, 3, 2, 2, 2, 2967, 2975, 7, 41, 2, 2, 2968, 2969, 7, 94, 2, 2, 2969, 2974, 11, 2, 2, 2, 2970, 2971, 7, 41, 2, 2, 2971, 2974, 7, 41, 2, 2, 2972, 2974, 10, 12, 2, 2, 2973, 2968, 3, 2, 2, 2, 2973, 2970, 3, 2, 2, 2, 2973, 2972, 3, 2, 2, 2, 2974, 2977, 3, 2, 2, 2, 2975, 2973, 3, 2, 2, 2, 2975, 2976, 3, 2, 2, 2, 2976, 2978, 3, 2, 2, 2, 2977, 2975, 3, 2, 2, 2, 2978, 2979, 7, 41, 2, 2, 2979, 652, 3, 2, 2, 2, 2980, 2981, 7, 68, 2, 2, 2981, 2983, 7, 41, 2, 2, 2982, 2984, 9, 13, 2, 2, 2983, 2982, 3, 2, 2, 2, 2984, 2985, 3, 2, 2, 2, 2985, 2983, 3, 2, 2, 2, 2985, 2986, 3, 2, 2, 2, 2986, 2987, 3, 2, 2, 2, 2987, 2988, 7, 41, 2, 2, 2988, 654, 3, 2, 2, 2, 2989, 2997, 7, 98, 2, 2, 2990, 2991, 7, 94, 2, 2, 2991, 2996, 11, 2, 2, 2, 2992, 2993, 7, 98, 2, 2, 2993, 2996, 7, 98, 2, 2, 2994, 2996, 10, 14, 2, 2, 2995, 2990, 3, 2, 2, 2, 2995, 2992, 3, 2, 2, 2, 2995, 2994, 3, 2, 2, 2, 2996, 2999, 3, 2, 2, 2, 2997, 2995, 3, 2, 2, 2, 2997, 2998, 3, 2, 2, 2, 2998, 3000, 3, 2, 2, 2, 2999, 2997, 3, 2, 2, 2, 3000, 3001, 7, 98, 2, 2, 3001, 656, 3, 2, 2, 2, 40, 2, 660, 671, 684, 696, 701, 705, 709, 715, 719, 721, 2623, 2631, 2863, 2868, 2873, 2875, 2881, 2886, 2894, 2896, 2902, 2909, 2913, 2920, 2922, 2926, 2931, 2936, 2942, 2947, 2960, 2962, 2973, 2975, 2985, 2995, 2997, 4, 2, 3, 2, 2, 4, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 311, 2815, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 3, 2, 6, 2, 639, 10, 2, 13, 2, 14, 2, 640, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 649, 10, 3, 12, 3, 14, 3, 652, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 663, 10, 4, 3, 4, 7, 4, 666, 10, 4, 12, 4, 14, 4, 669, 11, 4, 3, 4, 5, 4, 672, 10, 4, 3, 4, 3, 4, 5, 4, 676, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 682, 10, 4, 3, 4, 3, 4, 5, 4, 686, 10, 4, 5, 4, 688, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 275, 3, 275, 3, 275, 3, 275, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 277, 3, 277, 3, 278, 3, 278, 3, 279, 3, 279, 3, 280, 3, 280, 3, 281, 3, 281, 3, 282, 3, 282, 3, 283, 3, 283, 3, 284, 3, 284, 3, 285, 3, 285, 3, 286, 3, 286, 3, 287, 3, 287, 3, 288, 3, 288, 3, 289, 3, 289, 3, 290, 3, 290, 3, 291, 3, 291, 3, 292, 3, 292, 3, 293, 3, 293, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 297, 3, 297, 3, 298, 3, 298, 3, 299, 3, 299, 3, 300, 3, 300, 3, 301, 3, 301, 3, 302, 3, 302, 3, 302, 3, 303, 3, 303, 3, 303, 3, 304, 3, 304, 3, 305, 3, 305, 3, 305, 3, 306, 3, 306, 3, 306, 5, 306, 2682, 10, 306, 3, 307, 6, 307, 2685, 10, 307, 13, 307, 14, 307, 2686, 3, 308, 6, 308, 2690, 10, 308, 13, 308, 14, 308, 2691, 5, 308, 2694, 10, 308, 3, 308, 3, 308, 6, 308, 2698, 10, 308, 13, 308, 14, 308, 2699, 3, 308, 6, 308, 2703, 10, 308, 13, 308, 14, 308, 2704, 3, 308, 3, 308, 3, 308, 3, 308, 6, 308, 2711, 10, 308, 13, 308, 14, 308, 2712, 5, 308, 2715, 10, 308, 3, 308, 3, 308, 6, 308, 2719, 10, 308, 13, 308, 14, 308, 2720, 3, 308, 3, 308, 3, 308, 6, 308, 2726, 10, 308, 13, 308, 14, 308, 2727, 3, 308, 3, 308, 5, 308, 2732, 10, 308, 3, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 5, 311, 2740, 10, 311, 3, 311, 6, 311, 2743, 10, 311, 13, 311, 14, 311, 2744, 3, 312, 7, 312, 2748, 10, 312, 12, 312, 14, 312, 2751, 11, 312, 3, 312, 6, 312, 2754, 10, 312, 13, 312, 14, 312, 2755, 3, 312, 7, 312, 2759, 10, 312, 12, 312, 14, 312, 2762, 11, 312, 3, 313, 3, 313, 3, 314, 3, 314, 3, 315, 3, 315, 3, 315, 3, 315, 3, 315, 3, 315, 7, 315, 2774, 10, 315, 12, 315, 14, 315, 2777, 11, 315, 3, 315, 3, 315, 3, 316, 3, 316, 3, 316, 3, 316, 3, 316, 3, 316, 7, 316, 2787, 10, 316, 12, 316, 14, 316, 2790, 11, 316, 3, 316, 3, 316, 3, 317, 3, 317, 3, 317, 6, 317, 2797, 10, 317, 13, 317, 14, 317, 2798, 3, 317, 3, 317, 3, 318, 3, 318, 3, 318, 3, 318, 3, 318, 3, 318, 7, 318, 2809, 10, 318, 12, 318, 14, 318, 2812, 11, 318, 3, 318, 3, 318, 5, 650, 2749, 2755, 2, 319, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 2, 623, 2, 625, 2, 627, 2, 629, 2, 631, 2, 633, 2, 635, 2, 3, 2, 13, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 4, 2, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 2844, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 3, 638, 3, 2, 2, 2, 5, 644, 3, 2, 2, 2, 7, 687, 3, 2, 2, 2, 9, 691, 3, 2, 2, 2, 11, 698, 3, 2, 2, 2, 13, 703, 3, 2, 2, 2, 15, 707, 3, 2, 2, 2, 17, 710, 3, 2, 2, 2, 19, 714, 3, 2, 2, 2, 21, 718, 3, 2, 2, 2, 23, 727, 3, 2, 2, 2, 25, 733, 3, 2, 2, 2, 27, 739, 3, 2, 2, 2, 29, 742, 3, 2, 2, 2, 31, 751, 3, 2, 2, 2, 33, 756, 3, 2, 2, 2, 35, 761, 3, 2, 2, 2, 37, 768, 3, 2, 2, 2, 39, 774, 3, 2, 2, 2, 41, 781, 3, 2, 2, 2, 43, 787, 3, 2, 2, 2, 45, 790, 3, 2, 2, 2, 47, 793, 3, 2, 2, 2, 49, 797, 3, 2, 2, 2, 51, 800, 3, 2, 2, 2, 53, 804, 3, 2, 2, 2, 55, 807, 3, 2, 2, 2, 57, 814, 3, 2, 2, 2, 59, 822, 3, 2, 2, 2, 61, 827, 3, 2, 2, 2, 63, 833, 3, 2, 2, 2, 65, 836, 3, 2, 2, 2, 67, 841, 3, 2, 2, 2, 69, 847, 3, 2, 2, 2, 71, 853, 3, 2, 2, 2, 73, 857, 3, 2, 2, 2, 75, 862, 3, 2, 2, 2, 77, 866, 3, 2, 2, 2, 79, 875, 3, 2, 2, 2, 81, 880, 3, 2, 2, 2, 83, 885, 3, 2, 2, 2, 85, 890, 3, 2, 2, 2, 87, 895, 3, 2, 2, 2, 89, 899, 3, 2, 2, 2, 91, 904, 3, 2, 2, 2, 93, 910, 3, 2, 2, 2, 95, 916, 3, 2, 2, 2, 97, 922, 3, 2, 2, 2, 99, 927, 3, 2, 2, 2, 101, 932, 3, 2, 2, 2, 103, 938, 3, 2, 2, 2, 105, 943, 3, 2, 2, 2, 107, 951, 3, 2, 2, 2, 109, 954, 3, 2, 2, 2, 111, 960, 3, 2, 2, 2, 113, 968, 3, 2, 2, 2, 115, 975, 3, 2, 2, 2, 117, 980, 3, 2, 2, 2, 119, 990, 3, 2, 2, 2, 121, 996, 3, 2, 2, 2, 123, 1001, 3, 2, 2, 2, 125, 1011, 3, 2, 2, 2, 127, 1021, 3, 2, 2, 2, 129, 1031, 3, 2, 2, 2, 131, 1039, 3, 2, 2, 2, 133, 1045, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1056, 3, 2, 2, 2, 139, 1061, 3, 2, 2, 2, 141, 1068, 3, 2, 2, 2, 143, 1075, 3, 2, 2, 2, 145, 1081, 3, 2, 2, 2, 147, 1091, 3, 2, 2, 2, 149, 1096, 3, 2, 2, 2, 151, 1104, 3, 2, 2, 2, 153, 1111, 3, 2, 2, 2, 155, 1118, 3, 2, 2, 2, 157, 1123, 3, 2, 2, 2, 159, 1132, 3, 2, 2, 2, 161, 1140, 3, 2, 2, 2, 163, 1147, 3, 2, 2, 2, 165, 1155, 3, 2, 2, 2, 167, 1163, 3, 2, 2, 2, 169, 1168, 3, 2, 2, 2, 171, 1173, 3, 2, 2, 2, 173, 1178, 3, 2, 2, 2, 175, 1185, 3, 2, 2, 2, 177, 1193, 3, 2, 2, 2, 179, 1200, 3, 2, 2, 2, 181, 1204, 3, 2, 2, 2, 183, 1215, 3, 2, 2, 2, 185, 1225, 3, 2, 2, 2, 187, 1230, 3, 2, 2, 2, 189, 1236, 3, 2, 2, 2, 191, 1243, 3, 2, 2, 2, 193, 1252, 3, 2, 2, 2, 195, 1262, 3, 2, 2, 2, 197, 1265, 3, 2, 2, 2, 199, 1277, 3, 2, 2, 2, 201, 1286, 3, 2, 2, 2, 203, 1292, 3, 2, 2, 2, 205, 1299, 3, 2, 2, 2, 207, 1306, 3, 2, 2, 2, 209, 1314, 3, 2, 2, 2, 211, 1318, 3, 2, 2, 2, 213, 1324, 3, 2, 2, 2, 215, 1329, 3, 2, 2, 2, 217, 1335, 3, 2, 2, 2, 219, 1347, 3, 2, 2, 2, 221, 1354, 3, 2, 2, 2, 223, 1363, 3, 2, 2, 2, 225, 1369, 3, 2, 2, 2, 227, 1376, 3, 2, 2, 2, 229, 1381, 3, 2, 2, 2, 231, 1389, 3, 2, 2, 2, 233, 1398, 3, 2, 2, 2, 235, 1401, 3, 2, 2, 2, 237, 1410, 3, 2, 2, 2, 239, 1418, 3, 2, 2, 2, 241, 1421, 3, 2, 2, 2, 243, 1426, 3, 2, 2, 2, 245, 1430, 3, 2, 2, 2, 247, 1435, 3, 2, 2, 2, 249, 1438, 3, 2, 2, 2, 251, 1442, 3, 2, 2, 2, 253, 1445, 3, 2, 2, 2, 255, 1449, 3, 2, 2, 2, 257, 1454, 3, 2, 2, 2, 259, 1460, 3, 2, 2, 2, 261, 1469, 3, 2, 2, 2, 263, 1475, 3, 2, 2, 2, 265, 1483, 3, 2, 2, 2, 267, 1487, 3, 2, 2, 2, 269, 1493, 3, 2, 2, 2, 271, 1503, 3, 2, 2, 2, 273, 1508, 3, 2, 2, 2, 275, 1520, 3, 2, 2, 2, 277, 1524, 3, 2, 2, 2, 279, 1535, 3, 2, 2, 2, 281, 1542, 3, 2, 2, 2, 283, 1546, 3, 2, 2, 2, 285, 1549, 3, 2, 2, 2, 287, 1554, 3, 2, 2, 2, 289, 1562, 3, 2, 2, 2, 291, 1573, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1593, 3, 2, 2, 2, 297, 1600, 3, 2, 2, 2, 299, 1606, 3, 2, 2, 2, 301, 1612, 3, 2, 2, 2, 303, 1628, 3, 2, 2, 2, 305, 1641, 3, 2, 2, 2, 307, 1654, 3, 2, 2, 2, 309, 1664, 3, 2, 2, 2, 311, 1671, 3, 2, 2, 2, 313, 1682, 3, 2, 2, 2, 315, 1693, 3, 2, 2, 2, 317, 1699, 3, 2, 2, 2, 319, 1704, 3, 2, 2, 2, 321, 1712, 3, 2, 2, 2, 323, 1718, 3, 2, 2, 2, 325, 1728, 3, 2, 2, 2, 327, 1737, 3, 2, 2, 2, 329, 1746, 3, 2, 2, 2, 331, 1754, 3, 2, 2, 2, 333, 1760, 3, 2, 2, 2, 335, 1766, 3, 2, 2, 2, 337, 1774, 3, 2, 2, 2, 339, 1779, 3, 2, 2, 2, 341, 1789, 3, 2, 2, 2, 343, 1796, 3, 2, 2, 2, 345, 1806, 3, 2, 2, 2, 347, 1814, 3, 2, 2, 2, 349, 1820, 3, 2, 2, 2, 351, 1834, 3, 2, 2, 2, 353, 1847, 3, 2, 2, 2, 355, 1855, 3, 2, 2, 2, 357, 1862, 3, 2, 2, 2, 359, 1869, 3, 2, 2, 2, 361, 1881, 3, 2, 2, 2, 363, 1890, 3, 2, 2, 2, 365, 1899, 3, 2, 2, 2, 367, 1907, 3, 2, 2, 2, 369, 1917, 3, 2, 2, 2, 371, 1928, 3, 2, 2, 2, 373, 1934, 3, 2, 2, 2, 375, 1942, 3, 2, 2, 2, 377, 1954, 3, 2, 2, 2, 379, 1961, 3, 2, 2, 2, 381, 1969, 3, 2, 2, 2, 383, 1978, 3, 2, 2, 2, 385, 1988, 3, 2, 2, 2, 387, 1995, 3, 2, 2, 2, 389, 2001, 3, 2, 2, 2, 391, 2013, 3, 2, 2, 2, 393, 2026, 3, 2, 2, 2, 395, 2035, 3, 2, 2, 2, 397, 2045, 3, 2, 2, 2, 399, 2049, 3, 2, 2, 2, 401, 2058, 3, 2, 2, 2, 403, 2066, 3, 2, 2, 2, 405, 2074, 3, 2, 2, 2, 407, 2079, 3, 2, 2, 2, 409, 2090, 3, 2, 2, 2, 411, 2102, 3, 2, 2, 2, 413, 2111, 3, 2, 2, 2, 415, 2119, 3, 2, 2, 2, 417, 2126, 3, 2, 2, 2, 419, 2132, 3, 2, 2, 2, 421, 2137, 3, 2, 2, 2, 423, 2144, 3, 2, 2, 2, 425, 2149, 3, 2, 2, 2, 427, 2156, 3, 2, 2, 2, 429, 2164, 3, 2, 2, 2, 431, 2171, 3, 2, 2, 2, 433, 2178, 3, 2, 2, 2, 435, 2183, 3, 2, 2, 2, 437, 2188, 3, 2, 2, 2, 439, 2194, 3, 2, 2, 2, 441, 2206, 3, 2, 2, 2, 443, 2217, 3, 2, 2, 2, 445, 2230, 3, 2, 2, 2, 447, 2236, 3, 2, 2, 2, 449, 2244, 3, 2, 2, 2, 451, 2250, 3, 2, 2, 2, 453, 2257, 3, 2, 2, 2, 455, 2262, 3, 2, 2, 2, 457, 2268, 3, 2, 2, 2, 459, 2275, 3, 2, 2, 2, 461, 2285, 3, 2, 2, 2, 463, 2292, 3, 2, 2, 2, 465, 2308, 3, 2, 2, 2, 467, 2317, 3, 2, 2, 2, 469, 2321, 3, 2, 2, 2, 471, 2325, 3, 2, 2, 2, 473, 2331, 3, 2, 2, 2, 475, 2337, 3, 2, 2, 2, 477, 2342, 3, 2, 2, 2, 479, 2347, 3, 2, 2, 2, 481, 2355, 3, 2, 2, 2, 483, 2362, 3, 2, 2, 2, 485, 2369, 3, 2, 2, 2, 487, 2372, 3, 2, 2, 2, 489, 2379, 3, 2, 2, 2, 491, 2389, 3, 2, 2, 2, 493, 2399, 3, 2, 2, 2, 495, 2411, 3, 2, 2, 2, 497, 2423, 3, 2, 2, 2, 499, 2433, 3, 2, 2, 2, 501, 2441, 3, 2, 2, 2, 503, 2450, 3, 2, 2, 2, 505, 2459, 3, 2, 2, 2, 507, 2465, 3, 2, 2, 2, 509, 2472, 3, 2, 2, 2, 511, 2478, 3, 2, 2, 2, 513, 2482, 3, 2, 2, 2, 515, 2487, 3, 2, 2, 2, 517, 2495, 3, 2, 2, 2, 519, 2502, 3, 2, 2, 2, 521, 2512, 3, 2, 2, 2, 523, 2518, 3, 2, 2, 2, 525, 2526, 3, 2, 2, 2, 527, 2534, 3, 2, 2, 2, 529, 2543, 3, 2, 2, 2, 531, 2547, 3, 2, 2, 2, 533, 2554, 3, 2, 2, 2, 535, 2560, 3, 2, 2, 2, 537, 2567, 3, 2, 2, 2, 539, 2572, 3, 2, 2, 2, 541, 2577, 3, 2, 2, 2, 543, 2587, 3, 2, 2, 2, 545, 2596, 3, 2, 2, 2, 547, 2604, 3, 2, 2, 2, 549, 2608, 3, 2, 2, 2, 551, 2612, 3, 2, 2, 2, 553, 2617, 3, 2, 2, 2, 555, 2619, 3, 2, 2, 2, 557, 2621, 3, 2, 2, 2, 559, 2623, 3, 2, 2, 2, 561, 2625, 3, 2, 2, 2, 563, 2627, 3, 2, 2, 2, 565, 2629, 3, 2, 2, 2, 567, 2631, 3, 2, 2, 2, 569, 2633, 3, 2, 2, 2, 571, 2635, 3, 2, 2, 2, 573, 2637, 3, 2, 2, 2, 575, 2639, 3, 2, 2, 2, 577, 2641, 3, 2, 2, 2, 579, 2643, 3, 2, 2, 2, 581, 2645, 3, 2, 2, 2, 583, 2647, 3, 2, 2, 2, 585, 2649, 3, 2, 2, 2, 587, 2651, 3, 2, 2, 2, 589, 2653, 3, 2, 2, 2, 591, 2655, 3, 2, 2, 2, 593, 2657, 3, 2, 2, 2, 595, 2659, 3, 2, 2, 2, 597, 2661, 3, 2, 2, 2, 599, 2663, 3, 2, 2, 2, 601, 2665, 3, 2, 2, 2, 603, 2667, 3, 2, 2, 2, 605, 2670, 3, 2, 2, 2, 607, 2673, 3, 2, 2, 2, 609, 2675, 3, 2, 2, 2, 611, 2681, 3, 2, 2, 2, 613, 2684, 3, 2, 2, 2, 615, 2731, 3, 2, 2, 2, 617, 2733, 3, 2, 2, 2, 619, 2735, 3, 2, 2, 2, 621, 2737, 3, 2, 2, 2, 623, 2749, 3, 2, 2, 2, 625, 2763, 3, 2, 2, 2, 627, 2765, 3, 2, 2, 2, 629, 2767, 3, 2, 2, 2, 631, 2780, 3, 2, 2, 2, 633, 2793, 3, 2, 2, 2, 635, 2802, 3, 2, 2, 2, 637, 639, 9, 2, 2, 2, 638, 637, 3, 2, 2, 2, 639, 640, 3, 2, 2, 2, 640, 638, 3, 2, 2, 2, 640, 641, 3, 2, 2, 2, 641, 642, 3, 2, 2, 2, 642, 643, 8, 2, 2, 2, 643, 4, 3, 2, 2, 2, 644, 645, 7, 49, 2, 2, 645, 646, 7, 44, 2, 2, 646, 650, 3, 2, 2, 2, 647, 649, 11, 2, 2, 2, 648, 647, 3, 2, 2, 2, 649, 652, 3, 2, 2, 2, 650, 651, 3, 2, 2, 2, 650, 648, 3, 2, 2, 2, 651, 653, 3, 2, 2, 2, 652, 650, 3, 2, 2, 2, 653, 654, 7, 44, 2, 2, 654, 655, 7, 49, 2, 2, 655, 656, 3, 2, 2, 2, 656, 657, 8, 3, 2, 2, 657, 6, 3, 2, 2, 2, 658, 659, 7, 47, 2, 2, 659, 660, 7, 47, 2, 2, 660, 663, 7, 34, 2, 2, 661, 663, 7, 37, 2, 2, 662, 658, 3, 2, 2, 2, 662, 661, 3, 2, 2, 2, 663, 667, 3, 2, 2, 2, 664, 666, 10, 3, 2, 2, 665, 664, 3, 2, 2, 2, 666, 669, 3, 2, 2, 2, 667, 665, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 675, 3, 2, 2, 2, 669, 667, 3, 2, 2, 2, 670, 672, 7, 15, 2, 2, 671, 670, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 676, 7, 12, 2, 2, 674, 676, 7, 2, 2, 3, 675, 671, 3, 2, 2, 2, 675, 674, 3, 2, 2, 2, 676, 688, 3, 2, 2, 2, 677, 678, 7, 47, 2, 2, 678, 679, 7, 47, 2, 2, 679, 685, 3, 2, 2, 2, 680, 682, 7, 15, 2, 2, 681, 680, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 683, 3, 2, 2, 2, 683, 686, 7, 12, 2, 2, 684, 686, 7, 2, 2, 3, 685, 681, 3, 2, 2, 2, 685, 684, 3, 2, 2, 2, 686, 688, 3, 2, 2, 2, 687, 662, 3, 2, 2, 2, 687, 677, 3, 2, 2, 2, 688, 689, 3, 2, 2, 2, 689, 690, 8, 4, 2, 2, 690, 8, 3, 2, 2, 2, 691, 692, 7, 85, 2, 2, 692, 693, 7, 71, 2, 2, 693, 694, 7, 78, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 86, 2, 2, 697, 10, 3, 2, 2, 2, 698, 699, 7, 72, 2, 2, 699, 700, 7, 84, 2, 2, 700, 701, 7, 81, 2, 2, 701, 702, 7, 79, 2, 2, 702, 12, 3, 2, 2, 2, 703, 704, 7, 67, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 70, 2, 2, 706, 14, 3, 2, 2, 2, 707, 708, 7, 67, 2, 2, 708, 709, 7, 85, 2, 2, 709, 16, 3, 2, 2, 2, 710, 711, 7, 67, 2, 2, 711, 712, 7, 78, 2, 2, 712, 713, 7, 78, 2, 2, 713, 18, 3, 2, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 80, 2, 2, 716, 717, 7, 91, 2, 2, 717, 20, 3, 2, 2, 2, 718, 719, 7, 70, 2, 2, 719, 720, 7, 75, 2, 2, 720, 721, 7, 85, 2, 2, 721, 722, 7, 86, 2, 2, 722, 723, 7, 75, 2, 2, 723, 724, 7, 80, 2, 2, 724, 725, 7, 69, 2, 2, 725, 726, 7, 86, 2, 2, 726, 22, 3, 2, 2, 2, 727, 728, 7, 89, 2, 2, 728, 729, 7, 74, 2, 2, 729, 730, 7, 71, 2, 2, 730, 731, 7, 84, 2, 2, 731, 732, 7, 71, 2, 2, 732, 24, 3, 2, 2, 2, 733, 734, 7, 73, 2, 2, 734, 735, 7, 84, 2, 2, 735, 736, 7, 81, 2, 2, 736, 737, 7, 87, 2, 2, 737, 738, 7, 82, 2, 2, 738, 26, 3, 2, 2, 2, 739, 740, 7, 68, 2, 2, 740, 741, 7, 91, 2, 2, 741, 28, 3, 2, 2, 2, 742, 743, 7, 73, 2, 2, 743, 744, 7, 84, 2, 2, 744, 745, 7, 81, 2, 2, 745, 746, 7, 87, 2, 2, 746, 747, 7, 82, 2, 2, 747, 748, 7, 75, 2, 2, 748, 749, 7, 80, 2, 2, 749, 750, 7, 73, 2, 2, 750, 30, 3, 2, 2, 2, 751, 752, 7, 85, 2, 2, 752, 753, 7, 71, 2, 2, 753, 754, 7, 86, 2, 2, 754, 755, 7, 85, 2, 2, 755, 32, 3, 2, 2, 2, 756, 757, 7, 69, 2, 2, 757, 758, 7, 87, 2, 2, 758, 759, 7, 68, 2, 2, 759, 760, 7, 71, 2, 2, 760, 34, 3, 2, 2, 2, 761, 762, 7, 84, 2, 2, 762, 763, 7, 81, 2, 2, 763, 764, 7, 78, 2, 2, 764, 765, 7, 78, 2, 2, 765, 766, 7, 87, 2, 2, 766, 767, 7, 82, 2, 2, 767, 36, 3, 2, 2, 2, 768, 769, 7, 81, 2, 2, 769, 770, 7, 84, 2, 2, 770, 771, 7, 70, 2, 2, 771, 772, 7, 71, 2, 2, 772, 773, 7, 84, 2, 2, 773, 38, 3, 2, 2, 2, 774, 775, 7, 74, 2, 2, 775, 776, 7, 67, 2, 2, 776, 777, 7, 88, 2, 2, 777, 778, 7, 75, 2, 2, 778, 779, 7, 80, 2, 2, 779, 780, 7, 73, 2, 2, 780, 40, 3, 2, 2, 2, 781, 782, 7, 78, 2, 2, 782, 783, 7, 75, 2, 2, 783, 784, 7, 79, 2, 2, 784, 785, 7, 75, 2, 2, 785, 786, 7, 86, 2, 2, 786, 42, 3, 2, 2, 2, 787, 788, 7, 67, 2, 2, 788, 789, 7, 86, 2, 2, 789, 44, 3, 2, 2, 2, 790, 791, 7, 81, 2, 2, 791, 792, 7, 84, 2, 2, 792, 46, 3, 2, 2, 2, 793, 794, 7, 67, 2, 2, 794, 795, 7, 80, 2, 2, 795, 796, 7, 70, 2, 2, 796, 48, 3, 2, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 50, 3, 2, 2, 2, 800, 801, 7, 80, 2, 2, 801, 802, 7, 81, 2, 2, 802, 803, 7, 86, 2, 2, 803, 52, 3, 2, 2, 2, 804, 805, 7, 80, 2, 2, 805, 806, 7, 81, 2, 2, 806, 54, 3, 2, 2, 2, 807, 808, 7, 71, 2, 2, 808, 809, 7, 90, 2, 2, 809, 810, 7, 75, 2, 2, 810, 811, 7, 85, 2, 2, 811, 812, 7, 86, 2, 2, 812, 813, 7, 85, 2, 2, 813, 56, 3, 2, 2, 2, 814, 815, 7, 68, 2, 2, 815, 816, 7, 71, 2, 2, 816, 817, 7, 86, 2, 2, 817, 818, 7, 89, 2, 2, 818, 819, 7, 71, 2, 2, 819, 820, 7, 71, 2, 2, 820, 821, 7, 80, 2, 2, 821, 58, 3, 2, 2, 2, 822, 823, 7, 78, 2, 2, 823, 824, 7, 75, 2, 2, 824, 825, 7, 77, 2, 2, 825, 826, 7, 71, 2, 2, 826, 60, 3, 2, 2, 2, 827, 828, 7, 84, 2, 2, 828, 829, 7, 78, 2, 2, 829, 830, 7, 75, 2, 2, 830, 831, 7, 77, 2, 2, 831, 832, 7, 71, 2, 2, 832, 62, 3, 2, 2, 2, 833, 834, 7, 75, 2, 2, 834, 835, 7, 85, 2, 2, 835, 64, 3, 2, 2, 2, 836, 837, 7, 86, 2, 2, 837, 838, 7, 84, 2, 2, 838, 839, 7, 87, 2, 2, 839, 840, 7, 71, 2, 2, 840, 66, 3, 2, 2, 2, 841, 842, 7, 72, 2, 2, 842, 843, 7, 67, 2, 2, 843, 844, 7, 78, 2, 2, 844, 845, 7, 85, 2, 2, 845, 846, 7, 71, 2, 2, 846, 68, 3, 2, 2, 2, 847, 848, 7, 80, 2, 2, 848, 849, 7, 87, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 78, 2, 2, 851, 852, 7, 85, 2, 2, 852, 70, 3, 2, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 85, 2, 2, 855, 856, 7, 69, 2, 2, 856, 72, 3, 2, 2, 2, 857, 858, 7, 70, 2, 2, 858, 859, 7, 71, 2, 2, 859, 860, 7, 85, 2, 2, 860, 861, 7, 69, 2, 2, 861, 74, 3, 2, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 81, 2, 2, 864, 865, 7, 84, 2, 2, 865, 76, 3, 2, 2, 2, 866, 867, 7, 75, 2, 2, 867, 868, 7, 80, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 71, 2, 2, 870, 871, 7, 84, 2, 2, 871, 872, 7, 88, 2, 2, 872, 873, 7, 67, 2, 2, 873, 874, 7, 78, 2, 2, 874, 78, 3, 2, 2, 2, 875, 876, 7, 69, 2, 2, 876, 877, 7, 67, 2, 2, 877, 878, 7, 85, 2, 2, 878, 879, 7, 71, 2, 2, 879, 80, 3, 2, 2, 2, 880, 881, 7, 89, 2, 2, 881, 882, 7, 74, 2, 2, 882, 883, 7, 71, 2, 2, 883, 884, 7, 80, 2, 2, 884, 82, 3, 2, 2, 2, 885, 886, 7, 86, 2, 2, 886, 887, 7, 74, 2, 2, 887, 888, 7, 71, 2, 2, 888, 889, 7, 80, 2, 2, 889, 84, 3, 2, 2, 2, 890, 891, 7, 71, 2, 2, 891, 892, 7, 78, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 71, 2, 2, 894, 86, 3, 2, 2, 2, 895, 896, 7, 71, 2, 2, 896, 897, 7, 80, 2, 2, 897, 898, 7, 70, 2, 2, 898, 88, 3, 2, 2, 2, 899, 900, 7, 76, 2, 2, 900, 901, 7, 81, 2, 2, 901, 902, 7, 75, 2, 2, 902, 903, 7, 80, 2, 2, 903, 90, 3, 2, 2, 2, 904, 905, 7, 69, 2, 2, 905, 906, 7, 84, 2, 2, 906, 907, 7, 81, 2, 2, 907, 908, 7, 85, 2, 2, 908, 909, 7, 85, 2, 2, 909, 92, 3, 2, 2, 2, 910, 911, 7, 81, 2, 2, 911, 912, 7, 87, 2, 2, 912, 913, 7, 86, 2, 2, 913, 914, 7, 71, 2, 2, 914, 915, 7, 84, 2, 2, 915, 94, 3, 2, 2, 2, 916, 917, 7, 75, 2, 2, 917, 918, 7, 80, 2, 2, 918, 919, 7, 80, 2, 2, 919, 920, 7, 71, 2, 2, 920, 921, 7, 84, 2, 2, 921, 96, 3, 2, 2, 2, 922, 923, 7, 78, 2, 2, 923, 924, 7, 71, 2, 2, 924, 925, 7, 72, 2, 2, 925, 926, 7, 86, 2, 2, 926, 98, 3, 2, 2, 2, 927, 928, 7, 85, 2, 2, 928, 929, 7, 71, 2, 2, 929, 930, 7, 79, 2, 2, 930, 931, 7, 75, 2, 2, 931, 100, 3, 2, 2, 2, 932, 933, 7, 84, 2, 2, 933, 934, 7, 75, 2, 2, 934, 935, 7, 73, 2, 2, 935, 936, 7, 74, 2, 2, 936, 937, 7, 86, 2, 2, 937, 102, 3, 2, 2, 2, 938, 939, 7, 72, 2, 2, 939, 940, 7, 87, 2, 2, 940, 941, 7, 78, 2, 2, 941, 942, 7, 78, 2, 2, 942, 104, 3, 2, 2, 2, 943, 944, 7, 80, 2, 2, 944, 945, 7, 67, 2, 2, 945, 946, 7, 86, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 84, 2, 2, 948, 949, 7, 67, 2, 2, 949, 950, 7, 78, 2, 2, 950, 106, 3, 2, 2, 2, 951, 952, 7, 81, 2, 2, 952, 953, 7, 80, 2, 2, 953, 108, 3, 2, 2, 2, 954, 955, 7, 82, 2, 2, 955, 956, 7, 75, 2, 2, 956, 957, 7, 88, 2, 2, 957, 958, 7, 81, 2, 2, 958, 959, 7, 86, 2, 2, 959, 110, 3, 2, 2, 2, 960, 961, 7, 78, 2, 2, 961, 962, 7, 67, 2, 2, 962, 963, 7, 86, 2, 2, 963, 964, 7, 71, 2, 2, 964, 965, 7, 84, 2, 2, 965, 966, 7, 67, 2, 2, 966, 967, 7, 78, 2, 2, 967, 112, 3, 2, 2, 2, 968, 969, 7, 89, 2, 2, 969, 970, 7, 75, 2, 2, 970, 971, 7, 80, 2, 2, 971, 972, 7, 70, 2, 2, 972, 973, 7, 81, 2, 2, 973, 974, 7, 89, 2, 2, 974, 114, 3, 2, 2, 2, 975, 976, 7, 81, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 71, 2, 2, 978, 979, 7, 84, 2, 2, 979, 116, 3, 2, 2, 2, 980, 981, 7, 82, 2, 2, 981, 982, 7, 67, 2, 2, 982, 983, 7, 84, 2, 2, 983, 984, 7, 86, 2, 2, 984, 985, 7, 75, 2, 2, 985, 986, 7, 86, 2, 2, 986, 987, 7, 75, 2, 2, 987, 988, 7, 81, 2, 2, 988, 989, 7, 80, 2, 2, 989, 118, 3, 2, 2, 2, 990, 991, 7, 84, 2, 2, 991, 992, 7, 67, 2, 2, 992, 993, 7, 80, 2, 2, 993, 994, 7, 73, 2, 2, 994, 995, 7, 71, 2, 2, 995, 120, 3, 2, 2, 2, 996, 997, 7, 84, 2, 2, 997, 998, 7, 81, 2, 2, 998, 999, 7, 89, 2, 2, 999, 1000, 7, 85, 2, 2, 1000, 122, 3, 2, 2, 2, 1001, 1002, 7, 87, 2, 2, 1002, 1003, 7, 80, 2, 2, 1003, 1004, 7, 68, 2, 2, 1004, 1005, 7, 81, 2, 2, 1005, 1006, 7, 87, 2, 2, 1006, 1007, 7, 80, 2, 2, 1007, 1008, 7, 70, 2, 2, 1008, 1009, 7, 71, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 124, 3, 2, 2, 2, 1011, 1012, 7, 82, 2, 2, 1012, 1013, 7, 84, 2, 2, 1013, 1014, 7, 71, 2, 2, 1014, 1015, 7, 69, 2, 2, 1015, 1016, 7, 71, 2, 2, 1016, 1017, 7, 70, 2, 2, 1017, 1018, 7, 75, 2, 2, 1018, 1019, 7, 80, 2, 2, 1019, 1020, 7, 73, 2, 2, 1020, 126, 3, 2, 2, 2, 1021, 1022, 7, 72, 2, 2, 1022, 1023, 7, 81, 2, 2, 1023, 1024, 7, 78, 2, 2, 1024, 1025, 7, 78, 2, 2, 1025, 1026, 7, 81, 2, 2, 1026, 1027, 7, 89, 2, 2, 1027, 1028, 7, 75, 2, 2, 1028, 1029, 7, 80, 2, 2, 1029, 1030, 7, 73, 2, 2, 1030, 128, 3, 2, 2, 2, 1031, 1032, 7, 69, 2, 2, 1032, 1033, 7, 87, 2, 2, 1033, 1034, 7, 84, 2, 2, 1034, 1035, 7, 84, 2, 2, 1035, 1036, 7, 71, 2, 2, 1036, 1037, 7, 80, 2, 2, 1037, 1038, 7, 86, 2, 2, 1038, 130, 3, 2, 2, 2, 1039, 1040, 7, 72, 2, 2, 1040, 1041, 7, 75, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 85, 2, 2, 1043, 1044, 7, 86, 2, 2, 1044, 132, 3, 2, 2, 2, 1045, 1046, 7, 67, 2, 2, 1046, 1047, 7, 72, 2, 2, 1047, 1048, 7, 86, 2, 2, 1048, 1049, 7, 71, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 78, 2, 2, 1052, 1053, 7, 67, 2, 2, 1053, 1054, 7, 85, 2, 2, 1054, 1055, 7, 86, 2, 2, 1055, 136, 3, 2, 2, 2, 1056, 1057, 7, 89, 2, 2, 1057, 1058, 7, 75, 2, 2, 1058, 1059, 7, 86, 2, 2, 1059, 1060, 7, 74, 2, 2, 1060, 138, 3, 2, 2, 2, 1061, 1062, 7, 88, 2, 2, 1062, 1063, 7, 67, 2, 2, 1063, 1064, 7, 78, 2, 2, 1064, 1065, 7, 87, 2, 2, 1065, 1066, 7, 71, 2, 2, 1066, 1067, 7, 85, 2, 2, 1067, 140, 3, 2, 2, 2, 1068, 1069, 7, 69, 2, 2, 1069, 1070, 7, 84, 2, 2, 1070, 1071, 7, 71, 2, 2, 1071, 1072, 7, 67, 2, 2, 1072, 1073, 7, 86, 2, 2, 1073, 1074, 7, 71, 2, 2, 1074, 142, 3, 2, 2, 2, 1075, 1076, 7, 86, 2, 2, 1076, 1077, 7, 67, 2, 2, 1077, 1078, 7, 68, 2, 2, 1078, 1079, 7, 78, 2, 2, 1079, 1080, 7, 71, 2, 2, 1080, 144, 3, 2, 2, 2, 1081, 1082, 7, 70, 2, 2, 1082, 1083, 7, 75, 2, 2, 1083, 1084, 7, 84, 2, 2, 1084, 1085, 7, 71, 2, 2, 1085, 1086, 7, 69, 2, 2, 1086, 1087, 7, 86, 2, 2, 1087, 1088, 7, 81, 2, 2, 1088, 1089, 7, 84, 2, 2, 1089, 1090, 7, 91, 2, 2, 1090, 146, 3, 2, 2, 2, 1091, 1092, 7, 88, 2, 2, 1092, 1093, 7, 75, 2, 2, 1093, 1094, 7, 71, 2, 2, 1094, 1095, 7, 89, 2, 2, 1095, 148, 3, 2, 2, 2, 1096, 1097, 7, 84, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 82, 2, 2, 1099, 1100, 7, 78, 2, 2, 1100, 1101, 7, 67, 2, 2, 1101, 1102, 7, 69, 2, 2, 1102, 1103, 7, 71, 2, 2, 1103, 150, 3, 2, 2, 2, 1104, 1105, 7, 75, 2, 2, 1105, 1106, 7, 80, 2, 2, 1106, 1107, 7, 85, 2, 2, 1107, 1108, 7, 71, 2, 2, 1108, 1109, 7, 84, 2, 2, 1109, 1110, 7, 86, 2, 2, 1110, 152, 3, 2, 2, 2, 1111, 1112, 7, 70, 2, 2, 1112, 1113, 7, 71, 2, 2, 1113, 1114, 7, 78, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 86, 2, 2, 1116, 1117, 7, 71, 2, 2, 1117, 154, 3, 2, 2, 2, 1118, 1119, 7, 75, 2, 2, 1119, 1120, 7, 80, 2, 2, 1120, 1121, 7, 86, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 156, 3, 2, 2, 2, 1123, 1124, 7, 70, 2, 2, 1124, 1125, 7, 71, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 69, 2, 2, 1127, 1128, 7, 84, 2, 2, 1128, 1129, 7, 75, 2, 2, 1129, 1130, 7, 68, 2, 2, 1130, 1131, 7, 71, 2, 2, 1131, 158, 3, 2, 2, 2, 1132, 1133, 7, 71, 2, 2, 1133, 1134, 7, 90, 2, 2, 1134, 1135, 7, 82, 2, 2, 1135, 1136, 7, 78, 2, 2, 1136, 1137, 7, 67, 2, 2, 1137, 1138, 7, 75, 2, 2, 1138, 1139, 7, 80, 2, 2, 1139, 160, 3, 2, 2, 2, 1140, 1141, 7, 72, 2, 2, 1141, 1142, 7, 81, 2, 2, 1142, 1143, 7, 84, 2, 2, 1143, 1144, 7, 79, 2, 2, 1144, 1145, 7, 67, 2, 2, 1145, 1146, 7, 86, 2, 2, 1146, 162, 3, 2, 2, 2, 1147, 1148, 7, 78, 2, 2, 1148, 1149, 7, 81, 2, 2, 1149, 1150, 7, 73, 2, 2, 1150, 1151, 7, 75, 2, 2, 1151, 1152, 7, 69, 2, 2, 1152, 1153, 7, 67, 2, 2, 1153, 1154, 7, 78, 2, 2, 1154, 164, 3, 2, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 70, 2, 2, 1158, 1159, 7, 71, 2, 2, 1159, 1160, 7, 73, 2, 2, 1160, 1161, 7, 71, 2, 2, 1161, 1162, 7, 80, 2, 2, 1162, 166, 3, 2, 2, 2, 1163, 1164, 7, 69, 2, 2, 1164, 1165, 7, 81, 2, 2, 1165, 1166, 7, 85, 2, 2, 1166, 1167, 7, 86, 2, 2, 1167, 168, 3, 2, 2, 2, 1168, 1169, 7, 69, 2, 2, 1169, 1170, 7, 67, 2, 2, 1170, 1171, 7, 85, 2, 2, 1171, 1172, 7, 86, 2, 2, 1172, 170, 3, 2, 2, 2, 1173, 1174, 7, 85, 2, 2, 1174, 1175, 7, 74, 2, 2, 1175, 1176, 7, 81, 2, 2, 1176, 1177, 7, 89, 2, 2, 1177, 172, 3, 2, 2, 2, 1178, 1179, 7, 86, 2, 2, 1179, 1180, 7, 67, 2, 2, 1180, 1181, 7, 68, 2, 2, 1181, 1182, 7, 78, 2, 2, 1182, 1183, 7, 71, 2, 2, 1183, 1184, 7, 85, 2, 2, 1184, 174, 3, 2, 2, 2, 1185, 1186, 7, 69, 2, 2, 1186, 1187, 7, 81, 2, 2, 1187, 1188, 7, 78, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 79, 2, 2, 1190, 1191, 7, 80, 2, 2, 1191, 1192, 7, 85, 2, 2, 1192, 176, 3, 2, 2, 2, 1193, 1194, 7, 69, 2, 2, 1194, 1195, 7, 81, 2, 2, 1195, 1196, 7, 78, 2, 2, 1196, 1197, 7, 87, 2, 2, 1197, 1198, 7, 79, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 178, 3, 2, 2, 2, 1200, 1201, 7, 87, 2, 2, 1201, 1202, 7, 85, 2, 2, 1202, 1203, 7, 71, 2, 2, 1203, 180, 3, 2, 2, 2, 1204, 1205, 7, 82, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 84, 2, 2, 1207, 1208, 7, 86, 2, 2, 1208, 1209, 7, 75, 2, 2, 1209, 1210, 7, 86, 2, 2, 1210, 1211, 7, 75, 2, 2, 1211, 1212, 7, 81, 2, 2, 1212, 1213, 7, 80, 2, 2, 1213, 1214, 7, 85, 2, 2, 1214, 182, 3, 2, 2, 2, 1215, 1216, 7, 72, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 80, 2, 2, 1218, 1219, 7, 69, 2, 2, 1219, 1220, 7, 86, 2, 2, 1220, 1221, 7, 75, 2, 2, 1221, 1222, 7, 81, 2, 2, 1222, 1223, 7, 80, 2, 2, 1223, 1224, 7, 85, 2, 2, 1224, 184, 3, 2, 2, 2, 1225, 1226, 7, 70, 2, 2, 1226, 1227, 7, 84, 2, 2, 1227, 1228, 7, 81, 2, 2, 1228, 1229, 7, 82, 2, 2, 1229, 186, 3, 2, 2, 2, 1230, 1231, 7, 87, 2, 2, 1231, 1232, 7, 80, 2, 2, 1232, 1233, 7, 75, 2, 2, 1233, 1234, 7, 81, 2, 2, 1234, 1235, 7, 80, 2, 2, 1235, 188, 3, 2, 2, 2, 1236, 1237, 7, 71, 2, 2, 1237, 1238, 7, 90, 2, 2, 1238, 1239, 7, 69, 2, 2, 1239, 1240, 7, 71, 2, 2, 1240, 1241, 7, 82, 2, 2, 1241, 1242, 7, 86, 2, 2, 1242, 190, 3, 2, 2, 2, 1243, 1244, 7, 85, 2, 2, 1244, 1245, 7, 71, 2, 2, 1245, 1246, 7, 86, 2, 2, 1246, 1247, 7, 79, 2, 2, 1247, 1248, 7, 75, 2, 2, 1248, 1249, 7, 80, 2, 2, 1249, 1250, 7, 87, 2, 2, 1250, 1251, 7, 85, 2, 2, 1251, 192, 3, 2, 2, 2, 1252, 1253, 7, 75, 2, 2, 1253, 1254, 7, 80, 2, 2, 1254, 1255, 7, 86, 2, 2, 1255, 1256, 7, 71, 2, 2, 1256, 1257, 7, 84, 2, 2, 1257, 1258, 7, 85, 2, 2, 1258, 1259, 7, 71, 2, 2, 1259, 1260, 7, 69, 2, 2, 1260, 1261, 7, 86, 2, 2, 1261, 194, 3, 2, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 81, 2, 2, 1264, 196, 3, 2, 2, 2, 1265, 1266, 7, 86, 2, 2, 1266, 1267, 7, 67, 2, 2, 1267, 1268, 7, 68, 2, 2, 1268, 1269, 7, 78, 2, 2, 1269, 1270, 7, 71, 2, 2, 1270, 1271, 7, 85, 2, 2, 1271, 1272, 7, 67, 2, 2, 1272, 1273, 7, 79, 2, 2, 1273, 1274, 7, 82, 2, 2, 1274, 1275, 7, 78, 2, 2, 1275, 1276, 7, 71, 2, 2, 1276, 198, 3, 2, 2, 2, 1277, 1278, 7, 85, 2, 2, 1278, 1279, 7, 86, 2, 2, 1279, 1280, 7, 84, 2, 2, 1280, 1281, 7, 67, 2, 2, 1281, 1282, 7, 86, 2, 2, 1282, 1283, 7, 75, 2, 2, 1283, 1284, 7, 72, 2, 2, 1284, 1285, 7, 91, 2, 2, 1285, 200, 3, 2, 2, 2, 1286, 1287, 7, 67, 2, 2, 1287, 1288, 7, 78, 2, 2, 1288, 1289, 7, 86, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 1291, 7, 84, 2, 2, 1291, 202, 3, 2, 2, 2, 1292, 1293, 7, 84, 2, 2, 1293, 1294, 7, 71, 2, 2, 1294, 1295, 7, 80, 2, 2, 1295, 1296, 7, 67, 2, 2, 1296, 1297, 7, 79, 2, 2, 1297, 1298, 7, 71, 2, 2, 1298, 204, 3, 2, 2, 2, 1299, 1300, 7, 85, 2, 2, 1300, 1301, 7, 86, 2, 2, 1301, 1302, 7, 84, 2, 2, 1302, 1303, 7, 87, 2, 2, 1303, 1304, 7, 69, 2, 2, 1304, 1305, 7, 86, 2, 2, 1305, 206, 3, 2, 2, 2, 1306, 1307, 7, 69, 2, 2, 1307, 1308, 7, 81, 2, 2, 1308, 1309, 7, 79, 2, 2, 1309, 1310, 7, 79, 2, 2, 1310, 1311, 7, 71, 2, 2, 1311, 1312, 7, 80, 2, 2, 1312, 1313, 7, 86, 2, 2, 1313, 208, 3, 2, 2, 2, 1314, 1315, 7, 85, 2, 2, 1315, 1316, 7, 71, 2, 2, 1316, 1317, 7, 86, 2, 2, 1317, 210, 3, 2, 2, 2, 1318, 1319, 7, 84, 2, 2, 1319, 1320, 7, 71, 2, 2, 1320, 1321, 7, 85, 2, 2, 1321, 1322, 7, 71, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 212, 3, 2, 2, 2, 1324, 1325, 7, 70, 2, 2, 1325, 1326, 7, 67, 2, 2, 1326, 1327, 7, 86, 2, 2, 1327, 1328, 7, 67, 2, 2, 1328, 214, 3, 2, 2, 2, 1329, 1330, 7, 85, 2, 2, 1330, 1331, 7, 86, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 84, 2, 2, 1333, 1334, 7, 86, 2, 2, 1334, 216, 3, 2, 2, 2, 1335, 1336, 7, 86, 2, 2, 1336, 1337, 7, 84, 2, 2, 1337, 1338, 7, 67, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 85, 2, 2, 1340, 1341, 7, 67, 2, 2, 1341, 1342, 7, 69, 2, 2, 1342, 1343, 7, 86, 2, 2, 1343, 1344, 7, 75, 2, 2, 1344, 1345, 7, 81, 2, 2, 1345, 1346, 7, 80, 2, 2, 1346, 218, 3, 2, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 81, 2, 2, 1349, 1350, 7, 79, 2, 2, 1350, 1351, 7, 79, 2, 2, 1351, 1352, 7, 75, 2, 2, 1352, 1353, 7, 86, 2, 2, 1353, 220, 3, 2, 2, 2, 1354, 1355, 7, 84, 2, 2, 1355, 1356, 7, 81, 2, 2, 1356, 1357, 7, 78, 2, 2, 1357, 1358, 7, 78, 2, 2, 1358, 1359, 7, 68, 2, 2, 1359, 1360, 7, 67, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 1362, 7, 77, 2, 2, 1362, 222, 3, 2, 2, 2, 1363, 1364, 7, 79, 2, 2, 1364, 1365, 7, 67, 2, 2, 1365, 1366, 7, 69, 2, 2, 1366, 1367, 7, 84, 2, 2, 1367, 1368, 7, 81, 2, 2, 1368, 224, 3, 2, 2, 2, 1369, 1370, 7, 75, 2, 2, 1370, 1371, 7, 73, 2, 2, 1371, 1372, 7, 80, 2, 2, 1372, 1373, 7, 81, 2, 2, 1373, 1374, 7, 84, 2, 2, 1374, 1375, 7, 71, 2, 2, 1375, 226, 3, 2, 2, 2, 1376, 1377, 7, 68, 2, 2, 1377, 1378, 7, 81, 2, 2, 1378, 1379, 7, 86, 2, 2, 1379, 1380, 7, 74, 2, 2, 1380, 228, 3, 2, 2, 2, 1381, 1382, 7, 78, 2, 2, 1382, 1383, 7, 71, 2, 2, 1383, 1384, 7, 67, 2, 2, 1384, 1385, 7, 70, 2, 2, 1385, 1386, 7, 75, 2, 2, 1386, 1387, 7, 80, 2, 2, 1387, 1388, 7, 73, 2, 2, 1388, 230, 3, 2, 2, 2, 1389, 1390, 7, 86, 2, 2, 1390, 1391, 7, 84, 2, 2, 1391, 1392, 7, 67, 2, 2, 1392, 1393, 7, 75, 2, 2, 1393, 1394, 7, 78, 2, 2, 1394, 1395, 7, 75, 2, 2, 1395, 1396, 7, 80, 2, 2, 1396, 1397, 7, 73, 2, 2, 1397, 232, 3, 2, 2, 2, 1398, 1399, 7, 75, 2, 2, 1399, 1400, 7, 72, 2, 2, 1400, 234, 3, 2, 2, 2, 1401, 1402, 7, 82, 2, 2, 1402, 1403, 7, 81, 2, 2, 1403, 1404, 7, 85, 2, 2, 1404, 1405, 7, 75, 2, 2, 1405, 1406, 7, 86, 2, 2, 1406, 1407, 7, 75, 2, 2, 1407, 1408, 7, 81, 2, 2, 1408, 1409, 7, 80, 2, 2, 1409, 236, 3, 2, 2, 2, 1410, 1411, 7, 71, 2, 2, 1411, 1412, 7, 90, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 84, 2, 2, 1414, 1415, 7, 67, 2, 2, 1415, 1416, 7, 69, 2, 2, 1416, 1417, 7, 86, 2, 2, 1417, 238, 3, 2, 2, 2, 1418, 1419, 7, 71, 2, 2, 1419, 1420, 7, 83, 2, 2, 1420, 240, 3, 2, 2, 2, 1421, 1422, 7, 80, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 71, 2, 2, 1424, 1425, 7, 83, 2, 2, 1425, 242, 3, 2, 2, 2, 1426, 1427, 7, 80, 2, 2, 1427, 1428, 7, 71, 2, 2, 1428, 1429, 7, 83, 2, 2, 1429, 244, 3, 2, 2, 2, 1430, 1431, 7, 80, 2, 2, 1431, 1432, 7, 71, 2, 2, 1432, 1433, 7, 83, 2, 2, 1433, 1434, 7, 76, 2, 2, 1434, 246, 3, 2, 2, 2, 1435, 1436, 7, 78, 2, 2, 1436, 1437, 7, 86, 2, 2, 1437, 248, 3, 2, 2, 2, 1438, 1439, 7, 78, 2, 2, 1439, 1440, 7, 86, 2, 2, 1440, 1441, 7, 71, 2, 2, 1441, 250, 3, 2, 2, 2, 1442, 1443, 7, 73, 2, 2, 1443, 1444, 7, 86, 2, 2, 1444, 252, 3, 2, 2, 2, 1445, 1446, 7, 73, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 71, 2, 2, 1448, 254, 3, 2, 2, 2, 1449, 1450, 7, 82, 2, 2, 1450, 1451, 7, 78, 2, 2, 1451, 1452, 7, 87, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 256, 3, 2, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 75, 2, 2, 1456, 1457, 7, 80, 2, 2, 1457, 1458, 7, 87, 2, 2, 1458, 1459, 7, 85, 2, 2, 1459, 258, 3, 2, 2, 2, 1460, 1461, 7, 67, 2, 2, 1461, 1462, 7, 85, 2, 2, 1462, 1463, 7, 86, 2, 2, 1463, 1464, 7, 71, 2, 2, 1464, 1465, 7, 84, 2, 2, 1465, 1466, 7, 75, 2, 2, 1466, 1467, 7, 85, 2, 2, 1467, 1468, 7, 77, 2, 2, 1468, 260, 3, 2, 2, 2, 1469, 1470, 7, 85, 2, 2, 1470, 1471, 7, 78, 2, 2, 1471, 1472, 7, 67, 2, 2, 1472, 1473, 7, 85, 2, 2, 1473, 1474, 7, 74, 2, 2, 1474, 262, 3, 2, 2, 2, 1475, 1476, 7, 82, 2, 2, 1476, 1477, 7, 71, 2, 2, 1477, 1478, 7, 84, 2, 2, 1478, 1479, 7, 69, 2, 2, 1479, 1480, 7, 71, 2, 2, 1480, 1481, 7, 80, 2, 2, 1481, 1482, 7, 86, 2, 2, 1482, 264, 3, 2, 2, 2, 1483, 1484, 7, 70, 2, 2, 1484, 1485, 7, 75, 2, 2, 1485, 1486, 7, 88, 2, 2, 1486, 266, 3, 2, 2, 2, 1487, 1488, 7, 86, 2, 2, 1488, 1489, 7, 75, 2, 2, 1489, 1490, 7, 78, 2, 2, 1490, 1491, 7, 70, 2, 2, 1491, 1492, 7, 71, 2, 2, 1492, 268, 3, 2, 2, 2, 1493, 1494, 7, 67, 2, 2, 1494, 1495, 7, 79, 2, 2, 1495, 1496, 7, 82, 2, 2, 1496, 1497, 7, 71, 2, 2, 1497, 1498, 7, 84, 2, 2, 1498, 1499, 7, 85, 2, 2, 1499, 1500, 7, 67, 2, 2, 1500, 1501, 7, 80, 2, 2, 1501, 1502, 7, 70, 2, 2, 1502, 270, 3, 2, 2, 2, 1503, 1504, 7, 82, 2, 2, 1504, 1505, 7, 75, 2, 2, 1505, 1506, 7, 82, 2, 2, 1506, 1507, 7, 71, 2, 2, 1507, 272, 3, 2, 2, 2, 1508, 1509, 7, 69, 2, 2, 1509, 1510, 7, 81, 2, 2, 1510, 1511, 7, 80, 2, 2, 1511, 1512, 7, 69, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 86, 2, 2, 1514, 1515, 7, 97, 2, 2, 1515, 1516, 7, 82, 2, 2, 1516, 1517, 7, 75, 2, 2, 1517, 1518, 7, 82, 2, 2, 1518, 1519, 7, 71, 2, 2, 1519, 274, 3, 2, 2, 2, 1520, 1521, 7, 74, 2, 2, 1521, 1522, 7, 67, 2, 2, 1522, 1523, 7, 86, 2, 2, 1523, 276, 3, 2, 2, 2, 1524, 1525, 7, 82, 2, 2, 1525, 1526, 7, 71, 2, 2, 1526, 1527, 7, 84, 2, 2, 1527, 1528, 7, 69, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 80, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 1532, 7, 78, 2, 2, 1532, 1533, 7, 75, 2, 2, 1533, 1534, 7, 86, 2, 2, 1534, 278, 3, 2, 2, 2, 1535, 1536, 7, 68, 2, 2, 1536, 1537, 7, 87, 2, 2, 1537, 1538, 7, 69, 2, 2, 1538, 1539, 7, 77, 2, 2, 1539, 1540, 7, 71, 2, 2, 1540, 1541, 7, 86, 2, 2, 1541, 280, 3, 2, 2, 2, 1542, 1543, 7, 81, 2, 2, 1543, 1544, 7, 87, 2, 2, 1544, 1545, 7, 86, 2, 2, 1545, 282, 3, 2, 2, 2, 1546, 1547, 7, 81, 2, 2, 1547, 1548, 7, 72, 2, 2, 1548, 284, 3, 2, 2, 2, 1549, 1550, 7, 85, 2, 2, 1550, 1551, 7, 81, 2, 2, 1551, 1552, 7, 84, 2, 2, 1552, 1553, 7, 86, 2, 2, 1553, 286, 3, 2, 2, 2, 1554, 1555, 7, 69, 2, 2, 1555, 1556, 7, 78, 2, 2, 1556, 1557, 7, 87, 2, 2, 1557, 1558, 7, 85, 2, 2, 1558, 1559, 7, 86, 2, 2, 1559, 1560, 7, 71, 2, 2, 1560, 1561, 7, 84, 2, 2, 1561, 288, 3, 2, 2, 2, 1562, 1563, 7, 70, 2, 2, 1563, 1564, 7, 75, 2, 2, 1564, 1565, 7, 85, 2, 2, 1565, 1566, 7, 86, 2, 2, 1566, 1567, 7, 84, 2, 2, 1567, 1568, 7, 75, 2, 2, 1568, 1569, 7, 68, 2, 2, 1569, 1570, 7, 87, 2, 2, 1570, 1571, 7, 86, 2, 2, 1571, 1572, 7, 71, 2, 2, 1572, 290, 3, 2, 2, 2, 1573, 1574, 7, 81, 2, 2, 1574, 1575, 7, 88, 2, 2, 1575, 1576, 7, 71, 2, 2, 1576, 1577, 7, 84, 2, 2, 1577, 1578, 7, 89, 2, 2, 1578, 1579, 7, 84, 2, 2, 1579, 1580, 7, 75, 2, 2, 1580, 1581, 7, 86, 2, 2, 1581, 1582, 7, 71, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 86, 2, 2, 1584, 1585, 7, 84, 2, 2, 1585, 1586, 7, 67, 2, 2, 1586, 1587, 7, 80, 2, 2, 1587, 1588, 7, 85, 2, 2, 1588, 1589, 7, 72, 2, 2, 1589, 1590, 7, 81, 2, 2, 1590, 1591, 7, 84, 2, 2, 1591, 1592, 7, 79, 2, 2, 1592, 294, 3, 2, 2, 2, 1593, 1594, 7, 84, 2, 2, 1594, 1595, 7, 71, 2, 2, 1595, 1596, 7, 70, 2, 2, 1596, 1597, 7, 87, 2, 2, 1597, 1598, 7, 69, 2, 2, 1598, 1599, 7, 71, 2, 2, 1599, 296, 3, 2, 2, 2, 1600, 1601, 7, 87, 2, 2, 1601, 1602, 7, 85, 2, 2, 1602, 1603, 7, 75, 2, 2, 1603, 1604, 7, 80, 2, 2, 1604, 1605, 7, 73, 2, 2, 1605, 298, 3, 2, 2, 2, 1606, 1607, 7, 85, 2, 2, 1607, 1608, 7, 71, 2, 2, 1608, 1609, 7, 84, 2, 2, 1609, 1610, 7, 70, 2, 2, 1610, 1611, 7, 71, 2, 2, 1611, 300, 3, 2, 2, 2, 1612, 1613, 7, 85, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 84, 2, 2, 1615, 1616, 7, 70, 2, 2, 1616, 1617, 7, 71, 2, 2, 1617, 1618, 7, 82, 2, 2, 1618, 1619, 7, 84, 2, 2, 1619, 1620, 7, 81, 2, 2, 1620, 1621, 7, 82, 2, 2, 1621, 1622, 7, 71, 2, 2, 1622, 1623, 7, 84, 2, 2, 1623, 1624, 7, 86, 2, 2, 1624, 1625, 7, 75, 2, 2, 1625, 1626, 7, 71, 2, 2, 1626, 1627, 7, 85, 2, 2, 1627, 302, 3, 2, 2, 2, 1628, 1629, 7, 84, 2, 2, 1629, 1630, 7, 71, 2, 2, 1630, 1631, 7, 69, 2, 2, 1631, 1632, 7, 81, 2, 2, 1632, 1633, 7, 84, 2, 2, 1633, 1634, 7, 70, 2, 2, 1634, 1635, 7, 84, 2, 2, 1635, 1636, 7, 71, 2, 2, 1636, 1637, 7, 67, 2, 2, 1637, 1638, 7, 70, 2, 2, 1638, 1639, 7, 71, 2, 2, 1639, 1640, 7, 84, 2, 2, 1640, 304, 3, 2, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 1643, 7, 71, 2, 2, 1643, 1644, 7, 69, 2, 2, 1644, 1645, 7, 81, 2, 2, 1645, 1646, 7, 84, 2, 2, 1646, 1647, 7, 70, 2, 2, 1647, 1648, 7, 89, 2, 2, 1648, 1649, 7, 84, 2, 2, 1649, 1650, 7, 75, 2, 2, 1650, 1651, 7, 86, 2, 2, 1651, 1652, 7, 71, 2, 2, 1652, 1653, 7, 84, 2, 2, 1653, 306, 3, 2, 2, 2, 1654, 1655, 7, 70, 2, 2, 1655, 1656, 7, 71, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 75, 2, 2, 1658, 1659, 7, 79, 2, 2, 1659, 1660, 7, 75, 2, 2, 1660, 1661, 7, 86, 2, 2, 1661, 1662, 7, 71, 2, 2, 1662, 1663, 7, 70, 2, 2, 1663, 308, 3, 2, 2, 2, 1664, 1665, 7, 72, 2, 2, 1665, 1666, 7, 75, 2, 2, 1666, 1667, 7, 71, 2, 2, 1667, 1668, 7, 78, 2, 2, 1668, 1669, 7, 70, 2, 2, 1669, 1670, 7, 85, 2, 2, 1670, 310, 3, 2, 2, 2, 1671, 1672, 7, 86, 2, 2, 1672, 1673, 7, 71, 2, 2, 1673, 1674, 7, 84, 2, 2, 1674, 1675, 7, 79, 2, 2, 1675, 1676, 7, 75, 2, 2, 1676, 1677, 7, 80, 2, 2, 1677, 1678, 7, 67, 2, 2, 1678, 1679, 7, 86, 2, 2, 1679, 1680, 7, 71, 2, 2, 1680, 1681, 7, 70, 2, 2, 1681, 312, 3, 2, 2, 2, 1682, 1683, 7, 69, 2, 2, 1683, 1684, 7, 81, 2, 2, 1684, 1685, 7, 78, 2, 2, 1685, 1686, 7, 78, 2, 2, 1686, 1687, 7, 71, 2, 2, 1687, 1688, 7, 69, 2, 2, 1688, 1689, 7, 86, 2, 2, 1689, 1690, 7, 75, 2, 2, 1690, 1691, 7, 81, 2, 2, 1691, 1692, 7, 80, 2, 2, 1692, 314, 3, 2, 2, 2, 1693, 1694, 7, 75, 2, 2, 1694, 1695, 7, 86, 2, 2, 1695, 1696, 7, 71, 2, 2, 1696, 1697, 7, 79, 2, 2, 1697, 1698, 7, 85, 2, 2, 1698, 316, 3, 2, 2, 2, 1699, 1700, 7, 77, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 91, 2, 2, 1702, 1703, 7, 85, 2, 2, 1703, 318, 3, 2, 2, 2, 1704, 1705, 7, 71, 2, 2, 1705, 1706, 7, 85, 2, 2, 1706, 1707, 7, 69, 2, 2, 1707, 1708, 7, 67, 2, 2, 1708, 1709, 7, 82, 2, 2, 1709, 1710, 7, 71, 2, 2, 1710, 1711, 7, 70, 2, 2, 1711, 320, 3, 2, 2, 2, 1712, 1713, 7, 78, 2, 2, 1713, 1714, 7, 75, 2, 2, 1714, 1715, 7, 80, 2, 2, 1715, 1716, 7, 71, 2, 2, 1716, 1717, 7, 85, 2, 2, 1717, 322, 3, 2, 2, 2, 1718, 1719, 7, 85, 2, 2, 1719, 1720, 7, 71, 2, 2, 1720, 1721, 7, 82, 2, 2, 1721, 1722, 7, 67, 2, 2, 1722, 1723, 7, 84, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 71, 2, 2, 1726, 1727, 7, 70, 2, 2, 1727, 324, 3, 2, 2, 2, 1728, 1729, 7, 72, 2, 2, 1729, 1730, 7, 87, 2, 2, 1730, 1731, 7, 80, 2, 2, 1731, 1732, 7, 69, 2, 2, 1732, 1733, 7, 86, 2, 2, 1733, 1734, 7, 75, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 80, 2, 2, 1736, 326, 3, 2, 2, 2, 1737, 1738, 7, 71, 2, 2, 1738, 1739, 7, 90, 2, 2, 1739, 1740, 7, 86, 2, 2, 1740, 1741, 7, 71, 2, 2, 1741, 1742, 7, 80, 2, 2, 1742, 1743, 7, 70, 2, 2, 1743, 1744, 7, 71, 2, 2, 1744, 1745, 7, 70, 2, 2, 1745, 328, 3, 2, 2, 2, 1746, 1747, 7, 84, 2, 2, 1747, 1748, 7, 71, 2, 2, 1748, 1749, 7, 72, 2, 2, 1749, 1750, 7, 84, 2, 2, 1750, 1751, 7, 71, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 1753, 7, 74, 2, 2, 1753, 330, 3, 2, 2, 2, 1754, 1755, 7, 69, 2, 2, 1755, 1756, 7, 78, 2, 2, 1756, 1757, 7, 71, 2, 2, 1757, 1758, 7, 67, 2, 2, 1758, 1759, 7, 84, 2, 2, 1759, 332, 3, 2, 2, 2, 1760, 1761, 7, 69, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 69, 2, 2, 1763, 1764, 7, 74, 2, 2, 1764, 1765, 7, 71, 2, 2, 1765, 334, 3, 2, 2, 2, 1766, 1767, 7, 87, 2, 2, 1767, 1768, 7, 80, 2, 2, 1768, 1769, 7, 69, 2, 2, 1769, 1770, 7, 67, 2, 2, 1770, 1771, 7, 69, 2, 2, 1771, 1772, 7, 74, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 336, 3, 2, 2, 2, 1774, 1775, 7, 78, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 92, 2, 2, 1777, 1778, 7, 91, 2, 2, 1778, 338, 3, 2, 2, 2, 1779, 1780, 7, 72, 2, 2, 1780, 1781, 7, 81, 2, 2, 1781, 1782, 7, 84, 2, 2, 1782, 1783, 7, 79, 2, 2, 1783, 1784, 7, 67, 2, 2, 1784, 1785, 7, 86, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 70, 2, 2, 1788, 340, 3, 2, 2, 2, 1789, 1790, 7, 73, 2, 2, 1790, 1791, 7, 78, 2, 2, 1791, 1792, 7, 81, 2, 2, 1792, 1793, 7, 68, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 78, 2, 2, 1795, 342, 3, 2, 2, 2, 1796, 1797, 7, 86, 2, 2, 1797, 1798, 7, 71, 2, 2, 1798, 1799, 7, 79, 2, 2, 1799, 1800, 7, 82, 2, 2, 1800, 1801, 7, 81, 2, 2, 1801, 1802, 7, 84, 2, 2, 1802, 1803, 7, 67, 2, 2, 1803, 1804, 7, 84, 2, 2, 1804, 1805, 7, 91, 2, 2, 1805, 344, 3, 2, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 82, 2, 2, 1808, 1809, 7, 86, 2, 2, 1809, 1810, 7, 75, 2, 2, 1810, 1811, 7, 81, 2, 2, 1811, 1812, 7, 80, 2, 2, 1812, 1813, 7, 85, 2, 2, 1813, 346, 3, 2, 2, 2, 1814, 1815, 7, 87, 2, 2, 1815, 1816, 7, 80, 2, 2, 1816, 1817, 7, 85, 2, 2, 1817, 1818, 7, 71, 2, 2, 1818, 1819, 7, 86, 2, 2, 1819, 348, 3, 2, 2, 2, 1820, 1821, 7, 86, 2, 2, 1821, 1822, 7, 68, 2, 2, 1822, 1823, 7, 78, 2, 2, 1823, 1824, 7, 82, 2, 2, 1824, 1825, 7, 84, 2, 2, 1825, 1826, 7, 81, 2, 2, 1826, 1827, 7, 82, 2, 2, 1827, 1828, 7, 71, 2, 2, 1828, 1829, 7, 84, 2, 2, 1829, 1830, 7, 86, 2, 2, 1830, 1831, 7, 75, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 85, 2, 2, 1833, 350, 3, 2, 2, 2, 1834, 1835, 7, 70, 2, 2, 1835, 1836, 7, 68, 2, 2, 1836, 1837, 7, 82, 2, 2, 1837, 1838, 7, 84, 2, 2, 1838, 1839, 7, 81, 2, 2, 1839, 1840, 7, 82, 2, 2, 1840, 1841, 7, 71, 2, 2, 1841, 1842, 7, 84, 2, 2, 1842, 1843, 7, 86, 2, 2, 1843, 1844, 7, 75, 2, 2, 1844, 1845, 7, 71, 2, 2, 1845, 1846, 7, 85, 2, 2, 1846, 352, 3, 2, 2, 2, 1847, 1848, 7, 68, 2, 2, 1848, 1849, 7, 87, 2, 2, 1849, 1850, 7, 69, 2, 2, 1850, 1851, 7, 77, 2, 2, 1851, 1852, 7, 71, 2, 2, 1852, 1853, 7, 86, 2, 2, 1853, 1854, 7, 85, 2, 2, 1854, 354, 3, 2, 2, 2, 1855, 1856, 7, 85, 2, 2, 1856, 1857, 7, 77, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 1859, 7, 89, 2, 2, 1859, 1860, 7, 71, 2, 2, 1860, 1861, 7, 70, 2, 2, 1861, 356, 3, 2, 2, 2, 1862, 1863, 7, 85, 2, 2, 1863, 1864, 7, 86, 2, 2, 1864, 1865, 7, 81, 2, 2, 1865, 1866, 7, 84, 2, 2, 1866, 1867, 7, 71, 2, 2, 1867, 1868, 7, 70, 2, 2, 1868, 358, 3, 2, 2, 2, 1869, 1870, 7, 70, 2, 2, 1870, 1871, 7, 75, 2, 2, 1871, 1872, 7, 84, 2, 2, 1872, 1873, 7, 71, 2, 2, 1873, 1874, 7, 69, 2, 2, 1874, 1875, 7, 86, 2, 2, 1875, 1876, 7, 81, 2, 2, 1876, 1877, 7, 84, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 71, 2, 2, 1879, 1880, 7, 85, 2, 2, 1880, 360, 3, 2, 2, 2, 1881, 1882, 7, 78, 2, 2, 1882, 1883, 7, 81, 2, 2, 1883, 1884, 7, 69, 2, 2, 1884, 1885, 7, 67, 2, 2, 1885, 1886, 7, 86, 2, 2, 1886, 1887, 7, 75, 2, 2, 1887, 1888, 7, 81, 2, 2, 1888, 1889, 7, 80, 2, 2, 1889, 362, 3, 2, 2, 2, 1890, 1891, 7, 71, 2, 2, 1891, 1892, 7, 90, 2, 2, 1892, 1893, 7, 69, 2, 2, 1893, 1894, 7, 74, 2, 2, 1894, 1895, 7, 67, 2, 2, 1895, 1896, 7, 80, 2, 2, 1896, 1897, 7, 73, 2, 2, 1897, 1898, 7, 71, 2, 2, 1898, 364, 3, 2, 2, 2, 1899, 1900, 7, 67, 2, 2, 1900, 1901, 7, 84, 2, 2, 1901, 1902, 7, 69, 2, 2, 1902, 1903, 7, 74, 2, 2, 1903, 1904, 7, 75, 2, 2, 1904, 1905, 7, 88, 2, 2, 1905, 1906, 7, 71, 2, 2, 1906, 366, 3, 2, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 80, 2, 2, 1909, 1910, 7, 67, 2, 2, 1910, 1911, 7, 84, 2, 2, 1911, 1912, 7, 69, 2, 2, 1912, 1913, 7, 74, 2, 2, 1913, 1914, 7, 75, 2, 2, 1914, 1915, 7, 88, 2, 2, 1915, 1916, 7, 71, 2, 2, 1916, 368, 3, 2, 2, 2, 1917, 1918, 7, 72, 2, 2, 1918, 1919, 7, 75, 2, 2, 1919, 1920, 7, 78, 2, 2, 1920, 1921, 7, 71, 2, 2, 1921, 1922, 7, 72, 2, 2, 1922, 1923, 7, 81, 2, 2, 1923, 1924, 7, 84, 2, 2, 1924, 1925, 7, 79, 2, 2, 1925, 1926, 7, 67, 2, 2, 1926, 1927, 7, 86, 2, 2, 1927, 370, 3, 2, 2, 2, 1928, 1929, 7, 86, 2, 2, 1929, 1930, 7, 81, 2, 2, 1930, 1931, 7, 87, 2, 2, 1931, 1932, 7, 69, 2, 2, 1932, 1933, 7, 74, 2, 2, 1933, 372, 3, 2, 2, 2, 1934, 1935, 7, 69, 2, 2, 1935, 1936, 7, 81, 2, 2, 1936, 1937, 7, 79, 2, 2, 1937, 1938, 7, 82, 2, 2, 1938, 1939, 7, 67, 2, 2, 1939, 1940, 7, 69, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 374, 3, 2, 2, 2, 1942, 1943, 7, 69, 2, 2, 1943, 1944, 7, 81, 2, 2, 1944, 1945, 7, 80, 2, 2, 1945, 1946, 7, 69, 2, 2, 1946, 1947, 7, 67, 2, 2, 1947, 1948, 7, 86, 2, 2, 1948, 1949, 7, 71, 2, 2, 1949, 1950, 7, 80, 2, 2, 1950, 1951, 7, 67, 2, 2, 1951, 1952, 7, 86, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 376, 3, 2, 2, 2, 1954, 1955, 7, 69, 2, 2, 1955, 1956, 7, 74, 2, 2, 1956, 1957, 7, 67, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 73, 2, 2, 1959, 1960, 7, 71, 2, 2, 1960, 378, 3, 2, 2, 2, 1961, 1962, 7, 69, 2, 2, 1962, 1963, 7, 67, 2, 2, 1963, 1964, 7, 85, 2, 2, 1964, 1965, 7, 69, 2, 2, 1965, 1966, 7, 67, 2, 2, 1966, 1967, 7, 70, 2, 2, 1967, 1968, 7, 71, 2, 2, 1968, 380, 3, 2, 2, 2, 1969, 1970, 7, 84, 2, 2, 1970, 1971, 7, 71, 2, 2, 1971, 1972, 7, 85, 2, 2, 1972, 1973, 7, 86, 2, 2, 1973, 1974, 7, 84, 2, 2, 1974, 1975, 7, 75, 2, 2, 1975, 1976, 7, 69, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 382, 3, 2, 2, 2, 1978, 1979, 7, 69, 2, 2, 1979, 1980, 7, 78, 2, 2, 1980, 1981, 7, 87, 2, 2, 1981, 1982, 7, 85, 2, 2, 1982, 1983, 7, 86, 2, 2, 1983, 1984, 7, 71, 2, 2, 1984, 1985, 7, 84, 2, 2, 1985, 1986, 7, 71, 2, 2, 1986, 1987, 7, 70, 2, 2, 1987, 384, 3, 2, 2, 2, 1988, 1989, 7, 85, 2, 2, 1989, 1990, 7, 81, 2, 2, 1990, 1991, 7, 84, 2, 2, 1991, 1992, 7, 86, 2, 2, 1992, 1993, 7, 71, 2, 2, 1993, 1994, 7, 70, 2, 2, 1994, 386, 3, 2, 2, 2, 1995, 1996, 7, 82, 2, 2, 1996, 1997, 7, 87, 2, 2, 1997, 1998, 7, 84, 2, 2, 1998, 1999, 7, 73, 2, 2, 1999, 2000, 7, 71, 2, 2, 2000, 388, 3, 2, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 2003, 7, 80, 2, 2, 2003, 2004, 7, 82, 2, 2, 2004, 2005, 7, 87, 2, 2, 2005, 2006, 7, 86, 2, 2, 2006, 2007, 7, 72, 2, 2, 2007, 2008, 7, 81, 2, 2, 2008, 2009, 7, 84, 2, 2, 2009, 2010, 7, 79, 2, 2, 2010, 2011, 7, 67, 2, 2, 2011, 2012, 7, 86, 2, 2, 2012, 390, 3, 2, 2, 2, 2013, 2014, 7, 81, 2, 2, 2014, 2015, 7, 87, 2, 2, 2015, 2016, 7, 86, 2, 2, 2016, 2017, 7, 82, 2, 2, 2017, 2018, 7, 87, 2, 2, 2018, 2019, 7, 86, 2, 2, 2019, 2020, 7, 72, 2, 2, 2020, 2021, 7, 81, 2, 2, 2021, 2022, 7, 84, 2, 2, 2022, 2023, 7, 79, 2, 2, 2023, 2024, 7, 67, 2, 2, 2024, 2025, 7, 86, 2, 2, 2025, 392, 3, 2, 2, 2, 2026, 2027, 7, 70, 2, 2, 2027, 2028, 7, 67, 2, 2, 2028, 2029, 7, 86, 2, 2, 2029, 2030, 7, 67, 2, 2, 2030, 2031, 7, 68, 2, 2, 2031, 2032, 7, 67, 2, 2, 2032, 2033, 7, 85, 2, 2, 2033, 2034, 7, 71, 2, 2, 2034, 394, 3, 2, 2, 2, 2035, 2036, 7, 70, 2, 2, 2036, 2037, 7, 67, 2, 2, 2037, 2038, 7, 86, 2, 2, 2038, 2039, 7, 67, 2, 2, 2039, 2040, 7, 68, 2, 2, 2040, 2041, 7, 67, 2, 2, 2041, 2042, 7, 85, 2, 2, 2042, 2043, 7, 71, 2, 2, 2043, 2044, 7, 85, 2, 2, 2044, 396, 3, 2, 2, 2, 2045, 2046, 7, 70, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 85, 2, 2, 2048, 398, 3, 2, 2, 2, 2049, 2050, 7, 86, 2, 2, 2050, 2051, 7, 84, 2, 2, 2051, 2052, 7, 87, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 69, 2, 2, 2054, 2055, 7, 67, 2, 2, 2055, 2056, 7, 86, 2, 2, 2056, 2057, 7, 71, 2, 2, 2057, 400, 3, 2, 2, 2, 2058, 2059, 7, 67, 2, 2, 2059, 2060, 7, 80, 2, 2, 2060, 2061, 7, 67, 2, 2, 2061, 2062, 7, 78, 2, 2, 2062, 2063, 7, 91, 2, 2, 2063, 2064, 7, 92, 2, 2, 2064, 2065, 7, 71, 2, 2, 2065, 402, 3, 2, 2, 2, 2066, 2067, 7, 69, 2, 2, 2067, 2068, 7, 81, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 82, 2, 2, 2070, 2071, 7, 87, 2, 2, 2071, 2072, 7, 86, 2, 2, 2072, 2073, 7, 71, 2, 2, 2073, 404, 3, 2, 2, 2, 2074, 2075, 7, 78, 2, 2, 2075, 2076, 7, 75, 2, 2, 2076, 2077, 7, 85, 2, 2, 2077, 2078, 7, 86, 2, 2, 2078, 406, 3, 2, 2, 2, 2079, 2080, 7, 85, 2, 2, 2080, 2081, 7, 86, 2, 2, 2081, 2082, 7, 67, 2, 2, 2082, 2083, 7, 86, 2, 2, 2083, 2084, 7, 75, 2, 2, 2084, 2085, 7, 85, 2, 2, 2085, 2086, 7, 86, 2, 2, 2086, 2087, 7, 75, 2, 2, 2087, 2088, 7, 69, 2, 2, 2088, 2089, 7, 85, 2, 2, 2089, 408, 3, 2, 2, 2, 2090, 2091, 7, 82, 2, 2, 2091, 2092, 7, 67, 2, 2, 2092, 2093, 7, 84, 2, 2, 2093, 2094, 7, 86, 2, 2, 2094, 2095, 7, 75, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 75, 2, 2, 2097, 2098, 7, 81, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 71, 2, 2, 2100, 2101, 7, 70, 2, 2, 2101, 410, 3, 2, 2, 2, 2102, 2103, 7, 71, 2, 2, 2103, 2104, 7, 90, 2, 2, 2104, 2105, 7, 86, 2, 2, 2105, 2106, 7, 71, 2, 2, 2106, 2107, 7, 84, 2, 2, 2107, 2108, 7, 80, 2, 2, 2108, 2109, 7, 67, 2, 2, 2109, 2110, 7, 78, 2, 2, 2110, 412, 3, 2, 2, 2, 2111, 2112, 7, 70, 2, 2, 2112, 2113, 7, 71, 2, 2, 2113, 2114, 7, 72, 2, 2, 2114, 2115, 7, 75, 2, 2, 2115, 2116, 7, 80, 2, 2, 2116, 2117, 7, 71, 2, 2, 2117, 2118, 7, 70, 2, 2, 2118, 414, 3, 2, 2, 2, 2119, 2120, 7, 84, 2, 2, 2120, 2121, 7, 71, 2, 2, 2121, 2122, 7, 88, 2, 2, 2122, 2123, 7, 81, 2, 2, 2123, 2124, 7, 77, 2, 2, 2124, 2125, 7, 71, 2, 2, 2125, 416, 3, 2, 2, 2, 2126, 2127, 7, 73, 2, 2, 2127, 2128, 7, 84, 2, 2, 2128, 2129, 7, 67, 2, 2, 2129, 2130, 7, 80, 2, 2, 2130, 2131, 7, 86, 2, 2, 2131, 418, 3, 2, 2, 2, 2132, 2133, 7, 78, 2, 2, 2133, 2134, 7, 81, 2, 2, 2134, 2135, 7, 69, 2, 2, 2135, 2136, 7, 77, 2, 2, 2136, 420, 3, 2, 2, 2, 2137, 2138, 7, 87, 2, 2, 2138, 2139, 7, 80, 2, 2, 2139, 2140, 7, 78, 2, 2, 2140, 2141, 7, 81, 2, 2, 2141, 2142, 7, 69, 2, 2, 2142, 2143, 7, 77, 2, 2, 2143, 422, 3, 2, 2, 2, 2144, 2145, 7, 79, 2, 2, 2145, 2146, 7, 85, 2, 2, 2146, 2147, 7, 69, 2, 2, 2147, 2148, 7, 77, 2, 2, 2148, 424, 3, 2, 2, 2, 2149, 2150, 7, 84, 2, 2, 2150, 2151, 7, 71, 2, 2, 2151, 2152, 7, 82, 2, 2, 2152, 2153, 7, 67, 2, 2, 2153, 2154, 7, 75, 2, 2, 2154, 2155, 7, 84, 2, 2, 2155, 426, 3, 2, 2, 2, 2156, 2157, 7, 84, 2, 2, 2157, 2158, 7, 71, 2, 2, 2158, 2159, 7, 69, 2, 2, 2159, 2160, 7, 81, 2, 2, 2160, 2161, 7, 88, 2, 2, 2161, 2162, 7, 71, 2, 2, 2162, 2163, 7, 84, 2, 2, 2163, 428, 3, 2, 2, 2, 2164, 2165, 7, 71, 2, 2, 2165, 2166, 7, 90, 2, 2, 2166, 2167, 7, 82, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 84, 2, 2, 2169, 2170, 7, 86, 2, 2, 2170, 430, 3, 2, 2, 2, 2171, 2172, 7, 75, 2, 2, 2172, 2173, 7, 79, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 81, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 86, 2, 2, 2177, 432, 3, 2, 2, 2, 2178, 2179, 7, 78, 2, 2, 2179, 2180, 7, 81, 2, 2, 2180, 2181, 7, 67, 2, 2, 2181, 2182, 7, 70, 2, 2, 2182, 434, 3, 2, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 81, 2, 2, 2185, 2186, 7, 78, 2, 2, 2186, 2187, 7, 71, 2, 2, 2187, 436, 3, 2, 2, 2, 2188, 2189, 7, 84, 2, 2, 2189, 2190, 7, 81, 2, 2, 2190, 2191, 7, 78, 2, 2, 2191, 2192, 7, 71, 2, 2, 2192, 2193, 7, 85, 2, 2, 2193, 438, 3, 2, 2, 2, 2194, 2195, 7, 69, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 79, 2, 2, 2197, 2198, 7, 82, 2, 2, 2198, 2199, 7, 67, 2, 2, 2199, 2200, 7, 69, 2, 2, 2200, 2201, 7, 86, 2, 2, 2201, 2202, 7, 75, 2, 2, 2202, 2203, 7, 81, 2, 2, 2203, 2204, 7, 80, 2, 2, 2204, 2205, 7, 85, 2, 2, 2205, 440, 3, 2, 2, 2, 2206, 2207, 7, 82, 2, 2, 2207, 2208, 7, 84, 2, 2, 2208, 2209, 7, 75, 2, 2, 2209, 2210, 7, 80, 2, 2, 2210, 2211, 7, 69, 2, 2, 2211, 2212, 7, 75, 2, 2, 2212, 2213, 7, 82, 2, 2, 2213, 2214, 7, 67, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 85, 2, 2, 2216, 442, 3, 2, 2, 2, 2217, 2218, 7, 86, 2, 2, 2218, 2219, 7, 84, 2, 2, 2219, 2220, 7, 67, 2, 2, 2220, 2221, 7, 80, 2, 2, 2221, 2222, 7, 85, 2, 2, 2222, 2223, 7, 67, 2, 2, 2223, 2224, 7, 69, 2, 2, 2224, 2225, 7, 86, 2, 2, 2225, 2226, 7, 75, 2, 2, 2226, 2227, 7, 81, 2, 2, 2227, 2228, 7, 80, 2, 2, 2228, 2229, 7, 85, 2, 2, 2229, 444, 3, 2, 2, 2, 2230, 2231, 7, 75, 2, 2, 2231, 2232, 7, 80, 2, 2, 2232, 2233, 7, 70, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 90, 2, 2, 2235, 446, 3, 2, 2, 2, 2236, 2237, 7, 75, 2, 2, 2237, 2238, 7, 80, 2, 2, 2238, 2239, 7, 70, 2, 2, 2239, 2240, 7, 71, 2, 2, 2240, 2241, 7, 90, 2, 2, 2241, 2242, 7, 71, 2, 2, 2242, 2243, 7, 85, 2, 2, 2243, 448, 3, 2, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 81, 2, 2, 2246, 2247, 7, 69, 2, 2, 2247, 2248, 7, 77, 2, 2, 2248, 2249, 7, 85, 2, 2, 2249, 450, 3, 2, 2, 2, 2250, 2251, 7, 81, 2, 2, 2251, 2252, 7, 82, 2, 2, 2252, 2253, 7, 86, 2, 2, 2253, 2254, 7, 75, 2, 2, 2254, 2255, 7, 81, 2, 2, 2255, 2256, 7, 80, 2, 2, 2256, 452, 3, 2, 2, 2, 2257, 2258, 7, 67, 2, 2, 2258, 2259, 7, 80, 2, 2, 2259, 2260, 7, 86, 2, 2, 2260, 2261, 7, 75, 2, 2, 2261, 454, 3, 2, 2, 2, 2262, 2263, 7, 78, 2, 2, 2263, 2264, 7, 81, 2, 2, 2264, 2265, 7, 69, 2, 2, 2265, 2266, 7, 67, 2, 2, 2266, 2267, 7, 78, 2, 2, 2267, 456, 3, 2, 2, 2, 2268, 2269, 7, 75, 2, 2, 2269, 2270, 7, 80, 2, 2, 2270, 2271, 7, 82, 2, 2, 2271, 2272, 7, 67, 2, 2, 2272, 2273, 7, 86, 2, 2, 2273, 2274, 7, 74, 2, 2, 2274, 458, 3, 2, 2, 2, 2275, 2276, 7, 89, 2, 2, 2276, 2277, 7, 67, 2, 2, 2277, 2278, 7, 86, 2, 2, 2278, 2279, 7, 71, 2, 2, 2279, 2280, 7, 84, 2, 2, 2280, 2281, 7, 79, 2, 2, 2281, 2282, 7, 67, 2, 2, 2282, 2283, 7, 84, 2, 2, 2283, 2284, 7, 77, 2, 2, 2284, 460, 3, 2, 2, 2, 2285, 2286, 7, 87, 2, 2, 2286, 2287, 7, 80, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 71, 2, 2, 2289, 2290, 7, 85, 2, 2, 2290, 2291, 7, 86, 2, 2, 2291, 462, 3, 2, 2, 2, 2292, 2293, 7, 79, 2, 2, 2293, 2294, 7, 67, 2, 2, 2294, 2295, 7, 86, 2, 2, 2295, 2296, 7, 69, 2, 2, 2296, 2297, 7, 74, 2, 2, 2297, 2298, 7, 97, 2, 2, 2298, 2299, 7, 84, 2, 2, 2299, 2300, 7, 71, 2, 2, 2300, 2301, 7, 69, 2, 2, 2301, 2302, 7, 81, 2, 2, 2302, 2303, 7, 73, 2, 2, 2303, 2304, 7, 80, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 92, 2, 2, 2306, 2307, 7, 71, 2, 2, 2307, 464, 3, 2, 2, 2, 2308, 2309, 7, 79, 2, 2, 2309, 2310, 7, 71, 2, 2, 2310, 2311, 7, 67, 2, 2, 2311, 2312, 7, 85, 2, 2, 2312, 2313, 7, 87, 2, 2, 2313, 2314, 7, 84, 2, 2, 2314, 2315, 7, 71, 2, 2, 2315, 2316, 7, 85, 2, 2, 2316, 466, 3, 2, 2, 2, 2317, 2318, 7, 81, 2, 2, 2318, 2319, 7, 80, 2, 2, 2319, 2320, 7, 71, 2, 2, 2320, 468, 3, 2, 2, 2, 2321, 2322, 7, 82, 2, 2, 2322, 2323, 7, 71, 2, 2, 2323, 2324, 7, 84, 2, 2, 2324, 470, 3, 2, 2, 2, 2325, 2326, 7, 79, 2, 2, 2326, 2327, 7, 67, 2, 2, 2327, 2328, 7, 86, 2, 2, 2328, 2329, 7, 69, 2, 2, 2329, 2330, 7, 74, 2, 2, 2330, 472, 3, 2, 2, 2, 2331, 2332, 7, 85, 2, 2, 2332, 2333, 7, 77, 2, 2, 2333, 2334, 7, 75, 2, 2, 2334, 2335, 7, 82, 2, 2, 2335, 2336, 7, 51, 2, 2, 2336, 474, 3, 2, 2, 2, 2337, 2338, 7, 80, 2, 2, 2338, 2339, 7, 71, 2, 2, 2339, 2340, 7, 90, 2, 2, 2340, 2341, 7, 86, 2, 2, 2341, 476, 3, 2, 2, 2, 2342, 2343, 7, 82, 2, 2, 2343, 2344, 7, 67, 2, 2, 2344, 2345, 7, 85, 2, 2, 2345, 2346, 7, 86, 2, 2, 2346, 478, 3, 2, 2, 2, 2347, 2348, 7, 82, 2, 2, 2348, 2349, 7, 67, 2, 2, 2349, 2350, 7, 86, 2, 2, 2350, 2351, 7, 86, 2, 2, 2351, 2352, 7, 71, 2, 2, 2352, 2353, 7, 84, 2, 2, 2353, 2354, 7, 80, 2, 2, 2354, 480, 3, 2, 2, 2, 2355, 2356, 7, 89, 2, 2, 2356, 2357, 7, 75, 2, 2, 2357, 2358, 7, 86, 2, 2, 2358, 2359, 7, 74, 2, 2, 2359, 2360, 7, 75, 2, 2, 2360, 2361, 7, 80, 2, 2, 2361, 482, 3, 2, 2, 2, 2362, 2363, 7, 70, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 72, 2, 2, 2365, 2366, 7, 75, 2, 2, 2366, 2367, 7, 80, 2, 2, 2367, 2368, 7, 71, 2, 2, 2368, 484, 3, 2, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 85, 2, 2, 2371, 486, 3, 2, 2, 2, 2372, 2373, 7, 85, 2, 2, 2373, 2374, 7, 91, 2, 2, 2374, 2375, 7, 85, 2, 2, 2375, 2376, 7, 86, 2, 2, 2376, 2377, 7, 71, 2, 2, 2377, 2378, 7, 79, 2, 2, 2378, 488, 3, 2, 2, 2, 2379, 2380, 7, 75, 2, 2, 2380, 2381, 7, 80, 2, 2, 2381, 2382, 7, 69, 2, 2, 2382, 2383, 7, 78, 2, 2, 2383, 2384, 7, 87, 2, 2, 2384, 2385, 7, 70, 2, 2, 2385, 2386, 7, 75, 2, 2, 2386, 2387, 7, 80, 2, 2, 2387, 2388, 7, 73, 2, 2, 2388, 490, 3, 2, 2, 2, 2389, 2390, 7, 71, 2, 2, 2390, 2391, 7, 90, 2, 2, 2391, 2392, 7, 69, 2, 2, 2392, 2393, 7, 78, 2, 2, 2393, 2394, 7, 87, 2, 2, 2394, 2395, 7, 70, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 73, 2, 2, 2398, 492, 3, 2, 2, 2, 2399, 2400, 7, 69, 2, 2, 2400, 2401, 7, 81, 2, 2, 2401, 2402, 7, 80, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 84, 2, 2, 2405, 2406, 7, 67, 2, 2, 2406, 2407, 7, 75, 2, 2, 2407, 2408, 7, 80, 2, 2, 2408, 2409, 7, 86, 2, 2, 2409, 2410, 7, 85, 2, 2, 2410, 494, 3, 2, 2, 2, 2411, 2412, 7, 81, 2, 2, 2412, 2413, 7, 88, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 84, 2, 2, 2415, 2416, 7, 89, 2, 2, 2416, 2417, 7, 84, 2, 2, 2417, 2418, 7, 75, 2, 2, 2418, 2419, 7, 86, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 80, 2, 2, 2421, 2422, 7, 73, 2, 2, 2422, 496, 3, 2, 2, 2, 2423, 2424, 7, 73, 2, 2, 2424, 2425, 7, 71, 2, 2, 2425, 2426, 7, 80, 2, 2, 2426, 2427, 7, 71, 2, 2, 2427, 2428, 7, 84, 2, 2, 2428, 2429, 7, 67, 2, 2, 2429, 2430, 7, 86, 2, 2, 2430, 2431, 7, 71, 2, 2, 2431, 2432, 7, 70, 2, 2, 2432, 498, 3, 2, 2, 2, 2433, 2434, 7, 69, 2, 2, 2434, 2435, 7, 67, 2, 2, 2435, 2436, 7, 86, 2, 2, 2436, 2437, 7, 67, 2, 2, 2437, 2438, 7, 78, 2, 2, 2438, 2439, 7, 81, 2, 2, 2439, 2440, 7, 73, 2, 2, 2440, 500, 3, 2, 2, 2, 2441, 2442, 7, 78, 2, 2, 2442, 2443, 7, 67, 2, 2, 2443, 2444, 7, 80, 2, 2, 2444, 2445, 7, 73, 2, 2, 2445, 2446, 7, 87, 2, 2, 2446, 2447, 7, 67, 2, 2, 2447, 2448, 7, 73, 2, 2, 2448, 2449, 7, 71, 2, 2, 2449, 502, 3, 2, 2, 2, 2450, 2451, 7, 69, 2, 2, 2451, 2452, 7, 67, 2, 2, 2452, 2453, 7, 86, 2, 2, 2453, 2454, 7, 67, 2, 2, 2454, 2455, 7, 78, 2, 2, 2455, 2456, 7, 81, 2, 2, 2456, 2457, 7, 73, 2, 2, 2457, 2458, 7, 85, 2, 2, 2458, 504, 3, 2, 2, 2, 2459, 2460, 7, 88, 2, 2, 2460, 2461, 7, 75, 2, 2, 2461, 2462, 7, 71, 2, 2, 2462, 2463, 7, 89, 2, 2, 2463, 2464, 7, 85, 2, 2, 2464, 506, 3, 2, 2, 2, 2465, 2466, 7, 85, 2, 2, 2466, 2467, 7, 86, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 75, 2, 2, 2469, 2470, 7, 80, 2, 2, 2470, 2471, 7, 73, 2, 2, 2471, 508, 3, 2, 2, 2, 2472, 2473, 7, 67, 2, 2, 2473, 2474, 7, 84, 2, 2, 2474, 2475, 7, 84, 2, 2, 2475, 2476, 7, 67, 2, 2, 2476, 2477, 7, 91, 2, 2, 2477, 510, 3, 2, 2, 2, 2478, 2479, 7, 79, 2, 2, 2479, 2480, 7, 67, 2, 2, 2480, 2481, 7, 82, 2, 2, 2481, 512, 3, 2, 2, 2, 2482, 2483, 7, 69, 2, 2, 2483, 2484, 7, 74, 2, 2, 2484, 2485, 7, 67, 2, 2, 2485, 2486, 7, 84, 2, 2, 2486, 514, 3, 2, 2, 2, 2487, 2488, 7, 88, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 84, 2, 2, 2490, 2491, 7, 69, 2, 2, 2491, 2492, 7, 74, 2, 2, 2492, 2493, 7, 67, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 516, 3, 2, 2, 2, 2495, 2496, 7, 68, 2, 2, 2496, 2497, 7, 75, 2, 2, 2497, 2498, 7, 80, 2, 2, 2498, 2499, 7, 67, 2, 2, 2499, 2500, 7, 84, 2, 2, 2500, 2501, 7, 91, 2, 2, 2501, 518, 3, 2, 2, 2, 2502, 2503, 7, 88, 2, 2, 2503, 2504, 7, 67, 2, 2, 2504, 2505, 7, 84, 2, 2, 2505, 2506, 7, 68, 2, 2, 2506, 2507, 7, 75, 2, 2, 2507, 2508, 7, 80, 2, 2, 2508, 2509, 7, 67, 2, 2, 2509, 2510, 7, 84, 2, 2, 2510, 2511, 7, 91, 2, 2, 2511, 520, 3, 2, 2, 2, 2512, 2513, 7, 68, 2, 2, 2513, 2514, 7, 91, 2, 2, 2514, 2515, 7, 86, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 85, 2, 2, 2517, 522, 3, 2, 2, 2, 2518, 2519, 7, 70, 2, 2, 2519, 2520, 7, 71, 2, 2, 2520, 2521, 7, 69, 2, 2, 2521, 2522, 7, 75, 2, 2, 2522, 2523, 7, 79, 2, 2, 2523, 2524, 7, 67, 2, 2, 2524, 2525, 7, 78, 2, 2, 2525, 524, 3, 2, 2, 2, 2526, 2527, 7, 86, 2, 2, 2527, 2528, 7, 75, 2, 2, 2528, 2529, 7, 80, 2, 2, 2529, 2530, 7, 91, 2, 2, 2530, 2531, 7, 75, 2, 2, 2531, 2532, 7, 80, 2, 2, 2532, 2533, 7, 86, 2, 2, 2533, 526, 3, 2, 2, 2, 2534, 2535, 7, 85, 2, 2, 2535, 2536, 7, 79, 2, 2, 2536, 2537, 7, 67, 2, 2, 2537, 2538, 7, 78, 2, 2, 2538, 2539, 7, 78, 2, 2, 2539, 2540, 7, 75, 2, 2, 2540, 2541, 7, 80, 2, 2, 2541, 2542, 7, 86, 2, 2, 2542, 528, 3, 2, 2, 2, 2543, 2544, 7, 75, 2, 2, 2544, 2545, 7, 80, 2, 2, 2545, 2546, 7, 86, 2, 2, 2546, 530, 3, 2, 2, 2, 2547, 2548, 7, 68, 2, 2, 2548, 2549, 7, 75, 2, 2, 2549, 2550, 7, 73, 2, 2, 2550, 2551, 7, 75, 2, 2, 2551, 2552, 7, 80, 2, 2, 2552, 2553, 7, 86, 2, 2, 2553, 532, 3, 2, 2, 2, 2554, 2555, 7, 72, 2, 2, 2555, 2556, 7, 78, 2, 2, 2556, 2557, 7, 81, 2, 2, 2557, 2558, 7, 67, 2, 2, 2558, 2559, 7, 86, 2, 2, 2559, 534, 3, 2, 2, 2, 2560, 2561, 7, 70, 2, 2, 2561, 2562, 7, 81, 2, 2, 2562, 2563, 7, 87, 2, 2, 2563, 2564, 7, 68, 2, 2, 2564, 2565, 7, 78, 2, 2, 2565, 2566, 7, 71, 2, 2, 2566, 536, 3, 2, 2, 2, 2567, 2568, 7, 70, 2, 2, 2568, 2569, 7, 67, 2, 2, 2569, 2570, 7, 86, 2, 2, 2570, 2571, 7, 71, 2, 2, 2571, 538, 3, 2, 2, 2, 2572, 2573, 7, 86, 2, 2, 2573, 2574, 7, 75, 2, 2, 2574, 2575, 7, 79, 2, 2, 2575, 2576, 7, 71, 2, 2, 2576, 540, 3, 2, 2, 2, 2577, 2578, 7, 86, 2, 2, 2578, 2579, 7, 75, 2, 2, 2579, 2580, 7, 79, 2, 2, 2580, 2581, 7, 71, 2, 2, 2581, 2582, 7, 85, 2, 2, 2582, 2583, 7, 86, 2, 2, 2583, 2584, 7, 67, 2, 2, 2584, 2585, 7, 79, 2, 2, 2585, 2586, 7, 82, 2, 2, 2586, 542, 3, 2, 2, 2, 2587, 2588, 7, 79, 2, 2, 2588, 2589, 7, 87, 2, 2, 2589, 2590, 7, 78, 2, 2, 2590, 2591, 7, 86, 2, 2, 2591, 2592, 7, 75, 2, 2, 2592, 2593, 7, 85, 2, 2, 2593, 2594, 7, 71, 2, 2, 2594, 2595, 7, 86, 2, 2, 2595, 544, 3, 2, 2, 2, 2596, 2597, 7, 68, 2, 2, 2597, 2598, 7, 81, 2, 2, 2598, 2599, 7, 81, 2, 2, 2599, 2600, 7, 78, 2, 2, 2600, 2601, 7, 71, 2, 2, 2601, 2602, 7, 67, 2, 2, 2602, 2603, 7, 80, 2, 2, 2603, 546, 3, 2, 2, 2, 2604, 2605, 7, 84, 2, 2, 2605, 2606, 7, 67, 2, 2, 2606, 2607, 7, 89, 2, 2, 2607, 548, 3, 2, 2, 2, 2608, 2609, 7, 84, 2, 2, 2609, 2610, 7, 81, 2, 2, 2610, 2611, 7, 89, 2, 2, 2611, 550, 3, 2, 2, 2, 2612, 2613, 7, 80, 2, 2, 2613, 2614, 7, 87, 2, 2, 2614, 2615, 7, 78, 2, 2, 2615, 2616, 7, 78, 2, 2, 2616, 552, 3, 2, 2, 2, 2617, 2618, 7, 63, 2, 2, 2618, 554, 3, 2, 2, 2, 2619, 2620, 7, 64, 2, 2, 2620, 556, 3, 2, 2, 2, 2621, 2622, 7, 62, 2, 2, 2622, 558, 3, 2, 2, 2, 2623, 2624, 7, 35, 2, 2, 2624, 560, 3, 2, 2, 2, 2625, 2626, 7, 128, 2, 2, 2626, 562, 3, 2, 2, 2, 2627, 2628, 7, 126, 2, 2, 2628, 564, 3, 2, 2, 2, 2629, 2630, 7, 40, 2, 2, 2630, 566, 3, 2, 2, 2, 2631, 2632, 7, 96, 2, 2, 2632, 568, 3, 2, 2, 2, 2633, 2634, 7, 48, 2, 2, 2634, 570, 3, 2, 2, 2, 2635, 2636, 7, 93, 2, 2, 2636, 572, 3, 2, 2, 2, 2637, 2638, 7, 95, 2, 2, 2638, 574, 3, 2, 2, 2, 2639, 2640, 7, 42, 2, 2, 2640, 576, 3, 2, 2, 2, 2641, 2642, 7, 43, 2, 2, 2642, 578, 3, 2, 2, 2, 2643, 2644, 7, 46, 2, 2, 2644, 580, 3, 2, 2, 2, 2645, 2646, 7, 61, 2, 2, 2646, 582, 3, 2, 2, 2, 2647, 2648, 7, 66, 2, 2, 2648, 584, 3, 2, 2, 2, 2649, 2650, 7, 41, 2, 2, 2650, 586, 3, 2, 2, 2, 2651, 2652, 7, 36, 2, 2, 2652, 588, 3, 2, 2, 2, 2653, 2654, 7, 98, 2, 2, 2654, 590, 3, 2, 2, 2, 2655, 2656, 7, 60, 2, 2, 2656, 592, 3, 2, 2, 2, 2657, 2658, 7, 44, 2, 2, 2658, 594, 3, 2, 2, 2, 2659, 2660, 7, 97, 2, 2, 2660, 596, 3, 2, 2, 2, 2661, 2662, 7, 47, 2, 2, 2662, 598, 3, 2, 2, 2, 2663, 2664, 7, 45, 2, 2, 2664, 600, 3, 2, 2, 2, 2665, 2666, 7, 39, 2, 2, 2666, 602, 3, 2, 2, 2, 2667, 2668, 7, 126, 2, 2, 2668, 2669, 7, 126, 2, 2, 2669, 604, 3, 2, 2, 2, 2670, 2671, 7, 47, 2, 2, 2671, 2672, 7, 47, 2, 2, 2672, 606, 3, 2, 2, 2, 2673, 2674, 7, 49, 2, 2, 2674, 608, 3, 2, 2, 2, 2675, 2676, 7, 48, 2, 2, 2676, 2677, 5, 623, 312, 2, 2677, 610, 3, 2, 2, 2, 2678, 2682, 5, 629, 315, 2, 2679, 2682, 5, 631, 316, 2, 2680, 2682, 5, 635, 318, 2, 2681, 2678, 3, 2, 2, 2, 2681, 2679, 3, 2, 2, 2, 2681, 2680, 3, 2, 2, 2, 2682, 612, 3, 2, 2, 2, 2683, 2685, 5, 625, 313, 2, 2684, 2683, 3, 2, 2, 2, 2685, 2686, 3, 2, 2, 2, 2686, 2684, 3, 2, 2, 2, 2686, 2687, 3, 2, 2, 2, 2687, 614, 3, 2, 2, 2, 2688, 2690, 5, 625, 313, 2, 2689, 2688, 3, 2, 2, 2, 2690, 2691, 3, 2, 2, 2, 2691, 2689, 3, 2, 2, 2, 2691, 2692, 3, 2, 2, 2, 2692, 2694, 3, 2, 2, 2, 2693, 2689, 3, 2, 2, 2, 2693, 2694, 3, 2, 2, 2, 2694, 2695, 3, 2, 2, 2, 2695, 2697, 7, 48, 2, 2, 2696, 2698, 5, 625, 313, 2, 2697, 2696, 3, 2, 2, 2, 2698, 2699, 3, 2, 2, 2, 2699, 2697, 3, 2, 2, 2, 2699, 2700, 3, 2, 2, 2, 2700, 2732, 3, 2, 2, 2, 2701, 2703, 5, 625, 313, 2, 2702, 2701, 3, 2, 2, 2, 2703, 2704, 3, 2, 2, 2, 2704, 2702, 3, 2, 2, 2, 2704, 2705, 3, 2, 2, 2, 2705, 2706, 3, 2, 2, 2, 2706, 2707, 7, 48, 2, 2, 2707, 2708, 5, 621, 311, 2, 2708, 2732, 3, 2, 2, 2, 2709, 2711, 5, 625, 313, 2, 2710, 2709, 3, 2, 2, 2, 2711, 2712, 3, 2, 2, 2, 2712, 2710, 3, 2, 2, 2, 2712, 2713, 3, 2, 2, 2, 2713, 2715, 3, 2, 2, 2, 2714, 2710, 3, 2, 2, 2, 2714, 2715, 3, 2, 2, 2, 2715, 2716, 3, 2, 2, 2, 2716, 2718, 7, 48, 2, 2, 2717, 2719, 5, 625, 313, 2, 2718, 2717, 3, 2, 2, 2, 2719, 2720, 3, 2, 2, 2, 2720, 2718, 3, 2, 2, 2, 2720, 2721, 3, 2, 2, 2, 2721, 2722, 3, 2, 2, 2, 2722, 2723, 5, 621, 311, 2, 2723, 2732, 3, 2, 2, 2, 2724, 2726, 5, 625, 313, 2, 2725, 2724, 3, 2, 2, 2, 2726, 2727, 3, 2, 2, 2, 2727, 2725, 3, 2, 2, 2, 2727, 2728, 3, 2, 2, 2, 2728, 2729, 3, 2, 2, 2, 2729, 2730, 5, 621, 311, 2, 2730, 2732, 3, 2, 2, 2, 2731, 2693, 3, 2, 2, 2, 2731, 2702, 3, 2, 2, 2, 2731, 2714, 3, 2, 2, 2, 2731, 2725, 3, 2, 2, 2, 2732, 616, 3, 2, 2, 2, 2733, 2734, 5, 633, 317, 2, 2734, 618, 3, 2, 2, 2, 2735, 2736, 5, 623, 312, 2, 2736, 620, 3, 2, 2, 2, 2737, 2739, 7, 71, 2, 2, 2738, 2740, 9, 4, 2, 2, 2739, 2738, 3, 2, 2, 2, 2739, 2740, 3, 2, 2, 2, 2740, 2742, 3, 2, 2, 2, 2741, 2743, 5, 625, 313, 2, 2742, 2741, 3, 2, 2, 2, 2743, 2744, 3, 2, 2, 2, 2744, 2742, 3, 2, 2, 2, 2744, 2745, 3, 2, 2, 2, 2745, 622, 3, 2, 2, 2, 2746, 2748, 9, 5, 2, 2, 2747, 2746, 3, 2, 2, 2, 2748, 2751, 3, 2, 2, 2, 2749, 2750, 3, 2, 2, 2, 2749, 2747, 3, 2, 2, 2, 2750, 2753, 3, 2, 2, 2, 2751, 2749, 3, 2, 2, 2, 2752, 2754, 9, 6, 2, 2, 2753, 2752, 3, 2, 2, 2, 2754, 2755, 3, 2, 2, 2, 2755, 2756, 3, 2, 2, 2, 2755, 2753, 3, 2, 2, 2, 2756, 2760, 3, 2, 2, 2, 2757, 2759, 9, 5, 2, 2, 2758, 2757, 3, 2, 2, 2, 2759, 2762, 3, 2, 2, 2, 2760, 2758, 3, 2, 2, 2, 2760, 2761, 3, 2, 2, 2, 2761, 624, 3, 2, 2, 2, 2762, 2760, 3, 2, 2, 2, 2763, 2764, 9, 7, 2, 2, 2764, 626, 3, 2, 2, 2, 2765, 2766, 9, 8, 2, 2, 2766, 628, 3, 2, 2, 2, 2767, 2775, 7, 36, 2, 2, 2768, 2769, 7, 94, 2, 2, 2769, 2774, 11, 2, 2, 2, 2770, 2771, 7, 36, 2, 2, 2771, 2774, 7, 36, 2, 2, 2772, 2774, 10, 9, 2, 2, 2773, 2768, 3, 2, 2, 2, 2773, 2770, 3, 2, 2, 2, 2773, 2772, 3, 2, 2, 2, 2774, 2777, 3, 2, 2, 2, 2775, 2773, 3, 2, 2, 2, 2775, 2776, 3, 2, 2, 2, 2776, 2778, 3, 2, 2, 2, 2777, 2775, 3, 2, 2, 2, 2778, 2779, 7, 36, 2, 2, 2779, 630, 3, 2, 2, 2, 2780, 2788, 7, 41, 2, 2, 2781, 2782, 7, 94, 2, 2, 2782, 2787, 11, 2, 2, 2, 2783, 2784, 7, 41, 2, 2, 2784, 2787, 7, 41, 2, 2, 2785, 2787, 10, 10, 2, 2, 2786, 2781, 3, 2, 2, 2, 2786, 2783, 3, 2, 2, 2, 2786, 2785, 3, 2, 2, 2, 2787, 2790, 3, 2, 2, 2, 2788, 2786, 3, 2, 2, 2, 2788, 2789, 3, 2, 2, 2, 2789, 2791, 3, 2, 2, 2, 2790, 2788, 3, 2, 2, 2, 2791, 2792, 7, 41, 2, 2, 2792, 632, 3, 2, 2, 2, 2793, 2794, 7, 68, 2, 2, 2794, 2796, 7, 41, 2, 2, 2795, 2797, 9, 11, 2, 2, 2796, 2795, 3, 2, 2, 2, 2797, 2798, 3, 2, 2, 2, 2798, 2796, 3, 2, 2, 2, 2798, 2799, 3, 2, 2, 2, 2799, 2800, 3, 2, 2, 2, 2800, 2801, 7, 41, 2, 2, 2801, 634, 3, 2, 2, 2, 2802, 2810, 7, 98, 2, 2, 2803, 2804, 7, 94, 2, 2, 2804, 2809, 11, 2, 2, 2, 2805, 2806, 7, 98, 2, 2, 2806, 2809, 7, 98, 2, 2, 2807, 2809, 10, 12, 2, 2, 2808, 2803, 3, 2, 2, 2, 2808, 2805, 3, 2, 2, 2, 2808, 2807, 3, 2, 2, 2, 2809, 2812, 3, 2, 2, 2, 2810, 2808, 3, 2, 2, 2, 2810, 2811, 3, 2, 2, 2, 2811, 2813, 3, 2, 2, 2, 2812, 2810, 3, 2, 2, 2, 2813, 2814, 7, 98, 2, 2, 2814, 636, 3, 2, 2, 2, 35, 2, 640, 650, 662, 667, 671, 675, 681, 685, 687, 2681, 2686, 2691, 2693, 2699, 2704, 2712, 2714, 2720, 2727, 2731, 2739, 2744, 2749, 2755, 2760, 2773, 2775, 2786, 2788, 2798, 2808, 2810, 3, 2, 3, 2] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.js b/src/lib/flinksql/FlinkSqlLexer.js index ea41413..e454e0b 100644 --- a/src/lib/flinksql/FlinkSqlLexer.js +++ b/src/lib/flinksql/FlinkSqlLexer.js @@ -5,7 +5,7 @@ var antlr4 = require('antlr4/index'); var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0002\u0141\u0bba\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", + "\u0002\u0137\u0aff\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", "\u0004\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t", "\u0007\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004", "\f\t\f\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010", @@ -81,1853 +81,1730 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "\u0131\t\u0131\u0004\u0132\t\u0132\u0004\u0133\t\u0133\u0004\u0134\t", "\u0134\u0004\u0135\t\u0135\u0004\u0136\t\u0136\u0004\u0137\t\u0137\u0004", "\u0138\t\u0138\u0004\u0139\t\u0139\u0004\u013a\t\u013a\u0004\u013b\t", - "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0004", - "\u013f\t\u013f\u0004\u0140\t\u0140\u0004\u0141\t\u0141\u0004\u0142\t", - "\u0142\u0004\u0143\t\u0143\u0004\u0144\t\u0144\u0004\u0145\t\u0145\u0004", - "\u0146\t\u0146\u0004\u0147\t\u0147\u0004\u0148\t\u0148\u0003\u0002\u0006", - "\u0002\u0293\n\u0002\r\u0002\u000e\u0002\u0294\u0003\u0002\u0003\u0002", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0006\u0003", - "\u029e\n\u0003\r\u0003\u000e\u0003\u029f\u0003\u0003\u0003\u0003\u0003", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003", - "\u0004\u0007\u0004\u02ab\n\u0004\f\u0004\u000e\u0004\u02ae\u000b\u0004", - "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0005", - "\u0003\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u02b9\n\u0005\u0003", - "\u0005\u0007\u0005\u02bc\n\u0005\f\u0005\u000e\u0005\u02bf\u000b\u0005", - "\u0003\u0005\u0005\u0005\u02c2\n\u0005\u0003\u0005\u0003\u0005\u0005", - "\u0005\u02c6\n\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005", - "\u0005\u0005\u02cc\n\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u02d0", - "\n\u0005\u0005\u0005\u02d2\n\u0005\u0003\u0005\u0003\u0005\u0003\u0006", - "\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006", - "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\b", - "\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003", - "\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\f\u0003", - "\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\r\u0003", - "\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e", - "\u0003\u000e\u0003\u000e\u0003\u000e\u0003\u000f\u0003\u000f\u0003\u000f", - "\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010", - "\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0003\u0011", - "\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012", - "\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013", - "\u0003\u0013\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014", - "\u0003\u0014\u0003\u0014\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015", - "\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016", - "\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003\u0017", - "\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019", - "\u0003\u0019\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003\u001b", - "\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001d", - "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d", - "\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e", - "\u0003\u001e\u0003\u001e\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f", - "\u0003\u001f\u0003 \u0003 \u0003 \u0003 \u0003 \u0003 \u0003!\u0003", - "!\u0003!\u0003\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0003", - "#\u0003#\u0003#\u0003#\u0003$\u0003$\u0003$\u0003$\u0003$\u0003$\u0003", - "%\u0003%\u0003%\u0003%\u0003&\u0003&\u0003&\u0003&\u0003&\u0003\'\u0003", - "\'\u0003\'\u0003\'\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(", - "\u0003(\u0003(\u0003)\u0003)\u0003)\u0003)\u0003)\u0003*\u0003*\u0003", - "*\u0003*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003+\u0003,\u0003,\u0003", - ",\u0003,\u0003,\u0003-\u0003-\u0003-\u0003-\u0003.\u0003.\u0003.\u0003", + "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0003", + "\u0002\u0006\u0002\u027f\n\u0002\r\u0002\u000e\u0002\u0280\u0003\u0002", + "\u0003\u0002\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0007\u0003", + "\u0289\n\u0003\f\u0003\u000e\u0003\u028c\u000b\u0003\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003", + "\u0004\u0003\u0004\u0005\u0004\u0297\n\u0004\u0003\u0004\u0007\u0004", + "\u029a\n\u0004\f\u0004\u000e\u0004\u029d\u000b\u0004\u0003\u0004\u0005", + "\u0004\u02a0\n\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02a4\n\u0004", + "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02aa\n", + "\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02ae\n\u0004\u0005\u0004", + "\u02b0\n\u0004\u0003\u0004\u0003\u0004\u0003\u0005\u0003\u0005\u0003", + "\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0006\u0003", + "\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0007\u0003\u0007\u0003", + "\u0007\u0003\u0007\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\n\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", + "\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003", + "\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0003", + "\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003", + "\u000f\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0003", + "\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003", + "\u0011\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003", + "\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003", + "\u0013\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", + "\u0014\u0003\u0014\u0003\u0014\u0003\u0015\u0003\u0015\u0003\u0015\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016\u0003", + "\u0017\u0003\u0017\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003", + "\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0003\u001a\u0003\u001a\u0003", + "\u001a\u0003\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003", + "\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003", + "\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003", + "\u001d\u0003\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003", + "\u001e\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003", + "\u001f\u0003 \u0003 \u0003 \u0003!\u0003!\u0003!\u0003!\u0003!\u0003", + "\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0003#\u0003", + "#\u0003#\u0003#\u0003$\u0003$\u0003$\u0003$\u0003%\u0003%\u0003%\u0003", + "%\u0003%\u0003&\u0003&\u0003&\u0003&\u0003\'\u0003\'\u0003\'\u0003\'", + "\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003(\u0003(\u0003(\u0003", + "(\u0003(\u0003)\u0003)\u0003)\u0003)\u0003)\u0003*\u0003*\u0003*\u0003", + "*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003+\u0003,\u0003,\u0003,\u0003", + ",\u0003-\u0003-\u0003-\u0003-\u0003-\u0003.\u0003.\u0003.\u0003.\u0003", ".\u0003.\u0003/\u0003/\u0003/\u0003/\u0003/\u0003/\u00030\u00030\u0003", - "0\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00031\u00031\u0003", - "2\u00032\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u00033\u0003", - "4\u00034\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u00035\u0003", - "5\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00037\u0003", - "7\u00037\u00038\u00038\u00038\u00038\u00038\u00038\u00039\u00039\u0003", - "9\u00039\u00039\u00039\u00039\u00039\u0003:\u0003:\u0003:\u0003:\u0003", - ":\u0003:\u0003:\u0003;\u0003;\u0003;\u0003;\u0003;\u0003<\u0003<\u0003", - "<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003=\u0003=\u0003", - "=\u0003=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003>\u0003>\u0003?\u0003", - "?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003@\u0003", - "@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003A\u0003", - "A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003B\u0003", - "B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003C\u0003", - "C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003E\u0003", - "E\u0003E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003G\u0003", - "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003H\u0003", - "H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003J\u0003", - "J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003K\u0003", - "K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003L\u0003L\u0003", - "L\u0003L\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003N\u0003", - "N\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003O\u0003O\u0003O\u0003", - "O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", - "Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003R\u0003", - "R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003S\u0003S\u0003", - "S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", - "T\u0003U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003V\u0003V\u0003V\u0003", - "V\u0003W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003X\u0003", - "X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", - "Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003Z\u0003Z\u0003Z\u0003[\u0003[\u0003", - "[\u0003[\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003", - "\\\u0003\\\u0003\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003]\u0003", - "]\u0003]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003^\u0003^\u0003^\u0003", - "_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003`\u0003`\u0003`\u0003`\u0003", - "`\u0003`\u0003`\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003", - "a\u0003a\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003", - "b\u0003b\u0003c\u0003c\u0003c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", - "d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003e\u0003e\u0003e\u0003", + "0\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00031\u00032\u0003", + "2\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u00033\u00033\u0003", + "4\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u00035\u00035\u0003", + "5\u00035\u00035\u00036\u00036\u00036\u00037\u00037\u00037\u00037\u0003", + "7\u00037\u00038\u00038\u00038\u00038\u00038\u00038\u00038\u00038\u0003", + "9\u00039\u00039\u00039\u00039\u00039\u00039\u0003:\u0003:\u0003:\u0003", + ":\u0003:\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003", + ";\u0003;\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003=\u0003=\u0003", + "=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", + ">\u0003>\u0003>\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003", + "?\u0003?\u0003?\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003", + "@\u0003@\u0003@\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003", + "A\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003C\u0003", + "C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003E\u0003E\u0003", + "E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", + "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003", + "H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003J\u0003J\u0003J\u0003J\u0003J\u0003K\u0003K\u0003", + "K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003", + "L\u0003L\u0003L\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003", + "N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003O\u0003O\u0003O\u0003O\u0003", + "O\u0003O\u0003O\u0003O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", + "P\u0003P\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003", + "R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003", + "S\u0003S\u0003S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", + "U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003V\u0003V\u0003V\u0003V\u0003", + "W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003", + "X\u0003X\u0003X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", + "Y\u0003Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003[\u0003[\u0003[\u0003[\u0003", + "[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003\\\u0003\\\u0003\\", + "\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003]\u0003", + "]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003", + "_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003`\u0003`\u0003`\u0003", + "`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003a\u0003a\u0003a\u0003a\u0003", + "a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003b\u0003b\u0003b\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", "e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003f\u0003f\u0003f\u0003", - "f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003h\u0003", - "h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003i\u0003i\u0003", - "i\u0003i\u0003i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003k\u0003k\u0003", - "k\u0003k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003m\u0003", - "m\u0003m\u0003m\u0003m\u0003m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003", - "n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003o\u0003o\u0003o\u0003", - "o\u0003o\u0003o\u0003o\u0003p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003", - "p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003r\u0003", - "r\u0003r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003s\u0003", - "s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003u\u0003", - "u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003v\u0003v\u0003", - "v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003", - "x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003y\u0003y\u0003", - "y\u0003z\u0003z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003{\u0003", - "|\u0003|\u0003|\u0003|\u0003|\u0003}\u0003}\u0003}\u0003~\u0003~\u0003", - "~\u0003~\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003\u0080", + "f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003", + "h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003", + "i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003j\u0003j\u0003k\u0003k\u0003", + "k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003l\u0003m\u0003", + "m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003", + "m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003o\u0003o\u0003", + "o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003p\u0003p\u0003p\u0003", + "p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003", + "r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003s\u0003s\u0003", + "s\u0003s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003", + "t\u0003t\u0003u\u0003u\u0003u\u0003v\u0003v\u0003v\u0003v\u0003v\u0003", + "v\u0003v\u0003v\u0003v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003", + "w\u0003w\u0003x\u0003x\u0003x\u0003y\u0003y\u0003y\u0003y\u0003y\u0003", + "z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003{\u0003{\u0003|\u0003", + "|\u0003|\u0003}\u0003}\u0003}\u0003}\u0003~\u0003~\u0003~\u0003\u007f", + "\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003\u0080\u0003\u0080", "\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081", - "\u0003\u0081\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082", - "\u0003\u0082\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083", - "\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0084\u0003\u0084", - "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0085\u0003\u0085", - "\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085", - "\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087\u0003\u0087", - "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088", - "\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088", + "\u0003\u0081\u0003\u0081\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082", + "\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0083", + "\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0084", + "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084", + "\u0003\u0084\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0086", + "\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087", + "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087", + "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088\u0003\u0088", "\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", - "\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", - "\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", - "\u0003\u008a\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008c", + "\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", + "\u0003\u0089\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", + "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b", + "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008c", "\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c", - "\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008d\u0003\u008d", - "\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008e", - "\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f", - "\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0091", + "\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008e\u0003\u008e", + "\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f", + "\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090", + "\u0003\u0090\u0003\u0090\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", "\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", "\u0003\u0091\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092", - "\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092", + "\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0093", "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093", - "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094\u0003\u0094", - "\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094", - "\u0003\u0094\u0003\u0094\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095", - "\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0096\u0003\u0096\u0003\u0096", - "\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0097\u0003\u0097\u0003\u0097", - "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0098\u0003\u0098\u0003\u0098", + "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094\u0003\u0094\u0003\u0094", + "\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0095\u0003\u0095", + "\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0096\u0003\u0096", + "\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0097\u0003\u0097", + "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", + "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", + "\u0003\u0097\u0003\u0097\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", - "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", - "\u0003\u0098\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", + "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0099\u0003\u0099\u0003\u0099", "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", - "\u0003\u0099\u0003\u0099\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a", + "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u009a\u0003\u009a", "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a", - "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b\u0003\u009b", - "\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b", - "\u0003\u009b\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c", + "\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b", + "\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009c\u0003\u009c\u0003\u009c", + "\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c", "\u0003\u009c\u0003\u009c\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", "\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", "\u0003\u009d\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e", - "\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e", - "\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f", - "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a1", - "\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1", - "\u0003\u00a1\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", - "\u0003\u00a2\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", - "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4", + "\u0003\u009e\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f", + "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0", + "\u0003\u00a0\u0003\u00a0\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1", + "\u0003\u00a1\u0003\u00a1\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", + "\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", + "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", + "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4\u0003\u00a4\u0003\u00a4", "\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4", - "\u0003\u00a4\u0003\u00a4\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", - "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a6", - "\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6", - "\u0003\u00a6\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7", - "\u0003\u00a7\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", - "\u0003\u00a8\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9", + "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", + "\u0003\u00a5\u0003\u00a5\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6", + "\u0003\u00a6\u0003\u00a6\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7", + "\u0003\u00a7\u0003\u00a7\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", + "\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a9\u0003\u00a9", "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00aa\u0003\u00aa\u0003\u00aa", - "\u0003\u00aa\u0003\u00aa\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab", - "\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab", + "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa", + "\u0003\u00aa\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab", + "\u0003\u00ab\u0003\u00ab\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", "\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", - "\u0003\u00ac\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", - "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ae", - "\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae", - "\u0003\u00ae\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", - "\u0003\u00af\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", + "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", + "\u0003\u00ad\u0003\u00ad\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae", + "\u0003\u00ae\u0003\u00ae\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00b0\u0003\u00b0", "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", - "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b1\u0003\u00b1\u0003\u00b1", + "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b1", "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1", - "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b2\u0003\u00b2", - "\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2", - "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3", - "\u0003\u00b3\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4", - "\u0003\u00b4\u0003\u00b4\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5", + "\u0003\u00b1\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2", + "\u0003\u00b2\u0003\u00b2\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3", + "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b4\u0003\u00b4\u0003\u00b4", + "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4", + "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b5\u0003\u00b5\u0003\u00b5", "\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5", - "\u0003\u00b5\u0003\u00b5\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", - "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7", - "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7", - "\u0003\u00b7\u0003\u00b7\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", - "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b9\u0003\u00b9", + "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", + "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7\u0003\u00b7\u0003\u00b7", + "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b8", + "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", + "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b9\u0003\u00b9\u0003\u00b9", "\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9", "\u0003\u00b9\u0003\u00b9\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", - "\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", - "\u0003\u00ba\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", - "\u0003\u00bb\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", - "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bd\u0003\u00bd\u0003\u00bd", - "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd", - "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00be\u0003\u00be\u0003\u00be", - "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00bf\u0003\u00bf", - "\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00ba\u0003\u00ba\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", + "\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bc\u0003\u00bc", + "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", + "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bd\u0003\u00bd", + "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00be", + "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be", + "\u0003\u00be\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00c0\u0003\u00c0", "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0", - "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c1\u0003\u00c1\u0003\u00c1", - "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1", - "\u0003\u00c1\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2", - "\u0003\u00c2\u0003\u00c2\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3", - "\u0003\u00c3\u0003\u00c3\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4", + "\u0003\u00c0\u0003\u00c0\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1", + "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c2\u0003\u00c2\u0003\u00c2", + "\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c3\u0003\u00c3\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c4\u0003\u00c4\u0003\u00c4", "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4", - "\u0003\u00c4\u0003\u00c4\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5", + "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c5\u0003\u00c5", "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5", - "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c6\u0003\u00c6\u0003\u00c6", - "\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6", - "\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7", - "\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c8\u0003\u00c8", - "\u0003\u00c8\u0003\u00c8\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9", - "\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00ca", - "\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca", - "\u0003\u00ca\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb", + "\u0003\u00c5\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6", + "\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c7", + "\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c8\u0003\u00c8\u0003\u00c8", + "\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8", + "\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9", + "\u0003\u00c9\u0003\u00c9\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca", + "\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00cb\u0003\u00cb", "\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cc\u0003\u00cc\u0003\u00cc", + "\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc", "\u0003\u00cc\u0003\u00cc\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", "\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", - "\u0003\u00cd\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", - "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", - "\u0003\u00ce\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf", - "\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00d0\u0003\u00d0", - "\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0", - "\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1", - "\u0003\u00d1\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d2", + "\u0003\u00cd\u0003\u00cd\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", + "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00cf", + "\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf", + "\u0003\u00cf\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0", + "\u0003\u00d0\u0003\u00d0\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1", + "\u0003\u00d1\u0003\u00d1\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d2", "\u0003\u00d2\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3", - "\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4", + "\u0003\u00d3\u0003\u00d3\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4", "\u0003\u00d4\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5", - "\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6", - "\u0003\u00d6\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7", - "\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d8\u0003\u00d8\u0003\u00d8", - "\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d9\u0003\u00d9", + "\u0003\u00d5\u0003\u00d5\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6", + "\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d7\u0003\u00d7", + "\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d8", + "\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8", "\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00da", "\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00db\u0003\u00db", - "\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00dc\u0003\u00dc\u0003\u00dc", - "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dd\u0003\u00dd\u0003\u00dd", + "\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00dc\u0003\u00dc", + "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc", + "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dd\u0003\u00dd", "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd", "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00de\u0003\u00de\u0003\u00de", "\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de", - "\u0003\u00de\u0003\u00de\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df", - "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df", - "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00e0\u0003\u00e0\u0003\u00e0", - "\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e1\u0003\u00e1\u0003\u00e1", - "\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e2", - "\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e3", - "\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3", - "\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e5", - "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e6", - "\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6", + "\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00df\u0003\u00df", + "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00e0\u0003\u00e0", + "\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0", + "\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1", + "\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2", + "\u0003\u00e2\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3", + "\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4", + "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5", + "\u0003\u00e5\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6", + "\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e7", "\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7", - "\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e8\u0003\u00e8", - "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e9", + "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", + "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", + "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e9\u0003\u00e9", "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9", - "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9", - "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00ea\u0003\u00ea\u0003\u00ea", - "\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea", - "\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00ec\u0003\u00ec", - "\u0003\u00ec\u0003\u00ec\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed", - "\u0003\u00ed\u0003\u00ed\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ee", + "\u0003\u00e9\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00eb", + "\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00ec\u0003\u00ec\u0003\u00ec", + "\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ed\u0003\u00ed\u0003\u00ed", + "\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ee\u0003\u00ee\u0003\u00ee", "\u0003\u00ee\u0003\u00ee\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00ef", "\u0003\u00ef\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0", - "\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1", - "\u0003\u00f1\u0003\u00f1\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2", - "\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f3\u0003\u00f3\u0003\u00f3", - "\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5", + "\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f1\u0003\u00f1\u0003\u00f1", + "\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f2\u0003\u00f2", + "\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f3", + "\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", + "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f5\u0003\u00f5\u0003\u00f5", "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5", - "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5", - "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", - "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", - "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f7\u0003\u00f7", - "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", + "\u0003\u00f5\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", + "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f7", "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", + "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f8", "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", - "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", - "\u0003\u00f8\u0003\u00f8\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", + "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f9", "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", - "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00fa", - "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", - "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", - "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", + "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00fa\u0003\u00fa\u0003\u00fa", + "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fb", "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", - "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", + "\u0003\u00fb\u0003\u00fb\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", + "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fd", + "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fe", "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", "\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", - "\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", - "\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", - "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0101\u0003\u0101\u0003\u0101", - "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101", - "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0102\u0003\u0102", - "\u0006\u0102\u0a3e\n\u0102\r\u0102\u000e\u0102\u0a3f\u0003\u0102\u0003", - "\u0102\u0003\u0103\u0003\u0103\u0006\u0103\u0a46\n\u0103\r\u0103\u000e", - "\u0103\u0a47\u0003\u0103\u0003\u0103\u0003\u0104\u0003\u0104\u0003\u0104", - "\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106", - "\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0107\u0003\u0107\u0003\u0107", - "\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0108\u0003\u0108", - "\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109\u0003\u0109", - "\u0003\u0109\u0003\u0109\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a", - "\u0003\u010a\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b", - "\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010c\u0003\u010c\u0003\u010c", - "\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010d\u0003\u010d", - "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d", - "\u0003\u010d\u0003\u010d\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010e", - "\u0003\u010e\u0003\u010e\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f", - "\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u0110\u0003\u0110", - "\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110", + "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0101\u0003\u0101", + "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0102\u0003\u0102\u0003\u0102", + "\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0103", + "\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103", + "\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104", + "\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0105\u0003\u0105", + "\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106", + "\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106", + "\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107", + "\u0003\u0107\u0003\u0107\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108", + "\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109", + "\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u010a\u0003\u010a\u0003\u010a", + "\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010b\u0003\u010b", + "\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010c\u0003\u010c", + "\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010d", + "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010e\u0003\u010e", + "\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010f\u0003\u010f\u0003\u010f", + "\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f", + "\u0003\u010f\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110", + "\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0111\u0003\u0111", "\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111", - "\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0112\u0003\u0112\u0003\u0112", - "\u0003\u0112\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113", + "\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0113\u0003\u0113", "\u0003\u0113\u0003\u0113\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114", - "\u0003\u0114\u0003\u0114\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115", - "\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0116\u0003\u0116\u0003\u0116", - "\u0003\u0116\u0003\u0116\u0003\u0117\u0003\u0117\u0003\u0117\u0003\u0117", - "\u0003\u0117\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118", - "\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0119", - "\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u0119", - "\u0003\u0119\u0003\u0119\u0003\u011a\u0003\u011a\u0003\u011a\u0003\u011a", - "\u0003\u011a\u0003\u011a\u0003\u011a\u0003\u011a\u0003\u011b\u0003\u011b", - "\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011c\u0003\u011c", - "\u0003\u011d\u0003\u011d\u0003\u011d\u0003\u011d\u0003\u011d\u0003\u011e", - "\u0003\u011e\u0003\u011f\u0003\u011f\u0003\u0120\u0003\u0120\u0003\u0121", - "\u0003\u0121\u0003\u0122\u0003\u0122\u0003\u0123\u0003\u0123\u0003\u0124", - "\u0003\u0124\u0003\u0125\u0003\u0125\u0003\u0126\u0003\u0126\u0003\u0127", - "\u0003\u0127\u0003\u0128\u0003\u0128\u0003\u0129\u0003\u0129\u0003\u012a", - "\u0003\u012a\u0003\u012b\u0003\u012b\u0003\u012c\u0003\u012c\u0003\u012d", - "\u0003\u012d\u0003\u012e\u0003\u012e\u0003\u012f\u0003\u012f\u0003\u0130", - "\u0003\u0130\u0003\u0131\u0003\u0131\u0003\u0132\u0003\u0132\u0003\u0133", - "\u0003\u0133\u0003\u0134\u0003\u0134\u0003\u0135\u0003\u0135\u0003\u0136", - "\u0003\u0136\u0003\u0137\u0003\u0137\u0003\u0138\u0003\u0138\u0003\u0139", - "\u0003\u0139\u0003\u013a\u0003\u013a\u0003\u013a\u0003\u013b\u0003\u013b", - "\u0003\u013c\u0003\u013c\u0003\u013c\u0005\u013c\u0b30\n\u013c\u0003", - "\u013d\u0006\u013d\u0b33\n\u013d\r\u013d\u000e\u013d\u0b34\u0003\u013e", - "\u0006\u013e\u0b38\n\u013e\r\u013e\u000e\u013e\u0b39\u0005\u013e\u0b3c", - "\n\u013e\u0003\u013e\u0003\u013e\u0006\u013e\u0b40\n\u013e\r\u013e\u000e", - "\u013e\u0b41\u0003\u013e\u0006\u013e\u0b45\n\u013e\r\u013e\u000e\u013e", - "\u0b46\u0003\u013e\u0003\u013e\u0003\u013e\u0003\u013e\u0006\u013e\u0b4d", - "\n\u013e\r\u013e\u000e\u013e\u0b4e\u0005\u013e\u0b51\n\u013e\u0003\u013e", - "\u0003\u013e\u0006\u013e\u0b55\n\u013e\r\u013e\u000e\u013e\u0b56\u0003", - "\u013e\u0003\u013e\u0003\u013e\u0006\u013e\u0b5c\n\u013e\r\u013e\u000e", - "\u013e\u0b5d\u0003\u013e\u0003\u013e\u0005\u013e\u0b62\n\u013e\u0003", - "\u013f\u0003\u013f\u0003\u0140\u0003\u0140\u0003\u0140\u0006\u0140\u0b69", - "\n\u0140\r\u0140\u000e\u0140\u0b6a\u0003\u0141\u0003\u0141\u0005\u0141", - "\u0b6f\n\u0141\u0003\u0141\u0006\u0141\u0b72\n\u0141\r\u0141\u000e\u0141", - "\u0b73\u0003\u0142\u0007\u0142\u0b77\n\u0142\f\u0142\u000e\u0142\u0b7a", - "\u000b\u0142\u0003\u0142\u0006\u0142\u0b7d\n\u0142\r\u0142\u000e\u0142", - "\u0b7e\u0003\u0142\u0007\u0142\u0b82\n\u0142\f\u0142\u000e\u0142\u0b85", - "\u000b\u0142\u0003\u0143\u0003\u0143\u0003\u0144\u0003\u0144\u0003\u0145", - "\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145\u0007\u0145", - "\u0b91\n\u0145\f\u0145\u000e\u0145\u0b94\u000b\u0145\u0003\u0145\u0003", - "\u0145\u0003\u0146\u0003\u0146\u0003\u0146\u0003\u0146\u0003\u0146\u0003", - "\u0146\u0007\u0146\u0b9e\n\u0146\f\u0146\u000e\u0146\u0ba1\u000b\u0146", - "\u0003\u0146\u0003\u0146\u0003\u0147\u0003\u0147\u0003\u0147\u0006\u0147", - "\u0ba8\n\u0147\r\u0147\u000e\u0147\u0ba9\u0003\u0147\u0003\u0147\u0003", - "\u0148\u0003\u0148\u0003\u0148\u0003\u0148\u0003\u0148\u0003\u0148\u0007", - "\u0148\u0bb4\n\u0148\f\u0148\u000e\u0148\u0bb7\u000b\u0148\u0003\u0148", - "\u0003\u0148\u0006\u029f\u02ac\u0b78\u0b7e\u0002\u0149\u0003\u0003\u0005", - "\u0004\u0007\u0005\t\u0006\u000b\u0007\r\b\u000f\t\u0011\n\u0013\u000b", - "\u0015\f\u0017\r\u0019\u000e\u001b\u000f\u001d\u0010\u001f\u0011!\u0012", - "#\u0013%\u0014\'\u0015)\u0016+\u0017-\u0018/\u00191\u001a3\u001b5\u001c", - "7\u001d9\u001e;\u001f= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5", - "i6k7m8o9q:s;u{?}@\u007fA\u0081B\u0083C\u0085D\u0087E\u0089F\u008b", - "G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f", - "Q\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3", - "[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7", - "e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00db", - "o\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00ef", - "y\u00f1z\u00f3{\u00f5|\u00f7}\u00f9~\u00fb\u007f\u00fd\u0080\u00ff\u0081", - "\u0101\u0082\u0103\u0083\u0105\u0084\u0107\u0085\u0109\u0086\u010b\u0087", - "\u010d\u0088\u010f\u0089\u0111\u008a\u0113\u008b\u0115\u008c\u0117\u008d", - "\u0119\u008e\u011b\u008f\u011d\u0090\u011f\u0091\u0121\u0092\u0123\u0093", - "\u0125\u0094\u0127\u0095\u0129\u0096\u012b\u0097\u012d\u0098\u012f\u0099", - "\u0131\u009a\u0133\u009b\u0135\u009c\u0137\u009d\u0139\u009e\u013b\u009f", - "\u013d\u00a0\u013f\u00a1\u0141\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5", - "\u0149\u00a6\u014b\u00a7\u014d\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab", - "\u0155\u00ac\u0157\u00ad\u0159\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1", - "\u0161\u00b2\u0163\u00b3\u0165\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7", - "\u016d\u00b8\u016f\u00b9\u0171\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd", - "\u0179\u00be\u017b\u00bf\u017d\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3", - "\u0185\u00c4\u0187\u00c5\u0189\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9", - "\u0191\u00ca\u0193\u00cb\u0195\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf", - "\u019d\u00d0\u019f\u00d1\u01a1\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5", - "\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db", - "\u01b5\u00dc\u01b7\u00dd\u01b9\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1", - "\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7", - "\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed", - "\u01d9\u00ee\u01db\u00ef\u01dd\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3", - "\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9", - "\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff", - "\u01fd\u0100\u01ff\u0101\u0201\u0102\u0203\u0103\u0205\u0104\u0207\u0105", - "\u0209\u0106\u020b\u0107\u020d\u0108\u020f\u0109\u0211\u010a\u0213\u010b", - "\u0215\u010c\u0217\u010d\u0219\u010e\u021b\u010f\u021d\u0110\u021f\u0111", - "\u0221\u0112\u0223\u0113\u0225\u0114\u0227\u0115\u0229\u0116\u022b\u0117", - "\u022d\u0118\u022f\u0119\u0231\u011a\u0233\u011b\u0235\u011c\u0237\u011d", - "\u0239\u011e\u023b\u011f\u023d\u0120\u023f\u0121\u0241\u0122\u0243\u0123", - "\u0245\u0124\u0247\u0125\u0249\u0126\u024b\u0127\u024d\u0128\u024f\u0129", - "\u0251\u012a\u0253\u012b\u0255\u012c\u0257\u012d\u0259\u012e\u025b\u012f", - "\u025d\u0130\u025f\u0131\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135", - "\u0269\u0136\u026b\u0137\u026d\u0138\u026f\u0139\u0271\u013a\u0273\u013b", - "\u0275\u013c\u0277\u013d\u0279\u013e\u027b\u013f\u027d\u0140\u027f\u0141", - "\u0281\u0002\u0283\u0002\u0285\u0002\u0287\u0002\u0289\u0002\u028b\u0002", - "\u028d\u0002\u028f\u0002\u0003\u0002\u000f\u0005\u0002\u000b\f\u000f", - "\u000f\"\"\u0004\u0002\f\f\u000f\u000f\u0003\u0002bb\u0003\u0002$$\u0004", - "\u0002--//\u0006\u00022;C\\aac|\u0005\u0002C\\aac|\u0003\u00022;\u0004", - "\u0002C\\c|\u0004\u0002$$^^\u0004\u0002))^^\u0003\u000223\u0004\u0002", - "^^bb\u0002\u0bdd\u0002\u0003\u0003\u0002\u0002\u0002\u0002\u0005\u0003", - "\u0002\u0002\u0002\u0002\u0007\u0003\u0002\u0002\u0002\u0002\t\u0003", - "\u0002\u0002\u0002\u0002\u000b\u0003\u0002\u0002\u0002\u0002\r\u0003", - "\u0002\u0002\u0002\u0002\u000f\u0003\u0002\u0002\u0002\u0002\u0011\u0003", - "\u0002\u0002\u0002\u0002\u0013\u0003\u0002\u0002\u0002\u0002\u0015\u0003", - "\u0002\u0002\u0002\u0002\u0017\u0003\u0002\u0002\u0002\u0002\u0019\u0003", - "\u0002\u0002\u0002\u0002\u001b\u0003\u0002\u0002\u0002\u0002\u001d\u0003", - "\u0002\u0002\u0002\u0002\u001f\u0003\u0002\u0002\u0002\u0002!\u0003", - "\u0002\u0002\u0002\u0002#\u0003\u0002\u0002\u0002\u0002%\u0003\u0002", - "\u0002\u0002\u0002\'\u0003\u0002\u0002\u0002\u0002)\u0003\u0002\u0002", - "\u0002\u0002+\u0003\u0002\u0002\u0002\u0002-\u0003\u0002\u0002\u0002", - "\u0002/\u0003\u0002\u0002\u0002\u00021\u0003\u0002\u0002\u0002\u0002", - "3\u0003\u0002\u0002\u0002\u00025\u0003\u0002\u0002\u0002\u00027\u0003", - "\u0002\u0002\u0002\u00029\u0003\u0002\u0002\u0002\u0002;\u0003\u0002", - "\u0002\u0002\u0002=\u0003\u0002\u0002\u0002\u0002?\u0003\u0002\u0002", - "\u0002\u0002A\u0003\u0002\u0002\u0002\u0002C\u0003\u0002\u0002\u0002", - "\u0002E\u0003\u0002\u0002\u0002\u0002G\u0003\u0002\u0002\u0002\u0002", - "I\u0003\u0002\u0002\u0002\u0002K\u0003\u0002\u0002\u0002\u0002M\u0003", - "\u0002\u0002\u0002\u0002O\u0003\u0002\u0002\u0002\u0002Q\u0003\u0002", - "\u0002\u0002\u0002S\u0003\u0002\u0002\u0002\u0002U\u0003\u0002\u0002", - "\u0002\u0002W\u0003\u0002\u0002\u0002\u0002Y\u0003\u0002\u0002\u0002", - "\u0002[\u0003\u0002\u0002\u0002\u0002]\u0003\u0002\u0002\u0002\u0002", - "_\u0003\u0002\u0002\u0002\u0002a\u0003\u0002\u0002\u0002\u0002c\u0003", - "\u0002\u0002\u0002\u0002e\u0003\u0002\u0002\u0002\u0002g\u0003\u0002", - "\u0002\u0002\u0002i\u0003\u0002\u0002\u0002\u0002k\u0003\u0002\u0002", - "\u0002\u0002m\u0003\u0002\u0002\u0002\u0002o\u0003\u0002\u0002\u0002", - "\u0002q\u0003\u0002\u0002\u0002\u0002s\u0003\u0002\u0002\u0002\u0002", - "u\u0003\u0002\u0002\u0002\u0002w\u0003\u0002\u0002\u0002\u0002y\u0003", - "\u0002\u0002\u0002\u0002{\u0003\u0002\u0002\u0002\u0002}\u0003\u0002", - "\u0002\u0002\u0002\u007f\u0003\u0002\u0002\u0002\u0002\u0081\u0003\u0002", - "\u0002\u0002\u0002\u0083\u0003\u0002\u0002\u0002\u0002\u0085\u0003\u0002", - "\u0002\u0002\u0002\u0087\u0003\u0002\u0002\u0002\u0002\u0089\u0003\u0002", - "\u0002\u0002\u0002\u008b\u0003\u0002\u0002\u0002\u0002\u008d\u0003\u0002", - "\u0002\u0002\u0002\u008f\u0003\u0002\u0002\u0002\u0002\u0091\u0003\u0002", - "\u0002\u0002\u0002\u0093\u0003\u0002\u0002\u0002\u0002\u0095\u0003\u0002", - "\u0002\u0002\u0002\u0097\u0003\u0002\u0002\u0002\u0002\u0099\u0003\u0002", - "\u0002\u0002\u0002\u009b\u0003\u0002\u0002\u0002\u0002\u009d\u0003\u0002", - "\u0002\u0002\u0002\u009f\u0003\u0002\u0002\u0002\u0002\u00a1\u0003\u0002", - "\u0002\u0002\u0002\u00a3\u0003\u0002\u0002\u0002\u0002\u00a5\u0003\u0002", - "\u0002\u0002\u0002\u00a7\u0003\u0002\u0002\u0002\u0002\u00a9\u0003\u0002", - "\u0002\u0002\u0002\u00ab\u0003\u0002\u0002\u0002\u0002\u00ad\u0003\u0002", - "\u0002\u0002\u0002\u00af\u0003\u0002\u0002\u0002\u0002\u00b1\u0003\u0002", - "\u0002\u0002\u0002\u00b3\u0003\u0002\u0002\u0002\u0002\u00b5\u0003\u0002", - "\u0002\u0002\u0002\u00b7\u0003\u0002\u0002\u0002\u0002\u00b9\u0003\u0002", - "\u0002\u0002\u0002\u00bb\u0003\u0002\u0002\u0002\u0002\u00bd\u0003\u0002", - "\u0002\u0002\u0002\u00bf\u0003\u0002\u0002\u0002\u0002\u00c1\u0003\u0002", - "\u0002\u0002\u0002\u00c3\u0003\u0002\u0002\u0002\u0002\u00c5\u0003\u0002", - "\u0002\u0002\u0002\u00c7\u0003\u0002\u0002\u0002\u0002\u00c9\u0003\u0002", - "\u0002\u0002\u0002\u00cb\u0003\u0002\u0002\u0002\u0002\u00cd\u0003\u0002", - "\u0002\u0002\u0002\u00cf\u0003\u0002\u0002\u0002\u0002\u00d1\u0003\u0002", - "\u0002\u0002\u0002\u00d3\u0003\u0002\u0002\u0002\u0002\u00d5\u0003\u0002", - "\u0002\u0002\u0002\u00d7\u0003\u0002\u0002\u0002\u0002\u00d9\u0003\u0002", - "\u0002\u0002\u0002\u00db\u0003\u0002\u0002\u0002\u0002\u00dd\u0003\u0002", - "\u0002\u0002\u0002\u00df\u0003\u0002\u0002\u0002\u0002\u00e1\u0003\u0002", - "\u0002\u0002\u0002\u00e3\u0003\u0002\u0002\u0002\u0002\u00e5\u0003\u0002", - "\u0002\u0002\u0002\u00e7\u0003\u0002\u0002\u0002\u0002\u00e9\u0003\u0002", - "\u0002\u0002\u0002\u00eb\u0003\u0002\u0002\u0002\u0002\u00ed\u0003\u0002", - "\u0002\u0002\u0002\u00ef\u0003\u0002\u0002\u0002\u0002\u00f1\u0003\u0002", - "\u0002\u0002\u0002\u00f3\u0003\u0002\u0002\u0002\u0002\u00f5\u0003\u0002", - "\u0002\u0002\u0002\u00f7\u0003\u0002\u0002\u0002\u0002\u00f9\u0003\u0002", - "\u0002\u0002\u0002\u00fb\u0003\u0002\u0002\u0002\u0002\u00fd\u0003\u0002", - "\u0002\u0002\u0002\u00ff\u0003\u0002\u0002\u0002\u0002\u0101\u0003\u0002", - "\u0002\u0002\u0002\u0103\u0003\u0002\u0002\u0002\u0002\u0105\u0003\u0002", - "\u0002\u0002\u0002\u0107\u0003\u0002\u0002\u0002\u0002\u0109\u0003\u0002", - "\u0002\u0002\u0002\u010b\u0003\u0002\u0002\u0002\u0002\u010d\u0003\u0002", - "\u0002\u0002\u0002\u010f\u0003\u0002\u0002\u0002\u0002\u0111\u0003\u0002", - "\u0002\u0002\u0002\u0113\u0003\u0002\u0002\u0002\u0002\u0115\u0003\u0002", - "\u0002\u0002\u0002\u0117\u0003\u0002\u0002\u0002\u0002\u0119\u0003\u0002", - "\u0002\u0002\u0002\u011b\u0003\u0002\u0002\u0002\u0002\u011d\u0003\u0002", - "\u0002\u0002\u0002\u011f\u0003\u0002\u0002\u0002\u0002\u0121\u0003\u0002", - "\u0002\u0002\u0002\u0123\u0003\u0002\u0002\u0002\u0002\u0125\u0003\u0002", - "\u0002\u0002\u0002\u0127\u0003\u0002\u0002\u0002\u0002\u0129\u0003\u0002", - "\u0002\u0002\u0002\u012b\u0003\u0002\u0002\u0002\u0002\u012d\u0003\u0002", - "\u0002\u0002\u0002\u012f\u0003\u0002\u0002\u0002\u0002\u0131\u0003\u0002", - "\u0002\u0002\u0002\u0133\u0003\u0002\u0002\u0002\u0002\u0135\u0003\u0002", - "\u0002\u0002\u0002\u0137\u0003\u0002\u0002\u0002\u0002\u0139\u0003\u0002", - "\u0002\u0002\u0002\u013b\u0003\u0002\u0002\u0002\u0002\u013d\u0003\u0002", - "\u0002\u0002\u0002\u013f\u0003\u0002\u0002\u0002\u0002\u0141\u0003\u0002", - "\u0002\u0002\u0002\u0143\u0003\u0002\u0002\u0002\u0002\u0145\u0003\u0002", - "\u0002\u0002\u0002\u0147\u0003\u0002\u0002\u0002\u0002\u0149\u0003\u0002", - "\u0002\u0002\u0002\u014b\u0003\u0002\u0002\u0002\u0002\u014d\u0003\u0002", - "\u0002\u0002\u0002\u014f\u0003\u0002\u0002\u0002\u0002\u0151\u0003\u0002", - "\u0002\u0002\u0002\u0153\u0003\u0002\u0002\u0002\u0002\u0155\u0003\u0002", - "\u0002\u0002\u0002\u0157\u0003\u0002\u0002\u0002\u0002\u0159\u0003\u0002", - "\u0002\u0002\u0002\u015b\u0003\u0002\u0002\u0002\u0002\u015d\u0003\u0002", - "\u0002\u0002\u0002\u015f\u0003\u0002\u0002\u0002\u0002\u0161\u0003\u0002", - "\u0002\u0002\u0002\u0163\u0003\u0002\u0002\u0002\u0002\u0165\u0003\u0002", - "\u0002\u0002\u0002\u0167\u0003\u0002\u0002\u0002\u0002\u0169\u0003\u0002", - "\u0002\u0002\u0002\u016b\u0003\u0002\u0002\u0002\u0002\u016d\u0003\u0002", - "\u0002\u0002\u0002\u016f\u0003\u0002\u0002\u0002\u0002\u0171\u0003\u0002", - "\u0002\u0002\u0002\u0173\u0003\u0002\u0002\u0002\u0002\u0175\u0003\u0002", - "\u0002\u0002\u0002\u0177\u0003\u0002\u0002\u0002\u0002\u0179\u0003\u0002", - "\u0002\u0002\u0002\u017b\u0003\u0002\u0002\u0002\u0002\u017d\u0003\u0002", - "\u0002\u0002\u0002\u017f\u0003\u0002\u0002\u0002\u0002\u0181\u0003\u0002", - "\u0002\u0002\u0002\u0183\u0003\u0002\u0002\u0002\u0002\u0185\u0003\u0002", - "\u0002\u0002\u0002\u0187\u0003\u0002\u0002\u0002\u0002\u0189\u0003\u0002", - "\u0002\u0002\u0002\u018b\u0003\u0002\u0002\u0002\u0002\u018d\u0003\u0002", - "\u0002\u0002\u0002\u018f\u0003\u0002\u0002\u0002\u0002\u0191\u0003\u0002", - "\u0002\u0002\u0002\u0193\u0003\u0002\u0002\u0002\u0002\u0195\u0003\u0002", - "\u0002\u0002\u0002\u0197\u0003\u0002\u0002\u0002\u0002\u0199\u0003\u0002", - "\u0002\u0002\u0002\u019b\u0003\u0002\u0002\u0002\u0002\u019d\u0003\u0002", - "\u0002\u0002\u0002\u019f\u0003\u0002\u0002\u0002\u0002\u01a1\u0003\u0002", - "\u0002\u0002\u0002\u01a3\u0003\u0002\u0002\u0002\u0002\u01a5\u0003\u0002", - "\u0002\u0002\u0002\u01a7\u0003\u0002\u0002\u0002\u0002\u01a9\u0003\u0002", - "\u0002\u0002\u0002\u01ab\u0003\u0002\u0002\u0002\u0002\u01ad\u0003\u0002", - "\u0002\u0002\u0002\u01af\u0003\u0002\u0002\u0002\u0002\u01b1\u0003\u0002", - "\u0002\u0002\u0002\u01b3\u0003\u0002\u0002\u0002\u0002\u01b5\u0003\u0002", - "\u0002\u0002\u0002\u01b7\u0003\u0002\u0002\u0002\u0002\u01b9\u0003\u0002", - "\u0002\u0002\u0002\u01bb\u0003\u0002\u0002\u0002\u0002\u01bd\u0003\u0002", - "\u0002\u0002\u0002\u01bf\u0003\u0002\u0002\u0002\u0002\u01c1\u0003\u0002", - "\u0002\u0002\u0002\u01c3\u0003\u0002\u0002\u0002\u0002\u01c5\u0003\u0002", - "\u0002\u0002\u0002\u01c7\u0003\u0002\u0002\u0002\u0002\u01c9\u0003\u0002", - "\u0002\u0002\u0002\u01cb\u0003\u0002\u0002\u0002\u0002\u01cd\u0003\u0002", - "\u0002\u0002\u0002\u01cf\u0003\u0002\u0002\u0002\u0002\u01d1\u0003\u0002", - "\u0002\u0002\u0002\u01d3\u0003\u0002\u0002\u0002\u0002\u01d5\u0003\u0002", - "\u0002\u0002\u0002\u01d7\u0003\u0002\u0002\u0002\u0002\u01d9\u0003\u0002", - "\u0002\u0002\u0002\u01db\u0003\u0002\u0002\u0002\u0002\u01dd\u0003\u0002", - "\u0002\u0002\u0002\u01df\u0003\u0002\u0002\u0002\u0002\u01e1\u0003\u0002", - "\u0002\u0002\u0002\u01e3\u0003\u0002\u0002\u0002\u0002\u01e5\u0003\u0002", - "\u0002\u0002\u0002\u01e7\u0003\u0002\u0002\u0002\u0002\u01e9\u0003\u0002", - "\u0002\u0002\u0002\u01eb\u0003\u0002\u0002\u0002\u0002\u01ed\u0003\u0002", - "\u0002\u0002\u0002\u01ef\u0003\u0002\u0002\u0002\u0002\u01f1\u0003\u0002", - "\u0002\u0002\u0002\u01f3\u0003\u0002\u0002\u0002\u0002\u01f5\u0003\u0002", - "\u0002\u0002\u0002\u01f7\u0003\u0002\u0002\u0002\u0002\u01f9\u0003\u0002", - "\u0002\u0002\u0002\u01fb\u0003\u0002\u0002\u0002\u0002\u01fd\u0003\u0002", - "\u0002\u0002\u0002\u01ff\u0003\u0002\u0002\u0002\u0002\u0201\u0003\u0002", - "\u0002\u0002\u0002\u0203\u0003\u0002\u0002\u0002\u0002\u0205\u0003\u0002", - "\u0002\u0002\u0002\u0207\u0003\u0002\u0002\u0002\u0002\u0209\u0003\u0002", - "\u0002\u0002\u0002\u020b\u0003\u0002\u0002\u0002\u0002\u020d\u0003\u0002", - "\u0002\u0002\u0002\u020f\u0003\u0002\u0002\u0002\u0002\u0211\u0003\u0002", - "\u0002\u0002\u0002\u0213\u0003\u0002\u0002\u0002\u0002\u0215\u0003\u0002", - "\u0002\u0002\u0002\u0217\u0003\u0002\u0002\u0002\u0002\u0219\u0003\u0002", - "\u0002\u0002\u0002\u021b\u0003\u0002\u0002\u0002\u0002\u021d\u0003\u0002", - "\u0002\u0002\u0002\u021f\u0003\u0002\u0002\u0002\u0002\u0221\u0003\u0002", - "\u0002\u0002\u0002\u0223\u0003\u0002\u0002\u0002\u0002\u0225\u0003\u0002", - "\u0002\u0002\u0002\u0227\u0003\u0002\u0002\u0002\u0002\u0229\u0003\u0002", - "\u0002\u0002\u0002\u022b\u0003\u0002\u0002\u0002\u0002\u022d\u0003\u0002", - "\u0002\u0002\u0002\u022f\u0003\u0002\u0002\u0002\u0002\u0231\u0003\u0002", - "\u0002\u0002\u0002\u0233\u0003\u0002\u0002\u0002\u0002\u0235\u0003\u0002", - "\u0002\u0002\u0002\u0237\u0003\u0002\u0002\u0002\u0002\u0239\u0003\u0002", - "\u0002\u0002\u0002\u023b\u0003\u0002\u0002\u0002\u0002\u023d\u0003\u0002", - "\u0002\u0002\u0002\u023f\u0003\u0002\u0002\u0002\u0002\u0241\u0003\u0002", - "\u0002\u0002\u0002\u0243\u0003\u0002\u0002\u0002\u0002\u0245\u0003\u0002", - "\u0002\u0002\u0002\u0247\u0003\u0002\u0002\u0002\u0002\u0249\u0003\u0002", - "\u0002\u0002\u0002\u024b\u0003\u0002\u0002\u0002\u0002\u024d\u0003\u0002", - "\u0002\u0002\u0002\u024f\u0003\u0002\u0002\u0002\u0002\u0251\u0003\u0002", - "\u0002\u0002\u0002\u0253\u0003\u0002\u0002\u0002\u0002\u0255\u0003\u0002", - "\u0002\u0002\u0002\u0257\u0003\u0002\u0002\u0002\u0002\u0259\u0003\u0002", - "\u0002\u0002\u0002\u025b\u0003\u0002\u0002\u0002\u0002\u025d\u0003\u0002", - "\u0002\u0002\u0002\u025f\u0003\u0002\u0002\u0002\u0002\u0261\u0003\u0002", - "\u0002\u0002\u0002\u0263\u0003\u0002\u0002\u0002\u0002\u0265\u0003\u0002", - "\u0002\u0002\u0002\u0267\u0003\u0002\u0002\u0002\u0002\u0269\u0003\u0002", - "\u0002\u0002\u0002\u026b\u0003\u0002\u0002\u0002\u0002\u026d\u0003\u0002", - "\u0002\u0002\u0002\u026f\u0003\u0002\u0002\u0002\u0002\u0271\u0003\u0002", - "\u0002\u0002\u0002\u0273\u0003\u0002\u0002\u0002\u0002\u0275\u0003\u0002", - "\u0002\u0002\u0002\u0277\u0003\u0002\u0002\u0002\u0002\u0279\u0003\u0002", - "\u0002\u0002\u0002\u027b\u0003\u0002\u0002\u0002\u0002\u027d\u0003\u0002", - "\u0002\u0002\u0002\u027f\u0003\u0002\u0002\u0002\u0003\u0292\u0003\u0002", - "\u0002\u0002\u0005\u0298\u0003\u0002\u0002\u0002\u0007\u02a6\u0003\u0002", - "\u0002\u0002\t\u02d1\u0003\u0002\u0002\u0002\u000b\u02d5\u0003\u0002", - "\u0002\u0002\r\u02dc\u0003\u0002\u0002\u0002\u000f\u02e1\u0003\u0002", - "\u0002\u0002\u0011\u02e5\u0003\u0002\u0002\u0002\u0013\u02e8\u0003\u0002", - "\u0002\u0002\u0015\u02ec\u0003\u0002\u0002\u0002\u0017\u02f0\u0003\u0002", - "\u0002\u0002\u0019\u02f9\u0003\u0002\u0002\u0002\u001b\u02ff\u0003\u0002", - "\u0002\u0002\u001d\u0305\u0003\u0002\u0002\u0002\u001f\u0308\u0003\u0002", - "\u0002\u0002!\u0311\u0003\u0002\u0002\u0002#\u0316\u0003\u0002\u0002", - "\u0002%\u031b\u0003\u0002\u0002\u0002\'\u0322\u0003\u0002\u0002\u0002", - ")\u0328\u0003\u0002\u0002\u0002+\u032f\u0003\u0002\u0002\u0002-\u0335", - "\u0003\u0002\u0002\u0002/\u0338\u0003\u0002\u0002\u00021\u033b\u0003", - "\u0002\u0002\u00023\u033f\u0003\u0002\u0002\u00025\u0342\u0003\u0002", - "\u0002\u00027\u0346\u0003\u0002\u0002\u00029\u0349\u0003\u0002\u0002", - "\u0002;\u0350\u0003\u0002\u0002\u0002=\u0358\u0003\u0002\u0002\u0002", - "?\u035d\u0003\u0002\u0002\u0002A\u0363\u0003\u0002\u0002\u0002C\u0366", - "\u0003\u0002\u0002\u0002E\u036b\u0003\u0002\u0002\u0002G\u0371\u0003", - "\u0002\u0002\u0002I\u0377\u0003\u0002\u0002\u0002K\u037b\u0003\u0002", - "\u0002\u0002M\u0380\u0003\u0002\u0002\u0002O\u0384\u0003\u0002\u0002", - "\u0002Q\u038d\u0003\u0002\u0002\u0002S\u0392\u0003\u0002\u0002\u0002", - "U\u0397\u0003\u0002\u0002\u0002W\u039c\u0003\u0002\u0002\u0002Y\u03a1", - "\u0003\u0002\u0002\u0002[\u03a5\u0003\u0002\u0002\u0002]\u03aa\u0003", - "\u0002\u0002\u0002_\u03b0\u0003\u0002\u0002\u0002a\u03b6\u0003\u0002", - "\u0002\u0002c\u03bc\u0003\u0002\u0002\u0002e\u03c1\u0003\u0002\u0002", - "\u0002g\u03c6\u0003\u0002\u0002\u0002i\u03cc\u0003\u0002\u0002\u0002", - "k\u03d1\u0003\u0002\u0002\u0002m\u03d9\u0003\u0002\u0002\u0002o\u03dc", - "\u0003\u0002\u0002\u0002q\u03e2\u0003\u0002\u0002\u0002s\u03ea\u0003", - "\u0002\u0002\u0002u\u03f1\u0003\u0002\u0002\u0002w\u03f6\u0003\u0002", - "\u0002\u0002y\u0400\u0003\u0002\u0002\u0002{\u0406\u0003\u0002\u0002", - "\u0002}\u040b\u0003\u0002\u0002\u0002\u007f\u0415\u0003\u0002\u0002", - "\u0002\u0081\u041f\u0003\u0002\u0002\u0002\u0083\u0429\u0003\u0002\u0002", - "\u0002\u0085\u0431\u0003\u0002\u0002\u0002\u0087\u0437\u0003\u0002\u0002", - "\u0002\u0089\u043d\u0003\u0002\u0002\u0002\u008b\u0442\u0003\u0002\u0002", - "\u0002\u008d\u0447\u0003\u0002\u0002\u0002\u008f\u044e\u0003\u0002\u0002", - "\u0002\u0091\u0455\u0003\u0002\u0002\u0002\u0093\u045b\u0003\u0002\u0002", - "\u0002\u0095\u0465\u0003\u0002\u0002\u0002\u0097\u046a\u0003\u0002\u0002", - "\u0002\u0099\u0472\u0003\u0002\u0002\u0002\u009b\u0479\u0003\u0002\u0002", - "\u0002\u009d\u0480\u0003\u0002\u0002\u0002\u009f\u0485\u0003\u0002\u0002", - "\u0002\u00a1\u048e\u0003\u0002\u0002\u0002\u00a3\u0496\u0003\u0002\u0002", - "\u0002\u00a5\u049d\u0003\u0002\u0002\u0002\u00a7\u04a5\u0003\u0002\u0002", - "\u0002\u00a9\u04ad\u0003\u0002\u0002\u0002\u00ab\u04b2\u0003\u0002\u0002", - "\u0002\u00ad\u04b7\u0003\u0002\u0002\u0002\u00af\u04bc\u0003\u0002\u0002", - "\u0002\u00b1\u04c3\u0003\u0002\u0002\u0002\u00b3\u04cb\u0003\u0002\u0002", - "\u0002\u00b5\u04d2\u0003\u0002\u0002\u0002\u00b7\u04d6\u0003\u0002\u0002", - "\u0002\u00b9\u04e1\u0003\u0002\u0002\u0002\u00bb\u04eb\u0003\u0002\u0002", - "\u0002\u00bd\u04f0\u0003\u0002\u0002\u0002\u00bf\u04f6\u0003\u0002\u0002", - "\u0002\u00c1\u04fd\u0003\u0002\u0002\u0002\u00c3\u0506\u0003\u0002\u0002", - "\u0002\u00c5\u0510\u0003\u0002\u0002\u0002\u00c7\u0513\u0003\u0002\u0002", - "\u0002\u00c9\u051f\u0003\u0002\u0002\u0002\u00cb\u0528\u0003\u0002\u0002", - "\u0002\u00cd\u052e\u0003\u0002\u0002\u0002\u00cf\u0535\u0003\u0002\u0002", - "\u0002\u00d1\u053c\u0003\u0002\u0002\u0002\u00d3\u0544\u0003\u0002\u0002", - "\u0002\u00d5\u0548\u0003\u0002\u0002\u0002\u00d7\u054e\u0003\u0002\u0002", - "\u0002\u00d9\u0553\u0003\u0002\u0002\u0002\u00db\u0559\u0003\u0002\u0002", - "\u0002\u00dd\u0565\u0003\u0002\u0002\u0002\u00df\u056c\u0003\u0002\u0002", - "\u0002\u00e1\u0575\u0003\u0002\u0002\u0002\u00e3\u057b\u0003\u0002\u0002", - "\u0002\u00e5\u0582\u0003\u0002\u0002\u0002\u00e7\u0587\u0003\u0002\u0002", - "\u0002\u00e9\u058f\u0003\u0002\u0002\u0002\u00eb\u0598\u0003\u0002\u0002", - "\u0002\u00ed\u059b\u0003\u0002\u0002\u0002\u00ef\u05a4\u0003\u0002\u0002", - "\u0002\u00f1\u05ac\u0003\u0002\u0002\u0002\u00f3\u05af\u0003\u0002\u0002", - "\u0002\u00f5\u05b4\u0003\u0002\u0002\u0002\u00f7\u05b8\u0003\u0002\u0002", - "\u0002\u00f9\u05bd\u0003\u0002\u0002\u0002\u00fb\u05c0\u0003\u0002\u0002", - "\u0002\u00fd\u05c4\u0003\u0002\u0002\u0002\u00ff\u05c7\u0003\u0002\u0002", - "\u0002\u0101\u05cb\u0003\u0002\u0002\u0002\u0103\u05d0\u0003\u0002\u0002", - "\u0002\u0105\u05d6\u0003\u0002\u0002\u0002\u0107\u05df\u0003\u0002\u0002", - "\u0002\u0109\u05e5\u0003\u0002\u0002\u0002\u010b\u05ed\u0003\u0002\u0002", - "\u0002\u010d\u05f1\u0003\u0002\u0002\u0002\u010f\u05f7\u0003\u0002\u0002", - "\u0002\u0111\u0601\u0003\u0002\u0002\u0002\u0113\u0606\u0003\u0002\u0002", - "\u0002\u0115\u0612\u0003\u0002\u0002\u0002\u0117\u0616\u0003\u0002\u0002", - "\u0002\u0119\u0621\u0003\u0002\u0002\u0002\u011b\u0628\u0003\u0002\u0002", - "\u0002\u011d\u062c\u0003\u0002\u0002\u0002\u011f\u062f\u0003\u0002\u0002", - "\u0002\u0121\u0634\u0003\u0002\u0002\u0002\u0123\u063c\u0003\u0002\u0002", - "\u0002\u0125\u0647\u0003\u0002\u0002\u0002\u0127\u0651\u0003\u0002\u0002", - "\u0002\u0129\u065b\u0003\u0002\u0002\u0002\u012b\u0662\u0003\u0002\u0002", - "\u0002\u012d\u0668\u0003\u0002\u0002\u0002\u012f\u066e\u0003\u0002\u0002", - "\u0002\u0131\u067e\u0003\u0002\u0002\u0002\u0133\u068b\u0003\u0002\u0002", - "\u0002\u0135\u0698\u0003\u0002\u0002\u0002\u0137\u06a2\u0003\u0002\u0002", - "\u0002\u0139\u06a9\u0003\u0002\u0002\u0002\u013b\u06b4\u0003\u0002\u0002", - "\u0002\u013d\u06bf\u0003\u0002\u0002\u0002\u013f\u06c5\u0003\u0002\u0002", - "\u0002\u0141\u06ca\u0003\u0002\u0002\u0002\u0143\u06d2\u0003\u0002\u0002", - "\u0002\u0145\u06d8\u0003\u0002\u0002\u0002\u0147\u06e2\u0003\u0002\u0002", - "\u0002\u0149\u06eb\u0003\u0002\u0002\u0002\u014b\u06f4\u0003\u0002\u0002", - "\u0002\u014d\u06fc\u0003\u0002\u0002\u0002\u014f\u0702\u0003\u0002\u0002", - "\u0002\u0151\u0708\u0003\u0002\u0002\u0002\u0153\u0710\u0003\u0002\u0002", - "\u0002\u0155\u0715\u0003\u0002\u0002\u0002\u0157\u071f\u0003\u0002\u0002", - "\u0002\u0159\u0726\u0003\u0002\u0002\u0002\u015b\u0730\u0003\u0002\u0002", - "\u0002\u015d\u0738\u0003\u0002\u0002\u0002\u015f\u073e\u0003\u0002\u0002", - "\u0002\u0161\u074c\u0003\u0002\u0002\u0002\u0163\u0759\u0003\u0002\u0002", - "\u0002\u0165\u0761\u0003\u0002\u0002\u0002\u0167\u0768\u0003\u0002\u0002", - "\u0002\u0169\u076f\u0003\u0002\u0002\u0002\u016b\u077b\u0003\u0002\u0002", - "\u0002\u016d\u0784\u0003\u0002\u0002\u0002\u016f\u078d\u0003\u0002\u0002", - "\u0002\u0171\u0795\u0003\u0002\u0002\u0002\u0173\u079f\u0003\u0002\u0002", - "\u0002\u0175\u07aa\u0003\u0002\u0002\u0002\u0177\u07b0\u0003\u0002\u0002", - "\u0002\u0179\u07b8\u0003\u0002\u0002\u0002\u017b\u07c4\u0003\u0002\u0002", - "\u0002\u017d\u07cb\u0003\u0002\u0002\u0002\u017f\u07d3\u0003\u0002\u0002", - "\u0002\u0181\u07dc\u0003\u0002\u0002\u0002\u0183\u07e6\u0003\u0002\u0002", - "\u0002\u0185\u07ed\u0003\u0002\u0002\u0002\u0187\u07f3\u0003\u0002\u0002", - "\u0002\u0189\u07ff\u0003\u0002\u0002\u0002\u018b\u080c\u0003\u0002\u0002", - "\u0002\u018d\u0815\u0003\u0002\u0002\u0002\u018f\u081f\u0003\u0002\u0002", - "\u0002\u0191\u0823\u0003\u0002\u0002\u0002\u0193\u082c\u0003\u0002\u0002", - "\u0002\u0195\u0834\u0003\u0002\u0002\u0002\u0197\u083c\u0003\u0002\u0002", - "\u0002\u0199\u0841\u0003\u0002\u0002\u0002\u019b\u084c\u0003\u0002\u0002", - "\u0002\u019d\u0858\u0003\u0002\u0002\u0002\u019f\u0861\u0003\u0002\u0002", - "\u0002\u01a1\u0869\u0003\u0002\u0002\u0002\u01a3\u0870\u0003\u0002\u0002", - "\u0002\u01a5\u0876\u0003\u0002\u0002\u0002\u01a7\u087b\u0003\u0002\u0002", - "\u0002\u01a9\u0882\u0003\u0002\u0002\u0002\u01ab\u0887\u0003\u0002\u0002", - "\u0002\u01ad\u088e\u0003\u0002\u0002\u0002\u01af\u0896\u0003\u0002\u0002", - "\u0002\u01b1\u089d\u0003\u0002\u0002\u0002\u01b3\u08a4\u0003\u0002\u0002", - "\u0002\u01b5\u08a9\u0003\u0002\u0002\u0002\u01b7\u08ae\u0003\u0002\u0002", - "\u0002\u01b9\u08b4\u0003\u0002\u0002\u0002\u01bb\u08c0\u0003\u0002\u0002", - "\u0002\u01bd\u08cb\u0003\u0002\u0002\u0002\u01bf\u08d8\u0003\u0002\u0002", - "\u0002\u01c1\u08de\u0003\u0002\u0002\u0002\u01c3\u08e6\u0003\u0002\u0002", - "\u0002\u01c5\u08ec\u0003\u0002\u0002\u0002\u01c7\u08f3\u0003\u0002\u0002", - "\u0002\u01c9\u08f8\u0003\u0002\u0002\u0002\u01cb\u08fe\u0003\u0002\u0002", - "\u0002\u01cd\u0905\u0003\u0002\u0002\u0002\u01cf\u090f\u0003\u0002\u0002", - "\u0002\u01d1\u0916\u0003\u0002\u0002\u0002\u01d3\u0926\u0003\u0002\u0002", - "\u0002\u01d5\u092f\u0003\u0002\u0002\u0002\u01d7\u0933\u0003\u0002\u0002", - "\u0002\u01d9\u0937\u0003\u0002\u0002\u0002\u01db\u093d\u0003\u0002\u0002", - "\u0002\u01dd\u0943\u0003\u0002\u0002\u0002\u01df\u0948\u0003\u0002\u0002", - "\u0002\u01e1\u094d\u0003\u0002\u0002\u0002\u01e3\u0955\u0003\u0002\u0002", - "\u0002\u01e5\u095c\u0003\u0002\u0002\u0002\u01e7\u0963\u0003\u0002\u0002", - "\u0002\u01e9\u0972\u0003\u0002\u0002\u0002\u01eb\u0983\u0003\u0002\u0002", - "\u0002\u01ed\u0993\u0003\u0002\u0002\u0002\u01ef\u09a1\u0003\u0002\u0002", - "\u0002\u01f1\u09af\u0003\u0002\u0002\u0002\u01f3\u09be\u0003\u0002\u0002", - "\u0002\u01f5\u09d1\u0003\u0002\u0002\u0002\u01f7\u09dc\u0003\u0002\u0002", - "\u0002\u01f9\u09f2\u0003\u0002\u0002\u0002\u01fb\u0a01\u0003\u0002\u0002", - "\u0002\u01fd\u0a19\u0003\u0002\u0002\u0002\u01ff\u0a2b\u0003\u0002\u0002", - "\u0002\u0201\u0a2e\u0003\u0002\u0002\u0002\u0203\u0a3b\u0003\u0002\u0002", - "\u0002\u0205\u0a43\u0003\u0002\u0002\u0002\u0207\u0a4b\u0003\u0002\u0002", - "\u0002\u0209\u0a4e\u0003\u0002\u0002\u0002\u020b\u0a50\u0003\u0002\u0002", - "\u0002\u020d\u0a57\u0003\u0002\u0002\u0002\u020f\u0a5e\u0003\u0002\u0002", - "\u0002\u0211\u0a64\u0003\u0002\u0002\u0002\u0213\u0a68\u0003\u0002\u0002", - "\u0002\u0215\u0a6d\u0003\u0002\u0002\u0002\u0217\u0a75\u0003\u0002\u0002", - "\u0002\u0219\u0a7c\u0003\u0002\u0002\u0002\u021b\u0a86\u0003\u0002\u0002", - "\u0002\u021d\u0a8c\u0003\u0002\u0002\u0002\u021f\u0a94\u0003\u0002\u0002", - "\u0002\u0221\u0a9c\u0003\u0002\u0002\u0002\u0223\u0aa5\u0003\u0002\u0002", - "\u0002\u0225\u0aa9\u0003\u0002\u0002\u0002\u0227\u0ab0\u0003\u0002\u0002", - "\u0002\u0229\u0ab6\u0003\u0002\u0002\u0002\u022b\u0abd\u0003\u0002\u0002", - "\u0002\u022d\u0ac2\u0003\u0002\u0002\u0002\u022f\u0ac7\u0003\u0002\u0002", - "\u0002\u0231\u0ad1\u0003\u0002\u0002\u0002\u0233\u0ada\u0003\u0002\u0002", - "\u0002\u0235\u0ae2\u0003\u0002\u0002\u0002\u0237\u0ae6\u0003\u0002\u0002", - "\u0002\u0239\u0aea\u0003\u0002\u0002\u0002\u023b\u0aef\u0003\u0002\u0002", - "\u0002\u023d\u0af1\u0003\u0002\u0002\u0002\u023f\u0af3\u0003\u0002\u0002", - "\u0002\u0241\u0af5\u0003\u0002\u0002\u0002\u0243\u0af7\u0003\u0002\u0002", - "\u0002\u0245\u0af9\u0003\u0002\u0002\u0002\u0247\u0afb\u0003\u0002\u0002", - "\u0002\u0249\u0afd\u0003\u0002\u0002\u0002\u024b\u0aff\u0003\u0002\u0002", - "\u0002\u024d\u0b01\u0003\u0002\u0002\u0002\u024f\u0b03\u0003\u0002\u0002", - "\u0002\u0251\u0b05\u0003\u0002\u0002\u0002\u0253\u0b07\u0003\u0002\u0002", - "\u0002\u0255\u0b09\u0003\u0002\u0002\u0002\u0257\u0b0b\u0003\u0002\u0002", - "\u0002\u0259\u0b0d\u0003\u0002\u0002\u0002\u025b\u0b0f\u0003\u0002\u0002", - "\u0002\u025d\u0b11\u0003\u0002\u0002\u0002\u025f\u0b13\u0003\u0002\u0002", - "\u0002\u0261\u0b15\u0003\u0002\u0002\u0002\u0263\u0b17\u0003\u0002\u0002", - "\u0002\u0265\u0b19\u0003\u0002\u0002\u0002\u0267\u0b1b\u0003\u0002\u0002", - "\u0002\u0269\u0b1d\u0003\u0002\u0002\u0002\u026b\u0b1f\u0003\u0002\u0002", - "\u0002\u026d\u0b21\u0003\u0002\u0002\u0002\u026f\u0b23\u0003\u0002\u0002", - "\u0002\u0271\u0b25\u0003\u0002\u0002\u0002\u0273\u0b27\u0003\u0002\u0002", - "\u0002\u0275\u0b2a\u0003\u0002\u0002\u0002\u0277\u0b2f\u0003\u0002\u0002", - "\u0002\u0279\u0b32\u0003\u0002\u0002\u0002\u027b\u0b61\u0003\u0002\u0002", - "\u0002\u027d\u0b63\u0003\u0002\u0002\u0002\u027f\u0b68\u0003\u0002\u0002", - "\u0002\u0281\u0b6c\u0003\u0002\u0002\u0002\u0283\u0b78\u0003\u0002\u0002", - "\u0002\u0285\u0b86\u0003\u0002\u0002\u0002\u0287\u0b88\u0003\u0002\u0002", - "\u0002\u0289\u0b8a\u0003\u0002\u0002\u0002\u028b\u0b97\u0003\u0002\u0002", - "\u0002\u028d\u0ba4\u0003\u0002\u0002\u0002\u028f\u0bad\u0003\u0002\u0002", - "\u0002\u0291\u0293\t\u0002\u0002\u0002\u0292\u0291\u0003\u0002\u0002", - "\u0002\u0293\u0294\u0003\u0002\u0002\u0002\u0294\u0292\u0003\u0002\u0002", - "\u0002\u0294\u0295\u0003\u0002\u0002\u0002\u0295\u0296\u0003\u0002\u0002", - "\u0002\u0296\u0297\b\u0002\u0002\u0002\u0297\u0004\u0003\u0002\u0002", - "\u0002\u0298\u0299\u00071\u0002\u0002\u0299\u029a\u0007,\u0002\u0002", - "\u029a\u029b\u0007#\u0002\u0002\u029b\u029d\u0003\u0002\u0002\u0002", - "\u029c\u029e\u000b\u0002\u0002\u0002\u029d\u029c\u0003\u0002\u0002\u0002", - "\u029e\u029f\u0003\u0002\u0002\u0002\u029f\u02a0\u0003\u0002\u0002\u0002", - "\u029f\u029d\u0003\u0002\u0002\u0002\u02a0\u02a1\u0003\u0002\u0002\u0002", - "\u02a1\u02a2\u0007,\u0002\u0002\u02a2\u02a3\u00071\u0002\u0002\u02a3", - "\u02a4\u0003\u0002\u0002\u0002\u02a4\u02a5\b\u0003\u0003\u0002\u02a5", - "\u0006\u0003\u0002\u0002\u0002\u02a6\u02a7\u00071\u0002\u0002\u02a7", - "\u02a8\u0007,\u0002\u0002\u02a8\u02ac\u0003\u0002\u0002\u0002\u02a9", - "\u02ab\u000b\u0002\u0002\u0002\u02aa\u02a9\u0003\u0002\u0002\u0002\u02ab", - "\u02ae\u0003\u0002\u0002\u0002\u02ac\u02ad\u0003\u0002\u0002\u0002\u02ac", - "\u02aa\u0003\u0002\u0002\u0002\u02ad\u02af\u0003\u0002\u0002\u0002\u02ae", - "\u02ac\u0003\u0002\u0002\u0002\u02af\u02b0\u0007,\u0002\u0002\u02b0", - "\u02b1\u00071\u0002\u0002\u02b1\u02b2\u0003\u0002\u0002\u0002\u02b2", - "\u02b3\b\u0004\u0002\u0002\u02b3\b\u0003\u0002\u0002\u0002\u02b4\u02b5", - "\u0007/\u0002\u0002\u02b5\u02b6\u0007/\u0002\u0002\u02b6\u02b9\u0007", - "\"\u0002\u0002\u02b7\u02b9\u0007%\u0002\u0002\u02b8\u02b4\u0003\u0002", - "\u0002\u0002\u02b8\u02b7\u0003\u0002\u0002\u0002\u02b9\u02bd\u0003\u0002", - "\u0002\u0002\u02ba\u02bc\n\u0003\u0002\u0002\u02bb\u02ba\u0003\u0002", - "\u0002\u0002\u02bc\u02bf\u0003\u0002\u0002\u0002\u02bd\u02bb\u0003\u0002", - "\u0002\u0002\u02bd\u02be\u0003\u0002\u0002\u0002\u02be\u02c5\u0003\u0002", - "\u0002\u0002\u02bf\u02bd\u0003\u0002\u0002\u0002\u02c0\u02c2\u0007\u000f", - "\u0002\u0002\u02c1\u02c0\u0003\u0002\u0002\u0002\u02c1\u02c2\u0003\u0002", - "\u0002\u0002\u02c2\u02c3\u0003\u0002\u0002\u0002\u02c3\u02c6\u0007\f", - "\u0002\u0002\u02c4\u02c6\u0007\u0002\u0002\u0003\u02c5\u02c1\u0003\u0002", - "\u0002\u0002\u02c5\u02c4\u0003\u0002\u0002\u0002\u02c6\u02d2\u0003\u0002", - "\u0002\u0002\u02c7\u02c8\u0007/\u0002\u0002\u02c8\u02c9\u0007/\u0002", - "\u0002\u02c9\u02cf\u0003\u0002\u0002\u0002\u02ca\u02cc\u0007\u000f\u0002", - "\u0002\u02cb\u02ca\u0003\u0002\u0002\u0002\u02cb\u02cc\u0003\u0002\u0002", - "\u0002\u02cc\u02cd\u0003\u0002\u0002\u0002\u02cd\u02d0\u0007\f\u0002", - "\u0002\u02ce\u02d0\u0007\u0002\u0002\u0003\u02cf\u02cb\u0003\u0002\u0002", - "\u0002\u02cf\u02ce\u0003\u0002\u0002\u0002\u02d0\u02d2\u0003\u0002\u0002", - "\u0002\u02d1\u02b8\u0003\u0002\u0002\u0002\u02d1\u02c7\u0003\u0002\u0002", - "\u0002\u02d2\u02d3\u0003\u0002\u0002\u0002\u02d3\u02d4\b\u0005\u0002", - "\u0002\u02d4\n\u0003\u0002\u0002\u0002\u02d5\u02d6\u0007U\u0002\u0002", - "\u02d6\u02d7\u0007G\u0002\u0002\u02d7\u02d8\u0007N\u0002\u0002\u02d8", - "\u02d9\u0007G\u0002\u0002\u02d9\u02da\u0007E\u0002\u0002\u02da\u02db", - "\u0007V\u0002\u0002\u02db\f\u0003\u0002\u0002\u0002\u02dc\u02dd\u0007", - "H\u0002\u0002\u02dd\u02de\u0007T\u0002\u0002\u02de\u02df\u0007Q\u0002", - "\u0002\u02df\u02e0\u0007O\u0002\u0002\u02e0\u000e\u0003\u0002\u0002", - "\u0002\u02e1\u02e2\u0007C\u0002\u0002\u02e2\u02e3\u0007F\u0002\u0002", - "\u02e3\u02e4\u0007F\u0002\u0002\u02e4\u0010\u0003\u0002\u0002\u0002", - "\u02e5\u02e6\u0007C\u0002\u0002\u02e6\u02e7\u0007U\u0002\u0002\u02e7", - "\u0012\u0003\u0002\u0002\u0002\u02e8\u02e9\u0007C\u0002\u0002\u02e9", - "\u02ea\u0007N\u0002\u0002\u02ea\u02eb\u0007N\u0002\u0002\u02eb\u0014", - "\u0003\u0002\u0002\u0002\u02ec\u02ed\u0007C\u0002\u0002\u02ed\u02ee", - "\u0007P\u0002\u0002\u02ee\u02ef\u0007[\u0002\u0002\u02ef\u0016\u0003", - "\u0002\u0002\u0002\u02f0\u02f1\u0007F\u0002\u0002\u02f1\u02f2\u0007", - "K\u0002\u0002\u02f2\u02f3\u0007U\u0002\u0002\u02f3\u02f4\u0007V\u0002", - "\u0002\u02f4\u02f5\u0007K\u0002\u0002\u02f5\u02f6\u0007P\u0002\u0002", - "\u02f6\u02f7\u0007E\u0002\u0002\u02f7\u02f8\u0007V\u0002\u0002\u02f8", - "\u0018\u0003\u0002\u0002\u0002\u02f9\u02fa\u0007Y\u0002\u0002\u02fa", - "\u02fb\u0007J\u0002\u0002\u02fb\u02fc\u0007G\u0002\u0002\u02fc\u02fd", - "\u0007T\u0002\u0002\u02fd\u02fe\u0007G\u0002\u0002\u02fe\u001a\u0003", - "\u0002\u0002\u0002\u02ff\u0300\u0007I\u0002\u0002\u0300\u0301\u0007", - "T\u0002\u0002\u0301\u0302\u0007Q\u0002\u0002\u0302\u0303\u0007W\u0002", - "\u0002\u0303\u0304\u0007R\u0002\u0002\u0304\u001c\u0003\u0002\u0002", - "\u0002\u0305\u0306\u0007D\u0002\u0002\u0306\u0307\u0007[\u0002\u0002", - "\u0307\u001e\u0003\u0002\u0002\u0002\u0308\u0309\u0007I\u0002\u0002", - "\u0309\u030a\u0007T\u0002\u0002\u030a\u030b\u0007Q\u0002\u0002\u030b", - "\u030c\u0007W\u0002\u0002\u030c\u030d\u0007R\u0002\u0002\u030d\u030e", - "\u0007K\u0002\u0002\u030e\u030f\u0007P\u0002\u0002\u030f\u0310\u0007", - "I\u0002\u0002\u0310 \u0003\u0002\u0002\u0002\u0311\u0312\u0007U\u0002", - "\u0002\u0312\u0313\u0007G\u0002\u0002\u0313\u0314\u0007V\u0002\u0002", - "\u0314\u0315\u0007U\u0002\u0002\u0315\"\u0003\u0002\u0002\u0002\u0316", - "\u0317\u0007E\u0002\u0002\u0317\u0318\u0007W\u0002\u0002\u0318\u0319", - "\u0007D\u0002\u0002\u0319\u031a\u0007G\u0002\u0002\u031a$\u0003\u0002", - "\u0002\u0002\u031b\u031c\u0007T\u0002\u0002\u031c\u031d\u0007Q\u0002", - "\u0002\u031d\u031e\u0007N\u0002\u0002\u031e\u031f\u0007N\u0002\u0002", - "\u031f\u0320\u0007W\u0002\u0002\u0320\u0321\u0007R\u0002\u0002\u0321", - "&\u0003\u0002\u0002\u0002\u0322\u0323\u0007Q\u0002\u0002\u0323\u0324", - "\u0007T\u0002\u0002\u0324\u0325\u0007F\u0002\u0002\u0325\u0326\u0007", - "G\u0002\u0002\u0326\u0327\u0007T\u0002\u0002\u0327(\u0003\u0002\u0002", - "\u0002\u0328\u0329\u0007J\u0002\u0002\u0329\u032a\u0007C\u0002\u0002", - "\u032a\u032b\u0007X\u0002\u0002\u032b\u032c\u0007K\u0002\u0002\u032c", - "\u032d\u0007P\u0002\u0002\u032d\u032e\u0007I\u0002\u0002\u032e*\u0003", - "\u0002\u0002\u0002\u032f\u0330\u0007N\u0002\u0002\u0330\u0331\u0007", - "K\u0002\u0002\u0331\u0332\u0007O\u0002\u0002\u0332\u0333\u0007K\u0002", - "\u0002\u0333\u0334\u0007V\u0002\u0002\u0334,\u0003\u0002\u0002\u0002", - "\u0335\u0336\u0007C\u0002\u0002\u0336\u0337\u0007V\u0002\u0002\u0337", - ".\u0003\u0002\u0002\u0002\u0338\u0339\u0007Q\u0002\u0002\u0339\u033a", - "\u0007T\u0002\u0002\u033a0\u0003\u0002\u0002\u0002\u033b\u033c\u0007", - "C\u0002\u0002\u033c\u033d\u0007P\u0002\u0002\u033d\u033e\u0007F\u0002", - "\u0002\u033e2\u0003\u0002\u0002\u0002\u033f\u0340\u0007K\u0002\u0002", - "\u0340\u0341\u0007P\u0002\u0002\u03414\u0003\u0002\u0002\u0002\u0342", - "\u0343\u0007P\u0002\u0002\u0343\u0344\u0007Q\u0002\u0002\u0344\u0345", - "\u0007V\u0002\u0002\u03456\u0003\u0002\u0002\u0002\u0346\u0347\u0007", - "P\u0002\u0002\u0347\u0348\u0007Q\u0002\u0002\u03488\u0003\u0002\u0002", - "\u0002\u0349\u034a\u0007G\u0002\u0002\u034a\u034b\u0007Z\u0002\u0002", - "\u034b\u034c\u0007K\u0002\u0002\u034c\u034d\u0007U\u0002\u0002\u034d", - "\u034e\u0007V\u0002\u0002\u034e\u034f\u0007U\u0002\u0002\u034f:\u0003", - "\u0002\u0002\u0002\u0350\u0351\u0007D\u0002\u0002\u0351\u0352\u0007", - "G\u0002\u0002\u0352\u0353\u0007V\u0002\u0002\u0353\u0354\u0007Y\u0002", - "\u0002\u0354\u0355\u0007G\u0002\u0002\u0355\u0356\u0007G\u0002\u0002", - "\u0356\u0357\u0007P\u0002\u0002\u0357<\u0003\u0002\u0002\u0002\u0358", - "\u0359\u0007N\u0002\u0002\u0359\u035a\u0007K\u0002\u0002\u035a\u035b", - "\u0007M\u0002\u0002\u035b\u035c\u0007G\u0002\u0002\u035c>\u0003\u0002", - "\u0002\u0002\u035d\u035e\u0007T\u0002\u0002\u035e\u035f\u0007N\u0002", - "\u0002\u035f\u0360\u0007K\u0002\u0002\u0360\u0361\u0007M\u0002\u0002", - "\u0361\u0362\u0007G\u0002\u0002\u0362@\u0003\u0002\u0002\u0002\u0363", - "\u0364\u0007K\u0002\u0002\u0364\u0365\u0007U\u0002\u0002\u0365B\u0003", - "\u0002\u0002\u0002\u0366\u0367\u0007V\u0002\u0002\u0367\u0368\u0007", - "T\u0002\u0002\u0368\u0369\u0007W\u0002\u0002\u0369\u036a\u0007G\u0002", - "\u0002\u036aD\u0003\u0002\u0002\u0002\u036b\u036c\u0007H\u0002\u0002", - "\u036c\u036d\u0007C\u0002\u0002\u036d\u036e\u0007N\u0002\u0002\u036e", - "\u036f\u0007U\u0002\u0002\u036f\u0370\u0007G\u0002\u0002\u0370F\u0003", - "\u0002\u0002\u0002\u0371\u0372\u0007P\u0002\u0002\u0372\u0373\u0007", - "W\u0002\u0002\u0373\u0374\u0007N\u0002\u0002\u0374\u0375\u0007N\u0002", - "\u0002\u0375\u0376\u0007U\u0002\u0002\u0376H\u0003\u0002\u0002\u0002", - "\u0377\u0378\u0007C\u0002\u0002\u0378\u0379\u0007U\u0002\u0002\u0379", - "\u037a\u0007E\u0002\u0002\u037aJ\u0003\u0002\u0002\u0002\u037b\u037c", - "\u0007F\u0002\u0002\u037c\u037d\u0007G\u0002\u0002\u037d\u037e\u0007", - "U\u0002\u0002\u037e\u037f\u0007E\u0002\u0002\u037fL\u0003\u0002\u0002", - "\u0002\u0380\u0381\u0007H\u0002\u0002\u0381\u0382\u0007Q\u0002\u0002", - "\u0382\u0383\u0007T\u0002\u0002\u0383N\u0003\u0002\u0002\u0002\u0384", - "\u0385\u0007K\u0002\u0002\u0385\u0386\u0007P\u0002\u0002\u0386\u0387", - "\u0007V\u0002\u0002\u0387\u0388\u0007G\u0002\u0002\u0388\u0389\u0007", - "T\u0002\u0002\u0389\u038a\u0007X\u0002\u0002\u038a\u038b\u0007C\u0002", - "\u0002\u038b\u038c\u0007N\u0002\u0002\u038cP\u0003\u0002\u0002\u0002", - "\u038d\u038e\u0007E\u0002\u0002\u038e\u038f\u0007C\u0002\u0002\u038f", - "\u0390\u0007U\u0002\u0002\u0390\u0391\u0007G\u0002\u0002\u0391R\u0003", - "\u0002\u0002\u0002\u0392\u0393\u0007Y\u0002\u0002\u0393\u0394\u0007", - "J\u0002\u0002\u0394\u0395\u0007G\u0002\u0002\u0395\u0396\u0007P\u0002", - "\u0002\u0396T\u0003\u0002\u0002\u0002\u0397\u0398\u0007V\u0002\u0002", - "\u0398\u0399\u0007J\u0002\u0002\u0399\u039a\u0007G\u0002\u0002\u039a", - "\u039b\u0007P\u0002\u0002\u039bV\u0003\u0002\u0002\u0002\u039c\u039d", - "\u0007G\u0002\u0002\u039d\u039e\u0007N\u0002\u0002\u039e\u039f\u0007", - "U\u0002\u0002\u039f\u03a0\u0007G\u0002\u0002\u03a0X\u0003\u0002\u0002", - "\u0002\u03a1\u03a2\u0007G\u0002\u0002\u03a2\u03a3\u0007P\u0002\u0002", - "\u03a3\u03a4\u0007F\u0002\u0002\u03a4Z\u0003\u0002\u0002\u0002\u03a5", - "\u03a6\u0007L\u0002\u0002\u03a6\u03a7\u0007Q\u0002\u0002\u03a7\u03a8", - "\u0007K\u0002\u0002\u03a8\u03a9\u0007P\u0002\u0002\u03a9\\\u0003\u0002", - "\u0002\u0002\u03aa\u03ab\u0007E\u0002\u0002\u03ab\u03ac\u0007T\u0002", - "\u0002\u03ac\u03ad\u0007Q\u0002\u0002\u03ad\u03ae\u0007U\u0002\u0002", - "\u03ae\u03af\u0007U\u0002\u0002\u03af^\u0003\u0002\u0002\u0002\u03b0", - "\u03b1\u0007Q\u0002\u0002\u03b1\u03b2\u0007W\u0002\u0002\u03b2\u03b3", - "\u0007V\u0002\u0002\u03b3\u03b4\u0007G\u0002\u0002\u03b4\u03b5\u0007", - "T\u0002\u0002\u03b5`\u0003\u0002\u0002\u0002\u03b6\u03b7\u0007K\u0002", - "\u0002\u03b7\u03b8\u0007P\u0002\u0002\u03b8\u03b9\u0007P\u0002\u0002", - "\u03b9\u03ba\u0007G\u0002\u0002\u03ba\u03bb\u0007T\u0002\u0002\u03bb", - "b\u0003\u0002\u0002\u0002\u03bc\u03bd\u0007N\u0002\u0002\u03bd\u03be", - "\u0007G\u0002\u0002\u03be\u03bf\u0007H\u0002\u0002\u03bf\u03c0\u0007", - "V\u0002\u0002\u03c0d\u0003\u0002\u0002\u0002\u03c1\u03c2\u0007U\u0002", - "\u0002\u03c2\u03c3\u0007G\u0002\u0002\u03c3\u03c4\u0007O\u0002\u0002", - "\u03c4\u03c5\u0007K\u0002\u0002\u03c5f\u0003\u0002\u0002\u0002\u03c6", - "\u03c7\u0007T\u0002\u0002\u03c7\u03c8\u0007K\u0002\u0002\u03c8\u03c9", - "\u0007I\u0002\u0002\u03c9\u03ca\u0007J\u0002\u0002\u03ca\u03cb\u0007", - "V\u0002\u0002\u03cbh\u0003\u0002\u0002\u0002\u03cc\u03cd\u0007H\u0002", - "\u0002\u03cd\u03ce\u0007W\u0002\u0002\u03ce\u03cf\u0007N\u0002\u0002", - "\u03cf\u03d0\u0007N\u0002\u0002\u03d0j\u0003\u0002\u0002\u0002\u03d1", - "\u03d2\u0007P\u0002\u0002\u03d2\u03d3\u0007C\u0002\u0002\u03d3\u03d4", - "\u0007V\u0002\u0002\u03d4\u03d5\u0007W\u0002\u0002\u03d5\u03d6\u0007", - "T\u0002\u0002\u03d6\u03d7\u0007C\u0002\u0002\u03d7\u03d8\u0007N\u0002", - "\u0002\u03d8l\u0003\u0002\u0002\u0002\u03d9\u03da\u0007Q\u0002\u0002", - "\u03da\u03db\u0007P\u0002\u0002\u03dbn\u0003\u0002\u0002\u0002\u03dc", - "\u03dd\u0007R\u0002\u0002\u03dd\u03de\u0007K\u0002\u0002\u03de\u03df", - "\u0007X\u0002\u0002\u03df\u03e0\u0007Q\u0002\u0002\u03e0\u03e1\u0007", - "V\u0002\u0002\u03e1p\u0003\u0002\u0002\u0002\u03e2\u03e3\u0007N\u0002", - "\u0002\u03e3\u03e4\u0007C\u0002\u0002\u03e4\u03e5\u0007V\u0002\u0002", - "\u03e5\u03e6\u0007G\u0002\u0002\u03e6\u03e7\u0007T\u0002\u0002\u03e7", - "\u03e8\u0007C\u0002\u0002\u03e8\u03e9\u0007N\u0002\u0002\u03e9r\u0003", - "\u0002\u0002\u0002\u03ea\u03eb\u0007Y\u0002\u0002\u03eb\u03ec\u0007", - "K\u0002\u0002\u03ec\u03ed\u0007P\u0002\u0002\u03ed\u03ee\u0007F\u0002", - "\u0002\u03ee\u03ef\u0007Q\u0002\u0002\u03ef\u03f0\u0007Y\u0002\u0002", - "\u03f0t\u0003\u0002\u0002\u0002\u03f1\u03f2\u0007Q\u0002\u0002\u03f2", - "\u03f3\u0007X\u0002\u0002\u03f3\u03f4\u0007G\u0002\u0002\u03f4\u03f5", - "\u0007T\u0002\u0002\u03f5v\u0003\u0002\u0002\u0002\u03f6\u03f7\u0007", - "R\u0002\u0002\u03f7\u03f8\u0007C\u0002\u0002\u03f8\u03f9\u0007T\u0002", - "\u0002\u03f9\u03fa\u0007V\u0002\u0002\u03fa\u03fb\u0007K\u0002\u0002", - "\u03fb\u03fc\u0007V\u0002\u0002\u03fc\u03fd\u0007K\u0002\u0002\u03fd", - "\u03fe\u0007Q\u0002\u0002\u03fe\u03ff\u0007P\u0002\u0002\u03ffx\u0003", - "\u0002\u0002\u0002\u0400\u0401\u0007T\u0002\u0002\u0401\u0402\u0007", - "C\u0002\u0002\u0402\u0403\u0007P\u0002\u0002\u0403\u0404\u0007I\u0002", - "\u0002\u0404\u0405\u0007G\u0002\u0002\u0405z\u0003\u0002\u0002\u0002", - "\u0406\u0407\u0007T\u0002\u0002\u0407\u0408\u0007Q\u0002\u0002\u0408", - "\u0409\u0007Y\u0002\u0002\u0409\u040a\u0007U\u0002\u0002\u040a|\u0003", - "\u0002\u0002\u0002\u040b\u040c\u0007W\u0002\u0002\u040c\u040d\u0007", - "P\u0002\u0002\u040d\u040e\u0007D\u0002\u0002\u040e\u040f\u0007Q\u0002", - "\u0002\u040f\u0410\u0007W\u0002\u0002\u0410\u0411\u0007P\u0002\u0002", - "\u0411\u0412\u0007F\u0002\u0002\u0412\u0413\u0007G\u0002\u0002\u0413", - "\u0414\u0007F\u0002\u0002\u0414~\u0003\u0002\u0002\u0002\u0415\u0416", - "\u0007R\u0002\u0002\u0416\u0417\u0007T\u0002\u0002\u0417\u0418\u0007", - "G\u0002\u0002\u0418\u0419\u0007E\u0002\u0002\u0419\u041a\u0007G\u0002", - "\u0002\u041a\u041b\u0007F\u0002\u0002\u041b\u041c\u0007K\u0002\u0002", - "\u041c\u041d\u0007P\u0002\u0002\u041d\u041e\u0007I\u0002\u0002\u041e", - "\u0080\u0003\u0002\u0002\u0002\u041f\u0420\u0007H\u0002\u0002\u0420", - "\u0421\u0007Q\u0002\u0002\u0421\u0422\u0007N\u0002\u0002\u0422\u0423", - "\u0007N\u0002\u0002\u0423\u0424\u0007Q\u0002\u0002\u0424\u0425\u0007", - "Y\u0002\u0002\u0425\u0426\u0007K\u0002\u0002\u0426\u0427\u0007P\u0002", - "\u0002\u0427\u0428\u0007I\u0002\u0002\u0428\u0082\u0003\u0002\u0002", - "\u0002\u0429\u042a\u0007E\u0002\u0002\u042a\u042b\u0007W\u0002\u0002", - "\u042b\u042c\u0007T\u0002\u0002\u042c\u042d\u0007T\u0002\u0002\u042d", - "\u042e\u0007G\u0002\u0002\u042e\u042f\u0007P\u0002\u0002\u042f\u0430", - "\u0007V\u0002\u0002\u0430\u0084\u0003\u0002\u0002\u0002\u0431\u0432", - "\u0007H\u0002\u0002\u0432\u0433\u0007K\u0002\u0002\u0433\u0434\u0007", - "T\u0002\u0002\u0434\u0435\u0007U\u0002\u0002\u0435\u0436\u0007V\u0002", - "\u0002\u0436\u0086\u0003\u0002\u0002\u0002\u0437\u0438\u0007C\u0002", - "\u0002\u0438\u0439\u0007H\u0002\u0002\u0439\u043a\u0007V\u0002\u0002", - "\u043a\u043b\u0007G\u0002\u0002\u043b\u043c\u0007T\u0002\u0002\u043c", - "\u0088\u0003\u0002\u0002\u0002\u043d\u043e\u0007N\u0002\u0002\u043e", - "\u043f\u0007C\u0002\u0002\u043f\u0440\u0007U\u0002\u0002\u0440\u0441", - "\u0007V\u0002\u0002\u0441\u008a\u0003\u0002\u0002\u0002\u0442\u0443", - "\u0007Y\u0002\u0002\u0443\u0444\u0007K\u0002\u0002\u0444\u0445\u0007", - "V\u0002\u0002\u0445\u0446\u0007J\u0002\u0002\u0446\u008c\u0003\u0002", - "\u0002\u0002\u0447\u0448\u0007X\u0002\u0002\u0448\u0449\u0007C\u0002", - "\u0002\u0449\u044a\u0007N\u0002\u0002\u044a\u044b\u0007W\u0002\u0002", - "\u044b\u044c\u0007G\u0002\u0002\u044c\u044d\u0007U\u0002\u0002\u044d", - "\u008e\u0003\u0002\u0002\u0002\u044e\u044f\u0007E\u0002\u0002\u044f", - "\u0450\u0007T\u0002\u0002\u0450\u0451\u0007G\u0002\u0002\u0451\u0452", - "\u0007C\u0002\u0002\u0452\u0453\u0007V\u0002\u0002\u0453\u0454\u0007", - "G\u0002\u0002\u0454\u0090\u0003\u0002\u0002\u0002\u0455\u0456\u0007", - "V\u0002\u0002\u0456\u0457\u0007C\u0002\u0002\u0457\u0458\u0007D\u0002", - "\u0002\u0458\u0459\u0007N\u0002\u0002\u0459\u045a\u0007G\u0002\u0002", - "\u045a\u0092\u0003\u0002\u0002\u0002\u045b\u045c\u0007F\u0002\u0002", - "\u045c\u045d\u0007K\u0002\u0002\u045d\u045e\u0007T\u0002\u0002\u045e", - "\u045f\u0007G\u0002\u0002\u045f\u0460\u0007E\u0002\u0002\u0460\u0461", - "\u0007V\u0002\u0002\u0461\u0462\u0007Q\u0002\u0002\u0462\u0463\u0007", - "T\u0002\u0002\u0463\u0464\u0007[\u0002\u0002\u0464\u0094\u0003\u0002", - "\u0002\u0002\u0465\u0466\u0007X\u0002\u0002\u0466\u0467\u0007K\u0002", - "\u0002\u0467\u0468\u0007G\u0002\u0002\u0468\u0469\u0007Y\u0002\u0002", - "\u0469\u0096\u0003\u0002\u0002\u0002\u046a\u046b\u0007T\u0002\u0002", - "\u046b\u046c\u0007G\u0002\u0002\u046c\u046d\u0007R\u0002\u0002\u046d", - "\u046e\u0007N\u0002\u0002\u046e\u046f\u0007C\u0002\u0002\u046f\u0470", - "\u0007E\u0002\u0002\u0470\u0471\u0007G\u0002\u0002\u0471\u0098\u0003", - "\u0002\u0002\u0002\u0472\u0473\u0007K\u0002\u0002\u0473\u0474\u0007", - "P\u0002\u0002\u0474\u0475\u0007U\u0002\u0002\u0475\u0476\u0007G\u0002", - "\u0002\u0476\u0477\u0007T\u0002\u0002\u0477\u0478\u0007V\u0002\u0002", - "\u0478\u009a\u0003\u0002\u0002\u0002\u0479\u047a\u0007F\u0002\u0002", - "\u047a\u047b\u0007G\u0002\u0002\u047b\u047c\u0007N\u0002\u0002\u047c", - "\u047d\u0007G\u0002\u0002\u047d\u047e\u0007V\u0002\u0002\u047e\u047f", - "\u0007G\u0002\u0002\u047f\u009c\u0003\u0002\u0002\u0002\u0480\u0481", - "\u0007K\u0002\u0002\u0481\u0482\u0007P\u0002\u0002\u0482\u0483\u0007", - "V\u0002\u0002\u0483\u0484\u0007Q\u0002\u0002\u0484\u009e\u0003\u0002", - "\u0002\u0002\u0485\u0486\u0007F\u0002\u0002\u0486\u0487\u0007G\u0002", - "\u0002\u0487\u0488\u0007U\u0002\u0002\u0488\u0489\u0007E\u0002\u0002", - "\u0489\u048a\u0007T\u0002\u0002\u048a\u048b\u0007K\u0002\u0002\u048b", - "\u048c\u0007D\u0002\u0002\u048c\u048d\u0007G\u0002\u0002\u048d\u00a0", - "\u0003\u0002\u0002\u0002\u048e\u048f\u0007G\u0002\u0002\u048f\u0490", - "\u0007Z\u0002\u0002\u0490\u0491\u0007R\u0002\u0002\u0491\u0492\u0007", - "N\u0002\u0002\u0492\u0493\u0007C\u0002\u0002\u0493\u0494\u0007K\u0002", - "\u0002\u0494\u0495\u0007P\u0002\u0002\u0495\u00a2\u0003\u0002\u0002", - "\u0002\u0496\u0497\u0007H\u0002\u0002\u0497\u0498\u0007Q\u0002\u0002", - "\u0498\u0499\u0007T\u0002\u0002\u0499\u049a\u0007O\u0002\u0002\u049a", - "\u049b\u0007C\u0002\u0002\u049b\u049c\u0007V\u0002\u0002\u049c\u00a4", - "\u0003\u0002\u0002\u0002\u049d\u049e\u0007N\u0002\u0002\u049e\u049f", - "\u0007Q\u0002\u0002\u049f\u04a0\u0007I\u0002\u0002\u04a0\u04a1\u0007", - "K\u0002\u0002\u04a1\u04a2\u0007E\u0002\u0002\u04a2\u04a3\u0007C\u0002", - "\u0002\u04a3\u04a4\u0007N\u0002\u0002\u04a4\u00a6\u0003\u0002\u0002", - "\u0002\u04a5\u04a6\u0007E\u0002\u0002\u04a6\u04a7\u0007Q\u0002\u0002", - "\u04a7\u04a8\u0007F\u0002\u0002\u04a8\u04a9\u0007G\u0002\u0002\u04a9", - "\u04aa\u0007I\u0002\u0002\u04aa\u04ab\u0007G\u0002\u0002\u04ab\u04ac", - "\u0007P\u0002\u0002\u04ac\u00a8\u0003\u0002\u0002\u0002\u04ad\u04ae", - "\u0007E\u0002\u0002\u04ae\u04af\u0007Q\u0002\u0002\u04af\u04b0\u0007", - "U\u0002\u0002\u04b0\u04b1\u0007V\u0002\u0002\u04b1\u00aa\u0003\u0002", - "\u0002\u0002\u04b2\u04b3\u0007E\u0002\u0002\u04b3\u04b4\u0007C\u0002", - "\u0002\u04b4\u04b5\u0007U\u0002\u0002\u04b5\u04b6\u0007V\u0002\u0002", - "\u04b6\u00ac\u0003\u0002\u0002\u0002\u04b7\u04b8\u0007U\u0002\u0002", - "\u04b8\u04b9\u0007J\u0002\u0002\u04b9\u04ba\u0007Q\u0002\u0002\u04ba", - "\u04bb\u0007Y\u0002\u0002\u04bb\u00ae\u0003\u0002\u0002\u0002\u04bc", - "\u04bd\u0007V\u0002\u0002\u04bd\u04be\u0007C\u0002\u0002\u04be\u04bf", - "\u0007D\u0002\u0002\u04bf\u04c0\u0007N\u0002\u0002\u04c0\u04c1\u0007", - "G\u0002\u0002\u04c1\u04c2\u0007U\u0002\u0002\u04c2\u00b0\u0003\u0002", - "\u0002\u0002\u04c3\u04c4\u0007E\u0002\u0002\u04c4\u04c5\u0007Q\u0002", - "\u0002\u04c5\u04c6\u0007N\u0002\u0002\u04c6\u04c7\u0007W\u0002\u0002", - "\u04c7\u04c8\u0007O\u0002\u0002\u04c8\u04c9\u0007P\u0002\u0002\u04c9", - "\u04ca\u0007U\u0002\u0002\u04ca\u00b2\u0003\u0002\u0002\u0002\u04cb", - "\u04cc\u0007E\u0002\u0002\u04cc\u04cd\u0007Q\u0002\u0002\u04cd\u04ce", - "\u0007N\u0002\u0002\u04ce\u04cf\u0007W\u0002\u0002\u04cf\u04d0\u0007", - "O\u0002\u0002\u04d0\u04d1\u0007P\u0002\u0002\u04d1\u00b4\u0003\u0002", - "\u0002\u0002\u04d2\u04d3\u0007W\u0002\u0002\u04d3\u04d4\u0007U\u0002", - "\u0002\u04d4\u04d5\u0007G\u0002\u0002\u04d5\u00b6\u0003\u0002\u0002", - "\u0002\u04d6\u04d7\u0007R\u0002\u0002\u04d7\u04d8\u0007C\u0002\u0002", - "\u04d8\u04d9\u0007T\u0002\u0002\u04d9\u04da\u0007V\u0002\u0002\u04da", - "\u04db\u0007K\u0002\u0002\u04db\u04dc\u0007V\u0002\u0002\u04dc\u04dd", - "\u0007K\u0002\u0002\u04dd\u04de\u0007Q\u0002\u0002\u04de\u04df\u0007", - "P\u0002\u0002\u04df\u04e0\u0007U\u0002\u0002\u04e0\u00b8\u0003\u0002", - "\u0002\u0002\u04e1\u04e2\u0007H\u0002\u0002\u04e2\u04e3\u0007W\u0002", - "\u0002\u04e3\u04e4\u0007P\u0002\u0002\u04e4\u04e5\u0007E\u0002\u0002", - "\u04e5\u04e6\u0007V\u0002\u0002\u04e6\u04e7\u0007K\u0002\u0002\u04e7", - "\u04e8\u0007Q\u0002\u0002\u04e8\u04e9\u0007P\u0002\u0002\u04e9\u04ea", - "\u0007U\u0002\u0002\u04ea\u00ba\u0003\u0002\u0002\u0002\u04eb\u04ec", - "\u0007F\u0002\u0002\u04ec\u04ed\u0007T\u0002\u0002\u04ed\u04ee\u0007", - "Q\u0002\u0002\u04ee\u04ef\u0007R\u0002\u0002\u04ef\u00bc\u0003\u0002", - "\u0002\u0002\u04f0\u04f1\u0007W\u0002\u0002\u04f1\u04f2\u0007P\u0002", - "\u0002\u04f2\u04f3\u0007K\u0002\u0002\u04f3\u04f4\u0007Q\u0002\u0002", - "\u04f4\u04f5\u0007P\u0002\u0002\u04f5\u00be\u0003\u0002\u0002\u0002", - "\u04f6\u04f7\u0007G\u0002\u0002\u04f7\u04f8\u0007Z\u0002\u0002\u04f8", - "\u04f9\u0007E\u0002\u0002\u04f9\u04fa\u0007G\u0002\u0002\u04fa\u04fb", - "\u0007R\u0002\u0002\u04fb\u04fc\u0007V\u0002\u0002\u04fc\u00c0\u0003", - "\u0002\u0002\u0002\u04fd\u04fe\u0007U\u0002\u0002\u04fe\u04ff\u0007", - "G\u0002\u0002\u04ff\u0500\u0007V\u0002\u0002\u0500\u0501\u0007O\u0002", - "\u0002\u0501\u0502\u0007K\u0002\u0002\u0502\u0503\u0007P\u0002\u0002", - "\u0503\u0504\u0007W\u0002\u0002\u0504\u0505\u0007U\u0002\u0002\u0505", - "\u00c2\u0003\u0002\u0002\u0002\u0506\u0507\u0007K\u0002\u0002\u0507", - "\u0508\u0007P\u0002\u0002\u0508\u0509\u0007V\u0002\u0002\u0509\u050a", - "\u0007G\u0002\u0002\u050a\u050b\u0007T\u0002\u0002\u050b\u050c\u0007", - "U\u0002\u0002\u050c\u050d\u0007G\u0002\u0002\u050d\u050e\u0007E\u0002", - "\u0002\u050e\u050f\u0007V\u0002\u0002\u050f\u00c4\u0003\u0002\u0002", - "\u0002\u0510\u0511\u0007V\u0002\u0002\u0511\u0512\u0007Q\u0002\u0002", - "\u0512\u00c6\u0003\u0002\u0002\u0002\u0513\u0514\u0007V\u0002\u0002", - "\u0514\u0515\u0007C\u0002\u0002\u0515\u0516\u0007D\u0002\u0002\u0516", - "\u0517\u0007N\u0002\u0002\u0517\u0518\u0007G\u0002\u0002\u0518\u0519", - "\u0007U\u0002\u0002\u0519\u051a\u0007C\u0002\u0002\u051a\u051b\u0007", - "O\u0002\u0002\u051b\u051c\u0007R\u0002\u0002\u051c\u051d\u0007N\u0002", - "\u0002\u051d\u051e\u0007G\u0002\u0002\u051e\u00c8\u0003\u0002\u0002", - "\u0002\u051f\u0520\u0007U\u0002\u0002\u0520\u0521\u0007V\u0002\u0002", - "\u0521\u0522\u0007T\u0002\u0002\u0522\u0523\u0007C\u0002\u0002\u0523", - "\u0524\u0007V\u0002\u0002\u0524\u0525\u0007K\u0002\u0002\u0525\u0526", - "\u0007H\u0002\u0002\u0526\u0527\u0007[\u0002\u0002\u0527\u00ca\u0003", - "\u0002\u0002\u0002\u0528\u0529\u0007C\u0002\u0002\u0529\u052a\u0007", - "N\u0002\u0002\u052a\u052b\u0007V\u0002\u0002\u052b\u052c\u0007G\u0002", - "\u0002\u052c\u052d\u0007T\u0002\u0002\u052d\u00cc\u0003\u0002\u0002", - "\u0002\u052e\u052f\u0007T\u0002\u0002\u052f\u0530\u0007G\u0002\u0002", - "\u0530\u0531\u0007P\u0002\u0002\u0531\u0532\u0007C\u0002\u0002\u0532", - "\u0533\u0007O\u0002\u0002\u0533\u0534\u0007G\u0002\u0002\u0534\u00ce", - "\u0003\u0002\u0002\u0002\u0535\u0536\u0007U\u0002\u0002\u0536\u0537", - "\u0007V\u0002\u0002\u0537\u0538\u0007T\u0002\u0002\u0538\u0539\u0007", - "W\u0002\u0002\u0539\u053a\u0007E\u0002\u0002\u053a\u053b\u0007V\u0002", - "\u0002\u053b\u00d0\u0003\u0002\u0002\u0002\u053c\u053d\u0007E\u0002", - "\u0002\u053d\u053e\u0007Q\u0002\u0002\u053e\u053f\u0007O\u0002\u0002", - "\u053f\u0540\u0007O\u0002\u0002\u0540\u0541\u0007G\u0002\u0002\u0541", - "\u0542\u0007P\u0002\u0002\u0542\u0543\u0007V\u0002\u0002\u0543\u00d2", - "\u0003\u0002\u0002\u0002\u0544\u0545\u0007U\u0002\u0002\u0545\u0546", - "\u0007G\u0002\u0002\u0546\u0547\u0007V\u0002\u0002\u0547\u00d4\u0003", - "\u0002\u0002\u0002\u0548\u0549\u0007T\u0002\u0002\u0549\u054a\u0007", - "G\u0002\u0002\u054a\u054b\u0007U\u0002\u0002\u054b\u054c\u0007G\u0002", - "\u0002\u054c\u054d\u0007V\u0002\u0002\u054d\u00d6\u0003\u0002\u0002", - "\u0002\u054e\u054f\u0007F\u0002\u0002\u054f\u0550\u0007C\u0002\u0002", - "\u0550\u0551\u0007V\u0002\u0002\u0551\u0552\u0007C\u0002\u0002\u0552", - "\u00d8\u0003\u0002\u0002\u0002\u0553\u0554\u0007U\u0002\u0002\u0554", - "\u0555\u0007V\u0002\u0002\u0555\u0556\u0007C\u0002\u0002\u0556\u0557", - "\u0007T\u0002\u0002\u0557\u0558\u0007V\u0002\u0002\u0558\u00da\u0003", - "\u0002\u0002\u0002\u0559\u055a\u0007V\u0002\u0002\u055a\u055b\u0007", - "T\u0002\u0002\u055b\u055c\u0007C\u0002\u0002\u055c\u055d\u0007P\u0002", - "\u0002\u055d\u055e\u0007U\u0002\u0002\u055e\u055f\u0007C\u0002\u0002", - "\u055f\u0560\u0007E\u0002\u0002\u0560\u0561\u0007V\u0002\u0002\u0561", - "\u0562\u0007K\u0002\u0002\u0562\u0563\u0007Q\u0002\u0002\u0563\u0564", - "\u0007P\u0002\u0002\u0564\u00dc\u0003\u0002\u0002\u0002\u0565\u0566", - "\u0007E\u0002\u0002\u0566\u0567\u0007Q\u0002\u0002\u0567\u0568\u0007", - "O\u0002\u0002\u0568\u0569\u0007O\u0002\u0002\u0569\u056a\u0007K\u0002", - "\u0002\u056a\u056b\u0007V\u0002\u0002\u056b\u00de\u0003\u0002\u0002", - "\u0002\u056c\u056d\u0007T\u0002\u0002\u056d\u056e\u0007Q\u0002\u0002", - "\u056e\u056f\u0007N\u0002\u0002\u056f\u0570\u0007N\u0002\u0002\u0570", - "\u0571\u0007D\u0002\u0002\u0571\u0572\u0007C\u0002\u0002\u0572\u0573", - "\u0007E\u0002\u0002\u0573\u0574\u0007M\u0002\u0002\u0574\u00e0\u0003", - "\u0002\u0002\u0002\u0575\u0576\u0007O\u0002\u0002\u0576\u0577\u0007", - "C\u0002\u0002\u0577\u0578\u0007E\u0002\u0002\u0578\u0579\u0007T\u0002", - "\u0002\u0579\u057a\u0007Q\u0002\u0002\u057a\u00e2\u0003\u0002\u0002", - "\u0002\u057b\u057c\u0007K\u0002\u0002\u057c\u057d\u0007I\u0002\u0002", - "\u057d\u057e\u0007P\u0002\u0002\u057e\u057f\u0007Q\u0002\u0002\u057f", - "\u0580\u0007T\u0002\u0002\u0580\u0581\u0007G\u0002\u0002\u0581\u00e4", - "\u0003\u0002\u0002\u0002\u0582\u0583\u0007D\u0002\u0002\u0583\u0584", - "\u0007Q\u0002\u0002\u0584\u0585\u0007V\u0002\u0002\u0585\u0586\u0007", - "J\u0002\u0002\u0586\u00e6\u0003\u0002\u0002\u0002\u0587\u0588\u0007", - "N\u0002\u0002\u0588\u0589\u0007G\u0002\u0002\u0589\u058a\u0007C\u0002", - "\u0002\u058a\u058b\u0007F\u0002\u0002\u058b\u058c\u0007K\u0002\u0002", - "\u058c\u058d\u0007P\u0002\u0002\u058d\u058e\u0007I\u0002\u0002\u058e", - "\u00e8\u0003\u0002\u0002\u0002\u058f\u0590\u0007V\u0002\u0002\u0590", - "\u0591\u0007T\u0002\u0002\u0591\u0592\u0007C\u0002\u0002\u0592\u0593", - "\u0007K\u0002\u0002\u0593\u0594\u0007N\u0002\u0002\u0594\u0595\u0007", - "K\u0002\u0002\u0595\u0596\u0007P\u0002\u0002\u0596\u0597\u0007I\u0002", - "\u0002\u0597\u00ea\u0003\u0002\u0002\u0002\u0598\u0599\u0007K\u0002", - "\u0002\u0599\u059a\u0007H\u0002\u0002\u059a\u00ec\u0003\u0002\u0002", - "\u0002\u059b\u059c\u0007R\u0002\u0002\u059c\u059d\u0007Q\u0002\u0002", - "\u059d\u059e\u0007U\u0002\u0002\u059e\u059f\u0007K\u0002\u0002\u059f", - "\u05a0\u0007V\u0002\u0002\u05a0\u05a1\u0007K\u0002\u0002\u05a1\u05a2", - "\u0007Q\u0002\u0002\u05a2\u05a3\u0007P\u0002\u0002\u05a3\u00ee\u0003", - "\u0002\u0002\u0002\u05a4\u05a5\u0007G\u0002\u0002\u05a5\u05a6\u0007", - "Z\u0002\u0002\u05a6\u05a7\u0007V\u0002\u0002\u05a7\u05a8\u0007T\u0002", - "\u0002\u05a8\u05a9\u0007C\u0002\u0002\u05a9\u05aa\u0007E\u0002\u0002", - "\u05aa\u05ab\u0007V\u0002\u0002\u05ab\u00f0\u0003\u0002\u0002\u0002", - "\u05ac\u05ad\u0007G\u0002\u0002\u05ad\u05ae\u0007S\u0002\u0002\u05ae", - "\u00f2\u0003\u0002\u0002\u0002\u05af\u05b0\u0007P\u0002\u0002\u05b0", - "\u05b1\u0007U\u0002\u0002\u05b1\u05b2\u0007G\u0002\u0002\u05b2\u05b3", - "\u0007S\u0002\u0002\u05b3\u00f4\u0003\u0002\u0002\u0002\u05b4\u05b5", - "\u0007P\u0002\u0002\u05b5\u05b6\u0007G\u0002\u0002\u05b6\u05b7\u0007", - "S\u0002\u0002\u05b7\u00f6\u0003\u0002\u0002\u0002\u05b8\u05b9\u0007", - "P\u0002\u0002\u05b9\u05ba\u0007G\u0002\u0002\u05ba\u05bb\u0007S\u0002", - "\u0002\u05bb\u05bc\u0007L\u0002\u0002\u05bc\u00f8\u0003\u0002\u0002", - "\u0002\u05bd\u05be\u0007N\u0002\u0002\u05be\u05bf\u0007V\u0002\u0002", - "\u05bf\u00fa\u0003\u0002\u0002\u0002\u05c0\u05c1\u0007N\u0002\u0002", - "\u05c1\u05c2\u0007V\u0002\u0002\u05c2\u05c3\u0007G\u0002\u0002\u05c3", - "\u00fc\u0003\u0002\u0002\u0002\u05c4\u05c5\u0007I\u0002\u0002\u05c5", - "\u05c6\u0007V\u0002\u0002\u05c6\u00fe\u0003\u0002\u0002\u0002\u05c7", - "\u05c8\u0007I\u0002\u0002\u05c8\u05c9\u0007V\u0002\u0002\u05c9\u05ca", - "\u0007G\u0002\u0002\u05ca\u0100\u0003\u0002\u0002\u0002\u05cb\u05cc", - "\u0007R\u0002\u0002\u05cc\u05cd\u0007N\u0002\u0002\u05cd\u05ce\u0007", - "W\u0002\u0002\u05ce\u05cf\u0007U\u0002\u0002\u05cf\u0102\u0003\u0002", - "\u0002\u0002\u05d0\u05d1\u0007O\u0002\u0002\u05d1\u05d2\u0007K\u0002", - "\u0002\u05d2\u05d3\u0007P\u0002\u0002\u05d3\u05d4\u0007W\u0002\u0002", - "\u05d4\u05d5\u0007U\u0002\u0002\u05d5\u0104\u0003\u0002\u0002\u0002", - "\u05d6\u05d7\u0007C\u0002\u0002\u05d7\u05d8\u0007U\u0002\u0002\u05d8", - "\u05d9\u0007V\u0002\u0002\u05d9\u05da\u0007G\u0002\u0002\u05da\u05db", - "\u0007T\u0002\u0002\u05db\u05dc\u0007K\u0002\u0002\u05dc\u05dd\u0007", - "U\u0002\u0002\u05dd\u05de\u0007M\u0002\u0002\u05de\u0106\u0003\u0002", - "\u0002\u0002\u05df\u05e0\u0007U\u0002\u0002\u05e0\u05e1\u0007N\u0002", - "\u0002\u05e1\u05e2\u0007C\u0002\u0002\u05e2\u05e3\u0007U\u0002\u0002", - "\u05e3\u05e4\u0007J\u0002\u0002\u05e4\u0108\u0003\u0002\u0002\u0002", - "\u05e5\u05e6\u0007R\u0002\u0002\u05e6\u05e7\u0007G\u0002\u0002\u05e7", - "\u05e8\u0007T\u0002\u0002\u05e8\u05e9\u0007E\u0002\u0002\u05e9\u05ea", - "\u0007G\u0002\u0002\u05ea\u05eb\u0007P\u0002\u0002\u05eb\u05ec\u0007", - "V\u0002\u0002\u05ec\u010a\u0003\u0002\u0002\u0002\u05ed\u05ee\u0007", - "F\u0002\u0002\u05ee\u05ef\u0007K\u0002\u0002\u05ef\u05f0\u0007X\u0002", - "\u0002\u05f0\u010c\u0003\u0002\u0002\u0002\u05f1\u05f2\u0007V\u0002", - "\u0002\u05f2\u05f3\u0007K\u0002\u0002\u05f3\u05f4\u0007N\u0002\u0002", - "\u05f4\u05f5\u0007F\u0002\u0002\u05f5\u05f6\u0007G\u0002\u0002\u05f6", - "\u010e\u0003\u0002\u0002\u0002\u05f7\u05f8\u0007C\u0002\u0002\u05f8", - "\u05f9\u0007O\u0002\u0002\u05f9\u05fa\u0007R\u0002\u0002\u05fa\u05fb", - "\u0007G\u0002\u0002\u05fb\u05fc\u0007T\u0002\u0002\u05fc\u05fd\u0007", - "U\u0002\u0002\u05fd\u05fe\u0007C\u0002\u0002\u05fe\u05ff\u0007P\u0002", - "\u0002\u05ff\u0600\u0007F\u0002\u0002\u0600\u0110\u0003\u0002\u0002", - "\u0002\u0601\u0602\u0007R\u0002\u0002\u0602\u0603\u0007K\u0002\u0002", - "\u0603\u0604\u0007R\u0002\u0002\u0604\u0605\u0007G\u0002\u0002\u0605", - "\u0112\u0003\u0002\u0002\u0002\u0606\u0607\u0007E\u0002\u0002\u0607", - "\u0608\u0007Q\u0002\u0002\u0608\u0609\u0007P\u0002\u0002\u0609\u060a", - "\u0007E\u0002\u0002\u060a\u060b\u0007C\u0002\u0002\u060b\u060c\u0007", - "V\u0002\u0002\u060c\u060d\u0007a\u0002\u0002\u060d\u060e\u0007R\u0002", - "\u0002\u060e\u060f\u0007K\u0002\u0002\u060f\u0610\u0007R\u0002\u0002", - "\u0610\u0611\u0007G\u0002\u0002\u0611\u0114\u0003\u0002\u0002\u0002", - "\u0612\u0613\u0007J\u0002\u0002\u0613\u0614\u0007C\u0002\u0002\u0614", - "\u0615\u0007V\u0002\u0002\u0615\u0116\u0003\u0002\u0002\u0002\u0616", - "\u0617\u0007R\u0002\u0002\u0617\u0618\u0007G\u0002\u0002\u0618\u0619", - "\u0007T\u0002\u0002\u0619\u061a\u0007E\u0002\u0002\u061a\u061b\u0007", - "G\u0002\u0002\u061b\u061c\u0007P\u0002\u0002\u061c\u061d\u0007V\u0002", - "\u0002\u061d\u061e\u0007N\u0002\u0002\u061e\u061f\u0007K\u0002\u0002", - "\u061f\u0620\u0007V\u0002\u0002\u0620\u0118\u0003\u0002\u0002\u0002", - "\u0621\u0622\u0007D\u0002\u0002\u0622\u0623\u0007W\u0002\u0002\u0623", - "\u0624\u0007E\u0002\u0002\u0624\u0625\u0007M\u0002\u0002\u0625\u0626", - "\u0007G\u0002\u0002\u0626\u0627\u0007V\u0002\u0002\u0627\u011a\u0003", - "\u0002\u0002\u0002\u0628\u0629\u0007Q\u0002\u0002\u0629\u062a\u0007", - "W\u0002\u0002\u062a\u062b\u0007V\u0002\u0002\u062b\u011c\u0003\u0002", - "\u0002\u0002\u062c\u062d\u0007Q\u0002\u0002\u062d\u062e\u0007H\u0002", - "\u0002\u062e\u011e\u0003\u0002\u0002\u0002\u062f\u0630\u0007U\u0002", - "\u0002\u0630\u0631\u0007Q\u0002\u0002\u0631\u0632\u0007T\u0002\u0002", - "\u0632\u0633\u0007V\u0002\u0002\u0633\u0120\u0003\u0002\u0002\u0002", - "\u0634\u0635\u0007E\u0002\u0002\u0635\u0636\u0007N\u0002\u0002\u0636", - "\u0637\u0007W\u0002\u0002\u0637\u0638\u0007U\u0002\u0002\u0638\u0639", - "\u0007V\u0002\u0002\u0639\u063a\u0007G\u0002\u0002\u063a\u063b\u0007", - "T\u0002\u0002\u063b\u0122\u0003\u0002\u0002\u0002\u063c\u063d\u0007", - "F\u0002\u0002\u063d\u063e\u0007K\u0002\u0002\u063e\u063f\u0007U\u0002", - "\u0002\u063f\u0640\u0007V\u0002\u0002\u0640\u0641\u0007T\u0002\u0002", - "\u0641\u0642\u0007K\u0002\u0002\u0642\u0643\u0007D\u0002\u0002\u0643", - "\u0644\u0007W\u0002\u0002\u0644\u0645\u0007V\u0002\u0002\u0645\u0646", - "\u0007G\u0002\u0002\u0646\u0124\u0003\u0002\u0002\u0002\u0647\u0648", - "\u0007Q\u0002\u0002\u0648\u0649\u0007X\u0002\u0002\u0649\u064a\u0007", - "G\u0002\u0002\u064a\u064b\u0007T\u0002\u0002\u064b\u064c\u0007Y\u0002", - "\u0002\u064c\u064d\u0007T\u0002\u0002\u064d\u064e\u0007K\u0002\u0002", - "\u064e\u064f\u0007V\u0002\u0002\u064f\u0650\u0007G\u0002\u0002\u0650", - "\u0126\u0003\u0002\u0002\u0002\u0651\u0652\u0007V\u0002\u0002\u0652", - "\u0653\u0007T\u0002\u0002\u0653\u0654\u0007C\u0002\u0002\u0654\u0655", - "\u0007P\u0002\u0002\u0655\u0656\u0007U\u0002\u0002\u0656\u0657\u0007", - "H\u0002\u0002\u0657\u0658\u0007Q\u0002\u0002\u0658\u0659\u0007T\u0002", - "\u0002\u0659\u065a\u0007O\u0002\u0002\u065a\u0128\u0003\u0002\u0002", - "\u0002\u065b\u065c\u0007T\u0002\u0002\u065c\u065d\u0007G\u0002\u0002", - "\u065d\u065e\u0007F\u0002\u0002\u065e\u065f\u0007W\u0002\u0002\u065f", - "\u0660\u0007E\u0002\u0002\u0660\u0661\u0007G\u0002\u0002\u0661\u012a", - "\u0003\u0002\u0002\u0002\u0662\u0663\u0007W\u0002\u0002\u0663\u0664", - "\u0007U\u0002\u0002\u0664\u0665\u0007K\u0002\u0002\u0665\u0666\u0007", - "P\u0002\u0002\u0666\u0667\u0007I\u0002\u0002\u0667\u012c\u0003\u0002", - "\u0002\u0002\u0668\u0669\u0007U\u0002\u0002\u0669\u066a\u0007G\u0002", - "\u0002\u066a\u066b\u0007T\u0002\u0002\u066b\u066c\u0007F\u0002\u0002", - "\u066c\u066d\u0007G\u0002\u0002\u066d\u012e\u0003\u0002\u0002\u0002", - "\u066e\u066f\u0007U\u0002\u0002\u066f\u0670\u0007G\u0002\u0002\u0670", - "\u0671\u0007T\u0002\u0002\u0671\u0672\u0007F\u0002\u0002\u0672\u0673", - "\u0007G\u0002\u0002\u0673\u0674\u0007R\u0002\u0002\u0674\u0675\u0007", - "T\u0002\u0002\u0675\u0676\u0007Q\u0002\u0002\u0676\u0677\u0007R\u0002", - "\u0002\u0677\u0678\u0007G\u0002\u0002\u0678\u0679\u0007T\u0002\u0002", - "\u0679\u067a\u0007V\u0002\u0002\u067a\u067b\u0007K\u0002\u0002\u067b", - "\u067c\u0007G\u0002\u0002\u067c\u067d\u0007U\u0002\u0002\u067d\u0130", - "\u0003\u0002\u0002\u0002\u067e\u067f\u0007T\u0002\u0002\u067f\u0680", - "\u0007G\u0002\u0002\u0680\u0681\u0007E\u0002\u0002\u0681\u0682\u0007", - "Q\u0002\u0002\u0682\u0683\u0007T\u0002\u0002\u0683\u0684\u0007F\u0002", - "\u0002\u0684\u0685\u0007T\u0002\u0002\u0685\u0686\u0007G\u0002\u0002", - "\u0686\u0687\u0007C\u0002\u0002\u0687\u0688\u0007F\u0002\u0002\u0688", - "\u0689\u0007G\u0002\u0002\u0689\u068a\u0007T\u0002\u0002\u068a\u0132", - "\u0003\u0002\u0002\u0002\u068b\u068c\u0007T\u0002\u0002\u068c\u068d", - "\u0007G\u0002\u0002\u068d\u068e\u0007E\u0002\u0002\u068e\u068f\u0007", - "Q\u0002\u0002\u068f\u0690\u0007T\u0002\u0002\u0690\u0691\u0007F\u0002", - "\u0002\u0691\u0692\u0007Y\u0002\u0002\u0692\u0693\u0007T\u0002\u0002", - "\u0693\u0694\u0007K\u0002\u0002\u0694\u0695\u0007V\u0002\u0002\u0695", - "\u0696\u0007G\u0002\u0002\u0696\u0697\u0007T\u0002\u0002\u0697\u0134", - "\u0003\u0002\u0002\u0002\u0698\u0699\u0007F\u0002\u0002\u0699\u069a", - "\u0007G\u0002\u0002\u069a\u069b\u0007N\u0002\u0002\u069b\u069c\u0007", - "K\u0002\u0002\u069c\u069d\u0007O\u0002\u0002\u069d\u069e\u0007K\u0002", - "\u0002\u069e\u069f\u0007V\u0002\u0002\u069f\u06a0\u0007G\u0002\u0002", - "\u06a0\u06a1\u0007F\u0002\u0002\u06a1\u0136\u0003\u0002\u0002\u0002", - "\u06a2\u06a3\u0007H\u0002\u0002\u06a3\u06a4\u0007K\u0002\u0002\u06a4", - "\u06a5\u0007G\u0002\u0002\u06a5\u06a6\u0007N\u0002\u0002\u06a6\u06a7", - "\u0007F\u0002\u0002\u06a7\u06a8\u0007U\u0002\u0002\u06a8\u0138\u0003", - "\u0002\u0002\u0002\u06a9\u06aa\u0007V\u0002\u0002\u06aa\u06ab\u0007", - "G\u0002\u0002\u06ab\u06ac\u0007T\u0002\u0002\u06ac\u06ad\u0007O\u0002", - "\u0002\u06ad\u06ae\u0007K\u0002\u0002\u06ae\u06af\u0007P\u0002\u0002", - "\u06af\u06b0\u0007C\u0002\u0002\u06b0\u06b1\u0007V\u0002\u0002\u06b1", - "\u06b2\u0007G\u0002\u0002\u06b2\u06b3\u0007F\u0002\u0002\u06b3\u013a", - "\u0003\u0002\u0002\u0002\u06b4\u06b5\u0007E\u0002\u0002\u06b5\u06b6", - "\u0007Q\u0002\u0002\u06b6\u06b7\u0007N\u0002\u0002\u06b7\u06b8\u0007", - "N\u0002\u0002\u06b8\u06b9\u0007G\u0002\u0002\u06b9\u06ba\u0007E\u0002", - "\u0002\u06ba\u06bb\u0007V\u0002\u0002\u06bb\u06bc\u0007K\u0002\u0002", - "\u06bc\u06bd\u0007Q\u0002\u0002\u06bd\u06be\u0007P\u0002\u0002\u06be", - "\u013c\u0003\u0002\u0002\u0002\u06bf\u06c0\u0007K\u0002\u0002\u06c0", - "\u06c1\u0007V\u0002\u0002\u06c1\u06c2\u0007G\u0002\u0002\u06c2\u06c3", - "\u0007O\u0002\u0002\u06c3\u06c4\u0007U\u0002\u0002\u06c4\u013e\u0003", - "\u0002\u0002\u0002\u06c5\u06c6\u0007M\u0002\u0002\u06c6\u06c7\u0007", - "G\u0002\u0002\u06c7\u06c8\u0007[\u0002\u0002\u06c8\u06c9\u0007U\u0002", - "\u0002\u06c9\u0140\u0003\u0002\u0002\u0002\u06ca\u06cb\u0007G\u0002", - "\u0002\u06cb\u06cc\u0007U\u0002\u0002\u06cc\u06cd\u0007E\u0002\u0002", - "\u06cd\u06ce\u0007C\u0002\u0002\u06ce\u06cf\u0007R\u0002\u0002\u06cf", - "\u06d0\u0007G\u0002\u0002\u06d0\u06d1\u0007F\u0002\u0002\u06d1\u0142", - "\u0003\u0002\u0002\u0002\u06d2\u06d3\u0007N\u0002\u0002\u06d3\u06d4", - "\u0007K\u0002\u0002\u06d4\u06d5\u0007P\u0002\u0002\u06d5\u06d6\u0007", - "G\u0002\u0002\u06d6\u06d7\u0007U\u0002\u0002\u06d7\u0144\u0003\u0002", - "\u0002\u0002\u06d8\u06d9\u0007U\u0002\u0002\u06d9\u06da\u0007G\u0002", - "\u0002\u06da\u06db\u0007R\u0002\u0002\u06db\u06dc\u0007C\u0002\u0002", - "\u06dc\u06dd\u0007T\u0002\u0002\u06dd\u06de\u0007C\u0002\u0002\u06de", - "\u06df\u0007V\u0002\u0002\u06df\u06e0\u0007G\u0002\u0002\u06e0\u06e1", - "\u0007F\u0002\u0002\u06e1\u0146\u0003\u0002\u0002\u0002\u06e2\u06e3", - "\u0007H\u0002\u0002\u06e3\u06e4\u0007W\u0002\u0002\u06e4\u06e5\u0007", - "P\u0002\u0002\u06e5\u06e6\u0007E\u0002\u0002\u06e6\u06e7\u0007V\u0002", - "\u0002\u06e7\u06e8\u0007K\u0002\u0002\u06e8\u06e9\u0007Q\u0002\u0002", - "\u06e9\u06ea\u0007P\u0002\u0002\u06ea\u0148\u0003\u0002\u0002\u0002", - "\u06eb\u06ec\u0007G\u0002\u0002\u06ec\u06ed\u0007Z\u0002\u0002\u06ed", - "\u06ee\u0007V\u0002\u0002\u06ee\u06ef\u0007G\u0002\u0002\u06ef\u06f0", - "\u0007P\u0002\u0002\u06f0\u06f1\u0007F\u0002\u0002\u06f1\u06f2\u0007", - "G\u0002\u0002\u06f2\u06f3\u0007F\u0002\u0002\u06f3\u014a\u0003\u0002", - "\u0002\u0002\u06f4\u06f5\u0007T\u0002\u0002\u06f5\u06f6\u0007G\u0002", - "\u0002\u06f6\u06f7\u0007H\u0002\u0002\u06f7\u06f8\u0007T\u0002\u0002", - "\u06f8\u06f9\u0007G\u0002\u0002\u06f9\u06fa\u0007U\u0002\u0002\u06fa", - "\u06fb\u0007J\u0002\u0002\u06fb\u014c\u0003\u0002\u0002\u0002\u06fc", - "\u06fd\u0007E\u0002\u0002\u06fd\u06fe\u0007N\u0002\u0002\u06fe\u06ff", - "\u0007G\u0002\u0002\u06ff\u0700\u0007C\u0002\u0002\u0700\u0701\u0007", - "T\u0002\u0002\u0701\u014e\u0003\u0002\u0002\u0002\u0702\u0703\u0007", - "E\u0002\u0002\u0703\u0704\u0007C\u0002\u0002\u0704\u0705\u0007E\u0002", - "\u0002\u0705\u0706\u0007J\u0002\u0002\u0706\u0707\u0007G\u0002\u0002", - "\u0707\u0150\u0003\u0002\u0002\u0002\u0708\u0709\u0007W\u0002\u0002", - "\u0709\u070a\u0007P\u0002\u0002\u070a\u070b\u0007E\u0002\u0002\u070b", - "\u070c\u0007C\u0002\u0002\u070c\u070d\u0007E\u0002\u0002\u070d\u070e", - "\u0007J\u0002\u0002\u070e\u070f\u0007G\u0002\u0002\u070f\u0152\u0003", - "\u0002\u0002\u0002\u0710\u0711\u0007N\u0002\u0002\u0711\u0712\u0007", - "C\u0002\u0002\u0712\u0713\u0007\\\u0002\u0002\u0713\u0714\u0007[\u0002", - "\u0002\u0714\u0154\u0003\u0002\u0002\u0002\u0715\u0716\u0007H\u0002", - "\u0002\u0716\u0717\u0007Q\u0002\u0002\u0717\u0718\u0007T\u0002\u0002", - "\u0718\u0719\u0007O\u0002\u0002\u0719\u071a\u0007C\u0002\u0002\u071a", - "\u071b\u0007V\u0002\u0002\u071b\u071c\u0007V\u0002\u0002\u071c\u071d", - "\u0007G\u0002\u0002\u071d\u071e\u0007F\u0002\u0002\u071e\u0156\u0003", - "\u0002\u0002\u0002\u071f\u0720\u0007I\u0002\u0002\u0720\u0721\u0007", - "N\u0002\u0002\u0721\u0722\u0007Q\u0002\u0002\u0722\u0723\u0007D\u0002", - "\u0002\u0723\u0724\u0007C\u0002\u0002\u0724\u0725\u0007N\u0002\u0002", - "\u0725\u0158\u0003\u0002\u0002\u0002\u0726\u0727\u0007V\u0002\u0002", - "\u0727\u0728\u0007G\u0002\u0002\u0728\u0729\u0007O\u0002\u0002\u0729", - "\u072a\u0007R\u0002\u0002\u072a\u072b\u0007Q\u0002\u0002\u072b\u072c", - "\u0007T\u0002\u0002\u072c\u072d\u0007C\u0002\u0002\u072d\u072e\u0007", - "T\u0002\u0002\u072e\u072f\u0007[\u0002\u0002\u072f\u015a\u0003\u0002", - "\u0002\u0002\u0730\u0731\u0007Q\u0002\u0002\u0731\u0732\u0007R\u0002", + "\u0003\u0114\u0003\u0115\u0003\u0115\u0003\u0116\u0003\u0116\u0003\u0117", + "\u0003\u0117\u0003\u0118\u0003\u0118\u0003\u0119\u0003\u0119\u0003\u011a", + "\u0003\u011a\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011d", + "\u0003\u011d\u0003\u011e\u0003\u011e\u0003\u011f\u0003\u011f\u0003\u0120", + "\u0003\u0120\u0003\u0121\u0003\u0121\u0003\u0122\u0003\u0122\u0003\u0123", + "\u0003\u0123\u0003\u0124\u0003\u0124\u0003\u0125\u0003\u0125\u0003\u0126", + "\u0003\u0126\u0003\u0127\u0003\u0127\u0003\u0128\u0003\u0128\u0003\u0129", + "\u0003\u0129\u0003\u012a\u0003\u012a\u0003\u012b\u0003\u012b\u0003\u012c", + "\u0003\u012c\u0003\u012d\u0003\u012d\u0003\u012e\u0003\u012e\u0003\u012e", + "\u0003\u012f\u0003\u012f\u0003\u012f\u0003\u0130\u0003\u0130\u0003\u0131", + "\u0003\u0131\u0003\u0131\u0003\u0132\u0003\u0132\u0003\u0132\u0005\u0132", + "\u0a7a\n\u0132\u0003\u0133\u0006\u0133\u0a7d\n\u0133\r\u0133\u000e\u0133", + "\u0a7e\u0003\u0134\u0006\u0134\u0a82\n\u0134\r\u0134\u000e\u0134\u0a83", + "\u0005\u0134\u0a86\n\u0134\u0003\u0134\u0003\u0134\u0006\u0134\u0a8a", + "\n\u0134\r\u0134\u000e\u0134\u0a8b\u0003\u0134\u0006\u0134\u0a8f\n\u0134", + "\r\u0134\u000e\u0134\u0a90\u0003\u0134\u0003\u0134\u0003\u0134\u0003", + "\u0134\u0006\u0134\u0a97\n\u0134\r\u0134\u000e\u0134\u0a98\u0005\u0134", + "\u0a9b\n\u0134\u0003\u0134\u0003\u0134\u0006\u0134\u0a9f\n\u0134\r\u0134", + "\u000e\u0134\u0aa0\u0003\u0134\u0003\u0134\u0003\u0134\u0006\u0134\u0aa6", + "\n\u0134\r\u0134\u000e\u0134\u0aa7\u0003\u0134\u0003\u0134\u0005\u0134", + "\u0aac\n\u0134\u0003\u0135\u0003\u0135\u0003\u0136\u0003\u0136\u0003", + "\u0137\u0003\u0137\u0005\u0137\u0ab4\n\u0137\u0003\u0137\u0006\u0137", + "\u0ab7\n\u0137\r\u0137\u000e\u0137\u0ab8\u0003\u0138\u0007\u0138\u0abc", + "\n\u0138\f\u0138\u000e\u0138\u0abf\u000b\u0138\u0003\u0138\u0006\u0138", + "\u0ac2\n\u0138\r\u0138\u000e\u0138\u0ac3\u0003\u0138\u0007\u0138\u0ac7", + "\n\u0138\f\u0138\u000e\u0138\u0aca\u000b\u0138\u0003\u0139\u0003\u0139", + "\u0003\u013a\u0003\u013a\u0003\u013b\u0003\u013b\u0003\u013b\u0003\u013b", + "\u0003\u013b\u0003\u013b\u0007\u013b\u0ad6\n\u013b\f\u013b\u000e\u013b", + "\u0ad9\u000b\u013b\u0003\u013b\u0003\u013b\u0003\u013c\u0003\u013c\u0003", + "\u013c\u0003\u013c\u0003\u013c\u0003\u013c\u0007\u013c\u0ae3\n\u013c", + "\f\u013c\u000e\u013c\u0ae6\u000b\u013c\u0003\u013c\u0003\u013c\u0003", + "\u013d\u0003\u013d\u0003\u013d\u0006\u013d\u0aed\n\u013d\r\u013d\u000e", + "\u013d\u0aee\u0003\u013d\u0003\u013d\u0003\u013e\u0003\u013e\u0003\u013e", + "\u0003\u013e\u0003\u013e\u0003\u013e\u0007\u013e\u0af9\n\u013e\f\u013e", + "\u000e\u013e\u0afc\u000b\u013e\u0003\u013e\u0003\u013e\u0005\u028a\u0abd", + "\u0ac3\u0002\u013f\u0003\u0003\u0005\u0004\u0007\u0005\t\u0006\u000b", + "\u0007\r\b\u000f\t\u0011\n\u0013\u000b\u0015\f\u0017\r\u0019\u000e\u001b", + "\u000f\u001d\u0010\u001f\u0011!\u0012#\u0013%\u0014\'\u0015)\u0016+", + "\u0017-\u0018/\u00191\u001a3\u001b5\u001c7\u001d9\u001e;\u001f= ?!A", + "\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u{?}@\u007f", + "A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093", + "K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7", + "U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb", + "_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cf", + "i\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3", + "s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7", + "}\u00f9~\u00fb\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083", + "\u0105\u0084\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089", + "\u0111\u008a\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f", + "\u011d\u0090\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095", + "\u0129\u0096\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b", + "\u0135\u009c\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1", + "\u0141\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7", + "\u014d\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad", + "\u0159\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3", + "\u0165\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9", + "\u0171\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf", + "\u017d\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5", + "\u0189\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb", + "\u0195\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1", + "\u01a1\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7", + "\u01ad\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd", + "\u01b9\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3", + "\u01c5\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9", + "\u01d1\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef", + "\u01dd\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5", + "\u01e9\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb", + "\u01f5\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101", + "\u0201\u0102\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107", + "\u020d\u0108\u020f\u0109\u0211\u010a\u0213\u010b\u0215\u010c\u0217\u010d", + "\u0219\u010e\u021b\u010f\u021d\u0110\u021f\u0111\u0221\u0112\u0223\u0113", + "\u0225\u0114\u0227\u0115\u0229\u0116\u022b\u0117\u022d\u0118\u022f\u0119", + "\u0231\u011a\u0233\u011b\u0235\u011c\u0237\u011d\u0239\u011e\u023b\u011f", + "\u023d\u0120\u023f\u0121\u0241\u0122\u0243\u0123\u0245\u0124\u0247\u0125", + "\u0249\u0126\u024b\u0127\u024d\u0128\u024f\u0129\u0251\u012a\u0253\u012b", + "\u0255\u012c\u0257\u012d\u0259\u012e\u025b\u012f\u025d\u0130\u025f\u0131", + "\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135\u0269\u0136\u026b\u0137", + "\u026d\u0002\u026f\u0002\u0271\u0002\u0273\u0002\u0275\u0002\u0277\u0002", + "\u0279\u0002\u027b\u0002\u0003\u0002\r\u0005\u0002\u000b\f\u000f\u000f", + "\"\"\u0004\u0002\f\f\u000f\u000f\u0004\u0002--//\u0006\u00022;C\\aa", + "c|\u0005\u0002C\\aac|\u0003\u00022;\u0004\u0002C\\c|\u0004\u0002$$^", + "^\u0004\u0002))^^\u0003\u000223\u0004\u0002^^bb\u0002\u0b1c\u0002\u0003", + "\u0003\u0002\u0002\u0002\u0002\u0005\u0003\u0002\u0002\u0002\u0002\u0007", + "\u0003\u0002\u0002\u0002\u0002\t\u0003\u0002\u0002\u0002\u0002\u000b", + "\u0003\u0002\u0002\u0002\u0002\r\u0003\u0002\u0002\u0002\u0002\u000f", + "\u0003\u0002\u0002\u0002\u0002\u0011\u0003\u0002\u0002\u0002\u0002\u0013", + "\u0003\u0002\u0002\u0002\u0002\u0015\u0003\u0002\u0002\u0002\u0002\u0017", + "\u0003\u0002\u0002\u0002\u0002\u0019\u0003\u0002\u0002\u0002\u0002\u001b", + "\u0003\u0002\u0002\u0002\u0002\u001d\u0003\u0002\u0002\u0002\u0002\u001f", + "\u0003\u0002\u0002\u0002\u0002!\u0003\u0002\u0002\u0002\u0002#\u0003", + "\u0002\u0002\u0002\u0002%\u0003\u0002\u0002\u0002\u0002\'\u0003\u0002", + "\u0002\u0002\u0002)\u0003\u0002\u0002\u0002\u0002+\u0003\u0002\u0002", + "\u0002\u0002-\u0003\u0002\u0002\u0002\u0002/\u0003\u0002\u0002\u0002", + "\u00021\u0003\u0002\u0002\u0002\u00023\u0003\u0002\u0002\u0002\u0002", + "5\u0003\u0002\u0002\u0002\u00027\u0003\u0002\u0002\u0002\u00029\u0003", + "\u0002\u0002\u0002\u0002;\u0003\u0002\u0002\u0002\u0002=\u0003\u0002", + "\u0002\u0002\u0002?\u0003\u0002\u0002\u0002\u0002A\u0003\u0002\u0002", + "\u0002\u0002C\u0003\u0002\u0002\u0002\u0002E\u0003\u0002\u0002\u0002", + "\u0002G\u0003\u0002\u0002\u0002\u0002I\u0003\u0002\u0002\u0002\u0002", + "K\u0003\u0002\u0002\u0002\u0002M\u0003\u0002\u0002\u0002\u0002O\u0003", + "\u0002\u0002\u0002\u0002Q\u0003\u0002\u0002\u0002\u0002S\u0003\u0002", + "\u0002\u0002\u0002U\u0003\u0002\u0002\u0002\u0002W\u0003\u0002\u0002", + "\u0002\u0002Y\u0003\u0002\u0002\u0002\u0002[\u0003\u0002\u0002\u0002", + "\u0002]\u0003\u0002\u0002\u0002\u0002_\u0003\u0002\u0002\u0002\u0002", + "a\u0003\u0002\u0002\u0002\u0002c\u0003\u0002\u0002\u0002\u0002e\u0003", + "\u0002\u0002\u0002\u0002g\u0003\u0002\u0002\u0002\u0002i\u0003\u0002", + "\u0002\u0002\u0002k\u0003\u0002\u0002\u0002\u0002m\u0003\u0002\u0002", + "\u0002\u0002o\u0003\u0002\u0002\u0002\u0002q\u0003\u0002\u0002\u0002", + "\u0002s\u0003\u0002\u0002\u0002\u0002u\u0003\u0002\u0002\u0002\u0002", + "w\u0003\u0002\u0002\u0002\u0002y\u0003\u0002\u0002\u0002\u0002{\u0003", + "\u0002\u0002\u0002\u0002}\u0003\u0002\u0002\u0002\u0002\u007f\u0003", + "\u0002\u0002\u0002\u0002\u0081\u0003\u0002\u0002\u0002\u0002\u0083\u0003", + "\u0002\u0002\u0002\u0002\u0085\u0003\u0002\u0002\u0002\u0002\u0087\u0003", + "\u0002\u0002\u0002\u0002\u0089\u0003\u0002\u0002\u0002\u0002\u008b\u0003", + "\u0002\u0002\u0002\u0002\u008d\u0003\u0002\u0002\u0002\u0002\u008f\u0003", + "\u0002\u0002\u0002\u0002\u0091\u0003\u0002\u0002\u0002\u0002\u0093\u0003", + "\u0002\u0002\u0002\u0002\u0095\u0003\u0002\u0002\u0002\u0002\u0097\u0003", + "\u0002\u0002\u0002\u0002\u0099\u0003\u0002\u0002\u0002\u0002\u009b\u0003", + "\u0002\u0002\u0002\u0002\u009d\u0003\u0002\u0002\u0002\u0002\u009f\u0003", + "\u0002\u0002\u0002\u0002\u00a1\u0003\u0002\u0002\u0002\u0002\u00a3\u0003", + "\u0002\u0002\u0002\u0002\u00a5\u0003\u0002\u0002\u0002\u0002\u00a7\u0003", + "\u0002\u0002\u0002\u0002\u00a9\u0003\u0002\u0002\u0002\u0002\u00ab\u0003", + "\u0002\u0002\u0002\u0002\u00ad\u0003\u0002\u0002\u0002\u0002\u00af\u0003", + "\u0002\u0002\u0002\u0002\u00b1\u0003\u0002\u0002\u0002\u0002\u00b3\u0003", + "\u0002\u0002\u0002\u0002\u00b5\u0003\u0002\u0002\u0002\u0002\u00b7\u0003", + "\u0002\u0002\u0002\u0002\u00b9\u0003\u0002\u0002\u0002\u0002\u00bb\u0003", + "\u0002\u0002\u0002\u0002\u00bd\u0003\u0002\u0002\u0002\u0002\u00bf\u0003", + "\u0002\u0002\u0002\u0002\u00c1\u0003\u0002\u0002\u0002\u0002\u00c3\u0003", + "\u0002\u0002\u0002\u0002\u00c5\u0003\u0002\u0002\u0002\u0002\u00c7\u0003", + "\u0002\u0002\u0002\u0002\u00c9\u0003\u0002\u0002\u0002\u0002\u00cb\u0003", + "\u0002\u0002\u0002\u0002\u00cd\u0003\u0002\u0002\u0002\u0002\u00cf\u0003", + "\u0002\u0002\u0002\u0002\u00d1\u0003\u0002\u0002\u0002\u0002\u00d3\u0003", + "\u0002\u0002\u0002\u0002\u00d5\u0003\u0002\u0002\u0002\u0002\u00d7\u0003", + "\u0002\u0002\u0002\u0002\u00d9\u0003\u0002\u0002\u0002\u0002\u00db\u0003", + "\u0002\u0002\u0002\u0002\u00dd\u0003\u0002\u0002\u0002\u0002\u00df\u0003", + "\u0002\u0002\u0002\u0002\u00e1\u0003\u0002\u0002\u0002\u0002\u00e3\u0003", + "\u0002\u0002\u0002\u0002\u00e5\u0003\u0002\u0002\u0002\u0002\u00e7\u0003", + "\u0002\u0002\u0002\u0002\u00e9\u0003\u0002\u0002\u0002\u0002\u00eb\u0003", + "\u0002\u0002\u0002\u0002\u00ed\u0003\u0002\u0002\u0002\u0002\u00ef\u0003", + "\u0002\u0002\u0002\u0002\u00f1\u0003\u0002\u0002\u0002\u0002\u00f3\u0003", + "\u0002\u0002\u0002\u0002\u00f5\u0003\u0002\u0002\u0002\u0002\u00f7\u0003", + "\u0002\u0002\u0002\u0002\u00f9\u0003\u0002\u0002\u0002\u0002\u00fb\u0003", + "\u0002\u0002\u0002\u0002\u00fd\u0003\u0002\u0002\u0002\u0002\u00ff\u0003", + "\u0002\u0002\u0002\u0002\u0101\u0003\u0002\u0002\u0002\u0002\u0103\u0003", + "\u0002\u0002\u0002\u0002\u0105\u0003\u0002\u0002\u0002\u0002\u0107\u0003", + "\u0002\u0002\u0002\u0002\u0109\u0003\u0002\u0002\u0002\u0002\u010b\u0003", + "\u0002\u0002\u0002\u0002\u010d\u0003\u0002\u0002\u0002\u0002\u010f\u0003", + "\u0002\u0002\u0002\u0002\u0111\u0003\u0002\u0002\u0002\u0002\u0113\u0003", + "\u0002\u0002\u0002\u0002\u0115\u0003\u0002\u0002\u0002\u0002\u0117\u0003", + "\u0002\u0002\u0002\u0002\u0119\u0003\u0002\u0002\u0002\u0002\u011b\u0003", + "\u0002\u0002\u0002\u0002\u011d\u0003\u0002\u0002\u0002\u0002\u011f\u0003", + "\u0002\u0002\u0002\u0002\u0121\u0003\u0002\u0002\u0002\u0002\u0123\u0003", + "\u0002\u0002\u0002\u0002\u0125\u0003\u0002\u0002\u0002\u0002\u0127\u0003", + "\u0002\u0002\u0002\u0002\u0129\u0003\u0002\u0002\u0002\u0002\u012b\u0003", + "\u0002\u0002\u0002\u0002\u012d\u0003\u0002\u0002\u0002\u0002\u012f\u0003", + "\u0002\u0002\u0002\u0002\u0131\u0003\u0002\u0002\u0002\u0002\u0133\u0003", + "\u0002\u0002\u0002\u0002\u0135\u0003\u0002\u0002\u0002\u0002\u0137\u0003", + "\u0002\u0002\u0002\u0002\u0139\u0003\u0002\u0002\u0002\u0002\u013b\u0003", + "\u0002\u0002\u0002\u0002\u013d\u0003\u0002\u0002\u0002\u0002\u013f\u0003", + "\u0002\u0002\u0002\u0002\u0141\u0003\u0002\u0002\u0002\u0002\u0143\u0003", + "\u0002\u0002\u0002\u0002\u0145\u0003\u0002\u0002\u0002\u0002\u0147\u0003", + "\u0002\u0002\u0002\u0002\u0149\u0003\u0002\u0002\u0002\u0002\u014b\u0003", + "\u0002\u0002\u0002\u0002\u014d\u0003\u0002\u0002\u0002\u0002\u014f\u0003", + "\u0002\u0002\u0002\u0002\u0151\u0003\u0002\u0002\u0002\u0002\u0153\u0003", + "\u0002\u0002\u0002\u0002\u0155\u0003\u0002\u0002\u0002\u0002\u0157\u0003", + "\u0002\u0002\u0002\u0002\u0159\u0003\u0002\u0002\u0002\u0002\u015b\u0003", + "\u0002\u0002\u0002\u0002\u015d\u0003\u0002\u0002\u0002\u0002\u015f\u0003", + "\u0002\u0002\u0002\u0002\u0161\u0003\u0002\u0002\u0002\u0002\u0163\u0003", + "\u0002\u0002\u0002\u0002\u0165\u0003\u0002\u0002\u0002\u0002\u0167\u0003", + "\u0002\u0002\u0002\u0002\u0169\u0003\u0002\u0002\u0002\u0002\u016b\u0003", + "\u0002\u0002\u0002\u0002\u016d\u0003\u0002\u0002\u0002\u0002\u016f\u0003", + "\u0002\u0002\u0002\u0002\u0171\u0003\u0002\u0002\u0002\u0002\u0173\u0003", + "\u0002\u0002\u0002\u0002\u0175\u0003\u0002\u0002\u0002\u0002\u0177\u0003", + "\u0002\u0002\u0002\u0002\u0179\u0003\u0002\u0002\u0002\u0002\u017b\u0003", + "\u0002\u0002\u0002\u0002\u017d\u0003\u0002\u0002\u0002\u0002\u017f\u0003", + "\u0002\u0002\u0002\u0002\u0181\u0003\u0002\u0002\u0002\u0002\u0183\u0003", + "\u0002\u0002\u0002\u0002\u0185\u0003\u0002\u0002\u0002\u0002\u0187\u0003", + "\u0002\u0002\u0002\u0002\u0189\u0003\u0002\u0002\u0002\u0002\u018b\u0003", + "\u0002\u0002\u0002\u0002\u018d\u0003\u0002\u0002\u0002\u0002\u018f\u0003", + "\u0002\u0002\u0002\u0002\u0191\u0003\u0002\u0002\u0002\u0002\u0193\u0003", + "\u0002\u0002\u0002\u0002\u0195\u0003\u0002\u0002\u0002\u0002\u0197\u0003", + "\u0002\u0002\u0002\u0002\u0199\u0003\u0002\u0002\u0002\u0002\u019b\u0003", + "\u0002\u0002\u0002\u0002\u019d\u0003\u0002\u0002\u0002\u0002\u019f\u0003", + "\u0002\u0002\u0002\u0002\u01a1\u0003\u0002\u0002\u0002\u0002\u01a3\u0003", + "\u0002\u0002\u0002\u0002\u01a5\u0003\u0002\u0002\u0002\u0002\u01a7\u0003", + "\u0002\u0002\u0002\u0002\u01a9\u0003\u0002\u0002\u0002\u0002\u01ab\u0003", + "\u0002\u0002\u0002\u0002\u01ad\u0003\u0002\u0002\u0002\u0002\u01af\u0003", + "\u0002\u0002\u0002\u0002\u01b1\u0003\u0002\u0002\u0002\u0002\u01b3\u0003", + "\u0002\u0002\u0002\u0002\u01b5\u0003\u0002\u0002\u0002\u0002\u01b7\u0003", + "\u0002\u0002\u0002\u0002\u01b9\u0003\u0002\u0002\u0002\u0002\u01bb\u0003", + "\u0002\u0002\u0002\u0002\u01bd\u0003\u0002\u0002\u0002\u0002\u01bf\u0003", + "\u0002\u0002\u0002\u0002\u01c1\u0003\u0002\u0002\u0002\u0002\u01c3\u0003", + "\u0002\u0002\u0002\u0002\u01c5\u0003\u0002\u0002\u0002\u0002\u01c7\u0003", + "\u0002\u0002\u0002\u0002\u01c9\u0003\u0002\u0002\u0002\u0002\u01cb\u0003", + "\u0002\u0002\u0002\u0002\u01cd\u0003\u0002\u0002\u0002\u0002\u01cf\u0003", + "\u0002\u0002\u0002\u0002\u01d1\u0003\u0002\u0002\u0002\u0002\u01d3\u0003", + "\u0002\u0002\u0002\u0002\u01d5\u0003\u0002\u0002\u0002\u0002\u01d7\u0003", + "\u0002\u0002\u0002\u0002\u01d9\u0003\u0002\u0002\u0002\u0002\u01db\u0003", + "\u0002\u0002\u0002\u0002\u01dd\u0003\u0002\u0002\u0002\u0002\u01df\u0003", + "\u0002\u0002\u0002\u0002\u01e1\u0003\u0002\u0002\u0002\u0002\u01e3\u0003", + "\u0002\u0002\u0002\u0002\u01e5\u0003\u0002\u0002\u0002\u0002\u01e7\u0003", + "\u0002\u0002\u0002\u0002\u01e9\u0003\u0002\u0002\u0002\u0002\u01eb\u0003", + "\u0002\u0002\u0002\u0002\u01ed\u0003\u0002\u0002\u0002\u0002\u01ef\u0003", + "\u0002\u0002\u0002\u0002\u01f1\u0003\u0002\u0002\u0002\u0002\u01f3\u0003", + "\u0002\u0002\u0002\u0002\u01f5\u0003\u0002\u0002\u0002\u0002\u01f7\u0003", + "\u0002\u0002\u0002\u0002\u01f9\u0003\u0002\u0002\u0002\u0002\u01fb\u0003", + "\u0002\u0002\u0002\u0002\u01fd\u0003\u0002\u0002\u0002\u0002\u01ff\u0003", + "\u0002\u0002\u0002\u0002\u0201\u0003\u0002\u0002\u0002\u0002\u0203\u0003", + "\u0002\u0002\u0002\u0002\u0205\u0003\u0002\u0002\u0002\u0002\u0207\u0003", + "\u0002\u0002\u0002\u0002\u0209\u0003\u0002\u0002\u0002\u0002\u020b\u0003", + "\u0002\u0002\u0002\u0002\u020d\u0003\u0002\u0002\u0002\u0002\u020f\u0003", + "\u0002\u0002\u0002\u0002\u0211\u0003\u0002\u0002\u0002\u0002\u0213\u0003", + "\u0002\u0002\u0002\u0002\u0215\u0003\u0002\u0002\u0002\u0002\u0217\u0003", + "\u0002\u0002\u0002\u0002\u0219\u0003\u0002\u0002\u0002\u0002\u021b\u0003", + "\u0002\u0002\u0002\u0002\u021d\u0003\u0002\u0002\u0002\u0002\u021f\u0003", + "\u0002\u0002\u0002\u0002\u0221\u0003\u0002\u0002\u0002\u0002\u0223\u0003", + "\u0002\u0002\u0002\u0002\u0225\u0003\u0002\u0002\u0002\u0002\u0227\u0003", + "\u0002\u0002\u0002\u0002\u0229\u0003\u0002\u0002\u0002\u0002\u022b\u0003", + "\u0002\u0002\u0002\u0002\u022d\u0003\u0002\u0002\u0002\u0002\u022f\u0003", + "\u0002\u0002\u0002\u0002\u0231\u0003\u0002\u0002\u0002\u0002\u0233\u0003", + "\u0002\u0002\u0002\u0002\u0235\u0003\u0002\u0002\u0002\u0002\u0237\u0003", + "\u0002\u0002\u0002\u0002\u0239\u0003\u0002\u0002\u0002\u0002\u023b\u0003", + "\u0002\u0002\u0002\u0002\u023d\u0003\u0002\u0002\u0002\u0002\u023f\u0003", + "\u0002\u0002\u0002\u0002\u0241\u0003\u0002\u0002\u0002\u0002\u0243\u0003", + "\u0002\u0002\u0002\u0002\u0245\u0003\u0002\u0002\u0002\u0002\u0247\u0003", + "\u0002\u0002\u0002\u0002\u0249\u0003\u0002\u0002\u0002\u0002\u024b\u0003", + "\u0002\u0002\u0002\u0002\u024d\u0003\u0002\u0002\u0002\u0002\u024f\u0003", + "\u0002\u0002\u0002\u0002\u0251\u0003\u0002\u0002\u0002\u0002\u0253\u0003", + "\u0002\u0002\u0002\u0002\u0255\u0003\u0002\u0002\u0002\u0002\u0257\u0003", + "\u0002\u0002\u0002\u0002\u0259\u0003\u0002\u0002\u0002\u0002\u025b\u0003", + "\u0002\u0002\u0002\u0002\u025d\u0003\u0002\u0002\u0002\u0002\u025f\u0003", + "\u0002\u0002\u0002\u0002\u0261\u0003\u0002\u0002\u0002\u0002\u0263\u0003", + "\u0002\u0002\u0002\u0002\u0265\u0003\u0002\u0002\u0002\u0002\u0267\u0003", + "\u0002\u0002\u0002\u0002\u0269\u0003\u0002\u0002\u0002\u0002\u026b\u0003", + "\u0002\u0002\u0002\u0003\u027e\u0003\u0002\u0002\u0002\u0005\u0284\u0003", + "\u0002\u0002\u0002\u0007\u02af\u0003\u0002\u0002\u0002\t\u02b3\u0003", + "\u0002\u0002\u0002\u000b\u02ba\u0003\u0002\u0002\u0002\r\u02bf\u0003", + "\u0002\u0002\u0002\u000f\u02c3\u0003\u0002\u0002\u0002\u0011\u02c6\u0003", + "\u0002\u0002\u0002\u0013\u02ca\u0003\u0002\u0002\u0002\u0015\u02ce\u0003", + "\u0002\u0002\u0002\u0017\u02d7\u0003\u0002\u0002\u0002\u0019\u02dd\u0003", + "\u0002\u0002\u0002\u001b\u02e3\u0003\u0002\u0002\u0002\u001d\u02e6\u0003", + "\u0002\u0002\u0002\u001f\u02ef\u0003\u0002\u0002\u0002!\u02f4\u0003", + "\u0002\u0002\u0002#\u02f9\u0003\u0002\u0002\u0002%\u0300\u0003\u0002", + "\u0002\u0002\'\u0306\u0003\u0002\u0002\u0002)\u030d\u0003\u0002\u0002", + "\u0002+\u0313\u0003\u0002\u0002\u0002-\u0316\u0003\u0002\u0002\u0002", + "/\u0319\u0003\u0002\u0002\u00021\u031d\u0003\u0002\u0002\u00023\u0320", + "\u0003\u0002\u0002\u00025\u0324\u0003\u0002\u0002\u00027\u0327\u0003", + "\u0002\u0002\u00029\u032e\u0003\u0002\u0002\u0002;\u0336\u0003\u0002", + "\u0002\u0002=\u033b\u0003\u0002\u0002\u0002?\u0341\u0003\u0002\u0002", + "\u0002A\u0344\u0003\u0002\u0002\u0002C\u0349\u0003\u0002\u0002\u0002", + "E\u034f\u0003\u0002\u0002\u0002G\u0355\u0003\u0002\u0002\u0002I\u0359", + "\u0003\u0002\u0002\u0002K\u035e\u0003\u0002\u0002\u0002M\u0362\u0003", + "\u0002\u0002\u0002O\u036b\u0003\u0002\u0002\u0002Q\u0370\u0003\u0002", + "\u0002\u0002S\u0375\u0003\u0002\u0002\u0002U\u037a\u0003\u0002\u0002", + "\u0002W\u037f\u0003\u0002\u0002\u0002Y\u0383\u0003\u0002\u0002\u0002", + "[\u0388\u0003\u0002\u0002\u0002]\u038e\u0003\u0002\u0002\u0002_\u0394", + "\u0003\u0002\u0002\u0002a\u039a\u0003\u0002\u0002\u0002c\u039f\u0003", + "\u0002\u0002\u0002e\u03a4\u0003\u0002\u0002\u0002g\u03aa\u0003\u0002", + "\u0002\u0002i\u03af\u0003\u0002\u0002\u0002k\u03b7\u0003\u0002\u0002", + "\u0002m\u03ba\u0003\u0002\u0002\u0002o\u03c0\u0003\u0002\u0002\u0002", + "q\u03c8\u0003\u0002\u0002\u0002s\u03cf\u0003\u0002\u0002\u0002u\u03d4", + "\u0003\u0002\u0002\u0002w\u03de\u0003\u0002\u0002\u0002y\u03e4\u0003", + "\u0002\u0002\u0002{\u03e9\u0003\u0002\u0002\u0002}\u03f3\u0003\u0002", + "\u0002\u0002\u007f\u03fd\u0003\u0002\u0002\u0002\u0081\u0407\u0003\u0002", + "\u0002\u0002\u0083\u040f\u0003\u0002\u0002\u0002\u0085\u0415\u0003\u0002", + "\u0002\u0002\u0087\u041b\u0003\u0002\u0002\u0002\u0089\u0420\u0003\u0002", + "\u0002\u0002\u008b\u0425\u0003\u0002\u0002\u0002\u008d\u042c\u0003\u0002", + "\u0002\u0002\u008f\u0433\u0003\u0002\u0002\u0002\u0091\u0439\u0003\u0002", + "\u0002\u0002\u0093\u0443\u0003\u0002\u0002\u0002\u0095\u0448\u0003\u0002", + "\u0002\u0002\u0097\u0450\u0003\u0002\u0002\u0002\u0099\u0457\u0003\u0002", + "\u0002\u0002\u009b\u045e\u0003\u0002\u0002\u0002\u009d\u0463\u0003\u0002", + "\u0002\u0002\u009f\u046c\u0003\u0002\u0002\u0002\u00a1\u0474\u0003\u0002", + "\u0002\u0002\u00a3\u047b\u0003\u0002\u0002\u0002\u00a5\u0483\u0003\u0002", + "\u0002\u0002\u00a7\u048b\u0003\u0002\u0002\u0002\u00a9\u0490\u0003\u0002", + "\u0002\u0002\u00ab\u0495\u0003\u0002\u0002\u0002\u00ad\u049a\u0003\u0002", + "\u0002\u0002\u00af\u04a1\u0003\u0002\u0002\u0002\u00b1\u04a9\u0003\u0002", + "\u0002\u0002\u00b3\u04b0\u0003\u0002\u0002\u0002\u00b5\u04b4\u0003\u0002", + "\u0002\u0002\u00b7\u04bf\u0003\u0002\u0002\u0002\u00b9\u04c9\u0003\u0002", + "\u0002\u0002\u00bb\u04ce\u0003\u0002\u0002\u0002\u00bd\u04d4\u0003\u0002", + "\u0002\u0002\u00bf\u04db\u0003\u0002\u0002\u0002\u00c1\u04e4\u0003\u0002", + "\u0002\u0002\u00c3\u04ee\u0003\u0002\u0002\u0002\u00c5\u04f1\u0003\u0002", + "\u0002\u0002\u00c7\u04fd\u0003\u0002\u0002\u0002\u00c9\u0506\u0003\u0002", + "\u0002\u0002\u00cb\u050c\u0003\u0002\u0002\u0002\u00cd\u0513\u0003\u0002", + "\u0002\u0002\u00cf\u051a\u0003\u0002\u0002\u0002\u00d1\u0522\u0003\u0002", + "\u0002\u0002\u00d3\u0526\u0003\u0002\u0002\u0002\u00d5\u052c\u0003\u0002", + "\u0002\u0002\u00d7\u0531\u0003\u0002\u0002\u0002\u00d9\u0537\u0003\u0002", + "\u0002\u0002\u00db\u0543\u0003\u0002\u0002\u0002\u00dd\u054a\u0003\u0002", + "\u0002\u0002\u00df\u0553\u0003\u0002\u0002\u0002\u00e1\u0559\u0003\u0002", + "\u0002\u0002\u00e3\u0560\u0003\u0002\u0002\u0002\u00e5\u0565\u0003\u0002", + "\u0002\u0002\u00e7\u056d\u0003\u0002\u0002\u0002\u00e9\u0576\u0003\u0002", + "\u0002\u0002\u00eb\u0579\u0003\u0002\u0002\u0002\u00ed\u0582\u0003\u0002", + "\u0002\u0002\u00ef\u058a\u0003\u0002\u0002\u0002\u00f1\u058d\u0003\u0002", + "\u0002\u0002\u00f3\u0592\u0003\u0002\u0002\u0002\u00f5\u0596\u0003\u0002", + "\u0002\u0002\u00f7\u059b\u0003\u0002\u0002\u0002\u00f9\u059e\u0003\u0002", + "\u0002\u0002\u00fb\u05a2\u0003\u0002\u0002\u0002\u00fd\u05a5\u0003\u0002", + "\u0002\u0002\u00ff\u05a9\u0003\u0002\u0002\u0002\u0101\u05ae\u0003\u0002", + "\u0002\u0002\u0103\u05b4\u0003\u0002\u0002\u0002\u0105\u05bd\u0003\u0002", + "\u0002\u0002\u0107\u05c3\u0003\u0002\u0002\u0002\u0109\u05cb\u0003\u0002", + "\u0002\u0002\u010b\u05cf\u0003\u0002\u0002\u0002\u010d\u05d5\u0003\u0002", + "\u0002\u0002\u010f\u05df\u0003\u0002\u0002\u0002\u0111\u05e4\u0003\u0002", + "\u0002\u0002\u0113\u05f0\u0003\u0002\u0002\u0002\u0115\u05f4\u0003\u0002", + "\u0002\u0002\u0117\u05ff\u0003\u0002\u0002\u0002\u0119\u0606\u0003\u0002", + "\u0002\u0002\u011b\u060a\u0003\u0002\u0002\u0002\u011d\u060d\u0003\u0002", + "\u0002\u0002\u011f\u0612\u0003\u0002\u0002\u0002\u0121\u061a\u0003\u0002", + "\u0002\u0002\u0123\u0625\u0003\u0002\u0002\u0002\u0125\u062f\u0003\u0002", + "\u0002\u0002\u0127\u0639\u0003\u0002\u0002\u0002\u0129\u0640\u0003\u0002", + "\u0002\u0002\u012b\u0646\u0003\u0002\u0002\u0002\u012d\u064c\u0003\u0002", + "\u0002\u0002\u012f\u065c\u0003\u0002\u0002\u0002\u0131\u0669\u0003\u0002", + "\u0002\u0002\u0133\u0676\u0003\u0002\u0002\u0002\u0135\u0680\u0003\u0002", + "\u0002\u0002\u0137\u0687\u0003\u0002\u0002\u0002\u0139\u0692\u0003\u0002", + "\u0002\u0002\u013b\u069d\u0003\u0002\u0002\u0002\u013d\u06a3\u0003\u0002", + "\u0002\u0002\u013f\u06a8\u0003\u0002\u0002\u0002\u0141\u06b0\u0003\u0002", + "\u0002\u0002\u0143\u06b6\u0003\u0002\u0002\u0002\u0145\u06c0\u0003\u0002", + "\u0002\u0002\u0147\u06c9\u0003\u0002\u0002\u0002\u0149\u06d2\u0003\u0002", + "\u0002\u0002\u014b\u06da\u0003\u0002\u0002\u0002\u014d\u06e0\u0003\u0002", + "\u0002\u0002\u014f\u06e6\u0003\u0002\u0002\u0002\u0151\u06ee\u0003\u0002", + "\u0002\u0002\u0153\u06f3\u0003\u0002\u0002\u0002\u0155\u06fd\u0003\u0002", + "\u0002\u0002\u0157\u0704\u0003\u0002\u0002\u0002\u0159\u070e\u0003\u0002", + "\u0002\u0002\u015b\u0716\u0003\u0002\u0002\u0002\u015d\u071c\u0003\u0002", + "\u0002\u0002\u015f\u072a\u0003\u0002\u0002\u0002\u0161\u0737\u0003\u0002", + "\u0002\u0002\u0163\u073f\u0003\u0002\u0002\u0002\u0165\u0746\u0003\u0002", + "\u0002\u0002\u0167\u074d\u0003\u0002\u0002\u0002\u0169\u0759\u0003\u0002", + "\u0002\u0002\u016b\u0762\u0003\u0002\u0002\u0002\u016d\u076b\u0003\u0002", + "\u0002\u0002\u016f\u0773\u0003\u0002\u0002\u0002\u0171\u077d\u0003\u0002", + "\u0002\u0002\u0173\u0788\u0003\u0002\u0002\u0002\u0175\u078e\u0003\u0002", + "\u0002\u0002\u0177\u0796\u0003\u0002\u0002\u0002\u0179\u07a2\u0003\u0002", + "\u0002\u0002\u017b\u07a9\u0003\u0002\u0002\u0002\u017d\u07b1\u0003\u0002", + "\u0002\u0002\u017f\u07ba\u0003\u0002\u0002\u0002\u0181\u07c4\u0003\u0002", + "\u0002\u0002\u0183\u07cb\u0003\u0002\u0002\u0002\u0185\u07d1\u0003\u0002", + "\u0002\u0002\u0187\u07dd\u0003\u0002\u0002\u0002\u0189\u07ea\u0003\u0002", + "\u0002\u0002\u018b\u07f3\u0003\u0002\u0002\u0002\u018d\u07fd\u0003\u0002", + "\u0002\u0002\u018f\u0801\u0003\u0002\u0002\u0002\u0191\u080a\u0003\u0002", + "\u0002\u0002\u0193\u0812\u0003\u0002\u0002\u0002\u0195\u081a\u0003\u0002", + "\u0002\u0002\u0197\u081f\u0003\u0002\u0002\u0002\u0199\u082a\u0003\u0002", + "\u0002\u0002\u019b\u0836\u0003\u0002\u0002\u0002\u019d\u083f\u0003\u0002", + "\u0002\u0002\u019f\u0847\u0003\u0002\u0002\u0002\u01a1\u084e\u0003\u0002", + "\u0002\u0002\u01a3\u0854\u0003\u0002\u0002\u0002\u01a5\u0859\u0003\u0002", + "\u0002\u0002\u01a7\u0860\u0003\u0002\u0002\u0002\u01a9\u0865\u0003\u0002", + "\u0002\u0002\u01ab\u086c\u0003\u0002\u0002\u0002\u01ad\u0874\u0003\u0002", + "\u0002\u0002\u01af\u087b\u0003\u0002\u0002\u0002\u01b1\u0882\u0003\u0002", + "\u0002\u0002\u01b3\u0887\u0003\u0002\u0002\u0002\u01b5\u088c\u0003\u0002", + "\u0002\u0002\u01b7\u0892\u0003\u0002\u0002\u0002\u01b9\u089e\u0003\u0002", + "\u0002\u0002\u01bb\u08a9\u0003\u0002\u0002\u0002\u01bd\u08b6\u0003\u0002", + "\u0002\u0002\u01bf\u08bc\u0003\u0002\u0002\u0002\u01c1\u08c4\u0003\u0002", + "\u0002\u0002\u01c3\u08ca\u0003\u0002\u0002\u0002\u01c5\u08d1\u0003\u0002", + "\u0002\u0002\u01c7\u08d6\u0003\u0002\u0002\u0002\u01c9\u08dc\u0003\u0002", + "\u0002\u0002\u01cb\u08e3\u0003\u0002\u0002\u0002\u01cd\u08ed\u0003\u0002", + "\u0002\u0002\u01cf\u08f4\u0003\u0002\u0002\u0002\u01d1\u0904\u0003\u0002", + "\u0002\u0002\u01d3\u090d\u0003\u0002\u0002\u0002\u01d5\u0911\u0003\u0002", + "\u0002\u0002\u01d7\u0915\u0003\u0002\u0002\u0002\u01d9\u091b\u0003\u0002", + "\u0002\u0002\u01db\u0921\u0003\u0002\u0002\u0002\u01dd\u0926\u0003\u0002", + "\u0002\u0002\u01df\u092b\u0003\u0002\u0002\u0002\u01e1\u0933\u0003\u0002", + "\u0002\u0002\u01e3\u093a\u0003\u0002\u0002\u0002\u01e5\u0941\u0003\u0002", + "\u0002\u0002\u01e7\u0944\u0003\u0002\u0002\u0002\u01e9\u094b\u0003\u0002", + "\u0002\u0002\u01eb\u0955\u0003\u0002\u0002\u0002\u01ed\u095f\u0003\u0002", + "\u0002\u0002\u01ef\u096b\u0003\u0002\u0002\u0002\u01f1\u0977\u0003\u0002", + "\u0002\u0002\u01f3\u0981\u0003\u0002\u0002\u0002\u01f5\u0989\u0003\u0002", + "\u0002\u0002\u01f7\u0992\u0003\u0002\u0002\u0002\u01f9\u099b\u0003\u0002", + "\u0002\u0002\u01fb\u09a1\u0003\u0002\u0002\u0002\u01fd\u09a8\u0003\u0002", + "\u0002\u0002\u01ff\u09ae\u0003\u0002\u0002\u0002\u0201\u09b2\u0003\u0002", + "\u0002\u0002\u0203\u09b7\u0003\u0002\u0002\u0002\u0205\u09bf\u0003\u0002", + "\u0002\u0002\u0207\u09c6\u0003\u0002\u0002\u0002\u0209\u09d0\u0003\u0002", + "\u0002\u0002\u020b\u09d6\u0003\u0002\u0002\u0002\u020d\u09de\u0003\u0002", + "\u0002\u0002\u020f\u09e6\u0003\u0002\u0002\u0002\u0211\u09ef\u0003\u0002", + "\u0002\u0002\u0213\u09f3\u0003\u0002\u0002\u0002\u0215\u09fa\u0003\u0002", + "\u0002\u0002\u0217\u0a00\u0003\u0002\u0002\u0002\u0219\u0a07\u0003\u0002", + "\u0002\u0002\u021b\u0a0c\u0003\u0002\u0002\u0002\u021d\u0a11\u0003\u0002", + "\u0002\u0002\u021f\u0a1b\u0003\u0002\u0002\u0002\u0221\u0a24\u0003\u0002", + "\u0002\u0002\u0223\u0a2c\u0003\u0002\u0002\u0002\u0225\u0a30\u0003\u0002", + "\u0002\u0002\u0227\u0a34\u0003\u0002\u0002\u0002\u0229\u0a39\u0003\u0002", + "\u0002\u0002\u022b\u0a3b\u0003\u0002\u0002\u0002\u022d\u0a3d\u0003\u0002", + "\u0002\u0002\u022f\u0a3f\u0003\u0002\u0002\u0002\u0231\u0a41\u0003\u0002", + "\u0002\u0002\u0233\u0a43\u0003\u0002\u0002\u0002\u0235\u0a45\u0003\u0002", + "\u0002\u0002\u0237\u0a47\u0003\u0002\u0002\u0002\u0239\u0a49\u0003\u0002", + "\u0002\u0002\u023b\u0a4b\u0003\u0002\u0002\u0002\u023d\u0a4d\u0003\u0002", + "\u0002\u0002\u023f\u0a4f\u0003\u0002\u0002\u0002\u0241\u0a51\u0003\u0002", + "\u0002\u0002\u0243\u0a53\u0003\u0002\u0002\u0002\u0245\u0a55\u0003\u0002", + "\u0002\u0002\u0247\u0a57\u0003\u0002\u0002\u0002\u0249\u0a59\u0003\u0002", + "\u0002\u0002\u024b\u0a5b\u0003\u0002\u0002\u0002\u024d\u0a5d\u0003\u0002", + "\u0002\u0002\u024f\u0a5f\u0003\u0002\u0002\u0002\u0251\u0a61\u0003\u0002", + "\u0002\u0002\u0253\u0a63\u0003\u0002\u0002\u0002\u0255\u0a65\u0003\u0002", + "\u0002\u0002\u0257\u0a67\u0003\u0002\u0002\u0002\u0259\u0a69\u0003\u0002", + "\u0002\u0002\u025b\u0a6b\u0003\u0002\u0002\u0002\u025d\u0a6e\u0003\u0002", + "\u0002\u0002\u025f\u0a71\u0003\u0002\u0002\u0002\u0261\u0a73\u0003\u0002", + "\u0002\u0002\u0263\u0a79\u0003\u0002\u0002\u0002\u0265\u0a7c\u0003\u0002", + "\u0002\u0002\u0267\u0aab\u0003\u0002\u0002\u0002\u0269\u0aad\u0003\u0002", + "\u0002\u0002\u026b\u0aaf\u0003\u0002\u0002\u0002\u026d\u0ab1\u0003\u0002", + "\u0002\u0002\u026f\u0abd\u0003\u0002\u0002\u0002\u0271\u0acb\u0003\u0002", + "\u0002\u0002\u0273\u0acd\u0003\u0002\u0002\u0002\u0275\u0acf\u0003\u0002", + "\u0002\u0002\u0277\u0adc\u0003\u0002\u0002\u0002\u0279\u0ae9\u0003\u0002", + "\u0002\u0002\u027b\u0af2\u0003\u0002\u0002\u0002\u027d\u027f\t\u0002", + "\u0002\u0002\u027e\u027d\u0003\u0002\u0002\u0002\u027f\u0280\u0003\u0002", + "\u0002\u0002\u0280\u027e\u0003\u0002\u0002\u0002\u0280\u0281\u0003\u0002", + "\u0002\u0002\u0281\u0282\u0003\u0002\u0002\u0002\u0282\u0283\b\u0002", + "\u0002\u0002\u0283\u0004\u0003\u0002\u0002\u0002\u0284\u0285\u00071", + "\u0002\u0002\u0285\u0286\u0007,\u0002\u0002\u0286\u028a\u0003\u0002", + "\u0002\u0002\u0287\u0289\u000b\u0002\u0002\u0002\u0288\u0287\u0003\u0002", + "\u0002\u0002\u0289\u028c\u0003\u0002\u0002\u0002\u028a\u028b\u0003\u0002", + "\u0002\u0002\u028a\u0288\u0003\u0002\u0002\u0002\u028b\u028d\u0003\u0002", + "\u0002\u0002\u028c\u028a\u0003\u0002\u0002\u0002\u028d\u028e\u0007,", + "\u0002\u0002\u028e\u028f\u00071\u0002\u0002\u028f\u0290\u0003\u0002", + "\u0002\u0002\u0290\u0291\b\u0003\u0002\u0002\u0291\u0006\u0003\u0002", + "\u0002\u0002\u0292\u0293\u0007/\u0002\u0002\u0293\u0294\u0007/\u0002", + "\u0002\u0294\u0297\u0007\"\u0002\u0002\u0295\u0297\u0007%\u0002\u0002", + "\u0296\u0292\u0003\u0002\u0002\u0002\u0296\u0295\u0003\u0002\u0002\u0002", + "\u0297\u029b\u0003\u0002\u0002\u0002\u0298\u029a\n\u0003\u0002\u0002", + "\u0299\u0298\u0003\u0002\u0002\u0002\u029a\u029d\u0003\u0002\u0002\u0002", + "\u029b\u0299\u0003\u0002\u0002\u0002\u029b\u029c\u0003\u0002\u0002\u0002", + "\u029c\u02a3\u0003\u0002\u0002\u0002\u029d\u029b\u0003\u0002\u0002\u0002", + "\u029e\u02a0\u0007\u000f\u0002\u0002\u029f\u029e\u0003\u0002\u0002\u0002", + "\u029f\u02a0\u0003\u0002\u0002\u0002\u02a0\u02a1\u0003\u0002\u0002\u0002", + "\u02a1\u02a4\u0007\f\u0002\u0002\u02a2\u02a4\u0007\u0002\u0002\u0003", + "\u02a3\u029f\u0003\u0002\u0002\u0002\u02a3\u02a2\u0003\u0002\u0002\u0002", + "\u02a4\u02b0\u0003\u0002\u0002\u0002\u02a5\u02a6\u0007/\u0002\u0002", + "\u02a6\u02a7\u0007/\u0002\u0002\u02a7\u02ad\u0003\u0002\u0002\u0002", + "\u02a8\u02aa\u0007\u000f\u0002\u0002\u02a9\u02a8\u0003\u0002\u0002\u0002", + "\u02a9\u02aa\u0003\u0002\u0002\u0002\u02aa\u02ab\u0003\u0002\u0002\u0002", + "\u02ab\u02ae\u0007\f\u0002\u0002\u02ac\u02ae\u0007\u0002\u0002\u0003", + "\u02ad\u02a9\u0003\u0002\u0002\u0002\u02ad\u02ac\u0003\u0002\u0002\u0002", + "\u02ae\u02b0\u0003\u0002\u0002\u0002\u02af\u0296\u0003\u0002\u0002\u0002", + "\u02af\u02a5\u0003\u0002\u0002\u0002\u02b0\u02b1\u0003\u0002\u0002\u0002", + "\u02b1\u02b2\b\u0004\u0002\u0002\u02b2\b\u0003\u0002\u0002\u0002\u02b3", + "\u02b4\u0007U\u0002\u0002\u02b4\u02b5\u0007G\u0002\u0002\u02b5\u02b6", + "\u0007N\u0002\u0002\u02b6\u02b7\u0007G\u0002\u0002\u02b7\u02b8\u0007", + "E\u0002\u0002\u02b8\u02b9\u0007V\u0002\u0002\u02b9\n\u0003\u0002\u0002", + "\u0002\u02ba\u02bb\u0007H\u0002\u0002\u02bb\u02bc\u0007T\u0002\u0002", + "\u02bc\u02bd\u0007Q\u0002\u0002\u02bd\u02be\u0007O\u0002\u0002\u02be", + "\f\u0003\u0002\u0002\u0002\u02bf\u02c0\u0007C\u0002\u0002\u02c0\u02c1", + "\u0007F\u0002\u0002\u02c1\u02c2\u0007F\u0002\u0002\u02c2\u000e\u0003", + "\u0002\u0002\u0002\u02c3\u02c4\u0007C\u0002\u0002\u02c4\u02c5\u0007", + "U\u0002\u0002\u02c5\u0010\u0003\u0002\u0002\u0002\u02c6\u02c7\u0007", + "C\u0002\u0002\u02c7\u02c8\u0007N\u0002\u0002\u02c8\u02c9\u0007N\u0002", + "\u0002\u02c9\u0012\u0003\u0002\u0002\u0002\u02ca\u02cb\u0007C\u0002", + "\u0002\u02cb\u02cc\u0007P\u0002\u0002\u02cc\u02cd\u0007[\u0002\u0002", + "\u02cd\u0014\u0003\u0002\u0002\u0002\u02ce\u02cf\u0007F\u0002\u0002", + "\u02cf\u02d0\u0007K\u0002\u0002\u02d0\u02d1\u0007U\u0002\u0002\u02d1", + "\u02d2\u0007V\u0002\u0002\u02d2\u02d3\u0007K\u0002\u0002\u02d3\u02d4", + "\u0007P\u0002\u0002\u02d4\u02d5\u0007E\u0002\u0002\u02d5\u02d6\u0007", + "V\u0002\u0002\u02d6\u0016\u0003\u0002\u0002\u0002\u02d7\u02d8\u0007", + "Y\u0002\u0002\u02d8\u02d9\u0007J\u0002\u0002\u02d9\u02da\u0007G\u0002", + "\u0002\u02da\u02db\u0007T\u0002\u0002\u02db\u02dc\u0007G\u0002\u0002", + "\u02dc\u0018\u0003\u0002\u0002\u0002\u02dd\u02de\u0007I\u0002\u0002", + "\u02de\u02df\u0007T\u0002\u0002\u02df\u02e0\u0007Q\u0002\u0002\u02e0", + "\u02e1\u0007W\u0002\u0002\u02e1\u02e2\u0007R\u0002\u0002\u02e2\u001a", + "\u0003\u0002\u0002\u0002\u02e3\u02e4\u0007D\u0002\u0002\u02e4\u02e5", + "\u0007[\u0002\u0002\u02e5\u001c\u0003\u0002\u0002\u0002\u02e6\u02e7", + "\u0007I\u0002\u0002\u02e7\u02e8\u0007T\u0002\u0002\u02e8\u02e9\u0007", + "Q\u0002\u0002\u02e9\u02ea\u0007W\u0002\u0002\u02ea\u02eb\u0007R\u0002", + "\u0002\u02eb\u02ec\u0007K\u0002\u0002\u02ec\u02ed\u0007P\u0002\u0002", + "\u02ed\u02ee\u0007I\u0002\u0002\u02ee\u001e\u0003\u0002\u0002\u0002", + "\u02ef\u02f0\u0007U\u0002\u0002\u02f0\u02f1\u0007G\u0002\u0002\u02f1", + "\u02f2\u0007V\u0002\u0002\u02f2\u02f3\u0007U\u0002\u0002\u02f3 \u0003", + "\u0002\u0002\u0002\u02f4\u02f5\u0007E\u0002\u0002\u02f5\u02f6\u0007", + "W\u0002\u0002\u02f6\u02f7\u0007D\u0002\u0002\u02f7\u02f8\u0007G\u0002", + "\u0002\u02f8\"\u0003\u0002\u0002\u0002\u02f9\u02fa\u0007T\u0002\u0002", + "\u02fa\u02fb\u0007Q\u0002\u0002\u02fb\u02fc\u0007N\u0002\u0002\u02fc", + "\u02fd\u0007N\u0002\u0002\u02fd\u02fe\u0007W\u0002\u0002\u02fe\u02ff", + "\u0007R\u0002\u0002\u02ff$\u0003\u0002\u0002\u0002\u0300\u0301\u0007", + "Q\u0002\u0002\u0301\u0302\u0007T\u0002\u0002\u0302\u0303\u0007F\u0002", + "\u0002\u0303\u0304\u0007G\u0002\u0002\u0304\u0305\u0007T\u0002\u0002", + "\u0305&\u0003\u0002\u0002\u0002\u0306\u0307\u0007J\u0002\u0002\u0307", + "\u0308\u0007C\u0002\u0002\u0308\u0309\u0007X\u0002\u0002\u0309\u030a", + "\u0007K\u0002\u0002\u030a\u030b\u0007P\u0002\u0002\u030b\u030c\u0007", + "I\u0002\u0002\u030c(\u0003\u0002\u0002\u0002\u030d\u030e\u0007N\u0002", + "\u0002\u030e\u030f\u0007K\u0002\u0002\u030f\u0310\u0007O\u0002\u0002", + "\u0310\u0311\u0007K\u0002\u0002\u0311\u0312\u0007V\u0002\u0002\u0312", + "*\u0003\u0002\u0002\u0002\u0313\u0314\u0007C\u0002\u0002\u0314\u0315", + "\u0007V\u0002\u0002\u0315,\u0003\u0002\u0002\u0002\u0316\u0317\u0007", + "Q\u0002\u0002\u0317\u0318\u0007T\u0002\u0002\u0318.\u0003\u0002\u0002", + "\u0002\u0319\u031a\u0007C\u0002\u0002\u031a\u031b\u0007P\u0002\u0002", + "\u031b\u031c\u0007F\u0002\u0002\u031c0\u0003\u0002\u0002\u0002\u031d", + "\u031e\u0007K\u0002\u0002\u031e\u031f\u0007P\u0002\u0002\u031f2\u0003", + "\u0002\u0002\u0002\u0320\u0321\u0007P\u0002\u0002\u0321\u0322\u0007", + "Q\u0002\u0002\u0322\u0323\u0007V\u0002\u0002\u03234\u0003\u0002\u0002", + "\u0002\u0324\u0325\u0007P\u0002\u0002\u0325\u0326\u0007Q\u0002\u0002", + "\u03266\u0003\u0002\u0002\u0002\u0327\u0328\u0007G\u0002\u0002\u0328", + "\u0329\u0007Z\u0002\u0002\u0329\u032a\u0007K\u0002\u0002\u032a\u032b", + "\u0007U\u0002\u0002\u032b\u032c\u0007V\u0002\u0002\u032c\u032d\u0007", + "U\u0002\u0002\u032d8\u0003\u0002\u0002\u0002\u032e\u032f\u0007D\u0002", + "\u0002\u032f\u0330\u0007G\u0002\u0002\u0330\u0331\u0007V\u0002\u0002", + "\u0331\u0332\u0007Y\u0002\u0002\u0332\u0333\u0007G\u0002\u0002\u0333", + "\u0334\u0007G\u0002\u0002\u0334\u0335\u0007P\u0002\u0002\u0335:\u0003", + "\u0002\u0002\u0002\u0336\u0337\u0007N\u0002\u0002\u0337\u0338\u0007", + "K\u0002\u0002\u0338\u0339\u0007M\u0002\u0002\u0339\u033a\u0007G\u0002", + "\u0002\u033a<\u0003\u0002\u0002\u0002\u033b\u033c\u0007T\u0002\u0002", + "\u033c\u033d\u0007N\u0002\u0002\u033d\u033e\u0007K\u0002\u0002\u033e", + "\u033f\u0007M\u0002\u0002\u033f\u0340\u0007G\u0002\u0002\u0340>\u0003", + "\u0002\u0002\u0002\u0341\u0342\u0007K\u0002\u0002\u0342\u0343\u0007", + "U\u0002\u0002\u0343@\u0003\u0002\u0002\u0002\u0344\u0345\u0007V\u0002", + "\u0002\u0345\u0346\u0007T\u0002\u0002\u0346\u0347\u0007W\u0002\u0002", + "\u0347\u0348\u0007G\u0002\u0002\u0348B\u0003\u0002\u0002\u0002\u0349", + "\u034a\u0007H\u0002\u0002\u034a\u034b\u0007C\u0002\u0002\u034b\u034c", + "\u0007N\u0002\u0002\u034c\u034d\u0007U\u0002\u0002\u034d\u034e\u0007", + "G\u0002\u0002\u034eD\u0003\u0002\u0002\u0002\u034f\u0350\u0007P\u0002", + "\u0002\u0350\u0351\u0007W\u0002\u0002\u0351\u0352\u0007N\u0002\u0002", + "\u0352\u0353\u0007N\u0002\u0002\u0353\u0354\u0007U\u0002\u0002\u0354", + "F\u0003\u0002\u0002\u0002\u0355\u0356\u0007C\u0002\u0002\u0356\u0357", + "\u0007U\u0002\u0002\u0357\u0358\u0007E\u0002\u0002\u0358H\u0003\u0002", + "\u0002\u0002\u0359\u035a\u0007F\u0002\u0002\u035a\u035b\u0007G\u0002", + "\u0002\u035b\u035c\u0007U\u0002\u0002\u035c\u035d\u0007E\u0002\u0002", + "\u035dJ\u0003\u0002\u0002\u0002\u035e\u035f\u0007H\u0002\u0002\u035f", + "\u0360\u0007Q\u0002\u0002\u0360\u0361\u0007T\u0002\u0002\u0361L\u0003", + "\u0002\u0002\u0002\u0362\u0363\u0007K\u0002\u0002\u0363\u0364\u0007", + "P\u0002\u0002\u0364\u0365\u0007V\u0002\u0002\u0365\u0366\u0007G\u0002", + "\u0002\u0366\u0367\u0007T\u0002\u0002\u0367\u0368\u0007X\u0002\u0002", + "\u0368\u0369\u0007C\u0002\u0002\u0369\u036a\u0007N\u0002\u0002\u036a", + "N\u0003\u0002\u0002\u0002\u036b\u036c\u0007E\u0002\u0002\u036c\u036d", + "\u0007C\u0002\u0002\u036d\u036e\u0007U\u0002\u0002\u036e\u036f\u0007", + "G\u0002\u0002\u036fP\u0003\u0002\u0002\u0002\u0370\u0371\u0007Y\u0002", + "\u0002\u0371\u0372\u0007J\u0002\u0002\u0372\u0373\u0007G\u0002\u0002", + "\u0373\u0374\u0007P\u0002\u0002\u0374R\u0003\u0002\u0002\u0002\u0375", + "\u0376\u0007V\u0002\u0002\u0376\u0377\u0007J\u0002\u0002\u0377\u0378", + "\u0007G\u0002\u0002\u0378\u0379\u0007P\u0002\u0002\u0379T\u0003\u0002", + "\u0002\u0002\u037a\u037b\u0007G\u0002\u0002\u037b\u037c\u0007N\u0002", + "\u0002\u037c\u037d\u0007U\u0002\u0002\u037d\u037e\u0007G\u0002\u0002", + "\u037eV\u0003\u0002\u0002\u0002\u037f\u0380\u0007G\u0002\u0002\u0380", + "\u0381\u0007P\u0002\u0002\u0381\u0382\u0007F\u0002\u0002\u0382X\u0003", + "\u0002\u0002\u0002\u0383\u0384\u0007L\u0002\u0002\u0384\u0385\u0007", + "Q\u0002\u0002\u0385\u0386\u0007K\u0002\u0002\u0386\u0387\u0007P\u0002", + "\u0002\u0387Z\u0003\u0002\u0002\u0002\u0388\u0389\u0007E\u0002\u0002", + "\u0389\u038a\u0007T\u0002\u0002\u038a\u038b\u0007Q\u0002\u0002\u038b", + "\u038c\u0007U\u0002\u0002\u038c\u038d\u0007U\u0002\u0002\u038d\\\u0003", + "\u0002\u0002\u0002\u038e\u038f\u0007Q\u0002\u0002\u038f\u0390\u0007", + "W\u0002\u0002\u0390\u0391\u0007V\u0002\u0002\u0391\u0392\u0007G\u0002", + "\u0002\u0392\u0393\u0007T\u0002\u0002\u0393^\u0003\u0002\u0002\u0002", + "\u0394\u0395\u0007K\u0002\u0002\u0395\u0396\u0007P\u0002\u0002\u0396", + "\u0397\u0007P\u0002\u0002\u0397\u0398\u0007G\u0002\u0002\u0398\u0399", + "\u0007T\u0002\u0002\u0399`\u0003\u0002\u0002\u0002\u039a\u039b\u0007", + "N\u0002\u0002\u039b\u039c\u0007G\u0002\u0002\u039c\u039d\u0007H\u0002", + "\u0002\u039d\u039e\u0007V\u0002\u0002\u039eb\u0003\u0002\u0002\u0002", + "\u039f\u03a0\u0007U\u0002\u0002\u03a0\u03a1\u0007G\u0002\u0002\u03a1", + "\u03a2\u0007O\u0002\u0002\u03a2\u03a3\u0007K\u0002\u0002\u03a3d\u0003", + "\u0002\u0002\u0002\u03a4\u03a5\u0007T\u0002\u0002\u03a5\u03a6\u0007", + "K\u0002\u0002\u03a6\u03a7\u0007I\u0002\u0002\u03a7\u03a8\u0007J\u0002", + "\u0002\u03a8\u03a9\u0007V\u0002\u0002\u03a9f\u0003\u0002\u0002\u0002", + "\u03aa\u03ab\u0007H\u0002\u0002\u03ab\u03ac\u0007W\u0002\u0002\u03ac", + "\u03ad\u0007N\u0002\u0002\u03ad\u03ae\u0007N\u0002\u0002\u03aeh\u0003", + "\u0002\u0002\u0002\u03af\u03b0\u0007P\u0002\u0002\u03b0\u03b1\u0007", + "C\u0002\u0002\u03b1\u03b2\u0007V\u0002\u0002\u03b2\u03b3\u0007W\u0002", + "\u0002\u03b3\u03b4\u0007T\u0002\u0002\u03b4\u03b5\u0007C\u0002\u0002", + "\u03b5\u03b6\u0007N\u0002\u0002\u03b6j\u0003\u0002\u0002\u0002\u03b7", + "\u03b8\u0007Q\u0002\u0002\u03b8\u03b9\u0007P\u0002\u0002\u03b9l\u0003", + "\u0002\u0002\u0002\u03ba\u03bb\u0007R\u0002\u0002\u03bb\u03bc\u0007", + "K\u0002\u0002\u03bc\u03bd\u0007X\u0002\u0002\u03bd\u03be\u0007Q\u0002", + "\u0002\u03be\u03bf\u0007V\u0002\u0002\u03bfn\u0003\u0002\u0002\u0002", + "\u03c0\u03c1\u0007N\u0002\u0002\u03c1\u03c2\u0007C\u0002\u0002\u03c2", + "\u03c3\u0007V\u0002\u0002\u03c3\u03c4\u0007G\u0002\u0002\u03c4\u03c5", + "\u0007T\u0002\u0002\u03c5\u03c6\u0007C\u0002\u0002\u03c6\u03c7\u0007", + "N\u0002\u0002\u03c7p\u0003\u0002\u0002\u0002\u03c8\u03c9\u0007Y\u0002", + "\u0002\u03c9\u03ca\u0007K\u0002\u0002\u03ca\u03cb\u0007P\u0002\u0002", + "\u03cb\u03cc\u0007F\u0002\u0002\u03cc\u03cd\u0007Q\u0002\u0002\u03cd", + "\u03ce\u0007Y\u0002\u0002\u03cer\u0003\u0002\u0002\u0002\u03cf\u03d0", + "\u0007Q\u0002\u0002\u03d0\u03d1\u0007X\u0002\u0002\u03d1\u03d2\u0007", + "G\u0002\u0002\u03d2\u03d3\u0007T\u0002\u0002\u03d3t\u0003\u0002\u0002", + "\u0002\u03d4\u03d5\u0007R\u0002\u0002\u03d5\u03d6\u0007C\u0002\u0002", + "\u03d6\u03d7\u0007T\u0002\u0002\u03d7\u03d8\u0007V\u0002\u0002\u03d8", + "\u03d9\u0007K\u0002\u0002\u03d9\u03da\u0007V\u0002\u0002\u03da\u03db", + "\u0007K\u0002\u0002\u03db\u03dc\u0007Q\u0002\u0002\u03dc\u03dd\u0007", + "P\u0002\u0002\u03ddv\u0003\u0002\u0002\u0002\u03de\u03df\u0007T\u0002", + "\u0002\u03df\u03e0\u0007C\u0002\u0002\u03e0\u03e1\u0007P\u0002\u0002", + "\u03e1\u03e2\u0007I\u0002\u0002\u03e2\u03e3\u0007G\u0002\u0002\u03e3", + "x\u0003\u0002\u0002\u0002\u03e4\u03e5\u0007T\u0002\u0002\u03e5\u03e6", + "\u0007Q\u0002\u0002\u03e6\u03e7\u0007Y\u0002\u0002\u03e7\u03e8\u0007", + "U\u0002\u0002\u03e8z\u0003\u0002\u0002\u0002\u03e9\u03ea\u0007W\u0002", + "\u0002\u03ea\u03eb\u0007P\u0002\u0002\u03eb\u03ec\u0007D\u0002\u0002", + "\u03ec\u03ed\u0007Q\u0002\u0002\u03ed\u03ee\u0007W\u0002\u0002\u03ee", + "\u03ef\u0007P\u0002\u0002\u03ef\u03f0\u0007F\u0002\u0002\u03f0\u03f1", + "\u0007G\u0002\u0002\u03f1\u03f2\u0007F\u0002\u0002\u03f2|\u0003\u0002", + "\u0002\u0002\u03f3\u03f4\u0007R\u0002\u0002\u03f4\u03f5\u0007T\u0002", + "\u0002\u03f5\u03f6\u0007G\u0002\u0002\u03f6\u03f7\u0007E\u0002\u0002", + "\u03f7\u03f8\u0007G\u0002\u0002\u03f8\u03f9\u0007F\u0002\u0002\u03f9", + "\u03fa\u0007K\u0002\u0002\u03fa\u03fb\u0007P\u0002\u0002\u03fb\u03fc", + "\u0007I\u0002\u0002\u03fc~\u0003\u0002\u0002\u0002\u03fd\u03fe\u0007", + "H\u0002\u0002\u03fe\u03ff\u0007Q\u0002\u0002\u03ff\u0400\u0007N\u0002", + "\u0002\u0400\u0401\u0007N\u0002\u0002\u0401\u0402\u0007Q\u0002\u0002", + "\u0402\u0403\u0007Y\u0002\u0002\u0403\u0404\u0007K\u0002\u0002\u0404", + "\u0405\u0007P\u0002\u0002\u0405\u0406\u0007I\u0002\u0002\u0406\u0080", + "\u0003\u0002\u0002\u0002\u0407\u0408\u0007E\u0002\u0002\u0408\u0409", + "\u0007W\u0002\u0002\u0409\u040a\u0007T\u0002\u0002\u040a\u040b\u0007", + "T\u0002\u0002\u040b\u040c\u0007G\u0002\u0002\u040c\u040d\u0007P\u0002", + "\u0002\u040d\u040e\u0007V\u0002\u0002\u040e\u0082\u0003\u0002\u0002", + "\u0002\u040f\u0410\u0007H\u0002\u0002\u0410\u0411\u0007K\u0002\u0002", + "\u0411\u0412\u0007T\u0002\u0002\u0412\u0413\u0007U\u0002\u0002\u0413", + "\u0414\u0007V\u0002\u0002\u0414\u0084\u0003\u0002\u0002\u0002\u0415", + "\u0416\u0007C\u0002\u0002\u0416\u0417\u0007H\u0002\u0002\u0417\u0418", + "\u0007V\u0002\u0002\u0418\u0419\u0007G\u0002\u0002\u0419\u041a\u0007", + "T\u0002\u0002\u041a\u0086\u0003\u0002\u0002\u0002\u041b\u041c\u0007", + "N\u0002\u0002\u041c\u041d\u0007C\u0002\u0002\u041d\u041e\u0007U\u0002", + "\u0002\u041e\u041f\u0007V\u0002\u0002\u041f\u0088\u0003\u0002\u0002", + "\u0002\u0420\u0421\u0007Y\u0002\u0002\u0421\u0422\u0007K\u0002\u0002", + "\u0422\u0423\u0007V\u0002\u0002\u0423\u0424\u0007J\u0002\u0002\u0424", + "\u008a\u0003\u0002\u0002\u0002\u0425\u0426\u0007X\u0002\u0002\u0426", + "\u0427\u0007C\u0002\u0002\u0427\u0428\u0007N\u0002\u0002\u0428\u0429", + "\u0007W\u0002\u0002\u0429\u042a\u0007G\u0002\u0002\u042a\u042b\u0007", + "U\u0002\u0002\u042b\u008c\u0003\u0002\u0002\u0002\u042c\u042d\u0007", + "E\u0002\u0002\u042d\u042e\u0007T\u0002\u0002\u042e\u042f\u0007G\u0002", + "\u0002\u042f\u0430\u0007C\u0002\u0002\u0430\u0431\u0007V\u0002\u0002", + "\u0431\u0432\u0007G\u0002\u0002\u0432\u008e\u0003\u0002\u0002\u0002", + "\u0433\u0434\u0007V\u0002\u0002\u0434\u0435\u0007C\u0002\u0002\u0435", + "\u0436\u0007D\u0002\u0002\u0436\u0437\u0007N\u0002\u0002\u0437\u0438", + "\u0007G\u0002\u0002\u0438\u0090\u0003\u0002\u0002\u0002\u0439\u043a", + "\u0007F\u0002\u0002\u043a\u043b\u0007K\u0002\u0002\u043b\u043c\u0007", + "T\u0002\u0002\u043c\u043d\u0007G\u0002\u0002\u043d\u043e\u0007E\u0002", + "\u0002\u043e\u043f\u0007V\u0002\u0002\u043f\u0440\u0007Q\u0002\u0002", + "\u0440\u0441\u0007T\u0002\u0002\u0441\u0442\u0007[\u0002\u0002\u0442", + "\u0092\u0003\u0002\u0002\u0002\u0443\u0444\u0007X\u0002\u0002\u0444", + "\u0445\u0007K\u0002\u0002\u0445\u0446\u0007G\u0002\u0002\u0446\u0447", + "\u0007Y\u0002\u0002\u0447\u0094\u0003\u0002\u0002\u0002\u0448\u0449", + "\u0007T\u0002\u0002\u0449\u044a\u0007G\u0002\u0002\u044a\u044b\u0007", + "R\u0002\u0002\u044b\u044c\u0007N\u0002\u0002\u044c\u044d\u0007C\u0002", + "\u0002\u044d\u044e\u0007E\u0002\u0002\u044e\u044f\u0007G\u0002\u0002", + "\u044f\u0096\u0003\u0002\u0002\u0002\u0450\u0451\u0007K\u0002\u0002", + "\u0451\u0452\u0007P\u0002\u0002\u0452\u0453\u0007U\u0002\u0002\u0453", + "\u0454\u0007G\u0002\u0002\u0454\u0455\u0007T\u0002\u0002\u0455\u0456", + "\u0007V\u0002\u0002\u0456\u0098\u0003\u0002\u0002\u0002\u0457\u0458", + "\u0007F\u0002\u0002\u0458\u0459\u0007G\u0002\u0002\u0459\u045a\u0007", + "N\u0002\u0002\u045a\u045b\u0007G\u0002\u0002\u045b\u045c\u0007V\u0002", + "\u0002\u045c\u045d\u0007G\u0002\u0002\u045d\u009a\u0003\u0002\u0002", + "\u0002\u045e\u045f\u0007K\u0002\u0002\u045f\u0460\u0007P\u0002\u0002", + "\u0460\u0461\u0007V\u0002\u0002\u0461\u0462\u0007Q\u0002\u0002\u0462", + "\u009c\u0003\u0002\u0002\u0002\u0463\u0464\u0007F\u0002\u0002\u0464", + "\u0465\u0007G\u0002\u0002\u0465\u0466\u0007U\u0002\u0002\u0466\u0467", + "\u0007E\u0002\u0002\u0467\u0468\u0007T\u0002\u0002\u0468\u0469\u0007", + "K\u0002\u0002\u0469\u046a\u0007D\u0002\u0002\u046a\u046b\u0007G\u0002", + "\u0002\u046b\u009e\u0003\u0002\u0002\u0002\u046c\u046d\u0007G\u0002", + "\u0002\u046d\u046e\u0007Z\u0002\u0002\u046e\u046f\u0007R\u0002\u0002", + "\u046f\u0470\u0007N\u0002\u0002\u0470\u0471\u0007C\u0002\u0002\u0471", + "\u0472\u0007K\u0002\u0002\u0472\u0473\u0007P\u0002\u0002\u0473\u00a0", + "\u0003\u0002\u0002\u0002\u0474\u0475\u0007H\u0002\u0002\u0475\u0476", + "\u0007Q\u0002\u0002\u0476\u0477\u0007T\u0002\u0002\u0477\u0478\u0007", + "O\u0002\u0002\u0478\u0479\u0007C\u0002\u0002\u0479\u047a\u0007V\u0002", + "\u0002\u047a\u00a2\u0003\u0002\u0002\u0002\u047b\u047c\u0007N\u0002", + "\u0002\u047c\u047d\u0007Q\u0002\u0002\u047d\u047e\u0007I\u0002\u0002", + "\u047e\u047f\u0007K\u0002\u0002\u047f\u0480\u0007E\u0002\u0002\u0480", + "\u0481\u0007C\u0002\u0002\u0481\u0482\u0007N\u0002\u0002\u0482\u00a4", + "\u0003\u0002\u0002\u0002\u0483\u0484\u0007E\u0002\u0002\u0484\u0485", + "\u0007Q\u0002\u0002\u0485\u0486\u0007F\u0002\u0002\u0486\u0487\u0007", + "G\u0002\u0002\u0487\u0488\u0007I\u0002\u0002\u0488\u0489\u0007G\u0002", + "\u0002\u0489\u048a\u0007P\u0002\u0002\u048a\u00a6\u0003\u0002\u0002", + "\u0002\u048b\u048c\u0007E\u0002\u0002\u048c\u048d\u0007Q\u0002\u0002", + "\u048d\u048e\u0007U\u0002\u0002\u048e\u048f\u0007V\u0002\u0002\u048f", + "\u00a8\u0003\u0002\u0002\u0002\u0490\u0491\u0007E\u0002\u0002\u0491", + "\u0492\u0007C\u0002\u0002\u0492\u0493\u0007U\u0002\u0002\u0493\u0494", + "\u0007V\u0002\u0002\u0494\u00aa\u0003\u0002\u0002\u0002\u0495\u0496", + "\u0007U\u0002\u0002\u0496\u0497\u0007J\u0002\u0002\u0497\u0498\u0007", + "Q\u0002\u0002\u0498\u0499\u0007Y\u0002\u0002\u0499\u00ac\u0003\u0002", + "\u0002\u0002\u049a\u049b\u0007V\u0002\u0002\u049b\u049c\u0007C\u0002", + "\u0002\u049c\u049d\u0007D\u0002\u0002\u049d\u049e\u0007N\u0002\u0002", + "\u049e\u049f\u0007G\u0002\u0002\u049f\u04a0\u0007U\u0002\u0002\u04a0", + "\u00ae\u0003\u0002\u0002\u0002\u04a1\u04a2\u0007E\u0002\u0002\u04a2", + "\u04a3\u0007Q\u0002\u0002\u04a3\u04a4\u0007N\u0002\u0002\u04a4\u04a5", + "\u0007W\u0002\u0002\u04a5\u04a6\u0007O\u0002\u0002\u04a6\u04a7\u0007", + "P\u0002\u0002\u04a7\u04a8\u0007U\u0002\u0002\u04a8\u00b0\u0003\u0002", + "\u0002\u0002\u04a9\u04aa\u0007E\u0002\u0002\u04aa\u04ab\u0007Q\u0002", + "\u0002\u04ab\u04ac\u0007N\u0002\u0002\u04ac\u04ad\u0007W\u0002\u0002", + "\u04ad\u04ae\u0007O\u0002\u0002\u04ae\u04af\u0007P\u0002\u0002\u04af", + "\u00b2\u0003\u0002\u0002\u0002\u04b0\u04b1\u0007W\u0002\u0002\u04b1", + "\u04b2\u0007U\u0002\u0002\u04b2\u04b3\u0007G\u0002\u0002\u04b3\u00b4", + "\u0003\u0002\u0002\u0002\u04b4\u04b5\u0007R\u0002\u0002\u04b5\u04b6", + "\u0007C\u0002\u0002\u04b6\u04b7\u0007T\u0002\u0002\u04b7\u04b8\u0007", + "V\u0002\u0002\u04b8\u04b9\u0007K\u0002\u0002\u04b9\u04ba\u0007V\u0002", + "\u0002\u04ba\u04bb\u0007K\u0002\u0002\u04bb\u04bc\u0007Q\u0002\u0002", + "\u04bc\u04bd\u0007P\u0002\u0002\u04bd\u04be\u0007U\u0002\u0002\u04be", + "\u00b6\u0003\u0002\u0002\u0002\u04bf\u04c0\u0007H\u0002\u0002\u04c0", + "\u04c1\u0007W\u0002\u0002\u04c1\u04c2\u0007P\u0002\u0002\u04c2\u04c3", + "\u0007E\u0002\u0002\u04c3\u04c4\u0007V\u0002\u0002\u04c4\u04c5\u0007", + "K\u0002\u0002\u04c5\u04c6\u0007Q\u0002\u0002\u04c6\u04c7\u0007P\u0002", + "\u0002\u04c7\u04c8\u0007U\u0002\u0002\u04c8\u00b8\u0003\u0002\u0002", + "\u0002\u04c9\u04ca\u0007F\u0002\u0002\u04ca\u04cb\u0007T\u0002\u0002", + "\u04cb\u04cc\u0007Q\u0002\u0002\u04cc\u04cd\u0007R\u0002\u0002\u04cd", + "\u00ba\u0003\u0002\u0002\u0002\u04ce\u04cf\u0007W\u0002\u0002\u04cf", + "\u04d0\u0007P\u0002\u0002\u04d0\u04d1\u0007K\u0002\u0002\u04d1\u04d2", + "\u0007Q\u0002\u0002\u04d2\u04d3\u0007P\u0002\u0002\u04d3\u00bc\u0003", + "\u0002\u0002\u0002\u04d4\u04d5\u0007G\u0002\u0002\u04d5\u04d6\u0007", + "Z\u0002\u0002\u04d6\u04d7\u0007E\u0002\u0002\u04d7\u04d8\u0007G\u0002", + "\u0002\u04d8\u04d9\u0007R\u0002\u0002\u04d9\u04da\u0007V\u0002\u0002", + "\u04da\u00be\u0003\u0002\u0002\u0002\u04db\u04dc\u0007U\u0002\u0002", + "\u04dc\u04dd\u0007G\u0002\u0002\u04dd\u04de\u0007V\u0002\u0002\u04de", + "\u04df\u0007O\u0002\u0002\u04df\u04e0\u0007K\u0002\u0002\u04e0\u04e1", + "\u0007P\u0002\u0002\u04e1\u04e2\u0007W\u0002\u0002\u04e2\u04e3\u0007", + "U\u0002\u0002\u04e3\u00c0\u0003\u0002\u0002\u0002\u04e4\u04e5\u0007", + "K\u0002\u0002\u04e5\u04e6\u0007P\u0002\u0002\u04e6\u04e7\u0007V\u0002", + "\u0002\u04e7\u04e8\u0007G\u0002\u0002\u04e8\u04e9\u0007T\u0002\u0002", + "\u04e9\u04ea\u0007U\u0002\u0002\u04ea\u04eb\u0007G\u0002\u0002\u04eb", + "\u04ec\u0007E\u0002\u0002\u04ec\u04ed\u0007V\u0002\u0002\u04ed\u00c2", + "\u0003\u0002\u0002\u0002\u04ee\u04ef\u0007V\u0002\u0002\u04ef\u04f0", + "\u0007Q\u0002\u0002\u04f0\u00c4\u0003\u0002\u0002\u0002\u04f1\u04f2", + "\u0007V\u0002\u0002\u04f2\u04f3\u0007C\u0002\u0002\u04f3\u04f4\u0007", + "D\u0002\u0002\u04f4\u04f5\u0007N\u0002\u0002\u04f5\u04f6\u0007G\u0002", + "\u0002\u04f6\u04f7\u0007U\u0002\u0002\u04f7\u04f8\u0007C\u0002\u0002", + "\u04f8\u04f9\u0007O\u0002\u0002\u04f9\u04fa\u0007R\u0002\u0002\u04fa", + "\u04fb\u0007N\u0002\u0002\u04fb\u04fc\u0007G\u0002\u0002\u04fc\u00c6", + "\u0003\u0002\u0002\u0002\u04fd\u04fe\u0007U\u0002\u0002\u04fe\u04ff", + "\u0007V\u0002\u0002\u04ff\u0500\u0007T\u0002\u0002\u0500\u0501\u0007", + "C\u0002\u0002\u0501\u0502\u0007V\u0002\u0002\u0502\u0503\u0007K\u0002", + "\u0002\u0503\u0504\u0007H\u0002\u0002\u0504\u0505\u0007[\u0002\u0002", + "\u0505\u00c8\u0003\u0002\u0002\u0002\u0506\u0507\u0007C\u0002\u0002", + "\u0507\u0508\u0007N\u0002\u0002\u0508\u0509\u0007V\u0002\u0002\u0509", + "\u050a\u0007G\u0002\u0002\u050a\u050b\u0007T\u0002\u0002\u050b\u00ca", + "\u0003\u0002\u0002\u0002\u050c\u050d\u0007T\u0002\u0002\u050d\u050e", + "\u0007G\u0002\u0002\u050e\u050f\u0007P\u0002\u0002\u050f\u0510\u0007", + "C\u0002\u0002\u0510\u0511\u0007O\u0002\u0002\u0511\u0512\u0007G\u0002", + "\u0002\u0512\u00cc\u0003\u0002\u0002\u0002\u0513\u0514\u0007U\u0002", + "\u0002\u0514\u0515\u0007V\u0002\u0002\u0515\u0516\u0007T\u0002\u0002", + "\u0516\u0517\u0007W\u0002\u0002\u0517\u0518\u0007E\u0002\u0002\u0518", + "\u0519\u0007V\u0002\u0002\u0519\u00ce\u0003\u0002\u0002\u0002\u051a", + "\u051b\u0007E\u0002\u0002\u051b\u051c\u0007Q\u0002\u0002\u051c\u051d", + "\u0007O\u0002\u0002\u051d\u051e\u0007O\u0002\u0002\u051e\u051f\u0007", + "G\u0002\u0002\u051f\u0520\u0007P\u0002\u0002\u0520\u0521\u0007V\u0002", + "\u0002\u0521\u00d0\u0003\u0002\u0002\u0002\u0522\u0523\u0007U\u0002", + "\u0002\u0523\u0524\u0007G\u0002\u0002\u0524\u0525\u0007V\u0002\u0002", + "\u0525\u00d2\u0003\u0002\u0002\u0002\u0526\u0527\u0007T\u0002\u0002", + "\u0527\u0528\u0007G\u0002\u0002\u0528\u0529\u0007U\u0002\u0002\u0529", + "\u052a\u0007G\u0002\u0002\u052a\u052b\u0007V\u0002\u0002\u052b\u00d4", + "\u0003\u0002\u0002\u0002\u052c\u052d\u0007F\u0002\u0002\u052d\u052e", + "\u0007C\u0002\u0002\u052e\u052f\u0007V\u0002\u0002\u052f\u0530\u0007", + "C\u0002\u0002\u0530\u00d6\u0003\u0002\u0002\u0002\u0531\u0532\u0007", + "U\u0002\u0002\u0532\u0533\u0007V\u0002\u0002\u0533\u0534\u0007C\u0002", + "\u0002\u0534\u0535\u0007T\u0002\u0002\u0535\u0536\u0007V\u0002\u0002", + "\u0536\u00d8\u0003\u0002\u0002\u0002\u0537\u0538\u0007V\u0002\u0002", + "\u0538\u0539\u0007T\u0002\u0002\u0539\u053a\u0007C\u0002\u0002\u053a", + "\u053b\u0007P\u0002\u0002\u053b\u053c\u0007U\u0002\u0002\u053c\u053d", + "\u0007C\u0002\u0002\u053d\u053e\u0007E\u0002\u0002\u053e\u053f\u0007", + "V\u0002\u0002\u053f\u0540\u0007K\u0002\u0002\u0540\u0541\u0007Q\u0002", + "\u0002\u0541\u0542\u0007P\u0002\u0002\u0542\u00da\u0003\u0002\u0002", + "\u0002\u0543\u0544\u0007E\u0002\u0002\u0544\u0545\u0007Q\u0002\u0002", + "\u0545\u0546\u0007O\u0002\u0002\u0546\u0547\u0007O\u0002\u0002\u0547", + "\u0548\u0007K\u0002\u0002\u0548\u0549\u0007V\u0002\u0002\u0549\u00dc", + "\u0003\u0002\u0002\u0002\u054a\u054b\u0007T\u0002\u0002\u054b\u054c", + "\u0007Q\u0002\u0002\u054c\u054d\u0007N\u0002\u0002\u054d\u054e\u0007", + "N\u0002\u0002\u054e\u054f\u0007D\u0002\u0002\u054f\u0550\u0007C\u0002", + "\u0002\u0550\u0551\u0007E\u0002\u0002\u0551\u0552\u0007M\u0002\u0002", + "\u0552\u00de\u0003\u0002\u0002\u0002\u0553\u0554\u0007O\u0002\u0002", + "\u0554\u0555\u0007C\u0002\u0002\u0555\u0556\u0007E\u0002\u0002\u0556", + "\u0557\u0007T\u0002\u0002\u0557\u0558\u0007Q\u0002\u0002\u0558\u00e0", + "\u0003\u0002\u0002\u0002\u0559\u055a\u0007K\u0002\u0002\u055a\u055b", + "\u0007I\u0002\u0002\u055b\u055c\u0007P\u0002\u0002\u055c\u055d\u0007", + "Q\u0002\u0002\u055d\u055e\u0007T\u0002\u0002\u055e\u055f\u0007G\u0002", + "\u0002\u055f\u00e2\u0003\u0002\u0002\u0002\u0560\u0561\u0007D\u0002", + "\u0002\u0561\u0562\u0007Q\u0002\u0002\u0562\u0563\u0007V\u0002\u0002", + "\u0563\u0564\u0007J\u0002\u0002\u0564\u00e4\u0003\u0002\u0002\u0002", + "\u0565\u0566\u0007N\u0002\u0002\u0566\u0567\u0007G\u0002\u0002\u0567", + "\u0568\u0007C\u0002\u0002\u0568\u0569\u0007F\u0002\u0002\u0569\u056a", + "\u0007K\u0002\u0002\u056a\u056b\u0007P\u0002\u0002\u056b\u056c\u0007", + "I\u0002\u0002\u056c\u00e6\u0003\u0002\u0002\u0002\u056d\u056e\u0007", + "V\u0002\u0002\u056e\u056f\u0007T\u0002\u0002\u056f\u0570\u0007C\u0002", + "\u0002\u0570\u0571\u0007K\u0002\u0002\u0571\u0572\u0007N\u0002\u0002", + "\u0572\u0573\u0007K\u0002\u0002\u0573\u0574\u0007P\u0002\u0002\u0574", + "\u0575\u0007I\u0002\u0002\u0575\u00e8\u0003\u0002\u0002\u0002\u0576", + "\u0577\u0007K\u0002\u0002\u0577\u0578\u0007H\u0002\u0002\u0578\u00ea", + "\u0003\u0002\u0002\u0002\u0579\u057a\u0007R\u0002\u0002\u057a\u057b", + "\u0007Q\u0002\u0002\u057b\u057c\u0007U\u0002\u0002\u057c\u057d\u0007", + "K\u0002\u0002\u057d\u057e\u0007V\u0002\u0002\u057e\u057f\u0007K\u0002", + "\u0002\u057f\u0580\u0007Q\u0002\u0002\u0580\u0581\u0007P\u0002\u0002", + "\u0581\u00ec\u0003\u0002\u0002\u0002\u0582\u0583\u0007G\u0002\u0002", + "\u0583\u0584\u0007Z\u0002\u0002\u0584\u0585\u0007V\u0002\u0002\u0585", + "\u0586\u0007T\u0002\u0002\u0586\u0587\u0007C\u0002\u0002\u0587\u0588", + "\u0007E\u0002\u0002\u0588\u0589\u0007V\u0002\u0002\u0589\u00ee\u0003", + "\u0002\u0002\u0002\u058a\u058b\u0007G\u0002\u0002\u058b\u058c\u0007", + "S\u0002\u0002\u058c\u00f0\u0003\u0002\u0002\u0002\u058d\u058e\u0007", + "P\u0002\u0002\u058e\u058f\u0007U\u0002\u0002\u058f\u0590\u0007G\u0002", + "\u0002\u0590\u0591\u0007S\u0002\u0002\u0591\u00f2\u0003\u0002\u0002", + "\u0002\u0592\u0593\u0007P\u0002\u0002\u0593\u0594\u0007G\u0002\u0002", + "\u0594\u0595\u0007S\u0002\u0002\u0595\u00f4\u0003\u0002\u0002\u0002", + "\u0596\u0597\u0007P\u0002\u0002\u0597\u0598\u0007G\u0002\u0002\u0598", + "\u0599\u0007S\u0002\u0002\u0599\u059a\u0007L\u0002\u0002\u059a\u00f6", + "\u0003\u0002\u0002\u0002\u059b\u059c\u0007N\u0002\u0002\u059c\u059d", + "\u0007V\u0002\u0002\u059d\u00f8\u0003\u0002\u0002\u0002\u059e\u059f", + "\u0007N\u0002\u0002\u059f\u05a0\u0007V\u0002\u0002\u05a0\u05a1\u0007", + "G\u0002\u0002\u05a1\u00fa\u0003\u0002\u0002\u0002\u05a2\u05a3\u0007", + "I\u0002\u0002\u05a3\u05a4\u0007V\u0002\u0002\u05a4\u00fc\u0003\u0002", + "\u0002\u0002\u05a5\u05a6\u0007I\u0002\u0002\u05a6\u05a7\u0007V\u0002", + "\u0002\u05a7\u05a8\u0007G\u0002\u0002\u05a8\u00fe\u0003\u0002\u0002", + "\u0002\u05a9\u05aa\u0007R\u0002\u0002\u05aa\u05ab\u0007N\u0002\u0002", + "\u05ab\u05ac\u0007W\u0002\u0002\u05ac\u05ad\u0007U\u0002\u0002\u05ad", + "\u0100\u0003\u0002\u0002\u0002\u05ae\u05af\u0007O\u0002\u0002\u05af", + "\u05b0\u0007K\u0002\u0002\u05b0\u05b1\u0007P\u0002\u0002\u05b1\u05b2", + "\u0007W\u0002\u0002\u05b2\u05b3\u0007U\u0002\u0002\u05b3\u0102\u0003", + "\u0002\u0002\u0002\u05b4\u05b5\u0007C\u0002\u0002\u05b5\u05b6\u0007", + "U\u0002\u0002\u05b6\u05b7\u0007V\u0002\u0002\u05b7\u05b8\u0007G\u0002", + "\u0002\u05b8\u05b9\u0007T\u0002\u0002\u05b9\u05ba\u0007K\u0002\u0002", + "\u05ba\u05bb\u0007U\u0002\u0002\u05bb\u05bc\u0007M\u0002\u0002\u05bc", + "\u0104\u0003\u0002\u0002\u0002\u05bd\u05be\u0007U\u0002\u0002\u05be", + "\u05bf\u0007N\u0002\u0002\u05bf\u05c0\u0007C\u0002\u0002\u05c0\u05c1", + "\u0007U\u0002\u0002\u05c1\u05c2\u0007J\u0002\u0002\u05c2\u0106\u0003", + "\u0002\u0002\u0002\u05c3\u05c4\u0007R\u0002\u0002\u05c4\u05c5\u0007", + "G\u0002\u0002\u05c5\u05c6\u0007T\u0002\u0002\u05c6\u05c7\u0007E\u0002", + "\u0002\u05c7\u05c8\u0007G\u0002\u0002\u05c8\u05c9\u0007P\u0002\u0002", + "\u05c9\u05ca\u0007V\u0002\u0002\u05ca\u0108\u0003\u0002\u0002\u0002", + "\u05cb\u05cc\u0007F\u0002\u0002\u05cc\u05cd\u0007K\u0002\u0002\u05cd", + "\u05ce\u0007X\u0002\u0002\u05ce\u010a\u0003\u0002\u0002\u0002\u05cf", + "\u05d0\u0007V\u0002\u0002\u05d0\u05d1\u0007K\u0002\u0002\u05d1\u05d2", + "\u0007N\u0002\u0002\u05d2\u05d3\u0007F\u0002\u0002\u05d3\u05d4\u0007", + "G\u0002\u0002\u05d4\u010c\u0003\u0002\u0002\u0002\u05d5\u05d6\u0007", + "C\u0002\u0002\u05d6\u05d7\u0007O\u0002\u0002\u05d7\u05d8\u0007R\u0002", + "\u0002\u05d8\u05d9\u0007G\u0002\u0002\u05d9\u05da\u0007T\u0002\u0002", + "\u05da\u05db\u0007U\u0002\u0002\u05db\u05dc\u0007C\u0002\u0002\u05dc", + "\u05dd\u0007P\u0002\u0002\u05dd\u05de\u0007F\u0002\u0002\u05de\u010e", + "\u0003\u0002\u0002\u0002\u05df\u05e0\u0007R\u0002\u0002\u05e0\u05e1", + "\u0007K\u0002\u0002\u05e1\u05e2\u0007R\u0002\u0002\u05e2\u05e3\u0007", + "G\u0002\u0002\u05e3\u0110\u0003\u0002\u0002\u0002\u05e4\u05e5\u0007", + "E\u0002\u0002\u05e5\u05e6\u0007Q\u0002\u0002\u05e6\u05e7\u0007P\u0002", + "\u0002\u05e7\u05e8\u0007E\u0002\u0002\u05e8\u05e9\u0007C\u0002\u0002", + "\u05e9\u05ea\u0007V\u0002\u0002\u05ea\u05eb\u0007a\u0002\u0002\u05eb", + "\u05ec\u0007R\u0002\u0002\u05ec\u05ed\u0007K\u0002\u0002\u05ed\u05ee", + "\u0007R\u0002\u0002\u05ee\u05ef\u0007G\u0002\u0002\u05ef\u0112\u0003", + "\u0002\u0002\u0002\u05f0\u05f1\u0007J\u0002\u0002\u05f1\u05f2\u0007", + "C\u0002\u0002\u05f2\u05f3\u0007V\u0002\u0002\u05f3\u0114\u0003\u0002", + "\u0002\u0002\u05f4\u05f5\u0007R\u0002\u0002\u05f5\u05f6\u0007G\u0002", + "\u0002\u05f6\u05f7\u0007T\u0002\u0002\u05f7\u05f8\u0007E\u0002\u0002", + "\u05f8\u05f9\u0007G\u0002\u0002\u05f9\u05fa\u0007P\u0002\u0002\u05fa", + "\u05fb\u0007V\u0002\u0002\u05fb\u05fc\u0007N\u0002\u0002\u05fc\u05fd", + "\u0007K\u0002\u0002\u05fd\u05fe\u0007V\u0002\u0002\u05fe\u0116\u0003", + "\u0002\u0002\u0002\u05ff\u0600\u0007D\u0002\u0002\u0600\u0601\u0007", + "W\u0002\u0002\u0601\u0602\u0007E\u0002\u0002\u0602\u0603\u0007M\u0002", + "\u0002\u0603\u0604\u0007G\u0002\u0002\u0604\u0605\u0007V\u0002\u0002", + "\u0605\u0118\u0003\u0002\u0002\u0002\u0606\u0607\u0007Q\u0002\u0002", + "\u0607\u0608\u0007W\u0002\u0002\u0608\u0609\u0007V\u0002\u0002\u0609", + "\u011a\u0003\u0002\u0002\u0002\u060a\u060b\u0007Q\u0002\u0002\u060b", + "\u060c\u0007H\u0002\u0002\u060c\u011c\u0003\u0002\u0002\u0002\u060d", + "\u060e\u0007U\u0002\u0002\u060e\u060f\u0007Q\u0002\u0002\u060f\u0610", + "\u0007T\u0002\u0002\u0610\u0611\u0007V\u0002\u0002\u0611\u011e\u0003", + "\u0002\u0002\u0002\u0612\u0613\u0007E\u0002\u0002\u0613\u0614\u0007", + "N\u0002\u0002\u0614\u0615\u0007W\u0002\u0002\u0615\u0616\u0007U\u0002", + "\u0002\u0616\u0617\u0007V\u0002\u0002\u0617\u0618\u0007G\u0002\u0002", + "\u0618\u0619\u0007T\u0002\u0002\u0619\u0120\u0003\u0002\u0002\u0002", + "\u061a\u061b\u0007F\u0002\u0002\u061b\u061c\u0007K\u0002\u0002\u061c", + "\u061d\u0007U\u0002\u0002\u061d\u061e\u0007V\u0002\u0002\u061e\u061f", + "\u0007T\u0002\u0002\u061f\u0620\u0007K\u0002\u0002\u0620\u0621\u0007", + "D\u0002\u0002\u0621\u0622\u0007W\u0002\u0002\u0622\u0623\u0007V\u0002", + "\u0002\u0623\u0624\u0007G\u0002\u0002\u0624\u0122\u0003\u0002\u0002", + "\u0002\u0625\u0626\u0007Q\u0002\u0002\u0626\u0627\u0007X\u0002\u0002", + "\u0627\u0628\u0007G\u0002\u0002\u0628\u0629\u0007T\u0002\u0002\u0629", + "\u062a\u0007Y\u0002\u0002\u062a\u062b\u0007T\u0002\u0002\u062b\u062c", + "\u0007K\u0002\u0002\u062c\u062d\u0007V\u0002\u0002\u062d\u062e\u0007", + "G\u0002\u0002\u062e\u0124\u0003\u0002\u0002\u0002\u062f\u0630\u0007", + "V\u0002\u0002\u0630\u0631\u0007T\u0002\u0002\u0631\u0632\u0007C\u0002", + "\u0002\u0632\u0633\u0007P\u0002\u0002\u0633\u0634\u0007U\u0002\u0002", + "\u0634\u0635\u0007H\u0002\u0002\u0635\u0636\u0007Q\u0002\u0002\u0636", + "\u0637\u0007T\u0002\u0002\u0637\u0638\u0007O\u0002\u0002\u0638\u0126", + "\u0003\u0002\u0002\u0002\u0639\u063a\u0007T\u0002\u0002\u063a\u063b", + "\u0007G\u0002\u0002\u063b\u063c\u0007F\u0002\u0002\u063c\u063d\u0007", + "W\u0002\u0002\u063d\u063e\u0007E\u0002\u0002\u063e\u063f\u0007G\u0002", + "\u0002\u063f\u0128\u0003\u0002\u0002\u0002\u0640\u0641\u0007W\u0002", + "\u0002\u0641\u0642\u0007U\u0002\u0002\u0642\u0643\u0007K\u0002\u0002", + "\u0643\u0644\u0007P\u0002\u0002\u0644\u0645\u0007I\u0002\u0002\u0645", + "\u012a\u0003\u0002\u0002\u0002\u0646\u0647\u0007U\u0002\u0002\u0647", + "\u0648\u0007G\u0002\u0002\u0648\u0649\u0007T\u0002\u0002\u0649\u064a", + "\u0007F\u0002\u0002\u064a\u064b\u0007G\u0002\u0002\u064b\u012c\u0003", + "\u0002\u0002\u0002\u064c\u064d\u0007U\u0002\u0002\u064d\u064e\u0007", + "G\u0002\u0002\u064e\u064f\u0007T\u0002\u0002\u064f\u0650\u0007F\u0002", + "\u0002\u0650\u0651\u0007G\u0002\u0002\u0651\u0652\u0007R\u0002\u0002", + "\u0652\u0653\u0007T\u0002\u0002\u0653\u0654\u0007Q\u0002\u0002\u0654", + "\u0655\u0007R\u0002\u0002\u0655\u0656\u0007G\u0002\u0002\u0656\u0657", + "\u0007T\u0002\u0002\u0657\u0658\u0007V\u0002\u0002\u0658\u0659\u0007", + "K\u0002\u0002\u0659\u065a\u0007G\u0002\u0002\u065a\u065b\u0007U\u0002", + "\u0002\u065b\u012e\u0003\u0002\u0002\u0002\u065c\u065d\u0007T\u0002", + "\u0002\u065d\u065e\u0007G\u0002\u0002\u065e\u065f\u0007E\u0002\u0002", + "\u065f\u0660\u0007Q\u0002\u0002\u0660\u0661\u0007T\u0002\u0002\u0661", + "\u0662\u0007F\u0002\u0002\u0662\u0663\u0007T\u0002\u0002\u0663\u0664", + "\u0007G\u0002\u0002\u0664\u0665\u0007C\u0002\u0002\u0665\u0666\u0007", + "F\u0002\u0002\u0666\u0667\u0007G\u0002\u0002\u0667\u0668\u0007T\u0002", + "\u0002\u0668\u0130\u0003\u0002\u0002\u0002\u0669\u066a\u0007T\u0002", + "\u0002\u066a\u066b\u0007G\u0002\u0002\u066b\u066c\u0007E\u0002\u0002", + "\u066c\u066d\u0007Q\u0002\u0002\u066d\u066e\u0007T\u0002\u0002\u066e", + "\u066f\u0007F\u0002\u0002\u066f\u0670\u0007Y\u0002\u0002\u0670\u0671", + "\u0007T\u0002\u0002\u0671\u0672\u0007K\u0002\u0002\u0672\u0673\u0007", + "V\u0002\u0002\u0673\u0674\u0007G\u0002\u0002\u0674\u0675\u0007T\u0002", + "\u0002\u0675\u0132\u0003\u0002\u0002\u0002\u0676\u0677\u0007F\u0002", + "\u0002\u0677\u0678\u0007G\u0002\u0002\u0678\u0679\u0007N\u0002\u0002", + "\u0679\u067a\u0007K\u0002\u0002\u067a\u067b\u0007O\u0002\u0002\u067b", + "\u067c\u0007K\u0002\u0002\u067c\u067d\u0007V\u0002\u0002\u067d\u067e", + "\u0007G\u0002\u0002\u067e\u067f\u0007F\u0002\u0002\u067f\u0134\u0003", + "\u0002\u0002\u0002\u0680\u0681\u0007H\u0002\u0002\u0681\u0682\u0007", + "K\u0002\u0002\u0682\u0683\u0007G\u0002\u0002\u0683\u0684\u0007N\u0002", + "\u0002\u0684\u0685\u0007F\u0002\u0002\u0685\u0686\u0007U\u0002\u0002", + "\u0686\u0136\u0003\u0002\u0002\u0002\u0687\u0688\u0007V\u0002\u0002", + "\u0688\u0689\u0007G\u0002\u0002\u0689\u068a\u0007T\u0002\u0002\u068a", + "\u068b\u0007O\u0002\u0002\u068b\u068c\u0007K\u0002\u0002\u068c\u068d", + "\u0007P\u0002\u0002\u068d\u068e\u0007C\u0002\u0002\u068e\u068f\u0007", + "V\u0002\u0002\u068f\u0690\u0007G\u0002\u0002\u0690\u0691\u0007F\u0002", + "\u0002\u0691\u0138\u0003\u0002\u0002\u0002\u0692\u0693\u0007E\u0002", + "\u0002\u0693\u0694\u0007Q\u0002\u0002\u0694\u0695\u0007N\u0002\u0002", + "\u0695\u0696\u0007N\u0002\u0002\u0696\u0697\u0007G\u0002\u0002\u0697", + "\u0698\u0007E\u0002\u0002\u0698\u0699\u0007V\u0002\u0002\u0699\u069a", + "\u0007K\u0002\u0002\u069a\u069b\u0007Q\u0002\u0002\u069b\u069c\u0007", + "P\u0002\u0002\u069c\u013a\u0003\u0002\u0002\u0002\u069d\u069e\u0007", + "K\u0002\u0002\u069e\u069f\u0007V\u0002\u0002\u069f\u06a0\u0007G\u0002", + "\u0002\u06a0\u06a1\u0007O\u0002\u0002\u06a1\u06a2\u0007U\u0002\u0002", + "\u06a2\u013c\u0003\u0002\u0002\u0002\u06a3\u06a4\u0007M\u0002\u0002", + "\u06a4\u06a5\u0007G\u0002\u0002\u06a5\u06a6\u0007[\u0002\u0002\u06a6", + "\u06a7\u0007U\u0002\u0002\u06a7\u013e\u0003\u0002\u0002\u0002\u06a8", + "\u06a9\u0007G\u0002\u0002\u06a9\u06aa\u0007U\u0002\u0002\u06aa\u06ab", + "\u0007E\u0002\u0002\u06ab\u06ac\u0007C\u0002\u0002\u06ac\u06ad\u0007", + "R\u0002\u0002\u06ad\u06ae\u0007G\u0002\u0002\u06ae\u06af\u0007F\u0002", + "\u0002\u06af\u0140\u0003\u0002\u0002\u0002\u06b0\u06b1\u0007N\u0002", + "\u0002\u06b1\u06b2\u0007K\u0002\u0002\u06b2\u06b3\u0007P\u0002\u0002", + "\u06b3\u06b4\u0007G\u0002\u0002\u06b4\u06b5\u0007U\u0002\u0002\u06b5", + "\u0142\u0003\u0002\u0002\u0002\u06b6\u06b7\u0007U\u0002\u0002\u06b7", + "\u06b8\u0007G\u0002\u0002\u06b8\u06b9\u0007R\u0002\u0002\u06b9\u06ba", + "\u0007C\u0002\u0002\u06ba\u06bb\u0007T\u0002\u0002\u06bb\u06bc\u0007", + "C\u0002\u0002\u06bc\u06bd\u0007V\u0002\u0002\u06bd\u06be\u0007G\u0002", + "\u0002\u06be\u06bf\u0007F\u0002\u0002\u06bf\u0144\u0003\u0002\u0002", + "\u0002\u06c0\u06c1\u0007H\u0002\u0002\u06c1\u06c2\u0007W\u0002\u0002", + "\u06c2\u06c3\u0007P\u0002\u0002\u06c3\u06c4\u0007E\u0002\u0002\u06c4", + "\u06c5\u0007V\u0002\u0002\u06c5\u06c6\u0007K\u0002\u0002\u06c6\u06c7", + "\u0007Q\u0002\u0002\u06c7\u06c8\u0007P\u0002\u0002\u06c8\u0146\u0003", + "\u0002\u0002\u0002\u06c9\u06ca\u0007G\u0002\u0002\u06ca\u06cb\u0007", + "Z\u0002\u0002\u06cb\u06cc\u0007V\u0002\u0002\u06cc\u06cd\u0007G\u0002", + "\u0002\u06cd\u06ce\u0007P\u0002\u0002\u06ce\u06cf\u0007F\u0002\u0002", + "\u06cf\u06d0\u0007G\u0002\u0002\u06d0\u06d1\u0007F\u0002\u0002\u06d1", + "\u0148\u0003\u0002\u0002\u0002\u06d2\u06d3\u0007T\u0002\u0002\u06d3", + "\u06d4\u0007G\u0002\u0002\u06d4\u06d5\u0007H\u0002\u0002\u06d5\u06d6", + "\u0007T\u0002\u0002\u06d6\u06d7\u0007G\u0002\u0002\u06d7\u06d8\u0007", + "U\u0002\u0002\u06d8\u06d9\u0007J\u0002\u0002\u06d9\u014a\u0003\u0002", + "\u0002\u0002\u06da\u06db\u0007E\u0002\u0002\u06db\u06dc\u0007N\u0002", + "\u0002\u06dc\u06dd\u0007G\u0002\u0002\u06dd\u06de\u0007C\u0002\u0002", + "\u06de\u06df\u0007T\u0002\u0002\u06df\u014c\u0003\u0002\u0002\u0002", + "\u06e0\u06e1\u0007E\u0002\u0002\u06e1\u06e2\u0007C\u0002\u0002\u06e2", + "\u06e3\u0007E\u0002\u0002\u06e3\u06e4\u0007J\u0002\u0002\u06e4\u06e5", + "\u0007G\u0002\u0002\u06e5\u014e\u0003\u0002\u0002\u0002\u06e6\u06e7", + "\u0007W\u0002\u0002\u06e7\u06e8\u0007P\u0002\u0002\u06e8\u06e9\u0007", + "E\u0002\u0002\u06e9\u06ea\u0007C\u0002\u0002\u06ea\u06eb\u0007E\u0002", + "\u0002\u06eb\u06ec\u0007J\u0002\u0002\u06ec\u06ed\u0007G\u0002\u0002", + "\u06ed\u0150\u0003\u0002\u0002\u0002\u06ee\u06ef\u0007N\u0002\u0002", + "\u06ef\u06f0\u0007C\u0002\u0002\u06f0\u06f1\u0007\\\u0002\u0002\u06f1", + "\u06f2\u0007[\u0002\u0002\u06f2\u0152\u0003\u0002\u0002\u0002\u06f3", + "\u06f4\u0007H\u0002\u0002\u06f4\u06f5\u0007Q\u0002\u0002\u06f5\u06f6", + "\u0007T\u0002\u0002\u06f6\u06f7\u0007O\u0002\u0002\u06f7\u06f8\u0007", + "C\u0002\u0002\u06f8\u06f9\u0007V\u0002\u0002\u06f9\u06fa\u0007V\u0002", + "\u0002\u06fa\u06fb\u0007G\u0002\u0002\u06fb\u06fc\u0007F\u0002\u0002", + "\u06fc\u0154\u0003\u0002\u0002\u0002\u06fd\u06fe\u0007I\u0002\u0002", + "\u06fe\u06ff\u0007N\u0002\u0002\u06ff\u0700\u0007Q\u0002\u0002\u0700", + "\u0701\u0007D\u0002\u0002\u0701\u0702\u0007C\u0002\u0002\u0702\u0703", + "\u0007N\u0002\u0002\u0703\u0156\u0003\u0002\u0002\u0002\u0704\u0705", + "\u0007V\u0002\u0002\u0705\u0706\u0007G\u0002\u0002\u0706\u0707\u0007", + "O\u0002\u0002\u0707\u0708\u0007R\u0002\u0002\u0708\u0709\u0007Q\u0002", + "\u0002\u0709\u070a\u0007T\u0002\u0002\u070a\u070b\u0007C\u0002\u0002", + "\u070b\u070c\u0007T\u0002\u0002\u070c\u070d\u0007[\u0002\u0002\u070d", + "\u0158\u0003\u0002\u0002\u0002\u070e\u070f\u0007Q\u0002\u0002\u070f", + "\u0710\u0007R\u0002\u0002\u0710\u0711\u0007V\u0002\u0002\u0711\u0712", + "\u0007K\u0002\u0002\u0712\u0713\u0007Q\u0002\u0002\u0713\u0714\u0007", + "P\u0002\u0002\u0714\u0715\u0007U\u0002\u0002\u0715\u015a\u0003\u0002", + "\u0002\u0002\u0716\u0717\u0007W\u0002\u0002\u0717\u0718\u0007P\u0002", + "\u0002\u0718\u0719\u0007U\u0002\u0002\u0719\u071a\u0007G\u0002\u0002", + "\u071a\u071b\u0007V\u0002\u0002\u071b\u015c\u0003\u0002\u0002\u0002", + "\u071c\u071d\u0007V\u0002\u0002\u071d\u071e\u0007D\u0002\u0002\u071e", + "\u071f\u0007N\u0002\u0002\u071f\u0720\u0007R\u0002\u0002\u0720\u0721", + "\u0007T\u0002\u0002\u0721\u0722\u0007Q\u0002\u0002\u0722\u0723\u0007", + "R\u0002\u0002\u0723\u0724\u0007G\u0002\u0002\u0724\u0725\u0007T\u0002", + "\u0002\u0725\u0726\u0007V\u0002\u0002\u0726\u0727\u0007K\u0002\u0002", + "\u0727\u0728\u0007G\u0002\u0002\u0728\u0729\u0007U\u0002\u0002\u0729", + "\u015e\u0003\u0002\u0002\u0002\u072a\u072b\u0007F\u0002\u0002\u072b", + "\u072c\u0007D\u0002\u0002\u072c\u072d\u0007R\u0002\u0002\u072d\u072e", + "\u0007T\u0002\u0002\u072e\u072f\u0007Q\u0002\u0002\u072f\u0730\u0007", + "R\u0002\u0002\u0730\u0731\u0007G\u0002\u0002\u0731\u0732\u0007T\u0002", "\u0002\u0732\u0733\u0007V\u0002\u0002\u0733\u0734\u0007K\u0002\u0002", - "\u0734\u0735\u0007Q\u0002\u0002\u0735\u0736\u0007P\u0002\u0002\u0736", - "\u0737\u0007U\u0002\u0002\u0737\u015c\u0003\u0002\u0002\u0002\u0738", - "\u0739\u0007W\u0002\u0002\u0739\u073a\u0007P\u0002\u0002\u073a\u073b", - "\u0007U\u0002\u0002\u073b\u073c\u0007G\u0002\u0002\u073c\u073d\u0007", - "V\u0002\u0002\u073d\u015e\u0003\u0002\u0002\u0002\u073e\u073f\u0007", - "V\u0002\u0002\u073f\u0740\u0007D\u0002\u0002\u0740\u0741\u0007N\u0002", - "\u0002\u0741\u0742\u0007R\u0002\u0002\u0742\u0743\u0007T\u0002\u0002", - "\u0743\u0744\u0007Q\u0002\u0002\u0744\u0745\u0007R\u0002\u0002\u0745", - "\u0746\u0007G\u0002\u0002\u0746\u0747\u0007T\u0002\u0002\u0747\u0748", - "\u0007V\u0002\u0002\u0748\u0749\u0007K\u0002\u0002\u0749\u074a\u0007", - "G\u0002\u0002\u074a\u074b\u0007U\u0002\u0002\u074b\u0160\u0003\u0002", - "\u0002\u0002\u074c\u074d\u0007F\u0002\u0002\u074d\u074e\u0007D\u0002", - "\u0002\u074e\u074f\u0007R\u0002\u0002\u074f\u0750\u0007T\u0002\u0002", - "\u0750\u0751\u0007Q\u0002\u0002\u0751\u0752\u0007R\u0002\u0002\u0752", - "\u0753\u0007G\u0002\u0002\u0753\u0754\u0007T\u0002\u0002\u0754\u0755", - "\u0007V\u0002\u0002\u0755\u0756\u0007K\u0002\u0002\u0756\u0757\u0007", - "G\u0002\u0002\u0757\u0758\u0007U\u0002\u0002\u0758\u0162\u0003\u0002", - "\u0002\u0002\u0759\u075a\u0007D\u0002\u0002\u075a\u075b\u0007W\u0002", - "\u0002\u075b\u075c\u0007E\u0002\u0002\u075c\u075d\u0007M\u0002\u0002", - "\u075d\u075e\u0007G\u0002\u0002\u075e\u075f\u0007V\u0002\u0002\u075f", - "\u0760\u0007U\u0002\u0002\u0760\u0164\u0003\u0002\u0002\u0002\u0761", - "\u0762\u0007U\u0002\u0002\u0762\u0763\u0007M\u0002\u0002\u0763\u0764", - "\u0007G\u0002\u0002\u0764\u0765\u0007Y\u0002\u0002\u0765\u0766\u0007", - "G\u0002\u0002\u0766\u0767\u0007F\u0002\u0002\u0767\u0166\u0003\u0002", - "\u0002\u0002\u0768\u0769\u0007U\u0002\u0002\u0769\u076a\u0007V\u0002", - "\u0002\u076a\u076b\u0007Q\u0002\u0002\u076b\u076c\u0007T\u0002\u0002", - "\u076c\u076d\u0007G\u0002\u0002\u076d\u076e\u0007F\u0002\u0002\u076e", - "\u0168\u0003\u0002\u0002\u0002\u076f\u0770\u0007F\u0002\u0002\u0770", - "\u0771\u0007K\u0002\u0002\u0771\u0772\u0007T\u0002\u0002\u0772\u0773", - "\u0007G\u0002\u0002\u0773\u0774\u0007E\u0002\u0002\u0774\u0775\u0007", - "V\u0002\u0002\u0775\u0776\u0007Q\u0002\u0002\u0776\u0777\u0007T\u0002", - "\u0002\u0777\u0778\u0007K\u0002\u0002\u0778\u0779\u0007G\u0002\u0002", - "\u0779\u077a\u0007U\u0002\u0002\u077a\u016a\u0003\u0002\u0002\u0002", - "\u077b\u077c\u0007N\u0002\u0002\u077c\u077d\u0007Q\u0002\u0002\u077d", - "\u077e\u0007E\u0002\u0002\u077e\u077f\u0007C\u0002\u0002\u077f\u0780", - "\u0007V\u0002\u0002\u0780\u0781\u0007K\u0002\u0002\u0781\u0782\u0007", - "Q\u0002\u0002\u0782\u0783\u0007P\u0002\u0002\u0783\u016c\u0003\u0002", - "\u0002\u0002\u0784\u0785\u0007G\u0002\u0002\u0785\u0786\u0007Z\u0002", - "\u0002\u0786\u0787\u0007E\u0002\u0002\u0787\u0788\u0007J\u0002\u0002", - "\u0788\u0789\u0007C\u0002\u0002\u0789\u078a\u0007P\u0002\u0002\u078a", - "\u078b\u0007I\u0002\u0002\u078b\u078c\u0007G\u0002\u0002\u078c\u016e", - "\u0003\u0002\u0002\u0002\u078d\u078e\u0007C\u0002\u0002\u078e\u078f", - "\u0007T\u0002\u0002\u078f\u0790\u0007E\u0002\u0002\u0790\u0791\u0007", - "J\u0002\u0002\u0791\u0792\u0007K\u0002\u0002\u0792\u0793\u0007X\u0002", - "\u0002\u0793\u0794\u0007G\u0002\u0002\u0794\u0170\u0003\u0002\u0002", - "\u0002\u0795\u0796\u0007W\u0002\u0002\u0796\u0797\u0007P\u0002\u0002", - "\u0797\u0798\u0007C\u0002\u0002\u0798\u0799\u0007T\u0002\u0002\u0799", - "\u079a\u0007E\u0002\u0002\u079a\u079b\u0007J\u0002\u0002\u079b\u079c", - "\u0007K\u0002\u0002\u079c\u079d\u0007X\u0002\u0002\u079d\u079e\u0007", - "G\u0002\u0002\u079e\u0172\u0003\u0002\u0002\u0002\u079f\u07a0\u0007", - "H\u0002\u0002\u07a0\u07a1\u0007K\u0002\u0002\u07a1\u07a2\u0007N\u0002", - "\u0002\u07a2\u07a3\u0007G\u0002\u0002\u07a3\u07a4\u0007H\u0002\u0002", - "\u07a4\u07a5\u0007Q\u0002\u0002\u07a5\u07a6\u0007T\u0002\u0002\u07a6", - "\u07a7\u0007O\u0002\u0002\u07a7\u07a8\u0007C\u0002\u0002\u07a8\u07a9", - "\u0007V\u0002\u0002\u07a9\u0174\u0003\u0002\u0002\u0002\u07aa\u07ab", - "\u0007V\u0002\u0002\u07ab\u07ac\u0007Q\u0002\u0002\u07ac\u07ad\u0007", - "W\u0002\u0002\u07ad\u07ae\u0007E\u0002\u0002\u07ae\u07af\u0007J\u0002", - "\u0002\u07af\u0176\u0003\u0002\u0002\u0002\u07b0\u07b1\u0007E\u0002", - "\u0002\u07b1\u07b2\u0007Q\u0002\u0002\u07b2\u07b3\u0007O\u0002\u0002", - "\u07b3\u07b4\u0007R\u0002\u0002\u07b4\u07b5\u0007C\u0002\u0002\u07b5", - "\u07b6\u0007E\u0002\u0002\u07b6\u07b7\u0007V\u0002\u0002\u07b7\u0178", - "\u0003\u0002\u0002\u0002\u07b8\u07b9\u0007E\u0002\u0002\u07b9\u07ba", - "\u0007Q\u0002\u0002\u07ba\u07bb\u0007P\u0002\u0002\u07bb\u07bc\u0007", - "E\u0002\u0002\u07bc\u07bd\u0007C\u0002\u0002\u07bd\u07be\u0007V\u0002", - "\u0002\u07be\u07bf\u0007G\u0002\u0002\u07bf\u07c0\u0007P\u0002\u0002", - "\u07c0\u07c1\u0007C\u0002\u0002\u07c1\u07c2\u0007V\u0002\u0002\u07c2", - "\u07c3\u0007G\u0002\u0002\u07c3\u017a\u0003\u0002\u0002\u0002\u07c4", - "\u07c5\u0007E\u0002\u0002\u07c5\u07c6\u0007J\u0002\u0002\u07c6\u07c7", - "\u0007C\u0002\u0002\u07c7\u07c8\u0007P\u0002\u0002\u07c8\u07c9\u0007", - "I\u0002\u0002\u07c9\u07ca\u0007G\u0002\u0002\u07ca\u017c\u0003\u0002", - "\u0002\u0002\u07cb\u07cc\u0007E\u0002\u0002\u07cc\u07cd\u0007C\u0002", - "\u0002\u07cd\u07ce\u0007U\u0002\u0002\u07ce\u07cf\u0007E\u0002\u0002", - "\u07cf\u07d0\u0007C\u0002\u0002\u07d0\u07d1\u0007F\u0002\u0002\u07d1", - "\u07d2\u0007G\u0002\u0002\u07d2\u017e\u0003\u0002\u0002\u0002\u07d3", - "\u07d4\u0007T\u0002\u0002\u07d4\u07d5\u0007G\u0002\u0002\u07d5\u07d6", - "\u0007U\u0002\u0002\u07d6\u07d7\u0007V\u0002\u0002\u07d7\u07d8\u0007", - "T\u0002\u0002\u07d8\u07d9\u0007K\u0002\u0002\u07d9\u07da\u0007E\u0002", - "\u0002\u07da\u07db\u0007V\u0002\u0002\u07db\u0180\u0003\u0002\u0002", - "\u0002\u07dc\u07dd\u0007E\u0002\u0002\u07dd\u07de\u0007N\u0002\u0002", - "\u07de\u07df\u0007W\u0002\u0002\u07df\u07e0\u0007U\u0002\u0002\u07e0", - "\u07e1\u0007V\u0002\u0002\u07e1\u07e2\u0007G\u0002\u0002\u07e2\u07e3", - "\u0007T\u0002\u0002\u07e3\u07e4\u0007G\u0002\u0002\u07e4\u07e5\u0007", - "F\u0002\u0002\u07e5\u0182\u0003\u0002\u0002\u0002\u07e6\u07e7\u0007", - "U\u0002\u0002\u07e7\u07e8\u0007Q\u0002\u0002\u07e8\u07e9\u0007T\u0002", - "\u0002\u07e9\u07ea\u0007V\u0002\u0002\u07ea\u07eb\u0007G\u0002\u0002", - "\u07eb\u07ec\u0007F\u0002\u0002\u07ec\u0184\u0003\u0002\u0002\u0002", - "\u07ed\u07ee\u0007R\u0002\u0002\u07ee\u07ef\u0007W\u0002\u0002\u07ef", - "\u07f0\u0007T\u0002\u0002\u07f0\u07f1\u0007I\u0002\u0002\u07f1\u07f2", - "\u0007G\u0002\u0002\u07f2\u0186\u0003\u0002\u0002\u0002\u07f3\u07f4", - "\u0007K\u0002\u0002\u07f4\u07f5\u0007P\u0002\u0002\u07f5\u07f6\u0007", - "R\u0002\u0002\u07f6\u07f7\u0007W\u0002\u0002\u07f7\u07f8\u0007V\u0002", - "\u0002\u07f8\u07f9\u0007H\u0002\u0002\u07f9\u07fa\u0007Q\u0002\u0002", - "\u07fa\u07fb\u0007T\u0002\u0002\u07fb\u07fc\u0007O\u0002\u0002\u07fc", - "\u07fd\u0007C\u0002\u0002\u07fd\u07fe\u0007V\u0002\u0002\u07fe\u0188", - "\u0003\u0002\u0002\u0002\u07ff\u0800\u0007Q\u0002\u0002\u0800\u0801", - "\u0007W\u0002\u0002\u0801\u0802\u0007V\u0002\u0002\u0802\u0803\u0007", - "R\u0002\u0002\u0803\u0804\u0007W\u0002\u0002\u0804\u0805\u0007V\u0002", - "\u0002\u0805\u0806\u0007H\u0002\u0002\u0806\u0807\u0007Q\u0002\u0002", - "\u0807\u0808\u0007T\u0002\u0002\u0808\u0809\u0007O\u0002\u0002\u0809", - "\u080a\u0007C\u0002\u0002\u080a\u080b\u0007V\u0002\u0002\u080b\u018a", - "\u0003\u0002\u0002\u0002\u080c\u080d\u0007F\u0002\u0002\u080d\u080e", - "\u0007C\u0002\u0002\u080e\u080f\u0007V\u0002\u0002\u080f\u0810\u0007", - "C\u0002\u0002\u0810\u0811\u0007D\u0002\u0002\u0811\u0812\u0007C\u0002", - "\u0002\u0812\u0813\u0007U\u0002\u0002\u0813\u0814\u0007G\u0002\u0002", - "\u0814\u018c\u0003\u0002\u0002\u0002\u0815\u0816\u0007F\u0002\u0002", - "\u0816\u0817\u0007C\u0002\u0002\u0817\u0818\u0007V\u0002\u0002\u0818", - "\u0819\u0007C\u0002\u0002\u0819\u081a\u0007D\u0002\u0002\u081a\u081b", - "\u0007C\u0002\u0002\u081b\u081c\u0007U\u0002\u0002\u081c\u081d\u0007", - "G\u0002\u0002\u081d\u081e\u0007U\u0002\u0002\u081e\u018e\u0003\u0002", - "\u0002\u0002\u081f\u0820\u0007F\u0002\u0002\u0820\u0821\u0007H\u0002", - "\u0002\u0821\u0822\u0007U\u0002\u0002\u0822\u0190\u0003\u0002\u0002", - "\u0002\u0823\u0824\u0007V\u0002\u0002\u0824\u0825\u0007T\u0002\u0002", - "\u0825\u0826\u0007W\u0002\u0002\u0826\u0827\u0007P\u0002\u0002\u0827", - "\u0828\u0007E\u0002\u0002\u0828\u0829\u0007C\u0002\u0002\u0829\u082a", - "\u0007V\u0002\u0002\u082a\u082b\u0007G\u0002\u0002\u082b\u0192\u0003", - "\u0002\u0002\u0002\u082c\u082d\u0007C\u0002\u0002\u082d\u082e\u0007", - "P\u0002\u0002\u082e\u082f\u0007C\u0002\u0002\u082f\u0830\u0007N\u0002", - "\u0002\u0830\u0831\u0007[\u0002\u0002\u0831\u0832\u0007\\\u0002\u0002", - "\u0832\u0833\u0007G\u0002\u0002\u0833\u0194\u0003\u0002\u0002\u0002", - "\u0834\u0835\u0007E\u0002\u0002\u0835\u0836\u0007Q\u0002\u0002\u0836", - "\u0837\u0007O\u0002\u0002\u0837\u0838\u0007R\u0002\u0002\u0838\u0839", - "\u0007W\u0002\u0002\u0839\u083a\u0007V\u0002\u0002\u083a\u083b\u0007", - "G\u0002\u0002\u083b\u0196\u0003\u0002\u0002\u0002\u083c\u083d\u0007", - "N\u0002\u0002\u083d\u083e\u0007K\u0002\u0002\u083e\u083f\u0007U\u0002", - "\u0002\u083f\u0840\u0007V\u0002\u0002\u0840\u0198\u0003\u0002\u0002", - "\u0002\u0841\u0842\u0007U\u0002\u0002\u0842\u0843\u0007V\u0002\u0002", - "\u0843\u0844\u0007C\u0002\u0002\u0844\u0845\u0007V\u0002\u0002\u0845", - "\u0846\u0007K\u0002\u0002\u0846\u0847\u0007U\u0002\u0002\u0847\u0848", - "\u0007V\u0002\u0002\u0848\u0849\u0007K\u0002\u0002\u0849\u084a\u0007", - "E\u0002\u0002\u084a\u084b\u0007U\u0002\u0002\u084b\u019a\u0003\u0002", - "\u0002\u0002\u084c\u084d\u0007R\u0002\u0002\u084d\u084e\u0007C\u0002", - "\u0002\u084e\u084f\u0007T\u0002\u0002\u084f\u0850\u0007V\u0002\u0002", - "\u0850\u0851\u0007K\u0002\u0002\u0851\u0852\u0007V\u0002\u0002\u0852", - "\u0853\u0007K\u0002\u0002\u0853\u0854\u0007Q\u0002\u0002\u0854\u0855", - "\u0007P\u0002\u0002\u0855\u0856\u0007G\u0002\u0002\u0856\u0857\u0007", - "F\u0002\u0002\u0857\u019c\u0003\u0002\u0002\u0002\u0858\u0859\u0007", - "G\u0002\u0002\u0859\u085a\u0007Z\u0002\u0002\u085a\u085b\u0007V\u0002", - "\u0002\u085b\u085c\u0007G\u0002\u0002\u085c\u085d\u0007T\u0002\u0002", - "\u085d\u085e\u0007P\u0002\u0002\u085e\u085f\u0007C\u0002\u0002\u085f", - "\u0860\u0007N\u0002\u0002\u0860\u019e\u0003\u0002\u0002\u0002\u0861", - "\u0862\u0007F\u0002\u0002\u0862\u0863\u0007G\u0002\u0002\u0863\u0864", - "\u0007H\u0002\u0002\u0864\u0865\u0007K\u0002\u0002\u0865\u0866\u0007", - "P\u0002\u0002\u0866\u0867\u0007G\u0002\u0002\u0867\u0868\u0007F\u0002", - "\u0002\u0868\u01a0\u0003\u0002\u0002\u0002\u0869\u086a\u0007T\u0002", - "\u0002\u086a\u086b\u0007G\u0002\u0002\u086b\u086c\u0007X\u0002\u0002", - "\u086c\u086d\u0007Q\u0002\u0002\u086d\u086e\u0007M\u0002\u0002\u086e", - "\u086f\u0007G\u0002\u0002\u086f\u01a2\u0003\u0002\u0002\u0002\u0870", - "\u0871\u0007I\u0002\u0002\u0871\u0872\u0007T\u0002\u0002\u0872\u0873", - "\u0007C\u0002\u0002\u0873\u0874\u0007P\u0002\u0002\u0874\u0875\u0007", - "V\u0002\u0002\u0875\u01a4\u0003\u0002\u0002\u0002\u0876\u0877\u0007", - "N\u0002\u0002\u0877\u0878\u0007Q\u0002\u0002\u0878\u0879\u0007E\u0002", - "\u0002\u0879\u087a\u0007M\u0002\u0002\u087a\u01a6\u0003\u0002\u0002", - "\u0002\u087b\u087c\u0007W\u0002\u0002\u087c\u087d\u0007P\u0002\u0002", - "\u087d\u087e\u0007N\u0002\u0002\u087e\u087f\u0007Q\u0002\u0002\u087f", - "\u0880\u0007E\u0002\u0002\u0880\u0881\u0007M\u0002\u0002\u0881\u01a8", - "\u0003\u0002\u0002\u0002\u0882\u0883\u0007O\u0002\u0002\u0883\u0884", - "\u0007U\u0002\u0002\u0884\u0885\u0007E\u0002\u0002\u0885\u0886\u0007", - "M\u0002\u0002\u0886\u01aa\u0003\u0002\u0002\u0002\u0887\u0888\u0007", - "T\u0002\u0002\u0888\u0889\u0007G\u0002\u0002\u0889\u088a\u0007R\u0002", - "\u0002\u088a\u088b\u0007C\u0002\u0002\u088b\u088c\u0007K\u0002\u0002", - "\u088c\u088d\u0007T\u0002\u0002\u088d\u01ac\u0003\u0002\u0002\u0002", - "\u088e\u088f\u0007T\u0002\u0002\u088f\u0890\u0007G\u0002\u0002\u0890", - "\u0891\u0007E\u0002\u0002\u0891\u0892\u0007Q\u0002\u0002\u0892\u0893", - "\u0007X\u0002\u0002\u0893\u0894\u0007G\u0002\u0002\u0894\u0895\u0007", - "T\u0002\u0002\u0895\u01ae\u0003\u0002\u0002\u0002\u0896\u0897\u0007", - "G\u0002\u0002\u0897\u0898\u0007Z\u0002\u0002\u0898\u0899\u0007R\u0002", - "\u0002\u0899\u089a\u0007Q\u0002\u0002\u089a\u089b\u0007T\u0002\u0002", - "\u089b\u089c\u0007V\u0002\u0002\u089c\u01b0\u0003\u0002\u0002\u0002", - "\u089d\u089e\u0007K\u0002\u0002\u089e\u089f\u0007O\u0002\u0002\u089f", - "\u08a0\u0007R\u0002\u0002\u08a0\u08a1\u0007Q\u0002\u0002\u08a1\u08a2", - "\u0007T\u0002\u0002\u08a2\u08a3\u0007V\u0002\u0002\u08a3\u01b2\u0003", - "\u0002\u0002\u0002\u08a4\u08a5\u0007N\u0002\u0002\u08a5\u08a6\u0007", - "Q\u0002\u0002\u08a6\u08a7\u0007C\u0002\u0002\u08a7\u08a8\u0007F\u0002", - "\u0002\u08a8\u01b4\u0003\u0002\u0002\u0002\u08a9\u08aa\u0007T\u0002", - "\u0002\u08aa\u08ab\u0007Q\u0002\u0002\u08ab\u08ac\u0007N\u0002\u0002", - "\u08ac\u08ad\u0007G\u0002\u0002\u08ad\u01b6\u0003\u0002\u0002\u0002", - "\u08ae\u08af\u0007T\u0002\u0002\u08af\u08b0\u0007Q\u0002\u0002\u08b0", - "\u08b1\u0007N\u0002\u0002\u08b1\u08b2\u0007G\u0002\u0002\u08b2\u08b3", - "\u0007U\u0002\u0002\u08b3\u01b8\u0003\u0002\u0002\u0002\u08b4\u08b5", - "\u0007E\u0002\u0002\u08b5\u08b6\u0007Q\u0002\u0002\u08b6\u08b7\u0007", - "O\u0002\u0002\u08b7\u08b8\u0007R\u0002\u0002\u08b8\u08b9\u0007C\u0002", - "\u0002\u08b9\u08ba\u0007E\u0002\u0002\u08ba\u08bb\u0007V\u0002\u0002", - "\u08bb\u08bc\u0007K\u0002\u0002\u08bc\u08bd\u0007Q\u0002\u0002\u08bd", - "\u08be\u0007P\u0002\u0002\u08be\u08bf\u0007U\u0002\u0002\u08bf\u01ba", - "\u0003\u0002\u0002\u0002\u08c0\u08c1\u0007R\u0002\u0002\u08c1\u08c2", - "\u0007T\u0002\u0002\u08c2\u08c3\u0007K\u0002\u0002\u08c3\u08c4\u0007", - "P\u0002\u0002\u08c4\u08c5\u0007E\u0002\u0002\u08c5\u08c6\u0007K\u0002", - "\u0002\u08c6\u08c7\u0007R\u0002\u0002\u08c7\u08c8\u0007C\u0002\u0002", - "\u08c8\u08c9\u0007N\u0002\u0002\u08c9\u08ca\u0007U\u0002\u0002\u08ca", - "\u01bc\u0003\u0002\u0002\u0002\u08cb\u08cc\u0007V\u0002\u0002\u08cc", - "\u08cd\u0007T\u0002\u0002\u08cd\u08ce\u0007C\u0002\u0002\u08ce\u08cf", - "\u0007P\u0002\u0002\u08cf\u08d0\u0007U\u0002\u0002\u08d0\u08d1\u0007", - "C\u0002\u0002\u08d1\u08d2\u0007E\u0002\u0002\u08d2\u08d3\u0007V\u0002", - "\u0002\u08d3\u08d4\u0007K\u0002\u0002\u08d4\u08d5\u0007Q\u0002\u0002", - "\u08d5\u08d6\u0007P\u0002\u0002\u08d6\u08d7\u0007U\u0002\u0002\u08d7", - "\u01be\u0003\u0002\u0002\u0002\u08d8\u08d9\u0007K\u0002\u0002\u08d9", - "\u08da\u0007P\u0002\u0002\u08da\u08db\u0007F\u0002\u0002\u08db\u08dc", - "\u0007G\u0002\u0002\u08dc\u08dd\u0007Z\u0002\u0002\u08dd\u01c0\u0003", - "\u0002\u0002\u0002\u08de\u08df\u0007K\u0002\u0002\u08df\u08e0\u0007", - "P\u0002\u0002\u08e0\u08e1\u0007F\u0002\u0002\u08e1\u08e2\u0007G\u0002", - "\u0002\u08e2\u08e3\u0007Z\u0002\u0002\u08e3\u08e4\u0007G\u0002\u0002", - "\u08e4\u08e5\u0007U\u0002\u0002\u08e5\u01c2\u0003\u0002\u0002\u0002", - "\u08e6\u08e7\u0007N\u0002\u0002\u08e7\u08e8\u0007Q\u0002\u0002\u08e8", - "\u08e9\u0007E\u0002\u0002\u08e9\u08ea\u0007M\u0002\u0002\u08ea\u08eb", - "\u0007U\u0002\u0002\u08eb\u01c4\u0003\u0002\u0002\u0002\u08ec\u08ed", - "\u0007Q\u0002\u0002\u08ed\u08ee\u0007R\u0002\u0002\u08ee\u08ef\u0007", - "V\u0002\u0002\u08ef\u08f0\u0007K\u0002\u0002\u08f0\u08f1\u0007Q\u0002", - "\u0002\u08f1\u08f2\u0007P\u0002\u0002\u08f2\u01c6\u0003\u0002\u0002", - "\u0002\u08f3\u08f4\u0007C\u0002\u0002\u08f4\u08f5\u0007P\u0002\u0002", - "\u08f5\u08f6\u0007V\u0002\u0002\u08f6\u08f7\u0007K\u0002\u0002\u08f7", - "\u01c8\u0003\u0002\u0002\u0002\u08f8\u08f9\u0007N\u0002\u0002\u08f9", - "\u08fa\u0007Q\u0002\u0002\u08fa\u08fb\u0007E\u0002\u0002\u08fb\u08fc", - "\u0007C\u0002\u0002\u08fc\u08fd\u0007N\u0002\u0002\u08fd\u01ca\u0003", - "\u0002\u0002\u0002\u08fe\u08ff\u0007K\u0002\u0002\u08ff\u0900\u0007", - "P\u0002\u0002\u0900\u0901\u0007R\u0002\u0002\u0901\u0902\u0007C\u0002", - "\u0002\u0902\u0903\u0007V\u0002\u0002\u0903\u0904\u0007J\u0002\u0002", - "\u0904\u01cc\u0003\u0002\u0002\u0002\u0905\u0906\u0007Y\u0002\u0002", - "\u0906\u0907\u0007C\u0002\u0002\u0907\u0908\u0007V\u0002\u0002\u0908", - "\u0909\u0007G\u0002\u0002\u0909\u090a\u0007T\u0002\u0002\u090a\u090b", - "\u0007O\u0002\u0002\u090b\u090c\u0007C\u0002\u0002\u090c\u090d\u0007", - "T\u0002\u0002\u090d\u090e\u0007M\u0002\u0002\u090e\u01ce\u0003\u0002", - "\u0002\u0002\u090f\u0910\u0007W\u0002\u0002\u0910\u0911\u0007P\u0002", - "\u0002\u0911\u0912\u0007P\u0002\u0002\u0912\u0913\u0007G\u0002\u0002", - "\u0913\u0914\u0007U\u0002\u0002\u0914\u0915\u0007V\u0002\u0002\u0915", - "\u01d0\u0003\u0002\u0002\u0002\u0916\u0917\u0007O\u0002\u0002\u0917", - "\u0918\u0007C\u0002\u0002\u0918\u0919\u0007V\u0002\u0002\u0919\u091a", - "\u0007E\u0002\u0002\u091a\u091b\u0007J\u0002\u0002\u091b\u091c\u0007", - "a\u0002\u0002\u091c\u091d\u0007T\u0002\u0002\u091d\u091e\u0007G\u0002", - "\u0002\u091e\u091f\u0007E\u0002\u0002\u091f\u0920\u0007Q\u0002\u0002", - "\u0920\u0921\u0007I\u0002\u0002\u0921\u0922\u0007P\u0002\u0002\u0922", - "\u0923\u0007K\u0002\u0002\u0923\u0924\u0007\\\u0002\u0002\u0924\u0925", - "\u0007G\u0002\u0002\u0925\u01d2\u0003\u0002\u0002\u0002\u0926\u0927", - "\u0007O\u0002\u0002\u0927\u0928\u0007G\u0002\u0002\u0928\u0929\u0007", - "C\u0002\u0002\u0929\u092a\u0007U\u0002\u0002\u092a\u092b\u0007W\u0002", - "\u0002\u092b\u092c\u0007T\u0002\u0002\u092c\u092d\u0007G\u0002\u0002", - "\u092d\u092e\u0007U\u0002\u0002\u092e\u01d4\u0003\u0002\u0002\u0002", - "\u092f\u0930\u0007Q\u0002\u0002\u0930\u0931\u0007P\u0002\u0002\u0931", - "\u0932\u0007G\u0002\u0002\u0932\u01d6\u0003\u0002\u0002\u0002\u0933", - "\u0934\u0007R\u0002\u0002\u0934\u0935\u0007G\u0002\u0002\u0935\u0936", - "\u0007T\u0002\u0002\u0936\u01d8\u0003\u0002\u0002\u0002\u0937\u0938", - "\u0007O\u0002\u0002\u0938\u0939\u0007C\u0002\u0002\u0939\u093a\u0007", - "V\u0002\u0002\u093a\u093b\u0007E\u0002\u0002\u093b\u093c\u0007J\u0002", - "\u0002\u093c\u01da\u0003\u0002\u0002\u0002\u093d\u093e\u0007U\u0002", - "\u0002\u093e\u093f\u0007M\u0002\u0002\u093f\u0940\u0007K\u0002\u0002", - "\u0940\u0941\u0007R\u0002\u0002\u0941\u0942\u00073\u0002\u0002\u0942", - "\u01dc\u0003\u0002\u0002\u0002\u0943\u0944\u0007P\u0002\u0002\u0944", - "\u0945\u0007G\u0002\u0002\u0945\u0946\u0007Z\u0002\u0002\u0946\u0947", - "\u0007V\u0002\u0002\u0947\u01de\u0003\u0002\u0002\u0002\u0948\u0949", - "\u0007R\u0002\u0002\u0949\u094a\u0007C\u0002\u0002\u094a\u094b\u0007", - "U\u0002\u0002\u094b\u094c\u0007V\u0002\u0002\u094c\u01e0\u0003\u0002", - "\u0002\u0002\u094d\u094e\u0007R\u0002\u0002\u094e\u094f\u0007C\u0002", - "\u0002\u094f\u0950\u0007V\u0002\u0002\u0950\u0951\u0007V\u0002\u0002", - "\u0951\u0952\u0007G\u0002\u0002\u0952\u0953\u0007T\u0002\u0002\u0953", - "\u0954\u0007P\u0002\u0002\u0954\u01e2\u0003\u0002\u0002\u0002\u0955", - "\u0956\u0007Y\u0002\u0002\u0956\u0957\u0007K\u0002\u0002\u0957\u0958", - "\u0007V\u0002\u0002\u0958\u0959\u0007J\u0002\u0002\u0959\u095a\u0007", - "K\u0002\u0002\u095a\u095b\u0007P\u0002\u0002\u095b\u01e4\u0003\u0002", - "\u0002\u0002\u095c\u095d\u0007F\u0002\u0002\u095d\u095e\u0007G\u0002", - "\u0002\u095e\u095f\u0007H\u0002\u0002\u095f\u0960\u0007K\u0002\u0002", - "\u0960\u0961\u0007P\u0002\u0002\u0961\u0962\u0007G\u0002\u0002\u0962", - "\u01e6\u0003\u0002\u0002\u0002\u0963\u0964\u0007D\u0002\u0002\u0964", - "\u0965\u0007K\u0002\u0002\u0965\u0966\u0007I\u0002\u0002\u0966\u0967", - "\u0007K\u0002\u0002\u0967\u0968\u0007P\u0002\u0002\u0968\u0969\u0007", - "V\u0002\u0002\u0969\u096a\u0007a\u0002\u0002\u096a\u096b\u0007N\u0002", - "\u0002\u096b\u096c\u0007K\u0002\u0002\u096c\u096d\u0007V\u0002\u0002", - "\u096d\u096e\u0007G\u0002\u0002\u096e\u096f\u0007T\u0002\u0002\u096f", - "\u0970\u0007C\u0002\u0002\u0970\u0971\u0007N\u0002\u0002\u0971\u01e8", - "\u0003\u0002\u0002\u0002\u0972\u0973\u0007U\u0002\u0002\u0973\u0974", - "\u0007O\u0002\u0002\u0974\u0975\u0007C\u0002\u0002\u0975\u0976\u0007", - "N\u0002\u0002\u0976\u0977\u0007N\u0002\u0002\u0977\u0978\u0007K\u0002", - "\u0002\u0978\u0979\u0007P\u0002\u0002\u0979\u097a\u0007V\u0002\u0002", - "\u097a\u097b\u0007a\u0002\u0002\u097b\u097c\u0007N\u0002\u0002\u097c", - "\u097d\u0007K\u0002\u0002\u097d\u097e\u0007V\u0002\u0002\u097e\u097f", - "\u0007G\u0002\u0002\u097f\u0980\u0007T\u0002\u0002\u0980\u0981\u0007", - "C\u0002\u0002\u0981\u0982\u0007N\u0002\u0002\u0982\u01ea\u0003\u0002", - "\u0002\u0002\u0983\u0984\u0007V\u0002\u0002\u0984\u0985\u0007K\u0002", - "\u0002\u0985\u0986\u0007P\u0002\u0002\u0986\u0987\u0007[\u0002\u0002", - "\u0987\u0988\u0007K\u0002\u0002\u0988\u0989\u0007P\u0002\u0002\u0989", - "\u098a\u0007V\u0002\u0002\u098a\u098b\u0007a\u0002\u0002\u098b\u098c", - "\u0007N\u0002\u0002\u098c\u098d\u0007K\u0002\u0002\u098d\u098e\u0007", - "V\u0002\u0002\u098e\u098f\u0007G\u0002\u0002\u098f\u0990\u0007T\u0002", - "\u0002\u0990\u0991\u0007C\u0002\u0002\u0991\u0992\u0007N\u0002\u0002", - "\u0992\u01ec\u0003\u0002\u0002\u0002\u0993\u0994\u0007K\u0002\u0002", - "\u0994\u0995\u0007P\u0002\u0002\u0995\u0996\u0007V\u0002\u0002\u0996", - "\u0997\u0007G\u0002\u0002\u0997\u0998\u0007I\u0002\u0002\u0998\u0999", - "\u0007G\u0002\u0002\u0999\u099a\u0007T\u0002\u0002\u099a\u099b\u0007", - "a\u0002\u0002\u099b\u099c\u0007X\u0002\u0002\u099c\u099d\u0007C\u0002", - "\u0002\u099d\u099e\u0007N\u0002\u0002\u099e\u099f\u0007W\u0002\u0002", - "\u099f\u09a0\u0007G\u0002\u0002\u09a0\u01ee\u0003\u0002\u0002\u0002", - "\u09a1\u09a2\u0007F\u0002\u0002\u09a2\u09a3\u0007G\u0002\u0002\u09a3", - "\u09a4\u0007E\u0002\u0002\u09a4\u09a5\u0007K\u0002\u0002\u09a5\u09a6", - "\u0007O\u0002\u0002\u09a6\u09a7\u0007C\u0002\u0002\u09a7\u09a8\u0007", - "N\u0002\u0002\u09a8\u09a9\u0007a\u0002\u0002\u09a9\u09aa\u0007X\u0002", - "\u0002\u09aa\u09ab\u0007C\u0002\u0002\u09ab\u09ac\u0007N\u0002\u0002", - "\u09ac\u09ad\u0007W\u0002\u0002\u09ad\u09ae\u0007G\u0002\u0002\u09ae", - "\u01f0\u0003\u0002\u0002\u0002\u09af\u09b0\u0007F\u0002\u0002\u09b0", - "\u09b1\u0007Q\u0002\u0002\u09b1\u09b2\u0007W\u0002\u0002\u09b2\u09b3", - "\u0007D\u0002\u0002\u09b3\u09b4\u0007N\u0002\u0002\u09b4\u09b5\u0007", - "G\u0002\u0002\u09b5\u09b6\u0007a\u0002\u0002\u09b6\u09b7\u0007N\u0002", - "\u0002\u09b7\u09b8\u0007K\u0002\u0002\u09b8\u09b9\u0007V\u0002\u0002", - "\u09b9\u09ba\u0007G\u0002\u0002\u09ba\u09bb\u0007T\u0002\u0002\u09bb", - "\u09bc\u0007C\u0002\u0002\u09bc\u09bd\u0007N\u0002\u0002\u09bd\u01f2", - "\u0003\u0002\u0002\u0002\u09be\u09bf\u0007D\u0002\u0002\u09bf\u09c0", - "\u0007K\u0002\u0002\u09c0\u09c1\u0007I\u0002\u0002\u09c1\u09c2\u0007", - "F\u0002\u0002\u09c2\u09c3\u0007G\u0002\u0002\u09c3\u09c4\u0007E\u0002", - "\u0002\u09c4\u09c5\u0007K\u0002\u0002\u09c5\u09c6\u0007O\u0002\u0002", - "\u09c6\u09c7\u0007C\u0002\u0002\u09c7\u09c8\u0007N\u0002\u0002\u09c8", - "\u09c9\u0007a\u0002\u0002\u09c9\u09ca\u0007N\u0002\u0002\u09ca\u09cb", - "\u0007K\u0002\u0002\u09cb\u09cc\u0007V\u0002\u0002\u09cc\u09cd\u0007", - "G\u0002\u0002\u09cd\u09ce\u0007T\u0002\u0002\u09ce\u09cf\u0007C\u0002", - "\u0002\u09cf\u09d0\u0007N\u0002\u0002\u09d0\u01f4\u0003\u0002\u0002", - "\u0002\u09d1\u09d2\u0007K\u0002\u0002\u09d2\u09d3\u0007F\u0002\u0002", - "\u09d3\u09d4\u0007G\u0002\u0002\u09d4\u09d5\u0007P\u0002\u0002\u09d5", - "\u09d6\u0007V\u0002\u0002\u09d6\u09d7\u0007K\u0002\u0002\u09d7\u09d8", - "\u0007H\u0002\u0002\u09d8\u09d9\u0007K\u0002\u0002\u09d9\u09da\u0007", - "G\u0002\u0002\u09da\u09db\u0007T\u0002\u0002\u09db\u01f6\u0003\u0002", - "\u0002\u0002\u09dc\u09dd\u0007D\u0002\u0002\u09dd\u09de\u0007C\u0002", - "\u0002\u09de\u09df\u0007E\u0002\u0002\u09df\u09e0\u0007M\u0002\u0002", - "\u09e0\u09e1\u0007S\u0002\u0002\u09e1\u09e2\u0007W\u0002\u0002\u09e2", - "\u09e3\u0007Q\u0002\u0002\u09e3\u09e4\u0007V\u0002\u0002\u09e4\u09e5", - "\u0007G\u0002\u0002\u09e5\u09e6\u0007F\u0002\u0002\u09e6\u09e7\u0007", - "a\u0002\u0002\u09e7\u09e8\u0007K\u0002\u0002\u09e8\u09e9\u0007F\u0002", - "\u0002\u09e9\u09ea\u0007G\u0002\u0002\u09ea\u09eb\u0007P\u0002\u0002", - "\u09eb\u09ec\u0007V\u0002\u0002\u09ec\u09ed\u0007K\u0002\u0002\u09ed", - "\u09ee\u0007H\u0002\u0002\u09ee\u09ef\u0007K\u0002\u0002\u09ef\u09f0", - "\u0007G\u0002\u0002\u09f0\u09f1\u0007T\u0002\u0002\u09f1\u01f8\u0003", - "\u0002\u0002\u0002\u09f2\u09f3\u0007U\u0002\u0002\u09f3\u09f4\u0007", - "K\u0002\u0002\u09f4\u09f5\u0007O\u0002\u0002\u09f5\u09f6\u0007R\u0002", - "\u0002\u09f6\u09f7\u0007N\u0002\u0002\u09f7\u09f8\u0007G\u0002\u0002", - "\u09f8\u09f9\u0007a\u0002\u0002\u09f9\u09fa\u0007E\u0002\u0002\u09fa", - "\u09fb\u0007Q\u0002\u0002\u09fb\u09fc\u0007O\u0002\u0002\u09fc\u09fd", - "\u0007O\u0002\u0002\u09fd\u09fe\u0007G\u0002\u0002\u09fe\u09ff\u0007", - "P\u0002\u0002\u09ff\u0a00\u0007V\u0002\u0002\u0a00\u01fa\u0003\u0002", - "\u0002\u0002\u0a01\u0a02\u0007D\u0002\u0002\u0a02\u0a03\u0007T\u0002", - "\u0002\u0a03\u0a04\u0007C\u0002\u0002\u0a04\u0a05\u0007E\u0002\u0002", - "\u0a05\u0a06\u0007M\u0002\u0002\u0a06\u0a07\u0007G\u0002\u0002\u0a07", - "\u0a08\u0007V\u0002\u0002\u0a08\u0a09\u0007G\u0002\u0002\u0a09\u0a0a", - "\u0007F\u0002\u0002\u0a0a\u0a0b\u0007a\u0002\u0002\u0a0b\u0a0c\u0007", - "G\u0002\u0002\u0a0c\u0a0d\u0007O\u0002\u0002\u0a0d\u0a0e\u0007R\u0002", - "\u0002\u0a0e\u0a0f\u0007V\u0002\u0002\u0a0f\u0a10\u0007[\u0002\u0002", - "\u0a10\u0a11\u0007a\u0002\u0002\u0a11\u0a12\u0007E\u0002\u0002\u0a12", - "\u0a13\u0007Q\u0002\u0002\u0a13\u0a14\u0007O\u0002\u0002\u0a14\u0a15", - "\u0007O\u0002\u0002\u0a15\u0a16\u0007G\u0002\u0002\u0a16\u0a17\u0007", - "P\u0002\u0002\u0a17\u0a18\u0007V\u0002\u0002\u0a18\u01fc\u0003\u0002", - "\u0002\u0002\u0a19\u0a1a\u0007D\u0002\u0002\u0a1a\u0a1b\u0007T\u0002", - "\u0002\u0a1b\u0a1c\u0007C\u0002\u0002\u0a1c\u0a1d\u0007E\u0002\u0002", - "\u0a1d\u0a1e\u0007M\u0002\u0002\u0a1e\u0a1f\u0007G\u0002\u0002\u0a1f", - "\u0a20\u0007V\u0002\u0002\u0a20\u0a21\u0007G\u0002\u0002\u0a21\u0a22", - "\u0007F\u0002\u0002\u0a22\u0a23\u0007a\u0002\u0002\u0a23\u0a24\u0007", - "E\u0002\u0002\u0a24\u0a25\u0007Q\u0002\u0002\u0a25\u0a26\u0007O\u0002", - "\u0002\u0a26\u0a27\u0007O\u0002\u0002\u0a27\u0a28\u0007G\u0002\u0002", - "\u0a28\u0a29\u0007P\u0002\u0002\u0a29\u0a2a\u0007V\u0002\u0002\u0a2a", - "\u01fe\u0003\u0002\u0002\u0002\u0a2b\u0a2c\u0007Y\u0002\u0002\u0a2c", - "\u0a2d\u0007U\u0002\u0002\u0a2d\u0200\u0003\u0002\u0002\u0002\u0a2e", - "\u0a2f\u0007W\u0002\u0002\u0a2f\u0a30\u0007P\u0002\u0002\u0a30\u0a31", - "\u0007T\u0002\u0002\u0a31\u0a32\u0007G\u0002\u0002\u0a32\u0a33\u0007", - "E\u0002\u0002\u0a33\u0a34\u0007Q\u0002\u0002\u0a34\u0a35\u0007I\u0002", - "\u0002\u0a35\u0a36\u0007P\u0002\u0002\u0a36\u0a37\u0007K\u0002\u0002", - "\u0a37\u0a38\u0007\\\u0002\u0002\u0a38\u0a39\u0007G\u0002\u0002\u0a39", - "\u0a3a\u0007F\u0002\u0002\u0a3a\u0202\u0003\u0002\u0002\u0002\u0a3b", - "\u0a3d\u0007b\u0002\u0002\u0a3c\u0a3e\n\u0004\u0002\u0002\u0a3d\u0a3c", - "\u0003\u0002\u0002\u0002\u0a3e\u0a3f\u0003\u0002\u0002\u0002\u0a3f\u0a3d", - "\u0003\u0002\u0002\u0002\u0a3f\u0a40\u0003\u0002\u0002\u0002\u0a40\u0a41", - "\u0003\u0002\u0002\u0002\u0a41\u0a42\u0007b\u0002\u0002\u0a42\u0204", - "\u0003\u0002\u0002\u0002\u0a43\u0a45\u0007$\u0002\u0002\u0a44\u0a46", - "\n\u0005\u0002\u0002\u0a45\u0a44\u0003\u0002\u0002\u0002\u0a46\u0a47", - "\u0003\u0002\u0002\u0002\u0a47\u0a45\u0003\u0002\u0002\u0002\u0a47\u0a48", - "\u0003\u0002\u0002\u0002\u0a48\u0a49\u0003\u0002\u0002\u0002\u0a49\u0a4a", - "\u0007$\u0002\u0002\u0a4a\u0206\u0003\u0002\u0002\u0002\u0a4b\u0a4c", - "\u00070\u0002\u0002\u0a4c\u0a4d\u0005\u0283\u0142\u0002\u0a4d\u0208", - "\u0003\u0002\u0002\u0002\u0a4e\u0a4f\u0005\u0283\u0142\u0002\u0a4f\u020a", - "\u0003\u0002\u0002\u0002\u0a50\u0a51\u0007U\u0002\u0002\u0a51\u0a52", - "\u0007[\u0002\u0002\u0a52\u0a53\u0007U\u0002\u0002\u0a53\u0a54\u0007", - "V\u0002\u0002\u0a54\u0a55\u0007G\u0002\u0002\u0a55\u0a56\u0007O\u0002", - "\u0002\u0a56\u020c\u0003\u0002\u0002\u0002\u0a57\u0a58\u0007U\u0002", - "\u0002\u0a58\u0a59\u0007V\u0002\u0002\u0a59\u0a5a\u0007T\u0002\u0002", - "\u0a5a\u0a5b\u0007K\u0002\u0002\u0a5b\u0a5c\u0007P\u0002\u0002\u0a5c", - "\u0a5d\u0007I\u0002\u0002\u0a5d\u020e\u0003\u0002\u0002\u0002\u0a5e", - "\u0a5f\u0007C\u0002\u0002\u0a5f\u0a60\u0007T\u0002\u0002\u0a60\u0a61", - "\u0007T\u0002\u0002\u0a61\u0a62\u0007C\u0002\u0002\u0a62\u0a63\u0007", - "[\u0002\u0002\u0a63\u0210\u0003\u0002\u0002\u0002\u0a64\u0a65\u0007", - "O\u0002\u0002\u0a65\u0a66\u0007C\u0002\u0002\u0a66\u0a67\u0007R\u0002", - "\u0002\u0a67\u0212\u0003\u0002\u0002\u0002\u0a68\u0a69\u0007E\u0002", - "\u0002\u0a69\u0a6a\u0007J\u0002\u0002\u0a6a\u0a6b\u0007C\u0002\u0002", - "\u0a6b\u0a6c\u0007T\u0002\u0002\u0a6c\u0214\u0003\u0002\u0002\u0002", - "\u0a6d\u0a6e\u0007X\u0002\u0002\u0a6e\u0a6f\u0007C\u0002\u0002\u0a6f", - "\u0a70\u0007T\u0002\u0002\u0a70\u0a71\u0007E\u0002\u0002\u0a71\u0a72", - "\u0007J\u0002\u0002\u0a72\u0a73\u0007C\u0002\u0002\u0a73\u0a74\u0007", - "T\u0002\u0002\u0a74\u0216\u0003\u0002\u0002\u0002\u0a75\u0a76\u0007", - "D\u0002\u0002\u0a76\u0a77\u0007K\u0002\u0002\u0a77\u0a78\u0007P\u0002", - "\u0002\u0a78\u0a79\u0007C\u0002\u0002\u0a79\u0a7a\u0007T\u0002\u0002", - "\u0a7a\u0a7b\u0007[\u0002\u0002\u0a7b\u0218\u0003\u0002\u0002\u0002", - "\u0a7c\u0a7d\u0007X\u0002\u0002\u0a7d\u0a7e\u0007C\u0002\u0002\u0a7e", - "\u0a7f\u0007T\u0002\u0002\u0a7f\u0a80\u0007D\u0002\u0002\u0a80\u0a81", - "\u0007K\u0002\u0002\u0a81\u0a82\u0007P\u0002\u0002\u0a82\u0a83\u0007", - "C\u0002\u0002\u0a83\u0a84\u0007T\u0002\u0002\u0a84\u0a85\u0007[\u0002", - "\u0002\u0a85\u021a\u0003\u0002\u0002\u0002\u0a86\u0a87\u0007D\u0002", - "\u0002\u0a87\u0a88\u0007[\u0002\u0002\u0a88\u0a89\u0007V\u0002\u0002", - "\u0a89\u0a8a\u0007G\u0002\u0002\u0a8a\u0a8b\u0007U\u0002\u0002\u0a8b", - "\u021c\u0003\u0002\u0002\u0002\u0a8c\u0a8d\u0007F\u0002\u0002\u0a8d", - "\u0a8e\u0007G\u0002\u0002\u0a8e\u0a8f\u0007E\u0002\u0002\u0a8f\u0a90", - "\u0007K\u0002\u0002\u0a90\u0a91\u0007O\u0002\u0002\u0a91\u0a92\u0007", - "C\u0002\u0002\u0a92\u0a93\u0007N\u0002\u0002\u0a93\u021e\u0003\u0002", - "\u0002\u0002\u0a94\u0a95\u0007V\u0002\u0002\u0a95\u0a96\u0007K\u0002", - "\u0002\u0a96\u0a97\u0007P\u0002\u0002\u0a97\u0a98\u0007[\u0002\u0002", - "\u0a98\u0a99\u0007K\u0002\u0002\u0a99\u0a9a\u0007P\u0002\u0002\u0a9a", - "\u0a9b\u0007V\u0002\u0002\u0a9b\u0220\u0003\u0002\u0002\u0002\u0a9c", - "\u0a9d\u0007U\u0002\u0002\u0a9d\u0a9e\u0007O\u0002\u0002\u0a9e\u0a9f", - "\u0007C\u0002\u0002\u0a9f\u0aa0\u0007N\u0002\u0002\u0aa0\u0aa1\u0007", - "N\u0002\u0002\u0aa1\u0aa2\u0007K\u0002\u0002\u0aa2\u0aa3\u0007P\u0002", - "\u0002\u0aa3\u0aa4\u0007V\u0002\u0002\u0aa4\u0222\u0003\u0002\u0002", - "\u0002\u0aa5\u0aa6\u0007K\u0002\u0002\u0aa6\u0aa7\u0007P\u0002\u0002", - "\u0aa7\u0aa8\u0007V\u0002\u0002\u0aa8\u0224\u0003\u0002\u0002\u0002", - "\u0aa9\u0aaa\u0007D\u0002\u0002\u0aaa\u0aab\u0007K\u0002\u0002\u0aab", - "\u0aac\u0007I\u0002\u0002\u0aac\u0aad\u0007K\u0002\u0002\u0aad\u0aae", - "\u0007P\u0002\u0002\u0aae\u0aaf\u0007V\u0002\u0002\u0aaf\u0226\u0003", - "\u0002\u0002\u0002\u0ab0\u0ab1\u0007H\u0002\u0002\u0ab1\u0ab2\u0007", - "N\u0002\u0002\u0ab2\u0ab3\u0007Q\u0002\u0002\u0ab3\u0ab4\u0007C\u0002", - "\u0002\u0ab4\u0ab5\u0007V\u0002\u0002\u0ab5\u0228\u0003\u0002\u0002", - "\u0002\u0ab6\u0ab7\u0007F\u0002\u0002\u0ab7\u0ab8\u0007Q\u0002\u0002", - "\u0ab8\u0ab9\u0007W\u0002\u0002\u0ab9\u0aba\u0007D\u0002\u0002\u0aba", - "\u0abb\u0007N\u0002\u0002\u0abb\u0abc\u0007G\u0002\u0002\u0abc\u022a", - "\u0003\u0002\u0002\u0002\u0abd\u0abe\u0007F\u0002\u0002\u0abe\u0abf", - "\u0007C\u0002\u0002\u0abf\u0ac0\u0007V\u0002\u0002\u0ac0\u0ac1\u0007", - "G\u0002\u0002\u0ac1\u022c\u0003\u0002\u0002\u0002\u0ac2\u0ac3\u0007", - "V\u0002\u0002\u0ac3\u0ac4\u0007K\u0002\u0002\u0ac4\u0ac5\u0007O\u0002", - "\u0002\u0ac5\u0ac6\u0007G\u0002\u0002\u0ac6\u022e\u0003\u0002\u0002", - "\u0002\u0ac7\u0ac8\u0007V\u0002\u0002\u0ac8\u0ac9\u0007K\u0002\u0002", - "\u0ac9\u0aca\u0007O\u0002\u0002\u0aca\u0acb\u0007G\u0002\u0002\u0acb", - "\u0acc\u0007U\u0002\u0002\u0acc\u0acd\u0007V\u0002\u0002\u0acd\u0ace", - "\u0007C\u0002\u0002\u0ace\u0acf\u0007O\u0002\u0002\u0acf\u0ad0\u0007", - "R\u0002\u0002\u0ad0\u0230\u0003\u0002\u0002\u0002\u0ad1\u0ad2\u0007", - "O\u0002\u0002\u0ad2\u0ad3\u0007W\u0002\u0002\u0ad3\u0ad4\u0007N\u0002", - "\u0002\u0ad4\u0ad5\u0007V\u0002\u0002\u0ad5\u0ad6\u0007K\u0002\u0002", - "\u0ad6\u0ad7\u0007U\u0002\u0002\u0ad7\u0ad8\u0007G\u0002\u0002\u0ad8", - "\u0ad9\u0007V\u0002\u0002\u0ad9\u0232\u0003\u0002\u0002\u0002\u0ada", - "\u0adb\u0007D\u0002\u0002\u0adb\u0adc\u0007Q\u0002\u0002\u0adc\u0add", - "\u0007Q\u0002\u0002\u0add\u0ade\u0007N\u0002\u0002\u0ade\u0adf\u0007", - "G\u0002\u0002\u0adf\u0ae0\u0007C\u0002\u0002\u0ae0\u0ae1\u0007P\u0002", - "\u0002\u0ae1\u0234\u0003\u0002\u0002\u0002\u0ae2\u0ae3\u0007T\u0002", - "\u0002\u0ae3\u0ae4\u0007C\u0002\u0002\u0ae4\u0ae5\u0007Y\u0002\u0002", - "\u0ae5\u0236\u0003\u0002\u0002\u0002\u0ae6\u0ae7\u0007T\u0002\u0002", - "\u0ae7\u0ae8\u0007Q\u0002\u0002\u0ae8\u0ae9\u0007Y\u0002\u0002\u0ae9", - "\u0238\u0003\u0002\u0002\u0002\u0aea\u0aeb\u0007P\u0002\u0002\u0aeb", - "\u0aec\u0007W\u0002\u0002\u0aec\u0aed\u0007N\u0002\u0002\u0aed\u0aee", - "\u0007N\u0002\u0002\u0aee\u023a\u0003\u0002\u0002\u0002\u0aef\u0af0", - "\u0007?\u0002\u0002\u0af0\u023c\u0003\u0002\u0002\u0002\u0af1\u0af2", - "\u0007@\u0002\u0002\u0af2\u023e\u0003\u0002\u0002\u0002\u0af3\u0af4", - "\u0007>\u0002\u0002\u0af4\u0240\u0003\u0002\u0002\u0002\u0af5\u0af6", - "\u0007#\u0002\u0002\u0af6\u0242\u0003\u0002\u0002\u0002\u0af7\u0af8", - "\u0007\u0080\u0002\u0002\u0af8\u0244\u0003\u0002\u0002\u0002\u0af9\u0afa", - "\u0007~\u0002\u0002\u0afa\u0246\u0003\u0002\u0002\u0002\u0afb\u0afc", - "\u0007(\u0002\u0002\u0afc\u0248\u0003\u0002\u0002\u0002\u0afd\u0afe", - "\u0007`\u0002\u0002\u0afe\u024a\u0003\u0002\u0002\u0002\u0aff\u0b00", - "\u00070\u0002\u0002\u0b00\u024c\u0003\u0002\u0002\u0002\u0b01\u0b02", - "\u0007]\u0002\u0002\u0b02\u024e\u0003\u0002\u0002\u0002\u0b03\u0b04", - "\u0007_\u0002\u0002\u0b04\u0250\u0003\u0002\u0002\u0002\u0b05\u0b06", - "\u0007*\u0002\u0002\u0b06\u0252\u0003\u0002\u0002\u0002\u0b07\u0b08", - "\u0007+\u0002\u0002\u0b08\u0254\u0003\u0002\u0002\u0002\u0b09\u0b0a", - "\u0007.\u0002\u0002\u0b0a\u0256\u0003\u0002\u0002\u0002\u0b0b\u0b0c", - "\u0007=\u0002\u0002\u0b0c\u0258\u0003\u0002\u0002\u0002\u0b0d\u0b0e", - "\u0007B\u0002\u0002\u0b0e\u025a\u0003\u0002\u0002\u0002\u0b0f\u0b10", - "\u00072\u0002\u0002\u0b10\u025c\u0003\u0002\u0002\u0002\u0b11\u0b12", - "\u00073\u0002\u0002\u0b12\u025e\u0003\u0002\u0002\u0002\u0b13\u0b14", - "\u00074\u0002\u0002\u0b14\u0260\u0003\u0002\u0002\u0002\u0b15\u0b16", - "\u0007)\u0002\u0002\u0b16\u0262\u0003\u0002\u0002\u0002\u0b17\u0b18", - "\u0007$\u0002\u0002\u0b18\u0264\u0003\u0002\u0002\u0002\u0b19\u0b1a", - "\u0007b\u0002\u0002\u0b1a\u0266\u0003\u0002\u0002\u0002\u0b1b\u0b1c", - "\u0007<\u0002\u0002\u0b1c\u0268\u0003\u0002\u0002\u0002\u0b1d\u0b1e", - "\u0007,\u0002\u0002\u0b1e\u026a\u0003\u0002\u0002\u0002\u0b1f\u0b20", - "\u0007a\u0002\u0002\u0b20\u026c\u0003\u0002\u0002\u0002\u0b21\u0b22", - "\u0007/\u0002\u0002\u0b22\u026e\u0003\u0002\u0002\u0002\u0b23\u0b24", - "\u0007-\u0002\u0002\u0b24\u0270\u0003\u0002\u0002\u0002\u0b25\u0b26", - "\u0007\'\u0002\u0002\u0b26\u0272\u0003\u0002\u0002\u0002\u0b27\u0b28", - "\u0007/\u0002\u0002\u0b28\u0b29\u0007/\u0002\u0002\u0b29\u0274\u0003", - "\u0002\u0002\u0002\u0b2a\u0b2b\u00071\u0002\u0002\u0b2b\u0276\u0003", - "\u0002\u0002\u0002\u0b2c\u0b30\u0005\u0289\u0145\u0002\u0b2d\u0b30\u0005", - "\u028b\u0146\u0002\u0b2e\u0b30\u0005\u028f\u0148\u0002\u0b2f\u0b2c\u0003", - "\u0002\u0002\u0002\u0b2f\u0b2d\u0003\u0002\u0002\u0002\u0b2f\u0b2e\u0003", - "\u0002\u0002\u0002\u0b30\u0278\u0003\u0002\u0002\u0002\u0b31\u0b33\u0005", - "\u0285\u0143\u0002\u0b32\u0b31\u0003\u0002\u0002\u0002\u0b33\u0b34\u0003", - "\u0002\u0002\u0002\u0b34\u0b32\u0003\u0002\u0002\u0002\u0b34\u0b35\u0003", - "\u0002\u0002\u0002\u0b35\u027a\u0003\u0002\u0002\u0002\u0b36\u0b38\u0005", - "\u0285\u0143\u0002\u0b37\u0b36\u0003\u0002\u0002\u0002\u0b38\u0b39\u0003", - "\u0002\u0002\u0002\u0b39\u0b37\u0003\u0002\u0002\u0002\u0b39\u0b3a\u0003", - "\u0002\u0002\u0002\u0b3a\u0b3c\u0003\u0002\u0002\u0002\u0b3b\u0b37\u0003", - "\u0002\u0002\u0002\u0b3b\u0b3c\u0003\u0002\u0002\u0002\u0b3c\u0b3d\u0003", - "\u0002\u0002\u0002\u0b3d\u0b3f\u00070\u0002\u0002\u0b3e\u0b40\u0005", - "\u0285\u0143\u0002\u0b3f\u0b3e\u0003\u0002\u0002\u0002\u0b40\u0b41\u0003", - "\u0002\u0002\u0002\u0b41\u0b3f\u0003\u0002\u0002\u0002\u0b41\u0b42\u0003", - "\u0002\u0002\u0002\u0b42\u0b62\u0003\u0002\u0002\u0002\u0b43\u0b45\u0005", - "\u0285\u0143\u0002\u0b44\u0b43\u0003\u0002\u0002\u0002\u0b45\u0b46\u0003", - "\u0002\u0002\u0002\u0b46\u0b44\u0003\u0002\u0002\u0002\u0b46\u0b47\u0003", - "\u0002\u0002\u0002\u0b47\u0b48\u0003\u0002\u0002\u0002\u0b48\u0b49\u0007", - "0\u0002\u0002\u0b49\u0b4a\u0005\u0281\u0141\u0002\u0b4a\u0b62\u0003", - "\u0002\u0002\u0002\u0b4b\u0b4d\u0005\u0285\u0143\u0002\u0b4c\u0b4b\u0003", - "\u0002\u0002\u0002\u0b4d\u0b4e\u0003\u0002\u0002\u0002\u0b4e\u0b4c\u0003", - "\u0002\u0002\u0002\u0b4e\u0b4f\u0003\u0002\u0002\u0002\u0b4f\u0b51\u0003", - "\u0002\u0002\u0002\u0b50\u0b4c\u0003\u0002\u0002\u0002\u0b50\u0b51\u0003", - "\u0002\u0002\u0002\u0b51\u0b52\u0003\u0002\u0002\u0002\u0b52\u0b54\u0007", - "0\u0002\u0002\u0b53\u0b55\u0005\u0285\u0143\u0002\u0b54\u0b53\u0003", - "\u0002\u0002\u0002\u0b55\u0b56\u0003\u0002\u0002\u0002\u0b56\u0b54\u0003", - "\u0002\u0002\u0002\u0b56\u0b57\u0003\u0002\u0002\u0002\u0b57\u0b58\u0003", - "\u0002\u0002\u0002\u0b58\u0b59\u0005\u0281\u0141\u0002\u0b59\u0b62\u0003", - "\u0002\u0002\u0002\u0b5a\u0b5c\u0005\u0285\u0143\u0002\u0b5b\u0b5a\u0003", - "\u0002\u0002\u0002\u0b5c\u0b5d\u0003\u0002\u0002\u0002\u0b5d\u0b5b\u0003", - "\u0002\u0002\u0002\u0b5d\u0b5e\u0003\u0002\u0002\u0002\u0b5e\u0b5f\u0003", - "\u0002\u0002\u0002\u0b5f\u0b60\u0005\u0281\u0141\u0002\u0b60\u0b62\u0003", - "\u0002\u0002\u0002\u0b61\u0b3b\u0003\u0002\u0002\u0002\u0b61\u0b44\u0003", - "\u0002\u0002\u0002\u0b61\u0b50\u0003\u0002\u0002\u0002\u0b61\u0b5b\u0003", - "\u0002\u0002\u0002\u0b62\u027c\u0003\u0002\u0002\u0002\u0b63\u0b64\u0005", - "\u028d\u0147\u0002\u0b64\u027e\u0003\u0002\u0002\u0002\u0b65\u0b69\u0005", - "\u0287\u0144\u0002\u0b66\u0b69\u0005\u0285\u0143\u0002\u0b67\u0b69\u0005", - "\u026b\u0136\u0002\u0b68\u0b65\u0003\u0002\u0002\u0002\u0b68\u0b66\u0003", - "\u0002\u0002\u0002\u0b68\u0b67\u0003\u0002\u0002\u0002\u0b69\u0b6a\u0003", - "\u0002\u0002\u0002\u0b6a\u0b68\u0003\u0002\u0002\u0002\u0b6a\u0b6b\u0003", - "\u0002\u0002\u0002\u0b6b\u0280\u0003\u0002\u0002\u0002\u0b6c\u0b6e\u0007", - "G\u0002\u0002\u0b6d\u0b6f\t\u0006\u0002\u0002\u0b6e\u0b6d\u0003\u0002", - "\u0002\u0002\u0b6e\u0b6f\u0003\u0002\u0002\u0002\u0b6f\u0b71\u0003\u0002", - "\u0002\u0002\u0b70\u0b72\u0005\u0285\u0143\u0002\u0b71\u0b70\u0003\u0002", - "\u0002\u0002\u0b72\u0b73\u0003\u0002\u0002\u0002\u0b73\u0b71\u0003\u0002", - "\u0002\u0002\u0b73\u0b74\u0003\u0002\u0002\u0002\u0b74\u0282\u0003\u0002", - "\u0002\u0002\u0b75\u0b77\t\u0007\u0002\u0002\u0b76\u0b75\u0003\u0002", - "\u0002\u0002\u0b77\u0b7a\u0003\u0002\u0002\u0002\u0b78\u0b79\u0003\u0002", - "\u0002\u0002\u0b78\u0b76\u0003\u0002\u0002\u0002\u0b79\u0b7c\u0003\u0002", - "\u0002\u0002\u0b7a\u0b78\u0003\u0002\u0002\u0002\u0b7b\u0b7d\t\b\u0002", - "\u0002\u0b7c\u0b7b\u0003\u0002\u0002\u0002\u0b7d\u0b7e\u0003\u0002\u0002", - "\u0002\u0b7e\u0b7f\u0003\u0002\u0002\u0002\u0b7e\u0b7c\u0003\u0002\u0002", - "\u0002\u0b7f\u0b83\u0003\u0002\u0002\u0002\u0b80\u0b82\t\u0007\u0002", - "\u0002\u0b81\u0b80\u0003\u0002\u0002\u0002\u0b82\u0b85\u0003\u0002\u0002", - "\u0002\u0b83\u0b81\u0003\u0002\u0002\u0002\u0b83\u0b84\u0003\u0002\u0002", - "\u0002\u0b84\u0284\u0003\u0002\u0002\u0002\u0b85\u0b83\u0003\u0002\u0002", - "\u0002\u0b86\u0b87\t\t\u0002\u0002\u0b87\u0286\u0003\u0002\u0002\u0002", - "\u0b88\u0b89\t\n\u0002\u0002\u0b89\u0288\u0003\u0002\u0002\u0002\u0b8a", - "\u0b92\u0007$\u0002\u0002\u0b8b\u0b8c\u0007^\u0002\u0002\u0b8c\u0b91", - "\u000b\u0002\u0002\u0002\u0b8d\u0b8e\u0007$\u0002\u0002\u0b8e\u0b91", - "\u0007$\u0002\u0002\u0b8f\u0b91\n\u000b\u0002\u0002\u0b90\u0b8b\u0003", - "\u0002\u0002\u0002\u0b90\u0b8d\u0003\u0002\u0002\u0002\u0b90\u0b8f\u0003", - "\u0002\u0002\u0002\u0b91\u0b94\u0003\u0002\u0002\u0002\u0b92\u0b90\u0003", - "\u0002\u0002\u0002\u0b92\u0b93\u0003\u0002\u0002\u0002\u0b93\u0b95\u0003", - "\u0002\u0002\u0002\u0b94\u0b92\u0003\u0002\u0002\u0002\u0b95\u0b96\u0007", - "$\u0002\u0002\u0b96\u028a\u0003\u0002\u0002\u0002\u0b97\u0b9f\u0007", - ")\u0002\u0002\u0b98\u0b99\u0007^\u0002\u0002\u0b99\u0b9e\u000b\u0002", - "\u0002\u0002\u0b9a\u0b9b\u0007)\u0002\u0002\u0b9b\u0b9e\u0007)\u0002", - "\u0002\u0b9c\u0b9e\n\f\u0002\u0002\u0b9d\u0b98\u0003\u0002\u0002\u0002", - "\u0b9d\u0b9a\u0003\u0002\u0002\u0002\u0b9d\u0b9c\u0003\u0002\u0002\u0002", - "\u0b9e\u0ba1\u0003\u0002\u0002\u0002\u0b9f\u0b9d\u0003\u0002\u0002\u0002", - "\u0b9f\u0ba0\u0003\u0002\u0002\u0002\u0ba0\u0ba2\u0003\u0002\u0002\u0002", - "\u0ba1\u0b9f\u0003\u0002\u0002\u0002\u0ba2\u0ba3\u0007)\u0002\u0002", - "\u0ba3\u028c\u0003\u0002\u0002\u0002\u0ba4\u0ba5\u0007D\u0002\u0002", - "\u0ba5\u0ba7\u0007)\u0002\u0002\u0ba6\u0ba8\t\r\u0002\u0002\u0ba7\u0ba6", - "\u0003\u0002\u0002\u0002\u0ba8\u0ba9\u0003\u0002\u0002\u0002\u0ba9\u0ba7", - "\u0003\u0002\u0002\u0002\u0ba9\u0baa\u0003\u0002\u0002\u0002\u0baa\u0bab", - "\u0003\u0002\u0002\u0002\u0bab\u0bac\u0007)\u0002\u0002\u0bac\u028e", - "\u0003\u0002\u0002\u0002\u0bad\u0bb5\u0007b\u0002\u0002\u0bae\u0baf", - "\u0007^\u0002\u0002\u0baf\u0bb4\u000b\u0002\u0002\u0002\u0bb0\u0bb1", - "\u0007b\u0002\u0002\u0bb1\u0bb4\u0007b\u0002\u0002\u0bb2\u0bb4\n\u000e", - "\u0002\u0002\u0bb3\u0bae\u0003\u0002\u0002\u0002\u0bb3\u0bb0\u0003\u0002", - "\u0002\u0002\u0bb3\u0bb2\u0003\u0002\u0002\u0002\u0bb4\u0bb7\u0003\u0002", - "\u0002\u0002\u0bb5\u0bb3\u0003\u0002\u0002\u0002\u0bb5\u0bb6\u0003\u0002", - "\u0002\u0002\u0bb6\u0bb8\u0003\u0002\u0002\u0002\u0bb7\u0bb5\u0003\u0002", - "\u0002\u0002\u0bb8\u0bb9\u0007b\u0002\u0002\u0bb9\u0290\u0003\u0002", - "\u0002\u0002(\u0002\u0294\u029f\u02ac\u02b8\u02bd\u02c1\u02c5\u02cb", - "\u02cf\u02d1\u0a3f\u0a47\u0b2f\u0b34\u0b39\u0b3b\u0b41\u0b46\u0b4e\u0b50", - "\u0b56\u0b5d\u0b61\u0b68\u0b6a\u0b6e\u0b73\u0b78\u0b7e\u0b83\u0b90\u0b92", - "\u0b9d\u0b9f\u0ba9\u0bb3\u0bb5\u0004\u0002\u0003\u0002\u0002\u0004\u0002"].join(""); + "\u0734\u0735\u0007G\u0002\u0002\u0735\u0736\u0007U\u0002\u0002\u0736", + "\u0160\u0003\u0002\u0002\u0002\u0737\u0738\u0007D\u0002\u0002\u0738", + "\u0739\u0007W\u0002\u0002\u0739\u073a\u0007E\u0002\u0002\u073a\u073b", + "\u0007M\u0002\u0002\u073b\u073c\u0007G\u0002\u0002\u073c\u073d\u0007", + "V\u0002\u0002\u073d\u073e\u0007U\u0002\u0002\u073e\u0162\u0003\u0002", + "\u0002\u0002\u073f\u0740\u0007U\u0002\u0002\u0740\u0741\u0007M\u0002", + "\u0002\u0741\u0742\u0007G\u0002\u0002\u0742\u0743\u0007Y\u0002\u0002", + "\u0743\u0744\u0007G\u0002\u0002\u0744\u0745\u0007F\u0002\u0002\u0745", + "\u0164\u0003\u0002\u0002\u0002\u0746\u0747\u0007U\u0002\u0002\u0747", + "\u0748\u0007V\u0002\u0002\u0748\u0749\u0007Q\u0002\u0002\u0749\u074a", + "\u0007T\u0002\u0002\u074a\u074b\u0007G\u0002\u0002\u074b\u074c\u0007", + "F\u0002\u0002\u074c\u0166\u0003\u0002\u0002\u0002\u074d\u074e\u0007", + "F\u0002\u0002\u074e\u074f\u0007K\u0002\u0002\u074f\u0750\u0007T\u0002", + "\u0002\u0750\u0751\u0007G\u0002\u0002\u0751\u0752\u0007E\u0002\u0002", + "\u0752\u0753\u0007V\u0002\u0002\u0753\u0754\u0007Q\u0002\u0002\u0754", + "\u0755\u0007T\u0002\u0002\u0755\u0756\u0007K\u0002\u0002\u0756\u0757", + "\u0007G\u0002\u0002\u0757\u0758\u0007U\u0002\u0002\u0758\u0168\u0003", + "\u0002\u0002\u0002\u0759\u075a\u0007N\u0002\u0002\u075a\u075b\u0007", + "Q\u0002\u0002\u075b\u075c\u0007E\u0002\u0002\u075c\u075d\u0007C\u0002", + "\u0002\u075d\u075e\u0007V\u0002\u0002\u075e\u075f\u0007K\u0002\u0002", + "\u075f\u0760\u0007Q\u0002\u0002\u0760\u0761\u0007P\u0002\u0002\u0761", + "\u016a\u0003\u0002\u0002\u0002\u0762\u0763\u0007G\u0002\u0002\u0763", + "\u0764\u0007Z\u0002\u0002\u0764\u0765\u0007E\u0002\u0002\u0765\u0766", + "\u0007J\u0002\u0002\u0766\u0767\u0007C\u0002\u0002\u0767\u0768\u0007", + "P\u0002\u0002\u0768\u0769\u0007I\u0002\u0002\u0769\u076a\u0007G\u0002", + "\u0002\u076a\u016c\u0003\u0002\u0002\u0002\u076b\u076c\u0007C\u0002", + "\u0002\u076c\u076d\u0007T\u0002\u0002\u076d\u076e\u0007E\u0002\u0002", + "\u076e\u076f\u0007J\u0002\u0002\u076f\u0770\u0007K\u0002\u0002\u0770", + "\u0771\u0007X\u0002\u0002\u0771\u0772\u0007G\u0002\u0002\u0772\u016e", + "\u0003\u0002\u0002\u0002\u0773\u0774\u0007W\u0002\u0002\u0774\u0775", + "\u0007P\u0002\u0002\u0775\u0776\u0007C\u0002\u0002\u0776\u0777\u0007", + "T\u0002\u0002\u0777\u0778\u0007E\u0002\u0002\u0778\u0779\u0007J\u0002", + "\u0002\u0779\u077a\u0007K\u0002\u0002\u077a\u077b\u0007X\u0002\u0002", + "\u077b\u077c\u0007G\u0002\u0002\u077c\u0170\u0003\u0002\u0002\u0002", + "\u077d\u077e\u0007H\u0002\u0002\u077e\u077f\u0007K\u0002\u0002\u077f", + "\u0780\u0007N\u0002\u0002\u0780\u0781\u0007G\u0002\u0002\u0781\u0782", + "\u0007H\u0002\u0002\u0782\u0783\u0007Q\u0002\u0002\u0783\u0784\u0007", + "T\u0002\u0002\u0784\u0785\u0007O\u0002\u0002\u0785\u0786\u0007C\u0002", + "\u0002\u0786\u0787\u0007V\u0002\u0002\u0787\u0172\u0003\u0002\u0002", + "\u0002\u0788\u0789\u0007V\u0002\u0002\u0789\u078a\u0007Q\u0002\u0002", + "\u078a\u078b\u0007W\u0002\u0002\u078b\u078c\u0007E\u0002\u0002\u078c", + "\u078d\u0007J\u0002\u0002\u078d\u0174\u0003\u0002\u0002\u0002\u078e", + "\u078f\u0007E\u0002\u0002\u078f\u0790\u0007Q\u0002\u0002\u0790\u0791", + "\u0007O\u0002\u0002\u0791\u0792\u0007R\u0002\u0002\u0792\u0793\u0007", + "C\u0002\u0002\u0793\u0794\u0007E\u0002\u0002\u0794\u0795\u0007V\u0002", + "\u0002\u0795\u0176\u0003\u0002\u0002\u0002\u0796\u0797\u0007E\u0002", + "\u0002\u0797\u0798\u0007Q\u0002\u0002\u0798\u0799\u0007P\u0002\u0002", + "\u0799\u079a\u0007E\u0002\u0002\u079a\u079b\u0007C\u0002\u0002\u079b", + "\u079c\u0007V\u0002\u0002\u079c\u079d\u0007G\u0002\u0002\u079d\u079e", + "\u0007P\u0002\u0002\u079e\u079f\u0007C\u0002\u0002\u079f\u07a0\u0007", + "V\u0002\u0002\u07a0\u07a1\u0007G\u0002\u0002\u07a1\u0178\u0003\u0002", + "\u0002\u0002\u07a2\u07a3\u0007E\u0002\u0002\u07a3\u07a4\u0007J\u0002", + "\u0002\u07a4\u07a5\u0007C\u0002\u0002\u07a5\u07a6\u0007P\u0002\u0002", + "\u07a6\u07a7\u0007I\u0002\u0002\u07a7\u07a8\u0007G\u0002\u0002\u07a8", + "\u017a\u0003\u0002\u0002\u0002\u07a9\u07aa\u0007E\u0002\u0002\u07aa", + "\u07ab\u0007C\u0002\u0002\u07ab\u07ac\u0007U\u0002\u0002\u07ac\u07ad", + "\u0007E\u0002\u0002\u07ad\u07ae\u0007C\u0002\u0002\u07ae\u07af\u0007", + "F\u0002\u0002\u07af\u07b0\u0007G\u0002\u0002\u07b0\u017c\u0003\u0002", + "\u0002\u0002\u07b1\u07b2\u0007T\u0002\u0002\u07b2\u07b3\u0007G\u0002", + "\u0002\u07b3\u07b4\u0007U\u0002\u0002\u07b4\u07b5\u0007V\u0002\u0002", + "\u07b5\u07b6\u0007T\u0002\u0002\u07b6\u07b7\u0007K\u0002\u0002\u07b7", + "\u07b8\u0007E\u0002\u0002\u07b8\u07b9\u0007V\u0002\u0002\u07b9\u017e", + "\u0003\u0002\u0002\u0002\u07ba\u07bb\u0007E\u0002\u0002\u07bb\u07bc", + "\u0007N\u0002\u0002\u07bc\u07bd\u0007W\u0002\u0002\u07bd\u07be\u0007", + "U\u0002\u0002\u07be\u07bf\u0007V\u0002\u0002\u07bf\u07c0\u0007G\u0002", + "\u0002\u07c0\u07c1\u0007T\u0002\u0002\u07c1\u07c2\u0007G\u0002\u0002", + "\u07c2\u07c3\u0007F\u0002\u0002\u07c3\u0180\u0003\u0002\u0002\u0002", + "\u07c4\u07c5\u0007U\u0002\u0002\u07c5\u07c6\u0007Q\u0002\u0002\u07c6", + "\u07c7\u0007T\u0002\u0002\u07c7\u07c8\u0007V\u0002\u0002\u07c8\u07c9", + "\u0007G\u0002\u0002\u07c9\u07ca\u0007F\u0002\u0002\u07ca\u0182\u0003", + "\u0002\u0002\u0002\u07cb\u07cc\u0007R\u0002\u0002\u07cc\u07cd\u0007", + "W\u0002\u0002\u07cd\u07ce\u0007T\u0002\u0002\u07ce\u07cf\u0007I\u0002", + "\u0002\u07cf\u07d0\u0007G\u0002\u0002\u07d0\u0184\u0003\u0002\u0002", + "\u0002\u07d1\u07d2\u0007K\u0002\u0002\u07d2\u07d3\u0007P\u0002\u0002", + "\u07d3\u07d4\u0007R\u0002\u0002\u07d4\u07d5\u0007W\u0002\u0002\u07d5", + "\u07d6\u0007V\u0002\u0002\u07d6\u07d7\u0007H\u0002\u0002\u07d7\u07d8", + "\u0007Q\u0002\u0002\u07d8\u07d9\u0007T\u0002\u0002\u07d9\u07da\u0007", + "O\u0002\u0002\u07da\u07db\u0007C\u0002\u0002\u07db\u07dc\u0007V\u0002", + "\u0002\u07dc\u0186\u0003\u0002\u0002\u0002\u07dd\u07de\u0007Q\u0002", + "\u0002\u07de\u07df\u0007W\u0002\u0002\u07df\u07e0\u0007V\u0002\u0002", + "\u07e0\u07e1\u0007R\u0002\u0002\u07e1\u07e2\u0007W\u0002\u0002\u07e2", + "\u07e3\u0007V\u0002\u0002\u07e3\u07e4\u0007H\u0002\u0002\u07e4\u07e5", + "\u0007Q\u0002\u0002\u07e5\u07e6\u0007T\u0002\u0002\u07e6\u07e7\u0007", + "O\u0002\u0002\u07e7\u07e8\u0007C\u0002\u0002\u07e8\u07e9\u0007V\u0002", + "\u0002\u07e9\u0188\u0003\u0002\u0002\u0002\u07ea\u07eb\u0007F\u0002", + "\u0002\u07eb\u07ec\u0007C\u0002\u0002\u07ec\u07ed\u0007V\u0002\u0002", + "\u07ed\u07ee\u0007C\u0002\u0002\u07ee\u07ef\u0007D\u0002\u0002\u07ef", + "\u07f0\u0007C\u0002\u0002\u07f0\u07f1\u0007U\u0002\u0002\u07f1\u07f2", + "\u0007G\u0002\u0002\u07f2\u018a\u0003\u0002\u0002\u0002\u07f3\u07f4", + "\u0007F\u0002\u0002\u07f4\u07f5\u0007C\u0002\u0002\u07f5\u07f6\u0007", + "V\u0002\u0002\u07f6\u07f7\u0007C\u0002\u0002\u07f7\u07f8\u0007D\u0002", + "\u0002\u07f8\u07f9\u0007C\u0002\u0002\u07f9\u07fa\u0007U\u0002\u0002", + "\u07fa\u07fb\u0007G\u0002\u0002\u07fb\u07fc\u0007U\u0002\u0002\u07fc", + "\u018c\u0003\u0002\u0002\u0002\u07fd\u07fe\u0007F\u0002\u0002\u07fe", + "\u07ff\u0007H\u0002\u0002\u07ff\u0800\u0007U\u0002\u0002\u0800\u018e", + "\u0003\u0002\u0002\u0002\u0801\u0802\u0007V\u0002\u0002\u0802\u0803", + "\u0007T\u0002\u0002\u0803\u0804\u0007W\u0002\u0002\u0804\u0805\u0007", + "P\u0002\u0002\u0805\u0806\u0007E\u0002\u0002\u0806\u0807\u0007C\u0002", + "\u0002\u0807\u0808\u0007V\u0002\u0002\u0808\u0809\u0007G\u0002\u0002", + "\u0809\u0190\u0003\u0002\u0002\u0002\u080a\u080b\u0007C\u0002\u0002", + "\u080b\u080c\u0007P\u0002\u0002\u080c\u080d\u0007C\u0002\u0002\u080d", + "\u080e\u0007N\u0002\u0002\u080e\u080f\u0007[\u0002\u0002\u080f\u0810", + "\u0007\\\u0002\u0002\u0810\u0811\u0007G\u0002\u0002\u0811\u0192\u0003", + "\u0002\u0002\u0002\u0812\u0813\u0007E\u0002\u0002\u0813\u0814\u0007", + "Q\u0002\u0002\u0814\u0815\u0007O\u0002\u0002\u0815\u0816\u0007R\u0002", + "\u0002\u0816\u0817\u0007W\u0002\u0002\u0817\u0818\u0007V\u0002\u0002", + "\u0818\u0819\u0007G\u0002\u0002\u0819\u0194\u0003\u0002\u0002\u0002", + "\u081a\u081b\u0007N\u0002\u0002\u081b\u081c\u0007K\u0002\u0002\u081c", + "\u081d\u0007U\u0002\u0002\u081d\u081e\u0007V\u0002\u0002\u081e\u0196", + "\u0003\u0002\u0002\u0002\u081f\u0820\u0007U\u0002\u0002\u0820\u0821", + "\u0007V\u0002\u0002\u0821\u0822\u0007C\u0002\u0002\u0822\u0823\u0007", + "V\u0002\u0002\u0823\u0824\u0007K\u0002\u0002\u0824\u0825\u0007U\u0002", + "\u0002\u0825\u0826\u0007V\u0002\u0002\u0826\u0827\u0007K\u0002\u0002", + "\u0827\u0828\u0007E\u0002\u0002\u0828\u0829\u0007U\u0002\u0002\u0829", + "\u0198\u0003\u0002\u0002\u0002\u082a\u082b\u0007R\u0002\u0002\u082b", + "\u082c\u0007C\u0002\u0002\u082c\u082d\u0007T\u0002\u0002\u082d\u082e", + "\u0007V\u0002\u0002\u082e\u082f\u0007K\u0002\u0002\u082f\u0830\u0007", + "V\u0002\u0002\u0830\u0831\u0007K\u0002\u0002\u0831\u0832\u0007Q\u0002", + "\u0002\u0832\u0833\u0007P\u0002\u0002\u0833\u0834\u0007G\u0002\u0002", + "\u0834\u0835\u0007F\u0002\u0002\u0835\u019a\u0003\u0002\u0002\u0002", + "\u0836\u0837\u0007G\u0002\u0002\u0837\u0838\u0007Z\u0002\u0002\u0838", + "\u0839\u0007V\u0002\u0002\u0839\u083a\u0007G\u0002\u0002\u083a\u083b", + "\u0007T\u0002\u0002\u083b\u083c\u0007P\u0002\u0002\u083c\u083d\u0007", + "C\u0002\u0002\u083d\u083e\u0007N\u0002\u0002\u083e\u019c\u0003\u0002", + "\u0002\u0002\u083f\u0840\u0007F\u0002\u0002\u0840\u0841\u0007G\u0002", + "\u0002\u0841\u0842\u0007H\u0002\u0002\u0842\u0843\u0007K\u0002\u0002", + "\u0843\u0844\u0007P\u0002\u0002\u0844\u0845\u0007G\u0002\u0002\u0845", + "\u0846\u0007F\u0002\u0002\u0846\u019e\u0003\u0002\u0002\u0002\u0847", + "\u0848\u0007T\u0002\u0002\u0848\u0849\u0007G\u0002\u0002\u0849\u084a", + "\u0007X\u0002\u0002\u084a\u084b\u0007Q\u0002\u0002\u084b\u084c\u0007", + "M\u0002\u0002\u084c\u084d\u0007G\u0002\u0002\u084d\u01a0\u0003\u0002", + "\u0002\u0002\u084e\u084f\u0007I\u0002\u0002\u084f\u0850\u0007T\u0002", + "\u0002\u0850\u0851\u0007C\u0002\u0002\u0851\u0852\u0007P\u0002\u0002", + "\u0852\u0853\u0007V\u0002\u0002\u0853\u01a2\u0003\u0002\u0002\u0002", + "\u0854\u0855\u0007N\u0002\u0002\u0855\u0856\u0007Q\u0002\u0002\u0856", + "\u0857\u0007E\u0002\u0002\u0857\u0858\u0007M\u0002\u0002\u0858\u01a4", + "\u0003\u0002\u0002\u0002\u0859\u085a\u0007W\u0002\u0002\u085a\u085b", + "\u0007P\u0002\u0002\u085b\u085c\u0007N\u0002\u0002\u085c\u085d\u0007", + "Q\u0002\u0002\u085d\u085e\u0007E\u0002\u0002\u085e\u085f\u0007M\u0002", + "\u0002\u085f\u01a6\u0003\u0002\u0002\u0002\u0860\u0861\u0007O\u0002", + "\u0002\u0861\u0862\u0007U\u0002\u0002\u0862\u0863\u0007E\u0002\u0002", + "\u0863\u0864\u0007M\u0002\u0002\u0864\u01a8\u0003\u0002\u0002\u0002", + "\u0865\u0866\u0007T\u0002\u0002\u0866\u0867\u0007G\u0002\u0002\u0867", + "\u0868\u0007R\u0002\u0002\u0868\u0869\u0007C\u0002\u0002\u0869\u086a", + "\u0007K\u0002\u0002\u086a\u086b\u0007T\u0002\u0002\u086b\u01aa\u0003", + "\u0002\u0002\u0002\u086c\u086d\u0007T\u0002\u0002\u086d\u086e\u0007", + "G\u0002\u0002\u086e\u086f\u0007E\u0002\u0002\u086f\u0870\u0007Q\u0002", + "\u0002\u0870\u0871\u0007X\u0002\u0002\u0871\u0872\u0007G\u0002\u0002", + "\u0872\u0873\u0007T\u0002\u0002\u0873\u01ac\u0003\u0002\u0002\u0002", + "\u0874\u0875\u0007G\u0002\u0002\u0875\u0876\u0007Z\u0002\u0002\u0876", + "\u0877\u0007R\u0002\u0002\u0877\u0878\u0007Q\u0002\u0002\u0878\u0879", + "\u0007T\u0002\u0002\u0879\u087a\u0007V\u0002\u0002\u087a\u01ae\u0003", + "\u0002\u0002\u0002\u087b\u087c\u0007K\u0002\u0002\u087c\u087d\u0007", + "O\u0002\u0002\u087d\u087e\u0007R\u0002\u0002\u087e\u087f\u0007Q\u0002", + "\u0002\u087f\u0880\u0007T\u0002\u0002\u0880\u0881\u0007V\u0002\u0002", + "\u0881\u01b0\u0003\u0002\u0002\u0002\u0882\u0883\u0007N\u0002\u0002", + "\u0883\u0884\u0007Q\u0002\u0002\u0884\u0885\u0007C\u0002\u0002\u0885", + "\u0886\u0007F\u0002\u0002\u0886\u01b2\u0003\u0002\u0002\u0002\u0887", + "\u0888\u0007T\u0002\u0002\u0888\u0889\u0007Q\u0002\u0002\u0889\u088a", + "\u0007N\u0002\u0002\u088a\u088b\u0007G\u0002\u0002\u088b\u01b4\u0003", + "\u0002\u0002\u0002\u088c\u088d\u0007T\u0002\u0002\u088d\u088e\u0007", + "Q\u0002\u0002\u088e\u088f\u0007N\u0002\u0002\u088f\u0890\u0007G\u0002", + "\u0002\u0890\u0891\u0007U\u0002\u0002\u0891\u01b6\u0003\u0002\u0002", + "\u0002\u0892\u0893\u0007E\u0002\u0002\u0893\u0894\u0007Q\u0002\u0002", + "\u0894\u0895\u0007O\u0002\u0002\u0895\u0896\u0007R\u0002\u0002\u0896", + "\u0897\u0007C\u0002\u0002\u0897\u0898\u0007E\u0002\u0002\u0898\u0899", + "\u0007V\u0002\u0002\u0899\u089a\u0007K\u0002\u0002\u089a\u089b\u0007", + "Q\u0002\u0002\u089b\u089c\u0007P\u0002\u0002\u089c\u089d\u0007U\u0002", + "\u0002\u089d\u01b8\u0003\u0002\u0002\u0002\u089e\u089f\u0007R\u0002", + "\u0002\u089f\u08a0\u0007T\u0002\u0002\u08a0\u08a1\u0007K\u0002\u0002", + "\u08a1\u08a2\u0007P\u0002\u0002\u08a2\u08a3\u0007E\u0002\u0002\u08a3", + "\u08a4\u0007K\u0002\u0002\u08a4\u08a5\u0007R\u0002\u0002\u08a5\u08a6", + "\u0007C\u0002\u0002\u08a6\u08a7\u0007N\u0002\u0002\u08a7\u08a8\u0007", + "U\u0002\u0002\u08a8\u01ba\u0003\u0002\u0002\u0002\u08a9\u08aa\u0007", + "V\u0002\u0002\u08aa\u08ab\u0007T\u0002\u0002\u08ab\u08ac\u0007C\u0002", + "\u0002\u08ac\u08ad\u0007P\u0002\u0002\u08ad\u08ae\u0007U\u0002\u0002", + "\u08ae\u08af\u0007C\u0002\u0002\u08af\u08b0\u0007E\u0002\u0002\u08b0", + "\u08b1\u0007V\u0002\u0002\u08b1\u08b2\u0007K\u0002\u0002\u08b2\u08b3", + "\u0007Q\u0002\u0002\u08b3\u08b4\u0007P\u0002\u0002\u08b4\u08b5\u0007", + "U\u0002\u0002\u08b5\u01bc\u0003\u0002\u0002\u0002\u08b6\u08b7\u0007", + "K\u0002\u0002\u08b7\u08b8\u0007P\u0002\u0002\u08b8\u08b9\u0007F\u0002", + "\u0002\u08b9\u08ba\u0007G\u0002\u0002\u08ba\u08bb\u0007Z\u0002\u0002", + "\u08bb\u01be\u0003\u0002\u0002\u0002\u08bc\u08bd\u0007K\u0002\u0002", + "\u08bd\u08be\u0007P\u0002\u0002\u08be\u08bf\u0007F\u0002\u0002\u08bf", + "\u08c0\u0007G\u0002\u0002\u08c0\u08c1\u0007Z\u0002\u0002\u08c1\u08c2", + "\u0007G\u0002\u0002\u08c2\u08c3\u0007U\u0002\u0002\u08c3\u01c0\u0003", + "\u0002\u0002\u0002\u08c4\u08c5\u0007N\u0002\u0002\u08c5\u08c6\u0007", + "Q\u0002\u0002\u08c6\u08c7\u0007E\u0002\u0002\u08c7\u08c8\u0007M\u0002", + "\u0002\u08c8\u08c9\u0007U\u0002\u0002\u08c9\u01c2\u0003\u0002\u0002", + "\u0002\u08ca\u08cb\u0007Q\u0002\u0002\u08cb\u08cc\u0007R\u0002\u0002", + "\u08cc\u08cd\u0007V\u0002\u0002\u08cd\u08ce\u0007K\u0002\u0002\u08ce", + "\u08cf\u0007Q\u0002\u0002\u08cf\u08d0\u0007P\u0002\u0002\u08d0\u01c4", + "\u0003\u0002\u0002\u0002\u08d1\u08d2\u0007C\u0002\u0002\u08d2\u08d3", + "\u0007P\u0002\u0002\u08d3\u08d4\u0007V\u0002\u0002\u08d4\u08d5\u0007", + "K\u0002\u0002\u08d5\u01c6\u0003\u0002\u0002\u0002\u08d6\u08d7\u0007", + "N\u0002\u0002\u08d7\u08d8\u0007Q\u0002\u0002\u08d8\u08d9\u0007E\u0002", + "\u0002\u08d9\u08da\u0007C\u0002\u0002\u08da\u08db\u0007N\u0002\u0002", + "\u08db\u01c8\u0003\u0002\u0002\u0002\u08dc\u08dd\u0007K\u0002\u0002", + "\u08dd\u08de\u0007P\u0002\u0002\u08de\u08df\u0007R\u0002\u0002\u08df", + "\u08e0\u0007C\u0002\u0002\u08e0\u08e1\u0007V\u0002\u0002\u08e1\u08e2", + "\u0007J\u0002\u0002\u08e2\u01ca\u0003\u0002\u0002\u0002\u08e3\u08e4", + "\u0007Y\u0002\u0002\u08e4\u08e5\u0007C\u0002\u0002\u08e5\u08e6\u0007", + "V\u0002\u0002\u08e6\u08e7\u0007G\u0002\u0002\u08e7\u08e8\u0007T\u0002", + "\u0002\u08e8\u08e9\u0007O\u0002\u0002\u08e9\u08ea\u0007C\u0002\u0002", + "\u08ea\u08eb\u0007T\u0002\u0002\u08eb\u08ec\u0007M\u0002\u0002\u08ec", + "\u01cc\u0003\u0002\u0002\u0002\u08ed\u08ee\u0007W\u0002\u0002\u08ee", + "\u08ef\u0007P\u0002\u0002\u08ef\u08f0\u0007P\u0002\u0002\u08f0\u08f1", + "\u0007G\u0002\u0002\u08f1\u08f2\u0007U\u0002\u0002\u08f2\u08f3\u0007", + "V\u0002\u0002\u08f3\u01ce\u0003\u0002\u0002\u0002\u08f4\u08f5\u0007", + "O\u0002\u0002\u08f5\u08f6\u0007C\u0002\u0002\u08f6\u08f7\u0007V\u0002", + "\u0002\u08f7\u08f8\u0007E\u0002\u0002\u08f8\u08f9\u0007J\u0002\u0002", + "\u08f9\u08fa\u0007a\u0002\u0002\u08fa\u08fb\u0007T\u0002\u0002\u08fb", + "\u08fc\u0007G\u0002\u0002\u08fc\u08fd\u0007E\u0002\u0002\u08fd\u08fe", + "\u0007Q\u0002\u0002\u08fe\u08ff\u0007I\u0002\u0002\u08ff\u0900\u0007", + "P\u0002\u0002\u0900\u0901\u0007K\u0002\u0002\u0901\u0902\u0007\\\u0002", + "\u0002\u0902\u0903\u0007G\u0002\u0002\u0903\u01d0\u0003\u0002\u0002", + "\u0002\u0904\u0905\u0007O\u0002\u0002\u0905\u0906\u0007G\u0002\u0002", + "\u0906\u0907\u0007C\u0002\u0002\u0907\u0908\u0007U\u0002\u0002\u0908", + "\u0909\u0007W\u0002\u0002\u0909\u090a\u0007T\u0002\u0002\u090a\u090b", + "\u0007G\u0002\u0002\u090b\u090c\u0007U\u0002\u0002\u090c\u01d2\u0003", + "\u0002\u0002\u0002\u090d\u090e\u0007Q\u0002\u0002\u090e\u090f\u0007", + "P\u0002\u0002\u090f\u0910\u0007G\u0002\u0002\u0910\u01d4\u0003\u0002", + "\u0002\u0002\u0911\u0912\u0007R\u0002\u0002\u0912\u0913\u0007G\u0002", + "\u0002\u0913\u0914\u0007T\u0002\u0002\u0914\u01d6\u0003\u0002\u0002", + "\u0002\u0915\u0916\u0007O\u0002\u0002\u0916\u0917\u0007C\u0002\u0002", + "\u0917\u0918\u0007V\u0002\u0002\u0918\u0919\u0007E\u0002\u0002\u0919", + "\u091a\u0007J\u0002\u0002\u091a\u01d8\u0003\u0002\u0002\u0002\u091b", + "\u091c\u0007U\u0002\u0002\u091c\u091d\u0007M\u0002\u0002\u091d\u091e", + "\u0007K\u0002\u0002\u091e\u091f\u0007R\u0002\u0002\u091f\u0920\u0007", + "3\u0002\u0002\u0920\u01da\u0003\u0002\u0002\u0002\u0921\u0922\u0007", + "P\u0002\u0002\u0922\u0923\u0007G\u0002\u0002\u0923\u0924\u0007Z\u0002", + "\u0002\u0924\u0925\u0007V\u0002\u0002\u0925\u01dc\u0003\u0002\u0002", + "\u0002\u0926\u0927\u0007R\u0002\u0002\u0927\u0928\u0007C\u0002\u0002", + "\u0928\u0929\u0007U\u0002\u0002\u0929\u092a\u0007V\u0002\u0002\u092a", + "\u01de\u0003\u0002\u0002\u0002\u092b\u092c\u0007R\u0002\u0002\u092c", + "\u092d\u0007C\u0002\u0002\u092d\u092e\u0007V\u0002\u0002\u092e\u092f", + "\u0007V\u0002\u0002\u092f\u0930\u0007G\u0002\u0002\u0930\u0931\u0007", + "T\u0002\u0002\u0931\u0932\u0007P\u0002\u0002\u0932\u01e0\u0003\u0002", + "\u0002\u0002\u0933\u0934\u0007Y\u0002\u0002\u0934\u0935\u0007K\u0002", + "\u0002\u0935\u0936\u0007V\u0002\u0002\u0936\u0937\u0007J\u0002\u0002", + "\u0937\u0938\u0007K\u0002\u0002\u0938\u0939\u0007P\u0002\u0002\u0939", + "\u01e2\u0003\u0002\u0002\u0002\u093a\u093b\u0007F\u0002\u0002\u093b", + "\u093c\u0007G\u0002\u0002\u093c\u093d\u0007H\u0002\u0002\u093d\u093e", + "\u0007K\u0002\u0002\u093e\u093f\u0007P\u0002\u0002\u093f\u0940\u0007", + "G\u0002\u0002\u0940\u01e4\u0003\u0002\u0002\u0002\u0941\u0942\u0007", + "Y\u0002\u0002\u0942\u0943\u0007U\u0002\u0002\u0943\u01e6\u0003\u0002", + "\u0002\u0002\u0944\u0945\u0007U\u0002\u0002\u0945\u0946\u0007[\u0002", + "\u0002\u0946\u0947\u0007U\u0002\u0002\u0947\u0948\u0007V\u0002\u0002", + "\u0948\u0949\u0007G\u0002\u0002\u0949\u094a\u0007O\u0002\u0002\u094a", + "\u01e8\u0003\u0002\u0002\u0002\u094b\u094c\u0007K\u0002\u0002\u094c", + "\u094d\u0007P\u0002\u0002\u094d\u094e\u0007E\u0002\u0002\u094e\u094f", + "\u0007N\u0002\u0002\u094f\u0950\u0007W\u0002\u0002\u0950\u0951\u0007", + "F\u0002\u0002\u0951\u0952\u0007K\u0002\u0002\u0952\u0953\u0007P\u0002", + "\u0002\u0953\u0954\u0007I\u0002\u0002\u0954\u01ea\u0003\u0002\u0002", + "\u0002\u0955\u0956\u0007G\u0002\u0002\u0956\u0957\u0007Z\u0002\u0002", + "\u0957\u0958\u0007E\u0002\u0002\u0958\u0959\u0007N\u0002\u0002\u0959", + "\u095a\u0007W\u0002\u0002\u095a\u095b\u0007F\u0002\u0002\u095b\u095c", + "\u0007K\u0002\u0002\u095c\u095d\u0007P\u0002\u0002\u095d\u095e\u0007", + "I\u0002\u0002\u095e\u01ec\u0003\u0002\u0002\u0002\u095f\u0960\u0007", + "E\u0002\u0002\u0960\u0961\u0007Q\u0002\u0002\u0961\u0962\u0007P\u0002", + "\u0002\u0962\u0963\u0007U\u0002\u0002\u0963\u0964\u0007V\u0002\u0002", + "\u0964\u0965\u0007T\u0002\u0002\u0965\u0966\u0007C\u0002\u0002\u0966", + "\u0967\u0007K\u0002\u0002\u0967\u0968\u0007P\u0002\u0002\u0968\u0969", + "\u0007V\u0002\u0002\u0969\u096a\u0007U\u0002\u0002\u096a\u01ee\u0003", + "\u0002\u0002\u0002\u096b\u096c\u0007Q\u0002\u0002\u096c\u096d\u0007", + "X\u0002\u0002\u096d\u096e\u0007G\u0002\u0002\u096e\u096f\u0007T\u0002", + "\u0002\u096f\u0970\u0007Y\u0002\u0002\u0970\u0971\u0007T\u0002\u0002", + "\u0971\u0972\u0007K\u0002\u0002\u0972\u0973\u0007V\u0002\u0002\u0973", + "\u0974\u0007K\u0002\u0002\u0974\u0975\u0007P\u0002\u0002\u0975\u0976", + "\u0007I\u0002\u0002\u0976\u01f0\u0003\u0002\u0002\u0002\u0977\u0978", + "\u0007I\u0002\u0002\u0978\u0979\u0007G\u0002\u0002\u0979\u097a\u0007", + "P\u0002\u0002\u097a\u097b\u0007G\u0002\u0002\u097b\u097c\u0007T\u0002", + "\u0002\u097c\u097d\u0007C\u0002\u0002\u097d\u097e\u0007V\u0002\u0002", + "\u097e\u097f\u0007G\u0002\u0002\u097f\u0980\u0007F\u0002\u0002\u0980", + "\u01f2\u0003\u0002\u0002\u0002\u0981\u0982\u0007E\u0002\u0002\u0982", + "\u0983\u0007C\u0002\u0002\u0983\u0984\u0007V\u0002\u0002\u0984\u0985", + "\u0007C\u0002\u0002\u0985\u0986\u0007N\u0002\u0002\u0986\u0987\u0007", + "Q\u0002\u0002\u0987\u0988\u0007I\u0002\u0002\u0988\u01f4\u0003\u0002", + "\u0002\u0002\u0989\u098a\u0007N\u0002\u0002\u098a\u098b\u0007C\u0002", + "\u0002\u098b\u098c\u0007P\u0002\u0002\u098c\u098d\u0007I\u0002\u0002", + "\u098d\u098e\u0007W\u0002\u0002\u098e\u098f\u0007C\u0002\u0002\u098f", + "\u0990\u0007I\u0002\u0002\u0990\u0991\u0007G\u0002\u0002\u0991\u01f6", + "\u0003\u0002\u0002\u0002\u0992\u0993\u0007E\u0002\u0002\u0993\u0994", + "\u0007C\u0002\u0002\u0994\u0995\u0007V\u0002\u0002\u0995\u0996\u0007", + "C\u0002\u0002\u0996\u0997\u0007N\u0002\u0002\u0997\u0998\u0007Q\u0002", + "\u0002\u0998\u0999\u0007I\u0002\u0002\u0999\u099a\u0007U\u0002\u0002", + "\u099a\u01f8\u0003\u0002\u0002\u0002\u099b\u099c\u0007X\u0002\u0002", + "\u099c\u099d\u0007K\u0002\u0002\u099d\u099e\u0007G\u0002\u0002\u099e", + "\u099f\u0007Y\u0002\u0002\u099f\u09a0\u0007U\u0002\u0002\u09a0\u01fa", + "\u0003\u0002\u0002\u0002\u09a1\u09a2\u0007U\u0002\u0002\u09a2\u09a3", + "\u0007V\u0002\u0002\u09a3\u09a4\u0007T\u0002\u0002\u09a4\u09a5\u0007", + "K\u0002\u0002\u09a5\u09a6\u0007P\u0002\u0002\u09a6\u09a7\u0007I\u0002", + "\u0002\u09a7\u01fc\u0003\u0002\u0002\u0002\u09a8\u09a9\u0007C\u0002", + "\u0002\u09a9\u09aa\u0007T\u0002\u0002\u09aa\u09ab\u0007T\u0002\u0002", + "\u09ab\u09ac\u0007C\u0002\u0002\u09ac\u09ad\u0007[\u0002\u0002\u09ad", + "\u01fe\u0003\u0002\u0002\u0002\u09ae\u09af\u0007O\u0002\u0002\u09af", + "\u09b0\u0007C\u0002\u0002\u09b0\u09b1\u0007R\u0002\u0002\u09b1\u0200", + "\u0003\u0002\u0002\u0002\u09b2\u09b3\u0007E\u0002\u0002\u09b3\u09b4", + "\u0007J\u0002\u0002\u09b4\u09b5\u0007C\u0002\u0002\u09b5\u09b6\u0007", + "T\u0002\u0002\u09b6\u0202\u0003\u0002\u0002\u0002\u09b7\u09b8\u0007", + "X\u0002\u0002\u09b8\u09b9\u0007C\u0002\u0002\u09b9\u09ba\u0007T\u0002", + "\u0002\u09ba\u09bb\u0007E\u0002\u0002\u09bb\u09bc\u0007J\u0002\u0002", + "\u09bc\u09bd\u0007C\u0002\u0002\u09bd\u09be\u0007T\u0002\u0002\u09be", + "\u0204\u0003\u0002\u0002\u0002\u09bf\u09c0\u0007D\u0002\u0002\u09c0", + "\u09c1\u0007K\u0002\u0002\u09c1\u09c2\u0007P\u0002\u0002\u09c2\u09c3", + "\u0007C\u0002\u0002\u09c3\u09c4\u0007T\u0002\u0002\u09c4\u09c5\u0007", + "[\u0002\u0002\u09c5\u0206\u0003\u0002\u0002\u0002\u09c6\u09c7\u0007", + "X\u0002\u0002\u09c7\u09c8\u0007C\u0002\u0002\u09c8\u09c9\u0007T\u0002", + "\u0002\u09c9\u09ca\u0007D\u0002\u0002\u09ca\u09cb\u0007K\u0002\u0002", + "\u09cb\u09cc\u0007P\u0002\u0002\u09cc\u09cd\u0007C\u0002\u0002\u09cd", + "\u09ce\u0007T\u0002\u0002\u09ce\u09cf\u0007[\u0002\u0002\u09cf\u0208", + "\u0003\u0002\u0002\u0002\u09d0\u09d1\u0007D\u0002\u0002\u09d1\u09d2", + "\u0007[\u0002\u0002\u09d2\u09d3\u0007V\u0002\u0002\u09d3\u09d4\u0007", + "G\u0002\u0002\u09d4\u09d5\u0007U\u0002\u0002\u09d5\u020a\u0003\u0002", + "\u0002\u0002\u09d6\u09d7\u0007F\u0002\u0002\u09d7\u09d8\u0007G\u0002", + "\u0002\u09d8\u09d9\u0007E\u0002\u0002\u09d9\u09da\u0007K\u0002\u0002", + "\u09da\u09db\u0007O\u0002\u0002\u09db\u09dc\u0007C\u0002\u0002\u09dc", + "\u09dd\u0007N\u0002\u0002\u09dd\u020c\u0003\u0002\u0002\u0002\u09de", + "\u09df\u0007V\u0002\u0002\u09df\u09e0\u0007K\u0002\u0002\u09e0\u09e1", + "\u0007P\u0002\u0002\u09e1\u09e2\u0007[\u0002\u0002\u09e2\u09e3\u0007", + "K\u0002\u0002\u09e3\u09e4\u0007P\u0002\u0002\u09e4\u09e5\u0007V\u0002", + "\u0002\u09e5\u020e\u0003\u0002\u0002\u0002\u09e6\u09e7\u0007U\u0002", + "\u0002\u09e7\u09e8\u0007O\u0002\u0002\u09e8\u09e9\u0007C\u0002\u0002", + "\u09e9\u09ea\u0007N\u0002\u0002\u09ea\u09eb\u0007N\u0002\u0002\u09eb", + "\u09ec\u0007K\u0002\u0002\u09ec\u09ed\u0007P\u0002\u0002\u09ed\u09ee", + "\u0007V\u0002\u0002\u09ee\u0210\u0003\u0002\u0002\u0002\u09ef\u09f0", + "\u0007K\u0002\u0002\u09f0\u09f1\u0007P\u0002\u0002\u09f1\u09f2\u0007", + "V\u0002\u0002\u09f2\u0212\u0003\u0002\u0002\u0002\u09f3\u09f4\u0007", + "D\u0002\u0002\u09f4\u09f5\u0007K\u0002\u0002\u09f5\u09f6\u0007I\u0002", + "\u0002\u09f6\u09f7\u0007K\u0002\u0002\u09f7\u09f8\u0007P\u0002\u0002", + "\u09f8\u09f9\u0007V\u0002\u0002\u09f9\u0214\u0003\u0002\u0002\u0002", + "\u09fa\u09fb\u0007H\u0002\u0002\u09fb\u09fc\u0007N\u0002\u0002\u09fc", + "\u09fd\u0007Q\u0002\u0002\u09fd\u09fe\u0007C\u0002\u0002\u09fe\u09ff", + "\u0007V\u0002\u0002\u09ff\u0216\u0003\u0002\u0002\u0002\u0a00\u0a01", + "\u0007F\u0002\u0002\u0a01\u0a02\u0007Q\u0002\u0002\u0a02\u0a03\u0007", + "W\u0002\u0002\u0a03\u0a04\u0007D\u0002\u0002\u0a04\u0a05\u0007N\u0002", + "\u0002\u0a05\u0a06\u0007G\u0002\u0002\u0a06\u0218\u0003\u0002\u0002", + "\u0002\u0a07\u0a08\u0007F\u0002\u0002\u0a08\u0a09\u0007C\u0002\u0002", + "\u0a09\u0a0a\u0007V\u0002\u0002\u0a0a\u0a0b\u0007G\u0002\u0002\u0a0b", + "\u021a\u0003\u0002\u0002\u0002\u0a0c\u0a0d\u0007V\u0002\u0002\u0a0d", + "\u0a0e\u0007K\u0002\u0002\u0a0e\u0a0f\u0007O\u0002\u0002\u0a0f\u0a10", + "\u0007G\u0002\u0002\u0a10\u021c\u0003\u0002\u0002\u0002\u0a11\u0a12", + "\u0007V\u0002\u0002\u0a12\u0a13\u0007K\u0002\u0002\u0a13\u0a14\u0007", + "O\u0002\u0002\u0a14\u0a15\u0007G\u0002\u0002\u0a15\u0a16\u0007U\u0002", + "\u0002\u0a16\u0a17\u0007V\u0002\u0002\u0a17\u0a18\u0007C\u0002\u0002", + "\u0a18\u0a19\u0007O\u0002\u0002\u0a19\u0a1a\u0007R\u0002\u0002\u0a1a", + "\u021e\u0003\u0002\u0002\u0002\u0a1b\u0a1c\u0007O\u0002\u0002\u0a1c", + "\u0a1d\u0007W\u0002\u0002\u0a1d\u0a1e\u0007N\u0002\u0002\u0a1e\u0a1f", + "\u0007V\u0002\u0002\u0a1f\u0a20\u0007K\u0002\u0002\u0a20\u0a21\u0007", + "U\u0002\u0002\u0a21\u0a22\u0007G\u0002\u0002\u0a22\u0a23\u0007V\u0002", + "\u0002\u0a23\u0220\u0003\u0002\u0002\u0002\u0a24\u0a25\u0007D\u0002", + "\u0002\u0a25\u0a26\u0007Q\u0002\u0002\u0a26\u0a27\u0007Q\u0002\u0002", + "\u0a27\u0a28\u0007N\u0002\u0002\u0a28\u0a29\u0007G\u0002\u0002\u0a29", + "\u0a2a\u0007C\u0002\u0002\u0a2a\u0a2b\u0007P\u0002\u0002\u0a2b\u0222", + "\u0003\u0002\u0002\u0002\u0a2c\u0a2d\u0007T\u0002\u0002\u0a2d\u0a2e", + "\u0007C\u0002\u0002\u0a2e\u0a2f\u0007Y\u0002\u0002\u0a2f\u0224\u0003", + "\u0002\u0002\u0002\u0a30\u0a31\u0007T\u0002\u0002\u0a31\u0a32\u0007", + "Q\u0002\u0002\u0a32\u0a33\u0007Y\u0002\u0002\u0a33\u0226\u0003\u0002", + "\u0002\u0002\u0a34\u0a35\u0007P\u0002\u0002\u0a35\u0a36\u0007W\u0002", + "\u0002\u0a36\u0a37\u0007N\u0002\u0002\u0a37\u0a38\u0007N\u0002\u0002", + "\u0a38\u0228\u0003\u0002\u0002\u0002\u0a39\u0a3a\u0007?\u0002\u0002", + "\u0a3a\u022a\u0003\u0002\u0002\u0002\u0a3b\u0a3c\u0007@\u0002\u0002", + "\u0a3c\u022c\u0003\u0002\u0002\u0002\u0a3d\u0a3e\u0007>\u0002\u0002", + "\u0a3e\u022e\u0003\u0002\u0002\u0002\u0a3f\u0a40\u0007#\u0002\u0002", + "\u0a40\u0230\u0003\u0002\u0002\u0002\u0a41\u0a42\u0007\u0080\u0002\u0002", + "\u0a42\u0232\u0003\u0002\u0002\u0002\u0a43\u0a44\u0007~\u0002\u0002", + "\u0a44\u0234\u0003\u0002\u0002\u0002\u0a45\u0a46\u0007(\u0002\u0002", + "\u0a46\u0236\u0003\u0002\u0002\u0002\u0a47\u0a48\u0007`\u0002\u0002", + "\u0a48\u0238\u0003\u0002\u0002\u0002\u0a49\u0a4a\u00070\u0002\u0002", + "\u0a4a\u023a\u0003\u0002\u0002\u0002\u0a4b\u0a4c\u0007]\u0002\u0002", + "\u0a4c\u023c\u0003\u0002\u0002\u0002\u0a4d\u0a4e\u0007_\u0002\u0002", + "\u0a4e\u023e\u0003\u0002\u0002\u0002\u0a4f\u0a50\u0007*\u0002\u0002", + "\u0a50\u0240\u0003\u0002\u0002\u0002\u0a51\u0a52\u0007+\u0002\u0002", + "\u0a52\u0242\u0003\u0002\u0002\u0002\u0a53\u0a54\u0007.\u0002\u0002", + "\u0a54\u0244\u0003\u0002\u0002\u0002\u0a55\u0a56\u0007=\u0002\u0002", + "\u0a56\u0246\u0003\u0002\u0002\u0002\u0a57\u0a58\u0007B\u0002\u0002", + "\u0a58\u0248\u0003\u0002\u0002\u0002\u0a59\u0a5a\u0007)\u0002\u0002", + "\u0a5a\u024a\u0003\u0002\u0002\u0002\u0a5b\u0a5c\u0007$\u0002\u0002", + "\u0a5c\u024c\u0003\u0002\u0002\u0002\u0a5d\u0a5e\u0007b\u0002\u0002", + "\u0a5e\u024e\u0003\u0002\u0002\u0002\u0a5f\u0a60\u0007<\u0002\u0002", + "\u0a60\u0250\u0003\u0002\u0002\u0002\u0a61\u0a62\u0007,\u0002\u0002", + "\u0a62\u0252\u0003\u0002\u0002\u0002\u0a63\u0a64\u0007a\u0002\u0002", + "\u0a64\u0254\u0003\u0002\u0002\u0002\u0a65\u0a66\u0007/\u0002\u0002", + "\u0a66\u0256\u0003\u0002\u0002\u0002\u0a67\u0a68\u0007-\u0002\u0002", + "\u0a68\u0258\u0003\u0002\u0002\u0002\u0a69\u0a6a\u0007\'\u0002\u0002", + "\u0a6a\u025a\u0003\u0002\u0002\u0002\u0a6b\u0a6c\u0007~\u0002\u0002", + "\u0a6c\u0a6d\u0007~\u0002\u0002\u0a6d\u025c\u0003\u0002\u0002\u0002", + "\u0a6e\u0a6f\u0007/\u0002\u0002\u0a6f\u0a70\u0007/\u0002\u0002\u0a70", + "\u025e\u0003\u0002\u0002\u0002\u0a71\u0a72\u00071\u0002\u0002\u0a72", + "\u0260\u0003\u0002\u0002\u0002\u0a73\u0a74\u00070\u0002\u0002\u0a74", + "\u0a75\u0005\u026f\u0138\u0002\u0a75\u0262\u0003\u0002\u0002\u0002\u0a76", + "\u0a7a\u0005\u0275\u013b\u0002\u0a77\u0a7a\u0005\u0277\u013c\u0002\u0a78", + "\u0a7a\u0005\u027b\u013e\u0002\u0a79\u0a76\u0003\u0002\u0002\u0002\u0a79", + "\u0a77\u0003\u0002\u0002\u0002\u0a79\u0a78\u0003\u0002\u0002\u0002\u0a7a", + "\u0264\u0003\u0002\u0002\u0002\u0a7b\u0a7d\u0005\u0271\u0139\u0002\u0a7c", + "\u0a7b\u0003\u0002\u0002\u0002\u0a7d\u0a7e\u0003\u0002\u0002\u0002\u0a7e", + "\u0a7c\u0003\u0002\u0002\u0002\u0a7e\u0a7f\u0003\u0002\u0002\u0002\u0a7f", + "\u0266\u0003\u0002\u0002\u0002\u0a80\u0a82\u0005\u0271\u0139\u0002\u0a81", + "\u0a80\u0003\u0002\u0002\u0002\u0a82\u0a83\u0003\u0002\u0002\u0002\u0a83", + "\u0a81\u0003\u0002\u0002\u0002\u0a83\u0a84\u0003\u0002\u0002\u0002\u0a84", + "\u0a86\u0003\u0002\u0002\u0002\u0a85\u0a81\u0003\u0002\u0002\u0002\u0a85", + "\u0a86\u0003\u0002\u0002\u0002\u0a86\u0a87\u0003\u0002\u0002\u0002\u0a87", + "\u0a89\u00070\u0002\u0002\u0a88\u0a8a\u0005\u0271\u0139\u0002\u0a89", + "\u0a88\u0003\u0002\u0002\u0002\u0a8a\u0a8b\u0003\u0002\u0002\u0002\u0a8b", + "\u0a89\u0003\u0002\u0002\u0002\u0a8b\u0a8c\u0003\u0002\u0002\u0002\u0a8c", + "\u0aac\u0003\u0002\u0002\u0002\u0a8d\u0a8f\u0005\u0271\u0139\u0002\u0a8e", + "\u0a8d\u0003\u0002\u0002\u0002\u0a8f\u0a90\u0003\u0002\u0002\u0002\u0a90", + "\u0a8e\u0003\u0002\u0002\u0002\u0a90\u0a91\u0003\u0002\u0002\u0002\u0a91", + "\u0a92\u0003\u0002\u0002\u0002\u0a92\u0a93\u00070\u0002\u0002\u0a93", + "\u0a94\u0005\u026d\u0137\u0002\u0a94\u0aac\u0003\u0002\u0002\u0002\u0a95", + "\u0a97\u0005\u0271\u0139\u0002\u0a96\u0a95\u0003\u0002\u0002\u0002\u0a97", + "\u0a98\u0003\u0002\u0002\u0002\u0a98\u0a96\u0003\u0002\u0002\u0002\u0a98", + "\u0a99\u0003\u0002\u0002\u0002\u0a99\u0a9b\u0003\u0002\u0002\u0002\u0a9a", + "\u0a96\u0003\u0002\u0002\u0002\u0a9a\u0a9b\u0003\u0002\u0002\u0002\u0a9b", + "\u0a9c\u0003\u0002\u0002\u0002\u0a9c\u0a9e\u00070\u0002\u0002\u0a9d", + "\u0a9f\u0005\u0271\u0139\u0002\u0a9e\u0a9d\u0003\u0002\u0002\u0002\u0a9f", + "\u0aa0\u0003\u0002\u0002\u0002\u0aa0\u0a9e\u0003\u0002\u0002\u0002\u0aa0", + "\u0aa1\u0003\u0002\u0002\u0002\u0aa1\u0aa2\u0003\u0002\u0002\u0002\u0aa2", + "\u0aa3\u0005\u026d\u0137\u0002\u0aa3\u0aac\u0003\u0002\u0002\u0002\u0aa4", + "\u0aa6\u0005\u0271\u0139\u0002\u0aa5\u0aa4\u0003\u0002\u0002\u0002\u0aa6", + "\u0aa7\u0003\u0002\u0002\u0002\u0aa7\u0aa5\u0003\u0002\u0002\u0002\u0aa7", + "\u0aa8\u0003\u0002\u0002\u0002\u0aa8\u0aa9\u0003\u0002\u0002\u0002\u0aa9", + "\u0aaa\u0005\u026d\u0137\u0002\u0aaa\u0aac\u0003\u0002\u0002\u0002\u0aab", + "\u0a85\u0003\u0002\u0002\u0002\u0aab\u0a8e\u0003\u0002\u0002\u0002\u0aab", + "\u0a9a\u0003\u0002\u0002\u0002\u0aab\u0aa5\u0003\u0002\u0002\u0002\u0aac", + "\u0268\u0003\u0002\u0002\u0002\u0aad\u0aae\u0005\u0279\u013d\u0002\u0aae", + "\u026a\u0003\u0002\u0002\u0002\u0aaf\u0ab0\u0005\u026f\u0138\u0002\u0ab0", + "\u026c\u0003\u0002\u0002\u0002\u0ab1\u0ab3\u0007G\u0002\u0002\u0ab2", + "\u0ab4\t\u0004\u0002\u0002\u0ab3\u0ab2\u0003\u0002\u0002\u0002\u0ab3", + "\u0ab4\u0003\u0002\u0002\u0002\u0ab4\u0ab6\u0003\u0002\u0002\u0002\u0ab5", + "\u0ab7\u0005\u0271\u0139\u0002\u0ab6\u0ab5\u0003\u0002\u0002\u0002\u0ab7", + "\u0ab8\u0003\u0002\u0002\u0002\u0ab8\u0ab6\u0003\u0002\u0002\u0002\u0ab8", + "\u0ab9\u0003\u0002\u0002\u0002\u0ab9\u026e\u0003\u0002\u0002\u0002\u0aba", + "\u0abc\t\u0005\u0002\u0002\u0abb\u0aba\u0003\u0002\u0002\u0002\u0abc", + "\u0abf\u0003\u0002\u0002\u0002\u0abd\u0abe\u0003\u0002\u0002\u0002\u0abd", + "\u0abb\u0003\u0002\u0002\u0002\u0abe\u0ac1\u0003\u0002\u0002\u0002\u0abf", + "\u0abd\u0003\u0002\u0002\u0002\u0ac0\u0ac2\t\u0006\u0002\u0002\u0ac1", + "\u0ac0\u0003\u0002\u0002\u0002\u0ac2\u0ac3\u0003\u0002\u0002\u0002\u0ac3", + "\u0ac4\u0003\u0002\u0002\u0002\u0ac3\u0ac1\u0003\u0002\u0002\u0002\u0ac4", + "\u0ac8\u0003\u0002\u0002\u0002\u0ac5\u0ac7\t\u0005\u0002\u0002\u0ac6", + "\u0ac5\u0003\u0002\u0002\u0002\u0ac7\u0aca\u0003\u0002\u0002\u0002\u0ac8", + "\u0ac6\u0003\u0002\u0002\u0002\u0ac8\u0ac9\u0003\u0002\u0002\u0002\u0ac9", + "\u0270\u0003\u0002\u0002\u0002\u0aca\u0ac8\u0003\u0002\u0002\u0002\u0acb", + "\u0acc\t\u0007\u0002\u0002\u0acc\u0272\u0003\u0002\u0002\u0002\u0acd", + "\u0ace\t\b\u0002\u0002\u0ace\u0274\u0003\u0002\u0002\u0002\u0acf\u0ad7", + "\u0007$\u0002\u0002\u0ad0\u0ad1\u0007^\u0002\u0002\u0ad1\u0ad6\u000b", + "\u0002\u0002\u0002\u0ad2\u0ad3\u0007$\u0002\u0002\u0ad3\u0ad6\u0007", + "$\u0002\u0002\u0ad4\u0ad6\n\t\u0002\u0002\u0ad5\u0ad0\u0003\u0002\u0002", + "\u0002\u0ad5\u0ad2\u0003\u0002\u0002\u0002\u0ad5\u0ad4\u0003\u0002\u0002", + "\u0002\u0ad6\u0ad9\u0003\u0002\u0002\u0002\u0ad7\u0ad5\u0003\u0002\u0002", + "\u0002\u0ad7\u0ad8\u0003\u0002\u0002\u0002\u0ad8\u0ada\u0003\u0002\u0002", + "\u0002\u0ad9\u0ad7\u0003\u0002\u0002\u0002\u0ada\u0adb\u0007$\u0002", + "\u0002\u0adb\u0276\u0003\u0002\u0002\u0002\u0adc\u0ae4\u0007)\u0002", + "\u0002\u0add\u0ade\u0007^\u0002\u0002\u0ade\u0ae3\u000b\u0002\u0002", + "\u0002\u0adf\u0ae0\u0007)\u0002\u0002\u0ae0\u0ae3\u0007)\u0002\u0002", + "\u0ae1\u0ae3\n\n\u0002\u0002\u0ae2\u0add\u0003\u0002\u0002\u0002\u0ae2", + "\u0adf\u0003\u0002\u0002\u0002\u0ae2\u0ae1\u0003\u0002\u0002\u0002\u0ae3", + "\u0ae6\u0003\u0002\u0002\u0002\u0ae4\u0ae2\u0003\u0002\u0002\u0002\u0ae4", + "\u0ae5\u0003\u0002\u0002\u0002\u0ae5\u0ae7\u0003\u0002\u0002\u0002\u0ae6", + "\u0ae4\u0003\u0002\u0002\u0002\u0ae7\u0ae8\u0007)\u0002\u0002\u0ae8", + "\u0278\u0003\u0002\u0002\u0002\u0ae9\u0aea\u0007D\u0002\u0002\u0aea", + "\u0aec\u0007)\u0002\u0002\u0aeb\u0aed\t\u000b\u0002\u0002\u0aec\u0aeb", + "\u0003\u0002\u0002\u0002\u0aed\u0aee\u0003\u0002\u0002\u0002\u0aee\u0aec", + "\u0003\u0002\u0002\u0002\u0aee\u0aef\u0003\u0002\u0002\u0002\u0aef\u0af0", + "\u0003\u0002\u0002\u0002\u0af0\u0af1\u0007)\u0002\u0002\u0af1\u027a", + "\u0003\u0002\u0002\u0002\u0af2\u0afa\u0007b\u0002\u0002\u0af3\u0af4", + "\u0007^\u0002\u0002\u0af4\u0af9\u000b\u0002\u0002\u0002\u0af5\u0af6", + "\u0007b\u0002\u0002\u0af6\u0af9\u0007b\u0002\u0002\u0af7\u0af9\n\f\u0002", + "\u0002\u0af8\u0af3\u0003\u0002\u0002\u0002\u0af8\u0af5\u0003\u0002\u0002", + "\u0002\u0af8\u0af7\u0003\u0002\u0002\u0002\u0af9\u0afc\u0003\u0002\u0002", + "\u0002\u0afa\u0af8\u0003\u0002\u0002\u0002\u0afa\u0afb\u0003\u0002\u0002", + "\u0002\u0afb\u0afd\u0003\u0002\u0002\u0002\u0afc\u0afa\u0003\u0002\u0002", + "\u0002\u0afd\u0afe\u0007b\u0002\u0002\u0afe\u027c\u0003\u0002\u0002", + "\u0002#\u0002\u0280\u028a\u0296\u029b\u029f\u02a3\u02a9\u02ad\u02af", + "\u0a79\u0a7e\u0a83\u0a85\u0a8b\u0a90\u0a98\u0a9a\u0aa0\u0aa7\u0aab\u0ab3", + "\u0ab8\u0abd\u0ac3\u0ac8\u0ad5\u0ad7\u0ae2\u0ae4\u0aee\u0af8\u0afa\u0003", + "\u0002\u0003\u0002"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -1951,333 +1828,320 @@ Object.defineProperty(FlinkSqlLexer.prototype, "atn", { FlinkSqlLexer.EOF = antlr4.Token.EOF; FlinkSqlLexer.SPACE = 1; -FlinkSqlLexer.SPEC_MYSQL_COMMENT = 2; -FlinkSqlLexer.COMMENT_INPUT = 3; -FlinkSqlLexer.LINE_COMMENT = 4; -FlinkSqlLexer.SELECT = 5; -FlinkSqlLexer.FROM = 6; -FlinkSqlLexer.ADD = 7; -FlinkSqlLexer.AS = 8; -FlinkSqlLexer.ALL = 9; -FlinkSqlLexer.ANY = 10; -FlinkSqlLexer.DISTINCT = 11; -FlinkSqlLexer.WHERE = 12; -FlinkSqlLexer.GROUP = 13; -FlinkSqlLexer.BY = 14; -FlinkSqlLexer.GROUPING = 15; -FlinkSqlLexer.SETS = 16; -FlinkSqlLexer.CUBE = 17; -FlinkSqlLexer.ROLLUP = 18; -FlinkSqlLexer.ORDER = 19; -FlinkSqlLexer.HAVING = 20; -FlinkSqlLexer.LIMIT = 21; -FlinkSqlLexer.AT = 22; -FlinkSqlLexer.OR = 23; -FlinkSqlLexer.AND = 24; -FlinkSqlLexer.IN = 25; -FlinkSqlLexer.NOT = 26; -FlinkSqlLexer.NO = 27; -FlinkSqlLexer.EXISTS = 28; -FlinkSqlLexer.BETWEEN = 29; -FlinkSqlLexer.LIKE = 30; -FlinkSqlLexer.RLIKE = 31; -FlinkSqlLexer.IS = 32; -FlinkSqlLexer.TRUE = 33; -FlinkSqlLexer.FALSE = 34; -FlinkSqlLexer.NULLS = 35; -FlinkSqlLexer.ASC = 36; -FlinkSqlLexer.DESC = 37; -FlinkSqlLexer.FOR = 38; -FlinkSqlLexer.INTERVAL = 39; -FlinkSqlLexer.CASE = 40; -FlinkSqlLexer.WHEN = 41; -FlinkSqlLexer.THEN = 42; -FlinkSqlLexer.ELSE = 43; -FlinkSqlLexer.END = 44; -FlinkSqlLexer.JOIN = 45; -FlinkSqlLexer.CROSS = 46; -FlinkSqlLexer.OUTER = 47; -FlinkSqlLexer.INNER = 48; -FlinkSqlLexer.LEFT = 49; -FlinkSqlLexer.SEMI = 50; -FlinkSqlLexer.RIGHT = 51; -FlinkSqlLexer.FULL = 52; -FlinkSqlLexer.NATURAL = 53; -FlinkSqlLexer.ON = 54; -FlinkSqlLexer.PIVOT = 55; -FlinkSqlLexer.LATERAL = 56; -FlinkSqlLexer.WINDOW = 57; -FlinkSqlLexer.OVER = 58; -FlinkSqlLexer.PARTITION = 59; -FlinkSqlLexer.RANGE = 60; -FlinkSqlLexer.ROWS = 61; -FlinkSqlLexer.UNBOUNDED = 62; -FlinkSqlLexer.PRECEDING = 63; -FlinkSqlLexer.FOLLOWING = 64; -FlinkSqlLexer.CURRENT = 65; -FlinkSqlLexer.FIRST = 66; -FlinkSqlLexer.AFTER = 67; -FlinkSqlLexer.LAST = 68; -FlinkSqlLexer.WITH = 69; -FlinkSqlLexer.VALUES = 70; -FlinkSqlLexer.CREATE = 71; -FlinkSqlLexer.TABLE = 72; -FlinkSqlLexer.DIRECTORY = 73; -FlinkSqlLexer.VIEW = 74; -FlinkSqlLexer.REPLACE = 75; -FlinkSqlLexer.INSERT = 76; -FlinkSqlLexer.DELETE = 77; -FlinkSqlLexer.INTO = 78; -FlinkSqlLexer.DESCRIBE = 79; -FlinkSqlLexer.EXPLAIN = 80; -FlinkSqlLexer.FORMAT = 81; -FlinkSqlLexer.LOGICAL = 82; -FlinkSqlLexer.CODEGEN = 83; -FlinkSqlLexer.COST = 84; -FlinkSqlLexer.CAST = 85; -FlinkSqlLexer.SHOW = 86; -FlinkSqlLexer.TABLES = 87; -FlinkSqlLexer.COLUMNS = 88; -FlinkSqlLexer.COLUMN = 89; -FlinkSqlLexer.USE = 90; -FlinkSqlLexer.PARTITIONS = 91; -FlinkSqlLexer.FUNCTIONS = 92; -FlinkSqlLexer.DROP = 93; -FlinkSqlLexer.UNION = 94; -FlinkSqlLexer.EXCEPT = 95; -FlinkSqlLexer.SETMINUS = 96; -FlinkSqlLexer.INTERSECT = 97; -FlinkSqlLexer.TO = 98; -FlinkSqlLexer.TABLESAMPLE = 99; -FlinkSqlLexer.STRATIFY = 100; -FlinkSqlLexer.ALTER = 101; -FlinkSqlLexer.RENAME = 102; -FlinkSqlLexer.STRUCT = 103; -FlinkSqlLexer.COMMENT = 104; -FlinkSqlLexer.SET = 105; -FlinkSqlLexer.RESET = 106; -FlinkSqlLexer.DATA = 107; -FlinkSqlLexer.START = 108; -FlinkSqlLexer.TRANSACTION = 109; -FlinkSqlLexer.COMMIT = 110; -FlinkSqlLexer.ROLLBACK = 111; -FlinkSqlLexer.MACRO = 112; -FlinkSqlLexer.IGNORE = 113; -FlinkSqlLexer.BOTH = 114; -FlinkSqlLexer.LEADING = 115; -FlinkSqlLexer.TRAILING = 116; -FlinkSqlLexer.IF = 117; -FlinkSqlLexer.POSITION = 118; -FlinkSqlLexer.EXTRACT = 119; -FlinkSqlLexer.EQ = 120; -FlinkSqlLexer.NSEQ = 121; -FlinkSqlLexer.NEQ = 122; -FlinkSqlLexer.NEQJ = 123; -FlinkSqlLexer.LT = 124; -FlinkSqlLexer.LTE = 125; -FlinkSqlLexer.GT = 126; -FlinkSqlLexer.GTE = 127; -FlinkSqlLexer.PLUS = 128; -FlinkSqlLexer.MINUS = 129; -FlinkSqlLexer.ASTERISK = 130; -FlinkSqlLexer.SLASH = 131; -FlinkSqlLexer.PERCENT = 132; -FlinkSqlLexer.DIV = 133; -FlinkSqlLexer.TILDE = 134; -FlinkSqlLexer.AMPERSAND = 135; -FlinkSqlLexer.PIPE = 136; -FlinkSqlLexer.CONCAT_PIPE = 137; -FlinkSqlLexer.HAT = 138; -FlinkSqlLexer.PERCENTLIT = 139; -FlinkSqlLexer.BUCKET = 140; -FlinkSqlLexer.OUT = 141; -FlinkSqlLexer.OF = 142; -FlinkSqlLexer.SORT = 143; -FlinkSqlLexer.CLUSTER = 144; -FlinkSqlLexer.DISTRIBUTE = 145; -FlinkSqlLexer.OVERWRITE = 146; -FlinkSqlLexer.TRANSFORM = 147; -FlinkSqlLexer.REDUCE = 148; -FlinkSqlLexer.USING = 149; -FlinkSqlLexer.SERDE = 150; -FlinkSqlLexer.SERDEPROPERTIES = 151; -FlinkSqlLexer.RECORDREADER = 152; -FlinkSqlLexer.RECORDWRITER = 153; -FlinkSqlLexer.DELIMITED = 154; -FlinkSqlLexer.FIELDS = 155; -FlinkSqlLexer.TERMINATED = 156; -FlinkSqlLexer.COLLECTION = 157; -FlinkSqlLexer.ITEMS = 158; -FlinkSqlLexer.KEYS = 159; -FlinkSqlLexer.ESCAPED = 160; -FlinkSqlLexer.LINES = 161; -FlinkSqlLexer.SEPARATED = 162; -FlinkSqlLexer.FUNCTION = 163; -FlinkSqlLexer.EXTENDED = 164; -FlinkSqlLexer.REFRESH = 165; -FlinkSqlLexer.CLEAR = 166; -FlinkSqlLexer.CACHE = 167; -FlinkSqlLexer.UNCACHE = 168; -FlinkSqlLexer.LAZY = 169; -FlinkSqlLexer.FORMATTED = 170; -FlinkSqlLexer.GLOBAL = 171; -FlinkSqlLexer.TEMPORARY = 172; -FlinkSqlLexer.OPTIONS = 173; -FlinkSqlLexer.UNSET = 174; -FlinkSqlLexer.TBLPROPERTIES = 175; -FlinkSqlLexer.DBPROPERTIES = 176; -FlinkSqlLexer.BUCKETS = 177; -FlinkSqlLexer.SKEWED = 178; -FlinkSqlLexer.STORED = 179; -FlinkSqlLexer.DIRECTORIES = 180; -FlinkSqlLexer.LOCATION = 181; -FlinkSqlLexer.EXCHANGE = 182; -FlinkSqlLexer.ARCHIVE = 183; -FlinkSqlLexer.UNARCHIVE = 184; -FlinkSqlLexer.FILEFORMAT = 185; -FlinkSqlLexer.TOUCH = 186; -FlinkSqlLexer.COMPACT = 187; -FlinkSqlLexer.CONCATENATE = 188; -FlinkSqlLexer.CHANGE = 189; -FlinkSqlLexer.CASCADE = 190; -FlinkSqlLexer.RESTRICT = 191; -FlinkSqlLexer.CLUSTERED = 192; -FlinkSqlLexer.SORTED = 193; -FlinkSqlLexer.PURGE = 194; -FlinkSqlLexer.INPUTFORMAT = 195; -FlinkSqlLexer.OUTPUTFORMAT = 196; -FlinkSqlLexer.DATABASE = 197; -FlinkSqlLexer.DATABASES = 198; -FlinkSqlLexer.DFS = 199; -FlinkSqlLexer.TRUNCATE = 200; -FlinkSqlLexer.ANALYZE = 201; -FlinkSqlLexer.COMPUTE = 202; -FlinkSqlLexer.LIST = 203; -FlinkSqlLexer.STATISTICS = 204; -FlinkSqlLexer.PARTITIONED = 205; -FlinkSqlLexer.EXTERNAL = 206; -FlinkSqlLexer.DEFINED = 207; -FlinkSqlLexer.REVOKE = 208; -FlinkSqlLexer.GRANT = 209; -FlinkSqlLexer.LOCK = 210; -FlinkSqlLexer.UNLOCK = 211; -FlinkSqlLexer.MSCK = 212; -FlinkSqlLexer.REPAIR = 213; -FlinkSqlLexer.RECOVER = 214; -FlinkSqlLexer.EXPORT = 215; -FlinkSqlLexer.IMPORT = 216; -FlinkSqlLexer.LOAD = 217; -FlinkSqlLexer.ROLE = 218; -FlinkSqlLexer.ROLES = 219; -FlinkSqlLexer.COMPACTIONS = 220; -FlinkSqlLexer.PRINCIPALS = 221; -FlinkSqlLexer.TRANSACTIONS = 222; -FlinkSqlLexer.INDEX = 223; -FlinkSqlLexer.INDEXES = 224; -FlinkSqlLexer.LOCKS = 225; -FlinkSqlLexer.OPTION = 226; -FlinkSqlLexer.ANTI = 227; -FlinkSqlLexer.LOCAL = 228; -FlinkSqlLexer.INPATH = 229; -FlinkSqlLexer.WATERMARK = 230; -FlinkSqlLexer.UNNEST = 231; -FlinkSqlLexer.MATCH_RECOGNIZE = 232; -FlinkSqlLexer.MEASURES = 233; -FlinkSqlLexer.ONE = 234; -FlinkSqlLexer.PER = 235; -FlinkSqlLexer.MATCH = 236; -FlinkSqlLexer.SKIP1 = 237; -FlinkSqlLexer.NEXT = 238; -FlinkSqlLexer.PAST = 239; -FlinkSqlLexer.PATTERN = 240; -FlinkSqlLexer.WITHIN = 241; -FlinkSqlLexer.DEFINE = 242; -FlinkSqlLexer.BIGINT_LITERAL = 243; -FlinkSqlLexer.SMALLINT_LITERAL = 244; -FlinkSqlLexer.TINYINT_LITERAL = 245; -FlinkSqlLexer.INTEGER_VALUE = 246; -FlinkSqlLexer.DECIMAL_VALUE = 247; -FlinkSqlLexer.DOUBLE_LITERAL = 248; -FlinkSqlLexer.BIGDECIMAL_LITERAL = 249; -FlinkSqlLexer.IDENTIFIER = 250; -FlinkSqlLexer.BACKQUOTED_IDENTIFIER = 251; -FlinkSqlLexer.SIMPLE_COMMENT = 252; -FlinkSqlLexer.BRACKETED_EMPTY_COMMENT = 253; -FlinkSqlLexer.BRACKETED_COMMENT = 254; -FlinkSqlLexer.WS = 255; -FlinkSqlLexer.UNRECOGNIZED = 256; -FlinkSqlLexer.REVERSE_QUOTE_ID = 257; -FlinkSqlLexer.DOUBLE_QUOTE_ID = 258; -FlinkSqlLexer.DOT_ID = 259; -FlinkSqlLexer.ID = 260; -FlinkSqlLexer.SYSTEM = 261; -FlinkSqlLexer.STRING = 262; -FlinkSqlLexer.ARRAY = 263; -FlinkSqlLexer.MAP = 264; -FlinkSqlLexer.CHAR = 265; -FlinkSqlLexer.VARCHAR = 266; -FlinkSqlLexer.BINARY = 267; -FlinkSqlLexer.VARBINARY = 268; -FlinkSqlLexer.BYTES = 269; -FlinkSqlLexer.DECIMAL = 270; -FlinkSqlLexer.TINYINT = 271; -FlinkSqlLexer.SMALLINT = 272; -FlinkSqlLexer.INT = 273; -FlinkSqlLexer.BIGINT = 274; -FlinkSqlLexer.FLOAT = 275; -FlinkSqlLexer.DOUBLE = 276; -FlinkSqlLexer.DATE = 277; -FlinkSqlLexer.TIME = 278; -FlinkSqlLexer.TIMESTAMP = 279; -FlinkSqlLexer.MULTISET = 280; -FlinkSqlLexer.BOOLEAN = 281; -FlinkSqlLexer.RAW = 282; -FlinkSqlLexer.ROW = 283; -FlinkSqlLexer.NULL = 284; -FlinkSqlLexer.EQUAL_SYMBOL = 285; -FlinkSqlLexer.GREATER_SYMBOL = 286; -FlinkSqlLexer.LESS_SYMBOL = 287; -FlinkSqlLexer.EXCLAMATION_SYMBOL = 288; -FlinkSqlLexer.BIT_NOT_OP = 289; -FlinkSqlLexer.BIT_OR_OP = 290; -FlinkSqlLexer.BIT_AND_OP = 291; -FlinkSqlLexer.BIT_XOR_OP = 292; -FlinkSqlLexer.DOT = 293; -FlinkSqlLexer.LS_BRACKET = 294; -FlinkSqlLexer.RS_BRACKET = 295; -FlinkSqlLexer.LR_BRACKET = 296; -FlinkSqlLexer.RR_BRACKET = 297; -FlinkSqlLexer.COMMA = 298; -FlinkSqlLexer.SEMICOLON = 299; -FlinkSqlLexer.AT_SIGN = 300; -FlinkSqlLexer.ZERO_DECIMAL = 301; -FlinkSqlLexer.ONE_DECIMAL = 302; -FlinkSqlLexer.TWO_DECIMAL = 303; -FlinkSqlLexer.SINGLE_QUOTE_SYMB = 304; -FlinkSqlLexer.DOUBLE_QUOTE_SYMB = 305; -FlinkSqlLexer.REVERSE_QUOTE_SYMB = 306; -FlinkSqlLexer.COLON_SYMB = 307; -FlinkSqlLexer.ASTERISK_SIGN = 308; -FlinkSqlLexer.UNDERLINE_SIGN = 309; -FlinkSqlLexer.HYPNEN_SIGN = 310; -FlinkSqlLexer.ADD_SIGN = 311; -FlinkSqlLexer.PENCENT_SIGN = 312; -FlinkSqlLexer.DOUBLE_HYPNEN_SIGN = 313; -FlinkSqlLexer.SLASH_SIGN = 314; -FlinkSqlLexer.STRING_LITERAL = 315; -FlinkSqlLexer.DECIMAL_LITERAL = 316; -FlinkSqlLexer.REAL_LITERAL = 317; -FlinkSqlLexer.BIT_STRING = 318; -FlinkSqlLexer.IDENTIFIER_BASE = 319; +FlinkSqlLexer.COMMENT_INPUT = 2; +FlinkSqlLexer.LINE_COMMENT = 3; +FlinkSqlLexer.SELECT = 4; +FlinkSqlLexer.FROM = 5; +FlinkSqlLexer.ADD = 6; +FlinkSqlLexer.AS = 7; +FlinkSqlLexer.ALL = 8; +FlinkSqlLexer.ANY = 9; +FlinkSqlLexer.DISTINCT = 10; +FlinkSqlLexer.WHERE = 11; +FlinkSqlLexer.GROUP = 12; +FlinkSqlLexer.BY = 13; +FlinkSqlLexer.GROUPING = 14; +FlinkSqlLexer.SETS = 15; +FlinkSqlLexer.CUBE = 16; +FlinkSqlLexer.ROLLUP = 17; +FlinkSqlLexer.ORDER = 18; +FlinkSqlLexer.HAVING = 19; +FlinkSqlLexer.LIMIT = 20; +FlinkSqlLexer.AT = 21; +FlinkSqlLexer.OR = 22; +FlinkSqlLexer.AND = 23; +FlinkSqlLexer.IN = 24; +FlinkSqlLexer.NOT = 25; +FlinkSqlLexer.NO = 26; +FlinkSqlLexer.EXISTS = 27; +FlinkSqlLexer.BETWEEN = 28; +FlinkSqlLexer.LIKE = 29; +FlinkSqlLexer.RLIKE = 30; +FlinkSqlLexer.IS = 31; +FlinkSqlLexer.TRUE = 32; +FlinkSqlLexer.FALSE = 33; +FlinkSqlLexer.NULLS = 34; +FlinkSqlLexer.ASC = 35; +FlinkSqlLexer.DESC = 36; +FlinkSqlLexer.FOR = 37; +FlinkSqlLexer.INTERVAL = 38; +FlinkSqlLexer.CASE = 39; +FlinkSqlLexer.WHEN = 40; +FlinkSqlLexer.THEN = 41; +FlinkSqlLexer.ELSE = 42; +FlinkSqlLexer.END = 43; +FlinkSqlLexer.JOIN = 44; +FlinkSqlLexer.CROSS = 45; +FlinkSqlLexer.OUTER = 46; +FlinkSqlLexer.INNER = 47; +FlinkSqlLexer.LEFT = 48; +FlinkSqlLexer.SEMI = 49; +FlinkSqlLexer.RIGHT = 50; +FlinkSqlLexer.FULL = 51; +FlinkSqlLexer.NATURAL = 52; +FlinkSqlLexer.ON = 53; +FlinkSqlLexer.PIVOT = 54; +FlinkSqlLexer.LATERAL = 55; +FlinkSqlLexer.WINDOW = 56; +FlinkSqlLexer.OVER = 57; +FlinkSqlLexer.PARTITION = 58; +FlinkSqlLexer.RANGE = 59; +FlinkSqlLexer.ROWS = 60; +FlinkSqlLexer.UNBOUNDED = 61; +FlinkSqlLexer.PRECEDING = 62; +FlinkSqlLexer.FOLLOWING = 63; +FlinkSqlLexer.CURRENT = 64; +FlinkSqlLexer.FIRST = 65; +FlinkSqlLexer.AFTER = 66; +FlinkSqlLexer.LAST = 67; +FlinkSqlLexer.WITH = 68; +FlinkSqlLexer.VALUES = 69; +FlinkSqlLexer.CREATE = 70; +FlinkSqlLexer.TABLE = 71; +FlinkSqlLexer.DIRECTORY = 72; +FlinkSqlLexer.VIEW = 73; +FlinkSqlLexer.REPLACE = 74; +FlinkSqlLexer.INSERT = 75; +FlinkSqlLexer.DELETE = 76; +FlinkSqlLexer.INTO = 77; +FlinkSqlLexer.DESCRIBE = 78; +FlinkSqlLexer.EXPLAIN = 79; +FlinkSqlLexer.FORMAT = 80; +FlinkSqlLexer.LOGICAL = 81; +FlinkSqlLexer.CODEGEN = 82; +FlinkSqlLexer.COST = 83; +FlinkSqlLexer.CAST = 84; +FlinkSqlLexer.SHOW = 85; +FlinkSqlLexer.TABLES = 86; +FlinkSqlLexer.COLUMNS = 87; +FlinkSqlLexer.COLUMN = 88; +FlinkSqlLexer.USE = 89; +FlinkSqlLexer.PARTITIONS = 90; +FlinkSqlLexer.FUNCTIONS = 91; +FlinkSqlLexer.DROP = 92; +FlinkSqlLexer.UNION = 93; +FlinkSqlLexer.EXCEPT = 94; +FlinkSqlLexer.SETMINUS = 95; +FlinkSqlLexer.INTERSECT = 96; +FlinkSqlLexer.TO = 97; +FlinkSqlLexer.TABLESAMPLE = 98; +FlinkSqlLexer.STRATIFY = 99; +FlinkSqlLexer.ALTER = 100; +FlinkSqlLexer.RENAME = 101; +FlinkSqlLexer.STRUCT = 102; +FlinkSqlLexer.COMMENT = 103; +FlinkSqlLexer.SET = 104; +FlinkSqlLexer.RESET = 105; +FlinkSqlLexer.DATA = 106; +FlinkSqlLexer.START = 107; +FlinkSqlLexer.TRANSACTION = 108; +FlinkSqlLexer.COMMIT = 109; +FlinkSqlLexer.ROLLBACK = 110; +FlinkSqlLexer.MACRO = 111; +FlinkSqlLexer.IGNORE = 112; +FlinkSqlLexer.BOTH = 113; +FlinkSqlLexer.LEADING = 114; +FlinkSqlLexer.TRAILING = 115; +FlinkSqlLexer.IF = 116; +FlinkSqlLexer.POSITION = 117; +FlinkSqlLexer.EXTRACT = 118; +FlinkSqlLexer.EQ = 119; +FlinkSqlLexer.NSEQ = 120; +FlinkSqlLexer.NEQ = 121; +FlinkSqlLexer.NEQJ = 122; +FlinkSqlLexer.LT = 123; +FlinkSqlLexer.LTE = 124; +FlinkSqlLexer.GT = 125; +FlinkSqlLexer.GTE = 126; +FlinkSqlLexer.PLUS = 127; +FlinkSqlLexer.MINUS = 128; +FlinkSqlLexer.ASTERISK = 129; +FlinkSqlLexer.SLASH = 130; +FlinkSqlLexer.PERCENT = 131; +FlinkSqlLexer.DIV = 132; +FlinkSqlLexer.TILDE = 133; +FlinkSqlLexer.AMPERSAND = 134; +FlinkSqlLexer.PIPE = 135; +FlinkSqlLexer.CONCAT_PIPE = 136; +FlinkSqlLexer.HAT = 137; +FlinkSqlLexer.PERCENTLIT = 138; +FlinkSqlLexer.BUCKET = 139; +FlinkSqlLexer.OUT = 140; +FlinkSqlLexer.OF = 141; +FlinkSqlLexer.SORT = 142; +FlinkSqlLexer.CLUSTER = 143; +FlinkSqlLexer.DISTRIBUTE = 144; +FlinkSqlLexer.OVERWRITE = 145; +FlinkSqlLexer.TRANSFORM = 146; +FlinkSqlLexer.REDUCE = 147; +FlinkSqlLexer.USING = 148; +FlinkSqlLexer.SERDE = 149; +FlinkSqlLexer.SERDEPROPERTIES = 150; +FlinkSqlLexer.RECORDREADER = 151; +FlinkSqlLexer.RECORDWRITER = 152; +FlinkSqlLexer.DELIMITED = 153; +FlinkSqlLexer.FIELDS = 154; +FlinkSqlLexer.TERMINATED = 155; +FlinkSqlLexer.COLLECTION = 156; +FlinkSqlLexer.ITEMS = 157; +FlinkSqlLexer.KEYS = 158; +FlinkSqlLexer.ESCAPED = 159; +FlinkSqlLexer.LINES = 160; +FlinkSqlLexer.SEPARATED = 161; +FlinkSqlLexer.FUNCTION = 162; +FlinkSqlLexer.EXTENDED = 163; +FlinkSqlLexer.REFRESH = 164; +FlinkSqlLexer.CLEAR = 165; +FlinkSqlLexer.CACHE = 166; +FlinkSqlLexer.UNCACHE = 167; +FlinkSqlLexer.LAZY = 168; +FlinkSqlLexer.FORMATTED = 169; +FlinkSqlLexer.GLOBAL = 170; +FlinkSqlLexer.TEMPORARY = 171; +FlinkSqlLexer.OPTIONS = 172; +FlinkSqlLexer.UNSET = 173; +FlinkSqlLexer.TBLPROPERTIES = 174; +FlinkSqlLexer.DBPROPERTIES = 175; +FlinkSqlLexer.BUCKETS = 176; +FlinkSqlLexer.SKEWED = 177; +FlinkSqlLexer.STORED = 178; +FlinkSqlLexer.DIRECTORIES = 179; +FlinkSqlLexer.LOCATION = 180; +FlinkSqlLexer.EXCHANGE = 181; +FlinkSqlLexer.ARCHIVE = 182; +FlinkSqlLexer.UNARCHIVE = 183; +FlinkSqlLexer.FILEFORMAT = 184; +FlinkSqlLexer.TOUCH = 185; +FlinkSqlLexer.COMPACT = 186; +FlinkSqlLexer.CONCATENATE = 187; +FlinkSqlLexer.CHANGE = 188; +FlinkSqlLexer.CASCADE = 189; +FlinkSqlLexer.RESTRICT = 190; +FlinkSqlLexer.CLUSTERED = 191; +FlinkSqlLexer.SORTED = 192; +FlinkSqlLexer.PURGE = 193; +FlinkSqlLexer.INPUTFORMAT = 194; +FlinkSqlLexer.OUTPUTFORMAT = 195; +FlinkSqlLexer.DATABASE = 196; +FlinkSqlLexer.DATABASES = 197; +FlinkSqlLexer.DFS = 198; +FlinkSqlLexer.TRUNCATE = 199; +FlinkSqlLexer.ANALYZE = 200; +FlinkSqlLexer.COMPUTE = 201; +FlinkSqlLexer.LIST = 202; +FlinkSqlLexer.STATISTICS = 203; +FlinkSqlLexer.PARTITIONED = 204; +FlinkSqlLexer.EXTERNAL = 205; +FlinkSqlLexer.DEFINED = 206; +FlinkSqlLexer.REVOKE = 207; +FlinkSqlLexer.GRANT = 208; +FlinkSqlLexer.LOCK = 209; +FlinkSqlLexer.UNLOCK = 210; +FlinkSqlLexer.MSCK = 211; +FlinkSqlLexer.REPAIR = 212; +FlinkSqlLexer.RECOVER = 213; +FlinkSqlLexer.EXPORT = 214; +FlinkSqlLexer.IMPORT = 215; +FlinkSqlLexer.LOAD = 216; +FlinkSqlLexer.ROLE = 217; +FlinkSqlLexer.ROLES = 218; +FlinkSqlLexer.COMPACTIONS = 219; +FlinkSqlLexer.PRINCIPALS = 220; +FlinkSqlLexer.TRANSACTIONS = 221; +FlinkSqlLexer.INDEX = 222; +FlinkSqlLexer.INDEXES = 223; +FlinkSqlLexer.LOCKS = 224; +FlinkSqlLexer.OPTION = 225; +FlinkSqlLexer.ANTI = 226; +FlinkSqlLexer.LOCAL = 227; +FlinkSqlLexer.INPATH = 228; +FlinkSqlLexer.WATERMARK = 229; +FlinkSqlLexer.UNNEST = 230; +FlinkSqlLexer.MATCH_RECOGNIZE = 231; +FlinkSqlLexer.MEASURES = 232; +FlinkSqlLexer.ONE = 233; +FlinkSqlLexer.PER = 234; +FlinkSqlLexer.MATCH = 235; +FlinkSqlLexer.SKIP1 = 236; +FlinkSqlLexer.NEXT = 237; +FlinkSqlLexer.PAST = 238; +FlinkSqlLexer.PATTERN = 239; +FlinkSqlLexer.WITHIN = 240; +FlinkSqlLexer.DEFINE = 241; +FlinkSqlLexer.WS = 242; +FlinkSqlLexer.SYSTEM = 243; +FlinkSqlLexer.INCLUDING = 244; +FlinkSqlLexer.EXCLUDING = 245; +FlinkSqlLexer.CONSTRAINTS = 246; +FlinkSqlLexer.OVERWRITING = 247; +FlinkSqlLexer.GENERATED = 248; +FlinkSqlLexer.CATALOG = 249; +FlinkSqlLexer.LANGUAGE = 250; +FlinkSqlLexer.CATALOGS = 251; +FlinkSqlLexer.VIEWS = 252; +FlinkSqlLexer.STRING = 253; +FlinkSqlLexer.ARRAY = 254; +FlinkSqlLexer.MAP = 255; +FlinkSqlLexer.CHAR = 256; +FlinkSqlLexer.VARCHAR = 257; +FlinkSqlLexer.BINARY = 258; +FlinkSqlLexer.VARBINARY = 259; +FlinkSqlLexer.BYTES = 260; +FlinkSqlLexer.DECIMAL = 261; +FlinkSqlLexer.TINYINT = 262; +FlinkSqlLexer.SMALLINT = 263; +FlinkSqlLexer.INT = 264; +FlinkSqlLexer.BIGINT = 265; +FlinkSqlLexer.FLOAT = 266; +FlinkSqlLexer.DOUBLE = 267; +FlinkSqlLexer.DATE = 268; +FlinkSqlLexer.TIME = 269; +FlinkSqlLexer.TIMESTAMP = 270; +FlinkSqlLexer.MULTISET = 271; +FlinkSqlLexer.BOOLEAN = 272; +FlinkSqlLexer.RAW = 273; +FlinkSqlLexer.ROW = 274; +FlinkSqlLexer.NULL = 275; +FlinkSqlLexer.EQUAL_SYMBOL = 276; +FlinkSqlLexer.GREATER_SYMBOL = 277; +FlinkSqlLexer.LESS_SYMBOL = 278; +FlinkSqlLexer.EXCLAMATION_SYMBOL = 279; +FlinkSqlLexer.BIT_NOT_OP = 280; +FlinkSqlLexer.BIT_OR_OP = 281; +FlinkSqlLexer.BIT_AND_OP = 282; +FlinkSqlLexer.BIT_XOR_OP = 283; +FlinkSqlLexer.DOT = 284; +FlinkSqlLexer.LS_BRACKET = 285; +FlinkSqlLexer.RS_BRACKET = 286; +FlinkSqlLexer.LR_BRACKET = 287; +FlinkSqlLexer.RR_BRACKET = 288; +FlinkSqlLexer.COMMA = 289; +FlinkSqlLexer.SEMICOLON = 290; +FlinkSqlLexer.AT_SIGN = 291; +FlinkSqlLexer.SINGLE_QUOTE_SYMB = 292; +FlinkSqlLexer.DOUBLE_QUOTE_SYMB = 293; +FlinkSqlLexer.REVERSE_QUOTE_SYMB = 294; +FlinkSqlLexer.COLON_SYMB = 295; +FlinkSqlLexer.ASTERISK_SIGN = 296; +FlinkSqlLexer.UNDERLINE_SIGN = 297; +FlinkSqlLexer.HYPNEN_SIGN = 298; +FlinkSqlLexer.ADD_SIGN = 299; +FlinkSqlLexer.PENCENT_SIGN = 300; +FlinkSqlLexer.DOUBLE_VERTICAL_SIGN = 301; +FlinkSqlLexer.DOUBLE_HYPNEN_SIGN = 302; +FlinkSqlLexer.SLASH_SIGN = 303; +FlinkSqlLexer.DOT_ID = 304; +FlinkSqlLexer.STRING_LITERAL = 305; +FlinkSqlLexer.DIG_LITERAL = 306; +FlinkSqlLexer.REAL_LITERAL = 307; +FlinkSqlLexer.BIT_STRING = 308; +FlinkSqlLexer.ID = 309; -FlinkSqlLexer.MYSQLCOMMENT = 2; - -FlinkSqlLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN", - "MYSQLCOMMENT" ]; +FlinkSqlLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; FlinkSqlLexer.prototype.modeNames = [ "DEFAULT_MODE" ]; -FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, null, "'SELECT'", +FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, "'SELECT'", "'FROM'", "'ADD'", "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", "'GROUP'", "'BY'", "'GROUPING'", @@ -2356,16 +2220,12 @@ FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, null, "'SELECT' "'MATCH_RECOGNIZE'", "'MEASURES'", "'ONE'", "'PER'", "'MATCH'", "'SKIP1'", "'NEXT'", "'PAST'", "'PATTERN'", - "'WITHIN'", "'DEFINE'", "'BIGINT_LITERAL'", - "'SMALLINT_LITERAL'", "'TINYINT_LITERAL'", - "'INTEGER_VALUE'", "'DECIMAL_VALUE'", - "'DOUBLE_LITERAL'", "'BIGDECIMAL_LITERAL'", - "'IDENTIFIER'", "'BACKQUOTED_IDENTIFIER'", - "'SIMPLE_COMMENT'", "'BRACKETED_EMPTY_COMMENT'", - "'BRACKETED_COMMENT'", "'WS'", - "'UNRECOGNIZED'", null, null, null, - null, "'SYSTEM'", "'STRING'", "'ARRAY'", - "'MAP'", "'CHAR'", "'VARCHAR'", + "'WITHIN'", "'DEFINE'", "'WS'", + "'SYSTEM'", "'INCLUDING'", "'EXCLUDING'", + "'CONSTRAINTS'", "'OVERWRITING'", + "'GENERATED'", "'CATALOG'", "'LANGUAGE'", + "'CATALOGS'", "'VIEWS'", "'STRING'", + "'ARRAY'", "'MAP'", "'CHAR'", "'VARCHAR'", "'BINARY'", "'VARBINARY'", "'BYTES'", "'DECIMAL'", "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", @@ -2375,30 +2235,29 @@ FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, null, "'SELECT' "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'['", "']'", "'('", "')'", "','", "';'", "'@'", - "'0'", "'1'", "'2'", "'''", "'\"'", - "'`'", "':'", "'*'", "'_'", "'-'", - "'+'", "'%'", "'--'", "'/'" ]; + "'''", "'\"'", "'`'", "':'", "'*'", + "'_'", "'-'", "'+'", "'%'", "'||'", + "'--'", "'/'" ]; -FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", - "COMMENT_INPUT", "LINE_COMMENT", - "SELECT", "FROM", "ADD", "AS", - "ALL", "ANY", "DISTINCT", "WHERE", - "GROUP", "BY", "GROUPING", "SETS", - "CUBE", "ROLLUP", "ORDER", "HAVING", - "LIMIT", "AT", "OR", "AND", "IN", - "NOT", "NO", "EXISTS", "BETWEEN", - "LIKE", "RLIKE", "IS", "TRUE", - "FALSE", "NULLS", "ASC", "DESC", - "FOR", "INTERVAL", "CASE", "WHEN", - "THEN", "ELSE", "END", "JOIN", - "CROSS", "OUTER", "INNER", "LEFT", - "SEMI", "RIGHT", "FULL", "NATURAL", - "ON", "PIVOT", "LATERAL", "WINDOW", - "OVER", "PARTITION", "RANGE", - "ROWS", "UNBOUNDED", "PRECEDING", - "FOLLOWING", "CURRENT", "FIRST", - "AFTER", "LAST", "WITH", "VALUES", - "CREATE", "TABLE", "DIRECTORY", +FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "COMMENT_INPUT", + "LINE_COMMENT", "SELECT", "FROM", + "ADD", "AS", "ALL", "ANY", "DISTINCT", + "WHERE", "GROUP", "BY", "GROUPING", + "SETS", "CUBE", "ROLLUP", "ORDER", + "HAVING", "LIMIT", "AT", "OR", + "AND", "IN", "NOT", "NO", "EXISTS", + "BETWEEN", "LIKE", "RLIKE", "IS", + "TRUE", "FALSE", "NULLS", "ASC", + "DESC", "FOR", "INTERVAL", "CASE", + "WHEN", "THEN", "ELSE", "END", + "JOIN", "CROSS", "OUTER", "INNER", + "LEFT", "SEMI", "RIGHT", "FULL", + "NATURAL", "ON", "PIVOT", "LATERAL", + "WINDOW", "OVER", "PARTITION", + "RANGE", "ROWS", "UNBOUNDED", + "PRECEDING", "FOLLOWING", "CURRENT", + "FIRST", "AFTER", "LAST", "WITH", + "VALUES", "CREATE", "TABLE", "DIRECTORY", "VIEW", "REPLACE", "INSERT", "DELETE", "INTO", "DESCRIBE", "EXPLAIN", "FORMAT", "LOGICAL", "CODEGEN", @@ -2449,49 +2308,43 @@ FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "UNNEST", "MATCH_RECOGNIZE", "MEASURES", "ONE", "PER", "MATCH", "SKIP1", "NEXT", "PAST", "PATTERN", "WITHIN", - "DEFINE", "BIGINT_LITERAL", "SMALLINT_LITERAL", - "TINYINT_LITERAL", "INTEGER_VALUE", - "DECIMAL_VALUE", "DOUBLE_LITERAL", - "BIGDECIMAL_LITERAL", "IDENTIFIER", - "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", - "BRACKETED_EMPTY_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED", "REVERSE_QUOTE_ID", - "DOUBLE_QUOTE_ID", "DOT_ID", "ID", - "SYSTEM", "STRING", "ARRAY", "MAP", - "CHAR", "VARCHAR", "BINARY", "VARBINARY", - "BYTES", "DECIMAL", "TINYINT", - "SMALLINT", "INT", "BIGINT", "FLOAT", - "DOUBLE", "DATE", "TIME", "TIMESTAMP", - "MULTISET", "BOOLEAN", "RAW", - "ROW", "NULL", "EQUAL_SYMBOL", - "GREATER_SYMBOL", "LESS_SYMBOL", - "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", - "DOT", "LS_BRACKET", "RS_BRACKET", - "LR_BRACKET", "RR_BRACKET", "COMMA", - "SEMICOLON", "AT_SIGN", "ZERO_DECIMAL", - "ONE_DECIMAL", "TWO_DECIMAL", + "DEFINE", "WS", "SYSTEM", "INCLUDING", + "EXCLUDING", "CONSTRAINTS", "OVERWRITING", + "GENERATED", "CATALOG", "LANGUAGE", + "CATALOGS", "VIEWS", "STRING", + "ARRAY", "MAP", "CHAR", "VARCHAR", + "BINARY", "VARBINARY", "BYTES", + "DECIMAL", "TINYINT", "SMALLINT", + "INT", "BIGINT", "FLOAT", "DOUBLE", + "DATE", "TIME", "TIMESTAMP", "MULTISET", + "BOOLEAN", "RAW", "ROW", "NULL", + "EQUAL_SYMBOL", "GREATER_SYMBOL", + "LESS_SYMBOL", "EXCLAMATION_SYMBOL", + "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", + "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", + "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", - "STRING_LITERAL", "DECIMAL_LITERAL", - "REAL_LITERAL", "BIT_STRING", - "IDENTIFIER_BASE" ]; + "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", + "SLASH_SIGN", "DOT_ID", "STRING_LITERAL", + "DIG_LITERAL", "REAL_LITERAL", + "BIT_STRING", "ID" ]; -FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", - "LINE_COMMENT", "SELECT", "FROM", - "ADD", "AS", "ALL", "ANY", "DISTINCT", - "WHERE", "GROUP", "BY", "GROUPING", - "SETS", "CUBE", "ROLLUP", "ORDER", - "HAVING", "LIMIT", "AT", "OR", "AND", - "IN", "NOT", "NO", "EXISTS", "BETWEEN", - "LIKE", "RLIKE", "IS", "TRUE", "FALSE", - "NULLS", "ASC", "DESC", "FOR", "INTERVAL", - "CASE", "WHEN", "THEN", "ELSE", "END", - "JOIN", "CROSS", "OUTER", "INNER", - "LEFT", "SEMI", "RIGHT", "FULL", "NATURAL", +FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "COMMENT_INPUT", "LINE_COMMENT", + "SELECT", "FROM", "ADD", "AS", "ALL", + "ANY", "DISTINCT", "WHERE", "GROUP", + "BY", "GROUPING", "SETS", "CUBE", + "ROLLUP", "ORDER", "HAVING", "LIMIT", + "AT", "OR", "AND", "IN", "NOT", "NO", + "EXISTS", "BETWEEN", "LIKE", "RLIKE", + "IS", "TRUE", "FALSE", "NULLS", "ASC", + "DESC", "FOR", "INTERVAL", "CASE", + "WHEN", "THEN", "ELSE", "END", "JOIN", + "CROSS", "OUTER", "INNER", "LEFT", + "SEMI", "RIGHT", "FULL", "NATURAL", "ON", "PIVOT", "LATERAL", "WINDOW", "OVER", "PARTITION", "RANGE", "ROWS", "UNBOUNDED", "PRECEDING", "FOLLOWING", @@ -2543,15 +2396,10 @@ FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_IN "UNNEST", "MATCH_RECOGNIZE", "MEASURES", "ONE", "PER", "MATCH", "SKIP1", "NEXT", "PAST", "PATTERN", "WITHIN", "DEFINE", - "BIGINT_LITERAL", "SMALLINT_LITERAL", - "TINYINT_LITERAL", "INTEGER_VALUE", - "DECIMAL_VALUE", "DOUBLE_LITERAL", - "BIGDECIMAL_LITERAL", "IDENTIFIER", - "BACKQUOTED_IDENTIFIER", "SIMPLE_COMMENT", - "BRACKETED_EMPTY_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED", "REVERSE_QUOTE_ID", - "DOUBLE_QUOTE_ID", "DOT_ID", "ID", - "SYSTEM", "STRING", "ARRAY", "MAP", + "WS", "SYSTEM", "INCLUDING", "EXCLUDING", + "CONSTRAINTS", "OVERWRITING", "GENERATED", + "CATALOG", "LANGUAGE", "CATALOGS", + "VIEWS", "STRING", "ARRAY", "MAP", "CHAR", "VARCHAR", "BINARY", "VARBINARY", "BYTES", "DECIMAL", "TINYINT", "SMALLINT", "INT", "BIGINT", "FLOAT", "DOUBLE", @@ -2561,15 +2409,14 @@ FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_IN "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", - "COMMA", "SEMICOLON", "AT_SIGN", "ZERO_DECIMAL", - "ONE_DECIMAL", "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", + "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", - "STRING_LITERAL", "DECIMAL_LITERAL", - "REAL_LITERAL", "BIT_STRING", "IDENTIFIER_BASE", - "EXPONENT_NUM_PART", "ID_LITERAL", + "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", + "SLASH_SIGN", "DOT_ID", "STRING_LITERAL", + "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", + "ID", "EXPONENT_NUM_PART", "ID_LITERAL", "DEC_DIGIT", "DEC_LETTER", "DQUOTA_STRING", "SQUOTA_STRING", "BIT_STRING_L", "BQUOTA_STRING" ]; diff --git a/src/lib/flinksql/FlinkSqlLexer.tokens b/src/lib/flinksql/FlinkSqlLexer.tokens index ab0f88e..ac05a70 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -1,625 +1,609 @@ SPACE=1 -SPEC_MYSQL_COMMENT=2 -COMMENT_INPUT=3 -LINE_COMMENT=4 -SELECT=5 -FROM=6 -ADD=7 -AS=8 -ALL=9 -ANY=10 -DISTINCT=11 -WHERE=12 -GROUP=13 -BY=14 -GROUPING=15 -SETS=16 -CUBE=17 -ROLLUP=18 -ORDER=19 -HAVING=20 -LIMIT=21 -AT=22 -OR=23 -AND=24 -IN=25 -NOT=26 -NO=27 -EXISTS=28 -BETWEEN=29 -LIKE=30 -RLIKE=31 -IS=32 -TRUE=33 -FALSE=34 -NULLS=35 -ASC=36 -DESC=37 -FOR=38 -INTERVAL=39 -CASE=40 -WHEN=41 -THEN=42 -ELSE=43 -END=44 -JOIN=45 -CROSS=46 -OUTER=47 -INNER=48 -LEFT=49 -SEMI=50 -RIGHT=51 -FULL=52 -NATURAL=53 -ON=54 -PIVOT=55 -LATERAL=56 -WINDOW=57 -OVER=58 -PARTITION=59 -RANGE=60 -ROWS=61 -UNBOUNDED=62 -PRECEDING=63 -FOLLOWING=64 -CURRENT=65 -FIRST=66 -AFTER=67 -LAST=68 -WITH=69 -VALUES=70 -CREATE=71 -TABLE=72 -DIRECTORY=73 -VIEW=74 -REPLACE=75 -INSERT=76 -DELETE=77 -INTO=78 -DESCRIBE=79 -EXPLAIN=80 -FORMAT=81 -LOGICAL=82 -CODEGEN=83 -COST=84 -CAST=85 -SHOW=86 -TABLES=87 -COLUMNS=88 -COLUMN=89 -USE=90 -PARTITIONS=91 -FUNCTIONS=92 -DROP=93 -UNION=94 -EXCEPT=95 -SETMINUS=96 -INTERSECT=97 -TO=98 -TABLESAMPLE=99 -STRATIFY=100 -ALTER=101 -RENAME=102 -STRUCT=103 -COMMENT=104 -SET=105 -RESET=106 -DATA=107 -START=108 -TRANSACTION=109 -COMMIT=110 -ROLLBACK=111 -MACRO=112 -IGNORE=113 -BOTH=114 -LEADING=115 -TRAILING=116 -IF=117 -POSITION=118 -EXTRACT=119 -EQ=120 -NSEQ=121 -NEQ=122 -NEQJ=123 -LT=124 -LTE=125 -GT=126 -GTE=127 -PLUS=128 -MINUS=129 -ASTERISK=130 -SLASH=131 -PERCENT=132 -DIV=133 -TILDE=134 -AMPERSAND=135 -PIPE=136 -CONCAT_PIPE=137 -HAT=138 -PERCENTLIT=139 -BUCKET=140 -OUT=141 -OF=142 -SORT=143 -CLUSTER=144 -DISTRIBUTE=145 -OVERWRITE=146 -TRANSFORM=147 -REDUCE=148 -USING=149 -SERDE=150 -SERDEPROPERTIES=151 -RECORDREADER=152 -RECORDWRITER=153 -DELIMITED=154 -FIELDS=155 -TERMINATED=156 -COLLECTION=157 -ITEMS=158 -KEYS=159 -ESCAPED=160 -LINES=161 -SEPARATED=162 -FUNCTION=163 -EXTENDED=164 -REFRESH=165 -CLEAR=166 -CACHE=167 -UNCACHE=168 -LAZY=169 -FORMATTED=170 -GLOBAL=171 -TEMPORARY=172 -OPTIONS=173 -UNSET=174 -TBLPROPERTIES=175 -DBPROPERTIES=176 -BUCKETS=177 -SKEWED=178 -STORED=179 -DIRECTORIES=180 -LOCATION=181 -EXCHANGE=182 -ARCHIVE=183 -UNARCHIVE=184 -FILEFORMAT=185 -TOUCH=186 -COMPACT=187 -CONCATENATE=188 -CHANGE=189 -CASCADE=190 -RESTRICT=191 -CLUSTERED=192 -SORTED=193 -PURGE=194 -INPUTFORMAT=195 -OUTPUTFORMAT=196 -DATABASE=197 -DATABASES=198 -DFS=199 -TRUNCATE=200 -ANALYZE=201 -COMPUTE=202 -LIST=203 -STATISTICS=204 -PARTITIONED=205 -EXTERNAL=206 -DEFINED=207 -REVOKE=208 -GRANT=209 -LOCK=210 -UNLOCK=211 -MSCK=212 -REPAIR=213 -RECOVER=214 -EXPORT=215 -IMPORT=216 -LOAD=217 -ROLE=218 -ROLES=219 -COMPACTIONS=220 -PRINCIPALS=221 -TRANSACTIONS=222 -INDEX=223 -INDEXES=224 -LOCKS=225 -OPTION=226 -ANTI=227 -LOCAL=228 -INPATH=229 -WATERMARK=230 -UNNEST=231 -MATCH_RECOGNIZE=232 -MEASURES=233 -ONE=234 -PER=235 -MATCH=236 -SKIP1=237 -NEXT=238 -PAST=239 -PATTERN=240 -WITHIN=241 -DEFINE=242 -BIGINT_LITERAL=243 -SMALLINT_LITERAL=244 -TINYINT_LITERAL=245 -INTEGER_VALUE=246 -DECIMAL_VALUE=247 -DOUBLE_LITERAL=248 -BIGDECIMAL_LITERAL=249 -IDENTIFIER=250 -BACKQUOTED_IDENTIFIER=251 -SIMPLE_COMMENT=252 -BRACKETED_EMPTY_COMMENT=253 -BRACKETED_COMMENT=254 -WS=255 -UNRECOGNIZED=256 -REVERSE_QUOTE_ID=257 -DOUBLE_QUOTE_ID=258 -DOT_ID=259 -ID=260 -SYSTEM=261 -STRING=262 -ARRAY=263 -MAP=264 -CHAR=265 -VARCHAR=266 -BINARY=267 -VARBINARY=268 -BYTES=269 -DECIMAL=270 -TINYINT=271 -SMALLINT=272 -INT=273 -BIGINT=274 -FLOAT=275 -DOUBLE=276 -DATE=277 -TIME=278 -TIMESTAMP=279 -MULTISET=280 -BOOLEAN=281 -RAW=282 -ROW=283 -NULL=284 -EQUAL_SYMBOL=285 -GREATER_SYMBOL=286 -LESS_SYMBOL=287 -EXCLAMATION_SYMBOL=288 -BIT_NOT_OP=289 -BIT_OR_OP=290 -BIT_AND_OP=291 -BIT_XOR_OP=292 -DOT=293 -LS_BRACKET=294 -RS_BRACKET=295 -LR_BRACKET=296 -RR_BRACKET=297 -COMMA=298 -SEMICOLON=299 -AT_SIGN=300 -ZERO_DECIMAL=301 -ONE_DECIMAL=302 -TWO_DECIMAL=303 -SINGLE_QUOTE_SYMB=304 -DOUBLE_QUOTE_SYMB=305 -REVERSE_QUOTE_SYMB=306 -COLON_SYMB=307 -ASTERISK_SIGN=308 -UNDERLINE_SIGN=309 -HYPNEN_SIGN=310 -ADD_SIGN=311 -PENCENT_SIGN=312 -DOUBLE_HYPNEN_SIGN=313 -SLASH_SIGN=314 -STRING_LITERAL=315 -DECIMAL_LITERAL=316 -REAL_LITERAL=317 -BIT_STRING=318 -IDENTIFIER_BASE=319 -'SELECT'=5 -'FROM'=6 -'ADD'=7 -'AS'=8 -'ALL'=9 -'ANY'=10 -'DISTINCT'=11 -'WHERE'=12 -'GROUP'=13 -'BY'=14 -'GROUPING'=15 -'SETS'=16 -'CUBE'=17 -'ROLLUP'=18 -'ORDER'=19 -'HAVING'=20 -'LIMIT'=21 -'AT'=22 -'OR'=23 -'AND'=24 -'IN'=25 -'NOT'=26 -'NO'=27 -'EXISTS'=28 -'BETWEEN'=29 -'LIKE'=30 -'RLIKE'=31 -'IS'=32 -'TRUE'=33 -'FALSE'=34 -'NULLS'=35 -'ASC'=36 -'DESC'=37 -'FOR'=38 -'INTERVAL'=39 -'CASE'=40 -'WHEN'=41 -'THEN'=42 -'ELSE'=43 -'END'=44 -'JOIN'=45 -'CROSS'=46 -'OUTER'=47 -'INNER'=48 -'LEFT'=49 -'SEMI'=50 -'RIGHT'=51 -'FULL'=52 -'NATURAL'=53 -'ON'=54 -'PIVOT'=55 -'LATERAL'=56 -'WINDOW'=57 -'OVER'=58 -'PARTITION'=59 -'RANGE'=60 -'ROWS'=61 -'UNBOUNDED'=62 -'PRECEDING'=63 -'FOLLOWING'=64 -'CURRENT'=65 -'FIRST'=66 -'AFTER'=67 -'LAST'=68 -'WITH'=69 -'VALUES'=70 -'CREATE'=71 -'TABLE'=72 -'DIRECTORY'=73 -'VIEW'=74 -'REPLACE'=75 -'INSERT'=76 -'DELETE'=77 -'INTO'=78 -'DESCRIBE'=79 -'EXPLAIN'=80 -'FORMAT'=81 -'LOGICAL'=82 -'CODEGEN'=83 -'COST'=84 -'CAST'=85 -'SHOW'=86 -'TABLES'=87 -'COLUMNS'=88 -'COLUMN'=89 -'USE'=90 -'PARTITIONS'=91 -'FUNCTIONS'=92 -'DROP'=93 -'UNION'=94 -'EXCEPT'=95 -'SETMINUS'=96 -'INTERSECT'=97 -'TO'=98 -'TABLESAMPLE'=99 -'STRATIFY'=100 -'ALTER'=101 -'RENAME'=102 -'STRUCT'=103 -'COMMENT'=104 -'SET'=105 -'RESET'=106 -'DATA'=107 -'START'=108 -'TRANSACTION'=109 -'COMMIT'=110 -'ROLLBACK'=111 -'MACRO'=112 -'IGNORE'=113 -'BOTH'=114 -'LEADING'=115 -'TRAILING'=116 -'IF'=117 -'POSITION'=118 -'EXTRACT'=119 -'EQ'=120 -'NSEQ'=121 -'NEQ'=122 -'NEQJ'=123 -'LT'=124 -'LTE'=125 -'GT'=126 -'GTE'=127 -'PLUS'=128 -'MINUS'=129 -'ASTERISK'=130 -'SLASH'=131 -'PERCENT'=132 -'DIV'=133 -'TILDE'=134 -'AMPERSAND'=135 -'PIPE'=136 -'CONCAT_PIPE'=137 -'HAT'=138 -'PERCENTLIT'=139 -'BUCKET'=140 -'OUT'=141 -'OF'=142 -'SORT'=143 -'CLUSTER'=144 -'DISTRIBUTE'=145 -'OVERWRITE'=146 -'TRANSFORM'=147 -'REDUCE'=148 -'USING'=149 -'SERDE'=150 -'SERDEPROPERTIES'=151 -'RECORDREADER'=152 -'RECORDWRITER'=153 -'DELIMITED'=154 -'FIELDS'=155 -'TERMINATED'=156 -'COLLECTION'=157 -'ITEMS'=158 -'KEYS'=159 -'ESCAPED'=160 -'LINES'=161 -'SEPARATED'=162 -'FUNCTION'=163 -'EXTENDED'=164 -'REFRESH'=165 -'CLEAR'=166 -'CACHE'=167 -'UNCACHE'=168 -'LAZY'=169 -'FORMATTED'=170 -'GLOBAL'=171 -'TEMPORARY'=172 -'OPTIONS'=173 -'UNSET'=174 -'TBLPROPERTIES'=175 -'DBPROPERTIES'=176 -'BUCKETS'=177 -'SKEWED'=178 -'STORED'=179 -'DIRECTORIES'=180 -'LOCATION'=181 -'EXCHANGE'=182 -'ARCHIVE'=183 -'UNARCHIVE'=184 -'FILEFORMAT'=185 -'TOUCH'=186 -'COMPACT'=187 -'CONCATENATE'=188 -'CHANGE'=189 -'CASCADE'=190 -'RESTRICT'=191 -'CLUSTERED'=192 -'SORTED'=193 -'PURGE'=194 -'INPUTFORMAT'=195 -'OUTPUTFORMAT'=196 -'DATABASE'=197 -'DATABASES'=198 -'DFS'=199 -'TRUNCATE'=200 -'ANALYZE'=201 -'COMPUTE'=202 -'LIST'=203 -'STATISTICS'=204 -'PARTITIONED'=205 -'EXTERNAL'=206 -'DEFINED'=207 -'REVOKE'=208 -'GRANT'=209 -'LOCK'=210 -'UNLOCK'=211 -'MSCK'=212 -'REPAIR'=213 -'RECOVER'=214 -'EXPORT'=215 -'IMPORT'=216 -'LOAD'=217 -'ROLE'=218 -'ROLES'=219 -'COMPACTIONS'=220 -'PRINCIPALS'=221 -'TRANSACTIONS'=222 -'INDEX'=223 -'INDEXES'=224 -'LOCKS'=225 -'OPTION'=226 -'ANTI'=227 -'LOCAL'=228 -'INPATH'=229 -'WATERMARK'=230 -'UNNEST'=231 -'MATCH_RECOGNIZE'=232 -'MEASURES'=233 -'ONE'=234 -'PER'=235 -'MATCH'=236 -'SKIP1'=237 -'NEXT'=238 -'PAST'=239 -'PATTERN'=240 -'WITHIN'=241 -'DEFINE'=242 -'BIGINT_LITERAL'=243 -'SMALLINT_LITERAL'=244 -'TINYINT_LITERAL'=245 -'INTEGER_VALUE'=246 -'DECIMAL_VALUE'=247 -'DOUBLE_LITERAL'=248 -'BIGDECIMAL_LITERAL'=249 -'IDENTIFIER'=250 -'BACKQUOTED_IDENTIFIER'=251 -'SIMPLE_COMMENT'=252 -'BRACKETED_EMPTY_COMMENT'=253 -'BRACKETED_COMMENT'=254 -'WS'=255 -'UNRECOGNIZED'=256 -'SYSTEM'=261 -'STRING'=262 -'ARRAY'=263 -'MAP'=264 -'CHAR'=265 -'VARCHAR'=266 -'BINARY'=267 -'VARBINARY'=268 -'BYTES'=269 -'DECIMAL'=270 -'TINYINT'=271 -'SMALLINT'=272 -'INT'=273 -'BIGINT'=274 -'FLOAT'=275 -'DOUBLE'=276 -'DATE'=277 -'TIME'=278 -'TIMESTAMP'=279 -'MULTISET'=280 -'BOOLEAN'=281 -'RAW'=282 -'ROW'=283 -'NULL'=284 -'='=285 -'>'=286 -'<'=287 -'!'=288 -'~'=289 -'|'=290 -'&'=291 -'^'=292 -'.'=293 -'['=294 -']'=295 -'('=296 -')'=297 -','=298 -';'=299 -'@'=300 -'0'=301 -'1'=302 -'2'=303 -'\''=304 -'"'=305 -'`'=306 -':'=307 -'*'=308 -'_'=309 -'-'=310 -'+'=311 -'%'=312 -'--'=313 -'/'=314 +COMMENT_INPUT=2 +LINE_COMMENT=3 +SELECT=4 +FROM=5 +ADD=6 +AS=7 +ALL=8 +ANY=9 +DISTINCT=10 +WHERE=11 +GROUP=12 +BY=13 +GROUPING=14 +SETS=15 +CUBE=16 +ROLLUP=17 +ORDER=18 +HAVING=19 +LIMIT=20 +AT=21 +OR=22 +AND=23 +IN=24 +NOT=25 +NO=26 +EXISTS=27 +BETWEEN=28 +LIKE=29 +RLIKE=30 +IS=31 +TRUE=32 +FALSE=33 +NULLS=34 +ASC=35 +DESC=36 +FOR=37 +INTERVAL=38 +CASE=39 +WHEN=40 +THEN=41 +ELSE=42 +END=43 +JOIN=44 +CROSS=45 +OUTER=46 +INNER=47 +LEFT=48 +SEMI=49 +RIGHT=50 +FULL=51 +NATURAL=52 +ON=53 +PIVOT=54 +LATERAL=55 +WINDOW=56 +OVER=57 +PARTITION=58 +RANGE=59 +ROWS=60 +UNBOUNDED=61 +PRECEDING=62 +FOLLOWING=63 +CURRENT=64 +FIRST=65 +AFTER=66 +LAST=67 +WITH=68 +VALUES=69 +CREATE=70 +TABLE=71 +DIRECTORY=72 +VIEW=73 +REPLACE=74 +INSERT=75 +DELETE=76 +INTO=77 +DESCRIBE=78 +EXPLAIN=79 +FORMAT=80 +LOGICAL=81 +CODEGEN=82 +COST=83 +CAST=84 +SHOW=85 +TABLES=86 +COLUMNS=87 +COLUMN=88 +USE=89 +PARTITIONS=90 +FUNCTIONS=91 +DROP=92 +UNION=93 +EXCEPT=94 +SETMINUS=95 +INTERSECT=96 +TO=97 +TABLESAMPLE=98 +STRATIFY=99 +ALTER=100 +RENAME=101 +STRUCT=102 +COMMENT=103 +SET=104 +RESET=105 +DATA=106 +START=107 +TRANSACTION=108 +COMMIT=109 +ROLLBACK=110 +MACRO=111 +IGNORE=112 +BOTH=113 +LEADING=114 +TRAILING=115 +IF=116 +POSITION=117 +EXTRACT=118 +EQ=119 +NSEQ=120 +NEQ=121 +NEQJ=122 +LT=123 +LTE=124 +GT=125 +GTE=126 +PLUS=127 +MINUS=128 +ASTERISK=129 +SLASH=130 +PERCENT=131 +DIV=132 +TILDE=133 +AMPERSAND=134 +PIPE=135 +CONCAT_PIPE=136 +HAT=137 +PERCENTLIT=138 +BUCKET=139 +OUT=140 +OF=141 +SORT=142 +CLUSTER=143 +DISTRIBUTE=144 +OVERWRITE=145 +TRANSFORM=146 +REDUCE=147 +USING=148 +SERDE=149 +SERDEPROPERTIES=150 +RECORDREADER=151 +RECORDWRITER=152 +DELIMITED=153 +FIELDS=154 +TERMINATED=155 +COLLECTION=156 +ITEMS=157 +KEYS=158 +ESCAPED=159 +LINES=160 +SEPARATED=161 +FUNCTION=162 +EXTENDED=163 +REFRESH=164 +CLEAR=165 +CACHE=166 +UNCACHE=167 +LAZY=168 +FORMATTED=169 +GLOBAL=170 +TEMPORARY=171 +OPTIONS=172 +UNSET=173 +TBLPROPERTIES=174 +DBPROPERTIES=175 +BUCKETS=176 +SKEWED=177 +STORED=178 +DIRECTORIES=179 +LOCATION=180 +EXCHANGE=181 +ARCHIVE=182 +UNARCHIVE=183 +FILEFORMAT=184 +TOUCH=185 +COMPACT=186 +CONCATENATE=187 +CHANGE=188 +CASCADE=189 +RESTRICT=190 +CLUSTERED=191 +SORTED=192 +PURGE=193 +INPUTFORMAT=194 +OUTPUTFORMAT=195 +DATABASE=196 +DATABASES=197 +DFS=198 +TRUNCATE=199 +ANALYZE=200 +COMPUTE=201 +LIST=202 +STATISTICS=203 +PARTITIONED=204 +EXTERNAL=205 +DEFINED=206 +REVOKE=207 +GRANT=208 +LOCK=209 +UNLOCK=210 +MSCK=211 +REPAIR=212 +RECOVER=213 +EXPORT=214 +IMPORT=215 +LOAD=216 +ROLE=217 +ROLES=218 +COMPACTIONS=219 +PRINCIPALS=220 +TRANSACTIONS=221 +INDEX=222 +INDEXES=223 +LOCKS=224 +OPTION=225 +ANTI=226 +LOCAL=227 +INPATH=228 +WATERMARK=229 +UNNEST=230 +MATCH_RECOGNIZE=231 +MEASURES=232 +ONE=233 +PER=234 +MATCH=235 +SKIP1=236 +NEXT=237 +PAST=238 +PATTERN=239 +WITHIN=240 +DEFINE=241 +WS=242 +SYSTEM=243 +INCLUDING=244 +EXCLUDING=245 +CONSTRAINTS=246 +OVERWRITING=247 +GENERATED=248 +CATALOG=249 +LANGUAGE=250 +CATALOGS=251 +VIEWS=252 +STRING=253 +ARRAY=254 +MAP=255 +CHAR=256 +VARCHAR=257 +BINARY=258 +VARBINARY=259 +BYTES=260 +DECIMAL=261 +TINYINT=262 +SMALLINT=263 +INT=264 +BIGINT=265 +FLOAT=266 +DOUBLE=267 +DATE=268 +TIME=269 +TIMESTAMP=270 +MULTISET=271 +BOOLEAN=272 +RAW=273 +ROW=274 +NULL=275 +EQUAL_SYMBOL=276 +GREATER_SYMBOL=277 +LESS_SYMBOL=278 +EXCLAMATION_SYMBOL=279 +BIT_NOT_OP=280 +BIT_OR_OP=281 +BIT_AND_OP=282 +BIT_XOR_OP=283 +DOT=284 +LS_BRACKET=285 +RS_BRACKET=286 +LR_BRACKET=287 +RR_BRACKET=288 +COMMA=289 +SEMICOLON=290 +AT_SIGN=291 +SINGLE_QUOTE_SYMB=292 +DOUBLE_QUOTE_SYMB=293 +REVERSE_QUOTE_SYMB=294 +COLON_SYMB=295 +ASTERISK_SIGN=296 +UNDERLINE_SIGN=297 +HYPNEN_SIGN=298 +ADD_SIGN=299 +PENCENT_SIGN=300 +DOUBLE_VERTICAL_SIGN=301 +DOUBLE_HYPNEN_SIGN=302 +SLASH_SIGN=303 +DOT_ID=304 +STRING_LITERAL=305 +DIG_LITERAL=306 +REAL_LITERAL=307 +BIT_STRING=308 +ID=309 +'SELECT'=4 +'FROM'=5 +'ADD'=6 +'AS'=7 +'ALL'=8 +'ANY'=9 +'DISTINCT'=10 +'WHERE'=11 +'GROUP'=12 +'BY'=13 +'GROUPING'=14 +'SETS'=15 +'CUBE'=16 +'ROLLUP'=17 +'ORDER'=18 +'HAVING'=19 +'LIMIT'=20 +'AT'=21 +'OR'=22 +'AND'=23 +'IN'=24 +'NOT'=25 +'NO'=26 +'EXISTS'=27 +'BETWEEN'=28 +'LIKE'=29 +'RLIKE'=30 +'IS'=31 +'TRUE'=32 +'FALSE'=33 +'NULLS'=34 +'ASC'=35 +'DESC'=36 +'FOR'=37 +'INTERVAL'=38 +'CASE'=39 +'WHEN'=40 +'THEN'=41 +'ELSE'=42 +'END'=43 +'JOIN'=44 +'CROSS'=45 +'OUTER'=46 +'INNER'=47 +'LEFT'=48 +'SEMI'=49 +'RIGHT'=50 +'FULL'=51 +'NATURAL'=52 +'ON'=53 +'PIVOT'=54 +'LATERAL'=55 +'WINDOW'=56 +'OVER'=57 +'PARTITION'=58 +'RANGE'=59 +'ROWS'=60 +'UNBOUNDED'=61 +'PRECEDING'=62 +'FOLLOWING'=63 +'CURRENT'=64 +'FIRST'=65 +'AFTER'=66 +'LAST'=67 +'WITH'=68 +'VALUES'=69 +'CREATE'=70 +'TABLE'=71 +'DIRECTORY'=72 +'VIEW'=73 +'REPLACE'=74 +'INSERT'=75 +'DELETE'=76 +'INTO'=77 +'DESCRIBE'=78 +'EXPLAIN'=79 +'FORMAT'=80 +'LOGICAL'=81 +'CODEGEN'=82 +'COST'=83 +'CAST'=84 +'SHOW'=85 +'TABLES'=86 +'COLUMNS'=87 +'COLUMN'=88 +'USE'=89 +'PARTITIONS'=90 +'FUNCTIONS'=91 +'DROP'=92 +'UNION'=93 +'EXCEPT'=94 +'SETMINUS'=95 +'INTERSECT'=96 +'TO'=97 +'TABLESAMPLE'=98 +'STRATIFY'=99 +'ALTER'=100 +'RENAME'=101 +'STRUCT'=102 +'COMMENT'=103 +'SET'=104 +'RESET'=105 +'DATA'=106 +'START'=107 +'TRANSACTION'=108 +'COMMIT'=109 +'ROLLBACK'=110 +'MACRO'=111 +'IGNORE'=112 +'BOTH'=113 +'LEADING'=114 +'TRAILING'=115 +'IF'=116 +'POSITION'=117 +'EXTRACT'=118 +'EQ'=119 +'NSEQ'=120 +'NEQ'=121 +'NEQJ'=122 +'LT'=123 +'LTE'=124 +'GT'=125 +'GTE'=126 +'PLUS'=127 +'MINUS'=128 +'ASTERISK'=129 +'SLASH'=130 +'PERCENT'=131 +'DIV'=132 +'TILDE'=133 +'AMPERSAND'=134 +'PIPE'=135 +'CONCAT_PIPE'=136 +'HAT'=137 +'PERCENTLIT'=138 +'BUCKET'=139 +'OUT'=140 +'OF'=141 +'SORT'=142 +'CLUSTER'=143 +'DISTRIBUTE'=144 +'OVERWRITE'=145 +'TRANSFORM'=146 +'REDUCE'=147 +'USING'=148 +'SERDE'=149 +'SERDEPROPERTIES'=150 +'RECORDREADER'=151 +'RECORDWRITER'=152 +'DELIMITED'=153 +'FIELDS'=154 +'TERMINATED'=155 +'COLLECTION'=156 +'ITEMS'=157 +'KEYS'=158 +'ESCAPED'=159 +'LINES'=160 +'SEPARATED'=161 +'FUNCTION'=162 +'EXTENDED'=163 +'REFRESH'=164 +'CLEAR'=165 +'CACHE'=166 +'UNCACHE'=167 +'LAZY'=168 +'FORMATTED'=169 +'GLOBAL'=170 +'TEMPORARY'=171 +'OPTIONS'=172 +'UNSET'=173 +'TBLPROPERTIES'=174 +'DBPROPERTIES'=175 +'BUCKETS'=176 +'SKEWED'=177 +'STORED'=178 +'DIRECTORIES'=179 +'LOCATION'=180 +'EXCHANGE'=181 +'ARCHIVE'=182 +'UNARCHIVE'=183 +'FILEFORMAT'=184 +'TOUCH'=185 +'COMPACT'=186 +'CONCATENATE'=187 +'CHANGE'=188 +'CASCADE'=189 +'RESTRICT'=190 +'CLUSTERED'=191 +'SORTED'=192 +'PURGE'=193 +'INPUTFORMAT'=194 +'OUTPUTFORMAT'=195 +'DATABASE'=196 +'DATABASES'=197 +'DFS'=198 +'TRUNCATE'=199 +'ANALYZE'=200 +'COMPUTE'=201 +'LIST'=202 +'STATISTICS'=203 +'PARTITIONED'=204 +'EXTERNAL'=205 +'DEFINED'=206 +'REVOKE'=207 +'GRANT'=208 +'LOCK'=209 +'UNLOCK'=210 +'MSCK'=211 +'REPAIR'=212 +'RECOVER'=213 +'EXPORT'=214 +'IMPORT'=215 +'LOAD'=216 +'ROLE'=217 +'ROLES'=218 +'COMPACTIONS'=219 +'PRINCIPALS'=220 +'TRANSACTIONS'=221 +'INDEX'=222 +'INDEXES'=223 +'LOCKS'=224 +'OPTION'=225 +'ANTI'=226 +'LOCAL'=227 +'INPATH'=228 +'WATERMARK'=229 +'UNNEST'=230 +'MATCH_RECOGNIZE'=231 +'MEASURES'=232 +'ONE'=233 +'PER'=234 +'MATCH'=235 +'SKIP1'=236 +'NEXT'=237 +'PAST'=238 +'PATTERN'=239 +'WITHIN'=240 +'DEFINE'=241 +'WS'=242 +'SYSTEM'=243 +'INCLUDING'=244 +'EXCLUDING'=245 +'CONSTRAINTS'=246 +'OVERWRITING'=247 +'GENERATED'=248 +'CATALOG'=249 +'LANGUAGE'=250 +'CATALOGS'=251 +'VIEWS'=252 +'STRING'=253 +'ARRAY'=254 +'MAP'=255 +'CHAR'=256 +'VARCHAR'=257 +'BINARY'=258 +'VARBINARY'=259 +'BYTES'=260 +'DECIMAL'=261 +'TINYINT'=262 +'SMALLINT'=263 +'INT'=264 +'BIGINT'=265 +'FLOAT'=266 +'DOUBLE'=267 +'DATE'=268 +'TIME'=269 +'TIMESTAMP'=270 +'MULTISET'=271 +'BOOLEAN'=272 +'RAW'=273 +'ROW'=274 +'NULL'=275 +'='=276 +'>'=277 +'<'=278 +'!'=279 +'~'=280 +'|'=281 +'&'=282 +'^'=283 +'.'=284 +'['=285 +']'=286 +'('=287 +')'=288 +','=289 +';'=290 +'@'=291 +'\''=292 +'"'=293 +'`'=294 +':'=295 +'*'=296 +'_'=297 +'-'=298 +'+'=299 +'%'=300 +'||'=301 +'--'=302 +'/'=303 diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index a836d44..d09a006 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -241,21 +241,17 @@ null 'PATTERN' 'WITHIN' 'DEFINE' -'BIGINT_LITERAL' -'SMALLINT_LITERAL' -'TINYINT_LITERAL' -'INTEGER_VALUE' -'DECIMAL_VALUE' -'DOUBLE_LITERAL' -'BIGDECIMAL_LITERAL' -'IDENTIFIER' -'BACKQUOTED_IDENTIFIER' -'SIMPLE_COMMENT' -'BRACKETED_EMPTY_COMMENT' -'BRACKETED_COMMENT' 'WS' -'UNRECOGNIZED' 'SYSTEM' +'INCLUDING' +'EXCLUDING' +'CONSTRAINTS' +'OVERWRITING' +'GENERATED' +'CATALOG' +'LANGUAGE' +'CATALOGS' +'VIEWS' 'STRING' 'ARRAY' 'MAP' @@ -295,9 +291,6 @@ null ',' ';' '@' -'0' -'1' -'2' '\'' '"' '`' @@ -307,6 +300,7 @@ null '-' '+' '%' +'||' '--' '/' null @@ -315,8 +309,6 @@ null null null null -null -null token symbolic names: null @@ -561,21 +553,17 @@ PAST PATTERN WITHIN DEFINE -BIGINT_LITERAL -SMALLINT_LITERAL -TINYINT_LITERAL -INTEGER_VALUE -DECIMAL_VALUE -DOUBLE_LITERAL -BIGDECIMAL_LITERAL -IDENTIFIER -BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT -BRACKETED_EMPTY_COMMENT -BRACKETED_COMMENT WS -UNRECOGNIZED SYSTEM +INCLUDING +EXCLUDING +CONSTRAINTS +OVERWRITING +GENERATED +CATALOG +LANGUAGE +CATALOGS +VIEWS STRING ARRAY MAP @@ -615,9 +603,6 @@ RR_BRACKET COMMA SEMICOLON AT_SIGN -ZERO_DECIMAL -ONE_DECIMAL -TWO_DECIMAL SINGLE_QUOTE_SYMB DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB @@ -627,16 +612,15 @@ UNDERLINE_SIGN HYPNEN_SIGN ADD_SIGN PENCENT_SIGN +DOUBLE_VERTICAL_SIGN DOUBLE_HYPNEN_SIGN SLASH_SIGN DOT_ID -ID STRING_LITERAL -DECIMAL_LITERAL +DIG_LITERAL REAL_LITERAL BIT_STRING -IDENTIFIER_BASE -DEC_DIGIT +ID rule names: program @@ -646,13 +630,24 @@ sqlStatement emptyStatement ddlStatement dmlStatement +describeStatement +explainStatement +useStatement +showStatememt createTable columnOptionDefinition columnName columnType +lengthOneDimension +commentSpec +watermarkDefinition partitionDefinition -partitionColumnDefinition -partitionColumnName +transformList +transform +transformArgument +likeDefinition +likeOption +createCatalog createDatabase createView createFunction @@ -669,23 +664,51 @@ insertStatement insertPartitionDefinition valuesDefinition valuesRowDefinition -allValueDifinition queryStatement +valuesCaluse selectStatement +selectClause projectItemDefinition +fromClause tableExpression tableReference tablePrimary +joinCondition +whereClause +groupByClause +groupItemDefinition +havingClause +orderByCaluse +orderItemDefition +limitClause +windowClause +namedWindow +windowSpec +sortItem +windowFrame +frameBound expression booleanExpression predicate valueExpression primaryExpression +functionName +dereferenceDefinition +qualifiedName +interval +errorCapturingMultiUnitsInterval +multiUnitsInterval +errorCapturingUnitToUnitInterval +unitToUnitInterval +intervalValue tableAlias +errorCapturingIdentifier +errorCapturingIdentifierExtra identifierList identifierSeq identifier strictIdentifier +unquotedIdentifier quotedIdentifier whenClause uidList @@ -693,7 +716,10 @@ uid withOption ifNotExists ifExists -keyValueDefinition +tablePropertyList +tableProperty +tablePropertyKey +tablePropertyValue logicalOperator comparisonOperator bitOperator @@ -708,4 +734,4 @@ setQuantifier atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 319, 724, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 145, 10, 4, 12, 4, 14, 4, 148, 11, 4, 3, 5, 3, 5, 5, 5, 152, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 167, 10, 7, 3, 8, 3, 8, 5, 8, 171, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 180, 10, 9, 12, 9, 14, 9, 183, 11, 9, 3, 9, 3, 9, 5, 9, 187, 10, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 7, 14, 205, 10, 14, 12, 14, 14, 14, 208, 11, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 5, 16, 215, 10, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 5, 17, 222, 10, 17, 3, 17, 3, 17, 5, 17, 226, 10, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 239, 10, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 250, 10, 21, 12, 21, 14, 21, 253, 11, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 5, 24, 267, 10, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 5, 25, 274, 10, 25, 3, 25, 3, 25, 5, 25, 278, 10, 25, 3, 26, 3, 26, 5, 26, 282, 10, 26, 3, 26, 3, 26, 5, 26, 286, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 294, 10, 27, 3, 27, 3, 27, 5, 27, 298, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 306, 10, 28, 3, 28, 3, 28, 5, 28, 310, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 317, 10, 29, 12, 29, 14, 29, 320, 11, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 328, 10, 30, 12, 30, 14, 30, 331, 11, 30, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 337, 10, 31, 12, 31, 14, 31, 340, 11, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 348, 10, 32, 3, 33, 3, 33, 3, 34, 3, 34, 5, 34, 354, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 360, 10, 34, 12, 34, 14, 34, 363, 11, 34, 5, 34, 365, 10, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 5, 35, 372, 10, 35, 3, 35, 5, 35, 375, 10, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 381, 10, 35, 3, 36, 3, 36, 3, 36, 7, 36, 386, 10, 36, 12, 36, 14, 36, 389, 11, 36, 3, 37, 3, 37, 3, 37, 3, 38, 5, 38, 395, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 406, 10, 40, 5, 40, 408, 10, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 416, 10, 40, 12, 40, 14, 40, 419, 11, 40, 3, 41, 5, 41, 422, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 430, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 437, 10, 41, 12, 41, 14, 41, 440, 11, 41, 3, 41, 3, 41, 3, 41, 5, 41, 445, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 450, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 460, 10, 41, 12, 41, 14, 41, 463, 11, 41, 3, 41, 3, 41, 5, 41, 467, 10, 41, 3, 41, 5, 41, 470, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 476, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 481, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 486, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 491, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 497, 10, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 7, 42, 518, 10, 42, 12, 42, 14, 42, 521, 11, 42, 3, 43, 3, 43, 3, 43, 6, 43, 526, 10, 43, 13, 43, 14, 43, 527, 3, 43, 3, 43, 5, 43, 532, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 6, 43, 539, 10, 43, 13, 43, 14, 43, 540, 3, 43, 3, 43, 5, 43, 545, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 554, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 563, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 580, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 7, 43, 587, 10, 43, 12, 43, 14, 43, 590, 11, 43, 3, 44, 5, 44, 593, 10, 44, 3, 44, 3, 44, 5, 44, 597, 10, 44, 5, 44, 599, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 7, 46, 608, 10, 46, 12, 46, 14, 46, 611, 11, 46, 3, 47, 3, 47, 3, 48, 3, 48, 5, 48, 617, 10, 48, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 7, 51, 629, 10, 51, 12, 51, 14, 51, 632, 11, 51, 3, 52, 3, 52, 7, 52, 636, 10, 52, 12, 52, 14, 52, 639, 11, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 7, 53, 646, 10, 53, 12, 53, 14, 53, 649, 11, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 5, 57, 670, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 686, 10, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 695, 10, 59, 3, 60, 3, 60, 3, 61, 3, 61, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 711, 10, 63, 3, 63, 5, 63, 714, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 637, 5, 78, 82, 84, 68, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 2, 14, 3, 2, 259, 281, 3, 2, 191, 192, 4, 2, 79, 79, 147, 147, 3, 2, 10, 11, 3, 2, 34, 35, 4, 2, 129, 130, 135, 135, 3, 2, 131, 134, 4, 2, 129, 130, 138, 138, 5, 2, 134, 134, 305, 305, 307, 311, 5, 2, 27, 27, 285, 286, 307, 308, 4, 2, 298, 300, 315, 315, 4, 2, 10, 10, 12, 12, 2, 775, 2, 134, 3, 2, 2, 2, 4, 137, 3, 2, 2, 2, 6, 146, 3, 2, 2, 2, 8, 151, 3, 2, 2, 2, 10, 153, 3, 2, 2, 2, 12, 166, 3, 2, 2, 2, 14, 170, 3, 2, 2, 2, 16, 172, 3, 2, 2, 2, 18, 190, 3, 2, 2, 2, 20, 193, 3, 2, 2, 2, 22, 195, 3, 2, 2, 2, 24, 197, 3, 2, 2, 2, 26, 201, 3, 2, 2, 2, 28, 209, 3, 2, 2, 2, 30, 211, 3, 2, 2, 2, 32, 219, 3, 2, 2, 2, 34, 231, 3, 2, 2, 2, 36, 233, 3, 2, 2, 2, 38, 240, 3, 2, 2, 2, 40, 244, 3, 2, 2, 2, 42, 256, 3, 2, 2, 2, 44, 261, 3, 2, 2, 2, 46, 263, 3, 2, 2, 2, 48, 270, 3, 2, 2, 2, 50, 279, 3, 2, 2, 2, 52, 289, 3, 2, 2, 2, 54, 301, 3, 2, 2, 2, 56, 311, 3, 2, 2, 2, 58, 323, 3, 2, 2, 2, 60, 332, 3, 2, 2, 2, 62, 347, 3, 2, 2, 2, 64, 349, 3, 2, 2, 2, 66, 351, 3, 2, 2, 2, 68, 380, 3, 2, 2, 2, 70, 382, 3, 2, 2, 2, 72, 390, 3, 2, 2, 2, 74, 394, 3, 2, 2, 2, 76, 398, 3, 2, 2, 2, 78, 407, 3, 2, 2, 2, 80, 490, 3, 2, 2, 2, 82, 496, 3, 2, 2, 2, 84, 579, 3, 2, 2, 2, 86, 598, 3, 2, 2, 2, 88, 600, 3, 2, 2, 2, 90, 604, 3, 2, 2, 2, 92, 612, 3, 2, 2, 2, 94, 616, 3, 2, 2, 2, 96, 618, 3, 2, 2, 2, 98, 620, 3, 2, 2, 2, 100, 625, 3, 2, 2, 2, 102, 633, 3, 2, 2, 2, 104, 640, 3, 2, 2, 2, 106, 652, 3, 2, 2, 2, 108, 656, 3, 2, 2, 2, 110, 659, 3, 2, 2, 2, 112, 669, 3, 2, 2, 2, 114, 685, 3, 2, 2, 2, 116, 694, 3, 2, 2, 2, 118, 696, 3, 2, 2, 2, 120, 698, 3, 2, 2, 2, 122, 700, 3, 2, 2, 2, 124, 713, 3, 2, 2, 2, 126, 715, 3, 2, 2, 2, 128, 717, 3, 2, 2, 2, 130, 719, 3, 2, 2, 2, 132, 721, 3, 2, 2, 2, 134, 135, 5, 4, 3, 2, 135, 136, 7, 2, 2, 3, 136, 3, 3, 2, 2, 2, 137, 138, 5, 6, 4, 2, 138, 139, 7, 2, 2, 3, 139, 5, 3, 2, 2, 2, 140, 141, 5, 8, 5, 2, 141, 142, 7, 296, 2, 2, 142, 145, 3, 2, 2, 2, 143, 145, 5, 10, 6, 2, 144, 140, 3, 2, 2, 2, 144, 143, 3, 2, 2, 2, 145, 148, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 7, 3, 2, 2, 2, 148, 146, 3, 2, 2, 2, 149, 152, 5, 12, 7, 2, 150, 152, 5, 14, 8, 2, 151, 149, 3, 2, 2, 2, 151, 150, 3, 2, 2, 2, 152, 9, 3, 2, 2, 2, 153, 154, 7, 296, 2, 2, 154, 11, 3, 2, 2, 2, 155, 167, 5, 16, 9, 2, 156, 167, 5, 30, 16, 2, 157, 167, 5, 32, 17, 2, 158, 167, 5, 34, 18, 2, 159, 167, 5, 36, 19, 2, 160, 167, 5, 42, 22, 2, 161, 167, 5, 44, 23, 2, 162, 167, 5, 46, 24, 2, 163, 167, 5, 48, 25, 2, 164, 167, 5, 50, 26, 2, 165, 167, 5, 52, 27, 2, 166, 155, 3, 2, 2, 2, 166, 156, 3, 2, 2, 2, 166, 157, 3, 2, 2, 2, 166, 158, 3, 2, 2, 2, 166, 159, 3, 2, 2, 2, 166, 160, 3, 2, 2, 2, 166, 161, 3, 2, 2, 2, 166, 162, 3, 2, 2, 2, 166, 163, 3, 2, 2, 2, 166, 164, 3, 2, 2, 2, 166, 165, 3, 2, 2, 2, 167, 13, 3, 2, 2, 2, 168, 171, 5, 64, 33, 2, 169, 171, 5, 54, 28, 2, 170, 168, 3, 2, 2, 2, 170, 169, 3, 2, 2, 2, 171, 15, 3, 2, 2, 2, 172, 173, 7, 72, 2, 2, 173, 174, 7, 73, 2, 2, 174, 175, 5, 102, 52, 2, 175, 176, 7, 293, 2, 2, 176, 181, 5, 18, 10, 2, 177, 178, 7, 295, 2, 2, 178, 180, 5, 18, 10, 2, 179, 177, 3, 2, 2, 2, 180, 183, 3, 2, 2, 2, 181, 179, 3, 2, 2, 2, 181, 182, 3, 2, 2, 2, 182, 184, 3, 2, 2, 2, 183, 181, 3, 2, 2, 2, 184, 186, 7, 294, 2, 2, 185, 187, 5, 24, 13, 2, 186, 185, 3, 2, 2, 2, 186, 187, 3, 2, 2, 2, 187, 188, 3, 2, 2, 2, 188, 189, 5, 104, 53, 2, 189, 17, 3, 2, 2, 2, 190, 191, 5, 20, 11, 2, 191, 192, 5, 22, 12, 2, 192, 19, 3, 2, 2, 2, 193, 194, 7, 313, 2, 2, 194, 21, 3, 2, 2, 2, 195, 196, 9, 2, 2, 2, 196, 23, 3, 2, 2, 2, 197, 198, 7, 206, 2, 2, 198, 199, 7, 15, 2, 2, 199, 200, 5, 26, 14, 2, 200, 25, 3, 2, 2, 2, 201, 206, 5, 28, 15, 2, 202, 203, 7, 295, 2, 2, 203, 205, 5, 28, 15, 2, 204, 202, 3, 2, 2, 2, 205, 208, 3, 2, 2, 2, 206, 204, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 27, 3, 2, 2, 2, 208, 206, 3, 2, 2, 2, 209, 210, 7, 313, 2, 2, 210, 29, 3, 2, 2, 2, 211, 212, 7, 72, 2, 2, 212, 214, 7, 198, 2, 2, 213, 215, 5, 106, 54, 2, 214, 213, 3, 2, 2, 2, 214, 215, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 217, 5, 102, 52, 2, 217, 218, 5, 104, 53, 2, 218, 31, 3, 2, 2, 2, 219, 221, 7, 72, 2, 2, 220, 222, 7, 173, 2, 2, 221, 220, 3, 2, 2, 2, 221, 222, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 225, 7, 75, 2, 2, 224, 226, 5, 106, 54, 2, 225, 224, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 227, 3, 2, 2, 2, 227, 228, 5, 102, 52, 2, 228, 229, 7, 9, 2, 2, 229, 230, 5, 66, 34, 2, 230, 33, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 35, 3, 2, 2, 2, 233, 234, 7, 102, 2, 2, 234, 235, 7, 73, 2, 2, 235, 238, 5, 102, 52, 2, 236, 239, 5, 38, 20, 2, 237, 239, 5, 40, 21, 2, 238, 236, 3, 2, 2, 2, 238, 237, 3, 2, 2, 2, 239, 37, 3, 2, 2, 2, 240, 241, 7, 103, 2, 2, 241, 242, 7, 99, 2, 2, 242, 243, 5, 102, 52, 2, 243, 39, 3, 2, 2, 2, 244, 245, 7, 106, 2, 2, 245, 246, 7, 293, 2, 2, 246, 251, 5, 110, 56, 2, 247, 248, 7, 295, 2, 2, 248, 250, 5, 110, 56, 2, 249, 247, 3, 2, 2, 2, 250, 253, 3, 2, 2, 2, 251, 249, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 254, 3, 2, 2, 2, 253, 251, 3, 2, 2, 2, 254, 255, 7, 294, 2, 2, 255, 41, 3, 2, 2, 2, 256, 257, 7, 102, 2, 2, 257, 258, 7, 198, 2, 2, 258, 259, 5, 102, 52, 2, 259, 260, 5, 40, 21, 2, 260, 43, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 45, 3, 2, 2, 2, 263, 264, 7, 94, 2, 2, 264, 266, 7, 73, 2, 2, 265, 267, 5, 108, 55, 2, 266, 265, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 269, 5, 102, 52, 2, 269, 47, 3, 2, 2, 2, 270, 271, 7, 94, 2, 2, 271, 273, 7, 198, 2, 2, 272, 274, 5, 108, 55, 2, 273, 272, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 277, 5, 102, 52, 2, 276, 278, 9, 3, 2, 2, 277, 276, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 49, 3, 2, 2, 2, 279, 281, 7, 94, 2, 2, 280, 282, 7, 173, 2, 2, 281, 280, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 283, 3, 2, 2, 2, 283, 285, 7, 75, 2, 2, 284, 286, 5, 108, 55, 2, 285, 284, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 5, 102, 52, 2, 288, 51, 3, 2, 2, 2, 289, 293, 7, 94, 2, 2, 290, 294, 7, 173, 2, 2, 291, 292, 7, 173, 2, 2, 292, 294, 7, 258, 2, 2, 293, 290, 3, 2, 2, 2, 293, 291, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 295, 3, 2, 2, 2, 295, 297, 7, 164, 2, 2, 296, 298, 5, 108, 55, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 300, 5, 102, 52, 2, 300, 53, 3, 2, 2, 2, 301, 302, 7, 77, 2, 2, 302, 303, 9, 4, 2, 2, 303, 309, 5, 102, 52, 2, 304, 306, 5, 56, 29, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 310, 5, 66, 34, 2, 308, 310, 5, 58, 30, 2, 309, 305, 3, 2, 2, 2, 309, 308, 3, 2, 2, 2, 310, 55, 3, 2, 2, 2, 311, 312, 7, 60, 2, 2, 312, 313, 7, 293, 2, 2, 313, 318, 5, 110, 56, 2, 314, 315, 7, 295, 2, 2, 315, 317, 5, 110, 56, 2, 316, 314, 3, 2, 2, 2, 317, 320, 3, 2, 2, 2, 318, 316, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 321, 3, 2, 2, 2, 320, 318, 3, 2, 2, 2, 321, 322, 7, 294, 2, 2, 322, 57, 3, 2, 2, 2, 323, 324, 7, 71, 2, 2, 324, 329, 5, 60, 31, 2, 325, 326, 7, 295, 2, 2, 326, 328, 5, 60, 31, 2, 327, 325, 3, 2, 2, 2, 328, 331, 3, 2, 2, 2, 329, 327, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 59, 3, 2, 2, 2, 331, 329, 3, 2, 2, 2, 332, 333, 7, 293, 2, 2, 333, 338, 5, 62, 32, 2, 334, 335, 7, 295, 2, 2, 335, 337, 5, 62, 32, 2, 336, 334, 3, 2, 2, 2, 337, 340, 3, 2, 2, 2, 338, 336, 3, 2, 2, 2, 338, 339, 3, 2, 2, 2, 339, 341, 3, 2, 2, 2, 340, 338, 3, 2, 2, 2, 341, 342, 7, 294, 2, 2, 342, 61, 3, 2, 2, 2, 343, 348, 5, 126, 64, 2, 344, 348, 5, 130, 66, 2, 345, 348, 7, 319, 2, 2, 346, 348, 7, 281, 2, 2, 347, 343, 3, 2, 2, 2, 347, 344, 3, 2, 2, 2, 347, 345, 3, 2, 2, 2, 347, 346, 3, 2, 2, 2, 348, 63, 3, 2, 2, 2, 349, 350, 3, 2, 2, 2, 350, 65, 3, 2, 2, 2, 351, 353, 7, 6, 2, 2, 352, 354, 5, 132, 67, 2, 353, 352, 3, 2, 2, 2, 353, 354, 3, 2, 2, 2, 354, 364, 3, 2, 2, 2, 355, 365, 7, 305, 2, 2, 356, 361, 5, 68, 35, 2, 357, 358, 7, 295, 2, 2, 358, 360, 5, 68, 35, 2, 359, 357, 3, 2, 2, 2, 360, 363, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 365, 3, 2, 2, 2, 363, 361, 3, 2, 2, 2, 364, 355, 3, 2, 2, 2, 364, 356, 3, 2, 2, 2, 365, 366, 3, 2, 2, 2, 366, 367, 7, 7, 2, 2, 367, 368, 5, 70, 36, 2, 368, 67, 3, 2, 2, 2, 369, 374, 5, 76, 39, 2, 370, 372, 7, 9, 2, 2, 371, 370, 3, 2, 2, 2, 371, 372, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 375, 5, 102, 52, 2, 374, 371, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 381, 3, 2, 2, 2, 376, 377, 5, 102, 52, 2, 377, 378, 7, 290, 2, 2, 378, 379, 7, 305, 2, 2, 379, 381, 3, 2, 2, 2, 380, 369, 3, 2, 2, 2, 380, 376, 3, 2, 2, 2, 381, 69, 3, 2, 2, 2, 382, 387, 5, 72, 37, 2, 383, 384, 7, 295, 2, 2, 384, 386, 5, 72, 37, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 71, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 5, 74, 38, 2, 391, 392, 5, 86, 44, 2, 392, 73, 3, 2, 2, 2, 393, 395, 7, 73, 2, 2, 394, 393, 3, 2, 2, 2, 394, 395, 3, 2, 2, 2, 395, 396, 3, 2, 2, 2, 396, 397, 5, 102, 52, 2, 397, 75, 3, 2, 2, 2, 398, 399, 5, 78, 40, 2, 399, 77, 3, 2, 2, 2, 400, 401, 8, 40, 1, 2, 401, 402, 7, 27, 2, 2, 402, 408, 5, 78, 40, 6, 403, 405, 5, 82, 42, 2, 404, 406, 5, 80, 41, 2, 405, 404, 3, 2, 2, 2, 405, 406, 3, 2, 2, 2, 406, 408, 3, 2, 2, 2, 407, 400, 3, 2, 2, 2, 407, 403, 3, 2, 2, 2, 408, 417, 3, 2, 2, 2, 409, 410, 12, 4, 2, 2, 410, 411, 7, 25, 2, 2, 411, 416, 5, 78, 40, 5, 412, 413, 12, 3, 2, 2, 413, 414, 7, 24, 2, 2, 414, 416, 5, 78, 40, 4, 415, 409, 3, 2, 2, 2, 415, 412, 3, 2, 2, 2, 416, 419, 3, 2, 2, 2, 417, 415, 3, 2, 2, 2, 417, 418, 3, 2, 2, 2, 418, 79, 3, 2, 2, 2, 419, 417, 3, 2, 2, 2, 420, 422, 7, 27, 2, 2, 421, 420, 3, 2, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 3, 2, 2, 2, 423, 424, 7, 30, 2, 2, 424, 425, 5, 82, 42, 2, 425, 426, 7, 25, 2, 2, 426, 427, 5, 82, 42, 2, 427, 491, 3, 2, 2, 2, 428, 430, 7, 27, 2, 2, 429, 428, 3, 2, 2, 2, 429, 430, 3, 2, 2, 2, 430, 431, 3, 2, 2, 2, 431, 432, 7, 26, 2, 2, 432, 433, 7, 293, 2, 2, 433, 438, 5, 76, 39, 2, 434, 435, 7, 295, 2, 2, 435, 437, 5, 76, 39, 2, 436, 434, 3, 2, 2, 2, 437, 440, 3, 2, 2, 2, 438, 436, 3, 2, 2, 2, 438, 439, 3, 2, 2, 2, 439, 441, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 441, 442, 7, 294, 2, 2, 442, 491, 3, 2, 2, 2, 443, 445, 7, 27, 2, 2, 444, 443, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 446, 3, 2, 2, 2, 446, 447, 7, 32, 2, 2, 447, 491, 5, 82, 42, 2, 448, 450, 7, 27, 2, 2, 449, 448, 3, 2, 2, 2, 449, 450, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 452, 7, 31, 2, 2, 452, 466, 9, 5, 2, 2, 453, 454, 7, 293, 2, 2, 454, 467, 7, 294, 2, 2, 455, 456, 7, 293, 2, 2, 456, 461, 5, 76, 39, 2, 457, 458, 7, 295, 2, 2, 458, 460, 5, 76, 39, 2, 459, 457, 3, 2, 2, 2, 460, 463, 3, 2, 2, 2, 461, 459, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 464, 3, 2, 2, 2, 463, 461, 3, 2, 2, 2, 464, 465, 7, 294, 2, 2, 465, 467, 3, 2, 2, 2, 466, 453, 3, 2, 2, 2, 466, 455, 3, 2, 2, 2, 467, 491, 3, 2, 2, 2, 468, 470, 7, 27, 2, 2, 469, 468, 3, 2, 2, 2, 469, 470, 3, 2, 2, 2, 470, 471, 3, 2, 2, 2, 471, 472, 7, 31, 2, 2, 472, 491, 5, 82, 42, 2, 473, 475, 7, 33, 2, 2, 474, 476, 7, 27, 2, 2, 475, 474, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 491, 7, 281, 2, 2, 478, 480, 7, 33, 2, 2, 479, 481, 7, 27, 2, 2, 480, 479, 3, 2, 2, 2, 480, 481, 3, 2, 2, 2, 481, 482, 3, 2, 2, 2, 482, 491, 9, 6, 2, 2, 483, 485, 7, 33, 2, 2, 484, 486, 7, 27, 2, 2, 485, 484, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 488, 7, 12, 2, 2, 488, 489, 7, 7, 2, 2, 489, 491, 5, 82, 42, 2, 490, 421, 3, 2, 2, 2, 490, 429, 3, 2, 2, 2, 490, 444, 3, 2, 2, 2, 490, 449, 3, 2, 2, 2, 490, 469, 3, 2, 2, 2, 490, 473, 3, 2, 2, 2, 490, 478, 3, 2, 2, 2, 490, 483, 3, 2, 2, 2, 491, 81, 3, 2, 2, 2, 492, 493, 8, 42, 1, 2, 493, 497, 5, 84, 43, 2, 494, 495, 9, 7, 2, 2, 495, 497, 5, 82, 42, 9, 496, 492, 3, 2, 2, 2, 496, 494, 3, 2, 2, 2, 497, 519, 3, 2, 2, 2, 498, 499, 12, 8, 2, 2, 499, 500, 9, 8, 2, 2, 500, 518, 5, 82, 42, 9, 501, 502, 12, 7, 2, 2, 502, 503, 9, 9, 2, 2, 503, 518, 5, 82, 42, 8, 504, 505, 12, 6, 2, 2, 505, 506, 7, 136, 2, 2, 506, 518, 5, 82, 42, 7, 507, 508, 12, 5, 2, 2, 508, 509, 7, 139, 2, 2, 509, 518, 5, 82, 42, 6, 510, 511, 12, 4, 2, 2, 511, 512, 7, 137, 2, 2, 512, 518, 5, 82, 42, 5, 513, 514, 12, 3, 2, 2, 514, 515, 5, 114, 58, 2, 515, 516, 5, 82, 42, 4, 516, 518, 3, 2, 2, 2, 517, 498, 3, 2, 2, 2, 517, 501, 3, 2, 2, 2, 517, 504, 3, 2, 2, 2, 517, 507, 3, 2, 2, 2, 517, 510, 3, 2, 2, 2, 517, 513, 3, 2, 2, 2, 518, 521, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 83, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 522, 523, 8, 43, 1, 2, 523, 525, 7, 41, 2, 2, 524, 526, 5, 98, 50, 2, 525, 524, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 525, 3, 2, 2, 2, 527, 528, 3, 2, 2, 2, 528, 531, 3, 2, 2, 2, 529, 530, 7, 44, 2, 2, 530, 532, 5, 76, 39, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 534, 7, 45, 2, 2, 534, 580, 3, 2, 2, 2, 535, 536, 7, 41, 2, 2, 536, 538, 5, 76, 39, 2, 537, 539, 5, 98, 50, 2, 538, 537, 3, 2, 2, 2, 539, 540, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 544, 3, 2, 2, 2, 542, 543, 7, 44, 2, 2, 543, 545, 5, 76, 39, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 546, 3, 2, 2, 2, 546, 547, 7, 45, 2, 2, 547, 580, 3, 2, 2, 2, 548, 549, 7, 67, 2, 2, 549, 550, 7, 293, 2, 2, 550, 553, 5, 76, 39, 2, 551, 552, 7, 114, 2, 2, 552, 554, 7, 36, 2, 2, 553, 551, 3, 2, 2, 2, 553, 554, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 556, 7, 294, 2, 2, 556, 580, 3, 2, 2, 2, 557, 558, 7, 69, 2, 2, 558, 559, 7, 293, 2, 2, 559, 562, 5, 76, 39, 2, 560, 561, 7, 114, 2, 2, 561, 563, 7, 36, 2, 2, 562, 560, 3, 2, 2, 2, 562, 563, 3, 2, 2, 2, 563, 564, 3, 2, 2, 2, 564, 565, 7, 294, 2, 2, 565, 580, 3, 2, 2, 2, 566, 567, 7, 119, 2, 2, 567, 568, 7, 293, 2, 2, 568, 569, 5, 82, 42, 2, 569, 570, 7, 26, 2, 2, 570, 571, 5, 82, 42, 2, 571, 572, 7, 294, 2, 2, 572, 580, 3, 2, 2, 2, 573, 580, 5, 124, 63, 2, 574, 580, 7, 131, 2, 2, 575, 576, 7, 293, 2, 2, 576, 577, 5, 76, 39, 2, 577, 578, 7, 294, 2, 2, 578, 580, 3, 2, 2, 2, 579, 522, 3, 2, 2, 2, 579, 535, 3, 2, 2, 2, 579, 548, 3, 2, 2, 2, 579, 557, 3, 2, 2, 2, 579, 566, 3, 2, 2, 2, 579, 573, 3, 2, 2, 2, 579, 574, 3, 2, 2, 2, 579, 575, 3, 2, 2, 2, 580, 588, 3, 2, 2, 2, 581, 582, 12, 4, 2, 2, 582, 583, 7, 291, 2, 2, 583, 584, 5, 82, 42, 2, 584, 585, 7, 292, 2, 2, 585, 587, 3, 2, 2, 2, 586, 581, 3, 2, 2, 2, 587, 590, 3, 2, 2, 2, 588, 586, 3, 2, 2, 2, 588, 589, 3, 2, 2, 2, 589, 85, 3, 2, 2, 2, 590, 588, 3, 2, 2, 2, 591, 593, 7, 9, 2, 2, 592, 591, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 594, 3, 2, 2, 2, 594, 596, 5, 94, 48, 2, 595, 597, 5, 88, 45, 2, 596, 595, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 599, 3, 2, 2, 2, 598, 592, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 87, 3, 2, 2, 2, 600, 601, 7, 293, 2, 2, 601, 602, 5, 90, 46, 2, 602, 603, 7, 294, 2, 2, 603, 89, 3, 2, 2, 2, 604, 609, 5, 92, 47, 2, 605, 606, 7, 295, 2, 2, 606, 608, 5, 92, 47, 2, 607, 605, 3, 2, 2, 2, 608, 611, 3, 2, 2, 2, 609, 607, 3, 2, 2, 2, 609, 610, 3, 2, 2, 2, 610, 91, 3, 2, 2, 2, 611, 609, 3, 2, 2, 2, 612, 613, 5, 94, 48, 2, 613, 93, 3, 2, 2, 2, 614, 617, 7, 318, 2, 2, 615, 617, 5, 96, 49, 2, 616, 614, 3, 2, 2, 2, 616, 615, 3, 2, 2, 2, 617, 95, 3, 2, 2, 2, 618, 619, 7, 314, 2, 2, 619, 97, 3, 2, 2, 2, 620, 621, 7, 42, 2, 2, 621, 622, 5, 76, 39, 2, 622, 623, 7, 43, 2, 2, 623, 624, 5, 76, 39, 2, 624, 99, 3, 2, 2, 2, 625, 630, 5, 102, 52, 2, 626, 627, 7, 295, 2, 2, 627, 629, 5, 102, 52, 2, 628, 626, 3, 2, 2, 2, 629, 632, 3, 2, 2, 2, 630, 628, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 101, 3, 2, 2, 2, 632, 630, 3, 2, 2, 2, 633, 637, 7, 313, 2, 2, 634, 636, 7, 312, 2, 2, 635, 634, 3, 2, 2, 2, 636, 639, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 637, 635, 3, 2, 2, 2, 638, 103, 3, 2, 2, 2, 639, 637, 3, 2, 2, 2, 640, 641, 7, 70, 2, 2, 641, 642, 7, 293, 2, 2, 642, 647, 5, 110, 56, 2, 643, 644, 7, 295, 2, 2, 644, 646, 5, 110, 56, 2, 645, 643, 3, 2, 2, 2, 646, 649, 3, 2, 2, 2, 647, 645, 3, 2, 2, 2, 647, 648, 3, 2, 2, 2, 648, 650, 3, 2, 2, 2, 649, 647, 3, 2, 2, 2, 650, 651, 7, 294, 2, 2, 651, 105, 3, 2, 2, 2, 652, 653, 7, 118, 2, 2, 653, 654, 7, 27, 2, 2, 654, 655, 7, 29, 2, 2, 655, 107, 3, 2, 2, 2, 656, 657, 7, 118, 2, 2, 657, 658, 7, 29, 2, 2, 658, 109, 3, 2, 2, 2, 659, 660, 7, 314, 2, 2, 660, 661, 7, 282, 2, 2, 661, 662, 7, 314, 2, 2, 662, 111, 3, 2, 2, 2, 663, 670, 7, 25, 2, 2, 664, 665, 7, 288, 2, 2, 665, 670, 7, 288, 2, 2, 666, 670, 7, 24, 2, 2, 667, 668, 7, 287, 2, 2, 668, 670, 7, 287, 2, 2, 669, 663, 3, 2, 2, 2, 669, 664, 3, 2, 2, 2, 669, 666, 3, 2, 2, 2, 669, 667, 3, 2, 2, 2, 670, 113, 3, 2, 2, 2, 671, 686, 7, 282, 2, 2, 672, 686, 7, 283, 2, 2, 673, 686, 7, 284, 2, 2, 674, 675, 7, 284, 2, 2, 675, 686, 7, 282, 2, 2, 676, 677, 7, 283, 2, 2, 677, 686, 7, 282, 2, 2, 678, 679, 7, 284, 2, 2, 679, 686, 7, 283, 2, 2, 680, 681, 7, 285, 2, 2, 681, 686, 7, 282, 2, 2, 682, 683, 7, 284, 2, 2, 683, 684, 7, 282, 2, 2, 684, 686, 7, 283, 2, 2, 685, 671, 3, 2, 2, 2, 685, 672, 3, 2, 2, 2, 685, 673, 3, 2, 2, 2, 685, 674, 3, 2, 2, 2, 685, 676, 3, 2, 2, 2, 685, 678, 3, 2, 2, 2, 685, 680, 3, 2, 2, 2, 685, 682, 3, 2, 2, 2, 686, 115, 3, 2, 2, 2, 687, 688, 7, 284, 2, 2, 688, 695, 7, 284, 2, 2, 689, 690, 7, 283, 2, 2, 690, 695, 7, 283, 2, 2, 691, 695, 7, 288, 2, 2, 692, 695, 7, 289, 2, 2, 693, 695, 7, 287, 2, 2, 694, 687, 3, 2, 2, 2, 694, 689, 3, 2, 2, 2, 694, 691, 3, 2, 2, 2, 694, 692, 3, 2, 2, 2, 694, 693, 3, 2, 2, 2, 695, 117, 3, 2, 2, 2, 696, 697, 9, 10, 2, 2, 697, 119, 3, 2, 2, 2, 698, 699, 9, 11, 2, 2, 699, 121, 3, 2, 2, 2, 700, 701, 5, 102, 52, 2, 701, 123, 3, 2, 2, 2, 702, 714, 5, 126, 64, 2, 703, 714, 5, 128, 65, 2, 704, 705, 7, 307, 2, 2, 705, 714, 5, 128, 65, 2, 706, 714, 5, 130, 66, 2, 707, 714, 7, 316, 2, 2, 708, 714, 7, 317, 2, 2, 709, 711, 7, 27, 2, 2, 710, 709, 3, 2, 2, 2, 710, 711, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 714, 7, 281, 2, 2, 713, 702, 3, 2, 2, 2, 713, 703, 3, 2, 2, 2, 713, 704, 3, 2, 2, 2, 713, 706, 3, 2, 2, 2, 713, 707, 3, 2, 2, 2, 713, 708, 3, 2, 2, 2, 713, 710, 3, 2, 2, 2, 714, 125, 3, 2, 2, 2, 715, 716, 7, 314, 2, 2, 716, 127, 3, 2, 2, 2, 717, 718, 9, 12, 2, 2, 718, 129, 3, 2, 2, 2, 719, 720, 9, 6, 2, 2, 720, 131, 3, 2, 2, 2, 721, 722, 9, 13, 2, 2, 722, 133, 3, 2, 2, 2, 76, 144, 146, 151, 166, 170, 181, 186, 206, 214, 221, 225, 238, 251, 266, 273, 277, 281, 285, 293, 297, 305, 309, 318, 329, 338, 347, 353, 361, 364, 371, 374, 380, 387, 394, 405, 407, 415, 417, 421, 429, 438, 444, 449, 461, 466, 469, 475, 480, 485, 490, 496, 517, 519, 527, 531, 540, 544, 553, 562, 579, 588, 592, 596, 598, 609, 616, 630, 637, 647, 669, 685, 694, 710, 713] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 311, 1298, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 5, 4, 227, 10, 4, 3, 4, 7, 4, 230, 10, 4, 12, 4, 14, 4, 233, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 241, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 257, 10, 7, 3, 8, 3, 8, 5, 8, 261, 10, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 5, 11, 273, 10, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 287, 10, 13, 12, 13, 14, 13, 290, 11, 13, 3, 13, 5, 13, 293, 10, 13, 3, 13, 3, 13, 5, 13, 297, 10, 13, 3, 13, 5, 13, 300, 10, 13, 3, 13, 3, 13, 5, 13, 304, 10, 13, 3, 14, 3, 14, 3, 14, 5, 14, 309, 10, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 336, 10, 21, 12, 21, 14, 21, 339, 11, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 349, 10, 22, 12, 22, 14, 22, 352, 11, 22, 3, 22, 3, 22, 5, 22, 356, 10, 22, 3, 23, 3, 23, 5, 23, 360, 10, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 370, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 5, 27, 380, 10, 27, 3, 27, 3, 27, 5, 27, 384, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 5, 28, 390, 10, 28, 3, 28, 3, 28, 5, 28, 394, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 400, 10, 28, 12, 28, 14, 28, 403, 11, 28, 5, 28, 405, 10, 28, 3, 28, 5, 28, 408, 10, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 417, 10, 29, 3, 29, 3, 29, 5, 29, 421, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 428, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 435, 10, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 453, 10, 34, 3, 34, 3, 34, 5, 34, 457, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 464, 10, 34, 3, 35, 3, 35, 3, 35, 5, 35, 469, 10, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 5, 36, 476, 10, 36, 3, 36, 3, 36, 5, 36, 480, 10, 36, 3, 37, 3, 37, 5, 37, 484, 10, 37, 3, 37, 3, 37, 5, 37, 488, 10, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 496, 10, 38, 3, 38, 3, 38, 5, 38, 500, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 5, 39, 508, 10, 39, 3, 39, 3, 39, 5, 39, 512, 10, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 521, 10, 41, 12, 41, 14, 41, 524, 11, 41, 3, 42, 3, 42, 3, 42, 3, 42, 7, 42, 530, 10, 42, 12, 42, 14, 42, 533, 11, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 545, 10, 43, 3, 43, 5, 43, 548, 10, 43, 3, 43, 3, 43, 5, 43, 552, 10, 43, 3, 43, 5, 43, 555, 10, 43, 5, 43, 557, 10, 43, 3, 43, 3, 43, 3, 43, 5, 43, 562, 10, 43, 3, 43, 3, 43, 5, 43, 566, 10, 43, 3, 43, 5, 43, 569, 10, 43, 7, 43, 571, 10, 43, 12, 43, 14, 43, 574, 11, 43, 3, 44, 3, 44, 3, 44, 3, 44, 7, 44, 580, 10, 44, 12, 44, 14, 44, 583, 11, 44, 3, 45, 3, 45, 3, 45, 5, 45, 588, 10, 45, 3, 45, 5, 45, 591, 10, 45, 3, 45, 5, 45, 594, 10, 45, 3, 45, 5, 45, 597, 10, 45, 3, 46, 3, 46, 5, 46, 601, 10, 46, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 607, 10, 46, 12, 46, 14, 46, 610, 11, 46, 5, 46, 612, 10, 46, 3, 47, 3, 47, 5, 47, 616, 10, 47, 3, 47, 5, 47, 619, 10, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 7, 49, 628, 10, 49, 12, 49, 14, 49, 631, 11, 49, 3, 49, 3, 49, 5, 49, 635, 10, 49, 3, 49, 5, 49, 638, 10, 49, 3, 49, 3, 49, 3, 49, 5, 49, 643, 10, 49, 7, 49, 645, 10, 49, 12, 49, 14, 49, 648, 11, 49, 3, 50, 3, 50, 5, 50, 652, 10, 50, 3, 51, 5, 51, 655, 10, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 7, 51, 666, 10, 51, 12, 51, 14, 51, 669, 11, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 5, 51, 679, 10, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 7, 52, 688, 10, 52, 12, 52, 14, 52, 691, 11, 52, 3, 52, 3, 52, 5, 52, 695, 10, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 7, 54, 705, 10, 54, 12, 54, 14, 54, 708, 11, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 717, 10, 55, 12, 55, 14, 55, 720, 11, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 729, 10, 55, 12, 55, 14, 55, 732, 11, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 741, 10, 55, 12, 55, 14, 55, 744, 11, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 754, 10, 55, 12, 55, 14, 55, 757, 11, 55, 3, 55, 3, 55, 5, 55, 761, 10, 55, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 7, 57, 771, 10, 57, 12, 57, 14, 57, 774, 11, 57, 3, 58, 3, 58, 5, 58, 778, 10, 58, 3, 59, 3, 59, 3, 59, 5, 59, 783, 10, 59, 3, 60, 3, 60, 3, 60, 3, 60, 7, 60, 789, 10, 60, 12, 60, 14, 60, 792, 11, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 5, 62, 799, 10, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 807, 10, 62, 12, 62, 14, 62, 810, 11, 62, 5, 62, 812, 10, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 819, 10, 62, 12, 62, 14, 62, 822, 11, 62, 5, 62, 824, 10, 62, 3, 62, 5, 62, 827, 10, 62, 3, 62, 3, 62, 3, 63, 3, 63, 5, 63, 833, 10, 63, 3, 63, 3, 63, 5, 63, 837, 10, 63, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 843, 10, 64, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 5, 67, 860, 10, 67, 5, 67, 862, 10, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 7, 67, 870, 10, 67, 12, 67, 14, 67, 873, 11, 67, 3, 68, 5, 68, 876, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 5, 68, 884, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 891, 10, 68, 12, 68, 14, 68, 894, 11, 68, 3, 68, 3, 68, 3, 68, 5, 68, 899, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 5, 68, 912, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 917, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 927, 10, 68, 12, 68, 14, 68, 930, 11, 68, 3, 68, 3, 68, 5, 68, 934, 10, 68, 3, 68, 5, 68, 937, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 5, 68, 943, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 948, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 953, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 958, 10, 68, 3, 69, 3, 69, 3, 69, 3, 69, 5, 69, 964, 10, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 7, 69, 985, 10, 69, 12, 69, 14, 69, 988, 11, 69, 3, 70, 3, 70, 3, 70, 6, 70, 993, 10, 70, 13, 70, 14, 70, 994, 3, 70, 3, 70, 5, 70, 999, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 6, 70, 1006, 10, 70, 13, 70, 14, 70, 1007, 3, 70, 3, 70, 5, 70, 1012, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1021, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1030, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1054, 10, 70, 3, 70, 3, 70, 3, 70, 7, 70, 1059, 10, 70, 12, 70, 14, 70, 1062, 11, 70, 5, 70, 1064, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1074, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 7, 70, 1081, 10, 70, 12, 70, 14, 70, 1084, 11, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 7, 73, 1093, 10, 73, 12, 73, 14, 73, 1096, 11, 73, 3, 74, 3, 74, 3, 74, 5, 74, 1101, 10, 74, 3, 75, 3, 75, 5, 75, 1105, 10, 75, 3, 76, 3, 76, 3, 76, 6, 76, 1110, 10, 76, 13, 76, 14, 76, 1111, 3, 77, 3, 77, 3, 77, 5, 77, 1117, 10, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 5, 79, 1125, 10, 79, 3, 79, 3, 79, 5, 79, 1129, 10, 79, 3, 80, 5, 80, 1132, 10, 80, 3, 80, 3, 80, 5, 80, 1136, 10, 80, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 6, 82, 1143, 10, 82, 13, 82, 14, 82, 1144, 3, 82, 5, 82, 1148, 10, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 7, 84, 1157, 10, 84, 12, 84, 14, 84, 1160, 11, 84, 3, 85, 3, 85, 3, 86, 3, 86, 5, 86, 1166, 10, 86, 3, 87, 3, 87, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 7, 90, 1180, 10, 90, 12, 90, 14, 90, 1183, 11, 90, 3, 91, 3, 91, 7, 91, 1187, 10, 91, 12, 91, 14, 91, 1190, 11, 91, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 7, 95, 1206, 10, 95, 12, 95, 14, 95, 1209, 11, 95, 3, 95, 3, 95, 3, 96, 3, 96, 5, 96, 1215, 10, 96, 3, 96, 5, 96, 1218, 10, 96, 3, 97, 3, 97, 3, 97, 7, 97, 1223, 10, 97, 12, 97, 14, 97, 1226, 11, 97, 3, 97, 5, 97, 1229, 10, 97, 3, 98, 3, 98, 3, 98, 3, 98, 5, 98, 1235, 10, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 1243, 10, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 1259, 10, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 5, 101, 1268, 10, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 5, 105, 1285, 10, 105, 3, 105, 5, 105, 1288, 10, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 1188, 7, 84, 96, 132, 136, 138, 110, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 2, 24, 6, 2, 88, 88, 93, 93, 199, 199, 253, 254, 3, 2, 255, 277, 3, 2, 246, 247, 4, 2, 10, 10, 248, 248, 4, 2, 174, 174, 250, 250, 3, 2, 191, 192, 4, 2, 79, 79, 147, 147, 4, 2, 95, 96, 98, 98, 4, 2, 50, 50, 52, 53, 3, 2, 37, 38, 4, 2, 67, 67, 69, 69, 3, 2, 10, 11, 3, 2, 34, 35, 4, 2, 282, 282, 300, 301, 6, 2, 134, 134, 298, 298, 302, 302, 305, 305, 4, 2, 300, 301, 303, 303, 3, 2, 300, 301, 3, 2, 308, 309, 4, 2, 308, 308, 311, 311, 6, 2, 134, 134, 298, 298, 300, 302, 304, 305, 5, 2, 27, 27, 281, 282, 300, 301, 4, 2, 10, 10, 12, 12, 2, 1405, 2, 218, 3, 2, 2, 2, 4, 221, 3, 2, 2, 2, 6, 231, 3, 2, 2, 2, 8, 240, 3, 2, 2, 2, 10, 242, 3, 2, 2, 2, 12, 256, 3, 2, 2, 2, 14, 260, 3, 2, 2, 2, 16, 262, 3, 2, 2, 2, 18, 265, 3, 2, 2, 2, 20, 270, 3, 2, 2, 2, 22, 276, 3, 2, 2, 2, 24, 279, 3, 2, 2, 2, 26, 305, 3, 2, 2, 2, 28, 310, 3, 2, 2, 2, 30, 312, 3, 2, 2, 2, 32, 314, 3, 2, 2, 2, 34, 318, 3, 2, 2, 2, 36, 321, 3, 2, 2, 2, 38, 327, 3, 2, 2, 2, 40, 331, 3, 2, 2, 2, 42, 355, 3, 2, 2, 2, 44, 359, 3, 2, 2, 2, 46, 361, 3, 2, 2, 2, 48, 369, 3, 2, 2, 2, 50, 371, 3, 2, 2, 2, 52, 376, 3, 2, 2, 2, 54, 387, 3, 2, 2, 2, 56, 412, 3, 2, 2, 2, 58, 429, 3, 2, 2, 2, 60, 436, 3, 2, 2, 2, 62, 440, 3, 2, 2, 2, 64, 443, 3, 2, 2, 2, 66, 448, 3, 2, 2, 2, 68, 465, 3, 2, 2, 2, 70, 472, 3, 2, 2, 2, 72, 481, 3, 2, 2, 2, 74, 491, 3, 2, 2, 2, 76, 503, 3, 2, 2, 2, 78, 513, 3, 2, 2, 2, 80, 516, 3, 2, 2, 2, 82, 525, 3, 2, 2, 2, 84, 556, 3, 2, 2, 2, 86, 575, 3, 2, 2, 2, 88, 584, 3, 2, 2, 2, 90, 598, 3, 2, 2, 2, 92, 613, 3, 2, 2, 2, 94, 620, 3, 2, 2, 2, 96, 623, 3, 2, 2, 2, 98, 649, 3, 2, 2, 2, 100, 678, 3, 2, 2, 2, 102, 694, 3, 2, 2, 2, 104, 696, 3, 2, 2, 2, 106, 699, 3, 2, 2, 2, 108, 760, 3, 2, 2, 2, 110, 762, 3, 2, 2, 2, 112, 765, 3, 2, 2, 2, 114, 775, 3, 2, 2, 2, 116, 779, 3, 2, 2, 2, 118, 784, 3, 2, 2, 2, 120, 793, 3, 2, 2, 2, 122, 798, 3, 2, 2, 2, 124, 830, 3, 2, 2, 2, 126, 842, 3, 2, 2, 2, 128, 844, 3, 2, 2, 2, 130, 847, 3, 2, 2, 2, 132, 861, 3, 2, 2, 2, 134, 957, 3, 2, 2, 2, 136, 963, 3, 2, 2, 2, 138, 1073, 3, 2, 2, 2, 140, 1085, 3, 2, 2, 2, 142, 1087, 3, 2, 2, 2, 144, 1089, 3, 2, 2, 2, 146, 1097, 3, 2, 2, 2, 148, 1102, 3, 2, 2, 2, 150, 1109, 3, 2, 2, 2, 152, 1113, 3, 2, 2, 2, 154, 1118, 3, 2, 2, 2, 156, 1128, 3, 2, 2, 2, 158, 1131, 3, 2, 2, 2, 160, 1137, 3, 2, 2, 2, 162, 1147, 3, 2, 2, 2, 164, 1149, 3, 2, 2, 2, 166, 1153, 3, 2, 2, 2, 168, 1161, 3, 2, 2, 2, 170, 1165, 3, 2, 2, 2, 172, 1167, 3, 2, 2, 2, 174, 1169, 3, 2, 2, 2, 176, 1171, 3, 2, 2, 2, 178, 1176, 3, 2, 2, 2, 180, 1184, 3, 2, 2, 2, 182, 1191, 3, 2, 2, 2, 184, 1194, 3, 2, 2, 2, 186, 1198, 3, 2, 2, 2, 188, 1201, 3, 2, 2, 2, 190, 1212, 3, 2, 2, 2, 192, 1228, 3, 2, 2, 2, 194, 1234, 3, 2, 2, 2, 196, 1242, 3, 2, 2, 2, 198, 1258, 3, 2, 2, 2, 200, 1267, 3, 2, 2, 2, 202, 1269, 3, 2, 2, 2, 204, 1271, 3, 2, 2, 2, 206, 1273, 3, 2, 2, 2, 208, 1287, 3, 2, 2, 2, 210, 1289, 3, 2, 2, 2, 212, 1291, 3, 2, 2, 2, 214, 1293, 3, 2, 2, 2, 216, 1295, 3, 2, 2, 2, 218, 219, 5, 4, 3, 2, 219, 220, 7, 2, 2, 3, 220, 3, 3, 2, 2, 2, 221, 222, 5, 6, 4, 2, 222, 223, 7, 2, 2, 3, 223, 5, 3, 2, 2, 2, 224, 226, 5, 8, 5, 2, 225, 227, 7, 292, 2, 2, 226, 225, 3, 2, 2, 2, 226, 227, 3, 2, 2, 2, 227, 230, 3, 2, 2, 2, 228, 230, 5, 10, 6, 2, 229, 224, 3, 2, 2, 2, 229, 228, 3, 2, 2, 2, 230, 233, 3, 2, 2, 2, 231, 229, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 7, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 234, 241, 5, 12, 7, 2, 235, 241, 5, 14, 8, 2, 236, 241, 5, 16, 9, 2, 237, 241, 5, 18, 10, 2, 238, 241, 5, 20, 11, 2, 239, 241, 5, 22, 12, 2, 240, 234, 3, 2, 2, 2, 240, 235, 3, 2, 2, 2, 240, 236, 3, 2, 2, 2, 240, 237, 3, 2, 2, 2, 240, 238, 3, 2, 2, 2, 240, 239, 3, 2, 2, 2, 241, 9, 3, 2, 2, 2, 242, 243, 7, 292, 2, 2, 243, 11, 3, 2, 2, 2, 244, 257, 5, 24, 13, 2, 245, 257, 5, 52, 27, 2, 246, 257, 5, 54, 28, 2, 247, 257, 5, 56, 29, 2, 248, 257, 5, 50, 26, 2, 249, 257, 5, 58, 30, 2, 250, 257, 5, 64, 33, 2, 251, 257, 5, 66, 34, 2, 252, 257, 5, 68, 35, 2, 253, 257, 5, 70, 36, 2, 254, 257, 5, 72, 37, 2, 255, 257, 5, 74, 38, 2, 256, 244, 3, 2, 2, 2, 256, 245, 3, 2, 2, 2, 256, 246, 3, 2, 2, 2, 256, 247, 3, 2, 2, 2, 256, 248, 3, 2, 2, 2, 256, 249, 3, 2, 2, 2, 256, 250, 3, 2, 2, 2, 256, 251, 3, 2, 2, 2, 256, 252, 3, 2, 2, 2, 256, 253, 3, 2, 2, 2, 256, 254, 3, 2, 2, 2, 256, 255, 3, 2, 2, 2, 257, 13, 3, 2, 2, 2, 258, 261, 5, 84, 43, 2, 259, 261, 5, 76, 39, 2, 260, 258, 3, 2, 2, 2, 260, 259, 3, 2, 2, 2, 261, 15, 3, 2, 2, 2, 262, 263, 7, 80, 2, 2, 263, 264, 5, 180, 91, 2, 264, 17, 3, 2, 2, 2, 265, 266, 7, 81, 2, 2, 266, 267, 5, 168, 85, 2, 267, 268, 7, 39, 2, 2, 268, 269, 5, 14, 8, 2, 269, 19, 3, 2, 2, 2, 270, 272, 7, 91, 2, 2, 271, 273, 7, 251, 2, 2, 272, 271, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 5, 180, 91, 2, 275, 21, 3, 2, 2, 2, 276, 277, 7, 87, 2, 2, 277, 278, 9, 2, 2, 2, 278, 23, 3, 2, 2, 2, 279, 280, 7, 72, 2, 2, 280, 281, 7, 73, 2, 2, 281, 282, 5, 180, 91, 2, 282, 283, 7, 289, 2, 2, 283, 288, 5, 26, 14, 2, 284, 285, 7, 291, 2, 2, 285, 287, 5, 26, 14, 2, 286, 284, 3, 2, 2, 2, 287, 290, 3, 2, 2, 2, 288, 286, 3, 2, 2, 2, 288, 289, 3, 2, 2, 2, 289, 292, 3, 2, 2, 2, 290, 288, 3, 2, 2, 2, 291, 293, 5, 36, 19, 2, 292, 291, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 296, 7, 290, 2, 2, 295, 297, 5, 34, 18, 2, 296, 295, 3, 2, 2, 2, 296, 297, 3, 2, 2, 2, 297, 299, 3, 2, 2, 2, 298, 300, 5, 38, 20, 2, 299, 298, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 301, 3, 2, 2, 2, 301, 303, 5, 182, 92, 2, 302, 304, 5, 46, 24, 2, 303, 302, 3, 2, 2, 2, 303, 304, 3, 2, 2, 2, 304, 25, 3, 2, 2, 2, 305, 306, 5, 28, 15, 2, 306, 308, 5, 30, 16, 2, 307, 309, 5, 32, 17, 2, 308, 307, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 27, 3, 2, 2, 2, 310, 311, 7, 311, 2, 2, 311, 29, 3, 2, 2, 2, 312, 313, 9, 3, 2, 2, 313, 31, 3, 2, 2, 2, 314, 315, 7, 289, 2, 2, 315, 316, 5, 212, 107, 2, 316, 317, 7, 290, 2, 2, 317, 33, 3, 2, 2, 2, 318, 319, 7, 105, 2, 2, 319, 320, 7, 307, 2, 2, 320, 35, 3, 2, 2, 2, 321, 322, 7, 231, 2, 2, 322, 323, 7, 39, 2, 2, 323, 324, 5, 130, 66, 2, 324, 325, 7, 9, 2, 2, 325, 326, 5, 130, 66, 2, 326, 37, 3, 2, 2, 2, 327, 328, 7, 206, 2, 2, 328, 329, 7, 15, 2, 2, 329, 330, 5, 40, 21, 2, 330, 39, 3, 2, 2, 2, 331, 332, 7, 289, 2, 2, 332, 337, 5, 42, 22, 2, 333, 334, 7, 291, 2, 2, 334, 336, 5, 42, 22, 2, 335, 333, 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 340, 3, 2, 2, 2, 339, 337, 3, 2, 2, 2, 340, 341, 7, 290, 2, 2, 341, 41, 3, 2, 2, 2, 342, 356, 5, 144, 73, 2, 343, 344, 5, 168, 85, 2, 344, 345, 7, 289, 2, 2, 345, 350, 5, 44, 23, 2, 346, 347, 7, 291, 2, 2, 347, 349, 5, 44, 23, 2, 348, 346, 3, 2, 2, 2, 349, 352, 3, 2, 2, 2, 350, 348, 3, 2, 2, 2, 350, 351, 3, 2, 2, 2, 351, 353, 3, 2, 2, 2, 352, 350, 3, 2, 2, 2, 353, 354, 7, 290, 2, 2, 354, 356, 3, 2, 2, 2, 355, 342, 3, 2, 2, 2, 355, 343, 3, 2, 2, 2, 356, 43, 3, 2, 2, 2, 357, 360, 5, 144, 73, 2, 358, 360, 5, 208, 105, 2, 359, 357, 3, 2, 2, 2, 359, 358, 3, 2, 2, 2, 360, 45, 3, 2, 2, 2, 361, 362, 7, 31, 2, 2, 362, 363, 5, 168, 85, 2, 363, 364, 5, 48, 25, 2, 364, 47, 3, 2, 2, 2, 365, 366, 9, 4, 2, 2, 366, 370, 9, 5, 2, 2, 367, 368, 9, 4, 2, 2, 368, 370, 9, 6, 2, 2, 369, 365, 3, 2, 2, 2, 369, 367, 3, 2, 2, 2, 370, 49, 3, 2, 2, 2, 371, 372, 7, 72, 2, 2, 372, 373, 7, 251, 2, 2, 373, 374, 5, 180, 91, 2, 374, 375, 5, 182, 92, 2, 375, 51, 3, 2, 2, 2, 376, 377, 7, 72, 2, 2, 377, 379, 7, 198, 2, 2, 378, 380, 5, 184, 93, 2, 379, 378, 3, 2, 2, 2, 379, 380, 3, 2, 2, 2, 380, 381, 3, 2, 2, 2, 381, 383, 5, 180, 91, 2, 382, 384, 5, 34, 18, 2, 383, 382, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 385, 3, 2, 2, 2, 385, 386, 5, 182, 92, 2, 386, 53, 3, 2, 2, 2, 387, 389, 7, 72, 2, 2, 388, 390, 7, 173, 2, 2, 389, 388, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 391, 3, 2, 2, 2, 391, 393, 7, 75, 2, 2, 392, 394, 5, 184, 93, 2, 393, 392, 3, 2, 2, 2, 393, 394, 3, 2, 2, 2, 394, 395, 3, 2, 2, 2, 395, 404, 5, 180, 91, 2, 396, 401, 5, 28, 15, 2, 397, 398, 7, 291, 2, 2, 398, 400, 5, 28, 15, 2, 399, 397, 3, 2, 2, 2, 400, 403, 3, 2, 2, 2, 401, 399, 3, 2, 2, 2, 401, 402, 3, 2, 2, 2, 402, 405, 3, 2, 2, 2, 403, 401, 3, 2, 2, 2, 404, 396, 3, 2, 2, 2, 404, 405, 3, 2, 2, 2, 405, 407, 3, 2, 2, 2, 406, 408, 5, 34, 18, 2, 407, 406, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 409, 3, 2, 2, 2, 409, 410, 7, 9, 2, 2, 410, 411, 5, 84, 43, 2, 411, 55, 3, 2, 2, 2, 412, 416, 7, 72, 2, 2, 413, 417, 7, 173, 2, 2, 414, 415, 7, 173, 2, 2, 415, 417, 7, 245, 2, 2, 416, 413, 3, 2, 2, 2, 416, 414, 3, 2, 2, 2, 417, 418, 3, 2, 2, 2, 418, 420, 7, 164, 2, 2, 419, 421, 5, 184, 93, 2, 420, 419, 3, 2, 2, 2, 420, 421, 3, 2, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 5, 180, 91, 2, 423, 424, 7, 9, 2, 2, 424, 427, 5, 168, 85, 2, 425, 426, 7, 252, 2, 2, 426, 428, 5, 168, 85, 2, 427, 425, 3, 2, 2, 2, 427, 428, 3, 2, 2, 2, 428, 57, 3, 2, 2, 2, 429, 430, 7, 102, 2, 2, 430, 431, 7, 73, 2, 2, 431, 434, 5, 180, 91, 2, 432, 435, 5, 60, 31, 2, 433, 435, 5, 62, 32, 2, 434, 432, 3, 2, 2, 2, 434, 433, 3, 2, 2, 2, 435, 59, 3, 2, 2, 2, 436, 437, 7, 103, 2, 2, 437, 438, 7, 99, 2, 2, 438, 439, 5, 180, 91, 2, 439, 61, 3, 2, 2, 2, 440, 441, 7, 106, 2, 2, 441, 442, 5, 188, 95, 2, 442, 63, 3, 2, 2, 2, 443, 444, 7, 102, 2, 2, 444, 445, 7, 198, 2, 2, 445, 446, 5, 180, 91, 2, 446, 447, 5, 62, 32, 2, 447, 65, 3, 2, 2, 2, 448, 452, 7, 102, 2, 2, 449, 453, 7, 173, 2, 2, 450, 451, 7, 173, 2, 2, 451, 453, 7, 245, 2, 2, 452, 449, 3, 2, 2, 2, 452, 450, 3, 2, 2, 2, 453, 454, 3, 2, 2, 2, 454, 456, 7, 164, 2, 2, 455, 457, 5, 186, 94, 2, 456, 455, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 458, 3, 2, 2, 2, 458, 459, 5, 180, 91, 2, 459, 460, 7, 9, 2, 2, 460, 463, 5, 168, 85, 2, 461, 462, 7, 252, 2, 2, 462, 464, 5, 168, 85, 2, 463, 461, 3, 2, 2, 2, 463, 464, 3, 2, 2, 2, 464, 67, 3, 2, 2, 2, 465, 466, 7, 94, 2, 2, 466, 468, 7, 73, 2, 2, 467, 469, 5, 186, 94, 2, 468, 467, 3, 2, 2, 2, 468, 469, 3, 2, 2, 2, 469, 470, 3, 2, 2, 2, 470, 471, 5, 180, 91, 2, 471, 69, 3, 2, 2, 2, 472, 473, 7, 94, 2, 2, 473, 475, 7, 198, 2, 2, 474, 476, 5, 186, 94, 2, 475, 474, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 479, 5, 180, 91, 2, 478, 480, 9, 7, 2, 2, 479, 478, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 71, 3, 2, 2, 2, 481, 483, 7, 94, 2, 2, 482, 484, 7, 173, 2, 2, 483, 482, 3, 2, 2, 2, 483, 484, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 487, 7, 75, 2, 2, 486, 488, 5, 186, 94, 2, 487, 486, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 489, 3, 2, 2, 2, 489, 490, 5, 180, 91, 2, 490, 73, 3, 2, 2, 2, 491, 495, 7, 94, 2, 2, 492, 496, 7, 173, 2, 2, 493, 494, 7, 173, 2, 2, 494, 496, 7, 245, 2, 2, 495, 492, 3, 2, 2, 2, 495, 493, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 499, 7, 164, 2, 2, 498, 500, 5, 186, 94, 2, 499, 498, 3, 2, 2, 2, 499, 500, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 502, 5, 180, 91, 2, 502, 75, 3, 2, 2, 2, 503, 504, 7, 77, 2, 2, 504, 505, 9, 8, 2, 2, 505, 511, 5, 180, 91, 2, 506, 508, 5, 78, 40, 2, 507, 506, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 509, 3, 2, 2, 2, 509, 512, 5, 84, 43, 2, 510, 512, 5, 80, 41, 2, 511, 507, 3, 2, 2, 2, 511, 510, 3, 2, 2, 2, 512, 77, 3, 2, 2, 2, 513, 514, 7, 60, 2, 2, 514, 515, 5, 188, 95, 2, 515, 79, 3, 2, 2, 2, 516, 517, 7, 71, 2, 2, 517, 522, 5, 82, 42, 2, 518, 519, 7, 291, 2, 2, 519, 521, 5, 82, 42, 2, 520, 518, 3, 2, 2, 2, 521, 524, 3, 2, 2, 2, 522, 520, 3, 2, 2, 2, 522, 523, 3, 2, 2, 2, 523, 81, 3, 2, 2, 2, 524, 522, 3, 2, 2, 2, 525, 526, 7, 289, 2, 2, 526, 531, 5, 208, 105, 2, 527, 528, 7, 291, 2, 2, 528, 530, 5, 208, 105, 2, 529, 527, 3, 2, 2, 2, 530, 533, 3, 2, 2, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 534, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 534, 535, 7, 290, 2, 2, 535, 83, 3, 2, 2, 2, 536, 537, 8, 43, 1, 2, 537, 557, 5, 86, 44, 2, 538, 539, 7, 289, 2, 2, 539, 540, 5, 84, 43, 2, 540, 541, 7, 290, 2, 2, 541, 557, 3, 2, 2, 2, 542, 544, 5, 90, 46, 2, 543, 545, 5, 112, 57, 2, 544, 543, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 547, 3, 2, 2, 2, 546, 548, 5, 116, 59, 2, 547, 546, 3, 2, 2, 2, 547, 548, 3, 2, 2, 2, 548, 557, 3, 2, 2, 2, 549, 551, 5, 88, 45, 2, 550, 552, 5, 112, 57, 2, 551, 550, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 554, 3, 2, 2, 2, 553, 555, 5, 116, 59, 2, 554, 553, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 557, 3, 2, 2, 2, 556, 536, 3, 2, 2, 2, 556, 538, 3, 2, 2, 2, 556, 542, 3, 2, 2, 2, 556, 549, 3, 2, 2, 2, 557, 572, 3, 2, 2, 2, 558, 559, 12, 5, 2, 2, 559, 561, 9, 9, 2, 2, 560, 562, 7, 10, 2, 2, 561, 560, 3, 2, 2, 2, 561, 562, 3, 2, 2, 2, 562, 563, 3, 2, 2, 2, 563, 565, 5, 84, 43, 2, 564, 566, 5, 112, 57, 2, 565, 564, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 568, 3, 2, 2, 2, 567, 569, 5, 116, 59, 2, 568, 567, 3, 2, 2, 2, 568, 569, 3, 2, 2, 2, 569, 571, 3, 2, 2, 2, 570, 558, 3, 2, 2, 2, 571, 574, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 572, 573, 3, 2, 2, 2, 573, 85, 3, 2, 2, 2, 574, 572, 3, 2, 2, 2, 575, 576, 7, 71, 2, 2, 576, 581, 5, 130, 66, 2, 577, 578, 7, 291, 2, 2, 578, 580, 5, 130, 66, 2, 579, 577, 3, 2, 2, 2, 580, 583, 3, 2, 2, 2, 581, 579, 3, 2, 2, 2, 581, 582, 3, 2, 2, 2, 582, 87, 3, 2, 2, 2, 583, 581, 3, 2, 2, 2, 584, 585, 5, 90, 46, 2, 585, 587, 5, 94, 48, 2, 586, 588, 5, 104, 53, 2, 587, 586, 3, 2, 2, 2, 587, 588, 3, 2, 2, 2, 588, 590, 3, 2, 2, 2, 589, 591, 5, 106, 54, 2, 590, 589, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 593, 3, 2, 2, 2, 592, 594, 5, 110, 56, 2, 593, 592, 3, 2, 2, 2, 593, 594, 3, 2, 2, 2, 594, 596, 3, 2, 2, 2, 595, 597, 5, 118, 60, 2, 596, 595, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 89, 3, 2, 2, 2, 598, 600, 7, 6, 2, 2, 599, 601, 5, 216, 109, 2, 600, 599, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 601, 611, 3, 2, 2, 2, 602, 612, 7, 298, 2, 2, 603, 608, 5, 92, 47, 2, 604, 605, 7, 291, 2, 2, 605, 607, 5, 92, 47, 2, 606, 604, 3, 2, 2, 2, 607, 610, 3, 2, 2, 2, 608, 606, 3, 2, 2, 2, 608, 609, 3, 2, 2, 2, 609, 612, 3, 2, 2, 2, 610, 608, 3, 2, 2, 2, 611, 602, 3, 2, 2, 2, 611, 603, 3, 2, 2, 2, 612, 91, 3, 2, 2, 2, 613, 618, 5, 130, 66, 2, 614, 616, 7, 9, 2, 2, 615, 614, 3, 2, 2, 2, 615, 616, 3, 2, 2, 2, 616, 617, 3, 2, 2, 2, 617, 619, 5, 180, 91, 2, 618, 615, 3, 2, 2, 2, 618, 619, 3, 2, 2, 2, 619, 93, 3, 2, 2, 2, 620, 621, 7, 7, 2, 2, 621, 622, 5, 96, 49, 2, 622, 95, 3, 2, 2, 2, 623, 624, 8, 49, 1, 2, 624, 629, 5, 98, 50, 2, 625, 626, 7, 291, 2, 2, 626, 628, 5, 98, 50, 2, 627, 625, 3, 2, 2, 2, 628, 631, 3, 2, 2, 2, 629, 627, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 646, 3, 2, 2, 2, 631, 629, 3, 2, 2, 2, 632, 634, 12, 3, 2, 2, 633, 635, 7, 54, 2, 2, 634, 633, 3, 2, 2, 2, 634, 635, 3, 2, 2, 2, 635, 637, 3, 2, 2, 2, 636, 638, 9, 10, 2, 2, 637, 636, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 639, 3, 2, 2, 2, 639, 640, 7, 46, 2, 2, 640, 642, 5, 96, 49, 2, 641, 643, 5, 102, 52, 2, 642, 641, 3, 2, 2, 2, 642, 643, 3, 2, 2, 2, 643, 645, 3, 2, 2, 2, 644, 632, 3, 2, 2, 2, 645, 648, 3, 2, 2, 2, 646, 644, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 97, 3, 2, 2, 2, 648, 646, 3, 2, 2, 2, 649, 651, 5, 100, 51, 2, 650, 652, 5, 158, 80, 2, 651, 650, 3, 2, 2, 2, 651, 652, 3, 2, 2, 2, 652, 99, 3, 2, 2, 2, 653, 655, 7, 73, 2, 2, 654, 653, 3, 2, 2, 2, 654, 655, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 679, 5, 130, 66, 2, 657, 658, 7, 57, 2, 2, 658, 659, 7, 73, 2, 2, 659, 660, 7, 289, 2, 2, 660, 661, 5, 180, 91, 2, 661, 662, 7, 289, 2, 2, 662, 667, 5, 130, 66, 2, 663, 664, 7, 291, 2, 2, 664, 666, 5, 130, 66, 2, 665, 663, 3, 2, 2, 2, 666, 669, 3, 2, 2, 2, 667, 665, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 670, 3, 2, 2, 2, 669, 667, 3, 2, 2, 2, 670, 671, 7, 290, 2, 2, 671, 672, 7, 290, 2, 2, 672, 679, 3, 2, 2, 2, 673, 674, 7, 232, 2, 2, 674, 675, 7, 289, 2, 2, 675, 676, 5, 130, 66, 2, 676, 677, 7, 290, 2, 2, 677, 679, 3, 2, 2, 2, 678, 654, 3, 2, 2, 2, 678, 657, 3, 2, 2, 2, 678, 673, 3, 2, 2, 2, 679, 101, 3, 2, 2, 2, 680, 681, 7, 55, 2, 2, 681, 695, 5, 132, 67, 2, 682, 683, 7, 150, 2, 2, 683, 684, 7, 289, 2, 2, 684, 689, 5, 180, 91, 2, 685, 686, 7, 291, 2, 2, 686, 688, 5, 180, 91, 2, 687, 685, 3, 2, 2, 2, 688, 691, 3, 2, 2, 2, 689, 687, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 692, 3, 2, 2, 2, 691, 689, 3, 2, 2, 2, 692, 693, 7, 290, 2, 2, 693, 695, 3, 2, 2, 2, 694, 680, 3, 2, 2, 2, 694, 682, 3, 2, 2, 2, 695, 103, 3, 2, 2, 2, 696, 697, 7, 13, 2, 2, 697, 698, 5, 132, 67, 2, 698, 105, 3, 2, 2, 2, 699, 700, 7, 14, 2, 2, 700, 701, 7, 15, 2, 2, 701, 706, 5, 108, 55, 2, 702, 703, 7, 291, 2, 2, 703, 705, 5, 108, 55, 2, 704, 702, 3, 2, 2, 2, 705, 708, 3, 2, 2, 2, 706, 704, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 107, 3, 2, 2, 2, 708, 706, 3, 2, 2, 2, 709, 761, 5, 130, 66, 2, 710, 711, 7, 289, 2, 2, 711, 761, 7, 290, 2, 2, 712, 713, 7, 289, 2, 2, 713, 718, 5, 130, 66, 2, 714, 715, 7, 291, 2, 2, 715, 717, 5, 130, 66, 2, 716, 714, 3, 2, 2, 2, 717, 720, 3, 2, 2, 2, 718, 716, 3, 2, 2, 2, 718, 719, 3, 2, 2, 2, 719, 721, 3, 2, 2, 2, 720, 718, 3, 2, 2, 2, 721, 722, 7, 290, 2, 2, 722, 761, 3, 2, 2, 2, 723, 724, 7, 18, 2, 2, 724, 725, 7, 289, 2, 2, 725, 730, 5, 130, 66, 2, 726, 727, 7, 291, 2, 2, 727, 729, 5, 130, 66, 2, 728, 726, 3, 2, 2, 2, 729, 732, 3, 2, 2, 2, 730, 728, 3, 2, 2, 2, 730, 731, 3, 2, 2, 2, 731, 733, 3, 2, 2, 2, 732, 730, 3, 2, 2, 2, 733, 734, 7, 290, 2, 2, 734, 761, 3, 2, 2, 2, 735, 736, 7, 19, 2, 2, 736, 737, 7, 289, 2, 2, 737, 742, 5, 130, 66, 2, 738, 739, 7, 291, 2, 2, 739, 741, 5, 130, 66, 2, 740, 738, 3, 2, 2, 2, 741, 744, 3, 2, 2, 2, 742, 740, 3, 2, 2, 2, 742, 743, 3, 2, 2, 2, 743, 745, 3, 2, 2, 2, 744, 742, 3, 2, 2, 2, 745, 746, 7, 290, 2, 2, 746, 761, 3, 2, 2, 2, 747, 748, 7, 16, 2, 2, 748, 749, 7, 17, 2, 2, 749, 750, 7, 289, 2, 2, 750, 755, 5, 108, 55, 2, 751, 752, 7, 291, 2, 2, 752, 754, 5, 108, 55, 2, 753, 751, 3, 2, 2, 2, 754, 757, 3, 2, 2, 2, 755, 753, 3, 2, 2, 2, 755, 756, 3, 2, 2, 2, 756, 758, 3, 2, 2, 2, 757, 755, 3, 2, 2, 2, 758, 759, 7, 290, 2, 2, 759, 761, 3, 2, 2, 2, 760, 709, 3, 2, 2, 2, 760, 710, 3, 2, 2, 2, 760, 712, 3, 2, 2, 2, 760, 723, 3, 2, 2, 2, 760, 735, 3, 2, 2, 2, 760, 747, 3, 2, 2, 2, 761, 109, 3, 2, 2, 2, 762, 763, 7, 21, 2, 2, 763, 764, 5, 132, 67, 2, 764, 111, 3, 2, 2, 2, 765, 766, 7, 20, 2, 2, 766, 767, 7, 15, 2, 2, 767, 772, 5, 114, 58, 2, 768, 769, 7, 291, 2, 2, 769, 771, 5, 114, 58, 2, 770, 768, 3, 2, 2, 2, 771, 774, 3, 2, 2, 2, 772, 770, 3, 2, 2, 2, 772, 773, 3, 2, 2, 2, 773, 113, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 775, 777, 5, 130, 66, 2, 776, 778, 9, 11, 2, 2, 777, 776, 3, 2, 2, 2, 777, 778, 3, 2, 2, 2, 778, 115, 3, 2, 2, 2, 779, 782, 7, 22, 2, 2, 780, 783, 7, 10, 2, 2, 781, 783, 5, 130, 66, 2, 782, 780, 3, 2, 2, 2, 782, 781, 3, 2, 2, 2, 783, 117, 3, 2, 2, 2, 784, 785, 7, 58, 2, 2, 785, 790, 5, 120, 61, 2, 786, 787, 7, 291, 2, 2, 787, 789, 5, 120, 61, 2, 788, 786, 3, 2, 2, 2, 789, 792, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 790, 791, 3, 2, 2, 2, 791, 119, 3, 2, 2, 2, 792, 790, 3, 2, 2, 2, 793, 794, 5, 160, 81, 2, 794, 795, 7, 9, 2, 2, 795, 796, 5, 122, 62, 2, 796, 121, 3, 2, 2, 2, 797, 799, 5, 160, 81, 2, 798, 797, 3, 2, 2, 2, 798, 799, 3, 2, 2, 2, 799, 800, 3, 2, 2, 2, 800, 811, 7, 289, 2, 2, 801, 802, 7, 20, 2, 2, 802, 803, 7, 15, 2, 2, 803, 808, 5, 124, 63, 2, 804, 805, 7, 291, 2, 2, 805, 807, 5, 124, 63, 2, 806, 804, 3, 2, 2, 2, 807, 810, 3, 2, 2, 2, 808, 806, 3, 2, 2, 2, 808, 809, 3, 2, 2, 2, 809, 812, 3, 2, 2, 2, 810, 808, 3, 2, 2, 2, 811, 801, 3, 2, 2, 2, 811, 812, 3, 2, 2, 2, 812, 823, 3, 2, 2, 2, 813, 814, 7, 60, 2, 2, 814, 815, 7, 15, 2, 2, 815, 820, 5, 130, 66, 2, 816, 817, 7, 291, 2, 2, 817, 819, 5, 130, 66, 2, 818, 816, 3, 2, 2, 2, 819, 822, 3, 2, 2, 2, 820, 818, 3, 2, 2, 2, 820, 821, 3, 2, 2, 2, 821, 824, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 823, 813, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, 826, 3, 2, 2, 2, 825, 827, 5, 126, 64, 2, 826, 825, 3, 2, 2, 2, 826, 827, 3, 2, 2, 2, 827, 828, 3, 2, 2, 2, 828, 829, 7, 290, 2, 2, 829, 123, 3, 2, 2, 2, 830, 832, 5, 130, 66, 2, 831, 833, 9, 11, 2, 2, 832, 831, 3, 2, 2, 2, 832, 833, 3, 2, 2, 2, 833, 836, 3, 2, 2, 2, 834, 835, 7, 36, 2, 2, 835, 837, 9, 12, 2, 2, 836, 834, 3, 2, 2, 2, 836, 837, 3, 2, 2, 2, 837, 125, 3, 2, 2, 2, 838, 839, 7, 61, 2, 2, 839, 843, 5, 128, 65, 2, 840, 841, 7, 62, 2, 2, 841, 843, 5, 128, 65, 2, 842, 838, 3, 2, 2, 2, 842, 840, 3, 2, 2, 2, 843, 127, 3, 2, 2, 2, 844, 845, 5, 130, 66, 2, 845, 846, 7, 64, 2, 2, 846, 129, 3, 2, 2, 2, 847, 848, 5, 132, 67, 2, 848, 131, 3, 2, 2, 2, 849, 850, 8, 67, 1, 2, 850, 851, 7, 27, 2, 2, 851, 862, 5, 132, 67, 7, 852, 853, 7, 29, 2, 2, 853, 854, 7, 289, 2, 2, 854, 855, 5, 84, 43, 2, 855, 856, 7, 290, 2, 2, 856, 862, 3, 2, 2, 2, 857, 859, 5, 136, 69, 2, 858, 860, 5, 134, 68, 2, 859, 858, 3, 2, 2, 2, 859, 860, 3, 2, 2, 2, 860, 862, 3, 2, 2, 2, 861, 849, 3, 2, 2, 2, 861, 852, 3, 2, 2, 2, 861, 857, 3, 2, 2, 2, 862, 871, 3, 2, 2, 2, 863, 864, 12, 4, 2, 2, 864, 865, 7, 25, 2, 2, 865, 870, 5, 132, 67, 5, 866, 867, 12, 3, 2, 2, 867, 868, 7, 24, 2, 2, 868, 870, 5, 132, 67, 4, 869, 863, 3, 2, 2, 2, 869, 866, 3, 2, 2, 2, 870, 873, 3, 2, 2, 2, 871, 869, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 872, 133, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 874, 876, 7, 27, 2, 2, 875, 874, 3, 2, 2, 2, 875, 876, 3, 2, 2, 2, 876, 877, 3, 2, 2, 2, 877, 878, 7, 30, 2, 2, 878, 879, 5, 136, 69, 2, 879, 880, 7, 25, 2, 2, 880, 881, 5, 136, 69, 2, 881, 958, 3, 2, 2, 2, 882, 884, 7, 27, 2, 2, 883, 882, 3, 2, 2, 2, 883, 884, 3, 2, 2, 2, 884, 885, 3, 2, 2, 2, 885, 886, 7, 26, 2, 2, 886, 887, 7, 289, 2, 2, 887, 892, 5, 130, 66, 2, 888, 889, 7, 291, 2, 2, 889, 891, 5, 130, 66, 2, 890, 888, 3, 2, 2, 2, 891, 894, 3, 2, 2, 2, 892, 890, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 895, 3, 2, 2, 2, 894, 892, 3, 2, 2, 2, 895, 896, 7, 290, 2, 2, 896, 958, 3, 2, 2, 2, 897, 899, 7, 27, 2, 2, 898, 897, 3, 2, 2, 2, 898, 899, 3, 2, 2, 2, 899, 900, 3, 2, 2, 2, 900, 901, 7, 26, 2, 2, 901, 902, 7, 289, 2, 2, 902, 903, 5, 84, 43, 2, 903, 904, 7, 290, 2, 2, 904, 958, 3, 2, 2, 2, 905, 906, 7, 29, 2, 2, 906, 907, 7, 289, 2, 2, 907, 908, 5, 84, 43, 2, 908, 909, 7, 290, 2, 2, 909, 958, 3, 2, 2, 2, 910, 912, 7, 27, 2, 2, 911, 910, 3, 2, 2, 2, 911, 912, 3, 2, 2, 2, 912, 913, 3, 2, 2, 2, 913, 914, 7, 32, 2, 2, 914, 958, 5, 136, 69, 2, 915, 917, 7, 27, 2, 2, 916, 915, 3, 2, 2, 2, 916, 917, 3, 2, 2, 2, 917, 918, 3, 2, 2, 2, 918, 919, 7, 31, 2, 2, 919, 933, 9, 13, 2, 2, 920, 921, 7, 289, 2, 2, 921, 934, 7, 290, 2, 2, 922, 923, 7, 289, 2, 2, 923, 928, 5, 130, 66, 2, 924, 925, 7, 291, 2, 2, 925, 927, 5, 130, 66, 2, 926, 924, 3, 2, 2, 2, 927, 930, 3, 2, 2, 2, 928, 926, 3, 2, 2, 2, 928, 929, 3, 2, 2, 2, 929, 931, 3, 2, 2, 2, 930, 928, 3, 2, 2, 2, 931, 932, 7, 290, 2, 2, 932, 934, 3, 2, 2, 2, 933, 920, 3, 2, 2, 2, 933, 922, 3, 2, 2, 2, 934, 958, 3, 2, 2, 2, 935, 937, 7, 27, 2, 2, 936, 935, 3, 2, 2, 2, 936, 937, 3, 2, 2, 2, 937, 938, 3, 2, 2, 2, 938, 939, 7, 31, 2, 2, 939, 958, 5, 136, 69, 2, 940, 942, 7, 33, 2, 2, 941, 943, 7, 27, 2, 2, 942, 941, 3, 2, 2, 2, 942, 943, 3, 2, 2, 2, 943, 944, 3, 2, 2, 2, 944, 958, 7, 277, 2, 2, 945, 947, 7, 33, 2, 2, 946, 948, 7, 27, 2, 2, 947, 946, 3, 2, 2, 2, 947, 948, 3, 2, 2, 2, 948, 949, 3, 2, 2, 2, 949, 958, 9, 14, 2, 2, 950, 952, 7, 33, 2, 2, 951, 953, 7, 27, 2, 2, 952, 951, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 954, 3, 2, 2, 2, 954, 955, 7, 12, 2, 2, 955, 956, 7, 7, 2, 2, 956, 958, 5, 136, 69, 2, 957, 875, 3, 2, 2, 2, 957, 883, 3, 2, 2, 2, 957, 898, 3, 2, 2, 2, 957, 905, 3, 2, 2, 2, 957, 911, 3, 2, 2, 2, 957, 916, 3, 2, 2, 2, 957, 936, 3, 2, 2, 2, 957, 940, 3, 2, 2, 2, 957, 945, 3, 2, 2, 2, 957, 950, 3, 2, 2, 2, 958, 135, 3, 2, 2, 2, 959, 960, 8, 69, 1, 2, 960, 964, 5, 138, 70, 2, 961, 962, 9, 15, 2, 2, 962, 964, 5, 136, 69, 9, 963, 959, 3, 2, 2, 2, 963, 961, 3, 2, 2, 2, 964, 986, 3, 2, 2, 2, 965, 966, 12, 8, 2, 2, 966, 967, 9, 16, 2, 2, 967, 985, 5, 136, 69, 9, 968, 969, 12, 7, 2, 2, 969, 970, 9, 17, 2, 2, 970, 985, 5, 136, 69, 8, 971, 972, 12, 6, 2, 2, 972, 973, 7, 284, 2, 2, 973, 985, 5, 136, 69, 7, 974, 975, 12, 5, 2, 2, 975, 976, 7, 285, 2, 2, 976, 985, 5, 136, 69, 6, 977, 978, 12, 4, 2, 2, 978, 979, 7, 283, 2, 2, 979, 985, 5, 136, 69, 5, 980, 981, 12, 3, 2, 2, 981, 982, 5, 198, 100, 2, 982, 983, 5, 136, 69, 4, 983, 985, 3, 2, 2, 2, 984, 965, 3, 2, 2, 2, 984, 968, 3, 2, 2, 2, 984, 971, 3, 2, 2, 2, 984, 974, 3, 2, 2, 2, 984, 977, 3, 2, 2, 2, 984, 980, 3, 2, 2, 2, 985, 988, 3, 2, 2, 2, 986, 984, 3, 2, 2, 2, 986, 987, 3, 2, 2, 2, 987, 137, 3, 2, 2, 2, 988, 986, 3, 2, 2, 2, 989, 990, 8, 70, 1, 2, 990, 992, 7, 41, 2, 2, 991, 993, 5, 176, 89, 2, 992, 991, 3, 2, 2, 2, 993, 994, 3, 2, 2, 2, 994, 992, 3, 2, 2, 2, 994, 995, 3, 2, 2, 2, 995, 998, 3, 2, 2, 2, 996, 997, 7, 44, 2, 2, 997, 999, 5, 130, 66, 2, 998, 996, 3, 2, 2, 2, 998, 999, 3, 2, 2, 2, 999, 1000, 3, 2, 2, 2, 1000, 1001, 7, 45, 2, 2, 1001, 1074, 3, 2, 2, 2, 1002, 1003, 7, 41, 2, 2, 1003, 1005, 5, 130, 66, 2, 1004, 1006, 5, 176, 89, 2, 1005, 1004, 3, 2, 2, 2, 1006, 1007, 3, 2, 2, 2, 1007, 1005, 3, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1011, 3, 2, 2, 2, 1009, 1010, 7, 44, 2, 2, 1010, 1012, 5, 130, 66, 2, 1011, 1009, 3, 2, 2, 2, 1011, 1012, 3, 2, 2, 2, 1012, 1013, 3, 2, 2, 2, 1013, 1014, 7, 45, 2, 2, 1014, 1074, 3, 2, 2, 2, 1015, 1016, 7, 67, 2, 2, 1016, 1017, 7, 289, 2, 2, 1017, 1020, 5, 130, 66, 2, 1018, 1019, 7, 114, 2, 2, 1019, 1021, 7, 36, 2, 2, 1020, 1018, 3, 2, 2, 2, 1020, 1021, 3, 2, 2, 2, 1021, 1022, 3, 2, 2, 2, 1022, 1023, 7, 290, 2, 2, 1023, 1074, 3, 2, 2, 2, 1024, 1025, 7, 69, 2, 2, 1025, 1026, 7, 289, 2, 2, 1026, 1029, 5, 130, 66, 2, 1027, 1028, 7, 114, 2, 2, 1028, 1030, 7, 36, 2, 2, 1029, 1027, 3, 2, 2, 2, 1029, 1030, 3, 2, 2, 2, 1030, 1031, 3, 2, 2, 2, 1031, 1032, 7, 290, 2, 2, 1032, 1074, 3, 2, 2, 2, 1033, 1034, 7, 119, 2, 2, 1034, 1035, 7, 289, 2, 2, 1035, 1036, 5, 136, 69, 2, 1036, 1037, 7, 26, 2, 2, 1037, 1038, 5, 136, 69, 2, 1038, 1039, 7, 290, 2, 2, 1039, 1074, 3, 2, 2, 2, 1040, 1074, 5, 208, 105, 2, 1041, 1074, 7, 298, 2, 2, 1042, 1043, 5, 180, 91, 2, 1043, 1044, 7, 286, 2, 2, 1044, 1045, 7, 298, 2, 2, 1045, 1074, 3, 2, 2, 2, 1046, 1047, 7, 289, 2, 2, 1047, 1048, 5, 84, 43, 2, 1048, 1049, 7, 290, 2, 2, 1049, 1074, 3, 2, 2, 2, 1050, 1051, 5, 140, 71, 2, 1051, 1063, 7, 289, 2, 2, 1052, 1054, 5, 216, 109, 2, 1053, 1052, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 1055, 3, 2, 2, 2, 1055, 1060, 5, 130, 66, 2, 1056, 1057, 7, 291, 2, 2, 1057, 1059, 5, 130, 66, 2, 1058, 1056, 3, 2, 2, 2, 1059, 1062, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1060, 1061, 3, 2, 2, 2, 1061, 1064, 3, 2, 2, 2, 1062, 1060, 3, 2, 2, 2, 1063, 1053, 3, 2, 2, 2, 1063, 1064, 3, 2, 2, 2, 1064, 1065, 3, 2, 2, 2, 1065, 1066, 7, 290, 2, 2, 1066, 1074, 3, 2, 2, 2, 1067, 1074, 5, 168, 85, 2, 1068, 1074, 5, 142, 72, 2, 1069, 1070, 7, 289, 2, 2, 1070, 1071, 5, 130, 66, 2, 1071, 1072, 7, 290, 2, 2, 1072, 1074, 3, 2, 2, 2, 1073, 989, 3, 2, 2, 2, 1073, 1002, 3, 2, 2, 2, 1073, 1015, 3, 2, 2, 2, 1073, 1024, 3, 2, 2, 2, 1073, 1033, 3, 2, 2, 2, 1073, 1040, 3, 2, 2, 2, 1073, 1041, 3, 2, 2, 2, 1073, 1042, 3, 2, 2, 2, 1073, 1046, 3, 2, 2, 2, 1073, 1050, 3, 2, 2, 2, 1073, 1067, 3, 2, 2, 2, 1073, 1068, 3, 2, 2, 2, 1073, 1069, 3, 2, 2, 2, 1074, 1082, 3, 2, 2, 2, 1075, 1076, 12, 6, 2, 2, 1076, 1077, 7, 287, 2, 2, 1077, 1078, 5, 136, 69, 2, 1078, 1079, 7, 288, 2, 2, 1079, 1081, 3, 2, 2, 2, 1080, 1075, 3, 2, 2, 2, 1081, 1084, 3, 2, 2, 2, 1082, 1080, 3, 2, 2, 2, 1082, 1083, 3, 2, 2, 2, 1083, 139, 3, 2, 2, 2, 1084, 1082, 3, 2, 2, 2, 1085, 1086, 5, 180, 91, 2, 1086, 141, 3, 2, 2, 2, 1087, 1088, 5, 180, 91, 2, 1088, 143, 3, 2, 2, 2, 1089, 1094, 5, 168, 85, 2, 1090, 1091, 7, 286, 2, 2, 1091, 1093, 5, 168, 85, 2, 1092, 1090, 3, 2, 2, 2, 1093, 1096, 3, 2, 2, 2, 1094, 1092, 3, 2, 2, 2, 1094, 1095, 3, 2, 2, 2, 1095, 145, 3, 2, 2, 2, 1096, 1094, 3, 2, 2, 2, 1097, 1100, 7, 40, 2, 2, 1098, 1101, 5, 148, 75, 2, 1099, 1101, 5, 152, 77, 2, 1100, 1098, 3, 2, 2, 2, 1100, 1099, 3, 2, 2, 2, 1100, 1101, 3, 2, 2, 2, 1101, 147, 3, 2, 2, 2, 1102, 1104, 5, 150, 76, 2, 1103, 1105, 5, 154, 78, 2, 1104, 1103, 3, 2, 2, 2, 1104, 1105, 3, 2, 2, 2, 1105, 149, 3, 2, 2, 2, 1106, 1107, 5, 156, 79, 2, 1107, 1108, 5, 168, 85, 2, 1108, 1110, 3, 2, 2, 2, 1109, 1106, 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1109, 3, 2, 2, 2, 1111, 1112, 3, 2, 2, 2, 1112, 151, 3, 2, 2, 2, 1113, 1116, 5, 154, 78, 2, 1114, 1117, 5, 150, 76, 2, 1115, 1117, 5, 154, 78, 2, 1116, 1114, 3, 2, 2, 2, 1116, 1115, 3, 2, 2, 2, 1116, 1117, 3, 2, 2, 2, 1117, 153, 3, 2, 2, 2, 1118, 1119, 5, 156, 79, 2, 1119, 1120, 5, 168, 85, 2, 1120, 1121, 7, 99, 2, 2, 1121, 1122, 5, 168, 85, 2, 1122, 155, 3, 2, 2, 2, 1123, 1125, 9, 18, 2, 2, 1124, 1123, 3, 2, 2, 2, 1124, 1125, 3, 2, 2, 2, 1125, 1126, 3, 2, 2, 2, 1126, 1129, 9, 19, 2, 2, 1127, 1129, 7, 307, 2, 2, 1128, 1124, 3, 2, 2, 2, 1128, 1127, 3, 2, 2, 2, 1129, 157, 3, 2, 2, 2, 1130, 1132, 7, 9, 2, 2, 1131, 1130, 3, 2, 2, 2, 1131, 1132, 3, 2, 2, 2, 1132, 1133, 3, 2, 2, 2, 1133, 1135, 5, 170, 86, 2, 1134, 1136, 5, 164, 83, 2, 1135, 1134, 3, 2, 2, 2, 1135, 1136, 3, 2, 2, 2, 1136, 159, 3, 2, 2, 2, 1137, 1138, 5, 168, 85, 2, 1138, 1139, 5, 162, 82, 2, 1139, 161, 3, 2, 2, 2, 1140, 1141, 7, 130, 2, 2, 1141, 1143, 5, 168, 85, 2, 1142, 1140, 3, 2, 2, 2, 1143, 1144, 3, 2, 2, 2, 1144, 1142, 3, 2, 2, 2, 1144, 1145, 3, 2, 2, 2, 1145, 1148, 3, 2, 2, 2, 1146, 1148, 3, 2, 2, 2, 1147, 1142, 3, 2, 2, 2, 1147, 1146, 3, 2, 2, 2, 1148, 163, 3, 2, 2, 2, 1149, 1150, 7, 289, 2, 2, 1150, 1151, 5, 166, 84, 2, 1151, 1152, 7, 290, 2, 2, 1152, 165, 3, 2, 2, 2, 1153, 1158, 5, 168, 85, 2, 1154, 1155, 7, 291, 2, 2, 1155, 1157, 5, 168, 85, 2, 1156, 1154, 3, 2, 2, 2, 1157, 1160, 3, 2, 2, 2, 1158, 1156, 3, 2, 2, 2, 1158, 1159, 3, 2, 2, 2, 1159, 167, 3, 2, 2, 2, 1160, 1158, 3, 2, 2, 2, 1161, 1162, 5, 170, 86, 2, 1162, 169, 3, 2, 2, 2, 1163, 1166, 5, 172, 87, 2, 1164, 1166, 5, 174, 88, 2, 1165, 1163, 3, 2, 2, 2, 1165, 1164, 3, 2, 2, 2, 1166, 171, 3, 2, 2, 2, 1167, 1168, 9, 20, 2, 2, 1168, 173, 3, 2, 2, 2, 1169, 1170, 7, 307, 2, 2, 1170, 175, 3, 2, 2, 2, 1171, 1172, 7, 42, 2, 2, 1172, 1173, 5, 130, 66, 2, 1173, 1174, 7, 43, 2, 2, 1174, 1175, 5, 130, 66, 2, 1175, 177, 3, 2, 2, 2, 1176, 1181, 5, 180, 91, 2, 1177, 1178, 7, 291, 2, 2, 1178, 1180, 5, 180, 91, 2, 1179, 1177, 3, 2, 2, 2, 1180, 1183, 3, 2, 2, 2, 1181, 1179, 3, 2, 2, 2, 1181, 1182, 3, 2, 2, 2, 1182, 179, 3, 2, 2, 2, 1183, 1181, 3, 2, 2, 2, 1184, 1188, 7, 311, 2, 2, 1185, 1187, 7, 306, 2, 2, 1186, 1185, 3, 2, 2, 2, 1187, 1190, 3, 2, 2, 2, 1188, 1189, 3, 2, 2, 2, 1188, 1186, 3, 2, 2, 2, 1189, 181, 3, 2, 2, 2, 1190, 1188, 3, 2, 2, 2, 1191, 1192, 7, 70, 2, 2, 1192, 1193, 5, 188, 95, 2, 1193, 183, 3, 2, 2, 2, 1194, 1195, 7, 118, 2, 2, 1195, 1196, 7, 27, 2, 2, 1196, 1197, 7, 29, 2, 2, 1197, 185, 3, 2, 2, 2, 1198, 1199, 7, 118, 2, 2, 1199, 1200, 7, 29, 2, 2, 1200, 187, 3, 2, 2, 2, 1201, 1202, 7, 289, 2, 2, 1202, 1207, 5, 190, 96, 2, 1203, 1204, 7, 291, 2, 2, 1204, 1206, 5, 190, 96, 2, 1205, 1203, 3, 2, 2, 2, 1206, 1209, 3, 2, 2, 2, 1207, 1205, 3, 2, 2, 2, 1207, 1208, 3, 2, 2, 2, 1208, 1210, 3, 2, 2, 2, 1209, 1207, 3, 2, 2, 2, 1210, 1211, 7, 290, 2, 2, 1211, 189, 3, 2, 2, 2, 1212, 1217, 5, 192, 97, 2, 1213, 1215, 7, 278, 2, 2, 1214, 1213, 3, 2, 2, 2, 1214, 1215, 3, 2, 2, 2, 1215, 1216, 3, 2, 2, 2, 1216, 1218, 5, 194, 98, 2, 1217, 1214, 3, 2, 2, 2, 1217, 1218, 3, 2, 2, 2, 1218, 191, 3, 2, 2, 2, 1219, 1224, 5, 168, 85, 2, 1220, 1221, 7, 286, 2, 2, 1221, 1223, 5, 168, 85, 2, 1222, 1220, 3, 2, 2, 2, 1223, 1226, 3, 2, 2, 2, 1224, 1222, 3, 2, 2, 2, 1224, 1225, 3, 2, 2, 2, 1225, 1229, 3, 2, 2, 2, 1226, 1224, 3, 2, 2, 2, 1227, 1229, 7, 307, 2, 2, 1228, 1219, 3, 2, 2, 2, 1228, 1227, 3, 2, 2, 2, 1229, 193, 3, 2, 2, 2, 1230, 1235, 7, 308, 2, 2, 1231, 1235, 7, 309, 2, 2, 1232, 1235, 5, 214, 108, 2, 1233, 1235, 7, 307, 2, 2, 1234, 1230, 3, 2, 2, 2, 1234, 1231, 3, 2, 2, 2, 1234, 1232, 3, 2, 2, 2, 1234, 1233, 3, 2, 2, 2, 1235, 195, 3, 2, 2, 2, 1236, 1243, 7, 25, 2, 2, 1237, 1238, 7, 284, 2, 2, 1238, 1243, 7, 284, 2, 2, 1239, 1243, 7, 24, 2, 2, 1240, 1241, 7, 283, 2, 2, 1241, 1243, 7, 283, 2, 2, 1242, 1236, 3, 2, 2, 2, 1242, 1237, 3, 2, 2, 2, 1242, 1239, 3, 2, 2, 2, 1242, 1240, 3, 2, 2, 2, 1243, 197, 3, 2, 2, 2, 1244, 1259, 7, 278, 2, 2, 1245, 1259, 7, 279, 2, 2, 1246, 1259, 7, 280, 2, 2, 1247, 1248, 7, 280, 2, 2, 1248, 1259, 7, 278, 2, 2, 1249, 1250, 7, 279, 2, 2, 1250, 1259, 7, 278, 2, 2, 1251, 1252, 7, 280, 2, 2, 1252, 1259, 7, 279, 2, 2, 1253, 1254, 7, 281, 2, 2, 1254, 1259, 7, 278, 2, 2, 1255, 1256, 7, 280, 2, 2, 1256, 1257, 7, 278, 2, 2, 1257, 1259, 7, 279, 2, 2, 1258, 1244, 3, 2, 2, 2, 1258, 1245, 3, 2, 2, 2, 1258, 1246, 3, 2, 2, 2, 1258, 1247, 3, 2, 2, 2, 1258, 1249, 3, 2, 2, 2, 1258, 1251, 3, 2, 2, 2, 1258, 1253, 3, 2, 2, 2, 1258, 1255, 3, 2, 2, 2, 1259, 199, 3, 2, 2, 2, 1260, 1261, 7, 280, 2, 2, 1261, 1268, 7, 280, 2, 2, 1262, 1263, 7, 279, 2, 2, 1263, 1268, 7, 279, 2, 2, 1264, 1268, 7, 284, 2, 2, 1265, 1268, 7, 285, 2, 2, 1266, 1268, 7, 283, 2, 2, 1267, 1260, 3, 2, 2, 2, 1267, 1262, 3, 2, 2, 2, 1267, 1264, 3, 2, 2, 2, 1267, 1265, 3, 2, 2, 2, 1267, 1266, 3, 2, 2, 2, 1268, 201, 3, 2, 2, 2, 1269, 1270, 9, 21, 2, 2, 1270, 203, 3, 2, 2, 2, 1271, 1272, 9, 22, 2, 2, 1272, 205, 3, 2, 2, 2, 1273, 1274, 5, 180, 91, 2, 1274, 207, 3, 2, 2, 2, 1275, 1288, 5, 210, 106, 2, 1276, 1288, 5, 212, 107, 2, 1277, 1288, 5, 146, 74, 2, 1278, 1279, 7, 300, 2, 2, 1279, 1288, 5, 212, 107, 2, 1280, 1288, 5, 214, 108, 2, 1281, 1288, 7, 309, 2, 2, 1282, 1288, 7, 310, 2, 2, 1283, 1285, 7, 27, 2, 2, 1284, 1283, 3, 2, 2, 2, 1284, 1285, 3, 2, 2, 2, 1285, 1286, 3, 2, 2, 2, 1286, 1288, 7, 277, 2, 2, 1287, 1275, 3, 2, 2, 2, 1287, 1276, 3, 2, 2, 2, 1287, 1277, 3, 2, 2, 2, 1287, 1278, 3, 2, 2, 2, 1287, 1280, 3, 2, 2, 2, 1287, 1281, 3, 2, 2, 2, 1287, 1282, 3, 2, 2, 2, 1287, 1284, 3, 2, 2, 2, 1288, 209, 3, 2, 2, 2, 1289, 1290, 7, 307, 2, 2, 1290, 211, 3, 2, 2, 2, 1291, 1292, 7, 308, 2, 2, 1292, 213, 3, 2, 2, 2, 1293, 1294, 9, 14, 2, 2, 1294, 215, 3, 2, 2, 2, 1295, 1296, 9, 23, 2, 2, 1296, 217, 3, 2, 2, 2, 151, 226, 229, 231, 240, 256, 260, 272, 288, 292, 296, 299, 303, 308, 337, 350, 355, 359, 369, 379, 383, 389, 393, 401, 404, 407, 416, 420, 427, 434, 452, 456, 463, 468, 475, 479, 483, 487, 495, 499, 507, 511, 522, 531, 544, 547, 551, 554, 556, 561, 565, 568, 572, 581, 587, 590, 593, 596, 600, 608, 611, 615, 618, 629, 634, 637, 642, 646, 651, 654, 667, 678, 689, 694, 706, 718, 730, 742, 755, 760, 772, 777, 782, 790, 798, 808, 811, 820, 823, 826, 832, 836, 842, 859, 861, 869, 871, 875, 883, 892, 898, 911, 916, 928, 933, 936, 942, 947, 952, 957, 963, 984, 986, 994, 998, 1007, 1011, 1020, 1029, 1053, 1060, 1063, 1073, 1082, 1094, 1100, 1104, 1111, 1116, 1124, 1128, 1131, 1135, 1144, 1147, 1158, 1165, 1181, 1188, 1207, 1214, 1217, 1224, 1228, 1234, 1242, 1258, 1267, 1284, 1287] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.js b/src/lib/flinksql/FlinkSqlParser.js index 9a937d5..d680080 100644 --- a/src/lib/flinksql/FlinkSqlParser.js +++ b/src/lib/flinksql/FlinkSqlParser.js @@ -8,7 +8,7 @@ var grammarFileName = "FlinkSqlParser.g4"; var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0003\u0142\u02d4\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", + "\u0003\u0137\u0512\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", "\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t\u0007", "\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004\f\t\f", "\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010\t\u0010", @@ -21,467 +21,855 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u00041\t1\u0004", "2\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u00048\t8\u0004", "9\t9\u0004:\t:\u0004;\t;\u0004<\t<\u0004=\t=\u0004>\t>\u0004?\t?\u0004", - "@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0003\u0002\u0003\u0002\u0003\u0002", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004", - "\u0003\u0004\u0007\u0004\u0091\n\u0004\f\u0004\u000e\u0004\u0094\u000b", - "\u0004\u0003\u0005\u0003\u0005\u0005\u0005\u0098\n\u0005\u0003\u0006", - "\u0003\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0004D\tD\u0004E\tE\u0004F\tF\u0004", + "G\tG\u0004H\tH\u0004I\tI\u0004J\tJ\u0004K\tK\u0004L\tL\u0004M\tM\u0004", + "N\tN\u0004O\tO\u0004P\tP\u0004Q\tQ\u0004R\tR\u0004S\tS\u0004T\tT\u0004", + "U\tU\u0004V\tV\u0004W\tW\u0004X\tX\u0004Y\tY\u0004Z\tZ\u0004[\t[\u0004", + "\\\t\\\u0004]\t]\u0004^\t^\u0004_\t_\u0004`\t`\u0004a\ta\u0004b\tb\u0004", + "c\tc\u0004d\td\u0004e\te\u0004f\tf\u0004g\tg\u0004h\th\u0004i\ti\u0004", + "j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0003\u0002\u0003\u0002\u0003\u0002", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0005\u0004", + "\u00e3\n\u0004\u0003\u0004\u0007\u0004\u00e6\n\u0004\f\u0004\u000e\u0004", + "\u00e9\u000b\u0004\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003", + "\u0005\u0003\u0005\u0005\u0005\u00f1\n\u0005\u0003\u0006\u0003\u0006", "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", - "\u0005\u0007\u00a7\n\u0007\u0003\b\u0003\b\u0005\b\u00ab\n\b\u0003\t", - "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u00b4\n\t\f", - "\t\u000e\t\u00b7\u000b\t\u0003\t\u0003\t\u0005\t\u00bb\n\t\u0003\t\u0003", - "\t\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\f\u0003\f\u0003", - "\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0007", - "\u000e\u00cd\n\u000e\f\u000e\u000e\u000e\u00d0\u000b\u000e\u0003\u000f", - "\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0005\u0010\u00d7\n", - "\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0005", - "\u0011\u00de\n\u0011\u0003\u0011\u0003\u0011\u0005\u0011\u00e2\n\u0011", + "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "\u0005\u0007\u0101\n\u0007\u0003\b\u0003\b\u0005\b\u0105\n\b\u0003\t", + "\u0003\t\u0003\t\u0003\n\u0003\n\u0003\n\u0003\n\u0003\n\u0003\u000b", + "\u0003\u000b\u0005\u000b\u0111\n\u000b\u0003\u000b\u0003\u000b\u0003", + "\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003", + "\r\u0007\r\u011f\n\r\f\r\u000e\r\u0122\u000b\r\u0003\r\u0005\r\u0125", + "\n\r\u0003\r\u0003\r\u0005\r\u0129\n\r\u0003\r\u0005\r\u012c\n\r\u0003", + "\r\u0003\r\u0005\r\u0130\n\r\u0003\u000e\u0003\u000e\u0003\u000e\u0005", + "\u000e\u0135\n\u000e\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010", "\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012", - "\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0005\u0013", - "\u00ef\n\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", - "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u00fa", - "\n\u0015\f\u0015\u000e\u0015\u00fd\u000b\u0015\u0003\u0015\u0003\u0015", - "\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017", - "\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0005\u0018\u010b\n", - "\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0005", - "\u0019\u0112\n\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0116\n\u0019", - "\u0003\u001a\u0003\u001a\u0005\u001a\u011a\n\u001a\u0003\u001a\u0003", - "\u001a\u0005\u001a\u011e\n\u001a\u0003\u001a\u0003\u001a\u0003\u001b", - "\u0003\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u0126\n\u001b\u0003", - "\u001b\u0003\u001b\u0005\u001b\u012a\n\u001b\u0003\u001b\u0003\u001b", - "\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0132\n", - "\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0136\n\u001c\u0003\u001d", - "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0007\u001d\u013d\n", - "\u001d\f\u001d\u000e\u001d\u0140\u000b\u001d\u0003\u001d\u0003\u001d", - "\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0007\u001e\u0148\n", - "\u001e\f\u001e\u000e\u001e\u014b\u000b\u001e\u0003\u001f\u0003\u001f", - "\u0003\u001f\u0003\u001f\u0007\u001f\u0151\n\u001f\f\u001f\u000e\u001f", - "\u0154\u000b\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", - " \u0005 \u015c\n \u0003!\u0003!\u0003\"\u0003\"\u0005\"\u0162\n\"\u0003", - "\"\u0003\"\u0003\"\u0003\"\u0007\"\u0168\n\"\f\"\u000e\"\u016b\u000b", - "\"\u0005\"\u016d\n\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0005#\u0174", - "\n#\u0003#\u0005#\u0177\n#\u0003#\u0003#\u0003#\u0003#\u0005#\u017d", - "\n#\u0003$\u0003$\u0003$\u0007$\u0182\n$\f$\u000e$\u0185\u000b$\u0003", - "%\u0003%\u0003%\u0003&\u0005&\u018b\n&\u0003&\u0003&\u0003\'\u0003\'", - "\u0003(\u0003(\u0003(\u0003(\u0003(\u0005(\u0196\n(\u0005(\u0198\n(", - "\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0007(\u01a0\n(\f(\u000e", - "(\u01a3\u000b(\u0003)\u0005)\u01a6\n)\u0003)\u0003)\u0003)\u0003)\u0003", - ")\u0003)\u0005)\u01ae\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0007)\u01b5", - "\n)\f)\u000e)\u01b8\u000b)\u0003)\u0003)\u0003)\u0005)\u01bd\n)\u0003", - ")\u0003)\u0003)\u0005)\u01c2\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0003", - ")\u0003)\u0003)\u0007)\u01cc\n)\f)\u000e)\u01cf\u000b)\u0003)\u0003", - ")\u0005)\u01d3\n)\u0003)\u0005)\u01d6\n)\u0003)\u0003)\u0003)\u0003", - ")\u0005)\u01dc\n)\u0003)\u0003)\u0003)\u0005)\u01e1\n)\u0003)\u0003", - ")\u0003)\u0005)\u01e6\n)\u0003)\u0003)\u0003)\u0005)\u01eb\n)\u0003", - "*\u0003*\u0003*\u0003*\u0005*\u01f1\n*\u0003*\u0003*\u0003*\u0003*\u0003", - "*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003", - "*\u0003*\u0003*\u0003*\u0003*\u0007*\u0206\n*\f*\u000e*\u0209\u000b", - "*\u0003+\u0003+\u0003+\u0006+\u020e\n+\r+\u000e+\u020f\u0003+\u0003", - "+\u0005+\u0214\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0006+\u021b\n", - "+\r+\u000e+\u021c\u0003+\u0003+\u0005+\u0221\n+\u0003+\u0003+\u0003", - "+\u0003+\u0003+\u0003+\u0003+\u0005+\u022a\n+\u0003+\u0003+\u0003+\u0003", - "+\u0003+\u0003+\u0003+\u0005+\u0233\n+\u0003+\u0003+\u0003+\u0003+\u0003", - "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003", - "+\u0005+\u0244\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0007+\u024b\n", - "+\f+\u000e+\u024e\u000b+\u0003,\u0005,\u0251\n,\u0003,\u0003,\u0005", - ",\u0255\n,\u0005,\u0257\n,\u0003-\u0003-\u0003-\u0003-\u0003.\u0003", - ".\u0003.\u0007.\u0260\n.\f.\u000e.\u0263\u000b.\u0003/\u0003/\u0003", - "0\u00030\u00050\u0269\n0\u00031\u00031\u00032\u00032\u00032\u00032\u0003", - "2\u00033\u00033\u00033\u00073\u0275\n3\f3\u000e3\u0278\u000b3\u0003", - "4\u00034\u00074\u027c\n4\f4\u000e4\u027f\u000b4\u00035\u00035\u0003", - "5\u00035\u00035\u00075\u0286\n5\f5\u000e5\u0289\u000b5\u00035\u0003", - "5\u00036\u00036\u00036\u00036\u00037\u00037\u00037\u00038\u00038\u0003", - "8\u00038\u00039\u00039\u00039\u00039\u00039\u00039\u00059\u029e\n9\u0003", - ":\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003", - ":\u0003:\u0003:\u0003:\u0005:\u02ae\n:\u0003;\u0003;\u0003;\u0003;\u0003", - ";\u0003;\u0003;\u0005;\u02b7\n;\u0003<\u0003<\u0003=\u0003=\u0003>\u0003", - ">\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0005?\u02c7", - "\n?\u0003?\u0005?\u02ca\n?\u0003@\u0003@\u0003A\u0003A\u0003B\u0003", - "B\u0003C\u0003C\u0003C\u0003\u027d\u0005NRTD\u0002\u0004\u0006\b\n\f", - "\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.0246", - "8:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0002\u000e", - "\u0003\u0002\u0108\u011e\u0003\u0002\u00c0\u00c1\u0004\u0002PP\u0094", - "\u0094\u0003\u0002\u000b\f\u0003\u0002#$\u0004\u0002\u0082\u0083\u0088", - "\u0088\u0003\u0002\u0084\u0087\u0004\u0002\u0082\u0083\u008b\u008b\u0005", - "\u0002\u0087\u0087\u0136\u0136\u0138\u013c\u0005\u0002\u001c\u001c\u0122", - "\u0123\u0138\u0139\u0004\u0002\u012f\u0131\u013e\u013e\u0004\u0002\u000b", - "\u000b\r\r\u0002\u0307\u0002\u0086\u0003\u0002\u0002\u0002\u0004\u0089", - "\u0003\u0002\u0002\u0002\u0006\u0092\u0003\u0002\u0002\u0002\b\u0097", - "\u0003\u0002\u0002\u0002\n\u0099\u0003\u0002\u0002\u0002\f\u00a6\u0003", - "\u0002\u0002\u0002\u000e\u00aa\u0003\u0002\u0002\u0002\u0010\u00ac\u0003", - "\u0002\u0002\u0002\u0012\u00be\u0003\u0002\u0002\u0002\u0014\u00c1\u0003", - "\u0002\u0002\u0002\u0016\u00c3\u0003\u0002\u0002\u0002\u0018\u00c5\u0003", - "\u0002\u0002\u0002\u001a\u00c9\u0003\u0002\u0002\u0002\u001c\u00d1\u0003", - "\u0002\u0002\u0002\u001e\u00d3\u0003\u0002\u0002\u0002 \u00db\u0003", - "\u0002\u0002\u0002\"\u00e7\u0003\u0002\u0002\u0002$\u00e9\u0003\u0002", - "\u0002\u0002&\u00f0\u0003\u0002\u0002\u0002(\u00f4\u0003\u0002\u0002", - "\u0002*\u0100\u0003\u0002\u0002\u0002,\u0105\u0003\u0002\u0002\u0002", - ".\u0107\u0003\u0002\u0002\u00020\u010e\u0003\u0002\u0002\u00022\u0117", - "\u0003\u0002\u0002\u00024\u0121\u0003\u0002\u0002\u00026\u012d\u0003", - "\u0002\u0002\u00028\u0137\u0003\u0002\u0002\u0002:\u0143\u0003\u0002", - "\u0002\u0002<\u014c\u0003\u0002\u0002\u0002>\u015b\u0003\u0002\u0002", - "\u0002@\u015d\u0003\u0002\u0002\u0002B\u015f\u0003\u0002\u0002\u0002", - "D\u017c\u0003\u0002\u0002\u0002F\u017e\u0003\u0002\u0002\u0002H\u0186", - "\u0003\u0002\u0002\u0002J\u018a\u0003\u0002\u0002\u0002L\u018e\u0003", - "\u0002\u0002\u0002N\u0197\u0003\u0002\u0002\u0002P\u01ea\u0003\u0002", - "\u0002\u0002R\u01f0\u0003\u0002\u0002\u0002T\u0243\u0003\u0002\u0002", - "\u0002V\u0256\u0003\u0002\u0002\u0002X\u0258\u0003\u0002\u0002\u0002", - "Z\u025c\u0003\u0002\u0002\u0002\\\u0264\u0003\u0002\u0002\u0002^\u0268", - "\u0003\u0002\u0002\u0002`\u026a\u0003\u0002\u0002\u0002b\u026c\u0003", - "\u0002\u0002\u0002d\u0271\u0003\u0002\u0002\u0002f\u0279\u0003\u0002", - "\u0002\u0002h\u0280\u0003\u0002\u0002\u0002j\u028c\u0003\u0002\u0002", - "\u0002l\u0290\u0003\u0002\u0002\u0002n\u0293\u0003\u0002\u0002\u0002", - "p\u029d\u0003\u0002\u0002\u0002r\u02ad\u0003\u0002\u0002\u0002t\u02b6", - "\u0003\u0002\u0002\u0002v\u02b8\u0003\u0002\u0002\u0002x\u02ba\u0003", - "\u0002\u0002\u0002z\u02bc\u0003\u0002\u0002\u0002|\u02c9\u0003\u0002", - "\u0002\u0002~\u02cb\u0003\u0002\u0002\u0002\u0080\u02cd\u0003\u0002", - "\u0002\u0002\u0082\u02cf\u0003\u0002\u0002\u0002\u0084\u02d1\u0003\u0002", - "\u0002\u0002\u0086\u0087\u0005\u0004\u0003\u0002\u0087\u0088\u0007\u0002", - "\u0002\u0003\u0088\u0003\u0003\u0002\u0002\u0002\u0089\u008a\u0005\u0006", - "\u0004\u0002\u008a\u008b\u0007\u0002\u0002\u0003\u008b\u0005\u0003\u0002", - "\u0002\u0002\u008c\u008d\u0005\b\u0005\u0002\u008d\u008e\u0007\u012d", - "\u0002\u0002\u008e\u0091\u0003\u0002\u0002\u0002\u008f\u0091\u0005\n", - "\u0006\u0002\u0090\u008c\u0003\u0002\u0002\u0002\u0090\u008f\u0003\u0002", - "\u0002\u0002\u0091\u0094\u0003\u0002\u0002\u0002\u0092\u0090\u0003\u0002", - "\u0002\u0002\u0092\u0093\u0003\u0002\u0002\u0002\u0093\u0007\u0003\u0002", - "\u0002\u0002\u0094\u0092\u0003\u0002\u0002\u0002\u0095\u0098\u0005\f", - "\u0007\u0002\u0096\u0098\u0005\u000e\b\u0002\u0097\u0095\u0003\u0002", - "\u0002\u0002\u0097\u0096\u0003\u0002\u0002\u0002\u0098\t\u0003\u0002", - "\u0002\u0002\u0099\u009a\u0007\u012d\u0002\u0002\u009a\u000b\u0003\u0002", - "\u0002\u0002\u009b\u00a7\u0005\u0010\t\u0002\u009c\u00a7\u0005\u001e", - "\u0010\u0002\u009d\u00a7\u0005 \u0011\u0002\u009e\u00a7\u0005\"\u0012", - "\u0002\u009f\u00a7\u0005$\u0013\u0002\u00a0\u00a7\u0005*\u0016\u0002", - "\u00a1\u00a7\u0005,\u0017\u0002\u00a2\u00a7\u0005.\u0018\u0002\u00a3", - "\u00a7\u00050\u0019\u0002\u00a4\u00a7\u00052\u001a\u0002\u00a5\u00a7", - "\u00054\u001b\u0002\u00a6\u009b\u0003\u0002\u0002\u0002\u00a6\u009c", - "\u0003\u0002\u0002\u0002\u00a6\u009d\u0003\u0002\u0002\u0002\u00a6\u009e", - "\u0003\u0002\u0002\u0002\u00a6\u009f\u0003\u0002\u0002\u0002\u00a6\u00a0", - "\u0003\u0002\u0002\u0002\u00a6\u00a1\u0003\u0002\u0002\u0002\u00a6\u00a2", - "\u0003\u0002\u0002\u0002\u00a6\u00a3\u0003\u0002\u0002\u0002\u00a6\u00a4", - "\u0003\u0002\u0002\u0002\u00a6\u00a5\u0003\u0002\u0002\u0002\u00a7\r", - "\u0003\u0002\u0002\u0002\u00a8\u00ab\u0005@!\u0002\u00a9\u00ab\u0005", - "6\u001c\u0002\u00aa\u00a8\u0003\u0002\u0002\u0002\u00aa\u00a9\u0003", - "\u0002\u0002\u0002\u00ab\u000f\u0003\u0002\u0002\u0002\u00ac\u00ad\u0007", - "I\u0002\u0002\u00ad\u00ae\u0007J\u0002\u0002\u00ae\u00af\u0005f4\u0002", - "\u00af\u00b0\u0007\u012a\u0002\u0002\u00b0\u00b5\u0005\u0012\n\u0002", - "\u00b1\u00b2\u0007\u012c\u0002\u0002\u00b2\u00b4\u0005\u0012\n\u0002", - "\u00b3\u00b1\u0003\u0002\u0002\u0002\u00b4\u00b7\u0003\u0002\u0002\u0002", - "\u00b5\u00b3\u0003\u0002\u0002\u0002\u00b5\u00b6\u0003\u0002\u0002\u0002", - "\u00b6\u00b8\u0003\u0002\u0002\u0002\u00b7\u00b5\u0003\u0002\u0002\u0002", - "\u00b8\u00ba\u0007\u012b\u0002\u0002\u00b9\u00bb\u0005\u0018\r\u0002", - "\u00ba\u00b9\u0003\u0002\u0002\u0002\u00ba\u00bb\u0003\u0002\u0002\u0002", - "\u00bb\u00bc\u0003\u0002\u0002\u0002\u00bc\u00bd\u0005h5\u0002\u00bd", - "\u0011\u0003\u0002\u0002\u0002\u00be\u00bf\u0005\u0014\u000b\u0002\u00bf", - "\u00c0\u0005\u0016\f\u0002\u00c0\u0013\u0003\u0002\u0002\u0002\u00c1", - "\u00c2\u0007\u0106\u0002\u0002\u00c2\u0015\u0003\u0002\u0002\u0002\u00c3", - "\u00c4\t\u0002\u0002\u0002\u00c4\u0017\u0003\u0002\u0002\u0002\u00c5", - "\u00c6\u0007\u00cf\u0002\u0002\u00c6\u00c7\u0007\u0010\u0002\u0002\u00c7", - "\u00c8\u0005\u001a\u000e\u0002\u00c8\u0019\u0003\u0002\u0002\u0002\u00c9", - "\u00ce\u0005\u001c\u000f\u0002\u00ca\u00cb\u0007\u012c\u0002\u0002\u00cb", - "\u00cd\u0005\u001c\u000f\u0002\u00cc\u00ca\u0003\u0002\u0002\u0002\u00cd", - "\u00d0\u0003\u0002\u0002\u0002\u00ce\u00cc\u0003\u0002\u0002\u0002\u00ce", - "\u00cf\u0003\u0002\u0002\u0002\u00cf\u001b\u0003\u0002\u0002\u0002\u00d0", - "\u00ce\u0003\u0002\u0002\u0002\u00d1\u00d2\u0007\u0106\u0002\u0002\u00d2", - "\u001d\u0003\u0002\u0002\u0002\u00d3\u00d4\u0007I\u0002\u0002\u00d4", - "\u00d6\u0007\u00c7\u0002\u0002\u00d5\u00d7\u0005j6\u0002\u00d6\u00d5", - "\u0003\u0002\u0002\u0002\u00d6\u00d7\u0003\u0002\u0002\u0002\u00d7\u00d8", - "\u0003\u0002\u0002\u0002\u00d8\u00d9\u0005f4\u0002\u00d9\u00da\u0005", - "h5\u0002\u00da\u001f\u0003\u0002\u0002\u0002\u00db\u00dd\u0007I\u0002", - "\u0002\u00dc\u00de\u0007\u00ae\u0002\u0002\u00dd\u00dc\u0003\u0002\u0002", - "\u0002\u00dd\u00de\u0003\u0002\u0002\u0002\u00de\u00df\u0003\u0002\u0002", - "\u0002\u00df\u00e1\u0007L\u0002\u0002\u00e0\u00e2\u0005j6\u0002\u00e1", - "\u00e0\u0003\u0002\u0002\u0002\u00e1\u00e2\u0003\u0002\u0002\u0002\u00e2", - "\u00e3\u0003\u0002\u0002\u0002\u00e3\u00e4\u0005f4\u0002\u00e4\u00e5", - "\u0007\n\u0002\u0002\u00e5\u00e6\u0005B\"\u0002\u00e6!\u0003\u0002\u0002", - "\u0002\u00e7\u00e8\u0003\u0002\u0002\u0002\u00e8#\u0003\u0002\u0002", - "\u0002\u00e9\u00ea\u0007g\u0002\u0002\u00ea\u00eb\u0007J\u0002\u0002", - "\u00eb\u00ee\u0005f4\u0002\u00ec\u00ef\u0005&\u0014\u0002\u00ed\u00ef", - "\u0005(\u0015\u0002\u00ee\u00ec\u0003\u0002\u0002\u0002\u00ee\u00ed", - "\u0003\u0002\u0002\u0002\u00ef%\u0003\u0002\u0002\u0002\u00f0\u00f1", - "\u0007h\u0002\u0002\u00f1\u00f2\u0007d\u0002\u0002\u00f2\u00f3\u0005", - "f4\u0002\u00f3\'\u0003\u0002\u0002\u0002\u00f4\u00f5\u0007k\u0002\u0002", - "\u00f5\u00f6\u0007\u012a\u0002\u0002\u00f6\u00fb\u0005n8\u0002\u00f7", - "\u00f8\u0007\u012c\u0002\u0002\u00f8\u00fa\u0005n8\u0002\u00f9\u00f7", - "\u0003\u0002\u0002\u0002\u00fa\u00fd\u0003\u0002\u0002\u0002\u00fb\u00f9", - "\u0003\u0002\u0002\u0002\u00fb\u00fc\u0003\u0002\u0002\u0002\u00fc\u00fe", - "\u0003\u0002\u0002\u0002\u00fd\u00fb\u0003\u0002\u0002\u0002\u00fe\u00ff", - "\u0007\u012b\u0002\u0002\u00ff)\u0003\u0002\u0002\u0002\u0100\u0101", - "\u0007g\u0002\u0002\u0101\u0102\u0007\u00c7\u0002\u0002\u0102\u0103", - "\u0005f4\u0002\u0103\u0104\u0005(\u0015\u0002\u0104+\u0003\u0002\u0002", - "\u0002\u0105\u0106\u0003\u0002\u0002\u0002\u0106-\u0003\u0002\u0002", - "\u0002\u0107\u0108\u0007_\u0002\u0002\u0108\u010a\u0007J\u0002\u0002", - "\u0109\u010b\u0005l7\u0002\u010a\u0109\u0003\u0002\u0002\u0002\u010a", - "\u010b\u0003\u0002\u0002\u0002\u010b\u010c\u0003\u0002\u0002\u0002\u010c", - "\u010d\u0005f4\u0002\u010d/\u0003\u0002\u0002\u0002\u010e\u010f\u0007", - "_\u0002\u0002\u010f\u0111\u0007\u00c7\u0002\u0002\u0110\u0112\u0005", - "l7\u0002\u0111\u0110\u0003\u0002\u0002\u0002\u0111\u0112\u0003\u0002", - "\u0002\u0002\u0112\u0113\u0003\u0002\u0002\u0002\u0113\u0115\u0005f", - "4\u0002\u0114\u0116\t\u0003\u0002\u0002\u0115\u0114\u0003\u0002\u0002", - "\u0002\u0115\u0116\u0003\u0002\u0002\u0002\u01161\u0003\u0002\u0002", - "\u0002\u0117\u0119\u0007_\u0002\u0002\u0118\u011a\u0007\u00ae\u0002", - "\u0002\u0119\u0118\u0003\u0002\u0002\u0002\u0119\u011a\u0003\u0002\u0002", - "\u0002\u011a\u011b\u0003\u0002\u0002\u0002\u011b\u011d\u0007L\u0002", - "\u0002\u011c\u011e\u0005l7\u0002\u011d\u011c\u0003\u0002\u0002\u0002", - "\u011d\u011e\u0003\u0002\u0002\u0002\u011e\u011f\u0003\u0002\u0002\u0002", - "\u011f\u0120\u0005f4\u0002\u01203\u0003\u0002\u0002\u0002\u0121\u0125", - "\u0007_\u0002\u0002\u0122\u0126\u0007\u00ae\u0002\u0002\u0123\u0124", - "\u0007\u00ae\u0002\u0002\u0124\u0126\u0007\u0107\u0002\u0002\u0125\u0122", - "\u0003\u0002\u0002\u0002\u0125\u0123\u0003\u0002\u0002\u0002\u0125\u0126", - "\u0003\u0002\u0002\u0002\u0126\u0127\u0003\u0002\u0002\u0002\u0127\u0129", - "\u0007\u00a5\u0002\u0002\u0128\u012a\u0005l7\u0002\u0129\u0128\u0003", - "\u0002\u0002\u0002\u0129\u012a\u0003\u0002\u0002\u0002\u012a\u012b\u0003", - "\u0002\u0002\u0002\u012b\u012c\u0005f4\u0002\u012c5\u0003\u0002\u0002", - "\u0002\u012d\u012e\u0007N\u0002\u0002\u012e\u012f\t\u0004\u0002\u0002", - "\u012f\u0135\u0005f4\u0002\u0130\u0132\u00058\u001d\u0002\u0131\u0130", - "\u0003\u0002\u0002\u0002\u0131\u0132\u0003\u0002\u0002\u0002\u0132\u0133", - "\u0003\u0002\u0002\u0002\u0133\u0136\u0005B\"\u0002\u0134\u0136\u0005", - ":\u001e\u0002\u0135\u0131\u0003\u0002\u0002\u0002\u0135\u0134\u0003", - "\u0002\u0002\u0002\u01367\u0003\u0002\u0002\u0002\u0137\u0138\u0007", - "=\u0002\u0002\u0138\u0139\u0007\u012a\u0002\u0002\u0139\u013e\u0005", - "n8\u0002\u013a\u013b\u0007\u012c\u0002\u0002\u013b\u013d\u0005n8\u0002", - "\u013c\u013a\u0003\u0002\u0002\u0002\u013d\u0140\u0003\u0002\u0002\u0002", - "\u013e\u013c\u0003\u0002\u0002\u0002\u013e\u013f\u0003\u0002\u0002\u0002", - "\u013f\u0141\u0003\u0002\u0002\u0002\u0140\u013e\u0003\u0002\u0002\u0002", - "\u0141\u0142\u0007\u012b\u0002\u0002\u01429\u0003\u0002\u0002\u0002", - "\u0143\u0144\u0007H\u0002\u0002\u0144\u0149\u0005<\u001f\u0002\u0145", - "\u0146\u0007\u012c\u0002\u0002\u0146\u0148\u0005<\u001f\u0002\u0147", - "\u0145\u0003\u0002\u0002\u0002\u0148\u014b\u0003\u0002\u0002\u0002\u0149", - "\u0147\u0003\u0002\u0002\u0002\u0149\u014a\u0003\u0002\u0002\u0002\u014a", - ";\u0003\u0002\u0002\u0002\u014b\u0149\u0003\u0002\u0002\u0002\u014c", - "\u014d\u0007\u012a\u0002\u0002\u014d\u0152\u0005> \u0002\u014e\u014f", - "\u0007\u012c\u0002\u0002\u014f\u0151\u0005> \u0002\u0150\u014e\u0003", - "\u0002\u0002\u0002\u0151\u0154\u0003\u0002\u0002\u0002\u0152\u0150\u0003", - "\u0002\u0002\u0002\u0152\u0153\u0003\u0002\u0002\u0002\u0153\u0155\u0003", - "\u0002\u0002\u0002\u0154\u0152\u0003\u0002\u0002\u0002\u0155\u0156\u0007", - "\u012b\u0002\u0002\u0156=\u0003\u0002\u0002\u0002\u0157\u015c\u0005", - "~@\u0002\u0158\u015c\u0005\u0082B\u0002\u0159\u015c\u0007\u0142\u0002", - "\u0002\u015a\u015c\u0007\u011e\u0002\u0002\u015b\u0157\u0003\u0002\u0002", - "\u0002\u015b\u0158\u0003\u0002\u0002\u0002\u015b\u0159\u0003\u0002\u0002", - "\u0002\u015b\u015a\u0003\u0002\u0002\u0002\u015c?\u0003\u0002\u0002", - "\u0002\u015d\u015e\u0003\u0002\u0002\u0002\u015eA\u0003\u0002\u0002", - "\u0002\u015f\u0161\u0007\u0007\u0002\u0002\u0160\u0162\u0005\u0084C", - "\u0002\u0161\u0160\u0003\u0002\u0002\u0002\u0161\u0162\u0003\u0002\u0002", - "\u0002\u0162\u016c\u0003\u0002\u0002\u0002\u0163\u016d\u0007\u0136\u0002", - "\u0002\u0164\u0169\u0005D#\u0002\u0165\u0166\u0007\u012c\u0002\u0002", - "\u0166\u0168\u0005D#\u0002\u0167\u0165\u0003\u0002\u0002\u0002\u0168", - "\u016b\u0003\u0002\u0002\u0002\u0169\u0167\u0003\u0002\u0002\u0002\u0169", - "\u016a\u0003\u0002\u0002\u0002\u016a\u016d\u0003\u0002\u0002\u0002\u016b", - "\u0169\u0003\u0002\u0002\u0002\u016c\u0163\u0003\u0002\u0002\u0002\u016c", - "\u0164\u0003\u0002\u0002\u0002\u016d\u016e\u0003\u0002\u0002\u0002\u016e", - "\u016f\u0007\b\u0002\u0002\u016f\u0170\u0005F$\u0002\u0170C\u0003\u0002", - "\u0002\u0002\u0171\u0176\u0005L\'\u0002\u0172\u0174\u0007\n\u0002\u0002", - "\u0173\u0172\u0003\u0002\u0002\u0002\u0173\u0174\u0003\u0002\u0002\u0002", - "\u0174\u0175\u0003\u0002\u0002\u0002\u0175\u0177\u0005f4\u0002\u0176", - "\u0173\u0003\u0002\u0002\u0002\u0176\u0177\u0003\u0002\u0002\u0002\u0177", - "\u017d\u0003\u0002\u0002\u0002\u0178\u0179\u0005f4\u0002\u0179\u017a", - "\u0007\u0127\u0002\u0002\u017a\u017b\u0007\u0136\u0002\u0002\u017b\u017d", - "\u0003\u0002\u0002\u0002\u017c\u0171\u0003\u0002\u0002\u0002\u017c\u0178", - "\u0003\u0002\u0002\u0002\u017dE\u0003\u0002\u0002\u0002\u017e\u0183", - "\u0005H%\u0002\u017f\u0180\u0007\u012c\u0002\u0002\u0180\u0182\u0005", - "H%\u0002\u0181\u017f\u0003\u0002\u0002\u0002\u0182\u0185\u0003\u0002", - "\u0002\u0002\u0183\u0181\u0003\u0002\u0002\u0002\u0183\u0184\u0003\u0002", - "\u0002\u0002\u0184G\u0003\u0002\u0002\u0002\u0185\u0183\u0003\u0002", - "\u0002\u0002\u0186\u0187\u0005J&\u0002\u0187\u0188\u0005V,\u0002\u0188", - "I\u0003\u0002\u0002\u0002\u0189\u018b\u0007J\u0002\u0002\u018a\u0189", - "\u0003\u0002\u0002\u0002\u018a\u018b\u0003\u0002\u0002\u0002\u018b\u018c", - "\u0003\u0002\u0002\u0002\u018c\u018d\u0005f4\u0002\u018dK\u0003\u0002", - "\u0002\u0002\u018e\u018f\u0005N(\u0002\u018fM\u0003\u0002\u0002\u0002", - "\u0190\u0191\b(\u0001\u0002\u0191\u0192\u0007\u001c\u0002\u0002\u0192", - "\u0198\u0005N(\u0006\u0193\u0195\u0005R*\u0002\u0194\u0196\u0005P)\u0002", - "\u0195\u0194\u0003\u0002\u0002\u0002\u0195\u0196\u0003\u0002\u0002\u0002", - "\u0196\u0198\u0003\u0002\u0002\u0002\u0197\u0190\u0003\u0002\u0002\u0002", - "\u0197\u0193\u0003\u0002\u0002\u0002\u0198\u01a1\u0003\u0002\u0002\u0002", - "\u0199\u019a\f\u0004\u0002\u0002\u019a\u019b\u0007\u001a\u0002\u0002", - "\u019b\u01a0\u0005N(\u0005\u019c\u019d\f\u0003\u0002\u0002\u019d\u019e", - "\u0007\u0019\u0002\u0002\u019e\u01a0\u0005N(\u0004\u019f\u0199\u0003", - "\u0002\u0002\u0002\u019f\u019c\u0003\u0002\u0002\u0002\u01a0\u01a3\u0003", - "\u0002\u0002\u0002\u01a1\u019f\u0003\u0002\u0002\u0002\u01a1\u01a2\u0003", - "\u0002\u0002\u0002\u01a2O\u0003\u0002\u0002\u0002\u01a3\u01a1\u0003", - "\u0002\u0002\u0002\u01a4\u01a6\u0007\u001c\u0002\u0002\u01a5\u01a4\u0003", - "\u0002\u0002\u0002\u01a5\u01a6\u0003\u0002\u0002\u0002\u01a6\u01a7\u0003", - "\u0002\u0002\u0002\u01a7\u01a8\u0007\u001f\u0002\u0002\u01a8\u01a9\u0005", - "R*\u0002\u01a9\u01aa\u0007\u001a\u0002\u0002\u01aa\u01ab\u0005R*\u0002", - "\u01ab\u01eb\u0003\u0002\u0002\u0002\u01ac\u01ae\u0007\u001c\u0002\u0002", - "\u01ad\u01ac\u0003\u0002\u0002\u0002\u01ad\u01ae\u0003\u0002\u0002\u0002", - "\u01ae\u01af\u0003\u0002\u0002\u0002\u01af\u01b0\u0007\u001b\u0002\u0002", - "\u01b0\u01b1\u0007\u012a\u0002\u0002\u01b1\u01b6\u0005L\'\u0002\u01b2", - "\u01b3\u0007\u012c\u0002\u0002\u01b3\u01b5\u0005L\'\u0002\u01b4\u01b2", - "\u0003\u0002\u0002\u0002\u01b5\u01b8\u0003\u0002\u0002\u0002\u01b6\u01b4", - "\u0003\u0002\u0002\u0002\u01b6\u01b7\u0003\u0002\u0002\u0002\u01b7\u01b9", - "\u0003\u0002\u0002\u0002\u01b8\u01b6\u0003\u0002\u0002\u0002\u01b9\u01ba", - "\u0007\u012b\u0002\u0002\u01ba\u01eb\u0003\u0002\u0002\u0002\u01bb\u01bd", - "\u0007\u001c\u0002\u0002\u01bc\u01bb\u0003\u0002\u0002\u0002\u01bc\u01bd", - "\u0003\u0002\u0002\u0002\u01bd\u01be\u0003\u0002\u0002\u0002\u01be\u01bf", - "\u0007!\u0002\u0002\u01bf\u01eb\u0005R*\u0002\u01c0\u01c2\u0007\u001c", - "\u0002\u0002\u01c1\u01c0\u0003\u0002\u0002\u0002\u01c1\u01c2\u0003\u0002", - "\u0002\u0002\u01c2\u01c3\u0003\u0002\u0002\u0002\u01c3\u01c4\u0007 ", - "\u0002\u0002\u01c4\u01d2\t\u0005\u0002\u0002\u01c5\u01c6\u0007\u012a", - "\u0002\u0002\u01c6\u01d3\u0007\u012b\u0002\u0002\u01c7\u01c8\u0007\u012a", - "\u0002\u0002\u01c8\u01cd\u0005L\'\u0002\u01c9\u01ca\u0007\u012c\u0002", - "\u0002\u01ca\u01cc\u0005L\'\u0002\u01cb\u01c9\u0003\u0002\u0002\u0002", - "\u01cc\u01cf\u0003\u0002\u0002\u0002\u01cd\u01cb\u0003\u0002\u0002\u0002", - "\u01cd\u01ce\u0003\u0002\u0002\u0002\u01ce\u01d0\u0003\u0002\u0002\u0002", - "\u01cf\u01cd\u0003\u0002\u0002\u0002\u01d0\u01d1\u0007\u012b\u0002\u0002", - "\u01d1\u01d3\u0003\u0002\u0002\u0002\u01d2\u01c5\u0003\u0002\u0002\u0002", - "\u01d2\u01c7\u0003\u0002\u0002\u0002\u01d3\u01eb\u0003\u0002\u0002\u0002", - "\u01d4\u01d6\u0007\u001c\u0002\u0002\u01d5\u01d4\u0003\u0002\u0002\u0002", - "\u01d5\u01d6\u0003\u0002\u0002\u0002\u01d6\u01d7\u0003\u0002\u0002\u0002", - "\u01d7\u01d8\u0007 \u0002\u0002\u01d8\u01eb\u0005R*\u0002\u01d9\u01db", - "\u0007\"\u0002\u0002\u01da\u01dc\u0007\u001c\u0002\u0002\u01db\u01da", - "\u0003\u0002\u0002\u0002\u01db\u01dc\u0003\u0002\u0002\u0002\u01dc\u01dd", - "\u0003\u0002\u0002\u0002\u01dd\u01eb\u0007\u011e\u0002\u0002\u01de\u01e0", - "\u0007\"\u0002\u0002\u01df\u01e1\u0007\u001c\u0002\u0002\u01e0\u01df", - "\u0003\u0002\u0002\u0002\u01e0\u01e1\u0003\u0002\u0002\u0002\u01e1\u01e2", - "\u0003\u0002\u0002\u0002\u01e2\u01eb\t\u0006\u0002\u0002\u01e3\u01e5", - "\u0007\"\u0002\u0002\u01e4\u01e6\u0007\u001c\u0002\u0002\u01e5\u01e4", - "\u0003\u0002\u0002\u0002\u01e5\u01e6\u0003\u0002\u0002\u0002\u01e6\u01e7", - "\u0003\u0002\u0002\u0002\u01e7\u01e8\u0007\r\u0002\u0002\u01e8\u01e9", - "\u0007\b\u0002\u0002\u01e9\u01eb\u0005R*\u0002\u01ea\u01a5\u0003\u0002", - "\u0002\u0002\u01ea\u01ad\u0003\u0002\u0002\u0002\u01ea\u01bc\u0003\u0002", - "\u0002\u0002\u01ea\u01c1\u0003\u0002\u0002\u0002\u01ea\u01d5\u0003\u0002", - "\u0002\u0002\u01ea\u01d9\u0003\u0002\u0002\u0002\u01ea\u01de\u0003\u0002", - "\u0002\u0002\u01ea\u01e3\u0003\u0002\u0002\u0002\u01ebQ\u0003\u0002", - "\u0002\u0002\u01ec\u01ed\b*\u0001\u0002\u01ed\u01f1\u0005T+\u0002\u01ee", - "\u01ef\t\u0007\u0002\u0002\u01ef\u01f1\u0005R*\t\u01f0\u01ec\u0003\u0002", - "\u0002\u0002\u01f0\u01ee\u0003\u0002\u0002\u0002\u01f1\u0207\u0003\u0002", - "\u0002\u0002\u01f2\u01f3\f\b\u0002\u0002\u01f3\u01f4\t\b\u0002\u0002", - "\u01f4\u0206\u0005R*\t\u01f5\u01f6\f\u0007\u0002\u0002\u01f6\u01f7\t", - "\t\u0002\u0002\u01f7\u0206\u0005R*\b\u01f8\u01f9\f\u0006\u0002\u0002", - "\u01f9\u01fa\u0007\u0089\u0002\u0002\u01fa\u0206\u0005R*\u0007\u01fb", - "\u01fc\f\u0005\u0002\u0002\u01fc\u01fd\u0007\u008c\u0002\u0002\u01fd", - "\u0206\u0005R*\u0006\u01fe\u01ff\f\u0004\u0002\u0002\u01ff\u0200\u0007", - "\u008a\u0002\u0002\u0200\u0206\u0005R*\u0005\u0201\u0202\f\u0003\u0002", - "\u0002\u0202\u0203\u0005r:\u0002\u0203\u0204\u0005R*\u0004\u0204\u0206", - "\u0003\u0002\u0002\u0002\u0205\u01f2\u0003\u0002\u0002\u0002\u0205\u01f5", - "\u0003\u0002\u0002\u0002\u0205\u01f8\u0003\u0002\u0002\u0002\u0205\u01fb", - "\u0003\u0002\u0002\u0002\u0205\u01fe\u0003\u0002\u0002\u0002\u0205\u0201", - "\u0003\u0002\u0002\u0002\u0206\u0209\u0003\u0002\u0002\u0002\u0207\u0205", - "\u0003\u0002\u0002\u0002\u0207\u0208\u0003\u0002\u0002\u0002\u0208S", - "\u0003\u0002\u0002\u0002\u0209\u0207\u0003\u0002\u0002\u0002\u020a\u020b", - "\b+\u0001\u0002\u020b\u020d\u0007*\u0002\u0002\u020c\u020e\u0005b2\u0002", - "\u020d\u020c\u0003\u0002\u0002\u0002\u020e\u020f\u0003\u0002\u0002\u0002", - "\u020f\u020d\u0003\u0002\u0002\u0002\u020f\u0210\u0003\u0002\u0002\u0002", - "\u0210\u0213\u0003\u0002\u0002\u0002\u0211\u0212\u0007-\u0002\u0002", - "\u0212\u0214\u0005L\'\u0002\u0213\u0211\u0003\u0002\u0002\u0002\u0213", - "\u0214\u0003\u0002\u0002\u0002\u0214\u0215\u0003\u0002\u0002\u0002\u0215", - "\u0216\u0007.\u0002\u0002\u0216\u0244\u0003\u0002\u0002\u0002\u0217", - "\u0218\u0007*\u0002\u0002\u0218\u021a\u0005L\'\u0002\u0219\u021b\u0005", - "b2\u0002\u021a\u0219\u0003\u0002\u0002\u0002\u021b\u021c\u0003\u0002", - "\u0002\u0002\u021c\u021a\u0003\u0002\u0002\u0002\u021c\u021d\u0003\u0002", - "\u0002\u0002\u021d\u0220\u0003\u0002\u0002\u0002\u021e\u021f\u0007-", - "\u0002\u0002\u021f\u0221\u0005L\'\u0002\u0220\u021e\u0003\u0002\u0002", - "\u0002\u0220\u0221\u0003\u0002\u0002\u0002\u0221\u0222\u0003\u0002\u0002", - "\u0002\u0222\u0223\u0007.\u0002\u0002\u0223\u0244\u0003\u0002\u0002", - "\u0002\u0224\u0225\u0007D\u0002\u0002\u0225\u0226\u0007\u012a\u0002", - "\u0002\u0226\u0229\u0005L\'\u0002\u0227\u0228\u0007s\u0002\u0002\u0228", - "\u022a\u0007%\u0002\u0002\u0229\u0227\u0003\u0002\u0002\u0002\u0229", - "\u022a\u0003\u0002\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b", - "\u022c\u0007\u012b\u0002\u0002\u022c\u0244\u0003\u0002\u0002\u0002\u022d", - "\u022e\u0007F\u0002\u0002\u022e\u022f\u0007\u012a\u0002\u0002\u022f", - "\u0232\u0005L\'\u0002\u0230\u0231\u0007s\u0002\u0002\u0231\u0233\u0007", - "%\u0002\u0002\u0232\u0230\u0003\u0002\u0002\u0002\u0232\u0233\u0003", - "\u0002\u0002\u0002\u0233\u0234\u0003\u0002\u0002\u0002\u0234\u0235\u0007", - "\u012b\u0002\u0002\u0235\u0244\u0003\u0002\u0002\u0002\u0236\u0237\u0007", - "x\u0002\u0002\u0237\u0238\u0007\u012a\u0002\u0002\u0238\u0239\u0005", - "R*\u0002\u0239\u023a\u0007\u001b\u0002\u0002\u023a\u023b\u0005R*\u0002", - "\u023b\u023c\u0007\u012b\u0002\u0002\u023c\u0244\u0003\u0002\u0002\u0002", - "\u023d\u0244\u0005|?\u0002\u023e\u0244\u0007\u0084\u0002\u0002\u023f", - "\u0240\u0007\u012a\u0002\u0002\u0240\u0241\u0005L\'\u0002\u0241\u0242", - "\u0007\u012b\u0002\u0002\u0242\u0244\u0003\u0002\u0002\u0002\u0243\u020a", - "\u0003\u0002\u0002\u0002\u0243\u0217\u0003\u0002\u0002\u0002\u0243\u0224", - "\u0003\u0002\u0002\u0002\u0243\u022d\u0003\u0002\u0002\u0002\u0243\u0236", - "\u0003\u0002\u0002\u0002\u0243\u023d\u0003\u0002\u0002\u0002\u0243\u023e", - "\u0003\u0002\u0002\u0002\u0243\u023f\u0003\u0002\u0002\u0002\u0244\u024c", - "\u0003\u0002\u0002\u0002\u0245\u0246\f\u0004\u0002\u0002\u0246\u0247", - "\u0007\u0128\u0002\u0002\u0247\u0248\u0005R*\u0002\u0248\u0249\u0007", - "\u0129\u0002\u0002\u0249\u024b\u0003\u0002\u0002\u0002\u024a\u0245\u0003", - "\u0002\u0002\u0002\u024b\u024e\u0003\u0002\u0002\u0002\u024c\u024a\u0003", - "\u0002\u0002\u0002\u024c\u024d\u0003\u0002\u0002\u0002\u024dU\u0003", - "\u0002\u0002\u0002\u024e\u024c\u0003\u0002\u0002\u0002\u024f\u0251\u0007", - "\n\u0002\u0002\u0250\u024f\u0003\u0002\u0002\u0002\u0250\u0251\u0003", - "\u0002\u0002\u0002\u0251\u0252\u0003\u0002\u0002\u0002\u0252\u0254\u0005", - "^0\u0002\u0253\u0255\u0005X-\u0002\u0254\u0253\u0003\u0002\u0002\u0002", - "\u0254\u0255\u0003\u0002\u0002\u0002\u0255\u0257\u0003\u0002\u0002\u0002", - "\u0256\u0250\u0003\u0002\u0002\u0002\u0256\u0257\u0003\u0002\u0002\u0002", - "\u0257W\u0003\u0002\u0002\u0002\u0258\u0259\u0007\u012a\u0002\u0002", - "\u0259\u025a\u0005Z.\u0002\u025a\u025b\u0007\u012b\u0002\u0002\u025b", - "Y\u0003\u0002\u0002\u0002\u025c\u0261\u0005\\/\u0002\u025d\u025e\u0007", - "\u012c\u0002\u0002\u025e\u0260\u0005\\/\u0002\u025f\u025d\u0003\u0002", - "\u0002\u0002\u0260\u0263\u0003\u0002\u0002\u0002\u0261\u025f\u0003\u0002", - "\u0002\u0002\u0261\u0262\u0003\u0002\u0002\u0002\u0262[\u0003\u0002", - "\u0002\u0002\u0263\u0261\u0003\u0002\u0002\u0002\u0264\u0265\u0005^", - "0\u0002\u0265]\u0003\u0002\u0002\u0002\u0266\u0269\u0007\u0141\u0002", - "\u0002\u0267\u0269\u0005`1\u0002\u0268\u0266\u0003\u0002\u0002\u0002", - "\u0268\u0267\u0003\u0002\u0002\u0002\u0269_\u0003\u0002\u0002\u0002", - "\u026a\u026b\u0007\u013d\u0002\u0002\u026ba\u0003\u0002\u0002\u0002", - "\u026c\u026d\u0007+\u0002\u0002\u026d\u026e\u0005L\'\u0002\u026e\u026f", - "\u0007,\u0002\u0002\u026f\u0270\u0005L\'\u0002\u0270c\u0003\u0002\u0002", - "\u0002\u0271\u0276\u0005f4\u0002\u0272\u0273\u0007\u012c\u0002\u0002", - "\u0273\u0275\u0005f4\u0002\u0274\u0272\u0003\u0002\u0002\u0002\u0275", - "\u0278\u0003\u0002\u0002\u0002\u0276\u0274\u0003\u0002\u0002\u0002\u0276", - "\u0277\u0003\u0002\u0002\u0002\u0277e\u0003\u0002\u0002\u0002\u0278", - "\u0276\u0003\u0002\u0002\u0002\u0279\u027d\u0007\u0106\u0002\u0002\u027a", - "\u027c\u0007\u0105\u0002\u0002\u027b\u027a\u0003\u0002\u0002\u0002\u027c", - "\u027f\u0003\u0002\u0002\u0002\u027d\u027e\u0003\u0002\u0002\u0002\u027d", - "\u027b\u0003\u0002\u0002\u0002\u027eg\u0003\u0002\u0002\u0002\u027f", - "\u027d\u0003\u0002\u0002\u0002\u0280\u0281\u0007G\u0002\u0002\u0281", - "\u0282\u0007\u012a\u0002\u0002\u0282\u0287\u0005n8\u0002\u0283\u0284", - "\u0007\u012c\u0002\u0002\u0284\u0286\u0005n8\u0002\u0285\u0283\u0003", - "\u0002\u0002\u0002\u0286\u0289\u0003\u0002\u0002\u0002\u0287\u0285\u0003", - "\u0002\u0002\u0002\u0287\u0288\u0003\u0002\u0002\u0002\u0288\u028a\u0003", - "\u0002\u0002\u0002\u0289\u0287\u0003\u0002\u0002\u0002\u028a\u028b\u0007", - "\u012b\u0002\u0002\u028bi\u0003\u0002\u0002\u0002\u028c\u028d\u0007", - "w\u0002\u0002\u028d\u028e\u0007\u001c\u0002\u0002\u028e\u028f\u0007", - "\u001e\u0002\u0002\u028fk\u0003\u0002\u0002\u0002\u0290\u0291\u0007", - "w\u0002\u0002\u0291\u0292\u0007\u001e\u0002\u0002\u0292m\u0003\u0002", - "\u0002\u0002\u0293\u0294\u0007\u0104\u0002\u0002\u0294\u0295\u0007\u011f", - "\u0002\u0002\u0295\u0296\u0007\u0104\u0002\u0002\u0296o\u0003\u0002", - "\u0002\u0002\u0297\u029e\u0007\u001a\u0002\u0002\u0298\u0299\u0007\u0125", - "\u0002\u0002\u0299\u029e\u0007\u0125\u0002\u0002\u029a\u029e\u0007\u0019", - "\u0002\u0002\u029b\u029c\u0007\u0124\u0002\u0002\u029c\u029e\u0007\u0124", - "\u0002\u0002\u029d\u0297\u0003\u0002\u0002\u0002\u029d\u0298\u0003\u0002", - "\u0002\u0002\u029d\u029a\u0003\u0002\u0002\u0002\u029d\u029b\u0003\u0002", - "\u0002\u0002\u029eq\u0003\u0002\u0002\u0002\u029f\u02ae\u0007\u011f", - "\u0002\u0002\u02a0\u02ae\u0007\u0120\u0002\u0002\u02a1\u02ae\u0007\u0121", - "\u0002\u0002\u02a2\u02a3\u0007\u0121\u0002\u0002\u02a3\u02ae\u0007\u011f", - "\u0002\u0002\u02a4\u02a5\u0007\u0120\u0002\u0002\u02a5\u02ae\u0007\u011f", - "\u0002\u0002\u02a6\u02a7\u0007\u0121\u0002\u0002\u02a7\u02ae\u0007\u0120", - "\u0002\u0002\u02a8\u02a9\u0007\u0122\u0002\u0002\u02a9\u02ae\u0007\u011f", - "\u0002\u0002\u02aa\u02ab\u0007\u0121\u0002\u0002\u02ab\u02ac\u0007\u011f", - "\u0002\u0002\u02ac\u02ae\u0007\u0120\u0002\u0002\u02ad\u029f\u0003\u0002", - "\u0002\u0002\u02ad\u02a0\u0003\u0002\u0002\u0002\u02ad\u02a1\u0003\u0002", - "\u0002\u0002\u02ad\u02a2\u0003\u0002\u0002\u0002\u02ad\u02a4\u0003\u0002", - "\u0002\u0002\u02ad\u02a6\u0003\u0002\u0002\u0002\u02ad\u02a8\u0003\u0002", - "\u0002\u0002\u02ad\u02aa\u0003\u0002\u0002\u0002\u02aes\u0003\u0002", - "\u0002\u0002\u02af\u02b0\u0007\u0121\u0002\u0002\u02b0\u02b7\u0007\u0121", - "\u0002\u0002\u02b1\u02b2\u0007\u0120\u0002\u0002\u02b2\u02b7\u0007\u0120", - "\u0002\u0002\u02b3\u02b7\u0007\u0125\u0002\u0002\u02b4\u02b7\u0007\u0126", - "\u0002\u0002\u02b5\u02b7\u0007\u0124\u0002\u0002\u02b6\u02af\u0003\u0002", - "\u0002\u0002\u02b6\u02b1\u0003\u0002\u0002\u0002\u02b6\u02b3\u0003\u0002", - "\u0002\u0002\u02b6\u02b4\u0003\u0002\u0002\u0002\u02b6\u02b5\u0003\u0002", - "\u0002\u0002\u02b7u\u0003\u0002\u0002\u0002\u02b8\u02b9\t\n\u0002\u0002", - "\u02b9w\u0003\u0002\u0002\u0002\u02ba\u02bb\t\u000b\u0002\u0002\u02bb", - "y\u0003\u0002\u0002\u0002\u02bc\u02bd\u0005f4\u0002\u02bd{\u0003\u0002", - "\u0002\u0002\u02be\u02ca\u0005~@\u0002\u02bf\u02ca\u0005\u0080A\u0002", - "\u02c0\u02c1\u0007\u0138\u0002\u0002\u02c1\u02ca\u0005\u0080A\u0002", - "\u02c2\u02ca\u0005\u0082B\u0002\u02c3\u02ca\u0007\u013f\u0002\u0002", - "\u02c4\u02ca\u0007\u0140\u0002\u0002\u02c5\u02c7\u0007\u001c\u0002\u0002", - "\u02c6\u02c5\u0003\u0002\u0002\u0002\u02c6\u02c7\u0003\u0002\u0002\u0002", - "\u02c7\u02c8\u0003\u0002\u0002\u0002\u02c8\u02ca\u0007\u011e\u0002\u0002", - "\u02c9\u02be\u0003\u0002\u0002\u0002\u02c9\u02bf\u0003\u0002\u0002\u0002", - "\u02c9\u02c0\u0003\u0002\u0002\u0002\u02c9\u02c2\u0003\u0002\u0002\u0002", - "\u02c9\u02c3\u0003\u0002\u0002\u0002\u02c9\u02c4\u0003\u0002\u0002\u0002", - "\u02c9\u02c6\u0003\u0002\u0002\u0002\u02ca}\u0003\u0002\u0002\u0002", - "\u02cb\u02cc\u0007\u013d\u0002\u0002\u02cc\u007f\u0003\u0002\u0002\u0002", - "\u02cd\u02ce\t\f\u0002\u0002\u02ce\u0081\u0003\u0002\u0002\u0002\u02cf", - "\u02d0\t\u0006\u0002\u0002\u02d0\u0083\u0003\u0002\u0002\u0002\u02d1", - "\u02d2\t\r\u0002\u0002\u02d2\u0085\u0003\u0002\u0002\u0002L\u0090\u0092", - "\u0097\u00a6\u00aa\u00b5\u00ba\u00ce\u00d6\u00dd\u00e1\u00ee\u00fb\u010a", - "\u0111\u0115\u0119\u011d\u0125\u0129\u0131\u0135\u013e\u0149\u0152\u015b", - "\u0161\u0169\u016c\u0173\u0176\u017c\u0183\u018a\u0195\u0197\u019f\u01a1", - "\u01a5\u01ad\u01b6\u01bc\u01c1\u01cd\u01d2\u01d5\u01db\u01e0\u01e5\u01ea", - "\u01f0\u0205\u0207\u020f\u0213\u021c\u0220\u0229\u0232\u0243\u024c\u0250", - "\u0254\u0256\u0261\u0268\u0276\u027d\u0287\u029d\u02ad\u02b6\u02c6\u02c9"].join(""); + "\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013", + "\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0015", + "\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u0150\n\u0015\f\u0015", + "\u000e\u0015\u0153\u000b\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003", + "\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0007\u0016\u015d", + "\n\u0016\f\u0016\u000e\u0016\u0160\u000b\u0016\u0003\u0016\u0003\u0016", + "\u0005\u0016\u0164\n\u0016\u0003\u0017\u0003\u0017\u0005\u0017\u0168", + "\n\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019", + "\u0003\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0172\n\u0019\u0003", + "\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003", + "\u001b\u0003\u001b\u0005\u001b\u017c\n\u001b\u0003\u001b\u0003\u001b", + "\u0005\u001b\u0180\n\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003", + "\u001c\u0005\u001c\u0186\n\u001c\u0003\u001c\u0003\u001c\u0005\u001c", + "\u018a\n\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0007", + "\u001c\u0190\n\u001c\f\u001c\u000e\u001c\u0193\u000b\u001c\u0005\u001c", + "\u0195\n\u001c\u0003\u001c\u0005\u001c\u0198\n\u001c\u0003\u001c\u0003", + "\u001c\u0003\u001c\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0005", + "\u001d\u01a1\n\u001d\u0003\u001d\u0003\u001d\u0005\u001d\u01a5\n\u001d", + "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0005\u001d", + "\u01ac\n\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003", + "\u001e\u0005\u001e\u01b3\n\u001e\u0003\u001f\u0003\u001f\u0003\u001f", + "\u0003\u001f\u0003 \u0003 \u0003 \u0003!\u0003!\u0003!\u0003!\u0003", + "!\u0003\"\u0003\"\u0003\"\u0003\"\u0005\"\u01c5\n\"\u0003\"\u0003\"", + "\u0005\"\u01c9\n\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003\"\u0005\"\u01d0", + "\n\"\u0003#\u0003#\u0003#\u0005#\u01d5\n#\u0003#\u0003#\u0003$\u0003", + "$\u0003$\u0005$\u01dc\n$\u0003$\u0003$\u0005$\u01e0\n$\u0003%\u0003", + "%\u0005%\u01e4\n%\u0003%\u0003%\u0005%\u01e8\n%\u0003%\u0003%\u0003", + "&\u0003&\u0003&\u0003&\u0005&\u01f0\n&\u0003&\u0003&\u0005&\u01f4\n", + "&\u0003&\u0003&\u0003\'\u0003\'\u0003\'\u0003\'\u0005\'\u01fc\n\'\u0003", + "\'\u0003\'\u0005\'\u0200\n\'\u0003(\u0003(\u0003(\u0003)\u0003)\u0003", + ")\u0003)\u0007)\u0209\n)\f)\u000e)\u020c\u000b)\u0003*\u0003*\u0003", + "*\u0003*\u0007*\u0212\n*\f*\u000e*\u0215\u000b*\u0003*\u0003*\u0003", + "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0005+\u0221\n+\u0003", + "+\u0005+\u0224\n+\u0003+\u0003+\u0005+\u0228\n+\u0003+\u0005+\u022b", + "\n+\u0005+\u022d\n+\u0003+\u0003+\u0003+\u0005+\u0232\n+\u0003+\u0003", + "+\u0005+\u0236\n+\u0003+\u0005+\u0239\n+\u0007+\u023b\n+\f+\u000e+\u023e", + "\u000b+\u0003,\u0003,\u0003,\u0003,\u0007,\u0244\n,\f,\u000e,\u0247", + "\u000b,\u0003-\u0003-\u0003-\u0005-\u024c\n-\u0003-\u0005-\u024f\n-", + "\u0003-\u0005-\u0252\n-\u0003-\u0005-\u0255\n-\u0003.\u0003.\u0005.", + "\u0259\n.\u0003.\u0003.\u0003.\u0003.\u0007.\u025f\n.\f.\u000e.\u0262", + "\u000b.\u0005.\u0264\n.\u0003/\u0003/\u0005/\u0268\n/\u0003/\u0005/", + "\u026b\n/\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00071\u0274", + "\n1\f1\u000e1\u0277\u000b1\u00031\u00031\u00051\u027b\n1\u00031\u0005", + "1\u027e\n1\u00031\u00031\u00031\u00051\u0283\n1\u00071\u0285\n1\f1\u000e", + "1\u0288\u000b1\u00032\u00032\u00052\u028c\n2\u00033\u00053\u028f\n3", + "\u00033\u00033\u00033\u00033\u00033\u00033\u00033\u00033\u00033\u0007", + "3\u029a\n3\f3\u000e3\u029d\u000b3\u00033\u00033\u00033\u00033\u0003", + "3\u00033\u00033\u00033\u00053\u02a7\n3\u00034\u00034\u00034\u00034\u0003", + "4\u00034\u00034\u00074\u02b0\n4\f4\u000e4\u02b3\u000b4\u00034\u0003", + "4\u00054\u02b7\n4\u00035\u00035\u00035\u00036\u00036\u00036\u00036\u0003", + "6\u00076\u02c1\n6\f6\u000e6\u02c4\u000b6\u00037\u00037\u00037\u0003", + "7\u00037\u00037\u00037\u00077\u02cd\n7\f7\u000e7\u02d0\u000b7\u0003", + "7\u00037\u00037\u00037\u00037\u00037\u00037\u00077\u02d9\n7\f7\u000e", + "7\u02dc\u000b7\u00037\u00037\u00037\u00037\u00037\u00037\u00037\u0007", + "7\u02e5\n7\f7\u000e7\u02e8\u000b7\u00037\u00037\u00037\u00037\u0003", + "7\u00037\u00037\u00037\u00077\u02f2\n7\f7\u000e7\u02f5\u000b7\u0003", + "7\u00037\u00057\u02f9\n7\u00038\u00038\u00038\u00039\u00039\u00039\u0003", + "9\u00039\u00079\u0303\n9\f9\u000e9\u0306\u000b9\u0003:\u0003:\u0005", + ":\u030a\n:\u0003;\u0003;\u0003;\u0005;\u030f\n;\u0003<\u0003<\u0003", + "<\u0003<\u0007<\u0315\n<\f<\u000e<\u0318\u000b<\u0003=\u0003=\u0003", + "=\u0003=\u0003>\u0005>\u031f\n>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", + ">\u0007>\u0327\n>\f>\u000e>\u032a\u000b>\u0005>\u032c\n>\u0003>\u0003", + ">\u0003>\u0003>\u0003>\u0007>\u0333\n>\f>\u000e>\u0336\u000b>\u0005", + ">\u0338\n>\u0003>\u0005>\u033b\n>\u0003>\u0003>\u0003?\u0003?\u0005", + "?\u0341\n?\u0003?\u0003?\u0005?\u0345\n?\u0003@\u0003@\u0003@\u0003", + "@\u0005@\u034b\n@\u0003A\u0003A\u0003A\u0003B\u0003B\u0003C\u0003C\u0003", + "C\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0005C\u035c\nC\u0005", + "C\u035e\nC\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0007C\u0366\n", + "C\fC\u000eC\u0369\u000bC\u0003D\u0005D\u036c\nD\u0003D\u0003D\u0003", + "D\u0003D\u0003D\u0003D\u0005D\u0374\nD\u0003D\u0003D\u0003D\u0003D\u0003", + "D\u0007D\u037b\nD\fD\u000eD\u037e\u000bD\u0003D\u0003D\u0003D\u0005", + "D\u0383\nD\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003", + "D\u0003D\u0003D\u0005D\u0390\nD\u0003D\u0003D\u0003D\u0005D\u0395\n", + "D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0007D\u039f", + "\nD\fD\u000eD\u03a2\u000bD\u0003D\u0003D\u0005D\u03a6\nD\u0003D\u0005", + "D\u03a9\nD\u0003D\u0003D\u0003D\u0003D\u0005D\u03af\nD\u0003D\u0003", + "D\u0003D\u0005D\u03b4\nD\u0003D\u0003D\u0003D\u0005D\u03b9\nD\u0003", + "D\u0003D\u0003D\u0005D\u03be\nD\u0003E\u0003E\u0003E\u0003E\u0005E\u03c4", + "\nE\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003", + "E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0007", + "E\u03d9\nE\fE\u000eE\u03dc\u000bE\u0003F\u0003F\u0003F\u0006F\u03e1", + "\nF\rF\u000eF\u03e2\u0003F\u0003F\u0005F\u03e7\nF\u0003F\u0003F\u0003", + "F\u0003F\u0003F\u0006F\u03ee\nF\rF\u000eF\u03ef\u0003F\u0003F\u0005", + "F\u03f4\nF\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0005F\u03fd", + "\nF\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0005F\u0406\n", + "F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0003F\u0005F\u041e\nF\u0003F\u0003F\u0003F\u0007F\u0423\n", + "F\fF\u000eF\u0426\u000bF\u0005F\u0428\nF\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0003F\u0003F\u0003F\u0005F\u0432\nF\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0007F\u0439\nF\fF\u000eF\u043c\u000bF\u0003G\u0003G\u0003", + "H\u0003H\u0003I\u0003I\u0003I\u0007I\u0445\nI\fI\u000eI\u0448\u000b", + "I\u0003J\u0003J\u0003J\u0005J\u044d\nJ\u0003K\u0003K\u0005K\u0451\n", + "K\u0003L\u0003L\u0003L\u0006L\u0456\nL\rL\u000eL\u0457\u0003M\u0003", + "M\u0003M\u0005M\u045d\nM\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0005", + "O\u0465\nO\u0003O\u0003O\u0005O\u0469\nO\u0003P\u0005P\u046c\nP\u0003", + "P\u0003P\u0005P\u0470\nP\u0003Q\u0003Q\u0003Q\u0003R\u0003R\u0006R\u0477", + "\nR\rR\u000eR\u0478\u0003R\u0005R\u047c\nR\u0003S\u0003S\u0003S\u0003", + "S\u0003T\u0003T\u0003T\u0007T\u0485\nT\fT\u000eT\u0488\u000bT\u0003", + "U\u0003U\u0003V\u0003V\u0005V\u048e\nV\u0003W\u0003W\u0003X\u0003X\u0003", + "Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Z\u0003Z\u0003Z\u0007Z\u049c\nZ\f", + "Z\u000eZ\u049f\u000bZ\u0003[\u0003[\u0007[\u04a3\n[\f[\u000e[\u04a6", + "\u000b[\u0003\\\u0003\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003^\u0003", + "^\u0003^\u0003_\u0003_\u0003_\u0003_\u0007_\u04b6\n_\f_\u000e_\u04b9", + "\u000b_\u0003_\u0003_\u0003`\u0003`\u0005`\u04bf\n`\u0003`\u0005`\u04c2", + "\n`\u0003a\u0003a\u0003a\u0007a\u04c7\na\fa\u000ea\u04ca\u000ba\u0003", + "a\u0005a\u04cd\na\u0003b\u0003b\u0003b\u0003b\u0005b\u04d3\nb\u0003", + "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0005c\u04db\nc\u0003d\u0003d\u0003", + "d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", + "d\u0003d\u0005d\u04eb\nd\u0003e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003", + "e\u0005e\u04f4\ne\u0003f\u0003f\u0003g\u0003g\u0003h\u0003h\u0003i\u0003", + "i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0005i\u0505\ni\u0003", + "i\u0005i\u0508\ni\u0003j\u0003j\u0003k\u0003k\u0003l\u0003l\u0003m\u0003", + "m\u0003m\u0003\u04a4\u0007T`\u0084\u0088\u008an\u0002\u0004\u0006\b", + "\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.", + "02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088", + "\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0", + "\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6\u00b8", + "\u00ba\u00bc\u00be\u00c0\u00c2\u00c4\u00c6\u00c8\u00ca\u00cc\u00ce\u00d0", + "\u00d2\u00d4\u00d6\u00d8\u0002\u0018\u0006\u0002XX]]\u00c7\u00c7\u00fd", + "\u00fe\u0003\u0002\u00ff\u0115\u0003\u0002\u00f6\u00f7\u0004\u0002\n", + "\n\u00f8\u00f8\u0004\u0002\u00ae\u00ae\u00fa\u00fa\u0003\u0002\u00bf", + "\u00c0\u0004\u0002OO\u0093\u0093\u0004\u0002_`bb\u0004\u00022245\u0003", + "\u0002%&\u0004\u0002CCEE\u0003\u0002\n\u000b\u0003\u0002\"#\u0004\u0002", + "\u011a\u011a\u012c\u012d\u0006\u0002\u0086\u0086\u012a\u012a\u012e\u012e", + "\u0131\u0131\u0004\u0002\u012c\u012d\u012f\u012f\u0003\u0002\u012c\u012d", + "\u0003\u0002\u0134\u0135\u0004\u0002\u0134\u0134\u0137\u0137\u0006\u0002", + "\u0086\u0086\u012a\u012a\u012c\u012e\u0130\u0131\u0005\u0002\u001b\u001b", + "\u0119\u011a\u012c\u012d\u0004\u0002\n\n\f\f\u0002\u057d\u0002\u00da", + "\u0003\u0002\u0002\u0002\u0004\u00dd\u0003\u0002\u0002\u0002\u0006\u00e7", + "\u0003\u0002\u0002\u0002\b\u00f0\u0003\u0002\u0002\u0002\n\u00f2\u0003", + "\u0002\u0002\u0002\f\u0100\u0003\u0002\u0002\u0002\u000e\u0104\u0003", + "\u0002\u0002\u0002\u0010\u0106\u0003\u0002\u0002\u0002\u0012\u0109\u0003", + "\u0002\u0002\u0002\u0014\u010e\u0003\u0002\u0002\u0002\u0016\u0114\u0003", + "\u0002\u0002\u0002\u0018\u0117\u0003\u0002\u0002\u0002\u001a\u0131\u0003", + "\u0002\u0002\u0002\u001c\u0136\u0003\u0002\u0002\u0002\u001e\u0138\u0003", + "\u0002\u0002\u0002 \u013a\u0003\u0002\u0002\u0002\"\u013e\u0003\u0002", + "\u0002\u0002$\u0141\u0003\u0002\u0002\u0002&\u0147\u0003\u0002\u0002", + "\u0002(\u014b\u0003\u0002\u0002\u0002*\u0163\u0003\u0002\u0002\u0002", + ",\u0167\u0003\u0002\u0002\u0002.\u0169\u0003\u0002\u0002\u00020\u0171", + "\u0003\u0002\u0002\u00022\u0173\u0003\u0002\u0002\u00024\u0178\u0003", + "\u0002\u0002\u00026\u0183\u0003\u0002\u0002\u00028\u019c\u0003\u0002", + "\u0002\u0002:\u01ad\u0003\u0002\u0002\u0002<\u01b4\u0003\u0002\u0002", + "\u0002>\u01b8\u0003\u0002\u0002\u0002@\u01bb\u0003\u0002\u0002\u0002", + "B\u01c0\u0003\u0002\u0002\u0002D\u01d1\u0003\u0002\u0002\u0002F\u01d8", + "\u0003\u0002\u0002\u0002H\u01e1\u0003\u0002\u0002\u0002J\u01eb\u0003", + "\u0002\u0002\u0002L\u01f7\u0003\u0002\u0002\u0002N\u0201\u0003\u0002", + "\u0002\u0002P\u0204\u0003\u0002\u0002\u0002R\u020d\u0003\u0002\u0002", + "\u0002T\u022c\u0003\u0002\u0002\u0002V\u023f\u0003\u0002\u0002\u0002", + "X\u0248\u0003\u0002\u0002\u0002Z\u0256\u0003\u0002\u0002\u0002\\\u0265", + "\u0003\u0002\u0002\u0002^\u026c\u0003\u0002\u0002\u0002`\u026f\u0003", + "\u0002\u0002\u0002b\u0289\u0003\u0002\u0002\u0002d\u02a6\u0003\u0002", + "\u0002\u0002f\u02b6\u0003\u0002\u0002\u0002h\u02b8\u0003\u0002\u0002", + "\u0002j\u02bb\u0003\u0002\u0002\u0002l\u02f8\u0003\u0002\u0002\u0002", + "n\u02fa\u0003\u0002\u0002\u0002p\u02fd\u0003\u0002\u0002\u0002r\u0307", + "\u0003\u0002\u0002\u0002t\u030b\u0003\u0002\u0002\u0002v\u0310\u0003", + "\u0002\u0002\u0002x\u0319\u0003\u0002\u0002\u0002z\u031e\u0003\u0002", + "\u0002\u0002|\u033e\u0003\u0002\u0002\u0002~\u034a\u0003\u0002\u0002", + "\u0002\u0080\u034c\u0003\u0002\u0002\u0002\u0082\u034f\u0003\u0002\u0002", + "\u0002\u0084\u035d\u0003\u0002\u0002\u0002\u0086\u03bd\u0003\u0002\u0002", + "\u0002\u0088\u03c3\u0003\u0002\u0002\u0002\u008a\u0431\u0003\u0002\u0002", + "\u0002\u008c\u043d\u0003\u0002\u0002\u0002\u008e\u043f\u0003\u0002\u0002", + "\u0002\u0090\u0441\u0003\u0002\u0002\u0002\u0092\u0449\u0003\u0002\u0002", + "\u0002\u0094\u044e\u0003\u0002\u0002\u0002\u0096\u0455\u0003\u0002\u0002", + "\u0002\u0098\u0459\u0003\u0002\u0002\u0002\u009a\u045e\u0003\u0002\u0002", + "\u0002\u009c\u0468\u0003\u0002\u0002\u0002\u009e\u046b\u0003\u0002\u0002", + "\u0002\u00a0\u0471\u0003\u0002\u0002\u0002\u00a2\u047b\u0003\u0002\u0002", + "\u0002\u00a4\u047d\u0003\u0002\u0002\u0002\u00a6\u0481\u0003\u0002\u0002", + "\u0002\u00a8\u0489\u0003\u0002\u0002\u0002\u00aa\u048d\u0003\u0002\u0002", + "\u0002\u00ac\u048f\u0003\u0002\u0002\u0002\u00ae\u0491\u0003\u0002\u0002", + "\u0002\u00b0\u0493\u0003\u0002\u0002\u0002\u00b2\u0498\u0003\u0002\u0002", + "\u0002\u00b4\u04a0\u0003\u0002\u0002\u0002\u00b6\u04a7\u0003\u0002\u0002", + "\u0002\u00b8\u04aa\u0003\u0002\u0002\u0002\u00ba\u04ae\u0003\u0002\u0002", + "\u0002\u00bc\u04b1\u0003\u0002\u0002\u0002\u00be\u04bc\u0003\u0002\u0002", + "\u0002\u00c0\u04cc\u0003\u0002\u0002\u0002\u00c2\u04d2\u0003\u0002\u0002", + "\u0002\u00c4\u04da\u0003\u0002\u0002\u0002\u00c6\u04ea\u0003\u0002\u0002", + "\u0002\u00c8\u04f3\u0003\u0002\u0002\u0002\u00ca\u04f5\u0003\u0002\u0002", + "\u0002\u00cc\u04f7\u0003\u0002\u0002\u0002\u00ce\u04f9\u0003\u0002\u0002", + "\u0002\u00d0\u0507\u0003\u0002\u0002\u0002\u00d2\u0509\u0003\u0002\u0002", + "\u0002\u00d4\u050b\u0003\u0002\u0002\u0002\u00d6\u050d\u0003\u0002\u0002", + "\u0002\u00d8\u050f\u0003\u0002\u0002\u0002\u00da\u00db\u0005\u0004\u0003", + "\u0002\u00db\u00dc\u0007\u0002\u0002\u0003\u00dc\u0003\u0003\u0002\u0002", + "\u0002\u00dd\u00de\u0005\u0006\u0004\u0002\u00de\u00df\u0007\u0002\u0002", + "\u0003\u00df\u0005\u0003\u0002\u0002\u0002\u00e0\u00e2\u0005\b\u0005", + "\u0002\u00e1\u00e3\u0007\u0124\u0002\u0002\u00e2\u00e1\u0003\u0002\u0002", + "\u0002\u00e2\u00e3\u0003\u0002\u0002\u0002\u00e3\u00e6\u0003\u0002\u0002", + "\u0002\u00e4\u00e6\u0005\n\u0006\u0002\u00e5\u00e0\u0003\u0002\u0002", + "\u0002\u00e5\u00e4\u0003\u0002\u0002\u0002\u00e6\u00e9\u0003\u0002\u0002", + "\u0002\u00e7\u00e5\u0003\u0002\u0002\u0002\u00e7\u00e8\u0003\u0002\u0002", + "\u0002\u00e8\u0007\u0003\u0002\u0002\u0002\u00e9\u00e7\u0003\u0002\u0002", + "\u0002\u00ea\u00f1\u0005\f\u0007\u0002\u00eb\u00f1\u0005\u000e\b\u0002", + "\u00ec\u00f1\u0005\u0010\t\u0002\u00ed\u00f1\u0005\u0012\n\u0002\u00ee", + "\u00f1\u0005\u0014\u000b\u0002\u00ef\u00f1\u0005\u0016\f\u0002\u00f0", + "\u00ea\u0003\u0002\u0002\u0002\u00f0\u00eb\u0003\u0002\u0002\u0002\u00f0", + "\u00ec\u0003\u0002\u0002\u0002\u00f0\u00ed\u0003\u0002\u0002\u0002\u00f0", + "\u00ee\u0003\u0002\u0002\u0002\u00f0\u00ef\u0003\u0002\u0002\u0002\u00f1", + "\t\u0003\u0002\u0002\u0002\u00f2\u00f3\u0007\u0124\u0002\u0002\u00f3", + "\u000b\u0003\u0002\u0002\u0002\u00f4\u0101\u0005\u0018\r\u0002\u00f5", + "\u0101\u00054\u001b\u0002\u00f6\u0101\u00056\u001c\u0002\u00f7\u0101", + "\u00058\u001d\u0002\u00f8\u0101\u00052\u001a\u0002\u00f9\u0101\u0005", + ":\u001e\u0002\u00fa\u0101\u0005@!\u0002\u00fb\u0101\u0005B\"\u0002\u00fc", + "\u0101\u0005D#\u0002\u00fd\u0101\u0005F$\u0002\u00fe\u0101\u0005H%\u0002", + "\u00ff\u0101\u0005J&\u0002\u0100\u00f4\u0003\u0002\u0002\u0002\u0100", + "\u00f5\u0003\u0002\u0002\u0002\u0100\u00f6\u0003\u0002\u0002\u0002\u0100", + "\u00f7\u0003\u0002\u0002\u0002\u0100\u00f8\u0003\u0002\u0002\u0002\u0100", + "\u00f9\u0003\u0002\u0002\u0002\u0100\u00fa\u0003\u0002\u0002\u0002\u0100", + "\u00fb\u0003\u0002\u0002\u0002\u0100\u00fc\u0003\u0002\u0002\u0002\u0100", + "\u00fd\u0003\u0002\u0002\u0002\u0100\u00fe\u0003\u0002\u0002\u0002\u0100", + "\u00ff\u0003\u0002\u0002\u0002\u0101\r\u0003\u0002\u0002\u0002\u0102", + "\u0105\u0005T+\u0002\u0103\u0105\u0005L\'\u0002\u0104\u0102\u0003\u0002", + "\u0002\u0002\u0104\u0103\u0003\u0002\u0002\u0002\u0105\u000f\u0003\u0002", + "\u0002\u0002\u0106\u0107\u0007P\u0002\u0002\u0107\u0108\u0005\u00b4", + "[\u0002\u0108\u0011\u0003\u0002\u0002\u0002\u0109\u010a\u0007Q\u0002", + "\u0002\u010a\u010b\u0005\u00a8U\u0002\u010b\u010c\u0007\'\u0002\u0002", + "\u010c\u010d\u0005\u000e\b\u0002\u010d\u0013\u0003\u0002\u0002\u0002", + "\u010e\u0110\u0007[\u0002\u0002\u010f\u0111\u0007\u00fb\u0002\u0002", + "\u0110\u010f\u0003\u0002\u0002\u0002\u0110\u0111\u0003\u0002\u0002\u0002", + "\u0111\u0112\u0003\u0002\u0002\u0002\u0112\u0113\u0005\u00b4[\u0002", + "\u0113\u0015\u0003\u0002\u0002\u0002\u0114\u0115\u0007W\u0002\u0002", + "\u0115\u0116\t\u0002\u0002\u0002\u0116\u0017\u0003\u0002\u0002\u0002", + "\u0117\u0118\u0007H\u0002\u0002\u0118\u0119\u0007I\u0002\u0002\u0119", + "\u011a\u0005\u00b4[\u0002\u011a\u011b\u0007\u0121\u0002\u0002\u011b", + "\u0120\u0005\u001a\u000e\u0002\u011c\u011d\u0007\u0123\u0002\u0002\u011d", + "\u011f\u0005\u001a\u000e\u0002\u011e\u011c\u0003\u0002\u0002\u0002\u011f", + "\u0122\u0003\u0002\u0002\u0002\u0120\u011e\u0003\u0002\u0002\u0002\u0120", + "\u0121\u0003\u0002\u0002\u0002\u0121\u0124\u0003\u0002\u0002\u0002\u0122", + "\u0120\u0003\u0002\u0002\u0002\u0123\u0125\u0005$\u0013\u0002\u0124", + "\u0123\u0003\u0002\u0002\u0002\u0124\u0125\u0003\u0002\u0002\u0002\u0125", + "\u0126\u0003\u0002\u0002\u0002\u0126\u0128\u0007\u0122\u0002\u0002\u0127", + "\u0129\u0005\"\u0012\u0002\u0128\u0127\u0003\u0002\u0002\u0002\u0128", + "\u0129\u0003\u0002\u0002\u0002\u0129\u012b\u0003\u0002\u0002\u0002\u012a", + "\u012c\u0005&\u0014\u0002\u012b\u012a\u0003\u0002\u0002\u0002\u012b", + "\u012c\u0003\u0002\u0002\u0002\u012c\u012d\u0003\u0002\u0002\u0002\u012d", + "\u012f\u0005\u00b6\\\u0002\u012e\u0130\u0005.\u0018\u0002\u012f\u012e", + "\u0003\u0002\u0002\u0002\u012f\u0130\u0003\u0002\u0002\u0002\u0130\u0019", + "\u0003\u0002\u0002\u0002\u0131\u0132\u0005\u001c\u000f\u0002\u0132\u0134", + "\u0005\u001e\u0010\u0002\u0133\u0135\u0005 \u0011\u0002\u0134\u0133", + "\u0003\u0002\u0002\u0002\u0134\u0135\u0003\u0002\u0002\u0002\u0135\u001b", + "\u0003\u0002\u0002\u0002\u0136\u0137\u0007\u0137\u0002\u0002\u0137\u001d", + "\u0003\u0002\u0002\u0002\u0138\u0139\t\u0003\u0002\u0002\u0139\u001f", + "\u0003\u0002\u0002\u0002\u013a\u013b\u0007\u0121\u0002\u0002\u013b\u013c", + "\u0005\u00d4k\u0002\u013c\u013d\u0007\u0122\u0002\u0002\u013d!\u0003", + "\u0002\u0002\u0002\u013e\u013f\u0007i\u0002\u0002\u013f\u0140\u0007", + "\u0133\u0002\u0002\u0140#\u0003\u0002\u0002\u0002\u0141\u0142\u0007", + "\u00e7\u0002\u0002\u0142\u0143\u0007\'\u0002\u0002\u0143\u0144\u0005", + "\u0082B\u0002\u0144\u0145\u0007\t\u0002\u0002\u0145\u0146\u0005\u0082", + "B\u0002\u0146%\u0003\u0002\u0002\u0002\u0147\u0148\u0007\u00ce\u0002", + "\u0002\u0148\u0149\u0007\u000f\u0002\u0002\u0149\u014a\u0005(\u0015", + "\u0002\u014a\'\u0003\u0002\u0002\u0002\u014b\u014c\u0007\u0121\u0002", + "\u0002\u014c\u0151\u0005*\u0016\u0002\u014d\u014e\u0007\u0123\u0002", + "\u0002\u014e\u0150\u0005*\u0016\u0002\u014f\u014d\u0003\u0002\u0002", + "\u0002\u0150\u0153\u0003\u0002\u0002\u0002\u0151\u014f\u0003\u0002\u0002", + "\u0002\u0151\u0152\u0003\u0002\u0002\u0002\u0152\u0154\u0003\u0002\u0002", + "\u0002\u0153\u0151\u0003\u0002\u0002\u0002\u0154\u0155\u0007\u0122\u0002", + "\u0002\u0155)\u0003\u0002\u0002\u0002\u0156\u0164\u0005\u0090I\u0002", + "\u0157\u0158\u0005\u00a8U\u0002\u0158\u0159\u0007\u0121\u0002\u0002", + "\u0159\u015e\u0005,\u0017\u0002\u015a\u015b\u0007\u0123\u0002\u0002", + "\u015b\u015d\u0005,\u0017\u0002\u015c\u015a\u0003\u0002\u0002\u0002", + "\u015d\u0160\u0003\u0002\u0002\u0002\u015e\u015c\u0003\u0002\u0002\u0002", + "\u015e\u015f\u0003\u0002\u0002\u0002\u015f\u0161\u0003\u0002\u0002\u0002", + "\u0160\u015e\u0003\u0002\u0002\u0002\u0161\u0162\u0007\u0122\u0002\u0002", + "\u0162\u0164\u0003\u0002\u0002\u0002\u0163\u0156\u0003\u0002\u0002\u0002", + "\u0163\u0157\u0003\u0002\u0002\u0002\u0164+\u0003\u0002\u0002\u0002", + "\u0165\u0168\u0005\u0090I\u0002\u0166\u0168\u0005\u00d0i\u0002\u0167", + "\u0165\u0003\u0002\u0002\u0002\u0167\u0166\u0003\u0002\u0002\u0002\u0168", + "-\u0003\u0002\u0002\u0002\u0169\u016a\u0007\u001f\u0002\u0002\u016a", + "\u016b\u0005\u00a8U\u0002\u016b\u016c\u00050\u0019\u0002\u016c/\u0003", + "\u0002\u0002\u0002\u016d\u016e\t\u0004\u0002\u0002\u016e\u0172\t\u0005", + "\u0002\u0002\u016f\u0170\t\u0004\u0002\u0002\u0170\u0172\t\u0006\u0002", + "\u0002\u0171\u016d\u0003\u0002\u0002\u0002\u0171\u016f\u0003\u0002\u0002", + "\u0002\u01721\u0003\u0002\u0002\u0002\u0173\u0174\u0007H\u0002\u0002", + "\u0174\u0175\u0007\u00fb\u0002\u0002\u0175\u0176\u0005\u00b4[\u0002", + "\u0176\u0177\u0005\u00b6\\\u0002\u01773\u0003\u0002\u0002\u0002\u0178", + "\u0179\u0007H\u0002\u0002\u0179\u017b\u0007\u00c6\u0002\u0002\u017a", + "\u017c\u0005\u00b8]\u0002\u017b\u017a\u0003\u0002\u0002\u0002\u017b", + "\u017c\u0003\u0002\u0002\u0002\u017c\u017d\u0003\u0002\u0002\u0002\u017d", + "\u017f\u0005\u00b4[\u0002\u017e\u0180\u0005\"\u0012\u0002\u017f\u017e", + "\u0003\u0002\u0002\u0002\u017f\u0180\u0003\u0002\u0002\u0002\u0180\u0181", + "\u0003\u0002\u0002\u0002\u0181\u0182\u0005\u00b6\\\u0002\u01825\u0003", + "\u0002\u0002\u0002\u0183\u0185\u0007H\u0002\u0002\u0184\u0186\u0007", + "\u00ad\u0002\u0002\u0185\u0184\u0003\u0002\u0002\u0002\u0185\u0186\u0003", + "\u0002\u0002\u0002\u0186\u0187\u0003\u0002\u0002\u0002\u0187\u0189\u0007", + "K\u0002\u0002\u0188\u018a\u0005\u00b8]\u0002\u0189\u0188\u0003\u0002", + "\u0002\u0002\u0189\u018a\u0003\u0002\u0002\u0002\u018a\u018b\u0003\u0002", + "\u0002\u0002\u018b\u0194\u0005\u00b4[\u0002\u018c\u0191\u0005\u001c", + "\u000f\u0002\u018d\u018e\u0007\u0123\u0002\u0002\u018e\u0190\u0005\u001c", + "\u000f\u0002\u018f\u018d\u0003\u0002\u0002\u0002\u0190\u0193\u0003\u0002", + "\u0002\u0002\u0191\u018f\u0003\u0002\u0002\u0002\u0191\u0192\u0003\u0002", + "\u0002\u0002\u0192\u0195\u0003\u0002\u0002\u0002\u0193\u0191\u0003\u0002", + "\u0002\u0002\u0194\u018c\u0003\u0002\u0002\u0002\u0194\u0195\u0003\u0002", + "\u0002\u0002\u0195\u0197\u0003\u0002\u0002\u0002\u0196\u0198\u0005\"", + "\u0012\u0002\u0197\u0196\u0003\u0002\u0002\u0002\u0197\u0198\u0003\u0002", + "\u0002\u0002\u0198\u0199\u0003\u0002\u0002\u0002\u0199\u019a\u0007\t", + "\u0002\u0002\u019a\u019b\u0005T+\u0002\u019b7\u0003\u0002\u0002\u0002", + "\u019c\u01a0\u0007H\u0002\u0002\u019d\u01a1\u0007\u00ad\u0002\u0002", + "\u019e\u019f\u0007\u00ad\u0002\u0002\u019f\u01a1\u0007\u00f5\u0002\u0002", + "\u01a0\u019d\u0003\u0002\u0002\u0002\u01a0\u019e\u0003\u0002\u0002\u0002", + "\u01a1\u01a2\u0003\u0002\u0002\u0002\u01a2\u01a4\u0007\u00a4\u0002\u0002", + "\u01a3\u01a5\u0005\u00b8]\u0002\u01a4\u01a3\u0003\u0002\u0002\u0002", + "\u01a4\u01a5\u0003\u0002\u0002\u0002\u01a5\u01a6\u0003\u0002\u0002\u0002", + "\u01a6\u01a7\u0005\u00b4[\u0002\u01a7\u01a8\u0007\t\u0002\u0002\u01a8", + "\u01ab\u0005\u00a8U\u0002\u01a9\u01aa\u0007\u00fc\u0002\u0002\u01aa", + "\u01ac\u0005\u00a8U\u0002\u01ab\u01a9\u0003\u0002\u0002\u0002\u01ab", + "\u01ac\u0003\u0002\u0002\u0002\u01ac9\u0003\u0002\u0002\u0002\u01ad", + "\u01ae\u0007f\u0002\u0002\u01ae\u01af\u0007I\u0002\u0002\u01af\u01b2", + "\u0005\u00b4[\u0002\u01b0\u01b3\u0005<\u001f\u0002\u01b1\u01b3\u0005", + "> \u0002\u01b2\u01b0\u0003\u0002\u0002\u0002\u01b2\u01b1\u0003\u0002", + "\u0002\u0002\u01b3;\u0003\u0002\u0002\u0002\u01b4\u01b5\u0007g\u0002", + "\u0002\u01b5\u01b6\u0007c\u0002\u0002\u01b6\u01b7\u0005\u00b4[\u0002", + "\u01b7=\u0003\u0002\u0002\u0002\u01b8\u01b9\u0007j\u0002\u0002\u01b9", + "\u01ba\u0005\u00bc_\u0002\u01ba?\u0003\u0002\u0002\u0002\u01bb\u01bc", + "\u0007f\u0002\u0002\u01bc\u01bd\u0007\u00c6\u0002\u0002\u01bd\u01be", + "\u0005\u00b4[\u0002\u01be\u01bf\u0005> \u0002\u01bfA\u0003\u0002\u0002", + "\u0002\u01c0\u01c4\u0007f\u0002\u0002\u01c1\u01c5\u0007\u00ad\u0002", + "\u0002\u01c2\u01c3\u0007\u00ad\u0002\u0002\u01c3\u01c5\u0007\u00f5\u0002", + "\u0002\u01c4\u01c1\u0003\u0002\u0002\u0002\u01c4\u01c2\u0003\u0002\u0002", + "\u0002\u01c5\u01c6\u0003\u0002\u0002\u0002\u01c6\u01c8\u0007\u00a4\u0002", + "\u0002\u01c7\u01c9\u0005\u00ba^\u0002\u01c8\u01c7\u0003\u0002\u0002", + "\u0002\u01c8\u01c9\u0003\u0002\u0002\u0002\u01c9\u01ca\u0003\u0002\u0002", + "\u0002\u01ca\u01cb\u0005\u00b4[\u0002\u01cb\u01cc\u0007\t\u0002\u0002", + "\u01cc\u01cf\u0005\u00a8U\u0002\u01cd\u01ce\u0007\u00fc\u0002\u0002", + "\u01ce\u01d0\u0005\u00a8U\u0002\u01cf\u01cd\u0003\u0002\u0002\u0002", + "\u01cf\u01d0\u0003\u0002\u0002\u0002\u01d0C\u0003\u0002\u0002\u0002", + "\u01d1\u01d2\u0007^\u0002\u0002\u01d2\u01d4\u0007I\u0002\u0002\u01d3", + "\u01d5\u0005\u00ba^\u0002\u01d4\u01d3\u0003\u0002\u0002\u0002\u01d4", + "\u01d5\u0003\u0002\u0002\u0002\u01d5\u01d6\u0003\u0002\u0002\u0002\u01d6", + "\u01d7\u0005\u00b4[\u0002\u01d7E\u0003\u0002\u0002\u0002\u01d8\u01d9", + "\u0007^\u0002\u0002\u01d9\u01db\u0007\u00c6\u0002\u0002\u01da\u01dc", + "\u0005\u00ba^\u0002\u01db\u01da\u0003\u0002\u0002\u0002\u01db\u01dc", + "\u0003\u0002\u0002\u0002\u01dc\u01dd\u0003\u0002\u0002\u0002\u01dd\u01df", + "\u0005\u00b4[\u0002\u01de\u01e0\t\u0007\u0002\u0002\u01df\u01de\u0003", + "\u0002\u0002\u0002\u01df\u01e0\u0003\u0002\u0002\u0002\u01e0G\u0003", + "\u0002\u0002\u0002\u01e1\u01e3\u0007^\u0002\u0002\u01e2\u01e4\u0007", + "\u00ad\u0002\u0002\u01e3\u01e2\u0003\u0002\u0002\u0002\u01e3\u01e4\u0003", + "\u0002\u0002\u0002\u01e4\u01e5\u0003\u0002\u0002\u0002\u01e5\u01e7\u0007", + "K\u0002\u0002\u01e6\u01e8\u0005\u00ba^\u0002\u01e7\u01e6\u0003\u0002", + "\u0002\u0002\u01e7\u01e8\u0003\u0002\u0002\u0002\u01e8\u01e9\u0003\u0002", + "\u0002\u0002\u01e9\u01ea\u0005\u00b4[\u0002\u01eaI\u0003\u0002\u0002", + "\u0002\u01eb\u01ef\u0007^\u0002\u0002\u01ec\u01f0\u0007\u00ad\u0002", + "\u0002\u01ed\u01ee\u0007\u00ad\u0002\u0002\u01ee\u01f0\u0007\u00f5\u0002", + "\u0002\u01ef\u01ec\u0003\u0002\u0002\u0002\u01ef\u01ed\u0003\u0002\u0002", + "\u0002\u01ef\u01f0\u0003\u0002\u0002\u0002\u01f0\u01f1\u0003\u0002\u0002", + "\u0002\u01f1\u01f3\u0007\u00a4\u0002\u0002\u01f2\u01f4\u0005\u00ba^", + "\u0002\u01f3\u01f2\u0003\u0002\u0002\u0002\u01f3\u01f4\u0003\u0002\u0002", + "\u0002\u01f4\u01f5\u0003\u0002\u0002\u0002\u01f5\u01f6\u0005\u00b4[", + "\u0002\u01f6K\u0003\u0002\u0002\u0002\u01f7\u01f8\u0007M\u0002\u0002", + "\u01f8\u01f9\t\b\u0002\u0002\u01f9\u01ff\u0005\u00b4[\u0002\u01fa\u01fc", + "\u0005N(\u0002\u01fb\u01fa\u0003\u0002\u0002\u0002\u01fb\u01fc\u0003", + "\u0002\u0002\u0002\u01fc\u01fd\u0003\u0002\u0002\u0002\u01fd\u0200\u0005", + "T+\u0002\u01fe\u0200\u0005P)\u0002\u01ff\u01fb\u0003\u0002\u0002\u0002", + "\u01ff\u01fe\u0003\u0002\u0002\u0002\u0200M\u0003\u0002\u0002\u0002", + "\u0201\u0202\u0007<\u0002\u0002\u0202\u0203\u0005\u00bc_\u0002\u0203", + "O\u0003\u0002\u0002\u0002\u0204\u0205\u0007G\u0002\u0002\u0205\u020a", + "\u0005R*\u0002\u0206\u0207\u0007\u0123\u0002\u0002\u0207\u0209\u0005", + "R*\u0002\u0208\u0206\u0003\u0002\u0002\u0002\u0209\u020c\u0003\u0002", + "\u0002\u0002\u020a\u0208\u0003\u0002\u0002\u0002\u020a\u020b\u0003\u0002", + "\u0002\u0002\u020bQ\u0003\u0002\u0002\u0002\u020c\u020a\u0003\u0002", + "\u0002\u0002\u020d\u020e\u0007\u0121\u0002\u0002\u020e\u0213\u0005\u00d0", + "i\u0002\u020f\u0210\u0007\u0123\u0002\u0002\u0210\u0212\u0005\u00d0", + "i\u0002\u0211\u020f\u0003\u0002\u0002\u0002\u0212\u0215\u0003\u0002", + "\u0002\u0002\u0213\u0211\u0003\u0002\u0002\u0002\u0213\u0214\u0003\u0002", + "\u0002\u0002\u0214\u0216\u0003\u0002\u0002\u0002\u0215\u0213\u0003\u0002", + "\u0002\u0002\u0216\u0217\u0007\u0122\u0002\u0002\u0217S\u0003\u0002", + "\u0002\u0002\u0218\u0219\b+\u0001\u0002\u0219\u022d\u0005V,\u0002\u021a", + "\u021b\u0007\u0121\u0002\u0002\u021b\u021c\u0005T+\u0002\u021c\u021d", + "\u0007\u0122\u0002\u0002\u021d\u022d\u0003\u0002\u0002\u0002\u021e\u0220", + "\u0005Z.\u0002\u021f\u0221\u0005p9\u0002\u0220\u021f\u0003\u0002\u0002", + "\u0002\u0220\u0221\u0003\u0002\u0002\u0002\u0221\u0223\u0003\u0002\u0002", + "\u0002\u0222\u0224\u0005t;\u0002\u0223\u0222\u0003\u0002\u0002\u0002", + "\u0223\u0224\u0003\u0002\u0002\u0002\u0224\u022d\u0003\u0002\u0002\u0002", + "\u0225\u0227\u0005X-\u0002\u0226\u0228\u0005p9\u0002\u0227\u0226\u0003", + "\u0002\u0002\u0002\u0227\u0228\u0003\u0002\u0002\u0002\u0228\u022a\u0003", + "\u0002\u0002\u0002\u0229\u022b\u0005t;\u0002\u022a\u0229\u0003\u0002", + "\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b\u022d\u0003\u0002", + "\u0002\u0002\u022c\u0218\u0003\u0002\u0002\u0002\u022c\u021a\u0003\u0002", + "\u0002\u0002\u022c\u021e\u0003\u0002\u0002\u0002\u022c\u0225\u0003\u0002", + "\u0002\u0002\u022d\u023c\u0003\u0002\u0002\u0002\u022e\u022f\f\u0005", + "\u0002\u0002\u022f\u0231\t\t\u0002\u0002\u0230\u0232\u0007\n\u0002\u0002", + "\u0231\u0230\u0003\u0002\u0002\u0002\u0231\u0232\u0003\u0002\u0002\u0002", + "\u0232\u0233\u0003\u0002\u0002\u0002\u0233\u0235\u0005T+\u0002\u0234", + "\u0236\u0005p9\u0002\u0235\u0234\u0003\u0002\u0002\u0002\u0235\u0236", + "\u0003\u0002\u0002\u0002\u0236\u0238\u0003\u0002\u0002\u0002\u0237\u0239", + "\u0005t;\u0002\u0238\u0237\u0003\u0002\u0002\u0002\u0238\u0239\u0003", + "\u0002\u0002\u0002\u0239\u023b\u0003\u0002\u0002\u0002\u023a\u022e\u0003", + "\u0002\u0002\u0002\u023b\u023e\u0003\u0002\u0002\u0002\u023c\u023a\u0003", + "\u0002\u0002\u0002\u023c\u023d\u0003\u0002\u0002\u0002\u023dU\u0003", + "\u0002\u0002\u0002\u023e\u023c\u0003\u0002\u0002\u0002\u023f\u0240\u0007", + "G\u0002\u0002\u0240\u0245\u0005\u0082B\u0002\u0241\u0242\u0007\u0123", + "\u0002\u0002\u0242\u0244\u0005\u0082B\u0002\u0243\u0241\u0003\u0002", + "\u0002\u0002\u0244\u0247\u0003\u0002\u0002\u0002\u0245\u0243\u0003\u0002", + "\u0002\u0002\u0245\u0246\u0003\u0002\u0002\u0002\u0246W\u0003\u0002", + "\u0002\u0002\u0247\u0245\u0003\u0002\u0002\u0002\u0248\u0249\u0005Z", + ".\u0002\u0249\u024b\u0005^0\u0002\u024a\u024c\u0005h5\u0002\u024b\u024a", + "\u0003\u0002\u0002\u0002\u024b\u024c\u0003\u0002\u0002\u0002\u024c\u024e", + "\u0003\u0002\u0002\u0002\u024d\u024f\u0005j6\u0002\u024e\u024d\u0003", + "\u0002\u0002\u0002\u024e\u024f\u0003\u0002\u0002\u0002\u024f\u0251\u0003", + "\u0002\u0002\u0002\u0250\u0252\u0005n8\u0002\u0251\u0250\u0003\u0002", + "\u0002\u0002\u0251\u0252\u0003\u0002\u0002\u0002\u0252\u0254\u0003\u0002", + "\u0002\u0002\u0253\u0255\u0005v<\u0002\u0254\u0253\u0003\u0002\u0002", + "\u0002\u0254\u0255\u0003\u0002\u0002\u0002\u0255Y\u0003\u0002\u0002", + "\u0002\u0256\u0258\u0007\u0006\u0002\u0002\u0257\u0259\u0005\u00d8m", + "\u0002\u0258\u0257\u0003\u0002\u0002\u0002\u0258\u0259\u0003\u0002\u0002", + "\u0002\u0259\u0263\u0003\u0002\u0002\u0002\u025a\u0264\u0007\u012a\u0002", + "\u0002\u025b\u0260\u0005\\/\u0002\u025c\u025d\u0007\u0123\u0002\u0002", + "\u025d\u025f\u0005\\/\u0002\u025e\u025c\u0003\u0002\u0002\u0002\u025f", + "\u0262\u0003\u0002\u0002\u0002\u0260\u025e\u0003\u0002\u0002\u0002\u0260", + "\u0261\u0003\u0002\u0002\u0002\u0261\u0264\u0003\u0002\u0002\u0002\u0262", + "\u0260\u0003\u0002\u0002\u0002\u0263\u025a\u0003\u0002\u0002\u0002\u0263", + "\u025b\u0003\u0002\u0002\u0002\u0264[\u0003\u0002\u0002\u0002\u0265", + "\u026a\u0005\u0082B\u0002\u0266\u0268\u0007\t\u0002\u0002\u0267\u0266", + "\u0003\u0002\u0002\u0002\u0267\u0268\u0003\u0002\u0002\u0002\u0268\u0269", + "\u0003\u0002\u0002\u0002\u0269\u026b\u0005\u00b4[\u0002\u026a\u0267", + "\u0003\u0002\u0002\u0002\u026a\u026b\u0003\u0002\u0002\u0002\u026b]", + "\u0003\u0002\u0002\u0002\u026c\u026d\u0007\u0007\u0002\u0002\u026d\u026e", + "\u0005`1\u0002\u026e_\u0003\u0002\u0002\u0002\u026f\u0270\b1\u0001\u0002", + "\u0270\u0275\u0005b2\u0002\u0271\u0272\u0007\u0123\u0002\u0002\u0272", + "\u0274\u0005b2\u0002\u0273\u0271\u0003\u0002\u0002\u0002\u0274\u0277", + "\u0003\u0002\u0002\u0002\u0275\u0273\u0003\u0002\u0002\u0002\u0275\u0276", + "\u0003\u0002\u0002\u0002\u0276\u0286\u0003\u0002\u0002\u0002\u0277\u0275", + "\u0003\u0002\u0002\u0002\u0278\u027a\f\u0003\u0002\u0002\u0279\u027b", + "\u00076\u0002\u0002\u027a\u0279\u0003\u0002\u0002\u0002\u027a\u027b", + "\u0003\u0002\u0002\u0002\u027b\u027d\u0003\u0002\u0002\u0002\u027c\u027e", + "\t\n\u0002\u0002\u027d\u027c\u0003\u0002\u0002\u0002\u027d\u027e\u0003", + "\u0002\u0002\u0002\u027e\u027f\u0003\u0002\u0002\u0002\u027f\u0280\u0007", + ".\u0002\u0002\u0280\u0282\u0005`1\u0002\u0281\u0283\u0005f4\u0002\u0282", + "\u0281\u0003\u0002\u0002\u0002\u0282\u0283\u0003\u0002\u0002\u0002\u0283", + "\u0285\u0003\u0002\u0002\u0002\u0284\u0278\u0003\u0002\u0002\u0002\u0285", + "\u0288\u0003\u0002\u0002\u0002\u0286\u0284\u0003\u0002\u0002\u0002\u0286", + "\u0287\u0003\u0002\u0002\u0002\u0287a\u0003\u0002\u0002\u0002\u0288", + "\u0286\u0003\u0002\u0002\u0002\u0289\u028b\u0005d3\u0002\u028a\u028c", + "\u0005\u009eP\u0002\u028b\u028a\u0003\u0002\u0002\u0002\u028b\u028c", + "\u0003\u0002\u0002\u0002\u028cc\u0003\u0002\u0002\u0002\u028d\u028f", + "\u0007I\u0002\u0002\u028e\u028d\u0003\u0002\u0002\u0002\u028e\u028f", + "\u0003\u0002\u0002\u0002\u028f\u0290\u0003\u0002\u0002\u0002\u0290\u02a7", + "\u0005\u0082B\u0002\u0291\u0292\u00079\u0002\u0002\u0292\u0293\u0007", + "I\u0002\u0002\u0293\u0294\u0007\u0121\u0002\u0002\u0294\u0295\u0005", + "\u00b4[\u0002\u0295\u0296\u0007\u0121\u0002\u0002\u0296\u029b\u0005", + "\u0082B\u0002\u0297\u0298\u0007\u0123\u0002\u0002\u0298\u029a\u0005", + "\u0082B\u0002\u0299\u0297\u0003\u0002\u0002\u0002\u029a\u029d\u0003", + "\u0002\u0002\u0002\u029b\u0299\u0003\u0002\u0002\u0002\u029b\u029c\u0003", + "\u0002\u0002\u0002\u029c\u029e\u0003\u0002\u0002\u0002\u029d\u029b\u0003", + "\u0002\u0002\u0002\u029e\u029f\u0007\u0122\u0002\u0002\u029f\u02a0\u0007", + "\u0122\u0002\u0002\u02a0\u02a7\u0003\u0002\u0002\u0002\u02a1\u02a2\u0007", + "\u00e8\u0002\u0002\u02a2\u02a3\u0007\u0121\u0002\u0002\u02a3\u02a4\u0005", + "\u0082B\u0002\u02a4\u02a5\u0007\u0122\u0002\u0002\u02a5\u02a7\u0003", + "\u0002\u0002\u0002\u02a6\u028e\u0003\u0002\u0002\u0002\u02a6\u0291\u0003", + "\u0002\u0002\u0002\u02a6\u02a1\u0003\u0002\u0002\u0002\u02a7e\u0003", + "\u0002\u0002\u0002\u02a8\u02a9\u00077\u0002\u0002\u02a9\u02b7\u0005", + "\u0084C\u0002\u02aa\u02ab\u0007\u0096\u0002\u0002\u02ab\u02ac\u0007", + "\u0121\u0002\u0002\u02ac\u02b1\u0005\u00b4[\u0002\u02ad\u02ae\u0007", + "\u0123\u0002\u0002\u02ae\u02b0\u0005\u00b4[\u0002\u02af\u02ad\u0003", + "\u0002\u0002\u0002\u02b0\u02b3\u0003\u0002\u0002\u0002\u02b1\u02af\u0003", + "\u0002\u0002\u0002\u02b1\u02b2\u0003\u0002\u0002\u0002\u02b2\u02b4\u0003", + "\u0002\u0002\u0002\u02b3\u02b1\u0003\u0002\u0002\u0002\u02b4\u02b5\u0007", + "\u0122\u0002\u0002\u02b5\u02b7\u0003\u0002\u0002\u0002\u02b6\u02a8\u0003", + "\u0002\u0002\u0002\u02b6\u02aa\u0003\u0002\u0002\u0002\u02b7g\u0003", + "\u0002\u0002\u0002\u02b8\u02b9\u0007\r\u0002\u0002\u02b9\u02ba\u0005", + "\u0084C\u0002\u02bai\u0003\u0002\u0002\u0002\u02bb\u02bc\u0007\u000e", + "\u0002\u0002\u02bc\u02bd\u0007\u000f\u0002\u0002\u02bd\u02c2\u0005l", + "7\u0002\u02be\u02bf\u0007\u0123\u0002\u0002\u02bf\u02c1\u0005l7\u0002", + "\u02c0\u02be\u0003\u0002\u0002\u0002\u02c1\u02c4\u0003\u0002\u0002\u0002", + "\u02c2\u02c0\u0003\u0002\u0002\u0002\u02c2\u02c3\u0003\u0002\u0002\u0002", + "\u02c3k\u0003\u0002\u0002\u0002\u02c4\u02c2\u0003\u0002\u0002\u0002", + "\u02c5\u02f9\u0005\u0082B\u0002\u02c6\u02c7\u0007\u0121\u0002\u0002", + "\u02c7\u02f9\u0007\u0122\u0002\u0002\u02c8\u02c9\u0007\u0121\u0002\u0002", + "\u02c9\u02ce\u0005\u0082B\u0002\u02ca\u02cb\u0007\u0123\u0002\u0002", + "\u02cb\u02cd\u0005\u0082B\u0002\u02cc\u02ca\u0003\u0002\u0002\u0002", + "\u02cd\u02d0\u0003\u0002\u0002\u0002\u02ce\u02cc\u0003\u0002\u0002\u0002", + "\u02ce\u02cf\u0003\u0002\u0002\u0002\u02cf\u02d1\u0003\u0002\u0002\u0002", + "\u02d0\u02ce\u0003\u0002\u0002\u0002\u02d1\u02d2\u0007\u0122\u0002\u0002", + "\u02d2\u02f9\u0003\u0002\u0002\u0002\u02d3\u02d4\u0007\u0012\u0002\u0002", + "\u02d4\u02d5\u0007\u0121\u0002\u0002\u02d5\u02da\u0005\u0082B\u0002", + "\u02d6\u02d7\u0007\u0123\u0002\u0002\u02d7\u02d9\u0005\u0082B\u0002", + "\u02d8\u02d6\u0003\u0002\u0002\u0002\u02d9\u02dc\u0003\u0002\u0002\u0002", + "\u02da\u02d8\u0003\u0002\u0002\u0002\u02da\u02db\u0003\u0002\u0002\u0002", + "\u02db\u02dd\u0003\u0002\u0002\u0002\u02dc\u02da\u0003\u0002\u0002\u0002", + "\u02dd\u02de\u0007\u0122\u0002\u0002\u02de\u02f9\u0003\u0002\u0002\u0002", + "\u02df\u02e0\u0007\u0013\u0002\u0002\u02e0\u02e1\u0007\u0121\u0002\u0002", + "\u02e1\u02e6\u0005\u0082B\u0002\u02e2\u02e3\u0007\u0123\u0002\u0002", + "\u02e3\u02e5\u0005\u0082B\u0002\u02e4\u02e2\u0003\u0002\u0002\u0002", + "\u02e5\u02e8\u0003\u0002\u0002\u0002\u02e6\u02e4\u0003\u0002\u0002\u0002", + "\u02e6\u02e7\u0003\u0002\u0002\u0002\u02e7\u02e9\u0003\u0002\u0002\u0002", + "\u02e8\u02e6\u0003\u0002\u0002\u0002\u02e9\u02ea\u0007\u0122\u0002\u0002", + "\u02ea\u02f9\u0003\u0002\u0002\u0002\u02eb\u02ec\u0007\u0010\u0002\u0002", + "\u02ec\u02ed\u0007\u0011\u0002\u0002\u02ed\u02ee\u0007\u0121\u0002\u0002", + "\u02ee\u02f3\u0005l7\u0002\u02ef\u02f0\u0007\u0123\u0002\u0002\u02f0", + "\u02f2\u0005l7\u0002\u02f1\u02ef\u0003\u0002\u0002\u0002\u02f2\u02f5", + "\u0003\u0002\u0002\u0002\u02f3\u02f1\u0003\u0002\u0002\u0002\u02f3\u02f4", + "\u0003\u0002\u0002\u0002\u02f4\u02f6\u0003\u0002\u0002\u0002\u02f5\u02f3", + "\u0003\u0002\u0002\u0002\u02f6\u02f7\u0007\u0122\u0002\u0002\u02f7\u02f9", + "\u0003\u0002\u0002\u0002\u02f8\u02c5\u0003\u0002\u0002\u0002\u02f8\u02c6", + "\u0003\u0002\u0002\u0002\u02f8\u02c8\u0003\u0002\u0002\u0002\u02f8\u02d3", + "\u0003\u0002\u0002\u0002\u02f8\u02df\u0003\u0002\u0002\u0002\u02f8\u02eb", + "\u0003\u0002\u0002\u0002\u02f9m\u0003\u0002\u0002\u0002\u02fa\u02fb", + "\u0007\u0015\u0002\u0002\u02fb\u02fc\u0005\u0084C\u0002\u02fco\u0003", + "\u0002\u0002\u0002\u02fd\u02fe\u0007\u0014\u0002\u0002\u02fe\u02ff\u0007", + "\u000f\u0002\u0002\u02ff\u0304\u0005r:\u0002\u0300\u0301\u0007\u0123", + "\u0002\u0002\u0301\u0303\u0005r:\u0002\u0302\u0300\u0003\u0002\u0002", + "\u0002\u0303\u0306\u0003\u0002\u0002\u0002\u0304\u0302\u0003\u0002\u0002", + "\u0002\u0304\u0305\u0003\u0002\u0002\u0002\u0305q\u0003\u0002\u0002", + "\u0002\u0306\u0304\u0003\u0002\u0002\u0002\u0307\u0309\u0005\u0082B", + "\u0002\u0308\u030a\t\u000b\u0002\u0002\u0309\u0308\u0003\u0002\u0002", + "\u0002\u0309\u030a\u0003\u0002\u0002\u0002\u030as\u0003\u0002\u0002", + "\u0002\u030b\u030e\u0007\u0016\u0002\u0002\u030c\u030f\u0007\n\u0002", + "\u0002\u030d\u030f\u0005\u0082B\u0002\u030e\u030c\u0003\u0002\u0002", + "\u0002\u030e\u030d\u0003\u0002\u0002\u0002\u030fu\u0003\u0002\u0002", + "\u0002\u0310\u0311\u0007:\u0002\u0002\u0311\u0316\u0005x=\u0002\u0312", + "\u0313\u0007\u0123\u0002\u0002\u0313\u0315\u0005x=\u0002\u0314\u0312", + "\u0003\u0002\u0002\u0002\u0315\u0318\u0003\u0002\u0002\u0002\u0316\u0314", + "\u0003\u0002\u0002\u0002\u0316\u0317\u0003\u0002\u0002\u0002\u0317w", + "\u0003\u0002\u0002\u0002\u0318\u0316\u0003\u0002\u0002\u0002\u0319\u031a", + "\u0005\u00a0Q\u0002\u031a\u031b\u0007\t\u0002\u0002\u031b\u031c\u0005", + "z>\u0002\u031cy\u0003\u0002\u0002\u0002\u031d\u031f\u0005\u00a0Q\u0002", + "\u031e\u031d\u0003\u0002\u0002\u0002\u031e\u031f\u0003\u0002\u0002\u0002", + "\u031f\u0320\u0003\u0002\u0002\u0002\u0320\u032b\u0007\u0121\u0002\u0002", + "\u0321\u0322\u0007\u0014\u0002\u0002\u0322\u0323\u0007\u000f\u0002\u0002", + "\u0323\u0328\u0005|?\u0002\u0324\u0325\u0007\u0123\u0002\u0002\u0325", + "\u0327\u0005|?\u0002\u0326\u0324\u0003\u0002\u0002\u0002\u0327\u032a", + "\u0003\u0002\u0002\u0002\u0328\u0326\u0003\u0002\u0002\u0002\u0328\u0329", + "\u0003\u0002\u0002\u0002\u0329\u032c\u0003\u0002\u0002\u0002\u032a\u0328", + "\u0003\u0002\u0002\u0002\u032b\u0321\u0003\u0002\u0002\u0002\u032b\u032c", + "\u0003\u0002\u0002\u0002\u032c\u0337\u0003\u0002\u0002\u0002\u032d\u032e", + "\u0007<\u0002\u0002\u032e\u032f\u0007\u000f\u0002\u0002\u032f\u0334", + "\u0005\u0082B\u0002\u0330\u0331\u0007\u0123\u0002\u0002\u0331\u0333", + "\u0005\u0082B\u0002\u0332\u0330\u0003\u0002\u0002\u0002\u0333\u0336", + "\u0003\u0002\u0002\u0002\u0334\u0332\u0003\u0002\u0002\u0002\u0334\u0335", + "\u0003\u0002\u0002\u0002\u0335\u0338\u0003\u0002\u0002\u0002\u0336\u0334", + "\u0003\u0002\u0002\u0002\u0337\u032d\u0003\u0002\u0002\u0002\u0337\u0338", + "\u0003\u0002\u0002\u0002\u0338\u033a\u0003\u0002\u0002\u0002\u0339\u033b", + "\u0005~@\u0002\u033a\u0339\u0003\u0002\u0002\u0002\u033a\u033b\u0003", + "\u0002\u0002\u0002\u033b\u033c\u0003\u0002\u0002\u0002\u033c\u033d\u0007", + "\u0122\u0002\u0002\u033d{\u0003\u0002\u0002\u0002\u033e\u0340\u0005", + "\u0082B\u0002\u033f\u0341\t\u000b\u0002\u0002\u0340\u033f\u0003\u0002", + "\u0002\u0002\u0340\u0341\u0003\u0002\u0002\u0002\u0341\u0344\u0003\u0002", + "\u0002\u0002\u0342\u0343\u0007$\u0002\u0002\u0343\u0345\t\f\u0002\u0002", + "\u0344\u0342\u0003\u0002\u0002\u0002\u0344\u0345\u0003\u0002\u0002\u0002", + "\u0345}\u0003\u0002\u0002\u0002\u0346\u0347\u0007=\u0002\u0002\u0347", + "\u034b\u0005\u0080A\u0002\u0348\u0349\u0007>\u0002\u0002\u0349\u034b", + "\u0005\u0080A\u0002\u034a\u0346\u0003\u0002\u0002\u0002\u034a\u0348", + "\u0003\u0002\u0002\u0002\u034b\u007f\u0003\u0002\u0002\u0002\u034c\u034d", + "\u0005\u0082B\u0002\u034d\u034e\u0007@\u0002\u0002\u034e\u0081\u0003", + "\u0002\u0002\u0002\u034f\u0350\u0005\u0084C\u0002\u0350\u0083\u0003", + "\u0002\u0002\u0002\u0351\u0352\bC\u0001\u0002\u0352\u0353\u0007\u001b", + "\u0002\u0002\u0353\u035e\u0005\u0084C\u0007\u0354\u0355\u0007\u001d", + "\u0002\u0002\u0355\u0356\u0007\u0121\u0002\u0002\u0356\u0357\u0005T", + "+\u0002\u0357\u0358\u0007\u0122\u0002\u0002\u0358\u035e\u0003\u0002", + "\u0002\u0002\u0359\u035b\u0005\u0088E\u0002\u035a\u035c\u0005\u0086", + "D\u0002\u035b\u035a\u0003\u0002\u0002\u0002\u035b\u035c\u0003\u0002", + "\u0002\u0002\u035c\u035e\u0003\u0002\u0002\u0002\u035d\u0351\u0003\u0002", + "\u0002\u0002\u035d\u0354\u0003\u0002\u0002\u0002\u035d\u0359\u0003\u0002", + "\u0002\u0002\u035e\u0367\u0003\u0002\u0002\u0002\u035f\u0360\f\u0004", + "\u0002\u0002\u0360\u0361\u0007\u0019\u0002\u0002\u0361\u0366\u0005\u0084", + "C\u0005\u0362\u0363\f\u0003\u0002\u0002\u0363\u0364\u0007\u0018\u0002", + "\u0002\u0364\u0366\u0005\u0084C\u0004\u0365\u035f\u0003\u0002\u0002", + "\u0002\u0365\u0362\u0003\u0002\u0002\u0002\u0366\u0369\u0003\u0002\u0002", + "\u0002\u0367\u0365\u0003\u0002\u0002\u0002\u0367\u0368\u0003\u0002\u0002", + "\u0002\u0368\u0085\u0003\u0002\u0002\u0002\u0369\u0367\u0003\u0002\u0002", + "\u0002\u036a\u036c\u0007\u001b\u0002\u0002\u036b\u036a\u0003\u0002\u0002", + "\u0002\u036b\u036c\u0003\u0002\u0002\u0002\u036c\u036d\u0003\u0002\u0002", + "\u0002\u036d\u036e\u0007\u001e\u0002\u0002\u036e\u036f\u0005\u0088E", + "\u0002\u036f\u0370\u0007\u0019\u0002\u0002\u0370\u0371\u0005\u0088E", + "\u0002\u0371\u03be\u0003\u0002\u0002\u0002\u0372\u0374\u0007\u001b\u0002", + "\u0002\u0373\u0372\u0003\u0002\u0002\u0002\u0373\u0374\u0003\u0002\u0002", + "\u0002\u0374\u0375\u0003\u0002\u0002\u0002\u0375\u0376\u0007\u001a\u0002", + "\u0002\u0376\u0377\u0007\u0121\u0002\u0002\u0377\u037c\u0005\u0082B", + "\u0002\u0378\u0379\u0007\u0123\u0002\u0002\u0379\u037b\u0005\u0082B", + "\u0002\u037a\u0378\u0003\u0002\u0002\u0002\u037b\u037e\u0003\u0002\u0002", + "\u0002\u037c\u037a\u0003\u0002\u0002\u0002\u037c\u037d\u0003\u0002\u0002", + "\u0002\u037d\u037f\u0003\u0002\u0002\u0002\u037e\u037c\u0003\u0002\u0002", + "\u0002\u037f\u0380\u0007\u0122\u0002\u0002\u0380\u03be\u0003\u0002\u0002", + "\u0002\u0381\u0383\u0007\u001b\u0002\u0002\u0382\u0381\u0003\u0002\u0002", + "\u0002\u0382\u0383\u0003\u0002\u0002\u0002\u0383\u0384\u0003\u0002\u0002", + "\u0002\u0384\u0385\u0007\u001a\u0002\u0002\u0385\u0386\u0007\u0121\u0002", + "\u0002\u0386\u0387\u0005T+\u0002\u0387\u0388\u0007\u0122\u0002\u0002", + "\u0388\u03be\u0003\u0002\u0002\u0002\u0389\u038a\u0007\u001d\u0002\u0002", + "\u038a\u038b\u0007\u0121\u0002\u0002\u038b\u038c\u0005T+\u0002\u038c", + "\u038d\u0007\u0122\u0002\u0002\u038d\u03be\u0003\u0002\u0002\u0002\u038e", + "\u0390\u0007\u001b\u0002\u0002\u038f\u038e\u0003\u0002\u0002\u0002\u038f", + "\u0390\u0003\u0002\u0002\u0002\u0390\u0391\u0003\u0002\u0002\u0002\u0391", + "\u0392\u0007 \u0002\u0002\u0392\u03be\u0005\u0088E\u0002\u0393\u0395", + "\u0007\u001b\u0002\u0002\u0394\u0393\u0003\u0002\u0002\u0002\u0394\u0395", + "\u0003\u0002\u0002\u0002\u0395\u0396\u0003\u0002\u0002\u0002\u0396\u0397", + "\u0007\u001f\u0002\u0002\u0397\u03a5\t\r\u0002\u0002\u0398\u0399\u0007", + "\u0121\u0002\u0002\u0399\u03a6\u0007\u0122\u0002\u0002\u039a\u039b\u0007", + "\u0121\u0002\u0002\u039b\u03a0\u0005\u0082B\u0002\u039c\u039d\u0007", + "\u0123\u0002\u0002\u039d\u039f\u0005\u0082B\u0002\u039e\u039c\u0003", + "\u0002\u0002\u0002\u039f\u03a2\u0003\u0002\u0002\u0002\u03a0\u039e\u0003", + "\u0002\u0002\u0002\u03a0\u03a1\u0003\u0002\u0002\u0002\u03a1\u03a3\u0003", + "\u0002\u0002\u0002\u03a2\u03a0\u0003\u0002\u0002\u0002\u03a3\u03a4\u0007", + "\u0122\u0002\u0002\u03a4\u03a6\u0003\u0002\u0002\u0002\u03a5\u0398\u0003", + "\u0002\u0002\u0002\u03a5\u039a\u0003\u0002\u0002\u0002\u03a6\u03be\u0003", + "\u0002\u0002\u0002\u03a7\u03a9\u0007\u001b\u0002\u0002\u03a8\u03a7\u0003", + "\u0002\u0002\u0002\u03a8\u03a9\u0003\u0002\u0002\u0002\u03a9\u03aa\u0003", + "\u0002\u0002\u0002\u03aa\u03ab\u0007\u001f\u0002\u0002\u03ab\u03be\u0005", + "\u0088E\u0002\u03ac\u03ae\u0007!\u0002\u0002\u03ad\u03af\u0007\u001b", + "\u0002\u0002\u03ae\u03ad\u0003\u0002\u0002\u0002\u03ae\u03af\u0003\u0002", + "\u0002\u0002\u03af\u03b0\u0003\u0002\u0002\u0002\u03b0\u03be\u0007\u0115", + "\u0002\u0002\u03b1\u03b3\u0007!\u0002\u0002\u03b2\u03b4\u0007\u001b", + "\u0002\u0002\u03b3\u03b2\u0003\u0002\u0002\u0002\u03b3\u03b4\u0003\u0002", + "\u0002\u0002\u03b4\u03b5\u0003\u0002\u0002\u0002\u03b5\u03be\t\u000e", + "\u0002\u0002\u03b6\u03b8\u0007!\u0002\u0002\u03b7\u03b9\u0007\u001b", + "\u0002\u0002\u03b8\u03b7\u0003\u0002\u0002\u0002\u03b8\u03b9\u0003\u0002", + "\u0002\u0002\u03b9\u03ba\u0003\u0002\u0002\u0002\u03ba\u03bb\u0007\f", + "\u0002\u0002\u03bb\u03bc\u0007\u0007\u0002\u0002\u03bc\u03be\u0005\u0088", + "E\u0002\u03bd\u036b\u0003\u0002\u0002\u0002\u03bd\u0373\u0003\u0002", + "\u0002\u0002\u03bd\u0382\u0003\u0002\u0002\u0002\u03bd\u0389\u0003\u0002", + "\u0002\u0002\u03bd\u038f\u0003\u0002\u0002\u0002\u03bd\u0394\u0003\u0002", + "\u0002\u0002\u03bd\u03a8\u0003\u0002\u0002\u0002\u03bd\u03ac\u0003\u0002", + "\u0002\u0002\u03bd\u03b1\u0003\u0002\u0002\u0002\u03bd\u03b6\u0003\u0002", + "\u0002\u0002\u03be\u0087\u0003\u0002\u0002\u0002\u03bf\u03c0\bE\u0001", + "\u0002\u03c0\u03c4\u0005\u008aF\u0002\u03c1\u03c2\t\u000f\u0002\u0002", + "\u03c2\u03c4\u0005\u0088E\t\u03c3\u03bf\u0003\u0002\u0002\u0002\u03c3", + "\u03c1\u0003\u0002\u0002\u0002\u03c4\u03da\u0003\u0002\u0002\u0002\u03c5", + "\u03c6\f\b\u0002\u0002\u03c6\u03c7\t\u0010\u0002\u0002\u03c7\u03d9\u0005", + "\u0088E\t\u03c8\u03c9\f\u0007\u0002\u0002\u03c9\u03ca\t\u0011\u0002", + "\u0002\u03ca\u03d9\u0005\u0088E\b\u03cb\u03cc\f\u0006\u0002\u0002\u03cc", + "\u03cd\u0007\u011c\u0002\u0002\u03cd\u03d9\u0005\u0088E\u0007\u03ce", + "\u03cf\f\u0005\u0002\u0002\u03cf\u03d0\u0007\u011d\u0002\u0002\u03d0", + "\u03d9\u0005\u0088E\u0006\u03d1\u03d2\f\u0004\u0002\u0002\u03d2\u03d3", + "\u0007\u011b\u0002\u0002\u03d3\u03d9\u0005\u0088E\u0005\u03d4\u03d5", + "\f\u0003\u0002\u0002\u03d5\u03d6\u0005\u00c6d\u0002\u03d6\u03d7\u0005", + "\u0088E\u0004\u03d7\u03d9\u0003\u0002\u0002\u0002\u03d8\u03c5\u0003", + "\u0002\u0002\u0002\u03d8\u03c8\u0003\u0002\u0002\u0002\u03d8\u03cb\u0003", + "\u0002\u0002\u0002\u03d8\u03ce\u0003\u0002\u0002\u0002\u03d8\u03d1\u0003", + "\u0002\u0002\u0002\u03d8\u03d4\u0003\u0002\u0002\u0002\u03d9\u03dc\u0003", + "\u0002\u0002\u0002\u03da\u03d8\u0003\u0002\u0002\u0002\u03da\u03db\u0003", + "\u0002\u0002\u0002\u03db\u0089\u0003\u0002\u0002\u0002\u03dc\u03da\u0003", + "\u0002\u0002\u0002\u03dd\u03de\bF\u0001\u0002\u03de\u03e0\u0007)\u0002", + "\u0002\u03df\u03e1\u0005\u00b0Y\u0002\u03e0\u03df\u0003\u0002\u0002", + "\u0002\u03e1\u03e2\u0003\u0002\u0002\u0002\u03e2\u03e0\u0003\u0002\u0002", + "\u0002\u03e2\u03e3\u0003\u0002\u0002\u0002\u03e3\u03e6\u0003\u0002\u0002", + "\u0002\u03e4\u03e5\u0007,\u0002\u0002\u03e5\u03e7\u0005\u0082B\u0002", + "\u03e6\u03e4\u0003\u0002\u0002\u0002\u03e6\u03e7\u0003\u0002\u0002\u0002", + "\u03e7\u03e8\u0003\u0002\u0002\u0002\u03e8\u03e9\u0007-\u0002\u0002", + "\u03e9\u0432\u0003\u0002\u0002\u0002\u03ea\u03eb\u0007)\u0002\u0002", + "\u03eb\u03ed\u0005\u0082B\u0002\u03ec\u03ee\u0005\u00b0Y\u0002\u03ed", + "\u03ec\u0003\u0002\u0002\u0002\u03ee\u03ef\u0003\u0002\u0002\u0002\u03ef", + "\u03ed\u0003\u0002\u0002\u0002\u03ef\u03f0\u0003\u0002\u0002\u0002\u03f0", + "\u03f3\u0003\u0002\u0002\u0002\u03f1\u03f2\u0007,\u0002\u0002\u03f2", + "\u03f4\u0005\u0082B\u0002\u03f3\u03f1\u0003\u0002\u0002\u0002\u03f3", + "\u03f4\u0003\u0002\u0002\u0002\u03f4\u03f5\u0003\u0002\u0002\u0002\u03f5", + "\u03f6\u0007-\u0002\u0002\u03f6\u0432\u0003\u0002\u0002\u0002\u03f7", + "\u03f8\u0007C\u0002\u0002\u03f8\u03f9\u0007\u0121\u0002\u0002\u03f9", + "\u03fc\u0005\u0082B\u0002\u03fa\u03fb\u0007r\u0002\u0002\u03fb\u03fd", + "\u0007$\u0002\u0002\u03fc\u03fa\u0003\u0002\u0002\u0002\u03fc\u03fd", + "\u0003\u0002\u0002\u0002\u03fd\u03fe\u0003\u0002\u0002\u0002\u03fe\u03ff", + "\u0007\u0122\u0002\u0002\u03ff\u0432\u0003\u0002\u0002\u0002\u0400\u0401", + "\u0007E\u0002\u0002\u0401\u0402\u0007\u0121\u0002\u0002\u0402\u0405", + "\u0005\u0082B\u0002\u0403\u0404\u0007r\u0002\u0002\u0404\u0406\u0007", + "$\u0002\u0002\u0405\u0403\u0003\u0002\u0002\u0002\u0405\u0406\u0003", + "\u0002\u0002\u0002\u0406\u0407\u0003\u0002\u0002\u0002\u0407\u0408\u0007", + "\u0122\u0002\u0002\u0408\u0432\u0003\u0002\u0002\u0002\u0409\u040a\u0007", + "w\u0002\u0002\u040a\u040b\u0007\u0121\u0002\u0002\u040b\u040c\u0005", + "\u0088E\u0002\u040c\u040d\u0007\u001a\u0002\u0002\u040d\u040e\u0005", + "\u0088E\u0002\u040e\u040f\u0007\u0122\u0002\u0002\u040f\u0432\u0003", + "\u0002\u0002\u0002\u0410\u0432\u0005\u00d0i\u0002\u0411\u0432\u0007", + "\u012a\u0002\u0002\u0412\u0413\u0005\u00b4[\u0002\u0413\u0414\u0007", + "\u011e\u0002\u0002\u0414\u0415\u0007\u012a\u0002\u0002\u0415\u0432\u0003", + "\u0002\u0002\u0002\u0416\u0417\u0007\u0121\u0002\u0002\u0417\u0418\u0005", + "T+\u0002\u0418\u0419\u0007\u0122\u0002\u0002\u0419\u0432\u0003\u0002", + "\u0002\u0002\u041a\u041b\u0005\u008cG\u0002\u041b\u0427\u0007\u0121", + "\u0002\u0002\u041c\u041e\u0005\u00d8m\u0002\u041d\u041c\u0003\u0002", + "\u0002\u0002\u041d\u041e\u0003\u0002\u0002\u0002\u041e\u041f\u0003\u0002", + "\u0002\u0002\u041f\u0424\u0005\u0082B\u0002\u0420\u0421\u0007\u0123", + "\u0002\u0002\u0421\u0423\u0005\u0082B\u0002\u0422\u0420\u0003\u0002", + "\u0002\u0002\u0423\u0426\u0003\u0002\u0002\u0002\u0424\u0422\u0003\u0002", + "\u0002\u0002\u0424\u0425\u0003\u0002\u0002\u0002\u0425\u0428\u0003\u0002", + "\u0002\u0002\u0426\u0424\u0003\u0002\u0002\u0002\u0427\u041d\u0003\u0002", + "\u0002\u0002\u0427\u0428\u0003\u0002\u0002\u0002\u0428\u0429\u0003\u0002", + "\u0002\u0002\u0429\u042a\u0007\u0122\u0002\u0002\u042a\u0432\u0003\u0002", + "\u0002\u0002\u042b\u0432\u0005\u00a8U\u0002\u042c\u0432\u0005\u008e", + "H\u0002\u042d\u042e\u0007\u0121\u0002\u0002\u042e\u042f\u0005\u0082", + "B\u0002\u042f\u0430\u0007\u0122\u0002\u0002\u0430\u0432\u0003\u0002", + "\u0002\u0002\u0431\u03dd\u0003\u0002\u0002\u0002\u0431\u03ea\u0003\u0002", + "\u0002\u0002\u0431\u03f7\u0003\u0002\u0002\u0002\u0431\u0400\u0003\u0002", + "\u0002\u0002\u0431\u0409\u0003\u0002\u0002\u0002\u0431\u0410\u0003\u0002", + "\u0002\u0002\u0431\u0411\u0003\u0002\u0002\u0002\u0431\u0412\u0003\u0002", + "\u0002\u0002\u0431\u0416\u0003\u0002\u0002\u0002\u0431\u041a\u0003\u0002", + "\u0002\u0002\u0431\u042b\u0003\u0002\u0002\u0002\u0431\u042c\u0003\u0002", + "\u0002\u0002\u0431\u042d\u0003\u0002\u0002\u0002\u0432\u043a\u0003\u0002", + "\u0002\u0002\u0433\u0434\f\u0006\u0002\u0002\u0434\u0435\u0007\u011f", + "\u0002\u0002\u0435\u0436\u0005\u0088E\u0002\u0436\u0437\u0007\u0120", + "\u0002\u0002\u0437\u0439\u0003\u0002\u0002\u0002\u0438\u0433\u0003\u0002", + "\u0002\u0002\u0439\u043c\u0003\u0002\u0002\u0002\u043a\u0438\u0003\u0002", + "\u0002\u0002\u043a\u043b\u0003\u0002\u0002\u0002\u043b\u008b\u0003\u0002", + "\u0002\u0002\u043c\u043a\u0003\u0002\u0002\u0002\u043d\u043e\u0005\u00b4", + "[\u0002\u043e\u008d\u0003\u0002\u0002\u0002\u043f\u0440\u0005\u00b4", + "[\u0002\u0440\u008f\u0003\u0002\u0002\u0002\u0441\u0446\u0005\u00a8", + "U\u0002\u0442\u0443\u0007\u011e\u0002\u0002\u0443\u0445\u0005\u00a8", + "U\u0002\u0444\u0442\u0003\u0002\u0002\u0002\u0445\u0448\u0003\u0002", + "\u0002\u0002\u0446\u0444\u0003\u0002\u0002\u0002\u0446\u0447\u0003\u0002", + "\u0002\u0002\u0447\u0091\u0003\u0002\u0002\u0002\u0448\u0446\u0003\u0002", + "\u0002\u0002\u0449\u044c\u0007(\u0002\u0002\u044a\u044d\u0005\u0094", + "K\u0002\u044b\u044d\u0005\u0098M\u0002\u044c\u044a\u0003\u0002\u0002", + "\u0002\u044c\u044b\u0003\u0002\u0002\u0002\u044c\u044d\u0003\u0002\u0002", + "\u0002\u044d\u0093\u0003\u0002\u0002\u0002\u044e\u0450\u0005\u0096L", + "\u0002\u044f\u0451\u0005\u009aN\u0002\u0450\u044f\u0003\u0002\u0002", + "\u0002\u0450\u0451\u0003\u0002\u0002\u0002\u0451\u0095\u0003\u0002\u0002", + "\u0002\u0452\u0453\u0005\u009cO\u0002\u0453\u0454\u0005\u00a8U\u0002", + "\u0454\u0456\u0003\u0002\u0002\u0002\u0455\u0452\u0003\u0002\u0002\u0002", + "\u0456\u0457\u0003\u0002\u0002\u0002\u0457\u0455\u0003\u0002\u0002\u0002", + "\u0457\u0458\u0003\u0002\u0002\u0002\u0458\u0097\u0003\u0002\u0002\u0002", + "\u0459\u045c\u0005\u009aN\u0002\u045a\u045d\u0005\u0096L\u0002\u045b", + "\u045d\u0005\u009aN\u0002\u045c\u045a\u0003\u0002\u0002\u0002\u045c", + "\u045b\u0003\u0002\u0002\u0002\u045c\u045d\u0003\u0002\u0002\u0002\u045d", + "\u0099\u0003\u0002\u0002\u0002\u045e\u045f\u0005\u009cO\u0002\u045f", + "\u0460\u0005\u00a8U\u0002\u0460\u0461\u0007c\u0002\u0002\u0461\u0462", + "\u0005\u00a8U\u0002\u0462\u009b\u0003\u0002\u0002\u0002\u0463\u0465", + "\t\u0012\u0002\u0002\u0464\u0463\u0003\u0002\u0002\u0002\u0464\u0465", + "\u0003\u0002\u0002\u0002\u0465\u0466\u0003\u0002\u0002\u0002\u0466\u0469", + "\t\u0013\u0002\u0002\u0467\u0469\u0007\u0133\u0002\u0002\u0468\u0464", + "\u0003\u0002\u0002\u0002\u0468\u0467\u0003\u0002\u0002\u0002\u0469\u009d", + "\u0003\u0002\u0002\u0002\u046a\u046c\u0007\t\u0002\u0002\u046b\u046a", + "\u0003\u0002\u0002\u0002\u046b\u046c\u0003\u0002\u0002\u0002\u046c\u046d", + "\u0003\u0002\u0002\u0002\u046d\u046f\u0005\u00aaV\u0002\u046e\u0470", + "\u0005\u00a4S\u0002\u046f\u046e\u0003\u0002\u0002\u0002\u046f\u0470", + "\u0003\u0002\u0002\u0002\u0470\u009f\u0003\u0002\u0002\u0002\u0471\u0472", + "\u0005\u00a8U\u0002\u0472\u0473\u0005\u00a2R\u0002\u0473\u00a1\u0003", + "\u0002\u0002\u0002\u0474\u0475\u0007\u0082\u0002\u0002\u0475\u0477\u0005", + "\u00a8U\u0002\u0476\u0474\u0003\u0002\u0002\u0002\u0477\u0478\u0003", + "\u0002\u0002\u0002\u0478\u0476\u0003\u0002\u0002\u0002\u0478\u0479\u0003", + "\u0002\u0002\u0002\u0479\u047c\u0003\u0002\u0002\u0002\u047a\u047c\u0003", + "\u0002\u0002\u0002\u047b\u0476\u0003\u0002\u0002\u0002\u047b\u047a\u0003", + "\u0002\u0002\u0002\u047c\u00a3\u0003\u0002\u0002\u0002\u047d\u047e\u0007", + "\u0121\u0002\u0002\u047e\u047f\u0005\u00a6T\u0002\u047f\u0480\u0007", + "\u0122\u0002\u0002\u0480\u00a5\u0003\u0002\u0002\u0002\u0481\u0486\u0005", + "\u00a8U\u0002\u0482\u0483\u0007\u0123\u0002\u0002\u0483\u0485\u0005", + "\u00a8U\u0002\u0484\u0482\u0003\u0002\u0002\u0002\u0485\u0488\u0003", + "\u0002\u0002\u0002\u0486\u0484\u0003\u0002\u0002\u0002\u0486\u0487\u0003", + "\u0002\u0002\u0002\u0487\u00a7\u0003\u0002\u0002\u0002\u0488\u0486\u0003", + "\u0002\u0002\u0002\u0489\u048a\u0005\u00aaV\u0002\u048a\u00a9\u0003", + "\u0002\u0002\u0002\u048b\u048e\u0005\u00acW\u0002\u048c\u048e\u0005", + "\u00aeX\u0002\u048d\u048b\u0003\u0002\u0002\u0002\u048d\u048c\u0003", + "\u0002\u0002\u0002\u048e\u00ab\u0003\u0002\u0002\u0002\u048f\u0490\t", + "\u0014\u0002\u0002\u0490\u00ad\u0003\u0002\u0002\u0002\u0491\u0492\u0007", + "\u0133\u0002\u0002\u0492\u00af\u0003\u0002\u0002\u0002\u0493\u0494\u0007", + "*\u0002\u0002\u0494\u0495\u0005\u0082B\u0002\u0495\u0496\u0007+\u0002", + "\u0002\u0496\u0497\u0005\u0082B\u0002\u0497\u00b1\u0003\u0002\u0002", + "\u0002\u0498\u049d\u0005\u00b4[\u0002\u0499\u049a\u0007\u0123\u0002", + "\u0002\u049a\u049c\u0005\u00b4[\u0002\u049b\u0499\u0003\u0002\u0002", + "\u0002\u049c\u049f\u0003\u0002\u0002\u0002\u049d\u049b\u0003\u0002\u0002", + "\u0002\u049d\u049e\u0003\u0002\u0002\u0002\u049e\u00b3\u0003\u0002\u0002", + "\u0002\u049f\u049d\u0003\u0002\u0002\u0002\u04a0\u04a4\u0007\u0137\u0002", + "\u0002\u04a1\u04a3\u0007\u0132\u0002\u0002\u04a2\u04a1\u0003\u0002\u0002", + "\u0002\u04a3\u04a6\u0003\u0002\u0002\u0002\u04a4\u04a5\u0003\u0002\u0002", + "\u0002\u04a4\u04a2\u0003\u0002\u0002\u0002\u04a5\u00b5\u0003\u0002\u0002", + "\u0002\u04a6\u04a4\u0003\u0002\u0002\u0002\u04a7\u04a8\u0007F\u0002", + "\u0002\u04a8\u04a9\u0005\u00bc_\u0002\u04a9\u00b7\u0003\u0002\u0002", + "\u0002\u04aa\u04ab\u0007v\u0002\u0002\u04ab\u04ac\u0007\u001b\u0002", + "\u0002\u04ac\u04ad\u0007\u001d\u0002\u0002\u04ad\u00b9\u0003\u0002\u0002", + "\u0002\u04ae\u04af\u0007v\u0002\u0002\u04af\u04b0\u0007\u001d\u0002", + "\u0002\u04b0\u00bb\u0003\u0002\u0002\u0002\u04b1\u04b2\u0007\u0121\u0002", + "\u0002\u04b2\u04b7\u0005\u00be`\u0002\u04b3\u04b4\u0007\u0123\u0002", + "\u0002\u04b4\u04b6\u0005\u00be`\u0002\u04b5\u04b3\u0003\u0002\u0002", + "\u0002\u04b6\u04b9\u0003\u0002\u0002\u0002\u04b7\u04b5\u0003\u0002\u0002", + "\u0002\u04b7\u04b8\u0003\u0002\u0002\u0002\u04b8\u04ba\u0003\u0002\u0002", + "\u0002\u04b9\u04b7\u0003\u0002\u0002\u0002\u04ba\u04bb\u0007\u0122\u0002", + "\u0002\u04bb\u00bd\u0003\u0002\u0002\u0002\u04bc\u04c1\u0005\u00c0a", + "\u0002\u04bd\u04bf\u0007\u0116\u0002\u0002\u04be\u04bd\u0003\u0002\u0002", + "\u0002\u04be\u04bf\u0003\u0002\u0002\u0002\u04bf\u04c0\u0003\u0002\u0002", + "\u0002\u04c0\u04c2\u0005\u00c2b\u0002\u04c1\u04be\u0003\u0002\u0002", + "\u0002\u04c1\u04c2\u0003\u0002\u0002\u0002\u04c2\u00bf\u0003\u0002\u0002", + "\u0002\u04c3\u04c8\u0005\u00a8U\u0002\u04c4\u04c5\u0007\u011e\u0002", + "\u0002\u04c5\u04c7\u0005\u00a8U\u0002\u04c6\u04c4\u0003\u0002\u0002", + "\u0002\u04c7\u04ca\u0003\u0002\u0002\u0002\u04c8\u04c6\u0003\u0002\u0002", + "\u0002\u04c8\u04c9\u0003\u0002\u0002\u0002\u04c9\u04cd\u0003\u0002\u0002", + "\u0002\u04ca\u04c8\u0003\u0002\u0002\u0002\u04cb\u04cd\u0007\u0133\u0002", + "\u0002\u04cc\u04c3\u0003\u0002\u0002\u0002\u04cc\u04cb\u0003\u0002\u0002", + "\u0002\u04cd\u00c1\u0003\u0002\u0002\u0002\u04ce\u04d3\u0007\u0134\u0002", + "\u0002\u04cf\u04d3\u0007\u0135\u0002\u0002\u04d0\u04d3\u0005\u00d6l", + "\u0002\u04d1\u04d3\u0007\u0133\u0002\u0002\u04d2\u04ce\u0003\u0002\u0002", + "\u0002\u04d2\u04cf\u0003\u0002\u0002\u0002\u04d2\u04d0\u0003\u0002\u0002", + "\u0002\u04d2\u04d1\u0003\u0002\u0002\u0002\u04d3\u00c3\u0003\u0002\u0002", + "\u0002\u04d4\u04db\u0007\u0019\u0002\u0002\u04d5\u04d6\u0007\u011c\u0002", + "\u0002\u04d6\u04db\u0007\u011c\u0002\u0002\u04d7\u04db\u0007\u0018\u0002", + "\u0002\u04d8\u04d9\u0007\u011b\u0002\u0002\u04d9\u04db\u0007\u011b\u0002", + "\u0002\u04da\u04d4\u0003\u0002\u0002\u0002\u04da\u04d5\u0003\u0002\u0002", + "\u0002\u04da\u04d7\u0003\u0002\u0002\u0002\u04da\u04d8\u0003\u0002\u0002", + "\u0002\u04db\u00c5\u0003\u0002\u0002\u0002\u04dc\u04eb\u0007\u0116\u0002", + "\u0002\u04dd\u04eb\u0007\u0117\u0002\u0002\u04de\u04eb\u0007\u0118\u0002", + "\u0002\u04df\u04e0\u0007\u0118\u0002\u0002\u04e0\u04eb\u0007\u0116\u0002", + "\u0002\u04e1\u04e2\u0007\u0117\u0002\u0002\u04e2\u04eb\u0007\u0116\u0002", + "\u0002\u04e3\u04e4\u0007\u0118\u0002\u0002\u04e4\u04eb\u0007\u0117\u0002", + "\u0002\u04e5\u04e6\u0007\u0119\u0002\u0002\u04e6\u04eb\u0007\u0116\u0002", + "\u0002\u04e7\u04e8\u0007\u0118\u0002\u0002\u04e8\u04e9\u0007\u0116\u0002", + "\u0002\u04e9\u04eb\u0007\u0117\u0002\u0002\u04ea\u04dc\u0003\u0002\u0002", + "\u0002\u04ea\u04dd\u0003\u0002\u0002\u0002\u04ea\u04de\u0003\u0002\u0002", + "\u0002\u04ea\u04df\u0003\u0002\u0002\u0002\u04ea\u04e1\u0003\u0002\u0002", + "\u0002\u04ea\u04e3\u0003\u0002\u0002\u0002\u04ea\u04e5\u0003\u0002\u0002", + "\u0002\u04ea\u04e7\u0003\u0002\u0002\u0002\u04eb\u00c7\u0003\u0002\u0002", + "\u0002\u04ec\u04ed\u0007\u0118\u0002\u0002\u04ed\u04f4\u0007\u0118\u0002", + "\u0002\u04ee\u04ef\u0007\u0117\u0002\u0002\u04ef\u04f4\u0007\u0117\u0002", + "\u0002\u04f0\u04f4\u0007\u011c\u0002\u0002\u04f1\u04f4\u0007\u011d\u0002", + "\u0002\u04f2\u04f4\u0007\u011b\u0002\u0002\u04f3\u04ec\u0003\u0002\u0002", + "\u0002\u04f3\u04ee\u0003\u0002\u0002\u0002\u04f3\u04f0\u0003\u0002\u0002", + "\u0002\u04f3\u04f1\u0003\u0002\u0002\u0002\u04f3\u04f2\u0003\u0002\u0002", + "\u0002\u04f4\u00c9\u0003\u0002\u0002\u0002\u04f5\u04f6\t\u0015\u0002", + "\u0002\u04f6\u00cb\u0003\u0002\u0002\u0002\u04f7\u04f8\t\u0016\u0002", + "\u0002\u04f8\u00cd\u0003\u0002\u0002\u0002\u04f9\u04fa\u0005\u00b4[", + "\u0002\u04fa\u00cf\u0003\u0002\u0002\u0002\u04fb\u0508\u0005\u00d2j", + "\u0002\u04fc\u0508\u0005\u00d4k\u0002\u04fd\u0508\u0005\u0092J\u0002", + "\u04fe\u04ff\u0007\u012c\u0002\u0002\u04ff\u0508\u0005\u00d4k\u0002", + "\u0500\u0508\u0005\u00d6l\u0002\u0501\u0508\u0007\u0135\u0002\u0002", + "\u0502\u0508\u0007\u0136\u0002\u0002\u0503\u0505\u0007\u001b\u0002\u0002", + "\u0504\u0503\u0003\u0002\u0002\u0002\u0504\u0505\u0003\u0002\u0002\u0002", + "\u0505\u0506\u0003\u0002\u0002\u0002\u0506\u0508\u0007\u0115\u0002\u0002", + "\u0507\u04fb\u0003\u0002\u0002\u0002\u0507\u04fc\u0003\u0002\u0002\u0002", + "\u0507\u04fd\u0003\u0002\u0002\u0002\u0507\u04fe\u0003\u0002\u0002\u0002", + "\u0507\u0500\u0003\u0002\u0002\u0002\u0507\u0501\u0003\u0002\u0002\u0002", + "\u0507\u0502\u0003\u0002\u0002\u0002\u0507\u0504\u0003\u0002\u0002\u0002", + "\u0508\u00d1\u0003\u0002\u0002\u0002\u0509\u050a\u0007\u0133\u0002\u0002", + "\u050a\u00d3\u0003\u0002\u0002\u0002\u050b\u050c\u0007\u0134\u0002\u0002", + "\u050c\u00d5\u0003\u0002\u0002\u0002\u050d\u050e\t\u000e\u0002\u0002", + "\u050e\u00d7\u0003\u0002\u0002\u0002\u050f\u0510\t\u0017\u0002\u0002", + "\u0510\u00d9\u0003\u0002\u0002\u0002\u0097\u00e2\u00e5\u00e7\u00f0\u0100", + "\u0104\u0110\u0120\u0124\u0128\u012b\u012f\u0134\u0151\u015e\u0163\u0167", + "\u0171\u017b\u017f\u0185\u0189\u0191\u0194\u0197\u01a0\u01a4\u01ab\u01b2", + "\u01c4\u01c8\u01cf\u01d4\u01db\u01df\u01e3\u01e7\u01ef\u01f3\u01fb\u01ff", + "\u020a\u0213\u0220\u0223\u0227\u022a\u022c\u0231\u0235\u0238\u023c\u0245", + "\u024b\u024e\u0251\u0254\u0258\u0260\u0263\u0267\u026a\u0275\u027a\u027d", + "\u0282\u0286\u028b\u028e\u029b\u02a6\u02b1\u02b6\u02c2\u02ce\u02da\u02e6", + "\u02f3\u02f8\u0304\u0309\u030e\u0316\u031e\u0328\u032b\u0334\u0337\u033a", + "\u0340\u0344\u034a\u035b\u035d\u0365\u0367\u036b\u0373\u037c\u0382\u038f", + "\u0394\u03a0\u03a5\u03a8\u03ae\u03b3\u03b8\u03bd\u03c3\u03d8\u03da\u03e2", + "\u03e6\u03ef\u03f3\u03fc\u0405\u041d\u0424\u0427\u0431\u043a\u0446\u044c", + "\u0450\u0457\u045c\u0464\u0468\u046b\u046f\u0478\u047b\u0486\u048d\u049d", + "\u04a4\u04b7\u04be\u04c1\u04c8\u04cc\u04d2\u04da\u04ea\u04f3\u0504\u0507"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -490,8 +878,8 @@ var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new a var sharedContextCache = new antlr4.PredictionContextCache(); -var literalNames = [ null, null, null, null, null, "'SELECT'", "'FROM'", - "'ADD'", "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", +var literalNames = [ null, null, null, null, "'SELECT'", "'FROM'", "'ADD'", + "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", "'GROUP'", "'BY'", "'GROUPING'", "'SETS'", "'CUBE'", "'ROLLUP'", "'ORDER'", "'HAVING'", "'LIMIT'", "'AT'", "'OR'", "'AND'", "'IN'", "'NOT'", "'NO'", "'EXISTS'", @@ -541,53 +929,49 @@ var literalNames = [ null, null, null, null, null, "'SELECT'", "'FROM'", "'LOCAL'", "'INPATH'", "'WATERMARK'", "'UNNEST'", "'MATCH_RECOGNIZE'", "'MEASURES'", "'ONE'", "'PER'", "'MATCH'", "'SKIP1'", "'NEXT'", "'PAST'", "'PATTERN'", "'WITHIN'", "'DEFINE'", - "'BIGINT_LITERAL'", "'SMALLINT_LITERAL'", "'TINYINT_LITERAL'", - "'INTEGER_VALUE'", "'DECIMAL_VALUE'", "'DOUBLE_LITERAL'", - "'BIGDECIMAL_LITERAL'", "'IDENTIFIER'", "'BACKQUOTED_IDENTIFIER'", - "'SIMPLE_COMMENT'", "'BRACKETED_EMPTY_COMMENT'", "'BRACKETED_COMMENT'", - "'WS'", "'UNRECOGNIZED'", null, null, null, null, "'SYSTEM'", - "'STRING'", "'ARRAY'", "'MAP'", "'CHAR'", "'VARCHAR'", - "'BINARY'", "'VARBINARY'", "'BYTES'", "'DECIMAL'", - "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", - "'DOUBLE'", "'DATE'", "'TIME'", "'TIMESTAMP'", "'MULTISET'", - "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", "'='", "'>'", - "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'['", - "']'", "'('", "')'", "','", "';'", "'@'", "'0'", "'1'", - "'2'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", - "'+'", "'%'", "'--'", "'/'" ]; + "'WS'", "'SYSTEM'", "'INCLUDING'", "'EXCLUDING'", "'CONSTRAINTS'", + "'OVERWRITING'", "'GENERATED'", "'CATALOG'", "'LANGUAGE'", + "'CATALOGS'", "'VIEWS'", "'STRING'", "'ARRAY'", "'MAP'", + "'CHAR'", "'VARCHAR'", "'BINARY'", "'VARBINARY'", "'BYTES'", + "'DECIMAL'", "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", + "'FLOAT'", "'DOUBLE'", "'DATE'", "'TIME'", "'TIMESTAMP'", + "'MULTISET'", "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", + "'='", "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", + "'.'", "'['", "']'", "'('", "')'", "','", "';'", "'@'", + "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", + "'%'", "'||'", "'--'", "'/'" ]; -var symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", - "LINE_COMMENT", "SELECT", "FROM", "ADD", "AS", "ALL", - "ANY", "DISTINCT", "WHERE", "GROUP", "BY", "GROUPING", - "SETS", "CUBE", "ROLLUP", "ORDER", "HAVING", "LIMIT", - "AT", "OR", "AND", "IN", "NOT", "NO", "EXISTS", "BETWEEN", - "LIKE", "RLIKE", "IS", "TRUE", "FALSE", "NULLS", "ASC", - "DESC", "FOR", "INTERVAL", "CASE", "WHEN", "THEN", - "ELSE", "END", "JOIN", "CROSS", "OUTER", "INNER", - "LEFT", "SEMI", "RIGHT", "FULL", "NATURAL", "ON", - "PIVOT", "LATERAL", "WINDOW", "OVER", "PARTITION", - "RANGE", "ROWS", "UNBOUNDED", "PRECEDING", "FOLLOWING", - "CURRENT", "FIRST", "AFTER", "LAST", "WITH", "VALUES", - "CREATE", "TABLE", "DIRECTORY", "VIEW", "REPLACE", - "INSERT", "DELETE", "INTO", "DESCRIBE", "EXPLAIN", - "FORMAT", "LOGICAL", "CODEGEN", "COST", "CAST", "SHOW", - "TABLES", "COLUMNS", "COLUMN", "USE", "PARTITIONS", - "FUNCTIONS", "DROP", "UNION", "EXCEPT", "SETMINUS", - "INTERSECT", "TO", "TABLESAMPLE", "STRATIFY", "ALTER", - "RENAME", "STRUCT", "COMMENT", "SET", "RESET", "DATA", - "START", "TRANSACTION", "COMMIT", "ROLLBACK", "MACRO", - "IGNORE", "BOTH", "LEADING", "TRAILING", "IF", "POSITION", - "EXTRACT", "EQ", "NSEQ", "NEQ", "NEQJ", "LT", "LTE", - "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", - "PERCENT", "DIV", "TILDE", "AMPERSAND", "PIPE", "CONCAT_PIPE", - "HAT", "PERCENTLIT", "BUCKET", "OUT", "OF", "SORT", - "CLUSTER", "DISTRIBUTE", "OVERWRITE", "TRANSFORM", - "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", "RECORDREADER", - "RECORDWRITER", "DELIMITED", "FIELDS", "TERMINATED", - "COLLECTION", "ITEMS", "KEYS", "ESCAPED", "LINES", - "SEPARATED", "FUNCTION", "EXTENDED", "REFRESH", "CLEAR", - "CACHE", "UNCACHE", "LAZY", "FORMATTED", "GLOBAL", - "TEMPORARY", "OPTIONS", "UNSET", "TBLPROPERTIES", +var symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", + "FROM", "ADD", "AS", "ALL", "ANY", "DISTINCT", "WHERE", + "GROUP", "BY", "GROUPING", "SETS", "CUBE", "ROLLUP", + "ORDER", "HAVING", "LIMIT", "AT", "OR", "AND", "IN", + "NOT", "NO", "EXISTS", "BETWEEN", "LIKE", "RLIKE", + "IS", "TRUE", "FALSE", "NULLS", "ASC", "DESC", "FOR", + "INTERVAL", "CASE", "WHEN", "THEN", "ELSE", "END", + "JOIN", "CROSS", "OUTER", "INNER", "LEFT", "SEMI", + "RIGHT", "FULL", "NATURAL", "ON", "PIVOT", "LATERAL", + "WINDOW", "OVER", "PARTITION", "RANGE", "ROWS", "UNBOUNDED", + "PRECEDING", "FOLLOWING", "CURRENT", "FIRST", "AFTER", + "LAST", "WITH", "VALUES", "CREATE", "TABLE", "DIRECTORY", + "VIEW", "REPLACE", "INSERT", "DELETE", "INTO", "DESCRIBE", + "EXPLAIN", "FORMAT", "LOGICAL", "CODEGEN", "COST", + "CAST", "SHOW", "TABLES", "COLUMNS", "COLUMN", "USE", + "PARTITIONS", "FUNCTIONS", "DROP", "UNION", "EXCEPT", + "SETMINUS", "INTERSECT", "TO", "TABLESAMPLE", "STRATIFY", + "ALTER", "RENAME", "STRUCT", "COMMENT", "SET", "RESET", + "DATA", "START", "TRANSACTION", "COMMIT", "ROLLBACK", + "MACRO", "IGNORE", "BOTH", "LEADING", "TRAILING", + "IF", "POSITION", "EXTRACT", "EQ", "NSEQ", "NEQ", + "NEQJ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", + "ASTERISK", "SLASH", "PERCENT", "DIV", "TILDE", "AMPERSAND", + "PIPE", "CONCAT_PIPE", "HAT", "PERCENTLIT", "BUCKET", + "OUT", "OF", "SORT", "CLUSTER", "DISTRIBUTE", "OVERWRITE", + "TRANSFORM", "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", + "RECORDREADER", "RECORDWRITER", "DELIMITED", "FIELDS", + "TERMINATED", "COLLECTION", "ITEMS", "KEYS", "ESCAPED", + "LINES", "SEPARATED", "FUNCTION", "EXTENDED", "REFRESH", + "CLEAR", "CACHE", "UNCACHE", "LAZY", "FORMATTED", + "GLOBAL", "TEMPORARY", "OPTIONS", "UNSET", "TBLPROPERTIES", "DBPROPERTIES", "BUCKETS", "SKEWED", "STORED", "DIRECTORIES", "LOCATION", "EXCHANGE", "ARCHIVE", "UNARCHIVE", "FILEFORMAT", "TOUCH", "COMPACT", "CONCATENATE", "CHANGE", "CASCADE", @@ -601,46 +985,55 @@ var symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "ANTI", "LOCAL", "INPATH", "WATERMARK", "UNNEST", "MATCH_RECOGNIZE", "MEASURES", "ONE", "PER", "MATCH", "SKIP1", "NEXT", "PAST", "PATTERN", "WITHIN", "DEFINE", - "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", - "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_LITERAL", - "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", - "SIMPLE_COMMENT", "BRACKETED_EMPTY_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED", "REVERSE_QUOTE_ID", "DOUBLE_QUOTE_ID", - "DOT_ID", "ID", "SYSTEM", "STRING", "ARRAY", "MAP", - "CHAR", "VARCHAR", "BINARY", "VARBINARY", "BYTES", - "DECIMAL", "TINYINT", "SMALLINT", "INT", "BIGINT", - "FLOAT", "DOUBLE", "DATE", "TIME", "TIMESTAMP", "MULTISET", - "BOOLEAN", "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", + "WS", "SYSTEM", "INCLUDING", "EXCLUDING", "CONSTRAINTS", + "OVERWRITING", "GENERATED", "CATALOG", "LANGUAGE", + "CATALOGS", "VIEWS", "STRING", "ARRAY", "MAP", "CHAR", + "VARCHAR", "BINARY", "VARBINARY", "BYTES", "DECIMAL", + "TINYINT", "SMALLINT", "INT", "BIGINT", "FLOAT", "DOUBLE", + "DATE", "TIME", "TIMESTAMP", "MULTISET", "BOOLEAN", + "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "COMMA", - "SEMICOLON", "AT_SIGN", "ZERO_DECIMAL", "ONE_DECIMAL", - "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", + "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "STRING_LITERAL", - "DECIMAL_LITERAL", "REAL_LITERAL", "BIT_STRING", "IDENTIFIER_BASE", - "DEC_DIGIT" ]; + "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", + "DOT_ID", "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", + "BIT_STRING", "ID" ]; var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", - "emptyStatement", "ddlStatement", "dmlStatement", "createTable", - "columnOptionDefinition", "columnName", "columnType", - "partitionDefinition", "partitionColumnDefinition", "partitionColumnName", - "createDatabase", "createView", "createFunction", "alterTable", - "renameDefinition", "setKeyValueDefinition", "alterDatabase", - "alterFunction", "dropTable", "dropDatabase", "dropView", - "dropFunction", "insertStatement", "insertPartitionDefinition", - "valuesDefinition", "valuesRowDefinition", "allValueDifinition", - "queryStatement", "selectStatement", "projectItemDefinition", - "tableExpression", "tableReference", "tablePrimary", - "expression", "booleanExpression", "predicate", "valueExpression", - "primaryExpression", "tableAlias", "identifierList", - "identifierSeq", "identifier", "strictIdentifier", "quotedIdentifier", - "whenClause", "uidList", "uid", "withOption", "ifNotExists", - "ifExists", "keyValueDefinition", "logicalOperator", - "comparisonOperator", "bitOperator", "mathOperator", - "unaryOperator", "fullColumnName", "constant", "stringLiteral", - "decimalLiteral", "booleanLiteral", "setQuantifier" ]; + "emptyStatement", "ddlStatement", "dmlStatement", "describeStatement", + "explainStatement", "useStatement", "showStatememt", + "createTable", "columnOptionDefinition", "columnName", + "columnType", "lengthOneDimension", "commentSpec", "watermarkDefinition", + "partitionDefinition", "transformList", "transform", + "transformArgument", "likeDefinition", "likeOption", + "createCatalog", "createDatabase", "createView", "createFunction", + "alterTable", "renameDefinition", "setKeyValueDefinition", + "alterDatabase", "alterFunction", "dropTable", "dropDatabase", + "dropView", "dropFunction", "insertStatement", "insertPartitionDefinition", + "valuesDefinition", "valuesRowDefinition", "queryStatement", + "valuesCaluse", "selectStatement", "selectClause", "projectItemDefinition", + "fromClause", "tableExpression", "tableReference", "tablePrimary", + "joinCondition", "whereClause", "groupByClause", "groupItemDefinition", + "havingClause", "orderByCaluse", "orderItemDefition", + "limitClause", "windowClause", "namedWindow", "windowSpec", + "sortItem", "windowFrame", "frameBound", "expression", + "booleanExpression", "predicate", "valueExpression", + "primaryExpression", "functionName", "dereferenceDefinition", + "qualifiedName", "interval", "errorCapturingMultiUnitsInterval", + "multiUnitsInterval", "errorCapturingUnitToUnitInterval", + "unitToUnitInterval", "intervalValue", "tableAlias", + "errorCapturingIdentifier", "errorCapturingIdentifierExtra", + "identifierList", "identifierSeq", "identifier", "strictIdentifier", + "unquotedIdentifier", "quotedIdentifier", "whenClause", + "uidList", "uid", "withOption", "ifNotExists", "ifExists", + "tablePropertyList", "tableProperty", "tablePropertyKey", + "tablePropertyValue", "logicalOperator", "comparisonOperator", + "bitOperator", "mathOperator", "unaryOperator", "fullColumnName", + "constant", "stringLiteral", "decimalLiteral", "booleanLiteral", + "setQuantifier" ]; function FlinkSqlParser (input) { antlr4.Parser.call(this, input); @@ -662,325 +1055,314 @@ Object.defineProperty(FlinkSqlParser.prototype, "atn", { FlinkSqlParser.EOF = antlr4.Token.EOF; FlinkSqlParser.SPACE = 1; -FlinkSqlParser.SPEC_MYSQL_COMMENT = 2; -FlinkSqlParser.COMMENT_INPUT = 3; -FlinkSqlParser.LINE_COMMENT = 4; -FlinkSqlParser.SELECT = 5; -FlinkSqlParser.FROM = 6; -FlinkSqlParser.ADD = 7; -FlinkSqlParser.AS = 8; -FlinkSqlParser.ALL = 9; -FlinkSqlParser.ANY = 10; -FlinkSqlParser.DISTINCT = 11; -FlinkSqlParser.WHERE = 12; -FlinkSqlParser.GROUP = 13; -FlinkSqlParser.BY = 14; -FlinkSqlParser.GROUPING = 15; -FlinkSqlParser.SETS = 16; -FlinkSqlParser.CUBE = 17; -FlinkSqlParser.ROLLUP = 18; -FlinkSqlParser.ORDER = 19; -FlinkSqlParser.HAVING = 20; -FlinkSqlParser.LIMIT = 21; -FlinkSqlParser.AT = 22; -FlinkSqlParser.OR = 23; -FlinkSqlParser.AND = 24; -FlinkSqlParser.IN = 25; -FlinkSqlParser.NOT = 26; -FlinkSqlParser.NO = 27; -FlinkSqlParser.EXISTS = 28; -FlinkSqlParser.BETWEEN = 29; -FlinkSqlParser.LIKE = 30; -FlinkSqlParser.RLIKE = 31; -FlinkSqlParser.IS = 32; -FlinkSqlParser.TRUE = 33; -FlinkSqlParser.FALSE = 34; -FlinkSqlParser.NULLS = 35; -FlinkSqlParser.ASC = 36; -FlinkSqlParser.DESC = 37; -FlinkSqlParser.FOR = 38; -FlinkSqlParser.INTERVAL = 39; -FlinkSqlParser.CASE = 40; -FlinkSqlParser.WHEN = 41; -FlinkSqlParser.THEN = 42; -FlinkSqlParser.ELSE = 43; -FlinkSqlParser.END = 44; -FlinkSqlParser.JOIN = 45; -FlinkSqlParser.CROSS = 46; -FlinkSqlParser.OUTER = 47; -FlinkSqlParser.INNER = 48; -FlinkSqlParser.LEFT = 49; -FlinkSqlParser.SEMI = 50; -FlinkSqlParser.RIGHT = 51; -FlinkSqlParser.FULL = 52; -FlinkSqlParser.NATURAL = 53; -FlinkSqlParser.ON = 54; -FlinkSqlParser.PIVOT = 55; -FlinkSqlParser.LATERAL = 56; -FlinkSqlParser.WINDOW = 57; -FlinkSqlParser.OVER = 58; -FlinkSqlParser.PARTITION = 59; -FlinkSqlParser.RANGE = 60; -FlinkSqlParser.ROWS = 61; -FlinkSqlParser.UNBOUNDED = 62; -FlinkSqlParser.PRECEDING = 63; -FlinkSqlParser.FOLLOWING = 64; -FlinkSqlParser.CURRENT = 65; -FlinkSqlParser.FIRST = 66; -FlinkSqlParser.AFTER = 67; -FlinkSqlParser.LAST = 68; -FlinkSqlParser.WITH = 69; -FlinkSqlParser.VALUES = 70; -FlinkSqlParser.CREATE = 71; -FlinkSqlParser.TABLE = 72; -FlinkSqlParser.DIRECTORY = 73; -FlinkSqlParser.VIEW = 74; -FlinkSqlParser.REPLACE = 75; -FlinkSqlParser.INSERT = 76; -FlinkSqlParser.DELETE = 77; -FlinkSqlParser.INTO = 78; -FlinkSqlParser.DESCRIBE = 79; -FlinkSqlParser.EXPLAIN = 80; -FlinkSqlParser.FORMAT = 81; -FlinkSqlParser.LOGICAL = 82; -FlinkSqlParser.CODEGEN = 83; -FlinkSqlParser.COST = 84; -FlinkSqlParser.CAST = 85; -FlinkSqlParser.SHOW = 86; -FlinkSqlParser.TABLES = 87; -FlinkSqlParser.COLUMNS = 88; -FlinkSqlParser.COLUMN = 89; -FlinkSqlParser.USE = 90; -FlinkSqlParser.PARTITIONS = 91; -FlinkSqlParser.FUNCTIONS = 92; -FlinkSqlParser.DROP = 93; -FlinkSqlParser.UNION = 94; -FlinkSqlParser.EXCEPT = 95; -FlinkSqlParser.SETMINUS = 96; -FlinkSqlParser.INTERSECT = 97; -FlinkSqlParser.TO = 98; -FlinkSqlParser.TABLESAMPLE = 99; -FlinkSqlParser.STRATIFY = 100; -FlinkSqlParser.ALTER = 101; -FlinkSqlParser.RENAME = 102; -FlinkSqlParser.STRUCT = 103; -FlinkSqlParser.COMMENT = 104; -FlinkSqlParser.SET = 105; -FlinkSqlParser.RESET = 106; -FlinkSqlParser.DATA = 107; -FlinkSqlParser.START = 108; -FlinkSqlParser.TRANSACTION = 109; -FlinkSqlParser.COMMIT = 110; -FlinkSqlParser.ROLLBACK = 111; -FlinkSqlParser.MACRO = 112; -FlinkSqlParser.IGNORE = 113; -FlinkSqlParser.BOTH = 114; -FlinkSqlParser.LEADING = 115; -FlinkSqlParser.TRAILING = 116; -FlinkSqlParser.IF = 117; -FlinkSqlParser.POSITION = 118; -FlinkSqlParser.EXTRACT = 119; -FlinkSqlParser.EQ = 120; -FlinkSqlParser.NSEQ = 121; -FlinkSqlParser.NEQ = 122; -FlinkSqlParser.NEQJ = 123; -FlinkSqlParser.LT = 124; -FlinkSqlParser.LTE = 125; -FlinkSqlParser.GT = 126; -FlinkSqlParser.GTE = 127; -FlinkSqlParser.PLUS = 128; -FlinkSqlParser.MINUS = 129; -FlinkSqlParser.ASTERISK = 130; -FlinkSqlParser.SLASH = 131; -FlinkSqlParser.PERCENT = 132; -FlinkSqlParser.DIV = 133; -FlinkSqlParser.TILDE = 134; -FlinkSqlParser.AMPERSAND = 135; -FlinkSqlParser.PIPE = 136; -FlinkSqlParser.CONCAT_PIPE = 137; -FlinkSqlParser.HAT = 138; -FlinkSqlParser.PERCENTLIT = 139; -FlinkSqlParser.BUCKET = 140; -FlinkSqlParser.OUT = 141; -FlinkSqlParser.OF = 142; -FlinkSqlParser.SORT = 143; -FlinkSqlParser.CLUSTER = 144; -FlinkSqlParser.DISTRIBUTE = 145; -FlinkSqlParser.OVERWRITE = 146; -FlinkSqlParser.TRANSFORM = 147; -FlinkSqlParser.REDUCE = 148; -FlinkSqlParser.USING = 149; -FlinkSqlParser.SERDE = 150; -FlinkSqlParser.SERDEPROPERTIES = 151; -FlinkSqlParser.RECORDREADER = 152; -FlinkSqlParser.RECORDWRITER = 153; -FlinkSqlParser.DELIMITED = 154; -FlinkSqlParser.FIELDS = 155; -FlinkSqlParser.TERMINATED = 156; -FlinkSqlParser.COLLECTION = 157; -FlinkSqlParser.ITEMS = 158; -FlinkSqlParser.KEYS = 159; -FlinkSqlParser.ESCAPED = 160; -FlinkSqlParser.LINES = 161; -FlinkSqlParser.SEPARATED = 162; -FlinkSqlParser.FUNCTION = 163; -FlinkSqlParser.EXTENDED = 164; -FlinkSqlParser.REFRESH = 165; -FlinkSqlParser.CLEAR = 166; -FlinkSqlParser.CACHE = 167; -FlinkSqlParser.UNCACHE = 168; -FlinkSqlParser.LAZY = 169; -FlinkSqlParser.FORMATTED = 170; -FlinkSqlParser.GLOBAL = 171; -FlinkSqlParser.TEMPORARY = 172; -FlinkSqlParser.OPTIONS = 173; -FlinkSqlParser.UNSET = 174; -FlinkSqlParser.TBLPROPERTIES = 175; -FlinkSqlParser.DBPROPERTIES = 176; -FlinkSqlParser.BUCKETS = 177; -FlinkSqlParser.SKEWED = 178; -FlinkSqlParser.STORED = 179; -FlinkSqlParser.DIRECTORIES = 180; -FlinkSqlParser.LOCATION = 181; -FlinkSqlParser.EXCHANGE = 182; -FlinkSqlParser.ARCHIVE = 183; -FlinkSqlParser.UNARCHIVE = 184; -FlinkSqlParser.FILEFORMAT = 185; -FlinkSqlParser.TOUCH = 186; -FlinkSqlParser.COMPACT = 187; -FlinkSqlParser.CONCATENATE = 188; -FlinkSqlParser.CHANGE = 189; -FlinkSqlParser.CASCADE = 190; -FlinkSqlParser.RESTRICT = 191; -FlinkSqlParser.CLUSTERED = 192; -FlinkSqlParser.SORTED = 193; -FlinkSqlParser.PURGE = 194; -FlinkSqlParser.INPUTFORMAT = 195; -FlinkSqlParser.OUTPUTFORMAT = 196; -FlinkSqlParser.DATABASE = 197; -FlinkSqlParser.DATABASES = 198; -FlinkSqlParser.DFS = 199; -FlinkSqlParser.TRUNCATE = 200; -FlinkSqlParser.ANALYZE = 201; -FlinkSqlParser.COMPUTE = 202; -FlinkSqlParser.LIST = 203; -FlinkSqlParser.STATISTICS = 204; -FlinkSqlParser.PARTITIONED = 205; -FlinkSqlParser.EXTERNAL = 206; -FlinkSqlParser.DEFINED = 207; -FlinkSqlParser.REVOKE = 208; -FlinkSqlParser.GRANT = 209; -FlinkSqlParser.LOCK = 210; -FlinkSqlParser.UNLOCK = 211; -FlinkSqlParser.MSCK = 212; -FlinkSqlParser.REPAIR = 213; -FlinkSqlParser.RECOVER = 214; -FlinkSqlParser.EXPORT = 215; -FlinkSqlParser.IMPORT = 216; -FlinkSqlParser.LOAD = 217; -FlinkSqlParser.ROLE = 218; -FlinkSqlParser.ROLES = 219; -FlinkSqlParser.COMPACTIONS = 220; -FlinkSqlParser.PRINCIPALS = 221; -FlinkSqlParser.TRANSACTIONS = 222; -FlinkSqlParser.INDEX = 223; -FlinkSqlParser.INDEXES = 224; -FlinkSqlParser.LOCKS = 225; -FlinkSqlParser.OPTION = 226; -FlinkSqlParser.ANTI = 227; -FlinkSqlParser.LOCAL = 228; -FlinkSqlParser.INPATH = 229; -FlinkSqlParser.WATERMARK = 230; -FlinkSqlParser.UNNEST = 231; -FlinkSqlParser.MATCH_RECOGNIZE = 232; -FlinkSqlParser.MEASURES = 233; -FlinkSqlParser.ONE = 234; -FlinkSqlParser.PER = 235; -FlinkSqlParser.MATCH = 236; -FlinkSqlParser.SKIP1 = 237; -FlinkSqlParser.NEXT = 238; -FlinkSqlParser.PAST = 239; -FlinkSqlParser.PATTERN = 240; -FlinkSqlParser.WITHIN = 241; -FlinkSqlParser.DEFINE = 242; -FlinkSqlParser.BIGINT_LITERAL = 243; -FlinkSqlParser.SMALLINT_LITERAL = 244; -FlinkSqlParser.TINYINT_LITERAL = 245; -FlinkSqlParser.INTEGER_VALUE = 246; -FlinkSqlParser.DECIMAL_VALUE = 247; -FlinkSqlParser.DOUBLE_LITERAL = 248; -FlinkSqlParser.BIGDECIMAL_LITERAL = 249; -FlinkSqlParser.IDENTIFIER = 250; -FlinkSqlParser.BACKQUOTED_IDENTIFIER = 251; -FlinkSqlParser.SIMPLE_COMMENT = 252; -FlinkSqlParser.BRACKETED_EMPTY_COMMENT = 253; -FlinkSqlParser.BRACKETED_COMMENT = 254; -FlinkSqlParser.WS = 255; -FlinkSqlParser.UNRECOGNIZED = 256; -FlinkSqlParser.REVERSE_QUOTE_ID = 257; -FlinkSqlParser.DOUBLE_QUOTE_ID = 258; -FlinkSqlParser.DOT_ID = 259; -FlinkSqlParser.ID = 260; -FlinkSqlParser.SYSTEM = 261; -FlinkSqlParser.STRING = 262; -FlinkSqlParser.ARRAY = 263; -FlinkSqlParser.MAP = 264; -FlinkSqlParser.CHAR = 265; -FlinkSqlParser.VARCHAR = 266; -FlinkSqlParser.BINARY = 267; -FlinkSqlParser.VARBINARY = 268; -FlinkSqlParser.BYTES = 269; -FlinkSqlParser.DECIMAL = 270; -FlinkSqlParser.TINYINT = 271; -FlinkSqlParser.SMALLINT = 272; -FlinkSqlParser.INT = 273; -FlinkSqlParser.BIGINT = 274; -FlinkSqlParser.FLOAT = 275; -FlinkSqlParser.DOUBLE = 276; -FlinkSqlParser.DATE = 277; -FlinkSqlParser.TIME = 278; -FlinkSqlParser.TIMESTAMP = 279; -FlinkSqlParser.MULTISET = 280; -FlinkSqlParser.BOOLEAN = 281; -FlinkSqlParser.RAW = 282; -FlinkSqlParser.ROW = 283; -FlinkSqlParser.NULL = 284; -FlinkSqlParser.EQUAL_SYMBOL = 285; -FlinkSqlParser.GREATER_SYMBOL = 286; -FlinkSqlParser.LESS_SYMBOL = 287; -FlinkSqlParser.EXCLAMATION_SYMBOL = 288; -FlinkSqlParser.BIT_NOT_OP = 289; -FlinkSqlParser.BIT_OR_OP = 290; -FlinkSqlParser.BIT_AND_OP = 291; -FlinkSqlParser.BIT_XOR_OP = 292; -FlinkSqlParser.DOT = 293; -FlinkSqlParser.LS_BRACKET = 294; -FlinkSqlParser.RS_BRACKET = 295; -FlinkSqlParser.LR_BRACKET = 296; -FlinkSqlParser.RR_BRACKET = 297; -FlinkSqlParser.COMMA = 298; -FlinkSqlParser.SEMICOLON = 299; -FlinkSqlParser.AT_SIGN = 300; -FlinkSqlParser.ZERO_DECIMAL = 301; -FlinkSqlParser.ONE_DECIMAL = 302; -FlinkSqlParser.TWO_DECIMAL = 303; -FlinkSqlParser.SINGLE_QUOTE_SYMB = 304; -FlinkSqlParser.DOUBLE_QUOTE_SYMB = 305; -FlinkSqlParser.REVERSE_QUOTE_SYMB = 306; -FlinkSqlParser.COLON_SYMB = 307; -FlinkSqlParser.ASTERISK_SIGN = 308; -FlinkSqlParser.UNDERLINE_SIGN = 309; -FlinkSqlParser.HYPNEN_SIGN = 310; -FlinkSqlParser.ADD_SIGN = 311; -FlinkSqlParser.PENCENT_SIGN = 312; -FlinkSqlParser.DOUBLE_HYPNEN_SIGN = 313; -FlinkSqlParser.SLASH_SIGN = 314; -FlinkSqlParser.STRING_LITERAL = 315; -FlinkSqlParser.DECIMAL_LITERAL = 316; -FlinkSqlParser.REAL_LITERAL = 317; -FlinkSqlParser.BIT_STRING = 318; -FlinkSqlParser.IDENTIFIER_BASE = 319; -FlinkSqlParser.DEC_DIGIT = 320; +FlinkSqlParser.COMMENT_INPUT = 2; +FlinkSqlParser.LINE_COMMENT = 3; +FlinkSqlParser.SELECT = 4; +FlinkSqlParser.FROM = 5; +FlinkSqlParser.ADD = 6; +FlinkSqlParser.AS = 7; +FlinkSqlParser.ALL = 8; +FlinkSqlParser.ANY = 9; +FlinkSqlParser.DISTINCT = 10; +FlinkSqlParser.WHERE = 11; +FlinkSqlParser.GROUP = 12; +FlinkSqlParser.BY = 13; +FlinkSqlParser.GROUPING = 14; +FlinkSqlParser.SETS = 15; +FlinkSqlParser.CUBE = 16; +FlinkSqlParser.ROLLUP = 17; +FlinkSqlParser.ORDER = 18; +FlinkSqlParser.HAVING = 19; +FlinkSqlParser.LIMIT = 20; +FlinkSqlParser.AT = 21; +FlinkSqlParser.OR = 22; +FlinkSqlParser.AND = 23; +FlinkSqlParser.IN = 24; +FlinkSqlParser.NOT = 25; +FlinkSqlParser.NO = 26; +FlinkSqlParser.EXISTS = 27; +FlinkSqlParser.BETWEEN = 28; +FlinkSqlParser.LIKE = 29; +FlinkSqlParser.RLIKE = 30; +FlinkSqlParser.IS = 31; +FlinkSqlParser.TRUE = 32; +FlinkSqlParser.FALSE = 33; +FlinkSqlParser.NULLS = 34; +FlinkSqlParser.ASC = 35; +FlinkSqlParser.DESC = 36; +FlinkSqlParser.FOR = 37; +FlinkSqlParser.INTERVAL = 38; +FlinkSqlParser.CASE = 39; +FlinkSqlParser.WHEN = 40; +FlinkSqlParser.THEN = 41; +FlinkSqlParser.ELSE = 42; +FlinkSqlParser.END = 43; +FlinkSqlParser.JOIN = 44; +FlinkSqlParser.CROSS = 45; +FlinkSqlParser.OUTER = 46; +FlinkSqlParser.INNER = 47; +FlinkSqlParser.LEFT = 48; +FlinkSqlParser.SEMI = 49; +FlinkSqlParser.RIGHT = 50; +FlinkSqlParser.FULL = 51; +FlinkSqlParser.NATURAL = 52; +FlinkSqlParser.ON = 53; +FlinkSqlParser.PIVOT = 54; +FlinkSqlParser.LATERAL = 55; +FlinkSqlParser.WINDOW = 56; +FlinkSqlParser.OVER = 57; +FlinkSqlParser.PARTITION = 58; +FlinkSqlParser.RANGE = 59; +FlinkSqlParser.ROWS = 60; +FlinkSqlParser.UNBOUNDED = 61; +FlinkSqlParser.PRECEDING = 62; +FlinkSqlParser.FOLLOWING = 63; +FlinkSqlParser.CURRENT = 64; +FlinkSqlParser.FIRST = 65; +FlinkSqlParser.AFTER = 66; +FlinkSqlParser.LAST = 67; +FlinkSqlParser.WITH = 68; +FlinkSqlParser.VALUES = 69; +FlinkSqlParser.CREATE = 70; +FlinkSqlParser.TABLE = 71; +FlinkSqlParser.DIRECTORY = 72; +FlinkSqlParser.VIEW = 73; +FlinkSqlParser.REPLACE = 74; +FlinkSqlParser.INSERT = 75; +FlinkSqlParser.DELETE = 76; +FlinkSqlParser.INTO = 77; +FlinkSqlParser.DESCRIBE = 78; +FlinkSqlParser.EXPLAIN = 79; +FlinkSqlParser.FORMAT = 80; +FlinkSqlParser.LOGICAL = 81; +FlinkSqlParser.CODEGEN = 82; +FlinkSqlParser.COST = 83; +FlinkSqlParser.CAST = 84; +FlinkSqlParser.SHOW = 85; +FlinkSqlParser.TABLES = 86; +FlinkSqlParser.COLUMNS = 87; +FlinkSqlParser.COLUMN = 88; +FlinkSqlParser.USE = 89; +FlinkSqlParser.PARTITIONS = 90; +FlinkSqlParser.FUNCTIONS = 91; +FlinkSqlParser.DROP = 92; +FlinkSqlParser.UNION = 93; +FlinkSqlParser.EXCEPT = 94; +FlinkSqlParser.SETMINUS = 95; +FlinkSqlParser.INTERSECT = 96; +FlinkSqlParser.TO = 97; +FlinkSqlParser.TABLESAMPLE = 98; +FlinkSqlParser.STRATIFY = 99; +FlinkSqlParser.ALTER = 100; +FlinkSqlParser.RENAME = 101; +FlinkSqlParser.STRUCT = 102; +FlinkSqlParser.COMMENT = 103; +FlinkSqlParser.SET = 104; +FlinkSqlParser.RESET = 105; +FlinkSqlParser.DATA = 106; +FlinkSqlParser.START = 107; +FlinkSqlParser.TRANSACTION = 108; +FlinkSqlParser.COMMIT = 109; +FlinkSqlParser.ROLLBACK = 110; +FlinkSqlParser.MACRO = 111; +FlinkSqlParser.IGNORE = 112; +FlinkSqlParser.BOTH = 113; +FlinkSqlParser.LEADING = 114; +FlinkSqlParser.TRAILING = 115; +FlinkSqlParser.IF = 116; +FlinkSqlParser.POSITION = 117; +FlinkSqlParser.EXTRACT = 118; +FlinkSqlParser.EQ = 119; +FlinkSqlParser.NSEQ = 120; +FlinkSqlParser.NEQ = 121; +FlinkSqlParser.NEQJ = 122; +FlinkSqlParser.LT = 123; +FlinkSqlParser.LTE = 124; +FlinkSqlParser.GT = 125; +FlinkSqlParser.GTE = 126; +FlinkSqlParser.PLUS = 127; +FlinkSqlParser.MINUS = 128; +FlinkSqlParser.ASTERISK = 129; +FlinkSqlParser.SLASH = 130; +FlinkSqlParser.PERCENT = 131; +FlinkSqlParser.DIV = 132; +FlinkSqlParser.TILDE = 133; +FlinkSqlParser.AMPERSAND = 134; +FlinkSqlParser.PIPE = 135; +FlinkSqlParser.CONCAT_PIPE = 136; +FlinkSqlParser.HAT = 137; +FlinkSqlParser.PERCENTLIT = 138; +FlinkSqlParser.BUCKET = 139; +FlinkSqlParser.OUT = 140; +FlinkSqlParser.OF = 141; +FlinkSqlParser.SORT = 142; +FlinkSqlParser.CLUSTER = 143; +FlinkSqlParser.DISTRIBUTE = 144; +FlinkSqlParser.OVERWRITE = 145; +FlinkSqlParser.TRANSFORM = 146; +FlinkSqlParser.REDUCE = 147; +FlinkSqlParser.USING = 148; +FlinkSqlParser.SERDE = 149; +FlinkSqlParser.SERDEPROPERTIES = 150; +FlinkSqlParser.RECORDREADER = 151; +FlinkSqlParser.RECORDWRITER = 152; +FlinkSqlParser.DELIMITED = 153; +FlinkSqlParser.FIELDS = 154; +FlinkSqlParser.TERMINATED = 155; +FlinkSqlParser.COLLECTION = 156; +FlinkSqlParser.ITEMS = 157; +FlinkSqlParser.KEYS = 158; +FlinkSqlParser.ESCAPED = 159; +FlinkSqlParser.LINES = 160; +FlinkSqlParser.SEPARATED = 161; +FlinkSqlParser.FUNCTION = 162; +FlinkSqlParser.EXTENDED = 163; +FlinkSqlParser.REFRESH = 164; +FlinkSqlParser.CLEAR = 165; +FlinkSqlParser.CACHE = 166; +FlinkSqlParser.UNCACHE = 167; +FlinkSqlParser.LAZY = 168; +FlinkSqlParser.FORMATTED = 169; +FlinkSqlParser.GLOBAL = 170; +FlinkSqlParser.TEMPORARY = 171; +FlinkSqlParser.OPTIONS = 172; +FlinkSqlParser.UNSET = 173; +FlinkSqlParser.TBLPROPERTIES = 174; +FlinkSqlParser.DBPROPERTIES = 175; +FlinkSqlParser.BUCKETS = 176; +FlinkSqlParser.SKEWED = 177; +FlinkSqlParser.STORED = 178; +FlinkSqlParser.DIRECTORIES = 179; +FlinkSqlParser.LOCATION = 180; +FlinkSqlParser.EXCHANGE = 181; +FlinkSqlParser.ARCHIVE = 182; +FlinkSqlParser.UNARCHIVE = 183; +FlinkSqlParser.FILEFORMAT = 184; +FlinkSqlParser.TOUCH = 185; +FlinkSqlParser.COMPACT = 186; +FlinkSqlParser.CONCATENATE = 187; +FlinkSqlParser.CHANGE = 188; +FlinkSqlParser.CASCADE = 189; +FlinkSqlParser.RESTRICT = 190; +FlinkSqlParser.CLUSTERED = 191; +FlinkSqlParser.SORTED = 192; +FlinkSqlParser.PURGE = 193; +FlinkSqlParser.INPUTFORMAT = 194; +FlinkSqlParser.OUTPUTFORMAT = 195; +FlinkSqlParser.DATABASE = 196; +FlinkSqlParser.DATABASES = 197; +FlinkSqlParser.DFS = 198; +FlinkSqlParser.TRUNCATE = 199; +FlinkSqlParser.ANALYZE = 200; +FlinkSqlParser.COMPUTE = 201; +FlinkSqlParser.LIST = 202; +FlinkSqlParser.STATISTICS = 203; +FlinkSqlParser.PARTITIONED = 204; +FlinkSqlParser.EXTERNAL = 205; +FlinkSqlParser.DEFINED = 206; +FlinkSqlParser.REVOKE = 207; +FlinkSqlParser.GRANT = 208; +FlinkSqlParser.LOCK = 209; +FlinkSqlParser.UNLOCK = 210; +FlinkSqlParser.MSCK = 211; +FlinkSqlParser.REPAIR = 212; +FlinkSqlParser.RECOVER = 213; +FlinkSqlParser.EXPORT = 214; +FlinkSqlParser.IMPORT = 215; +FlinkSqlParser.LOAD = 216; +FlinkSqlParser.ROLE = 217; +FlinkSqlParser.ROLES = 218; +FlinkSqlParser.COMPACTIONS = 219; +FlinkSqlParser.PRINCIPALS = 220; +FlinkSqlParser.TRANSACTIONS = 221; +FlinkSqlParser.INDEX = 222; +FlinkSqlParser.INDEXES = 223; +FlinkSqlParser.LOCKS = 224; +FlinkSqlParser.OPTION = 225; +FlinkSqlParser.ANTI = 226; +FlinkSqlParser.LOCAL = 227; +FlinkSqlParser.INPATH = 228; +FlinkSqlParser.WATERMARK = 229; +FlinkSqlParser.UNNEST = 230; +FlinkSqlParser.MATCH_RECOGNIZE = 231; +FlinkSqlParser.MEASURES = 232; +FlinkSqlParser.ONE = 233; +FlinkSqlParser.PER = 234; +FlinkSqlParser.MATCH = 235; +FlinkSqlParser.SKIP1 = 236; +FlinkSqlParser.NEXT = 237; +FlinkSqlParser.PAST = 238; +FlinkSqlParser.PATTERN = 239; +FlinkSqlParser.WITHIN = 240; +FlinkSqlParser.DEFINE = 241; +FlinkSqlParser.WS = 242; +FlinkSqlParser.SYSTEM = 243; +FlinkSqlParser.INCLUDING = 244; +FlinkSqlParser.EXCLUDING = 245; +FlinkSqlParser.CONSTRAINTS = 246; +FlinkSqlParser.OVERWRITING = 247; +FlinkSqlParser.GENERATED = 248; +FlinkSqlParser.CATALOG = 249; +FlinkSqlParser.LANGUAGE = 250; +FlinkSqlParser.CATALOGS = 251; +FlinkSqlParser.VIEWS = 252; +FlinkSqlParser.STRING = 253; +FlinkSqlParser.ARRAY = 254; +FlinkSqlParser.MAP = 255; +FlinkSqlParser.CHAR = 256; +FlinkSqlParser.VARCHAR = 257; +FlinkSqlParser.BINARY = 258; +FlinkSqlParser.VARBINARY = 259; +FlinkSqlParser.BYTES = 260; +FlinkSqlParser.DECIMAL = 261; +FlinkSqlParser.TINYINT = 262; +FlinkSqlParser.SMALLINT = 263; +FlinkSqlParser.INT = 264; +FlinkSqlParser.BIGINT = 265; +FlinkSqlParser.FLOAT = 266; +FlinkSqlParser.DOUBLE = 267; +FlinkSqlParser.DATE = 268; +FlinkSqlParser.TIME = 269; +FlinkSqlParser.TIMESTAMP = 270; +FlinkSqlParser.MULTISET = 271; +FlinkSqlParser.BOOLEAN = 272; +FlinkSqlParser.RAW = 273; +FlinkSqlParser.ROW = 274; +FlinkSqlParser.NULL = 275; +FlinkSqlParser.EQUAL_SYMBOL = 276; +FlinkSqlParser.GREATER_SYMBOL = 277; +FlinkSqlParser.LESS_SYMBOL = 278; +FlinkSqlParser.EXCLAMATION_SYMBOL = 279; +FlinkSqlParser.BIT_NOT_OP = 280; +FlinkSqlParser.BIT_OR_OP = 281; +FlinkSqlParser.BIT_AND_OP = 282; +FlinkSqlParser.BIT_XOR_OP = 283; +FlinkSqlParser.DOT = 284; +FlinkSqlParser.LS_BRACKET = 285; +FlinkSqlParser.RS_BRACKET = 286; +FlinkSqlParser.LR_BRACKET = 287; +FlinkSqlParser.RR_BRACKET = 288; +FlinkSqlParser.COMMA = 289; +FlinkSqlParser.SEMICOLON = 290; +FlinkSqlParser.AT_SIGN = 291; +FlinkSqlParser.SINGLE_QUOTE_SYMB = 292; +FlinkSqlParser.DOUBLE_QUOTE_SYMB = 293; +FlinkSqlParser.REVERSE_QUOTE_SYMB = 294; +FlinkSqlParser.COLON_SYMB = 295; +FlinkSqlParser.ASTERISK_SIGN = 296; +FlinkSqlParser.UNDERLINE_SIGN = 297; +FlinkSqlParser.HYPNEN_SIGN = 298; +FlinkSqlParser.ADD_SIGN = 299; +FlinkSqlParser.PENCENT_SIGN = 300; +FlinkSqlParser.DOUBLE_VERTICAL_SIGN = 301; +FlinkSqlParser.DOUBLE_HYPNEN_SIGN = 302; +FlinkSqlParser.SLASH_SIGN = 303; +FlinkSqlParser.DOT_ID = 304; +FlinkSqlParser.STRING_LITERAL = 305; +FlinkSqlParser.DIG_LITERAL = 306; +FlinkSqlParser.REAL_LITERAL = 307; +FlinkSqlParser.BIT_STRING = 308; +FlinkSqlParser.ID = 309; FlinkSqlParser.RULE_program = 0; FlinkSqlParser.RULE_statement = 1; @@ -989,65 +1371,107 @@ FlinkSqlParser.RULE_sqlStatement = 3; FlinkSqlParser.RULE_emptyStatement = 4; FlinkSqlParser.RULE_ddlStatement = 5; FlinkSqlParser.RULE_dmlStatement = 6; -FlinkSqlParser.RULE_createTable = 7; -FlinkSqlParser.RULE_columnOptionDefinition = 8; -FlinkSqlParser.RULE_columnName = 9; -FlinkSqlParser.RULE_columnType = 10; -FlinkSqlParser.RULE_partitionDefinition = 11; -FlinkSqlParser.RULE_partitionColumnDefinition = 12; -FlinkSqlParser.RULE_partitionColumnName = 13; -FlinkSqlParser.RULE_createDatabase = 14; -FlinkSqlParser.RULE_createView = 15; -FlinkSqlParser.RULE_createFunction = 16; -FlinkSqlParser.RULE_alterTable = 17; -FlinkSqlParser.RULE_renameDefinition = 18; -FlinkSqlParser.RULE_setKeyValueDefinition = 19; -FlinkSqlParser.RULE_alterDatabase = 20; -FlinkSqlParser.RULE_alterFunction = 21; -FlinkSqlParser.RULE_dropTable = 22; -FlinkSqlParser.RULE_dropDatabase = 23; -FlinkSqlParser.RULE_dropView = 24; -FlinkSqlParser.RULE_dropFunction = 25; -FlinkSqlParser.RULE_insertStatement = 26; -FlinkSqlParser.RULE_insertPartitionDefinition = 27; -FlinkSqlParser.RULE_valuesDefinition = 28; -FlinkSqlParser.RULE_valuesRowDefinition = 29; -FlinkSqlParser.RULE_allValueDifinition = 30; -FlinkSqlParser.RULE_queryStatement = 31; -FlinkSqlParser.RULE_selectStatement = 32; -FlinkSqlParser.RULE_projectItemDefinition = 33; -FlinkSqlParser.RULE_tableExpression = 34; -FlinkSqlParser.RULE_tableReference = 35; -FlinkSqlParser.RULE_tablePrimary = 36; -FlinkSqlParser.RULE_expression = 37; -FlinkSqlParser.RULE_booleanExpression = 38; -FlinkSqlParser.RULE_predicate = 39; -FlinkSqlParser.RULE_valueExpression = 40; -FlinkSqlParser.RULE_primaryExpression = 41; -FlinkSqlParser.RULE_tableAlias = 42; -FlinkSqlParser.RULE_identifierList = 43; -FlinkSqlParser.RULE_identifierSeq = 44; -FlinkSqlParser.RULE_identifier = 45; -FlinkSqlParser.RULE_strictIdentifier = 46; -FlinkSqlParser.RULE_quotedIdentifier = 47; -FlinkSqlParser.RULE_whenClause = 48; -FlinkSqlParser.RULE_uidList = 49; -FlinkSqlParser.RULE_uid = 50; -FlinkSqlParser.RULE_withOption = 51; -FlinkSqlParser.RULE_ifNotExists = 52; -FlinkSqlParser.RULE_ifExists = 53; -FlinkSqlParser.RULE_keyValueDefinition = 54; -FlinkSqlParser.RULE_logicalOperator = 55; -FlinkSqlParser.RULE_comparisonOperator = 56; -FlinkSqlParser.RULE_bitOperator = 57; -FlinkSqlParser.RULE_mathOperator = 58; -FlinkSqlParser.RULE_unaryOperator = 59; -FlinkSqlParser.RULE_fullColumnName = 60; -FlinkSqlParser.RULE_constant = 61; -FlinkSqlParser.RULE_stringLiteral = 62; -FlinkSqlParser.RULE_decimalLiteral = 63; -FlinkSqlParser.RULE_booleanLiteral = 64; -FlinkSqlParser.RULE_setQuantifier = 65; +FlinkSqlParser.RULE_describeStatement = 7; +FlinkSqlParser.RULE_explainStatement = 8; +FlinkSqlParser.RULE_useStatement = 9; +FlinkSqlParser.RULE_showStatememt = 10; +FlinkSqlParser.RULE_createTable = 11; +FlinkSqlParser.RULE_columnOptionDefinition = 12; +FlinkSqlParser.RULE_columnName = 13; +FlinkSqlParser.RULE_columnType = 14; +FlinkSqlParser.RULE_lengthOneDimension = 15; +FlinkSqlParser.RULE_commentSpec = 16; +FlinkSqlParser.RULE_watermarkDefinition = 17; +FlinkSqlParser.RULE_partitionDefinition = 18; +FlinkSqlParser.RULE_transformList = 19; +FlinkSqlParser.RULE_transform = 20; +FlinkSqlParser.RULE_transformArgument = 21; +FlinkSqlParser.RULE_likeDefinition = 22; +FlinkSqlParser.RULE_likeOption = 23; +FlinkSqlParser.RULE_createCatalog = 24; +FlinkSqlParser.RULE_createDatabase = 25; +FlinkSqlParser.RULE_createView = 26; +FlinkSqlParser.RULE_createFunction = 27; +FlinkSqlParser.RULE_alterTable = 28; +FlinkSqlParser.RULE_renameDefinition = 29; +FlinkSqlParser.RULE_setKeyValueDefinition = 30; +FlinkSqlParser.RULE_alterDatabase = 31; +FlinkSqlParser.RULE_alterFunction = 32; +FlinkSqlParser.RULE_dropTable = 33; +FlinkSqlParser.RULE_dropDatabase = 34; +FlinkSqlParser.RULE_dropView = 35; +FlinkSqlParser.RULE_dropFunction = 36; +FlinkSqlParser.RULE_insertStatement = 37; +FlinkSqlParser.RULE_insertPartitionDefinition = 38; +FlinkSqlParser.RULE_valuesDefinition = 39; +FlinkSqlParser.RULE_valuesRowDefinition = 40; +FlinkSqlParser.RULE_queryStatement = 41; +FlinkSqlParser.RULE_valuesCaluse = 42; +FlinkSqlParser.RULE_selectStatement = 43; +FlinkSqlParser.RULE_selectClause = 44; +FlinkSqlParser.RULE_projectItemDefinition = 45; +FlinkSqlParser.RULE_fromClause = 46; +FlinkSqlParser.RULE_tableExpression = 47; +FlinkSqlParser.RULE_tableReference = 48; +FlinkSqlParser.RULE_tablePrimary = 49; +FlinkSqlParser.RULE_joinCondition = 50; +FlinkSqlParser.RULE_whereClause = 51; +FlinkSqlParser.RULE_groupByClause = 52; +FlinkSqlParser.RULE_groupItemDefinition = 53; +FlinkSqlParser.RULE_havingClause = 54; +FlinkSqlParser.RULE_orderByCaluse = 55; +FlinkSqlParser.RULE_orderItemDefition = 56; +FlinkSqlParser.RULE_limitClause = 57; +FlinkSqlParser.RULE_windowClause = 58; +FlinkSqlParser.RULE_namedWindow = 59; +FlinkSqlParser.RULE_windowSpec = 60; +FlinkSqlParser.RULE_sortItem = 61; +FlinkSqlParser.RULE_windowFrame = 62; +FlinkSqlParser.RULE_frameBound = 63; +FlinkSqlParser.RULE_expression = 64; +FlinkSqlParser.RULE_booleanExpression = 65; +FlinkSqlParser.RULE_predicate = 66; +FlinkSqlParser.RULE_valueExpression = 67; +FlinkSqlParser.RULE_primaryExpression = 68; +FlinkSqlParser.RULE_functionName = 69; +FlinkSqlParser.RULE_dereferenceDefinition = 70; +FlinkSqlParser.RULE_qualifiedName = 71; +FlinkSqlParser.RULE_interval = 72; +FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval = 73; +FlinkSqlParser.RULE_multiUnitsInterval = 74; +FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval = 75; +FlinkSqlParser.RULE_unitToUnitInterval = 76; +FlinkSqlParser.RULE_intervalValue = 77; +FlinkSqlParser.RULE_tableAlias = 78; +FlinkSqlParser.RULE_errorCapturingIdentifier = 79; +FlinkSqlParser.RULE_errorCapturingIdentifierExtra = 80; +FlinkSqlParser.RULE_identifierList = 81; +FlinkSqlParser.RULE_identifierSeq = 82; +FlinkSqlParser.RULE_identifier = 83; +FlinkSqlParser.RULE_strictIdentifier = 84; +FlinkSqlParser.RULE_unquotedIdentifier = 85; +FlinkSqlParser.RULE_quotedIdentifier = 86; +FlinkSqlParser.RULE_whenClause = 87; +FlinkSqlParser.RULE_uidList = 88; +FlinkSqlParser.RULE_uid = 89; +FlinkSqlParser.RULE_withOption = 90; +FlinkSqlParser.RULE_ifNotExists = 91; +FlinkSqlParser.RULE_ifExists = 92; +FlinkSqlParser.RULE_tablePropertyList = 93; +FlinkSqlParser.RULE_tableProperty = 94; +FlinkSqlParser.RULE_tablePropertyKey = 95; +FlinkSqlParser.RULE_tablePropertyValue = 96; +FlinkSqlParser.RULE_logicalOperator = 97; +FlinkSqlParser.RULE_comparisonOperator = 98; +FlinkSqlParser.RULE_bitOperator = 99; +FlinkSqlParser.RULE_mathOperator = 100; +FlinkSqlParser.RULE_unaryOperator = 101; +FlinkSqlParser.RULE_fullColumnName = 102; +FlinkSqlParser.RULE_constant = 103; +FlinkSqlParser.RULE_stringLiteral = 104; +FlinkSqlParser.RULE_decimalLiteral = 105; +FlinkSqlParser.RULE_booleanLiteral = 106; +FlinkSqlParser.RULE_setQuantifier = 107; function ProgramContext(parser, parent, invokingState) { @@ -1105,9 +1529,9 @@ FlinkSqlParser.prototype.program = function() { this.enterRule(localctx, 0, FlinkSqlParser.RULE_program); try { this.enterOuterAlt(localctx, 1); - this.state = 132; + this.state = 216; this.statement(); - this.state = 133; + this.state = 217; this.match(FlinkSqlParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1179,9 +1603,9 @@ FlinkSqlParser.prototype.statement = function() { this.enterRule(localctx, 2, FlinkSqlParser.RULE_statement); try { this.enterOuterAlt(localctx, 1); - this.state = 135; + this.state = 219; this.sqlStatements(); - this.state = 136; + this.state = 220; this.match(FlinkSqlParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1225,6 +1649,17 @@ SqlStatementsContext.prototype.sqlStatement = function(i) { } }; +SqlStatementsContext.prototype.emptyStatement = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(EmptyStatementContext); + } else { + return this.getTypedRuleContext(EmptyStatementContext,i); + } +}; + SqlStatementsContext.prototype.SEMICOLON = function(i) { if(i===undefined) { i = null; @@ -1237,17 +1672,6 @@ SqlStatementsContext.prototype.SEMICOLON = function(i) { }; -SqlStatementsContext.prototype.emptyStatement = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(EmptyStatementContext); - } else { - return this.getTypedRuleContext(EmptyStatementContext,i); - } -}; - SqlStatementsContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterSqlStatements(this); @@ -1280,28 +1704,43 @@ FlinkSqlParser.prototype.sqlStatements = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 144; + this.state = 229; this._errHandler.sync(this); _la = this._input.LA(1); - while(((((_la - 71)) & ~0x1f) == 0 && ((1 << (_la - 71)) & ((1 << (FlinkSqlParser.CREATE - 71)) | (1 << (FlinkSqlParser.INSERT - 71)) | (1 << (FlinkSqlParser.DROP - 71)) | (1 << (FlinkSqlParser.ALTER - 71)))) !== 0) || _la===FlinkSqlParser.SEMICOLON) { - this.state = 142; + while(_la===FlinkSqlParser.SELECT || ((((_la - 69)) & ~0x1f) == 0 && ((1 << (_la - 69)) & ((1 << (FlinkSqlParser.VALUES - 69)) | (1 << (FlinkSqlParser.CREATE - 69)) | (1 << (FlinkSqlParser.INSERT - 69)) | (1 << (FlinkSqlParser.DESCRIBE - 69)) | (1 << (FlinkSqlParser.EXPLAIN - 69)) | (1 << (FlinkSqlParser.SHOW - 69)) | (1 << (FlinkSqlParser.USE - 69)) | (1 << (FlinkSqlParser.DROP - 69)) | (1 << (FlinkSqlParser.ALTER - 69)))) !== 0) || _la===FlinkSqlParser.LR_BRACKET || _la===FlinkSqlParser.SEMICOLON) { + this.state = 227; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); - switch(la_) { - case 1: - this.state = 138; + switch(this._input.LA(1)) { + case FlinkSqlParser.SELECT: + case FlinkSqlParser.VALUES: + case FlinkSqlParser.CREATE: + case FlinkSqlParser.INSERT: + case FlinkSqlParser.DESCRIBE: + case FlinkSqlParser.EXPLAIN: + case FlinkSqlParser.SHOW: + case FlinkSqlParser.USE: + case FlinkSqlParser.DROP: + case FlinkSqlParser.ALTER: + case FlinkSqlParser.LR_BRACKET: + this.state = 222; this.sqlStatement(); - this.state = 139; - this.match(FlinkSqlParser.SEMICOLON); - break; + this.state = 224; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); + if(la_===1) { + this.state = 223; + this.match(FlinkSqlParser.SEMICOLON); - case 2: - this.state = 141; + } + break; + case FlinkSqlParser.SEMICOLON: + this.state = 226; this.emptyStatement(); break; - + default: + throw new antlr4.error.NoViableAltException(this); } - this.state = 146; + this.state = 231; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1344,6 +1783,22 @@ SqlStatementContext.prototype.dmlStatement = function() { return this.getTypedRuleContext(DmlStatementContext,0); }; +SqlStatementContext.prototype.describeStatement = function() { + return this.getTypedRuleContext(DescribeStatementContext,0); +}; + +SqlStatementContext.prototype.explainStatement = function() { + return this.getTypedRuleContext(ExplainStatementContext,0); +}; + +SqlStatementContext.prototype.useStatement = function() { + return this.getTypedRuleContext(UseStatementContext,0); +}; + +SqlStatementContext.prototype.showStatememt = function() { + return this.getTypedRuleContext(ShowStatememtContext,0); +}; + SqlStatementContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterSqlStatement(this); @@ -1374,22 +1829,46 @@ FlinkSqlParser.prototype.sqlStatement = function() { var localctx = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 149; + this.state = 238; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); - switch(la_) { - case 1: + switch(this._input.LA(1)) { + case FlinkSqlParser.CREATE: + case FlinkSqlParser.DROP: + case FlinkSqlParser.ALTER: this.enterOuterAlt(localctx, 1); - this.state = 147; + this.state = 232; this.ddlStatement(); break; - - case 2: + case FlinkSqlParser.SELECT: + case FlinkSqlParser.VALUES: + case FlinkSqlParser.INSERT: + case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localctx, 2); - this.state = 148; + this.state = 233; this.dmlStatement(); break; - + case FlinkSqlParser.DESCRIBE: + this.enterOuterAlt(localctx, 3); + this.state = 234; + this.describeStatement(); + break; + case FlinkSqlParser.EXPLAIN: + this.enterOuterAlt(localctx, 4); + this.state = 235; + this.explainStatement(); + break; + case FlinkSqlParser.USE: + this.enterOuterAlt(localctx, 5); + this.state = 236; + this.useStatement(); + break; + case FlinkSqlParser.SHOW: + this.enterOuterAlt(localctx, 6); + this.state = 237; + this.showStatememt(); + break; + default: + throw new antlr4.error.NoViableAltException(this); } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1457,7 +1936,7 @@ FlinkSqlParser.prototype.emptyStatement = function() { this.enterRule(localctx, 8, FlinkSqlParser.RULE_emptyStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 151; + this.state = 240; this.match(FlinkSqlParser.SEMICOLON); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1506,6 +1985,10 @@ DdlStatementContext.prototype.createFunction = function() { return this.getTypedRuleContext(CreateFunctionContext,0); }; +DdlStatementContext.prototype.createCatalog = function() { + return this.getTypedRuleContext(CreateCatalogContext,0); +}; + DdlStatementContext.prototype.alterTable = function() { return this.getTypedRuleContext(AlterTableContext,0); }; @@ -1564,73 +2047,79 @@ FlinkSqlParser.prototype.ddlStatement = function() { var localctx = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 164; + this.state = 254; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,3,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,4,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 153; + this.state = 242; this.createTable(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 154; + this.state = 243; this.createDatabase(); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 155; + this.state = 244; this.createView(); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 156; + this.state = 245; this.createFunction(); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 157; - this.alterTable(); + this.state = 246; + this.createCatalog(); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 158; - this.alterDatabase(); + this.state = 247; + this.alterTable(); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 159; - this.alterFunction(); + this.state = 248; + this.alterDatabase(); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 160; - this.dropTable(); + this.state = 249; + this.alterFunction(); break; case 9: this.enterOuterAlt(localctx, 9); - this.state = 161; - this.dropDatabase(); + this.state = 250; + this.dropTable(); break; case 10: this.enterOuterAlt(localctx, 10); - this.state = 162; - this.dropView(); + this.state = 251; + this.dropDatabase(); break; case 11: this.enterOuterAlt(localctx, 11); - this.state = 163; + this.state = 252; + this.dropView(); + break; + + case 12: + this.enterOuterAlt(localctx, 12); + this.state = 253; this.dropFunction(); break; @@ -1704,17 +2193,19 @@ FlinkSqlParser.prototype.dmlStatement = function() { var localctx = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 168; + this.state = 258; this._errHandler.sync(this); switch(this._input.LA(1)) { - case FlinkSqlParser.SEMICOLON: + case FlinkSqlParser.SELECT: + case FlinkSqlParser.VALUES: + case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localctx, 1); - this.state = 166; - this.queryStatement(); + this.state = 256; + this.queryStatement(0); break; case FlinkSqlParser.INSERT: this.enterOuterAlt(localctx, 2); - this.state = 167; + this.state = 257; this.insertStatement(); break; default: @@ -1735,6 +2226,351 @@ FlinkSqlParser.prototype.dmlStatement = function() { }; +function DescribeStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_describeStatement; + return this; +} + +DescribeStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DescribeStatementContext.prototype.constructor = DescribeStatementContext; + +DescribeStatementContext.prototype.DESCRIBE = function() { + return this.getToken(FlinkSqlParser.DESCRIBE, 0); +}; + +DescribeStatementContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +DescribeStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDescribeStatement(this); + } +}; + +DescribeStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDescribeStatement(this); + } +}; + +DescribeStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDescribeStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DescribeStatementContext = DescribeStatementContext; + +FlinkSqlParser.prototype.describeStatement = function() { + + var localctx = new DescribeStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 14, FlinkSqlParser.RULE_describeStatement); + try { + this.enterOuterAlt(localctx, 1); + this.state = 260; + this.match(FlinkSqlParser.DESCRIBE); + this.state = 261; + this.uid(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ExplainStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_explainStatement; + return this; +} + +ExplainStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ExplainStatementContext.prototype.constructor = ExplainStatementContext; + +ExplainStatementContext.prototype.EXPLAIN = function() { + return this.getToken(FlinkSqlParser.EXPLAIN, 0); +}; + +ExplainStatementContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ExplainStatementContext.prototype.FOR = function() { + return this.getToken(FlinkSqlParser.FOR, 0); +}; + +ExplainStatementContext.prototype.dmlStatement = function() { + return this.getTypedRuleContext(DmlStatementContext,0); +}; + +ExplainStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExplainStatement(this); + } +}; + +ExplainStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExplainStatement(this); + } +}; + +ExplainStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExplainStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ExplainStatementContext = ExplainStatementContext; + +FlinkSqlParser.prototype.explainStatement = function() { + + var localctx = new ExplainStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 16, FlinkSqlParser.RULE_explainStatement); + try { + this.enterOuterAlt(localctx, 1); + this.state = 263; + this.match(FlinkSqlParser.EXPLAIN); + this.state = 264; + this.identifier(); + this.state = 265; + this.match(FlinkSqlParser.FOR); + this.state = 266; + this.dmlStatement(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function UseStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_useStatement; + return this; +} + +UseStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +UseStatementContext.prototype.constructor = UseStatementContext; + +UseStatementContext.prototype.USE = function() { + return this.getToken(FlinkSqlParser.USE, 0); +}; + +UseStatementContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +UseStatementContext.prototype.CATALOG = function() { + return this.getToken(FlinkSqlParser.CATALOG, 0); +}; + +UseStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUseStatement(this); + } +}; + +UseStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUseStatement(this); + } +}; + +UseStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUseStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.UseStatementContext = UseStatementContext; + +FlinkSqlParser.prototype.useStatement = function() { + + var localctx = new UseStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 18, FlinkSqlParser.RULE_useStatement); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 268; + this.match(FlinkSqlParser.USE); + this.state = 270; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.CATALOG) { + this.state = 269; + this.match(FlinkSqlParser.CATALOG); + } + + this.state = 272; + this.uid(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ShowStatememtContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_showStatememt; + return this; +} + +ShowStatememtContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ShowStatememtContext.prototype.constructor = ShowStatememtContext; + +ShowStatememtContext.prototype.SHOW = function() { + return this.getToken(FlinkSqlParser.SHOW, 0); +}; + +ShowStatememtContext.prototype.CATALOGS = function() { + return this.getToken(FlinkSqlParser.CATALOGS, 0); +}; + +ShowStatememtContext.prototype.DATABASES = function() { + return this.getToken(FlinkSqlParser.DATABASES, 0); +}; + +ShowStatememtContext.prototype.TABLES = function() { + return this.getToken(FlinkSqlParser.TABLES, 0); +}; + +ShowStatememtContext.prototype.FUNCTIONS = function() { + return this.getToken(FlinkSqlParser.FUNCTIONS, 0); +}; + +ShowStatememtContext.prototype.VIEWS = function() { + return this.getToken(FlinkSqlParser.VIEWS, 0); +}; + +ShowStatememtContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterShowStatememt(this); + } +}; + +ShowStatememtContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitShowStatememt(this); + } +}; + +ShowStatememtContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitShowStatememt(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ShowStatememtContext = ShowStatememtContext; + +FlinkSqlParser.prototype.showStatememt = function() { + + var localctx = new ShowStatememtContext(this, this._ctx, this.state); + this.enterRule(localctx, 20, FlinkSqlParser.RULE_showStatememt); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 274; + this.match(FlinkSqlParser.SHOW); + this.state = 275; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.TABLES || _la===FlinkSqlParser.FUNCTIONS || _la===FlinkSqlParser.DATABASES || _la===FlinkSqlParser.CATALOGS || _la===FlinkSqlParser.VIEWS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + function CreateTableContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -1798,10 +2634,22 @@ CreateTableContext.prototype.COMMA = function(i) { }; +CreateTableContext.prototype.watermarkDefinition = function() { + return this.getTypedRuleContext(WatermarkDefinitionContext,0); +}; + +CreateTableContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + CreateTableContext.prototype.partitionDefinition = function() { return this.getTypedRuleContext(PartitionDefinitionContext,0); }; +CreateTableContext.prototype.likeDefinition = function() { + return this.getTypedRuleContext(LikeDefinitionContext,0); +}; + CreateTableContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterCreateTable(this); @@ -1830,44 +2678,68 @@ FlinkSqlParser.CreateTableContext = CreateTableContext; FlinkSqlParser.prototype.createTable = function() { var localctx = new CreateTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 14, FlinkSqlParser.RULE_createTable); + this.enterRule(localctx, 22, FlinkSqlParser.RULE_createTable); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 170; + this.state = 277; this.match(FlinkSqlParser.CREATE); - this.state = 171; + this.state = 278; this.match(FlinkSqlParser.TABLE); - this.state = 172; + this.state = 279; this.uid(); - this.state = 173; + this.state = 280; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 174; + this.state = 281; this.columnOptionDefinition(); - this.state = 179; + this.state = 286; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 175; + this.state = 282; this.match(FlinkSqlParser.COMMA); - this.state = 176; + this.state = 283; this.columnOptionDefinition(); - this.state = 181; + this.state = 288; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 182; + this.state = 290; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.WATERMARK) { + this.state = 289; + this.watermarkDefinition(); + } + + this.state = 292; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 184; + this.state = 294; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.COMMENT) { + this.state = 293; + this.commentSpec(); + } + + this.state = 297; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITIONED) { - this.state = 183; + this.state = 296; this.partitionDefinition(); } - this.state = 186; + this.state = 299; this.withOption(); + this.state = 301; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.LIKE) { + this.state = 300; + this.likeDefinition(); + } + } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -1907,6 +2779,10 @@ ColumnOptionDefinitionContext.prototype.columnType = function() { return this.getTypedRuleContext(ColumnTypeContext,0); }; +ColumnOptionDefinitionContext.prototype.lengthOneDimension = function() { + return this.getTypedRuleContext(LengthOneDimensionContext,0); +}; + ColumnOptionDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterColumnOptionDefinition(this); @@ -1935,13 +2811,22 @@ FlinkSqlParser.ColumnOptionDefinitionContext = ColumnOptionDefinitionContext; FlinkSqlParser.prototype.columnOptionDefinition = function() { var localctx = new ColumnOptionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 16, FlinkSqlParser.RULE_columnOptionDefinition); + this.enterRule(localctx, 24, FlinkSqlParser.RULE_columnOptionDefinition); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 188; + this.state = 303; this.columnName(); - this.state = 189; + this.state = 304; this.columnType(); + this.state = 306; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.LR_BRACKET) { + this.state = 305; + this.lengthOneDimension(); + } + } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -2005,10 +2890,10 @@ FlinkSqlParser.ColumnNameContext = ColumnNameContext; FlinkSqlParser.prototype.columnName = function() { var localctx = new ColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 18, FlinkSqlParser.RULE_columnName); + this.enterRule(localctx, 26, FlinkSqlParser.RULE_columnName); try { this.enterOuterAlt(localctx, 1); - this.state = 191; + this.state = 308; this.match(FlinkSqlParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2035,6 +2920,7 @@ function ColumnTypeContext(parser, parent, invokingState) { antlr4.ParserRuleContext.call(this, parent, invokingState); this.parser = parser; this.ruleIndex = FlinkSqlParser.RULE_columnType; + this.typeName = null; // Token return this; } @@ -2161,14 +3047,15 @@ FlinkSqlParser.ColumnTypeContext = ColumnTypeContext; FlinkSqlParser.prototype.columnType = function() { var localctx = new ColumnTypeContext(this, this._ctx, this.state); - this.enterRule(localctx, 20, FlinkSqlParser.RULE_columnType); + this.enterRule(localctx, 28, FlinkSqlParser.RULE_columnType); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 193; + this.state = 310; + localctx.typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 262)) & ~0x1f) == 0 && ((1 << (_la - 262)) & ((1 << (FlinkSqlParser.STRING - 262)) | (1 << (FlinkSqlParser.ARRAY - 262)) | (1 << (FlinkSqlParser.MAP - 262)) | (1 << (FlinkSqlParser.CHAR - 262)) | (1 << (FlinkSqlParser.VARCHAR - 262)) | (1 << (FlinkSqlParser.BINARY - 262)) | (1 << (FlinkSqlParser.VARBINARY - 262)) | (1 << (FlinkSqlParser.BYTES - 262)) | (1 << (FlinkSqlParser.DECIMAL - 262)) | (1 << (FlinkSqlParser.TINYINT - 262)) | (1 << (FlinkSqlParser.SMALLINT - 262)) | (1 << (FlinkSqlParser.INT - 262)) | (1 << (FlinkSqlParser.BIGINT - 262)) | (1 << (FlinkSqlParser.FLOAT - 262)) | (1 << (FlinkSqlParser.DOUBLE - 262)) | (1 << (FlinkSqlParser.DATE - 262)) | (1 << (FlinkSqlParser.TIME - 262)) | (1 << (FlinkSqlParser.TIMESTAMP - 262)) | (1 << (FlinkSqlParser.MULTISET - 262)) | (1 << (FlinkSqlParser.BOOLEAN - 262)) | (1 << (FlinkSqlParser.RAW - 262)) | (1 << (FlinkSqlParser.ROW - 262)) | (1 << (FlinkSqlParser.NULL - 262)))) !== 0))) { - this._errHandler.recoverInline(this); + if(!(((((_la - 253)) & ~0x1f) == 0 && ((1 << (_la - 253)) & ((1 << (FlinkSqlParser.STRING - 253)) | (1 << (FlinkSqlParser.ARRAY - 253)) | (1 << (FlinkSqlParser.MAP - 253)) | (1 << (FlinkSqlParser.CHAR - 253)) | (1 << (FlinkSqlParser.VARCHAR - 253)) | (1 << (FlinkSqlParser.BINARY - 253)) | (1 << (FlinkSqlParser.VARBINARY - 253)) | (1 << (FlinkSqlParser.BYTES - 253)) | (1 << (FlinkSqlParser.DECIMAL - 253)) | (1 << (FlinkSqlParser.TINYINT - 253)) | (1 << (FlinkSqlParser.SMALLINT - 253)) | (1 << (FlinkSqlParser.INT - 253)) | (1 << (FlinkSqlParser.BIGINT - 253)) | (1 << (FlinkSqlParser.FLOAT - 253)) | (1 << (FlinkSqlParser.DOUBLE - 253)) | (1 << (FlinkSqlParser.DATE - 253)) | (1 << (FlinkSqlParser.TIME - 253)) | (1 << (FlinkSqlParser.TIMESTAMP - 253)) | (1 << (FlinkSqlParser.MULTISET - 253)) | (1 << (FlinkSqlParser.BOOLEAN - 253)) | (1 << (FlinkSqlParser.RAW - 253)) | (1 << (FlinkSqlParser.ROW - 253)) | (1 << (FlinkSqlParser.NULL - 253)))) !== 0))) { + localctx.typeName = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); @@ -2189,6 +3076,255 @@ FlinkSqlParser.prototype.columnType = function() { }; +function LengthOneDimensionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_lengthOneDimension; + return this; +} + +LengthOneDimensionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LengthOneDimensionContext.prototype.constructor = LengthOneDimensionContext; + +LengthOneDimensionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +LengthOneDimensionContext.prototype.decimalLiteral = function() { + return this.getTypedRuleContext(DecimalLiteralContext,0); +}; + +LengthOneDimensionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +LengthOneDimensionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLengthOneDimension(this); + } +}; + +LengthOneDimensionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLengthOneDimension(this); + } +}; + +LengthOneDimensionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLengthOneDimension(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.LengthOneDimensionContext = LengthOneDimensionContext; + +FlinkSqlParser.prototype.lengthOneDimension = function() { + + var localctx = new LengthOneDimensionContext(this, this._ctx, this.state); + this.enterRule(localctx, 30, FlinkSqlParser.RULE_lengthOneDimension); + try { + this.enterOuterAlt(localctx, 1); + this.state = 312; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 313; + this.decimalLiteral(); + this.state = 314; + this.match(FlinkSqlParser.RR_BRACKET); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CommentSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_commentSpec; + return this; +} + +CommentSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CommentSpecContext.prototype.constructor = CommentSpecContext; + +CommentSpecContext.prototype.COMMENT = function() { + return this.getToken(FlinkSqlParser.COMMENT, 0); +}; + +CommentSpecContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); +}; + +CommentSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCommentSpec(this); + } +}; + +CommentSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCommentSpec(this); + } +}; + +CommentSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCommentSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.CommentSpecContext = CommentSpecContext; + +FlinkSqlParser.prototype.commentSpec = function() { + + var localctx = new CommentSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 32, FlinkSqlParser.RULE_commentSpec); + try { + this.enterOuterAlt(localctx, 1); + this.state = 316; + this.match(FlinkSqlParser.COMMENT); + this.state = 317; + this.match(FlinkSqlParser.STRING_LITERAL); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WatermarkDefinitionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_watermarkDefinition; + return this; +} + +WatermarkDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WatermarkDefinitionContext.prototype.constructor = WatermarkDefinitionContext; + +WatermarkDefinitionContext.prototype.WATERMARK = function() { + return this.getToken(FlinkSqlParser.WATERMARK, 0); +}; + +WatermarkDefinitionContext.prototype.FOR = function() { + return this.getToken(FlinkSqlParser.FOR, 0); +}; + +WatermarkDefinitionContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +WatermarkDefinitionContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +WatermarkDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWatermarkDefinition(this); + } +}; + +WatermarkDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWatermarkDefinition(this); + } +}; + +WatermarkDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWatermarkDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WatermarkDefinitionContext = WatermarkDefinitionContext; + +FlinkSqlParser.prototype.watermarkDefinition = function() { + + var localctx = new WatermarkDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 34, FlinkSqlParser.RULE_watermarkDefinition); + try { + this.enterOuterAlt(localctx, 1); + this.state = 319; + this.match(FlinkSqlParser.WATERMARK); + this.state = 320; + this.match(FlinkSqlParser.FOR); + this.state = 321; + this.expression(); + this.state = 322; + this.match(FlinkSqlParser.AS); + this.state = 323; + this.expression(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + function PartitionDefinitionContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -2213,8 +3349,8 @@ PartitionDefinitionContext.prototype.BY = function() { return this.getToken(FlinkSqlParser.BY, 0); }; -PartitionDefinitionContext.prototype.partitionColumnDefinition = function() { - return this.getTypedRuleContext(PartitionColumnDefinitionContext,0); +PartitionDefinitionContext.prototype.transformList = function() { + return this.getTypedRuleContext(TransformListContext,0); }; PartitionDefinitionContext.prototype.enterRule = function(listener) { @@ -2245,15 +3381,15 @@ FlinkSqlParser.PartitionDefinitionContext = PartitionDefinitionContext; FlinkSqlParser.prototype.partitionDefinition = function() { var localctx = new PartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 22, FlinkSqlParser.RULE_partitionDefinition); + this.enterRule(localctx, 36, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 195; + this.state = 325; this.match(FlinkSqlParser.PARTITIONED); - this.state = 196; + this.state = 326; this.match(FlinkSqlParser.BY); - this.state = 197; - this.partitionColumnDefinition(); + this.state = 327; + this.transformList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -2269,7 +3405,7 @@ FlinkSqlParser.prototype.partitionDefinition = function() { }; -function PartitionColumnDefinitionContext(parser, parent, invokingState) { +function TransformListContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; } @@ -2278,25 +3414,33 @@ function PartitionColumnDefinitionContext(parser, parent, invokingState) { } antlr4.ParserRuleContext.call(this, parent, invokingState); this.parser = parser; - this.ruleIndex = FlinkSqlParser.RULE_partitionColumnDefinition; + this.ruleIndex = FlinkSqlParser.RULE_transformList; return this; } -PartitionColumnDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PartitionColumnDefinitionContext.prototype.constructor = PartitionColumnDefinitionContext; +TransformListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformListContext.prototype.constructor = TransformListContext; -PartitionColumnDefinitionContext.prototype.partitionColumnName = function(i) { +TransformListContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +TransformListContext.prototype.transform = function(i) { if(i===undefined) { i = null; } if(i===null) { - return this.getTypedRuleContexts(PartitionColumnNameContext); + return this.getTypedRuleContexts(TransformContext); } else { - return this.getTypedRuleContext(PartitionColumnNameContext,i); + return this.getTypedRuleContext(TransformContext,i); } }; -PartitionColumnDefinitionContext.prototype.COMMA = function(i) { +TransformListContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +TransformListContext.prototype.COMMA = function(i) { if(i===undefined) { i = null; } @@ -2308,21 +3452,21 @@ PartitionColumnDefinitionContext.prototype.COMMA = function(i) { }; -PartitionColumnDefinitionContext.prototype.enterRule = function(listener) { +TransformListContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.enterPartitionColumnDefinition(this); + listener.enterTransformList(this); } }; -PartitionColumnDefinitionContext.prototype.exitRule = function(listener) { +TransformListContext.prototype.exitRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.exitPartitionColumnDefinition(this); + listener.exitTransformList(this); } }; -PartitionColumnDefinitionContext.prototype.accept = function(visitor) { +TransformListContext.prototype.accept = function(visitor) { if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPartitionColumnDefinition(this); + return visitor.visitTransformList(this); } else { return visitor.visitChildren(this); } @@ -2331,29 +3475,219 @@ PartitionColumnDefinitionContext.prototype.accept = function(visitor) { -FlinkSqlParser.PartitionColumnDefinitionContext = PartitionColumnDefinitionContext; +FlinkSqlParser.TransformListContext = TransformListContext; -FlinkSqlParser.prototype.partitionColumnDefinition = function() { +FlinkSqlParser.prototype.transformList = function() { - var localctx = new PartitionColumnDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 24, FlinkSqlParser.RULE_partitionColumnDefinition); + var localctx = new TransformListContext(this, this._ctx, this.state); + this.enterRule(localctx, 38, FlinkSqlParser.RULE_transformList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 199; - this.partitionColumnName(); - this.state = 204; + this.state = 329; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 330; + this.transform(); + this.state = 335; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 200; + this.state = 331; this.match(FlinkSqlParser.COMMA); - this.state = 201; - this.partitionColumnName(); - this.state = 206; + this.state = 332; + this.transform(); + this.state = 337; this._errHandler.sync(this); _la = this._input.LA(1); } + this.state = 338; + this.match(FlinkSqlParser.RR_BRACKET); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TransformContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_transform; + return this; +} + +TransformContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformContext.prototype.constructor = TransformContext; + + + +TransformContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function IdentityTransformContext(parser, ctx) { + TransformContext.call(this, parser); + TransformContext.prototype.copyFrom.call(this, ctx); + return this; +} + +IdentityTransformContext.prototype = Object.create(TransformContext.prototype); +IdentityTransformContext.prototype.constructor = IdentityTransformContext; + +FlinkSqlParser.IdentityTransformContext = IdentityTransformContext; + +IdentityTransformContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); +}; +IdentityTransformContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentityTransform(this); + } +}; + +IdentityTransformContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentityTransform(this); + } +}; + +IdentityTransformContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentityTransform(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ApplyTransformContext(parser, ctx) { + TransformContext.call(this, parser); + this.transformName = null; // IdentifierContext; + TransformContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ApplyTransformContext.prototype = Object.create(TransformContext.prototype); +ApplyTransformContext.prototype.constructor = ApplyTransformContext; + +FlinkSqlParser.ApplyTransformContext = ApplyTransformContext; + +ApplyTransformContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +ApplyTransformContext.prototype.transformArgument = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TransformArgumentContext); + } else { + return this.getTypedRuleContext(TransformArgumentContext,i); + } +}; + +ApplyTransformContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +ApplyTransformContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ApplyTransformContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + +ApplyTransformContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterApplyTransform(this); + } +}; + +ApplyTransformContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitApplyTransform(this); + } +}; + +ApplyTransformContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitApplyTransform(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.TransformContext = TransformContext; + +FlinkSqlParser.prototype.transform = function() { + + var localctx = new TransformContext(this, this._ctx, this.state); + this.enterRule(localctx, 40, FlinkSqlParser.RULE_transform); + var _la = 0; // Token type + try { + this.state = 353; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,15,this._ctx); + switch(la_) { + case 1: + localctx = new IdentityTransformContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 340; + this.qualifiedName(); + break; + + case 2: + localctx = new ApplyTransformContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 341; + localctx.transformName = this.identifier(); + this.state = 342; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 343; + this.transformArgument(); + this.state = 348; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 344; + this.match(FlinkSqlParser.COMMA); + this.state = 345; + this.transformArgument(); + this.state = 350; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 351; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -2369,7 +3703,7 @@ FlinkSqlParser.prototype.partitionColumnDefinition = function() { }; -function PartitionColumnNameContext(parser, parent, invokingState) { +function TransformArgumentContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; } @@ -2378,32 +3712,36 @@ function PartitionColumnNameContext(parser, parent, invokingState) { } antlr4.ParserRuleContext.call(this, parent, invokingState); this.parser = parser; - this.ruleIndex = FlinkSqlParser.RULE_partitionColumnName; + this.ruleIndex = FlinkSqlParser.RULE_transformArgument; return this; } -PartitionColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PartitionColumnNameContext.prototype.constructor = PartitionColumnNameContext; +TransformArgumentContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TransformArgumentContext.prototype.constructor = TransformArgumentContext; -PartitionColumnNameContext.prototype.ID = function() { - return this.getToken(FlinkSqlParser.ID, 0); +TransformArgumentContext.prototype.qualifiedName = function() { + return this.getTypedRuleContext(QualifiedNameContext,0); }; -PartitionColumnNameContext.prototype.enterRule = function(listener) { +TransformArgumentContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; + +TransformArgumentContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.enterPartitionColumnName(this); + listener.enterTransformArgument(this); } }; -PartitionColumnNameContext.prototype.exitRule = function(listener) { +TransformArgumentContext.prototype.exitRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.exitPartitionColumnName(this); + listener.exitTransformArgument(this); } }; -PartitionColumnNameContext.prototype.accept = function(visitor) { +TransformArgumentContext.prototype.accept = function(visitor) { if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPartitionColumnName(this); + return visitor.visitTransformArgument(this); } else { return visitor.visitChildren(this); } @@ -2412,16 +3750,331 @@ PartitionColumnNameContext.prototype.accept = function(visitor) { -FlinkSqlParser.PartitionColumnNameContext = PartitionColumnNameContext; +FlinkSqlParser.TransformArgumentContext = TransformArgumentContext; -FlinkSqlParser.prototype.partitionColumnName = function() { +FlinkSqlParser.prototype.transformArgument = function() { - var localctx = new PartitionColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 26, FlinkSqlParser.RULE_partitionColumnName); + var localctx = new TransformArgumentContext(this, this._ctx, this.state); + this.enterRule(localctx, 42, FlinkSqlParser.RULE_transformArgument); + try { + this.state = 357; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,16,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 355; + this.qualifiedName(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 356; + this.constant(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function LikeDefinitionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_likeDefinition; + return this; +} + +LikeDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LikeDefinitionContext.prototype.constructor = LikeDefinitionContext; + +LikeDefinitionContext.prototype.LIKE = function() { + return this.getToken(FlinkSqlParser.LIKE, 0); +}; + +LikeDefinitionContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +LikeDefinitionContext.prototype.likeOption = function() { + return this.getTypedRuleContext(LikeOptionContext,0); +}; + +LikeDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLikeDefinition(this); + } +}; + +LikeDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLikeDefinition(this); + } +}; + +LikeDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLikeDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.LikeDefinitionContext = LikeDefinitionContext; + +FlinkSqlParser.prototype.likeDefinition = function() { + + var localctx = new LikeDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 44, FlinkSqlParser.RULE_likeDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 207; - this.match(FlinkSqlParser.ID); + this.state = 359; + this.match(FlinkSqlParser.LIKE); + this.state = 360; + this.identifier(); + this.state = 361; + this.likeOption(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function LikeOptionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_likeOption; + return this; +} + +LikeOptionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LikeOptionContext.prototype.constructor = LikeOptionContext; + +LikeOptionContext.prototype.INCLUDING = function() { + return this.getToken(FlinkSqlParser.INCLUDING, 0); +}; + +LikeOptionContext.prototype.EXCLUDING = function() { + return this.getToken(FlinkSqlParser.EXCLUDING, 0); +}; + +LikeOptionContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParser.ALL, 0); +}; + +LikeOptionContext.prototype.CONSTRAINTS = function() { + return this.getToken(FlinkSqlParser.CONSTRAINTS, 0); +}; + +LikeOptionContext.prototype.GENERATED = function() { + return this.getToken(FlinkSqlParser.GENERATED, 0); +}; + +LikeOptionContext.prototype.OPTIONS = function() { + return this.getToken(FlinkSqlParser.OPTIONS, 0); +}; + +LikeOptionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLikeOption(this); + } +}; + +LikeOptionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLikeOption(this); + } +}; + +LikeOptionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLikeOption(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.LikeOptionContext = LikeOptionContext; + +FlinkSqlParser.prototype.likeOption = function() { + + var localctx = new LikeOptionContext(this, this._ctx, this.state); + this.enterRule(localctx, 46, FlinkSqlParser.RULE_likeOption); + var _la = 0; // Token type + try { + this.state = 367; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,17,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 363; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.INCLUDING || _la===FlinkSqlParser.EXCLUDING)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 364; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.CONSTRAINTS)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 365; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.INCLUDING || _la===FlinkSqlParser.EXCLUDING)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 366; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.OPTIONS || _la===FlinkSqlParser.GENERATED)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function CreateCatalogContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_createCatalog; + return this; +} + +CreateCatalogContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CreateCatalogContext.prototype.constructor = CreateCatalogContext; + +CreateCatalogContext.prototype.CREATE = function() { + return this.getToken(FlinkSqlParser.CREATE, 0); +}; + +CreateCatalogContext.prototype.CATALOG = function() { + return this.getToken(FlinkSqlParser.CATALOG, 0); +}; + +CreateCatalogContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +CreateCatalogContext.prototype.withOption = function() { + return this.getTypedRuleContext(WithOptionContext,0); +}; + +CreateCatalogContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCreateCatalog(this); + } +}; + +CreateCatalogContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCreateCatalog(this); + } +}; + +CreateCatalogContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCreateCatalog(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.CreateCatalogContext = CreateCatalogContext; + +FlinkSqlParser.prototype.createCatalog = function() { + + var localctx = new CreateCatalogContext(this, this._ctx, this.state); + this.enterRule(localctx, 48, FlinkSqlParser.RULE_createCatalog); + try { + this.enterOuterAlt(localctx, 1); + this.state = 369; + this.match(FlinkSqlParser.CREATE); + this.state = 370; + this.match(FlinkSqlParser.CATALOG); + this.state = 371; + this.uid(); + this.state = 372; + this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -2473,6 +4126,10 @@ CreateDatabaseContext.prototype.ifNotExists = function() { return this.getTypedRuleContext(IfNotExistsContext,0); }; +CreateDatabaseContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + CreateDatabaseContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterCreateDatabase(this); @@ -2501,25 +4158,33 @@ FlinkSqlParser.CreateDatabaseContext = CreateDatabaseContext; FlinkSqlParser.prototype.createDatabase = function() { var localctx = new CreateDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 28, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localctx, 50, FlinkSqlParser.RULE_createDatabase); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 209; + this.state = 374; this.match(FlinkSqlParser.CREATE); - this.state = 210; + this.state = 375; this.match(FlinkSqlParser.DATABASE); - this.state = 212; + this.state = 377; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 211; + this.state = 376; this.ifNotExists(); } - this.state = 214; + this.state = 379; this.uid(); - this.state = 215; + this.state = 381; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.COMMENT) { + this.state = 380; + this.commentSpec(); + } + + this.state = 383; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2568,8 +4233,8 @@ CreateViewContext.prototype.AS = function() { return this.getToken(FlinkSqlParser.AS, 0); }; -CreateViewContext.prototype.selectStatement = function() { - return this.getTypedRuleContext(SelectStatementContext,0); +CreateViewContext.prototype.queryStatement = function() { + return this.getTypedRuleContext(QueryStatementContext,0); }; CreateViewContext.prototype.TEMPORARY = function() { @@ -2580,6 +4245,33 @@ CreateViewContext.prototype.ifNotExists = function() { return this.getTypedRuleContext(IfNotExistsContext,0); }; +CreateViewContext.prototype.columnName = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ColumnNameContext); + } else { + return this.getTypedRuleContext(ColumnNameContext,i); + } +}; + +CreateViewContext.prototype.commentSpec = function() { + return this.getTypedRuleContext(CommentSpecContext,0); +}; + +CreateViewContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + CreateViewContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterCreateView(this); @@ -2608,36 +4300,64 @@ FlinkSqlParser.CreateViewContext = CreateViewContext; FlinkSqlParser.prototype.createView = function() { var localctx = new CreateViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 30, FlinkSqlParser.RULE_createView); + this.enterRule(localctx, 52, FlinkSqlParser.RULE_createView); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 217; + this.state = 385; this.match(FlinkSqlParser.CREATE); - this.state = 219; + this.state = 387; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TEMPORARY) { - this.state = 218; + this.state = 386; this.match(FlinkSqlParser.TEMPORARY); } - this.state = 221; + this.state = 389; this.match(FlinkSqlParser.VIEW); - this.state = 223; + this.state = 391; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 222; + this.state = 390; this.ifNotExists(); } - this.state = 225; + this.state = 393; this.uid(); - this.state = 226; + this.state = 402; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ID) { + this.state = 394; + this.columnName(); + this.state = 399; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 395; + this.match(FlinkSqlParser.COMMA); + this.state = 396; + this.columnName(); + this.state = 401; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + this.state = 405; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.COMMENT) { + this.state = 404; + this.commentSpec(); + } + + this.state = 407; this.match(FlinkSqlParser.AS); - this.state = 227; - this.selectStatement(); + this.state = 408; + this.queryStatement(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -2669,6 +4389,48 @@ function CreateFunctionContext(parser, parent, invokingState) { CreateFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); CreateFunctionContext.prototype.constructor = CreateFunctionContext; +CreateFunctionContext.prototype.CREATE = function() { + return this.getToken(FlinkSqlParser.CREATE, 0); +}; + +CreateFunctionContext.prototype.FUNCTION = function() { + return this.getToken(FlinkSqlParser.FUNCTION, 0); +}; + +CreateFunctionContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +CreateFunctionContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +CreateFunctionContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +CreateFunctionContext.prototype.TEMPORARY = function() { + return this.getToken(FlinkSqlParser.TEMPORARY, 0); +}; + +CreateFunctionContext.prototype.SYSTEM = function() { + return this.getToken(FlinkSqlParser.SYSTEM, 0); +}; + +CreateFunctionContext.prototype.ifNotExists = function() { + return this.getTypedRuleContext(IfNotExistsContext,0); +}; + +CreateFunctionContext.prototype.LANGUAGE = function() { + return this.getToken(FlinkSqlParser.LANGUAGE, 0); +}; CreateFunctionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -2698,9 +4460,54 @@ FlinkSqlParser.CreateFunctionContext = CreateFunctionContext; FlinkSqlParser.prototype.createFunction = function() { var localctx = new CreateFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 32, FlinkSqlParser.RULE_createFunction); + this.enterRule(localctx, 54, FlinkSqlParser.RULE_createFunction); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); + this.state = 410; + this.match(FlinkSqlParser.CREATE); + this.state = 414; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,25,this._ctx); + switch(la_) { + case 1: + this.state = 411; + this.match(FlinkSqlParser.TEMPORARY); + break; + + case 2: + this.state = 412; + this.match(FlinkSqlParser.TEMPORARY); + this.state = 413; + this.match(FlinkSqlParser.SYSTEM); + break; + + } + this.state = 416; + this.match(FlinkSqlParser.FUNCTION); + this.state = 418; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IF) { + this.state = 417; + this.ifNotExists(); + } + + this.state = 420; + this.uid(); + this.state = 421; + this.match(FlinkSqlParser.AS); + this.state = 422; + this.identifier(); + this.state = 425; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.LANGUAGE) { + this.state = 423; + this.match(FlinkSqlParser.LANGUAGE); + this.state = 424; + this.identifier(); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2781,24 +4588,24 @@ FlinkSqlParser.AlterTableContext = AlterTableContext; FlinkSqlParser.prototype.alterTable = function() { var localctx = new AlterTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 34, FlinkSqlParser.RULE_alterTable); + this.enterRule(localctx, 56, FlinkSqlParser.RULE_alterTable); try { this.enterOuterAlt(localctx, 1); - this.state = 231; + this.state = 427; this.match(FlinkSqlParser.ALTER); - this.state = 232; + this.state = 428; this.match(FlinkSqlParser.TABLE); - this.state = 233; + this.state = 429; this.uid(); - this.state = 236; + this.state = 432; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.RENAME: - this.state = 234; + this.state = 430; this.renameDefinition(); break; case FlinkSqlParser.SET: - this.state = 235; + this.state = 431; this.setKeyValueDefinition(); break; default: @@ -2875,14 +4682,14 @@ FlinkSqlParser.RenameDefinitionContext = RenameDefinitionContext; FlinkSqlParser.prototype.renameDefinition = function() { var localctx = new RenameDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 36, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localctx, 58, FlinkSqlParser.RULE_renameDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 238; + this.state = 434; this.match(FlinkSqlParser.RENAME); - this.state = 239; + this.state = 435; this.match(FlinkSqlParser.TO); - this.state = 240; + this.state = 436; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2919,37 +4726,10 @@ SetKeyValueDefinitionContext.prototype.SET = function() { return this.getToken(FlinkSqlParser.SET, 0); }; -SetKeyValueDefinitionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +SetKeyValueDefinitionContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); }; -SetKeyValueDefinitionContext.prototype.keyValueDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(KeyValueDefinitionContext); - } else { - return this.getTypedRuleContext(KeyValueDefinitionContext,i); - } -}; - -SetKeyValueDefinitionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0); -}; - -SetKeyValueDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } -}; - - SetKeyValueDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterSetKeyValueDefinition(this); @@ -2978,30 +4758,13 @@ FlinkSqlParser.SetKeyValueDefinitionContext = SetKeyValueDefinitionContext; FlinkSqlParser.prototype.setKeyValueDefinition = function() { var localctx = new SetKeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 38, FlinkSqlParser.RULE_setKeyValueDefinition); - var _la = 0; // Token type + this.enterRule(localctx, 60, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 242; + this.state = 438; this.match(FlinkSqlParser.SET); - this.state = 243; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 244; - this.keyValueDefinition(); - this.state = 249; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 245; - this.match(FlinkSqlParser.COMMA); - this.state = 246; - this.keyValueDefinition(); - this.state = 251; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 252; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 439; + this.tablePropertyList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -3077,16 +4840,16 @@ FlinkSqlParser.AlterDatabaseContext = AlterDatabaseContext; FlinkSqlParser.prototype.alterDatabase = function() { var localctx = new AlterDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 40, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localctx, 62, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); - this.state = 254; + this.state = 441; this.match(FlinkSqlParser.ALTER); - this.state = 255; + this.state = 442; this.match(FlinkSqlParser.DATABASE); - this.state = 256; + this.state = 443; this.uid(); - this.state = 257; + this.state = 444; this.setKeyValueDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3119,6 +4882,48 @@ function AlterFunctionContext(parser, parent, invokingState) { AlterFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); AlterFunctionContext.prototype.constructor = AlterFunctionContext; +AlterFunctionContext.prototype.ALTER = function() { + return this.getToken(FlinkSqlParser.ALTER, 0); +}; + +AlterFunctionContext.prototype.FUNCTION = function() { + return this.getToken(FlinkSqlParser.FUNCTION, 0); +}; + +AlterFunctionContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +AlterFunctionContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +AlterFunctionContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +AlterFunctionContext.prototype.TEMPORARY = function() { + return this.getToken(FlinkSqlParser.TEMPORARY, 0); +}; + +AlterFunctionContext.prototype.SYSTEM = function() { + return this.getToken(FlinkSqlParser.SYSTEM, 0); +}; + +AlterFunctionContext.prototype.ifExists = function() { + return this.getTypedRuleContext(IfExistsContext,0); +}; + +AlterFunctionContext.prototype.LANGUAGE = function() { + return this.getToken(FlinkSqlParser.LANGUAGE, 0); +}; AlterFunctionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -3148,9 +4953,54 @@ FlinkSqlParser.AlterFunctionContext = AlterFunctionContext; FlinkSqlParser.prototype.alterFunction = function() { var localctx = new AlterFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 42, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localctx, 64, FlinkSqlParser.RULE_alterFunction); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); + this.state = 446; + this.match(FlinkSqlParser.ALTER); + this.state = 450; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,29,this._ctx); + switch(la_) { + case 1: + this.state = 447; + this.match(FlinkSqlParser.TEMPORARY); + break; + + case 2: + this.state = 448; + this.match(FlinkSqlParser.TEMPORARY); + this.state = 449; + this.match(FlinkSqlParser.SYSTEM); + break; + + } + this.state = 452; + this.match(FlinkSqlParser.FUNCTION); + this.state = 454; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IF) { + this.state = 453; + this.ifExists(); + } + + this.state = 456; + this.uid(); + this.state = 457; + this.match(FlinkSqlParser.AS); + this.state = 458; + this.identifier(); + this.state = 461; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.LANGUAGE) { + this.state = 459; + this.match(FlinkSqlParser.LANGUAGE); + this.state = 460; + this.identifier(); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3227,23 +5077,23 @@ FlinkSqlParser.DropTableContext = DropTableContext; FlinkSqlParser.prototype.dropTable = function() { var localctx = new DropTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 44, FlinkSqlParser.RULE_dropTable); + this.enterRule(localctx, 66, FlinkSqlParser.RULE_dropTable); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 261; + this.state = 463; this.match(FlinkSqlParser.DROP); - this.state = 262; + this.state = 464; this.match(FlinkSqlParser.TABLE); - this.state = 264; + this.state = 466; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 263; + this.state = 465; this.ifExists(); } - this.state = 266; + this.state = 468; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3329,29 +5179,29 @@ FlinkSqlParser.DropDatabaseContext = DropDatabaseContext; FlinkSqlParser.prototype.dropDatabase = function() { var localctx = new DropDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 46, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localctx, 68, FlinkSqlParser.RULE_dropDatabase); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 268; + this.state = 470; this.match(FlinkSqlParser.DROP); - this.state = 269; + this.state = 471; this.match(FlinkSqlParser.DATABASE); - this.state = 271; + this.state = 473; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 270; + this.state = 472; this.ifExists(); } - this.state = 273; + this.state = 475; this.uid(); - this.state = 275; + this.state = 477; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.CASCADE || _la===FlinkSqlParser.RESTRICT) { - this.state = 274; + this.state = 476; localctx.dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.CASCADE || _la===FlinkSqlParser.RESTRICT)) { @@ -3442,31 +5292,31 @@ FlinkSqlParser.DropViewContext = DropViewContext; FlinkSqlParser.prototype.dropView = function() { var localctx = new DropViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 48, FlinkSqlParser.RULE_dropView); + this.enterRule(localctx, 70, FlinkSqlParser.RULE_dropView); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 277; + this.state = 479; this.match(FlinkSqlParser.DROP); - this.state = 279; + this.state = 481; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TEMPORARY) { - this.state = 278; + this.state = 480; this.match(FlinkSqlParser.TEMPORARY); } - this.state = 281; + this.state = 483; this.match(FlinkSqlParser.VIEW); - this.state = 283; + this.state = 485; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 282; + this.state = 484; this.ifExists(); } - this.state = 285; + this.state = 487; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3551,37 +5401,37 @@ FlinkSqlParser.DropFunctionContext = DropFunctionContext; FlinkSqlParser.prototype.dropFunction = function() { var localctx = new DropFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 50, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localctx, 72, FlinkSqlParser.RULE_dropFunction); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 287; + this.state = 489; this.match(FlinkSqlParser.DROP); - this.state = 291; + this.state = 493; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,18,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,37,this._ctx); if(la_===1) { - this.state = 288; + this.state = 490; this.match(FlinkSqlParser.TEMPORARY); } else if(la_===2) { - this.state = 289; + this.state = 491; this.match(FlinkSqlParser.TEMPORARY); - this.state = 290; + this.state = 492; this.match(FlinkSqlParser.SYSTEM); } - this.state = 293; + this.state = 495; this.match(FlinkSqlParser.FUNCTION); - this.state = 295; + this.state = 497; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 294; + this.state = 496; this.ifExists(); } - this.state = 297; + this.state = 499; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3630,8 +5480,8 @@ InsertStatementContext.prototype.OVERWRITE = function() { return this.getToken(FlinkSqlParser.OVERWRITE, 0); }; -InsertStatementContext.prototype.selectStatement = function() { - return this.getTypedRuleContext(SelectStatementContext,0); +InsertStatementContext.prototype.queryStatement = function() { + return this.getTypedRuleContext(QueryStatementContext,0); }; InsertStatementContext.prototype.valuesDefinition = function() { @@ -3670,13 +5520,13 @@ FlinkSqlParser.InsertStatementContext = InsertStatementContext; FlinkSqlParser.prototype.insertStatement = function() { var localctx = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 52, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localctx, 74, FlinkSqlParser.RULE_insertStatement); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 299; + this.state = 501; this.match(FlinkSqlParser.INSERT); - this.state = 300; + this.state = 502; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.INTO || _la===FlinkSqlParser.OVERWRITE)) { this._errHandler.recoverInline(this); @@ -3685,30 +5535,30 @@ FlinkSqlParser.prototype.insertStatement = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 301; + this.state = 503; this.uid(); - this.state = 307; + this.state = 509; this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParser.SELECT: - case FlinkSqlParser.PARTITION: - this.state = 303; + var la_ = this._interp.adaptivePredict(this._input,40,this._ctx); + switch(la_) { + case 1: + this.state = 505; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITION) { - this.state = 302; + this.state = 504; this.insertPartitionDefinition(); } - this.state = 305; - this.selectStatement(); + this.state = 507; + this.queryStatement(0); break; - case FlinkSqlParser.VALUES: - this.state = 306; + + case 2: + this.state = 508; this.valuesDefinition(); break; - default: - throw new antlr4.error.NoViableAltException(this); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3745,37 +5595,10 @@ InsertPartitionDefinitionContext.prototype.PARTITION = function() { return this.getToken(FlinkSqlParser.PARTITION, 0); }; -InsertPartitionDefinitionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +InsertPartitionDefinitionContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); }; -InsertPartitionDefinitionContext.prototype.keyValueDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(KeyValueDefinitionContext); - } else { - return this.getTypedRuleContext(KeyValueDefinitionContext,i); - } -}; - -InsertPartitionDefinitionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0); -}; - -InsertPartitionDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } -}; - - InsertPartitionDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterInsertPartitionDefinition(this); @@ -3804,30 +5627,13 @@ FlinkSqlParser.InsertPartitionDefinitionContext = InsertPartitionDefinitionConte FlinkSqlParser.prototype.insertPartitionDefinition = function() { var localctx = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 54, FlinkSqlParser.RULE_insertPartitionDefinition); - var _la = 0; // Token type + this.enterRule(localctx, 76, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 309; + this.state = 511; this.match(FlinkSqlParser.PARTITION); - this.state = 310; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 311; - this.keyValueDefinition(); - this.state = 316; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 312; - this.match(FlinkSqlParser.COMMA); - this.state = 313; - this.keyValueDefinition(); - this.state = 318; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 319; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 512; + this.tablePropertyList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -3914,23 +5720,23 @@ FlinkSqlParser.ValuesDefinitionContext = ValuesDefinitionContext; FlinkSqlParser.prototype.valuesDefinition = function() { var localctx = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 56, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localctx, 78, FlinkSqlParser.RULE_valuesDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 321; + this.state = 514; this.match(FlinkSqlParser.VALUES); - this.state = 322; + this.state = 515; this.valuesRowDefinition(); - this.state = 327; + this.state = 520; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 323; + this.state = 516; this.match(FlinkSqlParser.COMMA); - this.state = 324; + this.state = 517; this.valuesRowDefinition(); - this.state = 329; + this.state = 522; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -3969,14 +5775,14 @@ ValuesRowDefinitionContext.prototype.LR_BRACKET = function() { return this.getToken(FlinkSqlParser.LR_BRACKET, 0); }; -ValuesRowDefinitionContext.prototype.allValueDifinition = function(i) { +ValuesRowDefinitionContext.prototype.constant = function(i) { if(i===undefined) { i = null; } if(i===null) { - return this.getTypedRuleContexts(AllValueDifinitionContext); + return this.getTypedRuleContexts(ConstantContext); } else { - return this.getTypedRuleContext(AllValueDifinitionContext,i); + return this.getTypedRuleContext(ConstantContext,i); } }; @@ -4024,27 +5830,27 @@ FlinkSqlParser.ValuesRowDefinitionContext = ValuesRowDefinitionContext; FlinkSqlParser.prototype.valuesRowDefinition = function() { var localctx = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 58, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 80, FlinkSqlParser.RULE_valuesRowDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 330; + this.state = 523; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 331; - this.allValueDifinition(); - this.state = 336; + this.state = 524; + this.constant(); + this.state = 529; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 332; + this.state = 525; this.match(FlinkSqlParser.COMMA); - this.state = 333; - this.allValueDifinition(); - this.state = 338; + this.state = 526; + this.constant(); + this.state = 531; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 339; + this.state = 532; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4061,110 +5867,6 @@ FlinkSqlParser.prototype.valuesRowDefinition = function() { }; -function AllValueDifinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParser.RULE_allValueDifinition; - return this; -} - -AllValueDifinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -AllValueDifinitionContext.prototype.constructor = AllValueDifinitionContext; - -AllValueDifinitionContext.prototype.stringLiteral = function() { - return this.getTypedRuleContext(StringLiteralContext,0); -}; - -AllValueDifinitionContext.prototype.booleanLiteral = function() { - return this.getTypedRuleContext(BooleanLiteralContext,0); -}; - -AllValueDifinitionContext.prototype.DEC_DIGIT = function() { - return this.getToken(FlinkSqlParser.DEC_DIGIT, 0); -}; - -AllValueDifinitionContext.prototype.NULL = function() { - return this.getToken(FlinkSqlParser.NULL, 0); -}; - -AllValueDifinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterAllValueDifinition(this); - } -}; - -AllValueDifinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitAllValueDifinition(this); - } -}; - -AllValueDifinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitAllValueDifinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParser.AllValueDifinitionContext = AllValueDifinitionContext; - -FlinkSqlParser.prototype.allValueDifinition = function() { - - var localctx = new AllValueDifinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 60, FlinkSqlParser.RULE_allValueDifinition); - try { - this.state = 345; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParser.STRING_LITERAL: - this.enterOuterAlt(localctx, 1); - this.state = 341; - this.stringLiteral(); - break; - case FlinkSqlParser.TRUE: - case FlinkSqlParser.FALSE: - this.enterOuterAlt(localctx, 2); - this.state = 342; - this.booleanLiteral(); - break; - case FlinkSqlParser.DEC_DIGIT: - this.enterOuterAlt(localctx, 3); - this.state = 343; - this.match(FlinkSqlParser.DEC_DIGIT); - break; - case FlinkSqlParser.NULL: - this.enterOuterAlt(localctx, 4); - this.state = 344; - this.match(FlinkSqlParser.NULL); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - function QueryStatementContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -4175,12 +5877,69 @@ function QueryStatementContext(parser, parent, invokingState) { antlr4.ParserRuleContext.call(this, parent, invokingState); this.parser = parser; this.ruleIndex = FlinkSqlParser.RULE_queryStatement; + this.left = null; // QueryStatementContext + this.operator = null; // Token + this.right = null; // QueryStatementContext return this; } QueryStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); QueryStatementContext.prototype.constructor = QueryStatementContext; +QueryStatementContext.prototype.valuesCaluse = function() { + return this.getTypedRuleContext(ValuesCaluseContext,0); +}; + +QueryStatementContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +QueryStatementContext.prototype.queryStatement = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(QueryStatementContext); + } else { + return this.getTypedRuleContext(QueryStatementContext,i); + } +}; + +QueryStatementContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +QueryStatementContext.prototype.selectClause = function() { + return this.getTypedRuleContext(SelectClauseContext,0); +}; + +QueryStatementContext.prototype.orderByCaluse = function() { + return this.getTypedRuleContext(OrderByCaluseContext,0); +}; + +QueryStatementContext.prototype.limitClause = function() { + return this.getTypedRuleContext(LimitClauseContext,0); +}; + +QueryStatementContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; + +QueryStatementContext.prototype.INTERSECT = function() { + return this.getToken(FlinkSqlParser.INTERSECT, 0); +}; + +QueryStatementContext.prototype.UNION = function() { + return this.getToken(FlinkSqlParser.UNION, 0); +}; + +QueryStatementContext.prototype.EXCEPT = function() { + return this.getToken(FlinkSqlParser.EXCEPT, 0); +}; + +QueryStatementContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParser.ALL, 0); +}; QueryStatementContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -4204,15 +5963,246 @@ QueryStatementContext.prototype.accept = function(visitor) { - -FlinkSqlParser.QueryStatementContext = QueryStatementContext; - -FlinkSqlParser.prototype.queryStatement = function() { - - var localctx = new QueryStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 62, FlinkSqlParser.RULE_queryStatement); +FlinkSqlParser.prototype.queryStatement = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new QueryStatementContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 82; + this.enterRecursionRule(localctx, 82, FlinkSqlParser.RULE_queryStatement, _p); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); + this.state = 554; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,47,this._ctx); + switch(la_) { + case 1: + this.state = 535; + this.valuesCaluse(); + break; + + case 2: + this.state = 536; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 537; + this.queryStatement(0); + this.state = 538; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 3: + this.state = 540; + this.selectClause(); + this.state = 542; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,43,this._ctx); + if(la_===1) { + this.state = 541; + this.orderByCaluse(); + + } + this.state = 545; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + if(la_===1) { + this.state = 544; + this.limitClause(); + + } + break; + + case 4: + this.state = 547; + this.selectStatement(); + this.state = 549; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,45,this._ctx); + if(la_===1) { + this.state = 548; + this.orderByCaluse(); + + } + this.state = 552; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,46,this._ctx); + if(la_===1) { + this.state = 551; + this.limitClause(); + + } + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 570; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,51,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + localctx = new QueryStatementContext(this, _parentctx, _parentState); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_queryStatement); + this.state = 556; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 557; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 93)) & ~0x1f) == 0 && ((1 << (_la - 93)) & ((1 << (FlinkSqlParser.UNION - 93)) | (1 << (FlinkSqlParser.EXCEPT - 93)) | (1 << (FlinkSqlParser.INTERSECT - 93)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 559; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ALL) { + this.state = 558; + this.match(FlinkSqlParser.ALL); + } + + this.state = 561; + localctx.right = this.queryStatement(0); + this.state = 563; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); + if(la_===1) { + this.state = 562; + this.orderByCaluse(); + + } + this.state = 566; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,50,this._ctx); + if(la_===1) { + this.state = 565; + this.limitClause(); + + } + } + this.state = 572; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,51,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function ValuesCaluseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_valuesCaluse; + return this; +} + +ValuesCaluseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ValuesCaluseContext.prototype.constructor = ValuesCaluseContext; + +ValuesCaluseContext.prototype.VALUES = function() { + return this.getToken(FlinkSqlParser.VALUES, 0); +}; + +ValuesCaluseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +ValuesCaluseContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +ValuesCaluseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterValuesCaluse(this); + } +}; + +ValuesCaluseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitValuesCaluse(this); + } +}; + +ValuesCaluseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitValuesCaluse(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ValuesCaluseContext = ValuesCaluseContext; + +FlinkSqlParser.prototype.valuesCaluse = function() { + + var localctx = new ValuesCaluseContext(this, this._ctx, this.state); + this.enterRule(localctx, 84, FlinkSqlParser.RULE_valuesCaluse); + try { + this.enterOuterAlt(localctx, 1); + this.state = 573; + this.match(FlinkSqlParser.VALUES); + this.state = 574; + this.expression(); + this.state = 579; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,52,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 575; + this.match(FlinkSqlParser.COMMA); + this.state = 576; + this.expression(); + } + this.state = 581; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,52,this._ctx); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4245,49 +6235,30 @@ function SelectStatementContext(parser, parent, invokingState) { SelectStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); SelectStatementContext.prototype.constructor = SelectStatementContext; -SelectStatementContext.prototype.SELECT = function() { - return this.getToken(FlinkSqlParser.SELECT, 0); +SelectStatementContext.prototype.selectClause = function() { + return this.getTypedRuleContext(SelectClauseContext,0); }; -SelectStatementContext.prototype.FROM = function() { - return this.getToken(FlinkSqlParser.FROM, 0); +SelectStatementContext.prototype.fromClause = function() { + return this.getTypedRuleContext(FromClauseContext,0); }; -SelectStatementContext.prototype.tableExpression = function() { - return this.getTypedRuleContext(TableExpressionContext,0); +SelectStatementContext.prototype.whereClause = function() { + return this.getTypedRuleContext(WhereClauseContext,0); }; -SelectStatementContext.prototype.ASTERISK_SIGN = function() { - return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); +SelectStatementContext.prototype.groupByClause = function() { + return this.getTypedRuleContext(GroupByClauseContext,0); }; -SelectStatementContext.prototype.projectItemDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ProjectItemDefinitionContext); - } else { - return this.getTypedRuleContext(ProjectItemDefinitionContext,i); - } +SelectStatementContext.prototype.havingClause = function() { + return this.getTypedRuleContext(HavingClauseContext,0); }; -SelectStatementContext.prototype.setQuantifier = function() { - return this.getTypedRuleContext(SetQuantifierContext,0); +SelectStatementContext.prototype.windowClause = function() { + return this.getTypedRuleContext(WindowClauseContext,0); }; -SelectStatementContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } -}; - - SelectStatementContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterSelectStatement(this); @@ -4316,71 +6287,183 @@ FlinkSqlParser.SelectStatementContext = SelectStatementContext; FlinkSqlParser.prototype.selectStatement = function() { var localctx = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 64, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localctx, 86, FlinkSqlParser.RULE_selectStatement); + try { + this.enterOuterAlt(localctx, 1); + this.state = 582; + this.selectClause(); + this.state = 583; + this.fromClause(); + this.state = 585; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,53,this._ctx); + if(la_===1) { + this.state = 584; + this.whereClause(); + + } + this.state = 588; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,54,this._ctx); + if(la_===1) { + this.state = 587; + this.groupByClause(); + + } + this.state = 591; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,55,this._ctx); + if(la_===1) { + this.state = 590; + this.havingClause(); + + } + this.state = 594; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,56,this._ctx); + if(la_===1) { + this.state = 593; + this.windowClause(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SelectClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_selectClause; + return this; +} + +SelectClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SelectClauseContext.prototype.constructor = SelectClauseContext; + +SelectClauseContext.prototype.SELECT = function() { + return this.getToken(FlinkSqlParser.SELECT, 0); +}; + +SelectClauseContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); +}; + +SelectClauseContext.prototype.projectItemDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ProjectItemDefinitionContext); + } else { + return this.getTypedRuleContext(ProjectItemDefinitionContext,i); + } +}; + +SelectClauseContext.prototype.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,0); +}; + +SelectClauseContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +SelectClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSelectClause(this); + } +}; + +SelectClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSelectClause(this); + } +}; + +SelectClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSelectClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.SelectClauseContext = SelectClauseContext; + +FlinkSqlParser.prototype.selectClause = function() { + + var localctx = new SelectClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 88, FlinkSqlParser.RULE_selectClause); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 349; + this.state = 596; this.match(FlinkSqlParser.SELECT); - this.state = 351; + this.state = 598; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT) { - this.state = 350; + this.state = 597; this.setQuantifier(); } - this.state = 362; + this.state = 609; this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParser.ASTERISK_SIGN: - this.state = 353; + var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); + switch(la_) { + case 1: + this.state = 600; this.match(FlinkSqlParser.ASTERISK_SIGN); break; - case FlinkSqlParser.NOT: - case FlinkSqlParser.TRUE: - case FlinkSqlParser.FALSE: - case FlinkSqlParser.CASE: - case FlinkSqlParser.FIRST: - case FlinkSqlParser.LAST: - case FlinkSqlParser.POSITION: - case FlinkSqlParser.PLUS: - case FlinkSqlParser.MINUS: - case FlinkSqlParser.ASTERISK: - case FlinkSqlParser.TILDE: - case FlinkSqlParser.ID: - case FlinkSqlParser.NULL: - case FlinkSqlParser.LR_BRACKET: - case FlinkSqlParser.ZERO_DECIMAL: - case FlinkSqlParser.ONE_DECIMAL: - case FlinkSqlParser.TWO_DECIMAL: - case FlinkSqlParser.HYPNEN_SIGN: - case FlinkSqlParser.STRING_LITERAL: - case FlinkSqlParser.DECIMAL_LITERAL: - case FlinkSqlParser.REAL_LITERAL: - case FlinkSqlParser.BIT_STRING: - this.state = 354; + + case 2: + this.state = 601; this.projectItemDefinition(); - this.state = 359; + this.state = 606; this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 355; - this.match(FlinkSqlParser.COMMA); - this.state = 356; - this.projectItemDefinition(); - this.state = 361; + var _alt = this._interp.adaptivePredict(this._input,58,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 602; + this.match(FlinkSqlParser.COMMA); + this.state = 603; + this.projectItemDefinition(); + } + this.state = 608; this._errHandler.sync(this); - _la = this._input.LA(1); + _alt = this._interp.adaptivePredict(this._input,58,this._ctx); } + break; - default: - throw new antlr4.error.NoViableAltException(this); + } - this.state = 364; - this.match(FlinkSqlParser.FROM); - this.state = 365; - this.tableExpression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -4424,14 +6507,6 @@ ProjectItemDefinitionContext.prototype.AS = function() { return this.getToken(FlinkSqlParser.AS, 0); }; -ProjectItemDefinitionContext.prototype.DOT = function() { - return this.getToken(FlinkSqlParser.DOT, 0); -}; - -ProjectItemDefinitionContext.prototype.ASTERISK_SIGN = function() { - return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); -}; - ProjectItemDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterProjectItemDefinition(this); @@ -4460,64 +6535,27 @@ FlinkSqlParser.ProjectItemDefinitionContext = ProjectItemDefinitionContext; FlinkSqlParser.prototype.projectItemDefinition = function() { var localctx = new ProjectItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 66, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localctx, 90, FlinkSqlParser.RULE_projectItemDefinition); var _la = 0; // Token type try { - this.state = 378; + this.enterOuterAlt(localctx, 1); + this.state = 611; + this.expression(); + this.state = 616; this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParser.NOT: - case FlinkSqlParser.TRUE: - case FlinkSqlParser.FALSE: - case FlinkSqlParser.CASE: - case FlinkSqlParser.FIRST: - case FlinkSqlParser.LAST: - case FlinkSqlParser.POSITION: - case FlinkSqlParser.PLUS: - case FlinkSqlParser.MINUS: - case FlinkSqlParser.ASTERISK: - case FlinkSqlParser.TILDE: - case FlinkSqlParser.NULL: - case FlinkSqlParser.LR_BRACKET: - case FlinkSqlParser.ZERO_DECIMAL: - case FlinkSqlParser.ONE_DECIMAL: - case FlinkSqlParser.TWO_DECIMAL: - case FlinkSqlParser.HYPNEN_SIGN: - case FlinkSqlParser.STRING_LITERAL: - case FlinkSqlParser.DECIMAL_LITERAL: - case FlinkSqlParser.REAL_LITERAL: - case FlinkSqlParser.BIT_STRING: - this.enterOuterAlt(localctx, 1); - this.state = 367; - this.expression(); - this.state = 372; + var la_ = this._interp.adaptivePredict(this._input,61,this._ctx); + if(la_===1) { + this.state = 613; this._errHandler.sync(this); _la = this._input.LA(1); - if(_la===FlinkSqlParser.AS || _la===FlinkSqlParser.ID) { - this.state = 369; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParser.AS) { - this.state = 368; - this.match(FlinkSqlParser.AS); - } - - this.state = 371; - this.uid(); + if(_la===FlinkSqlParser.AS) { + this.state = 612; + this.match(FlinkSqlParser.AS); } - break; - case FlinkSqlParser.ID: - this.enterOuterAlt(localctx, 2); - this.state = 374; + this.state = 615; this.uid(); - this.state = 375; - this.match(FlinkSqlParser.DOT); - this.state = 376; - this.match(FlinkSqlParser.ASTERISK_SIGN); - break; - default: - throw new antlr4.error.NoViableAltException(this); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4534,6 +6572,80 @@ FlinkSqlParser.prototype.projectItemDefinition = function() { }; +function FromClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_fromClause; + return this; +} + +FromClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FromClauseContext.prototype.constructor = FromClauseContext; + +FromClauseContext.prototype.FROM = function() { + return this.getToken(FlinkSqlParser.FROM, 0); +}; + +FromClauseContext.prototype.tableExpression = function() { + return this.getTypedRuleContext(TableExpressionContext,0); +}; + +FromClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFromClause(this); + } +}; + +FromClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFromClause(this); + } +}; + +FromClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFromClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.FromClauseContext = FromClauseContext; + +FlinkSqlParser.prototype.fromClause = function() { + + var localctx = new FromClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 92, FlinkSqlParser.RULE_fromClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 618; + this.match(FlinkSqlParser.FROM); + this.state = 619; + this.tableExpression(0); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + function TableExpressionContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -4573,6 +6685,41 @@ TableExpressionContext.prototype.COMMA = function(i) { }; +TableExpressionContext.prototype.tableExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TableExpressionContext); + } else { + return this.getTypedRuleContext(TableExpressionContext,i); + } +}; + +TableExpressionContext.prototype.JOIN = function() { + return this.getToken(FlinkSqlParser.JOIN, 0); +}; + +TableExpressionContext.prototype.NATURAL = function() { + return this.getToken(FlinkSqlParser.NATURAL, 0); +}; + +TableExpressionContext.prototype.joinCondition = function() { + return this.getTypedRuleContext(JoinConditionContext,0); +}; + +TableExpressionContext.prototype.LEFT = function() { + return this.getToken(FlinkSqlParser.LEFT, 0); +}; + +TableExpressionContext.prototype.RIGHT = function() { + return this.getToken(FlinkSqlParser.RIGHT, 0); +}; + +TableExpressionContext.prototype.FULL = function() { + return this.getToken(FlinkSqlParser.FULL, 0); +}; + TableExpressionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterTableExpression(this); @@ -4595,40 +6742,103 @@ TableExpressionContext.prototype.accept = function(visitor) { - -FlinkSqlParser.TableExpressionContext = TableExpressionContext; - -FlinkSqlParser.prototype.tableExpression = function() { - - var localctx = new TableExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 68, FlinkSqlParser.RULE_tableExpression); +FlinkSqlParser.prototype.tableExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new TableExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 94; + this.enterRecursionRule(localctx, 94, FlinkSqlParser.RULE_tableExpression, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 380; + this.state = 622; this.tableReference(); - this.state = 385; + this.state = 627; this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 381; - this.match(FlinkSqlParser.COMMA); - this.state = 382; - this.tableReference(); - this.state = 387; + var _alt = this._interp.adaptivePredict(this._input,62,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 623; + this.match(FlinkSqlParser.COMMA); + this.state = 624; + this.tableReference(); + } + this.state = 629; this._errHandler.sync(this); - _la = this._input.LA(1); + _alt = this._interp.adaptivePredict(this._input,62,this._ctx); } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); + + this._ctx.stop = this._input.LT(-1); + this.state = 644; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,66,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + localctx = new TableExpressionContext(this, _parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); + this.state = 630; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 632; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NATURAL) { + this.state = 631; + this.match(FlinkSqlParser.NATURAL); + } + + this.state = 635; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(((((_la - 48)) & ~0x1f) == 0 && ((1 << (_la - 48)) & ((1 << (FlinkSqlParser.LEFT - 48)) | (1 << (FlinkSqlParser.RIGHT - 48)) | (1 << (FlinkSqlParser.FULL - 48)))) !== 0)) { + this.state = 634; + _la = this._input.LA(1); + if(!(((((_la - 48)) & ~0x1f) == 0 && ((1 << (_la - 48)) & ((1 << (FlinkSqlParser.LEFT - 48)) | (1 << (FlinkSqlParser.RIGHT - 48)) | (1 << (FlinkSqlParser.FULL - 48)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 637; + this.match(FlinkSqlParser.JOIN); + this.state = 638; + this.tableExpression(0); + this.state = 640; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,65,this._ctx); + if(la_===1) { + this.state = 639; + this.joinCondition(); + + } + } + this.state = 646; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,66,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); } else { - throw re; + throw error; } } finally { - this.exitRule(); + this.unrollRecursionContexts(_parentctx) } return localctx; }; @@ -4686,13 +6896,19 @@ FlinkSqlParser.TableReferenceContext = TableReferenceContext; FlinkSqlParser.prototype.tableReference = function() { var localctx = new TableReferenceContext(this, this._ctx, this.state); - this.enterRule(localctx, 70, FlinkSqlParser.RULE_tableReference); + this.enterRule(localctx, 96, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localctx, 1); - this.state = 388; + this.state = 647; this.tablePrimary(); - this.state = 389; - this.tableAlias(); + this.state = 649; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,67,this._ctx); + if(la_===1) { + this.state = 648; + this.tableAlias(); + + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -4724,14 +6940,69 @@ function TablePrimaryContext(parser, parent, invokingState) { TablePrimaryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); TablePrimaryContext.prototype.constructor = TablePrimaryContext; -TablePrimaryContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); +TablePrimaryContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } }; TablePrimaryContext.prototype.TABLE = function() { return this.getToken(FlinkSqlParser.TABLE, 0); }; +TablePrimaryContext.prototype.LATERAL = function() { + return this.getToken(FlinkSqlParser.LATERAL, 0); +}; + +TablePrimaryContext.prototype.LR_BRACKET = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.LR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.LR_BRACKET, i); + } +}; + + +TablePrimaryContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +TablePrimaryContext.prototype.RR_BRACKET = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.RR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.RR_BRACKET, i); + } +}; + + +TablePrimaryContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +TablePrimaryContext.prototype.UNNEST = function() { + return this.getToken(FlinkSqlParser.UNNEST, 0); +}; + TablePrimaryContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterTablePrimary(this); @@ -4760,20 +7031,1727 @@ FlinkSqlParser.TablePrimaryContext = TablePrimaryContext; FlinkSqlParser.prototype.tablePrimary = function() { var localctx = new TablePrimaryContext(this, this._ctx, this.state); - this.enterRule(localctx, 72, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localctx, 98, FlinkSqlParser.RULE_tablePrimary); + var _la = 0; // Token type + try { + this.state = 676; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.NOT: + case FlinkSqlParser.EXISTS: + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + case FlinkSqlParser.INTERVAL: + case FlinkSqlParser.CASE: + case FlinkSqlParser.FIRST: + case FlinkSqlParser.LAST: + case FlinkSqlParser.TABLE: + case FlinkSqlParser.POSITION: + case FlinkSqlParser.NULL: + case FlinkSqlParser.BIT_NOT_OP: + case FlinkSqlParser.LR_BRACKET: + case FlinkSqlParser.ASTERISK_SIGN: + case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.ADD_SIGN: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + case FlinkSqlParser.BIT_STRING: + case FlinkSqlParser.ID: + this.enterOuterAlt(localctx, 1); + this.state = 652; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.TABLE) { + this.state = 651; + this.match(FlinkSqlParser.TABLE); + } + + this.state = 654; + this.expression(); + break; + case FlinkSqlParser.LATERAL: + this.enterOuterAlt(localctx, 2); + this.state = 655; + this.match(FlinkSqlParser.LATERAL); + this.state = 656; + this.match(FlinkSqlParser.TABLE); + this.state = 657; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 658; + this.uid(); + this.state = 659; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 660; + this.expression(); + this.state = 665; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 661; + this.match(FlinkSqlParser.COMMA); + this.state = 662; + this.expression(); + this.state = 667; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 668; + this.match(FlinkSqlParser.RR_BRACKET); + this.state = 669; + this.match(FlinkSqlParser.RR_BRACKET); + break; + case FlinkSqlParser.UNNEST: + this.enterOuterAlt(localctx, 3); + this.state = 671; + this.match(FlinkSqlParser.UNNEST); + this.state = 672; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 673; + this.expression(); + this.state = 674; + this.match(FlinkSqlParser.RR_BRACKET); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function JoinConditionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_joinCondition; + return this; +} + +JoinConditionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +JoinConditionContext.prototype.constructor = JoinConditionContext; + +JoinConditionContext.prototype.ON = function() { + return this.getToken(FlinkSqlParser.ON, 0); +}; + +JoinConditionContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +JoinConditionContext.prototype.USING = function() { + return this.getToken(FlinkSqlParser.USING, 0); +}; + +JoinConditionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +JoinConditionContext.prototype.uid = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(UidContext); + } else { + return this.getTypedRuleContext(UidContext,i); + } +}; + +JoinConditionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +JoinConditionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +JoinConditionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterJoinCondition(this); + } +}; + +JoinConditionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitJoinCondition(this); + } +}; + +JoinConditionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitJoinCondition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.JoinConditionContext = JoinConditionContext; + +FlinkSqlParser.prototype.joinCondition = function() { + + var localctx = new JoinConditionContext(this, this._ctx, this.state); + this.enterRule(localctx, 100, FlinkSqlParser.RULE_joinCondition); + var _la = 0; // Token type + try { + this.state = 692; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.ON: + this.enterOuterAlt(localctx, 1); + this.state = 678; + this.match(FlinkSqlParser.ON); + this.state = 679; + this.booleanExpression(0); + break; + case FlinkSqlParser.USING: + this.enterOuterAlt(localctx, 2); + this.state = 680; + this.match(FlinkSqlParser.USING); + this.state = 681; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 682; + this.uid(); + this.state = 687; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 683; + this.match(FlinkSqlParser.COMMA); + this.state = 684; + this.uid(); + this.state = 689; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 690; + this.match(FlinkSqlParser.RR_BRACKET); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WhereClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_whereClause; + return this; +} + +WhereClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WhereClauseContext.prototype.constructor = WhereClauseContext; + +WhereClauseContext.prototype.WHERE = function() { + return this.getToken(FlinkSqlParser.WHERE, 0); +}; + +WhereClauseContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +WhereClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWhereClause(this); + } +}; + +WhereClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWhereClause(this); + } +}; + +WhereClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWhereClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WhereClauseContext = WhereClauseContext; + +FlinkSqlParser.prototype.whereClause = function() { + + var localctx = new WhereClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 102, FlinkSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 694; + this.match(FlinkSqlParser.WHERE); + this.state = 695; + this.booleanExpression(0); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function GroupByClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_groupByClause; + return this; +} + +GroupByClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +GroupByClauseContext.prototype.constructor = GroupByClauseContext; + +GroupByClauseContext.prototype.GROUP = function() { + return this.getToken(FlinkSqlParser.GROUP, 0); +}; + +GroupByClauseContext.prototype.BY = function() { + return this.getToken(FlinkSqlParser.BY, 0); +}; + +GroupByClauseContext.prototype.groupItemDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(GroupItemDefinitionContext); + } else { + return this.getTypedRuleContext(GroupItemDefinitionContext,i); + } +}; + +GroupByClauseContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +GroupByClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterGroupByClause(this); + } +}; + +GroupByClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitGroupByClause(this); + } +}; + +GroupByClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitGroupByClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.GroupByClauseContext = GroupByClauseContext; + +FlinkSqlParser.prototype.groupByClause = function() { + + var localctx = new GroupByClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 104, FlinkSqlParser.RULE_groupByClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 697; + this.match(FlinkSqlParser.GROUP); + this.state = 698; + this.match(FlinkSqlParser.BY); + this.state = 699; + this.groupItemDefinition(); + this.state = 704; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,73,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 700; + this.match(FlinkSqlParser.COMMA); + this.state = 701; + this.groupItemDefinition(); + } + this.state = 706; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,73,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function GroupItemDefinitionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_groupItemDefinition; + return this; +} + +GroupItemDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +GroupItemDefinitionContext.prototype.constructor = GroupItemDefinitionContext; + +GroupItemDefinitionContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +GroupItemDefinitionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +GroupItemDefinitionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +GroupItemDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +GroupItemDefinitionContext.prototype.CUBE = function() { + return this.getToken(FlinkSqlParser.CUBE, 0); +}; + +GroupItemDefinitionContext.prototype.ROLLUP = function() { + return this.getToken(FlinkSqlParser.ROLLUP, 0); +}; + +GroupItemDefinitionContext.prototype.GROUPING = function() { + return this.getToken(FlinkSqlParser.GROUPING, 0); +}; + +GroupItemDefinitionContext.prototype.SETS = function() { + return this.getToken(FlinkSqlParser.SETS, 0); +}; + +GroupItemDefinitionContext.prototype.groupItemDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(GroupItemDefinitionContext); + } else { + return this.getTypedRuleContext(GroupItemDefinitionContext,i); + } +}; + +GroupItemDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterGroupItemDefinition(this); + } +}; + +GroupItemDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitGroupItemDefinition(this); + } +}; + +GroupItemDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitGroupItemDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.GroupItemDefinitionContext = GroupItemDefinitionContext; + +FlinkSqlParser.prototype.groupItemDefinition = function() { + + var localctx = new GroupItemDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 106, FlinkSqlParser.RULE_groupItemDefinition); + var _la = 0; // Token type + try { + this.state = 758; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,78,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 707; + this.expression(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 708; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 709; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 710; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 711; + this.expression(); + this.state = 716; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 712; + this.match(FlinkSqlParser.COMMA); + this.state = 713; + this.expression(); + this.state = 718; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 719; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 721; + this.match(FlinkSqlParser.CUBE); + this.state = 722; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 723; + this.expression(); + this.state = 728; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 724; + this.match(FlinkSqlParser.COMMA); + this.state = 725; + this.expression(); + this.state = 730; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 731; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 733; + this.match(FlinkSqlParser.ROLLUP); + this.state = 734; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 735; + this.expression(); + this.state = 740; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 736; + this.match(FlinkSqlParser.COMMA); + this.state = 737; + this.expression(); + this.state = 742; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 743; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 745; + this.match(FlinkSqlParser.GROUPING); + this.state = 746; + this.match(FlinkSqlParser.SETS); + this.state = 747; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 748; + this.groupItemDefinition(); + this.state = 753; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 749; + this.match(FlinkSqlParser.COMMA); + this.state = 750; + this.groupItemDefinition(); + this.state = 755; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 756; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function HavingClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_havingClause; + return this; +} + +HavingClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +HavingClauseContext.prototype.constructor = HavingClauseContext; + +HavingClauseContext.prototype.HAVING = function() { + return this.getToken(FlinkSqlParser.HAVING, 0); +}; + +HavingClauseContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +HavingClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterHavingClause(this); + } +}; + +HavingClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitHavingClause(this); + } +}; + +HavingClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitHavingClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.HavingClauseContext = HavingClauseContext; + +FlinkSqlParser.prototype.havingClause = function() { + + var localctx = new HavingClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 108, FlinkSqlParser.RULE_havingClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 760; + this.match(FlinkSqlParser.HAVING); + this.state = 761; + this.booleanExpression(0); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function OrderByCaluseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_orderByCaluse; + return this; +} + +OrderByCaluseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +OrderByCaluseContext.prototype.constructor = OrderByCaluseContext; + +OrderByCaluseContext.prototype.ORDER = function() { + return this.getToken(FlinkSqlParser.ORDER, 0); +}; + +OrderByCaluseContext.prototype.BY = function() { + return this.getToken(FlinkSqlParser.BY, 0); +}; + +OrderByCaluseContext.prototype.orderItemDefition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(OrderItemDefitionContext); + } else { + return this.getTypedRuleContext(OrderItemDefitionContext,i); + } +}; + +OrderByCaluseContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +OrderByCaluseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterOrderByCaluse(this); + } +}; + +OrderByCaluseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitOrderByCaluse(this); + } +}; + +OrderByCaluseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitOrderByCaluse(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.OrderByCaluseContext = OrderByCaluseContext; + +FlinkSqlParser.prototype.orderByCaluse = function() { + + var localctx = new OrderByCaluseContext(this, this._ctx, this.state); + this.enterRule(localctx, 110, FlinkSqlParser.RULE_orderByCaluse); + try { + this.enterOuterAlt(localctx, 1); + this.state = 763; + this.match(FlinkSqlParser.ORDER); + this.state = 764; + this.match(FlinkSqlParser.BY); + this.state = 765; + this.orderItemDefition(); + this.state = 770; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,79,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 766; + this.match(FlinkSqlParser.COMMA); + this.state = 767; + this.orderItemDefition(); + } + this.state = 772; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,79,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function OrderItemDefitionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_orderItemDefition; + return this; +} + +OrderItemDefitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +OrderItemDefitionContext.prototype.constructor = OrderItemDefitionContext; + +OrderItemDefitionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +OrderItemDefitionContext.prototype.ASC = function() { + return this.getToken(FlinkSqlParser.ASC, 0); +}; + +OrderItemDefitionContext.prototype.DESC = function() { + return this.getToken(FlinkSqlParser.DESC, 0); +}; + +OrderItemDefitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterOrderItemDefition(this); + } +}; + +OrderItemDefitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitOrderItemDefition(this); + } +}; + +OrderItemDefitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitOrderItemDefition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.OrderItemDefitionContext = OrderItemDefitionContext; + +FlinkSqlParser.prototype.orderItemDefition = function() { + + var localctx = new OrderItemDefitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 112, FlinkSqlParser.RULE_orderItemDefition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 392; + this.state = 773; + this.expression(); + this.state = 775; this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParser.TABLE) { - this.state = 391; - this.match(FlinkSqlParser.TABLE); + var la_ = this._interp.adaptivePredict(this._input,80,this._ctx); + if(la_===1) { + this.state = 774; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.ASC || _la===FlinkSqlParser.DESC)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function LimitClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_limitClause; + this.limit = null; // ExpressionContext + return this; +} + +LimitClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LimitClauseContext.prototype.constructor = LimitClauseContext; + +LimitClauseContext.prototype.LIMIT = function() { + return this.getToken(FlinkSqlParser.LIMIT, 0); +}; + +LimitClauseContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParser.ALL, 0); +}; + +LimitClauseContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +LimitClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLimitClause(this); + } +}; + +LimitClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLimitClause(this); + } +}; + +LimitClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLimitClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.LimitClauseContext = LimitClauseContext; + +FlinkSqlParser.prototype.limitClause = function() { + + var localctx = new LimitClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 114, FlinkSqlParser.RULE_limitClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 777; + this.match(FlinkSqlParser.LIMIT); + this.state = 780; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.ALL: + this.state = 778; + this.match(FlinkSqlParser.ALL); + break; + case FlinkSqlParser.NOT: + case FlinkSqlParser.EXISTS: + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + case FlinkSqlParser.INTERVAL: + case FlinkSqlParser.CASE: + case FlinkSqlParser.FIRST: + case FlinkSqlParser.LAST: + case FlinkSqlParser.POSITION: + case FlinkSqlParser.NULL: + case FlinkSqlParser.BIT_NOT_OP: + case FlinkSqlParser.LR_BRACKET: + case FlinkSqlParser.ASTERISK_SIGN: + case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.ADD_SIGN: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + case FlinkSqlParser.BIT_STRING: + case FlinkSqlParser.ID: + this.state = 779; + localctx.limit = this.expression(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WindowClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_windowClause; + return this; +} + +WindowClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WindowClauseContext.prototype.constructor = WindowClauseContext; + +WindowClauseContext.prototype.WINDOW = function() { + return this.getToken(FlinkSqlParser.WINDOW, 0); +}; + +WindowClauseContext.prototype.namedWindow = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(NamedWindowContext); + } else { + return this.getTypedRuleContext(NamedWindowContext,i); + } +}; + +WindowClauseContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +WindowClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWindowClause(this); + } +}; + +WindowClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWindowClause(this); + } +}; + +WindowClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWindowClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WindowClauseContext = WindowClauseContext; + +FlinkSqlParser.prototype.windowClause = function() { + + var localctx = new WindowClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 116, FlinkSqlParser.RULE_windowClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 782; + this.match(FlinkSqlParser.WINDOW); + this.state = 783; + this.namedWindow(); + this.state = 788; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,82,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 784; + this.match(FlinkSqlParser.COMMA); + this.state = 785; + this.namedWindow(); + } + this.state = 790; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,82,this._ctx); } - this.state = 394; - this.uid(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function NamedWindowContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_namedWindow; + this.name = null; // ErrorCapturingIdentifierContext + return this; +} + +NamedWindowContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +NamedWindowContext.prototype.constructor = NamedWindowContext; + +NamedWindowContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +NamedWindowContext.prototype.windowSpec = function() { + return this.getTypedRuleContext(WindowSpecContext,0); +}; + +NamedWindowContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +NamedWindowContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterNamedWindow(this); + } +}; + +NamedWindowContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitNamedWindow(this); + } +}; + +NamedWindowContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitNamedWindow(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.NamedWindowContext = NamedWindowContext; + +FlinkSqlParser.prototype.namedWindow = function() { + + var localctx = new NamedWindowContext(this, this._ctx, this.state); + this.enterRule(localctx, 118, FlinkSqlParser.RULE_namedWindow); + try { + this.enterOuterAlt(localctx, 1); + this.state = 791; + localctx.name = this.errorCapturingIdentifier(); + this.state = 792; + this.match(FlinkSqlParser.AS); + this.state = 793; + this.windowSpec(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WindowSpecContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_windowSpec; + this.name = null; // ErrorCapturingIdentifierContext + return this; +} + +WindowSpecContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WindowSpecContext.prototype.constructor = WindowSpecContext; + +WindowSpecContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +WindowSpecContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +WindowSpecContext.prototype.ORDER = function() { + return this.getToken(FlinkSqlParser.ORDER, 0); +}; + +WindowSpecContext.prototype.BY = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.BY); + } else { + return this.getToken(FlinkSqlParser.BY, i); + } +}; + + +WindowSpecContext.prototype.sortItem = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(SortItemContext); + } else { + return this.getTypedRuleContext(SortItemContext,i); + } +}; + +WindowSpecContext.prototype.PARTITION = function() { + return this.getToken(FlinkSqlParser.PARTITION, 0); +}; + +WindowSpecContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +WindowSpecContext.prototype.windowFrame = function() { + return this.getTypedRuleContext(WindowFrameContext,0); +}; + +WindowSpecContext.prototype.errorCapturingIdentifier = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierContext,0); +}; + +WindowSpecContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +WindowSpecContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWindowSpec(this); + } +}; + +WindowSpecContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWindowSpec(this); + } +}; + +WindowSpecContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWindowSpec(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WindowSpecContext = WindowSpecContext; + +FlinkSqlParser.prototype.windowSpec = function() { + + var localctx = new WindowSpecContext(this, this._ctx, this.state); + this.enterRule(localctx, 120, FlinkSqlParser.RULE_windowSpec); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 796; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(((((_la - 305)) & ~0x1f) == 0 && ((1 << (_la - 305)) & ((1 << (FlinkSqlParser.STRING_LITERAL - 305)) | (1 << (FlinkSqlParser.DIG_LITERAL - 305)) | (1 << (FlinkSqlParser.ID - 305)))) !== 0)) { + this.state = 795; + localctx.name = this.errorCapturingIdentifier(); + } + + this.state = 798; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 809; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ORDER) { + this.state = 799; + this.match(FlinkSqlParser.ORDER); + this.state = 800; + this.match(FlinkSqlParser.BY); + this.state = 801; + this.sortItem(); + this.state = 806; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 802; + this.match(FlinkSqlParser.COMMA); + this.state = 803; + this.sortItem(); + this.state = 808; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + this.state = 821; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.PARTITION) { + this.state = 811; + this.match(FlinkSqlParser.PARTITION); + this.state = 812; + this.match(FlinkSqlParser.BY); + this.state = 813; + this.expression(); + this.state = 818; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 814; + this.match(FlinkSqlParser.COMMA); + this.state = 815; + this.expression(); + this.state = 820; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + this.state = 824; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.RANGE || _la===FlinkSqlParser.ROWS) { + this.state = 823; + this.windowFrame(); + } + + this.state = 826; + this.match(FlinkSqlParser.RR_BRACKET); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SortItemContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_sortItem; + this.ordering = null; // Token + this.nullOrder = null; // Token + return this; +} + +SortItemContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SortItemContext.prototype.constructor = SortItemContext; + +SortItemContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +SortItemContext.prototype.NULLS = function() { + return this.getToken(FlinkSqlParser.NULLS, 0); +}; + +SortItemContext.prototype.ASC = function() { + return this.getToken(FlinkSqlParser.ASC, 0); +}; + +SortItemContext.prototype.DESC = function() { + return this.getToken(FlinkSqlParser.DESC, 0); +}; + +SortItemContext.prototype.LAST = function() { + return this.getToken(FlinkSqlParser.LAST, 0); +}; + +SortItemContext.prototype.FIRST = function() { + return this.getToken(FlinkSqlParser.FIRST, 0); +}; + +SortItemContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSortItem(this); + } +}; + +SortItemContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSortItem(this); + } +}; + +SortItemContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSortItem(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.SortItemContext = SortItemContext; + +FlinkSqlParser.prototype.sortItem = function() { + + var localctx = new SortItemContext(this, this._ctx, this.state); + this.enterRule(localctx, 122, FlinkSqlParser.RULE_sortItem); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 828; + this.expression(); + this.state = 830; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ASC || _la===FlinkSqlParser.DESC) { + this.state = 829; + localctx.ordering = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.ASC || _la===FlinkSqlParser.DESC)) { + localctx.ordering = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 834; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NULLS) { + this.state = 832; + this.match(FlinkSqlParser.NULLS); + this.state = 833; + localctx.nullOrder = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.FIRST || _la===FlinkSqlParser.LAST)) { + localctx.nullOrder = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function WindowFrameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_windowFrame; + return this; +} + +WindowFrameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WindowFrameContext.prototype.constructor = WindowFrameContext; + +WindowFrameContext.prototype.RANGE = function() { + return this.getToken(FlinkSqlParser.RANGE, 0); +}; + +WindowFrameContext.prototype.frameBound = function() { + return this.getTypedRuleContext(FrameBoundContext,0); +}; + +WindowFrameContext.prototype.ROWS = function() { + return this.getToken(FlinkSqlParser.ROWS, 0); +}; + +WindowFrameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWindowFrame(this); + } +}; + +WindowFrameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWindowFrame(this); + } +}; + +WindowFrameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWindowFrame(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WindowFrameContext = WindowFrameContext; + +FlinkSqlParser.prototype.windowFrame = function() { + + var localctx = new WindowFrameContext(this, this._ctx, this.state); + this.enterRule(localctx, 124, FlinkSqlParser.RULE_windowFrame); + try { + this.state = 840; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.RANGE: + this.enterOuterAlt(localctx, 1); + this.state = 836; + this.match(FlinkSqlParser.RANGE); + this.state = 837; + this.frameBound(); + break; + case FlinkSqlParser.ROWS: + this.enterOuterAlt(localctx, 2); + this.state = 838; + this.match(FlinkSqlParser.ROWS); + this.state = 839; + this.frameBound(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function FrameBoundContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_frameBound; + return this; +} + +FrameBoundContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FrameBoundContext.prototype.constructor = FrameBoundContext; + +FrameBoundContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +FrameBoundContext.prototype.PRECEDING = function() { + return this.getToken(FlinkSqlParser.PRECEDING, 0); +}; + +FrameBoundContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFrameBound(this); + } +}; + +FrameBoundContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFrameBound(this); + } +}; + +FrameBoundContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFrameBound(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.FrameBoundContext = FrameBoundContext; + +FlinkSqlParser.prototype.frameBound = function() { + + var localctx = new FrameBoundContext(this, this._ctx, this.state); + this.enterRule(localctx, 126, FlinkSqlParser.RULE_frameBound); + try { + this.enterOuterAlt(localctx, 1); + this.state = 842; + this.expression(); + this.state = 843; + this.match(FlinkSqlParser.PRECEDING); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -4837,10 +8815,10 @@ FlinkSqlParser.ExpressionContext = ExpressionContext; FlinkSqlParser.prototype.expression = function() { var localctx = new ExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 74, FlinkSqlParser.RULE_expression); + this.enterRule(localctx, 128, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localctx, 1); - this.state = 396; + this.state = 845; this.booleanExpression(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4957,6 +8935,53 @@ PredicatedContext.prototype.accept = function(visitor) { }; +function ExistsContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExistsContext.prototype = Object.create(BooleanExpressionContext.prototype); +ExistsContext.prototype.constructor = ExistsContext; + +FlinkSqlParser.ExistsContext = ExistsContext; + +ExistsContext.prototype.EXISTS = function() { + return this.getToken(FlinkSqlParser.EXISTS, 0); +}; + +ExistsContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +ExistsContext.prototype.queryStatement = function() { + return this.getTypedRuleContext(QueryStatementContext,0); +}; + +ExistsContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; +ExistsContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExists(this); + } +}; + +ExistsContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExists(this); + } +}; + +ExistsContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExists(this); + } else { + return visitor.visitChildren(this); + } +}; + + function LogicalBinaryContext(parser, ctx) { BooleanExpressionContext.call(this, parser); this.left = null; // BooleanExpressionContext; @@ -5019,36 +9044,50 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { var _parentState = this.state; var localctx = new BooleanExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 76; - this.enterRecursionRule(localctx, 76, FlinkSqlParser.RULE_booleanExpression, _p); + var _startState = 130; + this.enterRecursionRule(localctx, 130, FlinkSqlParser.RULE_booleanExpression, _p); try { this.enterOuterAlt(localctx, 1); - this.state = 405; + this.state = 859; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,35,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,93,this._ctx); switch(la_) { case 1: localctx = new LogicalNotContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 399; + this.state = 848; this.match(FlinkSqlParser.NOT); - this.state = 400; - this.booleanExpression(4); + this.state = 849; + this.booleanExpression(5); break; case 2: + localctx = new ExistsContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 850; + this.match(FlinkSqlParser.EXISTS); + this.state = 851; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 852; + this.queryStatement(0); + this.state = 853; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 3: localctx = new PredicatedContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 401; + this.state = 855; this.valueExpression(0); - this.state = 403; + this.state = 857; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,92,this._ctx); if(la_===1) { - this.state = 402; + this.state = 856; this.predicate(); } @@ -5056,30 +9095,30 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { } this._ctx.stop = this._input.LT(-1); - this.state = 415; + this.state = 869; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,37,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,95,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { this.triggerExitRuleEvent(); } _prevctx = localctx; - this.state = 413; + this.state = 867; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,36,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,94,this._ctx); switch(la_) { case 1: localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 407; + this.state = 861; if (!( this.precpred(this._ctx, 2))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); } - this.state = 408; + this.state = 862; localctx.operator = this.match(FlinkSqlParser.AND); - this.state = 409; + this.state = 863; localctx.right = this.booleanExpression(3); break; @@ -5087,21 +9126,21 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 410; + this.state = 864; if (!( this.precpred(this._ctx, 1))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); } - this.state = 411; + this.state = 865; localctx.operator = this.match(FlinkSqlParser.OR); - this.state = 412; + this.state = 866; localctx.right = this.booleanExpression(2); break; } } - this.state = 417; + this.state = 871; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,37,this._ctx); + _alt = this._interp.adaptivePredict(this._input,95,this._ctx); } } catch( error) { @@ -5199,6 +9238,14 @@ PredicateContext.prototype.COMMA = function(i) { }; +PredicateContext.prototype.queryStatement = function() { + return this.getTypedRuleContext(QueryStatementContext,0); +}; + +PredicateContext.prototype.EXISTS = function() { + return this.getToken(FlinkSqlParser.EXISTS, 0); +}; + PredicateContext.prototype.RLIKE = function() { return this.getToken(FlinkSqlParser.RLIKE, 0); }; @@ -5267,94 +9314,126 @@ FlinkSqlParser.PredicateContext = PredicateContext; FlinkSqlParser.prototype.predicate = function() { var localctx = new PredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 78, FlinkSqlParser.RULE_predicate); + this.enterRule(localctx, 132, FlinkSqlParser.RULE_predicate); var _la = 0; // Token type try { - this.state = 488; + this.state = 955; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,108,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 419; + this.state = 873; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 418; + this.state = 872; this.match(FlinkSqlParser.NOT); } - this.state = 421; + this.state = 875; localctx.kind = this.match(FlinkSqlParser.BETWEEN); - this.state = 422; + this.state = 876; localctx.lower = this.valueExpression(0); - this.state = 423; + this.state = 877; this.match(FlinkSqlParser.AND); - this.state = 424; + this.state = 878; localctx.upper = this.valueExpression(0); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 427; + this.state = 881; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 426; + this.state = 880; this.match(FlinkSqlParser.NOT); } - this.state = 429; + this.state = 883; localctx.kind = this.match(FlinkSqlParser.IN); - this.state = 430; + this.state = 884; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 431; + this.state = 885; this.expression(); - this.state = 436; + this.state = 890; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 432; + this.state = 886; this.match(FlinkSqlParser.COMMA); - this.state = 433; + this.state = 887; this.expression(); - this.state = 438; + this.state = 892; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 439; + this.state = 893; this.match(FlinkSqlParser.RR_BRACKET); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 442; + this.state = 896; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 441; + this.state = 895; this.match(FlinkSqlParser.NOT); } - this.state = 444; - localctx.kind = this.match(FlinkSqlParser.RLIKE); - this.state = 445; - localctx.pattern = this.valueExpression(0); + this.state = 898; + localctx.kind = this.match(FlinkSqlParser.IN); + this.state = 899; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 900; + this.queryStatement(0); + this.state = 901; + this.match(FlinkSqlParser.RR_BRACKET); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 447; + this.state = 903; + localctx.kind = this.match(FlinkSqlParser.EXISTS); + this.state = 904; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 905; + this.queryStatement(0); + this.state = 906; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 909; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 446; + this.state = 908; this.match(FlinkSqlParser.NOT); } - this.state = 449; + this.state = 911; + localctx.kind = this.match(FlinkSqlParser.RLIKE); + this.state = 912; + localctx.pattern = this.valueExpression(0); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 914; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 913; + this.match(FlinkSqlParser.NOT); + } + + this.state = 916; localctx.kind = this.match(FlinkSqlParser.LIKE); - this.state = 450; + this.state = 917; localctx.quantifier = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.ANY)) { @@ -5364,86 +9443,86 @@ FlinkSqlParser.prototype.predicate = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 464; + this.state = 931; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,103,this._ctx); switch(la_) { case 1: - this.state = 451; + this.state = 918; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 452; + this.state = 919; this.match(FlinkSqlParser.RR_BRACKET); break; case 2: - this.state = 453; + this.state = 920; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 454; + this.state = 921; this.expression(); - this.state = 459; + this.state = 926; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 455; + this.state = 922; this.match(FlinkSqlParser.COMMA); - this.state = 456; + this.state = 923; this.expression(); - this.state = 461; + this.state = 928; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 462; + this.state = 929; this.match(FlinkSqlParser.RR_BRACKET); break; } break; - case 5: - this.enterOuterAlt(localctx, 5); - this.state = 467; + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 934; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 466; + this.state = 933; this.match(FlinkSqlParser.NOT); } - this.state = 469; + this.state = 936; localctx.kind = this.match(FlinkSqlParser.LIKE); - this.state = 470; + this.state = 937; localctx.pattern = this.valueExpression(0); break; - case 6: - this.enterOuterAlt(localctx, 6); - this.state = 471; + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 938; this.match(FlinkSqlParser.IS); - this.state = 473; + this.state = 940; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 472; + this.state = 939; this.match(FlinkSqlParser.NOT); } - this.state = 475; + this.state = 942; localctx.kind = this.match(FlinkSqlParser.NULL); break; - case 7: - this.enterOuterAlt(localctx, 7); - this.state = 476; + case 9: + this.enterOuterAlt(localctx, 9); + this.state = 943; this.match(FlinkSqlParser.IS); - this.state = 478; + this.state = 945; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 477; + this.state = 944; this.match(FlinkSqlParser.NOT); } - this.state = 480; + this.state = 947; localctx.kind = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE)) { @@ -5455,23 +9534,23 @@ FlinkSqlParser.prototype.predicate = function() { } break; - case 8: - this.enterOuterAlt(localctx, 8); - this.state = 481; + case 10: + this.enterOuterAlt(localctx, 10); + this.state = 948; this.match(FlinkSqlParser.IS); - this.state = 483; + this.state = 950; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 482; + this.state = 949; this.match(FlinkSqlParser.NOT); } - this.state = 485; + this.state = 952; localctx.kind = this.match(FlinkSqlParser.DISTINCT); - this.state = 486; + this.state = 953; this.match(FlinkSqlParser.FROM); - this.state = 487; + this.state = 954; localctx.right = this.valueExpression(0); break; @@ -5621,44 +9700,44 @@ ArithmeticBinaryContext.prototype.valueExpression = function(i) { } }; -ArithmeticBinaryContext.prototype.ASTERISK = function() { - return this.getToken(FlinkSqlParser.ASTERISK, 0); +ArithmeticBinaryContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); }; -ArithmeticBinaryContext.prototype.SLASH = function() { - return this.getToken(FlinkSqlParser.SLASH, 0); +ArithmeticBinaryContext.prototype.SLASH_SIGN = function() { + return this.getToken(FlinkSqlParser.SLASH_SIGN, 0); }; -ArithmeticBinaryContext.prototype.PERCENT = function() { - return this.getToken(FlinkSqlParser.PERCENT, 0); +ArithmeticBinaryContext.prototype.PENCENT_SIGN = function() { + return this.getToken(FlinkSqlParser.PENCENT_SIGN, 0); }; ArithmeticBinaryContext.prototype.DIV = function() { return this.getToken(FlinkSqlParser.DIV, 0); }; -ArithmeticBinaryContext.prototype.PLUS = function() { - return this.getToken(FlinkSqlParser.PLUS, 0); +ArithmeticBinaryContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParser.ADD_SIGN, 0); }; -ArithmeticBinaryContext.prototype.MINUS = function() { - return this.getToken(FlinkSqlParser.MINUS, 0); +ArithmeticBinaryContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); }; -ArithmeticBinaryContext.prototype.CONCAT_PIPE = function() { - return this.getToken(FlinkSqlParser.CONCAT_PIPE, 0); +ArithmeticBinaryContext.prototype.DOUBLE_VERTICAL_SIGN = function() { + return this.getToken(FlinkSqlParser.DOUBLE_VERTICAL_SIGN, 0); }; -ArithmeticBinaryContext.prototype.AMPERSAND = function() { - return this.getToken(FlinkSqlParser.AMPERSAND, 0); +ArithmeticBinaryContext.prototype.BIT_AND_OP = function() { + return this.getToken(FlinkSqlParser.BIT_AND_OP, 0); }; -ArithmeticBinaryContext.prototype.HAT = function() { - return this.getToken(FlinkSqlParser.HAT, 0); +ArithmeticBinaryContext.prototype.BIT_XOR_OP = function() { + return this.getToken(FlinkSqlParser.BIT_XOR_OP, 0); }; -ArithmeticBinaryContext.prototype.PIPE = function() { - return this.getToken(FlinkSqlParser.PIPE, 0); +ArithmeticBinaryContext.prototype.BIT_OR_OP = function() { + return this.getToken(FlinkSqlParser.BIT_OR_OP, 0); }; ArithmeticBinaryContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -5697,16 +9776,16 @@ ArithmeticUnaryContext.prototype.valueExpression = function() { return this.getTypedRuleContext(ValueExpressionContext,0); }; -ArithmeticUnaryContext.prototype.MINUS = function() { - return this.getToken(FlinkSqlParser.MINUS, 0); +ArithmeticUnaryContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); }; -ArithmeticUnaryContext.prototype.PLUS = function() { - return this.getToken(FlinkSqlParser.PLUS, 0); +ArithmeticUnaryContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParser.ADD_SIGN, 0); }; -ArithmeticUnaryContext.prototype.TILDE = function() { - return this.getToken(FlinkSqlParser.TILDE, 0); +ArithmeticUnaryContext.prototype.BIT_NOT_OP = function() { + return this.getToken(FlinkSqlParser.BIT_NOT_OP, 0); }; ArithmeticUnaryContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -5738,94 +9817,76 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { var _parentState = this.state; var localctx = new ValueExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 80; - this.enterRecursionRule(localctx, 80, FlinkSqlParser.RULE_valueExpression, _p); + var _startState = 134; + this.enterRecursionRule(localctx, 134, FlinkSqlParser.RULE_valueExpression, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 494; + this.state = 961; this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParser.NOT: - case FlinkSqlParser.TRUE: - case FlinkSqlParser.FALSE: - case FlinkSqlParser.CASE: - case FlinkSqlParser.FIRST: - case FlinkSqlParser.LAST: - case FlinkSqlParser.POSITION: - case FlinkSqlParser.ASTERISK: - case FlinkSqlParser.NULL: - case FlinkSqlParser.LR_BRACKET: - case FlinkSqlParser.ZERO_DECIMAL: - case FlinkSqlParser.ONE_DECIMAL: - case FlinkSqlParser.TWO_DECIMAL: - case FlinkSqlParser.HYPNEN_SIGN: - case FlinkSqlParser.STRING_LITERAL: - case FlinkSqlParser.DECIMAL_LITERAL: - case FlinkSqlParser.REAL_LITERAL: - case FlinkSqlParser.BIT_STRING: + var la_ = this._interp.adaptivePredict(this._input,109,this._ctx); + switch(la_) { + case 1: localctx = new ValueExpressionDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 491; + this.state = 958; this.primaryExpression(0); break; - case FlinkSqlParser.PLUS: - case FlinkSqlParser.MINUS: - case FlinkSqlParser.TILDE: + + case 2: localctx = new ArithmeticUnaryContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 492; + this.state = 959; localctx.operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 128)) & ~0x1f) == 0 && ((1 << (_la - 128)) & ((1 << (FlinkSqlParser.PLUS - 128)) | (1 << (FlinkSqlParser.MINUS - 128)) | (1 << (FlinkSqlParser.TILDE - 128)))) !== 0))) { + if(!(((((_la - 280)) & ~0x1f) == 0 && ((1 << (_la - 280)) & ((1 << (FlinkSqlParser.BIT_NOT_OP - 280)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 280)) | (1 << (FlinkSqlParser.ADD_SIGN - 280)))) !== 0))) { localctx.operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 493; + this.state = 960; this.valueExpression(7); break; - default: - throw new antlr4.error.NoViableAltException(this); + } this._ctx.stop = this._input.LT(-1); - this.state = 517; + this.state = 984; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,52,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,111,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { this.triggerExitRuleEvent(); } _prevctx = localctx; - this.state = 515; + this.state = 982; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,51,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,110,this._ctx); switch(la_) { case 1: localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 496; + this.state = 963; if (!( this.precpred(this._ctx, 6))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); } - this.state = 497; + this.state = 964; localctx.operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 130)) & ~0x1f) == 0 && ((1 << (_la - 130)) & ((1 << (FlinkSqlParser.ASTERISK - 130)) | (1 << (FlinkSqlParser.SLASH - 130)) | (1 << (FlinkSqlParser.PERCENT - 130)) | (1 << (FlinkSqlParser.DIV - 130)))) !== 0))) { + if(!(_la===FlinkSqlParser.DIV || ((((_la - 296)) & ~0x1f) == 0 && ((1 << (_la - 296)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 296)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 296)) | (1 << (FlinkSqlParser.SLASH_SIGN - 296)))) !== 0))) { localctx.operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 498; + this.state = 965; localctx.right = this.valueExpression(7); break; @@ -5833,21 +9894,21 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 499; + this.state = 966; if (!( this.precpred(this._ctx, 5))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); } - this.state = 500; + this.state = 967; localctx.operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 128)) & ~0x1f) == 0 && ((1 << (_la - 128)) & ((1 << (FlinkSqlParser.PLUS - 128)) | (1 << (FlinkSqlParser.MINUS - 128)) | (1 << (FlinkSqlParser.CONCAT_PIPE - 128)))) !== 0))) { + if(!(((((_la - 298)) & ~0x1f) == 0 && ((1 << (_la - 298)) & ((1 << (FlinkSqlParser.HYPNEN_SIGN - 298)) | (1 << (FlinkSqlParser.ADD_SIGN - 298)) | (1 << (FlinkSqlParser.DOUBLE_VERTICAL_SIGN - 298)))) !== 0))) { localctx.operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 501; + this.state = 968; localctx.right = this.valueExpression(6); break; @@ -5855,13 +9916,13 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 502; + this.state = 969; if (!( this.precpred(this._ctx, 4))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); } - this.state = 503; - localctx.operator = this.match(FlinkSqlParser.AMPERSAND); - this.state = 504; + this.state = 970; + localctx.operator = this.match(FlinkSqlParser.BIT_AND_OP); + this.state = 971; localctx.right = this.valueExpression(5); break; @@ -5869,13 +9930,13 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 505; + this.state = 972; if (!( this.precpred(this._ctx, 3))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); } - this.state = 506; - localctx.operator = this.match(FlinkSqlParser.HAT); - this.state = 507; + this.state = 973; + localctx.operator = this.match(FlinkSqlParser.BIT_XOR_OP); + this.state = 974; localctx.right = this.valueExpression(4); break; @@ -5883,13 +9944,13 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 508; + this.state = 975; if (!( this.precpred(this._ctx, 2))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); } - this.state = 509; - localctx.operator = this.match(FlinkSqlParser.PIPE); - this.state = 510; + this.state = 976; + localctx.operator = this.match(FlinkSqlParser.BIT_OR_OP); + this.state = 977; localctx.right = this.valueExpression(3); break; @@ -5897,21 +9958,21 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 511; + this.state = 978; if (!( this.precpred(this._ctx, 1))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); } - this.state = 512; + this.state = 979; this.comparisonOperator(); - this.state = 513; + this.state = 980; localctx.right = this.valueExpression(2); break; } } - this.state = 519; + this.state = 986; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,52,this._ctx); + _alt = this._interp.adaptivePredict(this._input,111,this._ctx); } } catch( error) { @@ -5951,6 +10012,41 @@ PrimaryExpressionContext.prototype.copyFrom = function(ctx) { antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); }; +function DereferenceContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +DereferenceContext.prototype = Object.create(PrimaryExpressionContext.prototype); +DereferenceContext.prototype.constructor = DereferenceContext; + +FlinkSqlParser.DereferenceContext = DereferenceContext; + +DereferenceContext.prototype.dereferenceDefinition = function() { + return this.getTypedRuleContext(DereferenceDefinitionContext,0); +}; +DereferenceContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDereference(this); + } +}; + +DereferenceContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDereference(this); + } +}; + +DereferenceContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDereference(this); + } else { + return visitor.visitChildren(this); + } +}; + + function SimpleCaseContext(parser, ctx) { PrimaryExpressionContext.call(this, parser); this.value = null; // ExpressionContext; @@ -6018,6 +10114,231 @@ SimpleCaseContext.prototype.accept = function(visitor) { }; +function ColumnReferenceContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ColumnReferenceContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ColumnReferenceContext.prototype.constructor = ColumnReferenceContext; + +FlinkSqlParser.ColumnReferenceContext = ColumnReferenceContext; + +ColumnReferenceContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; +ColumnReferenceContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterColumnReference(this); + } +}; + +ColumnReferenceContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitColumnReference(this); + } +}; + +ColumnReferenceContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitColumnReference(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LastContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LastContext.prototype = Object.create(PrimaryExpressionContext.prototype); +LastContext.prototype.constructor = LastContext; + +FlinkSqlParser.LastContext = LastContext; + +LastContext.prototype.LAST = function() { + return this.getToken(FlinkSqlParser.LAST, 0); +}; + +LastContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +LastContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +LastContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +LastContext.prototype.IGNORE = function() { + return this.getToken(FlinkSqlParser.IGNORE, 0); +}; + +LastContext.prototype.NULLS = function() { + return this.getToken(FlinkSqlParser.NULLS, 0); +}; +LastContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLast(this); + } +}; + +LastContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLast(this); + } +}; + +LastContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLast(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function StarContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StarContext.prototype = Object.create(PrimaryExpressionContext.prototype); +StarContext.prototype.constructor = StarContext; + +FlinkSqlParser.StarContext = StarContext; + +StarContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); +}; + +StarContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +StarContext.prototype.DOT = function() { + return this.getToken(FlinkSqlParser.DOT, 0); +}; +StarContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterStar(this); + } +}; + +StarContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitStar(this); + } +}; + +StarContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitStar(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubscriptContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // PrimaryExpressionContext; + this.index = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubscriptContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubscriptContext.prototype.constructor = SubscriptContext; + +FlinkSqlParser.SubscriptContext = SubscriptContext; + +SubscriptContext.prototype.LS_BRACKET = function() { + return this.getToken(FlinkSqlParser.LS_BRACKET, 0); +}; + +SubscriptContext.prototype.RS_BRACKET = function() { + return this.getToken(FlinkSqlParser.RS_BRACKET, 0); +}; + +SubscriptContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; + +SubscriptContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; +SubscriptContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSubscript(this); + } +}; + +SubscriptContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSubscript(this); + } +}; + +SubscriptContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSubscript(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubqueryExpressionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubqueryExpressionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubqueryExpressionContext.prototype.constructor = SubqueryExpressionContext; + +FlinkSqlParser.SubqueryExpressionContext = SubqueryExpressionContext; + +SubqueryExpressionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +SubqueryExpressionContext.prototype.queryStatement = function() { + return this.getTypedRuleContext(QueryStatementContext,0); +}; + +SubqueryExpressionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; +SubqueryExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSubqueryExpression(this); + } +}; + +SubqueryExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSubqueryExpression(this); + } +}; + +SubqueryExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSubqueryExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + function ConstantDefaultContext(parser, ctx) { PrimaryExpressionContext.call(this, parser); PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); @@ -6096,139 +10417,70 @@ ParenthesizedExpressionContext.prototype.accept = function(visitor) { }; -function LastContext(parser, ctx) { +function FunctionCallContext(parser, ctx) { PrimaryExpressionContext.call(this, parser); PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); return this; } -LastContext.prototype = Object.create(PrimaryExpressionContext.prototype); -LastContext.prototype.constructor = LastContext; +FunctionCallContext.prototype = Object.create(PrimaryExpressionContext.prototype); +FunctionCallContext.prototype.constructor = FunctionCallContext; -FlinkSqlParser.LastContext = LastContext; +FlinkSqlParser.FunctionCallContext = FunctionCallContext; -LastContext.prototype.LAST = function() { - return this.getToken(FlinkSqlParser.LAST, 0); +FunctionCallContext.prototype.functionName = function() { + return this.getTypedRuleContext(FunctionNameContext,0); }; -LastContext.prototype.LR_BRACKET = function() { +FunctionCallContext.prototype.LR_BRACKET = function() { return this.getToken(FlinkSqlParser.LR_BRACKET, 0); }; -LastContext.prototype.expression = function() { - return this.getTypedRuleContext(ExpressionContext,0); -}; - -LastContext.prototype.RR_BRACKET = function() { +FunctionCallContext.prototype.RR_BRACKET = function() { return this.getToken(FlinkSqlParser.RR_BRACKET, 0); }; -LastContext.prototype.IGNORE = function() { - return this.getToken(FlinkSqlParser.IGNORE, 0); -}; - -LastContext.prototype.NULLS = function() { - return this.getToken(FlinkSqlParser.NULLS, 0); -}; -LastContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterLast(this); - } -}; - -LastContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitLast(this); - } -}; - -LastContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitLast(this); +FunctionCallContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); } else { - return visitor.visitChildren(this); + return this.getTypedRuleContext(ExpressionContext,i); } }; - -function StarContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -StarContext.prototype = Object.create(PrimaryExpressionContext.prototype); -StarContext.prototype.constructor = StarContext; - -FlinkSqlParser.StarContext = StarContext; - -StarContext.prototype.ASTERISK = function() { - return this.getToken(FlinkSqlParser.ASTERISK, 0); +FunctionCallContext.prototype.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,0); }; -StarContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterStar(this); + +FunctionCallContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; } -}; - -StarContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitStar(this); - } -}; - -StarContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitStar(this); + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); } else { - return visitor.visitChildren(this); + return this.getToken(FlinkSqlParser.COMMA, i); } }; - -function SubscriptContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - this.value = null; // PrimaryExpressionContext; - this.index = null; // ValueExpressionContext; - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -SubscriptContext.prototype = Object.create(PrimaryExpressionContext.prototype); -SubscriptContext.prototype.constructor = SubscriptContext; - -FlinkSqlParser.SubscriptContext = SubscriptContext; - -SubscriptContext.prototype.LS_BRACKET = function() { - return this.getToken(FlinkSqlParser.LS_BRACKET, 0); -}; - -SubscriptContext.prototype.RS_BRACKET = function() { - return this.getToken(FlinkSqlParser.RS_BRACKET, 0); -}; - -SubscriptContext.prototype.primaryExpression = function() { - return this.getTypedRuleContext(PrimaryExpressionContext,0); -}; - -SubscriptContext.prototype.valueExpression = function() { - return this.getTypedRuleContext(ValueExpressionContext,0); -}; -SubscriptContext.prototype.enterRule = function(listener) { +FunctionCallContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.enterSubscript(this); + listener.enterFunctionCall(this); } }; -SubscriptContext.prototype.exitRule = function(listener) { +FunctionCallContext.prototype.exitRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.exitSubscript(this); + listener.exitFunctionCall(this); } }; -SubscriptContext.prototype.accept = function(visitor) { +FunctionCallContext.prototype.accept = function(visitor) { if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSubscript(this); + return visitor.visitFunctionCall(this); } else { return visitor.visitChildren(this); } @@ -6418,43 +10670,43 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { var _parentState = this.state; var localctx = new PrimaryExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 82; - this.enterRecursionRule(localctx, 82, FlinkSqlParser.RULE_primaryExpression, _p); + var _startState = 136; + this.enterRecursionRule(localctx, 136, FlinkSqlParser.RULE_primaryExpression, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 577; + this.state = 1071; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,121,this._ctx); switch(la_) { case 1: localctx = new SearchedCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 521; + this.state = 988; this.match(FlinkSqlParser.CASE); - this.state = 523; + this.state = 990; this._errHandler.sync(this); _la = this._input.LA(1); do { - this.state = 522; + this.state = 989; this.whenClause(); - this.state = 525; + this.state = 992; this._errHandler.sync(this); _la = this._input.LA(1); } while(_la===FlinkSqlParser.WHEN); - this.state = 529; + this.state = 996; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ELSE) { - this.state = 527; + this.state = 994; this.match(FlinkSqlParser.ELSE); - this.state = 528; + this.state = 995; localctx.elseExpression = this.expression(); } - this.state = 531; + this.state = 998; this.match(FlinkSqlParser.END); break; @@ -6462,31 +10714,31 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new SimpleCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 533; + this.state = 1000; this.match(FlinkSqlParser.CASE); - this.state = 534; + this.state = 1001; localctx.value = this.expression(); - this.state = 536; + this.state = 1003; this._errHandler.sync(this); _la = this._input.LA(1); do { - this.state = 535; + this.state = 1002; this.whenClause(); - this.state = 538; + this.state = 1005; this._errHandler.sync(this); _la = this._input.LA(1); } while(_la===FlinkSqlParser.WHEN); - this.state = 542; + this.state = 1009; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ELSE) { - this.state = 540; + this.state = 1007; this.match(FlinkSqlParser.ELSE); - this.state = 541; + this.state = 1008; localctx.elseExpression = this.expression(); } - this.state = 544; + this.state = 1011; this.match(FlinkSqlParser.END); break; @@ -6494,23 +10746,23 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new FirstContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 546; + this.state = 1013; this.match(FlinkSqlParser.FIRST); - this.state = 547; + this.state = 1014; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 548; + this.state = 1015; this.expression(); - this.state = 551; + this.state = 1018; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IGNORE) { - this.state = 549; + this.state = 1016; this.match(FlinkSqlParser.IGNORE); - this.state = 550; + this.state = 1017; this.match(FlinkSqlParser.NULLS); } - this.state = 553; + this.state = 1020; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -6518,23 +10770,23 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new LastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 555; + this.state = 1022; this.match(FlinkSqlParser.LAST); - this.state = 556; + this.state = 1023; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 557; + this.state = 1024; this.expression(); - this.state = 560; + this.state = 1027; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IGNORE) { - this.state = 558; + this.state = 1025; this.match(FlinkSqlParser.IGNORE); - this.state = 559; + this.state = 1026; this.match(FlinkSqlParser.NULLS); } - this.state = 562; + this.state = 1029; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -6542,17 +10794,17 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new PositionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 564; + this.state = 1031; this.match(FlinkSqlParser.POSITION); - this.state = 565; + this.state = 1032; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 566; + this.state = 1033; localctx.substr = this.valueExpression(0); - this.state = 567; + this.state = 1034; this.match(FlinkSqlParser.IN); - this.state = 568; + this.state = 1035; localctx.str = this.valueExpression(0); - this.state = 569; + this.state = 1036; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -6560,7 +10812,7 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new ConstantDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 571; + this.state = 1038; this.constant(); break; @@ -6568,27 +10820,107 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 572; - this.match(FlinkSqlParser.ASTERISK); + this.state = 1039; + this.match(FlinkSqlParser.ASTERISK_SIGN); break; case 8: + localctx = new StarContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 1040; + this.uid(); + this.state = 1041; + this.match(FlinkSqlParser.DOT); + this.state = 1042; + this.match(FlinkSqlParser.ASTERISK_SIGN); + break; + + case 9: + localctx = new SubqueryExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 1044; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1045; + this.queryStatement(0); + this.state = 1046; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 10: + localctx = new FunctionCallContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 1048; + this.functionName(); + this.state = 1049; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1061; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(((((_la - 8)) & ~0x1f) == 0 && ((1 << (_la - 8)) & ((1 << (FlinkSqlParser.ALL - 8)) | (1 << (FlinkSqlParser.DISTINCT - 8)) | (1 << (FlinkSqlParser.NOT - 8)) | (1 << (FlinkSqlParser.EXISTS - 8)) | (1 << (FlinkSqlParser.TRUE - 8)) | (1 << (FlinkSqlParser.FALSE - 8)) | (1 << (FlinkSqlParser.INTERVAL - 8)) | (1 << (FlinkSqlParser.CASE - 8)))) !== 0) || _la===FlinkSqlParser.FIRST || _la===FlinkSqlParser.LAST || _la===FlinkSqlParser.POSITION || ((((_la - 275)) & ~0x1f) == 0 && ((1 << (_la - 275)) & ((1 << (FlinkSqlParser.NULL - 275)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 275)) | (1 << (FlinkSqlParser.LR_BRACKET - 275)) | (1 << (FlinkSqlParser.ASTERISK_SIGN - 275)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 275)) | (1 << (FlinkSqlParser.ADD_SIGN - 275)) | (1 << (FlinkSqlParser.STRING_LITERAL - 275)) | (1 << (FlinkSqlParser.DIG_LITERAL - 275)))) !== 0) || ((((_la - 307)) & ~0x1f) == 0 && ((1 << (_la - 307)) & ((1 << (FlinkSqlParser.REAL_LITERAL - 307)) | (1 << (FlinkSqlParser.BIT_STRING - 307)) | (1 << (FlinkSqlParser.ID - 307)))) !== 0)) { + this.state = 1051; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT) { + this.state = 1050; + this.setQuantifier(); + } + + this.state = 1053; + this.expression(); + this.state = 1058; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 1054; + this.match(FlinkSqlParser.COMMA); + this.state = 1055; + this.expression(); + this.state = 1060; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } + + this.state = 1063; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 11: + localctx = new ColumnReferenceContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 1065; + this.identifier(); + break; + + case 12: + localctx = new DereferenceContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 1066; + this.dereferenceDefinition(); + break; + + case 13: localctx = new ParenthesizedExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 573; + this.state = 1067; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 574; + this.state = 1068; this.expression(); - this.state = 575; + this.state = 1069; this.match(FlinkSqlParser.RR_BRACKET); break; } this._ctx.stop = this._input.LT(-1); - this.state = 586; + this.state = 1080; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,60,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,122,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { @@ -6598,20 +10930,20 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); localctx.value = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 579; - if (!( this.precpred(this._ctx, 2))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + this.state = 1073; + if (!( this.precpred(this._ctx, 4))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); } - this.state = 580; + this.state = 1074; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 581; + this.state = 1075; localctx.index = this.valueExpression(0); - this.state = 582; + this.state = 1076; this.match(FlinkSqlParser.RS_BRACKET); } - this.state = 588; + this.state = 1082; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,60,this._ctx); + _alt = this._interp.adaptivePredict(this._input,122,this._ctx); } } catch( error) { @@ -6629,6 +10961,821 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { }; +function FunctionNameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_functionName; + return this; +} + +FunctionNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FunctionNameContext.prototype.constructor = FunctionNameContext; + +FunctionNameContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +FunctionNameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFunctionName(this); + } +}; + +FunctionNameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFunctionName(this); + } +}; + +FunctionNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFunctionName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.FunctionNameContext = FunctionNameContext; + +FlinkSqlParser.prototype.functionName = function() { + + var localctx = new FunctionNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 138, FlinkSqlParser.RULE_functionName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1083; + this.uid(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function DereferenceDefinitionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_dereferenceDefinition; + return this; +} + +DereferenceDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DereferenceDefinitionContext.prototype.constructor = DereferenceDefinitionContext; + +DereferenceDefinitionContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +DereferenceDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDereferenceDefinition(this); + } +}; + +DereferenceDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDereferenceDefinition(this); + } +}; + +DereferenceDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDereferenceDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.DereferenceDefinitionContext = DereferenceDefinitionContext; + +FlinkSqlParser.prototype.dereferenceDefinition = function() { + + var localctx = new DereferenceDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 140, FlinkSqlParser.RULE_dereferenceDefinition); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1085; + this.uid(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function QualifiedNameContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_qualifiedName; + return this; +} + +QualifiedNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QualifiedNameContext.prototype.constructor = QualifiedNameContext; + +QualifiedNameContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +QualifiedNameContext.prototype.DOT = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.DOT); + } else { + return this.getToken(FlinkSqlParser.DOT, i); + } +}; + + +QualifiedNameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQualifiedName(this); + } +}; + +QualifiedNameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQualifiedName(this); + } +}; + +QualifiedNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQualifiedName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.QualifiedNameContext = QualifiedNameContext; + +FlinkSqlParser.prototype.qualifiedName = function() { + + var localctx = new QualifiedNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 142, FlinkSqlParser.RULE_qualifiedName); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1087; + this.identifier(); + this.state = 1092; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.DOT) { + this.state = 1088; + this.match(FlinkSqlParser.DOT); + this.state = 1089; + this.identifier(); + this.state = 1094; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_interval; + return this; +} + +IntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IntervalContext.prototype.constructor = IntervalContext; + +IntervalContext.prototype.INTERVAL = function() { + return this.getToken(FlinkSqlParser.INTERVAL, 0); +}; + +IntervalContext.prototype.errorCapturingMultiUnitsInterval = function() { + return this.getTypedRuleContext(ErrorCapturingMultiUnitsIntervalContext,0); +}; + +IntervalContext.prototype.errorCapturingUnitToUnitInterval = function() { + return this.getTypedRuleContext(ErrorCapturingUnitToUnitIntervalContext,0); +}; + +IntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterInterval(this); + } +}; + +IntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitInterval(this); + } +}; + +IntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.IntervalContext = IntervalContext; + +FlinkSqlParser.prototype.interval = function() { + + var localctx = new IntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 144, FlinkSqlParser.RULE_interval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1095; + this.match(FlinkSqlParser.INTERVAL); + this.state = 1098; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,124,this._ctx); + if(la_===1) { + this.state = 1096; + this.errorCapturingMultiUnitsInterval(); + + } else if(la_===2) { + this.state = 1097; + this.errorCapturingUnitToUnitInterval(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingMultiUnitsIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval; + return this; +} + +ErrorCapturingMultiUnitsIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingMultiUnitsIntervalContext.prototype.constructor = ErrorCapturingMultiUnitsIntervalContext; + +ErrorCapturingMultiUnitsIntervalContext.prototype.multiUnitsInterval = function() { + return this.getTypedRuleContext(MultiUnitsIntervalContext,0); +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.unitToUnitInterval = function() { + return this.getTypedRuleContext(UnitToUnitIntervalContext,0); +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterErrorCapturingMultiUnitsInterval(this); + } +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitErrorCapturingMultiUnitsInterval(this); + } +}; + +ErrorCapturingMultiUnitsIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitErrorCapturingMultiUnitsInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ErrorCapturingMultiUnitsIntervalContext = ErrorCapturingMultiUnitsIntervalContext; + +FlinkSqlParser.prototype.errorCapturingMultiUnitsInterval = function() { + + var localctx = new ErrorCapturingMultiUnitsIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 146, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1100; + this.multiUnitsInterval(); + this.state = 1102; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,125,this._ctx); + if(la_===1) { + this.state = 1101; + this.unitToUnitInterval(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function MultiUnitsIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_multiUnitsInterval; + return this; +} + +MultiUnitsIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MultiUnitsIntervalContext.prototype.constructor = MultiUnitsIntervalContext; + +MultiUnitsIntervalContext.prototype.intervalValue = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IntervalValueContext); + } else { + return this.getTypedRuleContext(IntervalValueContext,i); + } +}; + +MultiUnitsIntervalContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +MultiUnitsIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterMultiUnitsInterval(this); + } +}; + +MultiUnitsIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitMultiUnitsInterval(this); + } +}; + +MultiUnitsIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitMultiUnitsInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.MultiUnitsIntervalContext = MultiUnitsIntervalContext; + +FlinkSqlParser.prototype.multiUnitsInterval = function() { + + var localctx = new MultiUnitsIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 148, FlinkSqlParser.RULE_multiUnitsInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1107; + this._errHandler.sync(this); + var _alt = 1; + do { + switch (_alt) { + case 1: + this.state = 1104; + this.intervalValue(); + this.state = 1105; + this.identifier(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 1109; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,126, this._ctx); + } while ( _alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER ); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingUnitToUnitIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval; + this.body = null; // UnitToUnitIntervalContext + this.error1 = null; // MultiUnitsIntervalContext + this.error2 = null; // UnitToUnitIntervalContext + return this; +} + +ErrorCapturingUnitToUnitIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingUnitToUnitIntervalContext.prototype.constructor = ErrorCapturingUnitToUnitIntervalContext; + +ErrorCapturingUnitToUnitIntervalContext.prototype.unitToUnitInterval = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(UnitToUnitIntervalContext); + } else { + return this.getTypedRuleContext(UnitToUnitIntervalContext,i); + } +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.multiUnitsInterval = function() { + return this.getTypedRuleContext(MultiUnitsIntervalContext,0); +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterErrorCapturingUnitToUnitInterval(this); + } +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitErrorCapturingUnitToUnitInterval(this); + } +}; + +ErrorCapturingUnitToUnitIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitErrorCapturingUnitToUnitInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ErrorCapturingUnitToUnitIntervalContext = ErrorCapturingUnitToUnitIntervalContext; + +FlinkSqlParser.prototype.errorCapturingUnitToUnitInterval = function() { + + var localctx = new ErrorCapturingUnitToUnitIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 150, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1111; + localctx.body = this.unitToUnitInterval(); + this.state = 1114; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,127,this._ctx); + if(la_===1) { + this.state = 1112; + localctx.error1 = this.multiUnitsInterval(); + + } else if(la_===2) { + this.state = 1113; + localctx.error2 = this.unitToUnitInterval(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function UnitToUnitIntervalContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_unitToUnitInterval; + this.value = null; // IntervalValueContext + this.from = null; // IdentifierContext + this.to = null; // IdentifierContext + return this; +} + +UnitToUnitIntervalContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +UnitToUnitIntervalContext.prototype.constructor = UnitToUnitIntervalContext; + +UnitToUnitIntervalContext.prototype.TO = function() { + return this.getToken(FlinkSqlParser.TO, 0); +}; + +UnitToUnitIntervalContext.prototype.intervalValue = function() { + return this.getTypedRuleContext(IntervalValueContext,0); +}; + +UnitToUnitIntervalContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +UnitToUnitIntervalContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUnitToUnitInterval(this); + } +}; + +UnitToUnitIntervalContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUnitToUnitInterval(this); + } +}; + +UnitToUnitIntervalContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUnitToUnitInterval(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.UnitToUnitIntervalContext = UnitToUnitIntervalContext; + +FlinkSqlParser.prototype.unitToUnitInterval = function() { + + var localctx = new UnitToUnitIntervalContext(this, this._ctx, this.state); + this.enterRule(localctx, 152, FlinkSqlParser.RULE_unitToUnitInterval); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1116; + localctx.value = this.intervalValue(); + this.state = 1117; + localctx.from = this.identifier(); + this.state = 1118; + this.match(FlinkSqlParser.TO); + this.state = 1119; + localctx.to = this.identifier(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IntervalValueContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_intervalValue; + return this; +} + +IntervalValueContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IntervalValueContext.prototype.constructor = IntervalValueContext; + +IntervalValueContext.prototype.DIG_LITERAL = function() { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); +}; + +IntervalValueContext.prototype.REAL_LITERAL = function() { + return this.getToken(FlinkSqlParser.REAL_LITERAL, 0); +}; + +IntervalValueContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParser.ADD_SIGN, 0); +}; + +IntervalValueContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); +}; + +IntervalValueContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); +}; + +IntervalValueContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIntervalValue(this); + } +}; + +IntervalValueContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIntervalValue(this); + } +}; + +IntervalValueContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIntervalValue(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.IntervalValueContext = IntervalValueContext; + +FlinkSqlParser.prototype.intervalValue = function() { + + var localctx = new IntervalValueContext(this, this._ctx, this.state); + this.enterRule(localctx, 154, FlinkSqlParser.RULE_intervalValue); + var _la = 0; // Token type + try { + this.state = 1126; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.ADD_SIGN: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + this.enterOuterAlt(localctx, 1); + this.state = 1122; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.HYPNEN_SIGN || _la===FlinkSqlParser.ADD_SIGN) { + this.state = 1121; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.HYPNEN_SIGN || _la===FlinkSqlParser.ADD_SIGN)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 1124; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.DIG_LITERAL || _la===FlinkSqlParser.REAL_LITERAL)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + case FlinkSqlParser.STRING_LITERAL: + this.enterOuterAlt(localctx, 2); + this.state = 1125; + this.match(FlinkSqlParser.STRING_LITERAL); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + function TableAliasContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -6685,34 +11832,263 @@ FlinkSqlParser.TableAliasContext = TableAliasContext; FlinkSqlParser.prototype.tableAlias = function() { var localctx = new TableAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 84, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localctx, 156, FlinkSqlParser.RULE_tableAlias); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 596; + this.state = 1129; this._errHandler.sync(this); _la = this._input.LA(1); - if(_la===FlinkSqlParser.AS || _la===FlinkSqlParser.STRING_LITERAL || _la===FlinkSqlParser.IDENTIFIER_BASE) { - this.state = 590; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParser.AS) { - this.state = 589; - this.match(FlinkSqlParser.AS); - } - - this.state = 592; - this.strictIdentifier(); - this.state = 594; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParser.LR_BRACKET) { - this.state = 593; - this.identifierList(); - } - + if(_la===FlinkSqlParser.AS) { + this.state = 1128; + this.match(FlinkSqlParser.AS); } + this.state = 1131; + this.strictIdentifier(); + this.state = 1133; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,131,this._ctx); + if(la_===1) { + this.state = 1132; + this.identifierList(); + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_errorCapturingIdentifier; + return this; +} + +ErrorCapturingIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingIdentifierContext.prototype.constructor = ErrorCapturingIdentifierContext; + +ErrorCapturingIdentifierContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +ErrorCapturingIdentifierContext.prototype.errorCapturingIdentifierExtra = function() { + return this.getTypedRuleContext(ErrorCapturingIdentifierExtraContext,0); +}; + +ErrorCapturingIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterErrorCapturingIdentifier(this); + } +}; + +ErrorCapturingIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitErrorCapturingIdentifier(this); + } +}; + +ErrorCapturingIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitErrorCapturingIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ErrorCapturingIdentifierContext = ErrorCapturingIdentifierContext; + +FlinkSqlParser.prototype.errorCapturingIdentifier = function() { + + var localctx = new ErrorCapturingIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 158, FlinkSqlParser.RULE_errorCapturingIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 1135; + this.identifier(); + this.state = 1136; + this.errorCapturingIdentifierExtra(); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ErrorCapturingIdentifierExtraContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_errorCapturingIdentifierExtra; + return this; +} + +ErrorCapturingIdentifierExtraContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ErrorCapturingIdentifierExtraContext.prototype.constructor = ErrorCapturingIdentifierExtraContext; + + + +ErrorCapturingIdentifierExtraContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function ErrorIdentContext(parser, ctx) { + ErrorCapturingIdentifierExtraContext.call(this, parser); + ErrorCapturingIdentifierExtraContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ErrorIdentContext.prototype = Object.create(ErrorCapturingIdentifierExtraContext.prototype); +ErrorIdentContext.prototype.constructor = ErrorIdentContext; + +FlinkSqlParser.ErrorIdentContext = ErrorIdentContext; + +ErrorIdentContext.prototype.MINUS = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.MINUS); + } else { + return this.getToken(FlinkSqlParser.MINUS, i); + } +}; + + +ErrorIdentContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; +ErrorIdentContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterErrorIdent(this); + } +}; + +ErrorIdentContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitErrorIdent(this); + } +}; + +ErrorIdentContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitErrorIdent(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function RealIdentContext(parser, ctx) { + ErrorCapturingIdentifierExtraContext.call(this, parser); + ErrorCapturingIdentifierExtraContext.prototype.copyFrom.call(this, ctx); + return this; +} + +RealIdentContext.prototype = Object.create(ErrorCapturingIdentifierExtraContext.prototype); +RealIdentContext.prototype.constructor = RealIdentContext; + +FlinkSqlParser.RealIdentContext = RealIdentContext; + +RealIdentContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterRealIdent(this); + } +}; + +RealIdentContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitRealIdent(this); + } +}; + +RealIdentContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitRealIdent(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.ErrorCapturingIdentifierExtraContext = ErrorCapturingIdentifierExtraContext; + +FlinkSqlParser.prototype.errorCapturingIdentifierExtra = function() { + + var localctx = new ErrorCapturingIdentifierExtraContext(this, this._ctx, this.state); + this.enterRule(localctx, 160, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + var _la = 0; // Token type + try { + this.state = 1145; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.MINUS: + localctx = new ErrorIdentContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1140; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 1138; + this.match(FlinkSqlParser.MINUS); + this.state = 1139; + this.identifier(); + this.state = 1142; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===FlinkSqlParser.MINUS); + break; + case FlinkSqlParser.AS: + case FlinkSqlParser.LR_BRACKET: + localctx = new RealIdentContext(this, localctx); + this.enterOuterAlt(localctx, 2); + + break; + default: + throw new antlr4.error.NoViableAltException(this); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -6784,14 +12160,14 @@ FlinkSqlParser.IdentifierListContext = IdentifierListContext; FlinkSqlParser.prototype.identifierList = function() { var localctx = new IdentifierListContext(this, this._ctx, this.state); - this.enterRule(localctx, 86, FlinkSqlParser.RULE_identifierList); + this.enterRule(localctx, 162, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localctx, 1); - this.state = 598; + this.state = 1147; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 599; + this.state = 1148; this.identifierSeq(); - this.state = 600; + this.state = 1149; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -6875,21 +12251,21 @@ FlinkSqlParser.IdentifierSeqContext = IdentifierSeqContext; FlinkSqlParser.prototype.identifierSeq = function() { var localctx = new IdentifierSeqContext(this, this._ctx, this.state); - this.enterRule(localctx, 88, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localctx, 164, FlinkSqlParser.RULE_identifierSeq); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 602; + this.state = 1151; this.identifier(); - this.state = 607; + this.state = 1156; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 603; + this.state = 1152; this.match(FlinkSqlParser.COMMA); - this.state = 604; + this.state = 1153; this.identifier(); - this.state = 609; + this.state = 1158; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -6956,10 +12332,10 @@ FlinkSqlParser.IdentifierContext = IdentifierContext; FlinkSqlParser.prototype.identifier = function() { var localctx = new IdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 90, FlinkSqlParser.RULE_identifier); + this.enterRule(localctx, 166, FlinkSqlParser.RULE_identifier); try { this.enterOuterAlt(localctx, 1); - this.state = 610; + this.state = 1159; this.strictIdentifier(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7034,20 +12410,107 @@ QuotedIdentifierAlternativeContext.prototype.accept = function(visitor) { }; -function UnquotedIdentifierContext(parser, ctx) { +function UnquotedIdentifierAlternativeContext(parser, ctx) { StrictIdentifierContext.call(this, parser); StrictIdentifierContext.prototype.copyFrom.call(this, ctx); return this; } -UnquotedIdentifierContext.prototype = Object.create(StrictIdentifierContext.prototype); +UnquotedIdentifierAlternativeContext.prototype = Object.create(StrictIdentifierContext.prototype); +UnquotedIdentifierAlternativeContext.prototype.constructor = UnquotedIdentifierAlternativeContext; + +FlinkSqlParser.UnquotedIdentifierAlternativeContext = UnquotedIdentifierAlternativeContext; + +UnquotedIdentifierAlternativeContext.prototype.unquotedIdentifier = function() { + return this.getTypedRuleContext(UnquotedIdentifierContext,0); +}; +UnquotedIdentifierAlternativeContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUnquotedIdentifierAlternative(this); + } +}; + +UnquotedIdentifierAlternativeContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUnquotedIdentifierAlternative(this); + } +}; + +UnquotedIdentifierAlternativeContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUnquotedIdentifierAlternative(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.StrictIdentifierContext = StrictIdentifierContext; + +FlinkSqlParser.prototype.strictIdentifier = function() { + + var localctx = new StrictIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 168, FlinkSqlParser.RULE_strictIdentifier); + try { + this.state = 1163; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.ID: + localctx = new UnquotedIdentifierAlternativeContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 1161; + this.unquotedIdentifier(); + break; + case FlinkSqlParser.STRING_LITERAL: + localctx = new QuotedIdentifierAlternativeContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 1162; + this.quotedIdentifier(); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function UnquotedIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_unquotedIdentifier; + return this; +} + +UnquotedIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); UnquotedIdentifierContext.prototype.constructor = UnquotedIdentifierContext; -FlinkSqlParser.UnquotedIdentifierContext = UnquotedIdentifierContext; - -UnquotedIdentifierContext.prototype.IDENTIFIER_BASE = function() { - return this.getToken(FlinkSqlParser.IDENTIFIER_BASE, 0); +UnquotedIdentifierContext.prototype.DIG_LITERAL = function() { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); }; + +UnquotedIdentifierContext.prototype.ID = function() { + return this.getToken(FlinkSqlParser.ID, 0); +}; + UnquotedIdentifierContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterUnquotedIdentifier(this); @@ -7070,30 +12533,24 @@ UnquotedIdentifierContext.prototype.accept = function(visitor) { -FlinkSqlParser.StrictIdentifierContext = StrictIdentifierContext; -FlinkSqlParser.prototype.strictIdentifier = function() { +FlinkSqlParser.UnquotedIdentifierContext = UnquotedIdentifierContext; - var localctx = new StrictIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 92, FlinkSqlParser.RULE_strictIdentifier); +FlinkSqlParser.prototype.unquotedIdentifier = function() { + + var localctx = new UnquotedIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 170, FlinkSqlParser.RULE_unquotedIdentifier); + var _la = 0; // Token type try { - this.state = 614; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParser.IDENTIFIER_BASE: - localctx = new UnquotedIdentifierContext(this, localctx); - this.enterOuterAlt(localctx, 1); - this.state = 612; - this.match(FlinkSqlParser.IDENTIFIER_BASE); - break; - case FlinkSqlParser.STRING_LITERAL: - localctx = new QuotedIdentifierAlternativeContext(this, localctx); - this.enterOuterAlt(localctx, 2); - this.state = 613; - this.quotedIdentifier(); - break; - default: - throw new antlr4.error.NoViableAltException(this); + this.enterOuterAlt(localctx, 1); + this.state = 1165; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.DIG_LITERAL || _la===FlinkSqlParser.ID)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7158,10 +12615,10 @@ FlinkSqlParser.QuotedIdentifierContext = QuotedIdentifierContext; FlinkSqlParser.prototype.quotedIdentifier = function() { var localctx = new QuotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 94, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localctx, 172, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localctx, 1); - this.state = 616; + this.state = 1167; this.match(FlinkSqlParser.STRING_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7243,16 +12700,16 @@ FlinkSqlParser.WhenClauseContext = WhenClauseContext; FlinkSqlParser.prototype.whenClause = function() { var localctx = new WhenClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 96, FlinkSqlParser.RULE_whenClause); + this.enterRule(localctx, 174, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localctx, 1); - this.state = 618; + this.state = 1169; this.match(FlinkSqlParser.WHEN); - this.state = 619; + this.state = 1170; localctx.condition = this.expression(); - this.state = 620; + this.state = 1171; this.match(FlinkSqlParser.THEN); - this.state = 621; + this.state = 1172; localctx.result = this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7336,21 +12793,21 @@ FlinkSqlParser.UidListContext = UidListContext; FlinkSqlParser.prototype.uidList = function() { var localctx = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 98, FlinkSqlParser.RULE_uidList); + this.enterRule(localctx, 176, FlinkSqlParser.RULE_uidList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 623; + this.state = 1174; this.uid(); - this.state = 628; + this.state = 1179; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 624; + this.state = 1175; this.match(FlinkSqlParser.COMMA); - this.state = 625; + this.state = 1176; this.uid(); - this.state = 630; + this.state = 1181; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -7429,22 +12886,22 @@ FlinkSqlParser.UidContext = UidContext; FlinkSqlParser.prototype.uid = function() { var localctx = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 100, FlinkSqlParser.RULE_uid); + this.enterRule(localctx, 178, FlinkSqlParser.RULE_uid); try { this.enterOuterAlt(localctx, 1); - this.state = 631; + this.state = 1182; this.match(FlinkSqlParser.ID); - this.state = 635; + this.state = 1186; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,67,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,137,this._ctx) while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1+1) { - this.state = 632; + this.state = 1183; this.match(FlinkSqlParser.DOT_ID); } - this.state = 637; + this.state = 1188; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,67,this._ctx); + _alt = this._interp.adaptivePredict(this._input,137,this._ctx); } } catch (re) { @@ -7482,37 +12939,10 @@ WithOptionContext.prototype.WITH = function() { return this.getToken(FlinkSqlParser.WITH, 0); }; -WithOptionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +WithOptionContext.prototype.tablePropertyList = function() { + return this.getTypedRuleContext(TablePropertyListContext,0); }; -WithOptionContext.prototype.keyValueDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(KeyValueDefinitionContext); - } else { - return this.getTypedRuleContext(KeyValueDefinitionContext,i); - } -}; - -WithOptionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0); -}; - -WithOptionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } -}; - - WithOptionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterWithOption(this); @@ -7541,30 +12971,13 @@ FlinkSqlParser.WithOptionContext = WithOptionContext; FlinkSqlParser.prototype.withOption = function() { var localctx = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 102, FlinkSqlParser.RULE_withOption); - var _la = 0; // Token type + this.enterRule(localctx, 180, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localctx, 1); - this.state = 638; + this.state = 1189; this.match(FlinkSqlParser.WITH); - this.state = 639; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 640; - this.keyValueDefinition(); - this.state = 645; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 641; - this.match(FlinkSqlParser.COMMA); - this.state = 642; - this.keyValueDefinition(); - this.state = 647; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 648; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1190; + this.tablePropertyList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -7636,14 +13049,14 @@ FlinkSqlParser.IfNotExistsContext = IfNotExistsContext; FlinkSqlParser.prototype.ifNotExists = function() { var localctx = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 104, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localctx, 182, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); - this.state = 650; + this.state = 1192; this.match(FlinkSqlParser.IF); - this.state = 651; + this.state = 1193; this.match(FlinkSqlParser.NOT); - this.state = 652; + this.state = 1194; this.match(FlinkSqlParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7712,12 +13125,12 @@ FlinkSqlParser.IfExistsContext = IfExistsContext; FlinkSqlParser.prototype.ifExists = function() { var localctx = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 106, FlinkSqlParser.RULE_ifExists); + this.enterRule(localctx, 184, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); - this.state = 654; + this.state = 1196; this.match(FlinkSqlParser.IF); - this.state = 655; + this.state = 1197; this.match(FlinkSqlParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7734,7 +13147,7 @@ FlinkSqlParser.prototype.ifExists = function() { }; -function KeyValueDefinitionContext(parser, parent, invokingState) { +function TablePropertyListContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; } @@ -7743,44 +13156,59 @@ function KeyValueDefinitionContext(parser, parent, invokingState) { } antlr4.ParserRuleContext.call(this, parent, invokingState); this.parser = parser; - this.ruleIndex = FlinkSqlParser.RULE_keyValueDefinition; + this.ruleIndex = FlinkSqlParser.RULE_tablePropertyList; return this; } -KeyValueDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -KeyValueDefinitionContext.prototype.constructor = KeyValueDefinitionContext; +TablePropertyListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyListContext.prototype.constructor = TablePropertyListContext; -KeyValueDefinitionContext.prototype.DOUBLE_QUOTE_ID = function(i) { +TablePropertyListContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +TablePropertyListContext.prototype.tableProperty = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TablePropertyContext); + } else { + return this.getTypedRuleContext(TablePropertyContext,i); + } +}; + +TablePropertyListContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +TablePropertyListContext.prototype.COMMA = function(i) { if(i===undefined) { i = null; } if(i===null) { - return this.getTokens(FlinkSqlParser.DOUBLE_QUOTE_ID); + return this.getTokens(FlinkSqlParser.COMMA); } else { - return this.getToken(FlinkSqlParser.DOUBLE_QUOTE_ID, i); + return this.getToken(FlinkSqlParser.COMMA, i); } }; -KeyValueDefinitionContext.prototype.EQUAL_SYMBOL = function() { - return this.getToken(FlinkSqlParser.EQUAL_SYMBOL, 0); -}; - -KeyValueDefinitionContext.prototype.enterRule = function(listener) { +TablePropertyListContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.enterKeyValueDefinition(this); + listener.enterTablePropertyList(this); } }; -KeyValueDefinitionContext.prototype.exitRule = function(listener) { +TablePropertyListContext.prototype.exitRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { - listener.exitKeyValueDefinition(this); + listener.exitTablePropertyList(this); } }; -KeyValueDefinitionContext.prototype.accept = function(visitor) { +TablePropertyListContext.prototype.accept = function(visitor) { if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitKeyValueDefinition(this); + return visitor.visitTablePropertyList(this); } else { return visitor.visitChildren(this); } @@ -7789,20 +13217,350 @@ KeyValueDefinitionContext.prototype.accept = function(visitor) { -FlinkSqlParser.KeyValueDefinitionContext = KeyValueDefinitionContext; +FlinkSqlParser.TablePropertyListContext = TablePropertyListContext; -FlinkSqlParser.prototype.keyValueDefinition = function() { +FlinkSqlParser.prototype.tablePropertyList = function() { - var localctx = new KeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 108, FlinkSqlParser.RULE_keyValueDefinition); + var localctx = new TablePropertyListContext(this, this._ctx, this.state); + this.enterRule(localctx, 186, FlinkSqlParser.RULE_tablePropertyList); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 657; - this.match(FlinkSqlParser.DOUBLE_QUOTE_ID); - this.state = 658; - this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 659; - this.match(FlinkSqlParser.DOUBLE_QUOTE_ID); + this.state = 1199; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1200; + this.tableProperty(); + this.state = 1205; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 1201; + this.match(FlinkSqlParser.COMMA); + this.state = 1202; + this.tableProperty(); + this.state = 1207; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 1208; + this.match(FlinkSqlParser.RR_BRACKET); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_tableProperty; + this.key = null; // TablePropertyKeyContext + this.value = null; // TablePropertyValueContext + return this; +} + +TablePropertyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyContext.prototype.constructor = TablePropertyContext; + +TablePropertyContext.prototype.tablePropertyKey = function() { + return this.getTypedRuleContext(TablePropertyKeyContext,0); +}; + +TablePropertyContext.prototype.tablePropertyValue = function() { + return this.getTypedRuleContext(TablePropertyValueContext,0); +}; + +TablePropertyContext.prototype.EQUAL_SYMBOL = function() { + return this.getToken(FlinkSqlParser.EQUAL_SYMBOL, 0); +}; + +TablePropertyContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableProperty(this); + } +}; + +TablePropertyContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableProperty(this); + } +}; + +TablePropertyContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableProperty(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.TablePropertyContext = TablePropertyContext; + +FlinkSqlParser.prototype.tableProperty = function() { + + var localctx = new TablePropertyContext(this, this._ctx, this.state); + this.enterRule(localctx, 188, FlinkSqlParser.RULE_tableProperty); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1210; + localctx.key = this.tablePropertyKey(); + this.state = 1215; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE || ((((_la - 276)) & ~0x1f) == 0 && ((1 << (_la - 276)) & ((1 << (FlinkSqlParser.EQUAL_SYMBOL - 276)) | (1 << (FlinkSqlParser.STRING_LITERAL - 276)) | (1 << (FlinkSqlParser.DIG_LITERAL - 276)) | (1 << (FlinkSqlParser.REAL_LITERAL - 276)))) !== 0)) { + this.state = 1212; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.EQUAL_SYMBOL) { + this.state = 1211; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + } + + this.state = 1214; + localctx.value = this.tablePropertyValue(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyKeyContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_tablePropertyKey; + return this; +} + +TablePropertyKeyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyKeyContext.prototype.constructor = TablePropertyKeyContext; + +TablePropertyKeyContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +TablePropertyKeyContext.prototype.DOT = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.DOT); + } else { + return this.getToken(FlinkSqlParser.DOT, i); + } +}; + + +TablePropertyKeyContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); +}; + +TablePropertyKeyContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTablePropertyKey(this); + } +}; + +TablePropertyKeyContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTablePropertyKey(this); + } +}; + +TablePropertyKeyContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTablePropertyKey(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.TablePropertyKeyContext = TablePropertyKeyContext; + +FlinkSqlParser.prototype.tablePropertyKey = function() { + + var localctx = new TablePropertyKeyContext(this, this._ctx, this.state); + this.enterRule(localctx, 190, FlinkSqlParser.RULE_tablePropertyKey); + var _la = 0; // Token type + try { + this.state = 1226; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,142,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1217; + this.identifier(); + this.state = 1222; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.DOT) { + this.state = 1218; + this.match(FlinkSqlParser.DOT); + this.state = 1219; + this.identifier(); + this.state = 1224; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1225; + this.match(FlinkSqlParser.STRING_LITERAL); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function TablePropertyValueContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_tablePropertyValue; + return this; +} + +TablePropertyValueContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePropertyValueContext.prototype.constructor = TablePropertyValueContext; + +TablePropertyValueContext.prototype.DIG_LITERAL = function() { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); +}; + +TablePropertyValueContext.prototype.REAL_LITERAL = function() { + return this.getToken(FlinkSqlParser.REAL_LITERAL, 0); +}; + +TablePropertyValueContext.prototype.booleanLiteral = function() { + return this.getTypedRuleContext(BooleanLiteralContext,0); +}; + +TablePropertyValueContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); +}; + +TablePropertyValueContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTablePropertyValue(this); + } +}; + +TablePropertyValueContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTablePropertyValue(this); + } +}; + +TablePropertyValueContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTablePropertyValue(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.TablePropertyValueContext = TablePropertyValueContext; + +FlinkSqlParser.prototype.tablePropertyValue = function() { + + var localctx = new TablePropertyValueContext(this, this._ctx, this.state); + this.enterRule(localctx, 192, FlinkSqlParser.RULE_tablePropertyValue); + try { + this.state = 1232; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.DIG_LITERAL: + this.enterOuterAlt(localctx, 1); + this.state = 1228; + this.match(FlinkSqlParser.DIG_LITERAL); + break; + case FlinkSqlParser.REAL_LITERAL: + this.enterOuterAlt(localctx, 2); + this.state = 1229; + this.match(FlinkSqlParser.REAL_LITERAL); + break; + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + this.enterOuterAlt(localctx, 3); + this.state = 1230; + this.booleanLiteral(); + break; + case FlinkSqlParser.STRING_LITERAL: + this.enterOuterAlt(localctx, 4); + this.state = 1231; + this.match(FlinkSqlParser.STRING_LITERAL); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -7894,33 +13652,33 @@ FlinkSqlParser.LogicalOperatorContext = LogicalOperatorContext; FlinkSqlParser.prototype.logicalOperator = function() { var localctx = new LogicalOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 110, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localctx, 194, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 667; + this.state = 1240; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.AND: this.enterOuterAlt(localctx, 1); - this.state = 661; + this.state = 1234; this.match(FlinkSqlParser.AND); break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localctx, 2); - this.state = 662; + this.state = 1235; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 663; + this.state = 1236; this.match(FlinkSqlParser.BIT_AND_OP); break; case FlinkSqlParser.OR: this.enterOuterAlt(localctx, 3); - this.state = 664; + this.state = 1237; this.match(FlinkSqlParser.OR); break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localctx, 4); - this.state = 665; + this.state = 1238; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 666; + this.state = 1239; this.match(FlinkSqlParser.BIT_OR_OP); break; default: @@ -8001,69 +13759,69 @@ FlinkSqlParser.ComparisonOperatorContext = ComparisonOperatorContext; FlinkSqlParser.prototype.comparisonOperator = function() { var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 112, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localctx, 196, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 683; + this.state = 1256; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,70,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,145,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 669; + this.state = 1242; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 670; + this.state = 1243; this.match(FlinkSqlParser.GREATER_SYMBOL); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 671; + this.state = 1244; this.match(FlinkSqlParser.LESS_SYMBOL); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 672; + this.state = 1245; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 673; + this.state = 1246; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 674; + this.state = 1247; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 675; + this.state = 1248; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 676; + this.state = 1249; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 677; + this.state = 1250; this.match(FlinkSqlParser.GREATER_SYMBOL); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 678; + this.state = 1251; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 679; + this.state = 1252; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 680; + this.state = 1253; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 681; + this.state = 1254; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 682; + this.state = 1255; this.match(FlinkSqlParser.GREATER_SYMBOL); break; @@ -8163,38 +13921,38 @@ FlinkSqlParser.BitOperatorContext = BitOperatorContext; FlinkSqlParser.prototype.bitOperator = function() { var localctx = new BitOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 114, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localctx, 198, FlinkSqlParser.RULE_bitOperator); try { - this.state = 692; + this.state = 1265; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localctx, 1); - this.state = 685; + this.state = 1258; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 686; + this.state = 1259; this.match(FlinkSqlParser.LESS_SYMBOL); break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localctx, 2); - this.state = 687; + this.state = 1260; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 688; + this.state = 1261; this.match(FlinkSqlParser.GREATER_SYMBOL); break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localctx, 3); - this.state = 689; + this.state = 1262; this.match(FlinkSqlParser.BIT_AND_OP); break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localctx, 4); - this.state = 690; + this.state = 1263; this.match(FlinkSqlParser.BIT_XOR_OP); break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localctx, 5); - this.state = 691; + this.state = 1264; this.match(FlinkSqlParser.BIT_OR_OP); break; default: @@ -8287,13 +14045,13 @@ FlinkSqlParser.MathOperatorContext = MathOperatorContext; FlinkSqlParser.prototype.mathOperator = function() { var localctx = new MathOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 116, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localctx, 200, FlinkSqlParser.RULE_mathOperator); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 694; + this.state = 1267; _la = this._input.LA(1); - if(!(_la===FlinkSqlParser.DIV || ((((_la - 308)) & ~0x1f) == 0 && ((1 << (_la - 308)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 308)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 308)) | (1 << (FlinkSqlParser.ADD_SIGN - 308)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 308)) | (1 << (FlinkSqlParser.DOUBLE_HYPNEN_SIGN - 308)) | (1 << (FlinkSqlParser.SLASH_SIGN - 308)))) !== 0))) { + if(!(_la===FlinkSqlParser.DIV || ((((_la - 296)) & ~0x1f) == 0 && ((1 << (_la - 296)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 296)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 296)) | (1 << (FlinkSqlParser.ADD_SIGN - 296)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 296)) | (1 << (FlinkSqlParser.DOUBLE_HYPNEN_SIGN - 296)) | (1 << (FlinkSqlParser.SLASH_SIGN - 296)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -8379,13 +14137,13 @@ FlinkSqlParser.UnaryOperatorContext = UnaryOperatorContext; FlinkSqlParser.prototype.unaryOperator = function() { var localctx = new UnaryOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 118, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localctx, 202, FlinkSqlParser.RULE_unaryOperator); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 696; + this.state = 1269; _la = this._input.LA(1); - if(!(_la===FlinkSqlParser.NOT || ((((_la - 288)) & ~0x1f) == 0 && ((1 << (_la - 288)) & ((1 << (FlinkSqlParser.EXCLAMATION_SYMBOL - 288)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 288)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 288)) | (1 << (FlinkSqlParser.ADD_SIGN - 288)))) !== 0))) { + if(!(_la===FlinkSqlParser.NOT || ((((_la - 279)) & ~0x1f) == 0 && ((1 << (_la - 279)) & ((1 << (FlinkSqlParser.EXCLAMATION_SYMBOL - 279)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 279)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 279)) | (1 << (FlinkSqlParser.ADD_SIGN - 279)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -8455,10 +14213,10 @@ FlinkSqlParser.FullColumnNameContext = FullColumnNameContext; FlinkSqlParser.prototype.fullColumnName = function() { var localctx = new FullColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 120, FlinkSqlParser.RULE_fullColumnName); + this.enterRule(localctx, 204, FlinkSqlParser.RULE_fullColumnName); try { this.enterOuterAlt(localctx, 1); - this.state = 698; + this.state = 1271; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -8499,6 +14257,10 @@ ConstantContext.prototype.decimalLiteral = function() { return this.getTypedRuleContext(DecimalLiteralContext,0); }; +ConstantContext.prototype.interval = function() { + return this.getTypedRuleContext(IntervalContext,0); +}; + ConstantContext.prototype.HYPNEN_SIGN = function() { return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); }; @@ -8551,60 +14313,62 @@ FlinkSqlParser.ConstantContext = ConstantContext; FlinkSqlParser.prototype.constant = function() { var localctx = new ConstantContext(this, this._ctx, this.state); - this.enterRule(localctx, 122, FlinkSqlParser.RULE_constant); + this.enterRule(localctx, 206, FlinkSqlParser.RULE_constant); var _la = 0; // Token type try { - this.state = 711; + this.state = 1285; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 700; + this.state = 1273; this.stringLiteral(); break; - case FlinkSqlParser.ZERO_DECIMAL: - case FlinkSqlParser.ONE_DECIMAL: - case FlinkSqlParser.TWO_DECIMAL: - case FlinkSqlParser.DECIMAL_LITERAL: + case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localctx, 2); - this.state = 701; + this.state = 1274; this.decimalLiteral(); break; - case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.INTERVAL: this.enterOuterAlt(localctx, 3); - this.state = 702; + this.state = 1275; + this.interval(); + break; + case FlinkSqlParser.HYPNEN_SIGN: + this.enterOuterAlt(localctx, 4); + this.state = 1276; this.match(FlinkSqlParser.HYPNEN_SIGN); - this.state = 703; + this.state = 1277; this.decimalLiteral(); break; case FlinkSqlParser.TRUE: case FlinkSqlParser.FALSE: - this.enterOuterAlt(localctx, 4); - this.state = 704; + this.enterOuterAlt(localctx, 5); + this.state = 1278; this.booleanLiteral(); break; case FlinkSqlParser.REAL_LITERAL: - this.enterOuterAlt(localctx, 5); - this.state = 705; + this.enterOuterAlt(localctx, 6); + this.state = 1279; this.match(FlinkSqlParser.REAL_LITERAL); break; case FlinkSqlParser.BIT_STRING: - this.enterOuterAlt(localctx, 6); - this.state = 706; + this.enterOuterAlt(localctx, 7); + this.state = 1280; this.match(FlinkSqlParser.BIT_STRING); break; case FlinkSqlParser.NOT: case FlinkSqlParser.NULL: - this.enterOuterAlt(localctx, 7); - this.state = 708; + this.enterOuterAlt(localctx, 8); + this.state = 1282; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 707; + this.state = 1281; this.match(FlinkSqlParser.NOT); } - this.state = 710; + this.state = 1284; this.match(FlinkSqlParser.NULL); break; default: @@ -8673,10 +14437,10 @@ FlinkSqlParser.StringLiteralContext = StringLiteralContext; FlinkSqlParser.prototype.stringLiteral = function() { var localctx = new StringLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 124, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localctx, 208, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 713; + this.state = 1287; this.match(FlinkSqlParser.STRING_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -8709,20 +14473,8 @@ function DecimalLiteralContext(parser, parent, invokingState) { DecimalLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); DecimalLiteralContext.prototype.constructor = DecimalLiteralContext; -DecimalLiteralContext.prototype.DECIMAL_LITERAL = function() { - return this.getToken(FlinkSqlParser.DECIMAL_LITERAL, 0); -}; - -DecimalLiteralContext.prototype.ZERO_DECIMAL = function() { - return this.getToken(FlinkSqlParser.ZERO_DECIMAL, 0); -}; - -DecimalLiteralContext.prototype.ONE_DECIMAL = function() { - return this.getToken(FlinkSqlParser.ONE_DECIMAL, 0); -}; - -DecimalLiteralContext.prototype.TWO_DECIMAL = function() { - return this.getToken(FlinkSqlParser.TWO_DECIMAL, 0); +DecimalLiteralContext.prototype.DIG_LITERAL = function() { + return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); }; DecimalLiteralContext.prototype.enterRule = function(listener) { @@ -8753,19 +14505,11 @@ FlinkSqlParser.DecimalLiteralContext = DecimalLiteralContext; FlinkSqlParser.prototype.decimalLiteral = function() { var localctx = new DecimalLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 126, FlinkSqlParser.RULE_decimalLiteral); - var _la = 0; // Token type + this.enterRule(localctx, 210, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 715; - _la = this._input.LA(1); - if(!(((((_la - 301)) & ~0x1f) == 0 && ((1 << (_la - 301)) & ((1 << (FlinkSqlParser.ZERO_DECIMAL - 301)) | (1 << (FlinkSqlParser.ONE_DECIMAL - 301)) | (1 << (FlinkSqlParser.TWO_DECIMAL - 301)) | (1 << (FlinkSqlParser.DECIMAL_LITERAL - 301)))) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 1289; + this.match(FlinkSqlParser.DIG_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -8833,11 +14577,11 @@ FlinkSqlParser.BooleanLiteralContext = BooleanLiteralContext; FlinkSqlParser.prototype.booleanLiteral = function() { var localctx = new BooleanLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 128, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localctx, 212, FlinkSqlParser.RULE_booleanLiteral); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 717; + this.state = 1291; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE)) { this._errHandler.recoverInline(this); @@ -8913,11 +14657,11 @@ FlinkSqlParser.SetQuantifierContext = SetQuantifierContext; FlinkSqlParser.prototype.setQuantifier = function() { var localctx = new SetQuantifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 130, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localctx, 214, FlinkSqlParser.RULE_setQuantifier); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 719; + this.state = 1293; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT)) { this._errHandler.recoverInline(this); @@ -8943,21 +14687,32 @@ FlinkSqlParser.prototype.setQuantifier = function() { FlinkSqlParser.prototype.sempred = function(localctx, ruleIndex, predIndex) { switch(ruleIndex) { - case 38: - return this.booleanExpression_sempred(localctx, predIndex); - case 40: - return this.valueExpression_sempred(localctx, predIndex); case 41: + return this.queryStatement_sempred(localctx, predIndex); + case 47: + return this.tableExpression_sempred(localctx, predIndex); + case 65: + return this.booleanExpression_sempred(localctx, predIndex); + case 67: + return this.valueExpression_sempred(localctx, predIndex); + case 68: return this.primaryExpression_sempred(localctx, predIndex); default: throw "No predicate with index:" + ruleIndex; } }; -FlinkSqlParser.prototype.booleanExpression_sempred = function(localctx, predIndex) { +FlinkSqlParser.prototype.queryStatement_sempred = function(localctx, predIndex) { switch(predIndex) { case 0: - return this.precpred(this._ctx, 2); + return this.precpred(this._ctx, 3); + default: + throw "No predicate with index:" + predIndex; + } +}; + +FlinkSqlParser.prototype.tableExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { case 1: return this.precpred(this._ctx, 1); default: @@ -8965,19 +14720,30 @@ FlinkSqlParser.prototype.booleanExpression_sempred = function(localctx, predInde } }; +FlinkSqlParser.prototype.booleanExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 2: + return this.precpred(this._ctx, 2); + case 3: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + FlinkSqlParser.prototype.valueExpression_sempred = function(localctx, predIndex) { switch(predIndex) { - case 2: - return this.precpred(this._ctx, 6); - case 3: - return this.precpred(this._ctx, 5); case 4: - return this.precpred(this._ctx, 4); + return this.precpred(this._ctx, 6); case 5: - return this.precpred(this._ctx, 3); + return this.precpred(this._ctx, 5); case 6: - return this.precpred(this._ctx, 2); + return this.precpred(this._ctx, 4); case 7: + return this.precpred(this._ctx, 3); + case 8: + return this.precpred(this._ctx, 2); + case 9: return this.precpred(this._ctx, 1); default: throw "No predicate with index:" + predIndex; @@ -8986,8 +14752,8 @@ FlinkSqlParser.prototype.valueExpression_sempred = function(localctx, predIndex) FlinkSqlParser.prototype.primaryExpression_sempred = function(localctx, predIndex) { switch(predIndex) { - case 8: - return this.precpred(this._ctx, 2); + case 10: + return this.precpred(this._ctx, 4); default: throw "No predicate with index:" + predIndex; } diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index ecb81a8..ac05a70 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -239,82 +239,74 @@ PAST=238 PATTERN=239 WITHIN=240 DEFINE=241 -BIGINT_LITERAL=242 -SMALLINT_LITERAL=243 -TINYINT_LITERAL=244 -INTEGER_VALUE=245 -DECIMAL_VALUE=246 -DOUBLE_LITERAL=247 -BIGDECIMAL_LITERAL=248 -IDENTIFIER=249 -BACKQUOTED_IDENTIFIER=250 -SIMPLE_COMMENT=251 -BRACKETED_EMPTY_COMMENT=252 -BRACKETED_COMMENT=253 -WS=254 -UNRECOGNIZED=255 -SYSTEM=256 -STRING=257 -ARRAY=258 -MAP=259 -CHAR=260 -VARCHAR=261 -BINARY=262 -VARBINARY=263 -BYTES=264 -DECIMAL=265 -TINYINT=266 -SMALLINT=267 -INT=268 -BIGINT=269 -FLOAT=270 -DOUBLE=271 -DATE=272 -TIME=273 -TIMESTAMP=274 -MULTISET=275 -BOOLEAN=276 -RAW=277 -ROW=278 -NULL=279 -EQUAL_SYMBOL=280 -GREATER_SYMBOL=281 -LESS_SYMBOL=282 -EXCLAMATION_SYMBOL=283 -BIT_NOT_OP=284 -BIT_OR_OP=285 -BIT_AND_OP=286 -BIT_XOR_OP=287 -DOT=288 -LS_BRACKET=289 -RS_BRACKET=290 -LR_BRACKET=291 -RR_BRACKET=292 -COMMA=293 -SEMICOLON=294 -AT_SIGN=295 -ZERO_DECIMAL=296 -ONE_DECIMAL=297 -TWO_DECIMAL=298 -SINGLE_QUOTE_SYMB=299 -DOUBLE_QUOTE_SYMB=300 -REVERSE_QUOTE_SYMB=301 -COLON_SYMB=302 -ASTERISK_SIGN=303 -UNDERLINE_SIGN=304 -HYPNEN_SIGN=305 -ADD_SIGN=306 -PENCENT_SIGN=307 -DOUBLE_HYPNEN_SIGN=308 -SLASH_SIGN=309 -DOT_ID=310 -ID=311 -STRING_LITERAL=312 -DECIMAL_LITERAL=313 -REAL_LITERAL=314 -BIT_STRING=315 -IDENTIFIER_BASE=316 -DEC_DIGIT=317 +WS=242 +SYSTEM=243 +INCLUDING=244 +EXCLUDING=245 +CONSTRAINTS=246 +OVERWRITING=247 +GENERATED=248 +CATALOG=249 +LANGUAGE=250 +CATALOGS=251 +VIEWS=252 +STRING=253 +ARRAY=254 +MAP=255 +CHAR=256 +VARCHAR=257 +BINARY=258 +VARBINARY=259 +BYTES=260 +DECIMAL=261 +TINYINT=262 +SMALLINT=263 +INT=264 +BIGINT=265 +FLOAT=266 +DOUBLE=267 +DATE=268 +TIME=269 +TIMESTAMP=270 +MULTISET=271 +BOOLEAN=272 +RAW=273 +ROW=274 +NULL=275 +EQUAL_SYMBOL=276 +GREATER_SYMBOL=277 +LESS_SYMBOL=278 +EXCLAMATION_SYMBOL=279 +BIT_NOT_OP=280 +BIT_OR_OP=281 +BIT_AND_OP=282 +BIT_XOR_OP=283 +DOT=284 +LS_BRACKET=285 +RS_BRACKET=286 +LR_BRACKET=287 +RR_BRACKET=288 +COMMA=289 +SEMICOLON=290 +AT_SIGN=291 +SINGLE_QUOTE_SYMB=292 +DOUBLE_QUOTE_SYMB=293 +REVERSE_QUOTE_SYMB=294 +COLON_SYMB=295 +ASTERISK_SIGN=296 +UNDERLINE_SIGN=297 +HYPNEN_SIGN=298 +ADD_SIGN=299 +PENCENT_SIGN=300 +DOUBLE_VERTICAL_SIGN=301 +DOUBLE_HYPNEN_SIGN=302 +SLASH_SIGN=303 +DOT_ID=304 +STRING_LITERAL=305 +DIG_LITERAL=306 +REAL_LITERAL=307 +BIT_STRING=308 +ID=309 'SELECT'=4 'FROM'=5 'ADD'=6 @@ -553,71 +545,65 @@ DEC_DIGIT=317 'PATTERN'=239 'WITHIN'=240 'DEFINE'=241 -'BIGINT_LITERAL'=242 -'SMALLINT_LITERAL'=243 -'TINYINT_LITERAL'=244 -'INTEGER_VALUE'=245 -'DECIMAL_VALUE'=246 -'DOUBLE_LITERAL'=247 -'BIGDECIMAL_LITERAL'=248 -'IDENTIFIER'=249 -'BACKQUOTED_IDENTIFIER'=250 -'SIMPLE_COMMENT'=251 -'BRACKETED_EMPTY_COMMENT'=252 -'BRACKETED_COMMENT'=253 -'WS'=254 -'UNRECOGNIZED'=255 -'SYSTEM'=256 -'STRING'=257 -'ARRAY'=258 -'MAP'=259 -'CHAR'=260 -'VARCHAR'=261 -'BINARY'=262 -'VARBINARY'=263 -'BYTES'=264 -'DECIMAL'=265 -'TINYINT'=266 -'SMALLINT'=267 -'INT'=268 -'BIGINT'=269 -'FLOAT'=270 -'DOUBLE'=271 -'DATE'=272 -'TIME'=273 -'TIMESTAMP'=274 -'MULTISET'=275 -'BOOLEAN'=276 -'RAW'=277 -'ROW'=278 -'NULL'=279 -'='=280 -'>'=281 -'<'=282 -'!'=283 -'~'=284 -'|'=285 -'&'=286 -'^'=287 -'.'=288 -'['=289 -']'=290 -'('=291 -')'=292 -','=293 -';'=294 -'@'=295 -'0'=296 -'1'=297 -'2'=298 -'\''=299 -'"'=300 -'`'=301 -':'=302 -'*'=303 -'_'=304 -'-'=305 -'+'=306 -'%'=307 -'--'=308 -'/'=309 +'WS'=242 +'SYSTEM'=243 +'INCLUDING'=244 +'EXCLUDING'=245 +'CONSTRAINTS'=246 +'OVERWRITING'=247 +'GENERATED'=248 +'CATALOG'=249 +'LANGUAGE'=250 +'CATALOGS'=251 +'VIEWS'=252 +'STRING'=253 +'ARRAY'=254 +'MAP'=255 +'CHAR'=256 +'VARCHAR'=257 +'BINARY'=258 +'VARBINARY'=259 +'BYTES'=260 +'DECIMAL'=261 +'TINYINT'=262 +'SMALLINT'=263 +'INT'=264 +'BIGINT'=265 +'FLOAT'=266 +'DOUBLE'=267 +'DATE'=268 +'TIME'=269 +'TIMESTAMP'=270 +'MULTISET'=271 +'BOOLEAN'=272 +'RAW'=273 +'ROW'=274 +'NULL'=275 +'='=276 +'>'=277 +'<'=278 +'!'=279 +'~'=280 +'|'=281 +'&'=282 +'^'=283 +'.'=284 +'['=285 +']'=286 +'('=287 +')'=288 +','=289 +';'=290 +'@'=291 +'\''=292 +'"'=293 +'`'=294 +':'=295 +'*'=296 +'_'=297 +'-'=298 +'+'=299 +'%'=300 +'||'=301 +'--'=302 +'/'=303 diff --git a/src/lib/flinksql/FlinkSqlParserLexer.interp b/src/lib/flinksql/FlinkSqlParserLexer.interp deleted file mode 100644 index b6b598e..0000000 --- a/src/lib/flinksql/FlinkSqlParserLexer.interp +++ /dev/null @@ -1,973 +0,0 @@ -token literal names: -null -null -null -null -'SELECT' -'FROM' -'ADD' -'AS' -'ALL' -'ANY' -'DISTINCT' -'WHERE' -'GROUP' -'BY' -'GROUPING' -'SETS' -'CUBE' -'ROLLUP' -'ORDER' -'HAVING' -'LIMIT' -'AT' -'OR' -'AND' -'IN' -'NOT' -'NO' -'EXISTS' -'BETWEEN' -'LIKE' -'RLIKE' -'IS' -'TRUE' -'FALSE' -'NULLS' -'ASC' -'DESC' -'FOR' -'INTERVAL' -'CASE' -'WHEN' -'THEN' -'ELSE' -'END' -'JOIN' -'CROSS' -'OUTER' -'INNER' -'LEFT' -'SEMI' -'RIGHT' -'FULL' -'NATURAL' -'ON' -'PIVOT' -'LATERAL' -'WINDOW' -'OVER' -'PARTITION' -'RANGE' -'ROWS' -'UNBOUNDED' -'PRECEDING' -'FOLLOWING' -'CURRENT' -'FIRST' -'AFTER' -'LAST' -'WITH' -'VALUES' -'CREATE' -'TABLE' -'DIRECTORY' -'VIEW' -'REPLACE' -'INSERT' -'DELETE' -'INTO' -'DESCRIBE' -'EXPLAIN' -'FORMAT' -'LOGICAL' -'CODEGEN' -'COST' -'CAST' -'SHOW' -'TABLES' -'COLUMNS' -'COLUMN' -'USE' -'PARTITIONS' -'FUNCTIONS' -'DROP' -'UNION' -'EXCEPT' -'SETMINUS' -'INTERSECT' -'TO' -'TABLESAMPLE' -'STRATIFY' -'ALTER' -'RENAME' -'STRUCT' -'COMMENT' -'SET' -'RESET' -'DATA' -'START' -'TRANSACTION' -'COMMIT' -'ROLLBACK' -'MACRO' -'IGNORE' -'BOTH' -'LEADING' -'TRAILING' -'IF' -'POSITION' -'EXTRACT' -'EQ' -'NSEQ' -'NEQ' -'NEQJ' -'LT' -'LTE' -'GT' -'GTE' -'PLUS' -'MINUS' -'ASTERISK' -'SLASH' -'PERCENT' -'DIV' -'TILDE' -'AMPERSAND' -'PIPE' -'CONCAT_PIPE' -'HAT' -'PERCENTLIT' -'BUCKET' -'OUT' -'OF' -'SORT' -'CLUSTER' -'DISTRIBUTE' -'OVERWRITE' -'TRANSFORM' -'REDUCE' -'USING' -'SERDE' -'SERDEPROPERTIES' -'RECORDREADER' -'RECORDWRITER' -'DELIMITED' -'FIELDS' -'TERMINATED' -'COLLECTION' -'ITEMS' -'KEYS' -'ESCAPED' -'LINES' -'SEPARATED' -'FUNCTION' -'EXTENDED' -'REFRESH' -'CLEAR' -'CACHE' -'UNCACHE' -'LAZY' -'FORMATTED' -'GLOBAL' -'TEMPORARY' -'OPTIONS' -'UNSET' -'TBLPROPERTIES' -'DBPROPERTIES' -'BUCKETS' -'SKEWED' -'STORED' -'DIRECTORIES' -'LOCATION' -'EXCHANGE' -'ARCHIVE' -'UNARCHIVE' -'FILEFORMAT' -'TOUCH' -'COMPACT' -'CONCATENATE' -'CHANGE' -'CASCADE' -'RESTRICT' -'CLUSTERED' -'SORTED' -'PURGE' -'INPUTFORMAT' -'OUTPUTFORMAT' -'DATABASE' -'DATABASES' -'DFS' -'TRUNCATE' -'ANALYZE' -'COMPUTE' -'LIST' -'STATISTICS' -'PARTITIONED' -'EXTERNAL' -'DEFINED' -'REVOKE' -'GRANT' -'LOCK' -'UNLOCK' -'MSCK' -'REPAIR' -'RECOVER' -'EXPORT' -'IMPORT' -'LOAD' -'ROLE' -'ROLES' -'COMPACTIONS' -'PRINCIPALS' -'TRANSACTIONS' -'INDEX' -'INDEXES' -'LOCKS' -'OPTION' -'ANTI' -'LOCAL' -'INPATH' -'WATERMARK' -'UNNEST' -'MATCH_RECOGNIZE' -'MEASURES' -'ONE' -'PER' -'MATCH' -'SKIP1' -'NEXT' -'PAST' -'PATTERN' -'WITHIN' -'DEFINE' -'BIGINT_LITERAL' -'SMALLINT_LITERAL' -'TINYINT_LITERAL' -'INTEGER_VALUE' -'DECIMAL_VALUE' -'DOUBLE_LITERAL' -'BIGDECIMAL_LITERAL' -'IDENTIFIER' -'BACKQUOTED_IDENTIFIER' -'SIMPLE_COMMENT' -'BRACKETED_EMPTY_COMMENT' -'BRACKETED_COMMENT' -'WS' -'UNRECOGNIZED' -'SYSTEM' -'STRING' -'ARRAY' -'MAP' -'CHAR' -'VARCHAR' -'BINARY' -'VARBINARY' -'BYTES' -'DECIMAL' -'TINYINT' -'SMALLINT' -'INT' -'BIGINT' -'FLOAT' -'DOUBLE' -'DATE' -'TIME' -'TIMESTAMP' -'MULTISET' -'BOOLEAN' -'RAW' -'ROW' -'NULL' -'=' -'>' -'<' -'!' -'~' -'|' -'&' -'^' -'.' -'[' -']' -'(' -')' -',' -';' -'@' -'0' -'1' -'2' -'\'' -'"' -'`' -':' -'*' -'_' -'-' -'+' -'%' -'--' -'/' -null -null -null -null -null -null -null - -token symbolic names: -null -SPACE -COMMENT_INPUT -LINE_COMMENT -SELECT -FROM -ADD -AS -ALL -ANY -DISTINCT -WHERE -GROUP -BY -GROUPING -SETS -CUBE -ROLLUP -ORDER -HAVING -LIMIT -AT -OR -AND -IN -NOT -NO -EXISTS -BETWEEN -LIKE -RLIKE -IS -TRUE -FALSE -NULLS -ASC -DESC -FOR -INTERVAL -CASE -WHEN -THEN -ELSE -END -JOIN -CROSS -OUTER -INNER -LEFT -SEMI -RIGHT -FULL -NATURAL -ON -PIVOT -LATERAL -WINDOW -OVER -PARTITION -RANGE -ROWS -UNBOUNDED -PRECEDING -FOLLOWING -CURRENT -FIRST -AFTER -LAST -WITH -VALUES -CREATE -TABLE -DIRECTORY -VIEW -REPLACE -INSERT -DELETE -INTO -DESCRIBE -EXPLAIN -FORMAT -LOGICAL -CODEGEN -COST -CAST -SHOW -TABLES -COLUMNS -COLUMN -USE -PARTITIONS -FUNCTIONS -DROP -UNION -EXCEPT -SETMINUS -INTERSECT -TO -TABLESAMPLE -STRATIFY -ALTER -RENAME -STRUCT -COMMENT -SET -RESET -DATA -START -TRANSACTION -COMMIT -ROLLBACK -MACRO -IGNORE -BOTH -LEADING -TRAILING -IF -POSITION -EXTRACT -EQ -NSEQ -NEQ -NEQJ -LT -LTE -GT -GTE -PLUS -MINUS -ASTERISK -SLASH -PERCENT -DIV -TILDE -AMPERSAND -PIPE -CONCAT_PIPE -HAT -PERCENTLIT -BUCKET -OUT -OF -SORT -CLUSTER -DISTRIBUTE -OVERWRITE -TRANSFORM -REDUCE -USING -SERDE -SERDEPROPERTIES -RECORDREADER -RECORDWRITER -DELIMITED -FIELDS -TERMINATED -COLLECTION -ITEMS -KEYS -ESCAPED -LINES -SEPARATED -FUNCTION -EXTENDED -REFRESH -CLEAR -CACHE -UNCACHE -LAZY -FORMATTED -GLOBAL -TEMPORARY -OPTIONS -UNSET -TBLPROPERTIES -DBPROPERTIES -BUCKETS -SKEWED -STORED -DIRECTORIES -LOCATION -EXCHANGE -ARCHIVE -UNARCHIVE -FILEFORMAT -TOUCH -COMPACT -CONCATENATE -CHANGE -CASCADE -RESTRICT -CLUSTERED -SORTED -PURGE -INPUTFORMAT -OUTPUTFORMAT -DATABASE -DATABASES -DFS -TRUNCATE -ANALYZE -COMPUTE -LIST -STATISTICS -PARTITIONED -EXTERNAL -DEFINED -REVOKE -GRANT -LOCK -UNLOCK -MSCK -REPAIR -RECOVER -EXPORT -IMPORT -LOAD -ROLE -ROLES -COMPACTIONS -PRINCIPALS -TRANSACTIONS -INDEX -INDEXES -LOCKS -OPTION -ANTI -LOCAL -INPATH -WATERMARK -UNNEST -MATCH_RECOGNIZE -MEASURES -ONE -PER -MATCH -SKIP1 -NEXT -PAST -PATTERN -WITHIN -DEFINE -BIGINT_LITERAL -SMALLINT_LITERAL -TINYINT_LITERAL -INTEGER_VALUE -DECIMAL_VALUE -DOUBLE_LITERAL -BIGDECIMAL_LITERAL -IDENTIFIER -BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT -BRACKETED_EMPTY_COMMENT -BRACKETED_COMMENT -WS -UNRECOGNIZED -SYSTEM -STRING -ARRAY -MAP -CHAR -VARCHAR -BINARY -VARBINARY -BYTES -DECIMAL -TINYINT -SMALLINT -INT -BIGINT -FLOAT -DOUBLE -DATE -TIME -TIMESTAMP -MULTISET -BOOLEAN -RAW -ROW -NULL -EQUAL_SYMBOL -GREATER_SYMBOL -LESS_SYMBOL -EXCLAMATION_SYMBOL -BIT_NOT_OP -BIT_OR_OP -BIT_AND_OP -BIT_XOR_OP -DOT -LS_BRACKET -RS_BRACKET -LR_BRACKET -RR_BRACKET -COMMA -SEMICOLON -AT_SIGN -ZERO_DECIMAL -ONE_DECIMAL -TWO_DECIMAL -SINGLE_QUOTE_SYMB -DOUBLE_QUOTE_SYMB -REVERSE_QUOTE_SYMB -COLON_SYMB -ASTERISK_SIGN -UNDERLINE_SIGN -HYPNEN_SIGN -ADD_SIGN -PENCENT_SIGN -DOUBLE_HYPNEN_SIGN -SLASH_SIGN -DOT_ID -ID -STRING_LITERAL -DECIMAL_LITERAL -REAL_LITERAL -BIT_STRING -IDENTIFIER_BASE - -rule names: -SPACE -COMMENT_INPUT -LINE_COMMENT -SELECT -FROM -ADD -AS -ALL -ANY -DISTINCT -WHERE -GROUP -BY -GROUPING -SETS -CUBE -ROLLUP -ORDER -HAVING -LIMIT -AT -OR -AND -IN -NOT -NO -EXISTS -BETWEEN -LIKE -RLIKE -IS -TRUE -FALSE -NULLS -ASC -DESC -FOR -INTERVAL -CASE -WHEN -THEN -ELSE -END -JOIN -CROSS -OUTER -INNER -LEFT -SEMI -RIGHT -FULL -NATURAL -ON -PIVOT -LATERAL -WINDOW -OVER -PARTITION -RANGE -ROWS -UNBOUNDED -PRECEDING -FOLLOWING -CURRENT -FIRST -AFTER -LAST -WITH -VALUES -CREATE -TABLE -DIRECTORY -VIEW -REPLACE -INSERT -DELETE -INTO -DESCRIBE -EXPLAIN -FORMAT -LOGICAL -CODEGEN -COST -CAST -SHOW -TABLES -COLUMNS -COLUMN -USE -PARTITIONS -FUNCTIONS -DROP -UNION -EXCEPT -SETMINUS -INTERSECT -TO -TABLESAMPLE -STRATIFY -ALTER -RENAME -STRUCT -COMMENT -SET -RESET -DATA -START -TRANSACTION -COMMIT -ROLLBACK -MACRO -IGNORE -BOTH -LEADING -TRAILING -IF -POSITION -EXTRACT -EQ -NSEQ -NEQ -NEQJ -LT -LTE -GT -GTE -PLUS -MINUS -ASTERISK -SLASH -PERCENT -DIV -TILDE -AMPERSAND -PIPE -CONCAT_PIPE -HAT -PERCENTLIT -BUCKET -OUT -OF -SORT -CLUSTER -DISTRIBUTE -OVERWRITE -TRANSFORM -REDUCE -USING -SERDE -SERDEPROPERTIES -RECORDREADER -RECORDWRITER -DELIMITED -FIELDS -TERMINATED -COLLECTION -ITEMS -KEYS -ESCAPED -LINES -SEPARATED -FUNCTION -EXTENDED -REFRESH -CLEAR -CACHE -UNCACHE -LAZY -FORMATTED -GLOBAL -TEMPORARY -OPTIONS -UNSET -TBLPROPERTIES -DBPROPERTIES -BUCKETS -SKEWED -STORED -DIRECTORIES -LOCATION -EXCHANGE -ARCHIVE -UNARCHIVE -FILEFORMAT -TOUCH -COMPACT -CONCATENATE -CHANGE -CASCADE -RESTRICT -CLUSTERED -SORTED -PURGE -INPUTFORMAT -OUTPUTFORMAT -DATABASE -DATABASES -DFS -TRUNCATE -ANALYZE -COMPUTE -LIST -STATISTICS -PARTITIONED -EXTERNAL -DEFINED -REVOKE -GRANT -LOCK -UNLOCK -MSCK -REPAIR -RECOVER -EXPORT -IMPORT -LOAD -ROLE -ROLES -COMPACTIONS -PRINCIPALS -TRANSACTIONS -INDEX -INDEXES -LOCKS -OPTION -ANTI -LOCAL -INPATH -WATERMARK -UNNEST -MATCH_RECOGNIZE -MEASURES -ONE -PER -MATCH -SKIP1 -NEXT -PAST -PATTERN -WITHIN -DEFINE -BIGINT_LITERAL -SMALLINT_LITERAL -TINYINT_LITERAL -INTEGER_VALUE -DECIMAL_VALUE -DOUBLE_LITERAL -BIGDECIMAL_LITERAL -IDENTIFIER -BACKQUOTED_IDENTIFIER -SIMPLE_COMMENT -BRACKETED_EMPTY_COMMENT -BRACKETED_COMMENT -WS -UNRECOGNIZED -SYSTEM -STRING -ARRAY -MAP -CHAR -VARCHAR -BINARY -VARBINARY -BYTES -DECIMAL -TINYINT -SMALLINT -INT -BIGINT -FLOAT -DOUBLE -DATE -TIME -TIMESTAMP -MULTISET -BOOLEAN -RAW -ROW -NULL -EQUAL_SYMBOL -GREATER_SYMBOL -LESS_SYMBOL -EXCLAMATION_SYMBOL -BIT_NOT_OP -BIT_OR_OP -BIT_AND_OP -BIT_XOR_OP -DOT -LS_BRACKET -RS_BRACKET -LR_BRACKET -RR_BRACKET -COMMA -SEMICOLON -AT_SIGN -ZERO_DECIMAL -ONE_DECIMAL -TWO_DECIMAL -SINGLE_QUOTE_SYMB -DOUBLE_QUOTE_SYMB -REVERSE_QUOTE_SYMB -COLON_SYMB -ASTERISK_SIGN -UNDERLINE_SIGN -HYPNEN_SIGN -ADD_SIGN -PENCENT_SIGN -DOUBLE_HYPNEN_SIGN -SLASH_SIGN -DOT_ID -ID -STRING_LITERAL -DECIMAL_LITERAL -REAL_LITERAL -BIT_STRING -IDENTIFIER_BASE -EXPONENT_NUM_PART -ID_LITERAL -DEC_DIGIT -DEC_LETTER -DQUOTA_STRING -SQUOTA_STRING -BIT_STRING_L -BQUOTA_STRING - -channel names: -DEFAULT_TOKEN_CHANNEL -HIDDEN - -mode names: -DEFAULT_MODE - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 318, 2966, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 4, 319, 9, 319, 4, 320, 9, 320, 4, 321, 9, 321, 4, 322, 9, 322, 4, 323, 9, 323, 4, 324, 9, 324, 4, 325, 9, 325, 3, 2, 6, 2, 653, 10, 2, 13, 2, 14, 2, 654, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 663, 10, 3, 12, 3, 14, 3, 666, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 677, 10, 4, 3, 4, 7, 4, 680, 10, 4, 12, 4, 14, 4, 683, 11, 4, 3, 4, 5, 4, 686, 10, 4, 3, 4, 3, 4, 5, 4, 690, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 696, 10, 4, 3, 4, 3, 4, 5, 4, 700, 10, 4, 5, 4, 702, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 274, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 278, 3, 278, 3, 278, 3, 278, 3, 279, 3, 279, 3, 279, 3, 279, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 281, 3, 281, 3, 282, 3, 282, 3, 283, 3, 283, 3, 284, 3, 284, 3, 285, 3, 285, 3, 286, 3, 286, 3, 287, 3, 287, 3, 288, 3, 288, 3, 289, 3, 289, 3, 290, 3, 290, 3, 291, 3, 291, 3, 292, 3, 292, 3, 293, 3, 293, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 297, 3, 297, 3, 298, 3, 298, 3, 299, 3, 299, 3, 300, 3, 300, 3, 301, 3, 301, 3, 302, 3, 302, 3, 303, 3, 303, 3, 304, 3, 304, 3, 305, 3, 305, 3, 306, 3, 306, 3, 307, 3, 307, 3, 308, 3, 308, 3, 309, 3, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 3, 311, 3, 312, 3, 312, 3, 313, 3, 313, 3, 313, 5, 313, 2828, 10, 313, 3, 314, 6, 314, 2831, 10, 314, 13, 314, 14, 314, 2832, 3, 315, 6, 315, 2836, 10, 315, 13, 315, 14, 315, 2837, 5, 315, 2840, 10, 315, 3, 315, 3, 315, 6, 315, 2844, 10, 315, 13, 315, 14, 315, 2845, 3, 315, 6, 315, 2849, 10, 315, 13, 315, 14, 315, 2850, 3, 315, 3, 315, 3, 315, 3, 315, 6, 315, 2857, 10, 315, 13, 315, 14, 315, 2858, 5, 315, 2861, 10, 315, 3, 315, 3, 315, 6, 315, 2865, 10, 315, 13, 315, 14, 315, 2866, 3, 315, 3, 315, 3, 315, 6, 315, 2872, 10, 315, 13, 315, 14, 315, 2873, 3, 315, 3, 315, 5, 315, 2878, 10, 315, 3, 316, 3, 316, 3, 317, 3, 317, 3, 317, 6, 317, 2885, 10, 317, 13, 317, 14, 317, 2886, 3, 318, 3, 318, 5, 318, 2891, 10, 318, 3, 318, 6, 318, 2894, 10, 318, 13, 318, 14, 318, 2895, 3, 319, 7, 319, 2899, 10, 319, 12, 319, 14, 319, 2902, 11, 319, 3, 319, 6, 319, 2905, 10, 319, 13, 319, 14, 319, 2906, 3, 319, 7, 319, 2910, 10, 319, 12, 319, 14, 319, 2913, 11, 319, 3, 320, 3, 320, 3, 321, 3, 321, 3, 322, 3, 322, 3, 322, 3, 322, 3, 322, 3, 322, 7, 322, 2925, 10, 322, 12, 322, 14, 322, 2928, 11, 322, 3, 322, 3, 322, 3, 323, 3, 323, 3, 323, 3, 323, 3, 323, 3, 323, 7, 323, 2938, 10, 323, 12, 323, 14, 323, 2941, 11, 323, 3, 323, 3, 323, 3, 324, 3, 324, 3, 324, 6, 324, 2948, 10, 324, 13, 324, 14, 324, 2949, 3, 324, 3, 324, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 7, 325, 2960, 10, 325, 12, 325, 14, 325, 2963, 11, 325, 3, 325, 3, 325, 5, 664, 2900, 2906, 2, 326, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 312, 623, 313, 625, 314, 627, 315, 629, 316, 631, 317, 633, 318, 635, 2, 637, 2, 639, 2, 641, 2, 643, 2, 645, 2, 647, 2, 649, 2, 3, 2, 13, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 4, 2, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 2998, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 2, 621, 3, 2, 2, 2, 2, 623, 3, 2, 2, 2, 2, 625, 3, 2, 2, 2, 2, 627, 3, 2, 2, 2, 2, 629, 3, 2, 2, 2, 2, 631, 3, 2, 2, 2, 2, 633, 3, 2, 2, 2, 3, 652, 3, 2, 2, 2, 5, 658, 3, 2, 2, 2, 7, 701, 3, 2, 2, 2, 9, 705, 3, 2, 2, 2, 11, 712, 3, 2, 2, 2, 13, 717, 3, 2, 2, 2, 15, 721, 3, 2, 2, 2, 17, 724, 3, 2, 2, 2, 19, 728, 3, 2, 2, 2, 21, 732, 3, 2, 2, 2, 23, 741, 3, 2, 2, 2, 25, 747, 3, 2, 2, 2, 27, 753, 3, 2, 2, 2, 29, 756, 3, 2, 2, 2, 31, 765, 3, 2, 2, 2, 33, 770, 3, 2, 2, 2, 35, 775, 3, 2, 2, 2, 37, 782, 3, 2, 2, 2, 39, 788, 3, 2, 2, 2, 41, 795, 3, 2, 2, 2, 43, 801, 3, 2, 2, 2, 45, 804, 3, 2, 2, 2, 47, 807, 3, 2, 2, 2, 49, 811, 3, 2, 2, 2, 51, 814, 3, 2, 2, 2, 53, 818, 3, 2, 2, 2, 55, 821, 3, 2, 2, 2, 57, 828, 3, 2, 2, 2, 59, 836, 3, 2, 2, 2, 61, 841, 3, 2, 2, 2, 63, 847, 3, 2, 2, 2, 65, 850, 3, 2, 2, 2, 67, 855, 3, 2, 2, 2, 69, 861, 3, 2, 2, 2, 71, 867, 3, 2, 2, 2, 73, 871, 3, 2, 2, 2, 75, 876, 3, 2, 2, 2, 77, 880, 3, 2, 2, 2, 79, 889, 3, 2, 2, 2, 81, 894, 3, 2, 2, 2, 83, 899, 3, 2, 2, 2, 85, 904, 3, 2, 2, 2, 87, 909, 3, 2, 2, 2, 89, 913, 3, 2, 2, 2, 91, 918, 3, 2, 2, 2, 93, 924, 3, 2, 2, 2, 95, 930, 3, 2, 2, 2, 97, 936, 3, 2, 2, 2, 99, 941, 3, 2, 2, 2, 101, 946, 3, 2, 2, 2, 103, 952, 3, 2, 2, 2, 105, 957, 3, 2, 2, 2, 107, 965, 3, 2, 2, 2, 109, 968, 3, 2, 2, 2, 111, 974, 3, 2, 2, 2, 113, 982, 3, 2, 2, 2, 115, 989, 3, 2, 2, 2, 117, 994, 3, 2, 2, 2, 119, 1004, 3, 2, 2, 2, 121, 1010, 3, 2, 2, 2, 123, 1015, 3, 2, 2, 2, 125, 1025, 3, 2, 2, 2, 127, 1035, 3, 2, 2, 2, 129, 1045, 3, 2, 2, 2, 131, 1053, 3, 2, 2, 2, 133, 1059, 3, 2, 2, 2, 135, 1065, 3, 2, 2, 2, 137, 1070, 3, 2, 2, 2, 139, 1075, 3, 2, 2, 2, 141, 1082, 3, 2, 2, 2, 143, 1089, 3, 2, 2, 2, 145, 1095, 3, 2, 2, 2, 147, 1105, 3, 2, 2, 2, 149, 1110, 3, 2, 2, 2, 151, 1118, 3, 2, 2, 2, 153, 1125, 3, 2, 2, 2, 155, 1132, 3, 2, 2, 2, 157, 1137, 3, 2, 2, 2, 159, 1146, 3, 2, 2, 2, 161, 1154, 3, 2, 2, 2, 163, 1161, 3, 2, 2, 2, 165, 1169, 3, 2, 2, 2, 167, 1177, 3, 2, 2, 2, 169, 1182, 3, 2, 2, 2, 171, 1187, 3, 2, 2, 2, 173, 1192, 3, 2, 2, 2, 175, 1199, 3, 2, 2, 2, 177, 1207, 3, 2, 2, 2, 179, 1214, 3, 2, 2, 2, 181, 1218, 3, 2, 2, 2, 183, 1229, 3, 2, 2, 2, 185, 1239, 3, 2, 2, 2, 187, 1244, 3, 2, 2, 2, 189, 1250, 3, 2, 2, 2, 191, 1257, 3, 2, 2, 2, 193, 1266, 3, 2, 2, 2, 195, 1276, 3, 2, 2, 2, 197, 1279, 3, 2, 2, 2, 199, 1291, 3, 2, 2, 2, 201, 1300, 3, 2, 2, 2, 203, 1306, 3, 2, 2, 2, 205, 1313, 3, 2, 2, 2, 207, 1320, 3, 2, 2, 2, 209, 1328, 3, 2, 2, 2, 211, 1332, 3, 2, 2, 2, 213, 1338, 3, 2, 2, 2, 215, 1343, 3, 2, 2, 2, 217, 1349, 3, 2, 2, 2, 219, 1361, 3, 2, 2, 2, 221, 1368, 3, 2, 2, 2, 223, 1377, 3, 2, 2, 2, 225, 1383, 3, 2, 2, 2, 227, 1390, 3, 2, 2, 2, 229, 1395, 3, 2, 2, 2, 231, 1403, 3, 2, 2, 2, 233, 1412, 3, 2, 2, 2, 235, 1415, 3, 2, 2, 2, 237, 1424, 3, 2, 2, 2, 239, 1432, 3, 2, 2, 2, 241, 1435, 3, 2, 2, 2, 243, 1440, 3, 2, 2, 2, 245, 1444, 3, 2, 2, 2, 247, 1449, 3, 2, 2, 2, 249, 1452, 3, 2, 2, 2, 251, 1456, 3, 2, 2, 2, 253, 1459, 3, 2, 2, 2, 255, 1463, 3, 2, 2, 2, 257, 1468, 3, 2, 2, 2, 259, 1474, 3, 2, 2, 2, 261, 1483, 3, 2, 2, 2, 263, 1489, 3, 2, 2, 2, 265, 1497, 3, 2, 2, 2, 267, 1501, 3, 2, 2, 2, 269, 1507, 3, 2, 2, 2, 271, 1517, 3, 2, 2, 2, 273, 1522, 3, 2, 2, 2, 275, 1534, 3, 2, 2, 2, 277, 1538, 3, 2, 2, 2, 279, 1549, 3, 2, 2, 2, 281, 1556, 3, 2, 2, 2, 283, 1560, 3, 2, 2, 2, 285, 1563, 3, 2, 2, 2, 287, 1568, 3, 2, 2, 2, 289, 1576, 3, 2, 2, 2, 291, 1587, 3, 2, 2, 2, 293, 1597, 3, 2, 2, 2, 295, 1607, 3, 2, 2, 2, 297, 1614, 3, 2, 2, 2, 299, 1620, 3, 2, 2, 2, 301, 1626, 3, 2, 2, 2, 303, 1642, 3, 2, 2, 2, 305, 1655, 3, 2, 2, 2, 307, 1668, 3, 2, 2, 2, 309, 1678, 3, 2, 2, 2, 311, 1685, 3, 2, 2, 2, 313, 1696, 3, 2, 2, 2, 315, 1707, 3, 2, 2, 2, 317, 1713, 3, 2, 2, 2, 319, 1718, 3, 2, 2, 2, 321, 1726, 3, 2, 2, 2, 323, 1732, 3, 2, 2, 2, 325, 1742, 3, 2, 2, 2, 327, 1751, 3, 2, 2, 2, 329, 1760, 3, 2, 2, 2, 331, 1768, 3, 2, 2, 2, 333, 1774, 3, 2, 2, 2, 335, 1780, 3, 2, 2, 2, 337, 1788, 3, 2, 2, 2, 339, 1793, 3, 2, 2, 2, 341, 1803, 3, 2, 2, 2, 343, 1810, 3, 2, 2, 2, 345, 1820, 3, 2, 2, 2, 347, 1828, 3, 2, 2, 2, 349, 1834, 3, 2, 2, 2, 351, 1848, 3, 2, 2, 2, 353, 1861, 3, 2, 2, 2, 355, 1869, 3, 2, 2, 2, 357, 1876, 3, 2, 2, 2, 359, 1883, 3, 2, 2, 2, 361, 1895, 3, 2, 2, 2, 363, 1904, 3, 2, 2, 2, 365, 1913, 3, 2, 2, 2, 367, 1921, 3, 2, 2, 2, 369, 1931, 3, 2, 2, 2, 371, 1942, 3, 2, 2, 2, 373, 1948, 3, 2, 2, 2, 375, 1956, 3, 2, 2, 2, 377, 1968, 3, 2, 2, 2, 379, 1975, 3, 2, 2, 2, 381, 1983, 3, 2, 2, 2, 383, 1992, 3, 2, 2, 2, 385, 2002, 3, 2, 2, 2, 387, 2009, 3, 2, 2, 2, 389, 2015, 3, 2, 2, 2, 391, 2027, 3, 2, 2, 2, 393, 2040, 3, 2, 2, 2, 395, 2049, 3, 2, 2, 2, 397, 2059, 3, 2, 2, 2, 399, 2063, 3, 2, 2, 2, 401, 2072, 3, 2, 2, 2, 403, 2080, 3, 2, 2, 2, 405, 2088, 3, 2, 2, 2, 407, 2093, 3, 2, 2, 2, 409, 2104, 3, 2, 2, 2, 411, 2116, 3, 2, 2, 2, 413, 2125, 3, 2, 2, 2, 415, 2133, 3, 2, 2, 2, 417, 2140, 3, 2, 2, 2, 419, 2146, 3, 2, 2, 2, 421, 2151, 3, 2, 2, 2, 423, 2158, 3, 2, 2, 2, 425, 2163, 3, 2, 2, 2, 427, 2170, 3, 2, 2, 2, 429, 2178, 3, 2, 2, 2, 431, 2185, 3, 2, 2, 2, 433, 2192, 3, 2, 2, 2, 435, 2197, 3, 2, 2, 2, 437, 2202, 3, 2, 2, 2, 439, 2208, 3, 2, 2, 2, 441, 2220, 3, 2, 2, 2, 443, 2231, 3, 2, 2, 2, 445, 2244, 3, 2, 2, 2, 447, 2250, 3, 2, 2, 2, 449, 2258, 3, 2, 2, 2, 451, 2264, 3, 2, 2, 2, 453, 2271, 3, 2, 2, 2, 455, 2276, 3, 2, 2, 2, 457, 2282, 3, 2, 2, 2, 459, 2289, 3, 2, 2, 2, 461, 2299, 3, 2, 2, 2, 463, 2306, 3, 2, 2, 2, 465, 2322, 3, 2, 2, 2, 467, 2331, 3, 2, 2, 2, 469, 2335, 3, 2, 2, 2, 471, 2339, 3, 2, 2, 2, 473, 2345, 3, 2, 2, 2, 475, 2351, 3, 2, 2, 2, 477, 2356, 3, 2, 2, 2, 479, 2361, 3, 2, 2, 2, 481, 2369, 3, 2, 2, 2, 483, 2376, 3, 2, 2, 2, 485, 2383, 3, 2, 2, 2, 487, 2398, 3, 2, 2, 2, 489, 2415, 3, 2, 2, 2, 491, 2431, 3, 2, 2, 2, 493, 2445, 3, 2, 2, 2, 495, 2459, 3, 2, 2, 2, 497, 2474, 3, 2, 2, 2, 499, 2493, 3, 2, 2, 2, 501, 2504, 3, 2, 2, 2, 503, 2526, 3, 2, 2, 2, 505, 2541, 3, 2, 2, 2, 507, 2565, 3, 2, 2, 2, 509, 2583, 3, 2, 2, 2, 511, 2586, 3, 2, 2, 2, 513, 2599, 3, 2, 2, 2, 515, 2606, 3, 2, 2, 2, 517, 2613, 3, 2, 2, 2, 519, 2619, 3, 2, 2, 2, 521, 2623, 3, 2, 2, 2, 523, 2628, 3, 2, 2, 2, 525, 2636, 3, 2, 2, 2, 527, 2643, 3, 2, 2, 2, 529, 2653, 3, 2, 2, 2, 531, 2659, 3, 2, 2, 2, 533, 2667, 3, 2, 2, 2, 535, 2675, 3, 2, 2, 2, 537, 2684, 3, 2, 2, 2, 539, 2688, 3, 2, 2, 2, 541, 2695, 3, 2, 2, 2, 543, 2701, 3, 2, 2, 2, 545, 2708, 3, 2, 2, 2, 547, 2713, 3, 2, 2, 2, 549, 2718, 3, 2, 2, 2, 551, 2728, 3, 2, 2, 2, 553, 2737, 3, 2, 2, 2, 555, 2745, 3, 2, 2, 2, 557, 2749, 3, 2, 2, 2, 559, 2753, 3, 2, 2, 2, 561, 2758, 3, 2, 2, 2, 563, 2760, 3, 2, 2, 2, 565, 2762, 3, 2, 2, 2, 567, 2764, 3, 2, 2, 2, 569, 2766, 3, 2, 2, 2, 571, 2768, 3, 2, 2, 2, 573, 2770, 3, 2, 2, 2, 575, 2772, 3, 2, 2, 2, 577, 2774, 3, 2, 2, 2, 579, 2776, 3, 2, 2, 2, 581, 2778, 3, 2, 2, 2, 583, 2780, 3, 2, 2, 2, 585, 2782, 3, 2, 2, 2, 587, 2784, 3, 2, 2, 2, 589, 2786, 3, 2, 2, 2, 591, 2788, 3, 2, 2, 2, 593, 2790, 3, 2, 2, 2, 595, 2792, 3, 2, 2, 2, 597, 2794, 3, 2, 2, 2, 599, 2796, 3, 2, 2, 2, 601, 2798, 3, 2, 2, 2, 603, 2800, 3, 2, 2, 2, 605, 2802, 3, 2, 2, 2, 607, 2804, 3, 2, 2, 2, 609, 2806, 3, 2, 2, 2, 611, 2808, 3, 2, 2, 2, 613, 2810, 3, 2, 2, 2, 615, 2812, 3, 2, 2, 2, 617, 2814, 3, 2, 2, 2, 619, 2817, 3, 2, 2, 2, 621, 2819, 3, 2, 2, 2, 623, 2822, 3, 2, 2, 2, 625, 2827, 3, 2, 2, 2, 627, 2830, 3, 2, 2, 2, 629, 2877, 3, 2, 2, 2, 631, 2879, 3, 2, 2, 2, 633, 2884, 3, 2, 2, 2, 635, 2888, 3, 2, 2, 2, 637, 2900, 3, 2, 2, 2, 639, 2914, 3, 2, 2, 2, 641, 2916, 3, 2, 2, 2, 643, 2918, 3, 2, 2, 2, 645, 2931, 3, 2, 2, 2, 647, 2944, 3, 2, 2, 2, 649, 2953, 3, 2, 2, 2, 651, 653, 9, 2, 2, 2, 652, 651, 3, 2, 2, 2, 653, 654, 3, 2, 2, 2, 654, 652, 3, 2, 2, 2, 654, 655, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 657, 8, 2, 2, 2, 657, 4, 3, 2, 2, 2, 658, 659, 7, 49, 2, 2, 659, 660, 7, 44, 2, 2, 660, 664, 3, 2, 2, 2, 661, 663, 11, 2, 2, 2, 662, 661, 3, 2, 2, 2, 663, 666, 3, 2, 2, 2, 664, 665, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 665, 667, 3, 2, 2, 2, 666, 664, 3, 2, 2, 2, 667, 668, 7, 44, 2, 2, 668, 669, 7, 49, 2, 2, 669, 670, 3, 2, 2, 2, 670, 671, 8, 3, 2, 2, 671, 6, 3, 2, 2, 2, 672, 673, 7, 47, 2, 2, 673, 674, 7, 47, 2, 2, 674, 677, 7, 34, 2, 2, 675, 677, 7, 37, 2, 2, 676, 672, 3, 2, 2, 2, 676, 675, 3, 2, 2, 2, 677, 681, 3, 2, 2, 2, 678, 680, 10, 3, 2, 2, 679, 678, 3, 2, 2, 2, 680, 683, 3, 2, 2, 2, 681, 679, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 689, 3, 2, 2, 2, 683, 681, 3, 2, 2, 2, 684, 686, 7, 15, 2, 2, 685, 684, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 687, 3, 2, 2, 2, 687, 690, 7, 12, 2, 2, 688, 690, 7, 2, 2, 3, 689, 685, 3, 2, 2, 2, 689, 688, 3, 2, 2, 2, 690, 702, 3, 2, 2, 2, 691, 692, 7, 47, 2, 2, 692, 693, 7, 47, 2, 2, 693, 699, 3, 2, 2, 2, 694, 696, 7, 15, 2, 2, 695, 694, 3, 2, 2, 2, 695, 696, 3, 2, 2, 2, 696, 697, 3, 2, 2, 2, 697, 700, 7, 12, 2, 2, 698, 700, 7, 2, 2, 3, 699, 695, 3, 2, 2, 2, 699, 698, 3, 2, 2, 2, 700, 702, 3, 2, 2, 2, 701, 676, 3, 2, 2, 2, 701, 691, 3, 2, 2, 2, 702, 703, 3, 2, 2, 2, 703, 704, 8, 4, 2, 2, 704, 8, 3, 2, 2, 2, 705, 706, 7, 85, 2, 2, 706, 707, 7, 71, 2, 2, 707, 708, 7, 78, 2, 2, 708, 709, 7, 71, 2, 2, 709, 710, 7, 69, 2, 2, 710, 711, 7, 86, 2, 2, 711, 10, 3, 2, 2, 2, 712, 713, 7, 72, 2, 2, 713, 714, 7, 84, 2, 2, 714, 715, 7, 81, 2, 2, 715, 716, 7, 79, 2, 2, 716, 12, 3, 2, 2, 2, 717, 718, 7, 67, 2, 2, 718, 719, 7, 70, 2, 2, 719, 720, 7, 70, 2, 2, 720, 14, 3, 2, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 85, 2, 2, 723, 16, 3, 2, 2, 2, 724, 725, 7, 67, 2, 2, 725, 726, 7, 78, 2, 2, 726, 727, 7, 78, 2, 2, 727, 18, 3, 2, 2, 2, 728, 729, 7, 67, 2, 2, 729, 730, 7, 80, 2, 2, 730, 731, 7, 91, 2, 2, 731, 20, 3, 2, 2, 2, 732, 733, 7, 70, 2, 2, 733, 734, 7, 75, 2, 2, 734, 735, 7, 85, 2, 2, 735, 736, 7, 86, 2, 2, 736, 737, 7, 75, 2, 2, 737, 738, 7, 80, 2, 2, 738, 739, 7, 69, 2, 2, 739, 740, 7, 86, 2, 2, 740, 22, 3, 2, 2, 2, 741, 742, 7, 89, 2, 2, 742, 743, 7, 74, 2, 2, 743, 744, 7, 71, 2, 2, 744, 745, 7, 84, 2, 2, 745, 746, 7, 71, 2, 2, 746, 24, 3, 2, 2, 2, 747, 748, 7, 73, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 87, 2, 2, 751, 752, 7, 82, 2, 2, 752, 26, 3, 2, 2, 2, 753, 754, 7, 68, 2, 2, 754, 755, 7, 91, 2, 2, 755, 28, 3, 2, 2, 2, 756, 757, 7, 73, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 81, 2, 2, 759, 760, 7, 87, 2, 2, 760, 761, 7, 82, 2, 2, 761, 762, 7, 75, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 73, 2, 2, 764, 30, 3, 2, 2, 2, 765, 766, 7, 85, 2, 2, 766, 767, 7, 71, 2, 2, 767, 768, 7, 86, 2, 2, 768, 769, 7, 85, 2, 2, 769, 32, 3, 2, 2, 2, 770, 771, 7, 69, 2, 2, 771, 772, 7, 87, 2, 2, 772, 773, 7, 68, 2, 2, 773, 774, 7, 71, 2, 2, 774, 34, 3, 2, 2, 2, 775, 776, 7, 84, 2, 2, 776, 777, 7, 81, 2, 2, 777, 778, 7, 78, 2, 2, 778, 779, 7, 78, 2, 2, 779, 780, 7, 87, 2, 2, 780, 781, 7, 82, 2, 2, 781, 36, 3, 2, 2, 2, 782, 783, 7, 81, 2, 2, 783, 784, 7, 84, 2, 2, 784, 785, 7, 70, 2, 2, 785, 786, 7, 71, 2, 2, 786, 787, 7, 84, 2, 2, 787, 38, 3, 2, 2, 2, 788, 789, 7, 74, 2, 2, 789, 790, 7, 67, 2, 2, 790, 791, 7, 88, 2, 2, 791, 792, 7, 75, 2, 2, 792, 793, 7, 80, 2, 2, 793, 794, 7, 73, 2, 2, 794, 40, 3, 2, 2, 2, 795, 796, 7, 78, 2, 2, 796, 797, 7, 75, 2, 2, 797, 798, 7, 79, 2, 2, 798, 799, 7, 75, 2, 2, 799, 800, 7, 86, 2, 2, 800, 42, 3, 2, 2, 2, 801, 802, 7, 67, 2, 2, 802, 803, 7, 86, 2, 2, 803, 44, 3, 2, 2, 2, 804, 805, 7, 81, 2, 2, 805, 806, 7, 84, 2, 2, 806, 46, 3, 2, 2, 2, 807, 808, 7, 67, 2, 2, 808, 809, 7, 80, 2, 2, 809, 810, 7, 70, 2, 2, 810, 48, 3, 2, 2, 2, 811, 812, 7, 75, 2, 2, 812, 813, 7, 80, 2, 2, 813, 50, 3, 2, 2, 2, 814, 815, 7, 80, 2, 2, 815, 816, 7, 81, 2, 2, 816, 817, 7, 86, 2, 2, 817, 52, 3, 2, 2, 2, 818, 819, 7, 80, 2, 2, 819, 820, 7, 81, 2, 2, 820, 54, 3, 2, 2, 2, 821, 822, 7, 71, 2, 2, 822, 823, 7, 90, 2, 2, 823, 824, 7, 75, 2, 2, 824, 825, 7, 85, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 85, 2, 2, 827, 56, 3, 2, 2, 2, 828, 829, 7, 68, 2, 2, 829, 830, 7, 71, 2, 2, 830, 831, 7, 86, 2, 2, 831, 832, 7, 89, 2, 2, 832, 833, 7, 71, 2, 2, 833, 834, 7, 71, 2, 2, 834, 835, 7, 80, 2, 2, 835, 58, 3, 2, 2, 2, 836, 837, 7, 78, 2, 2, 837, 838, 7, 75, 2, 2, 838, 839, 7, 77, 2, 2, 839, 840, 7, 71, 2, 2, 840, 60, 3, 2, 2, 2, 841, 842, 7, 84, 2, 2, 842, 843, 7, 78, 2, 2, 843, 844, 7, 75, 2, 2, 844, 845, 7, 77, 2, 2, 845, 846, 7, 71, 2, 2, 846, 62, 3, 2, 2, 2, 847, 848, 7, 75, 2, 2, 848, 849, 7, 85, 2, 2, 849, 64, 3, 2, 2, 2, 850, 851, 7, 86, 2, 2, 851, 852, 7, 84, 2, 2, 852, 853, 7, 87, 2, 2, 853, 854, 7, 71, 2, 2, 854, 66, 3, 2, 2, 2, 855, 856, 7, 72, 2, 2, 856, 857, 7, 67, 2, 2, 857, 858, 7, 78, 2, 2, 858, 859, 7, 85, 2, 2, 859, 860, 7, 71, 2, 2, 860, 68, 3, 2, 2, 2, 861, 862, 7, 80, 2, 2, 862, 863, 7, 87, 2, 2, 863, 864, 7, 78, 2, 2, 864, 865, 7, 78, 2, 2, 865, 866, 7, 85, 2, 2, 866, 70, 3, 2, 2, 2, 867, 868, 7, 67, 2, 2, 868, 869, 7, 85, 2, 2, 869, 870, 7, 69, 2, 2, 870, 72, 3, 2, 2, 2, 871, 872, 7, 70, 2, 2, 872, 873, 7, 71, 2, 2, 873, 874, 7, 85, 2, 2, 874, 875, 7, 69, 2, 2, 875, 74, 3, 2, 2, 2, 876, 877, 7, 72, 2, 2, 877, 878, 7, 81, 2, 2, 878, 879, 7, 84, 2, 2, 879, 76, 3, 2, 2, 2, 880, 881, 7, 75, 2, 2, 881, 882, 7, 80, 2, 2, 882, 883, 7, 86, 2, 2, 883, 884, 7, 71, 2, 2, 884, 885, 7, 84, 2, 2, 885, 886, 7, 88, 2, 2, 886, 887, 7, 67, 2, 2, 887, 888, 7, 78, 2, 2, 888, 78, 3, 2, 2, 2, 889, 890, 7, 69, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 85, 2, 2, 892, 893, 7, 71, 2, 2, 893, 80, 3, 2, 2, 2, 894, 895, 7, 89, 2, 2, 895, 896, 7, 74, 2, 2, 896, 897, 7, 71, 2, 2, 897, 898, 7, 80, 2, 2, 898, 82, 3, 2, 2, 2, 899, 900, 7, 86, 2, 2, 900, 901, 7, 74, 2, 2, 901, 902, 7, 71, 2, 2, 902, 903, 7, 80, 2, 2, 903, 84, 3, 2, 2, 2, 904, 905, 7, 71, 2, 2, 905, 906, 7, 78, 2, 2, 906, 907, 7, 85, 2, 2, 907, 908, 7, 71, 2, 2, 908, 86, 3, 2, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 80, 2, 2, 911, 912, 7, 70, 2, 2, 912, 88, 3, 2, 2, 2, 913, 914, 7, 76, 2, 2, 914, 915, 7, 81, 2, 2, 915, 916, 7, 75, 2, 2, 916, 917, 7, 80, 2, 2, 917, 90, 3, 2, 2, 2, 918, 919, 7, 69, 2, 2, 919, 920, 7, 84, 2, 2, 920, 921, 7, 81, 2, 2, 921, 922, 7, 85, 2, 2, 922, 923, 7, 85, 2, 2, 923, 92, 3, 2, 2, 2, 924, 925, 7, 81, 2, 2, 925, 926, 7, 87, 2, 2, 926, 927, 7, 86, 2, 2, 927, 928, 7, 71, 2, 2, 928, 929, 7, 84, 2, 2, 929, 94, 3, 2, 2, 2, 930, 931, 7, 75, 2, 2, 931, 932, 7, 80, 2, 2, 932, 933, 7, 80, 2, 2, 933, 934, 7, 71, 2, 2, 934, 935, 7, 84, 2, 2, 935, 96, 3, 2, 2, 2, 936, 937, 7, 78, 2, 2, 937, 938, 7, 71, 2, 2, 938, 939, 7, 72, 2, 2, 939, 940, 7, 86, 2, 2, 940, 98, 3, 2, 2, 2, 941, 942, 7, 85, 2, 2, 942, 943, 7, 71, 2, 2, 943, 944, 7, 79, 2, 2, 944, 945, 7, 75, 2, 2, 945, 100, 3, 2, 2, 2, 946, 947, 7, 84, 2, 2, 947, 948, 7, 75, 2, 2, 948, 949, 7, 73, 2, 2, 949, 950, 7, 74, 2, 2, 950, 951, 7, 86, 2, 2, 951, 102, 3, 2, 2, 2, 952, 953, 7, 72, 2, 2, 953, 954, 7, 87, 2, 2, 954, 955, 7, 78, 2, 2, 955, 956, 7, 78, 2, 2, 956, 104, 3, 2, 2, 2, 957, 958, 7, 80, 2, 2, 958, 959, 7, 67, 2, 2, 959, 960, 7, 86, 2, 2, 960, 961, 7, 87, 2, 2, 961, 962, 7, 84, 2, 2, 962, 963, 7, 67, 2, 2, 963, 964, 7, 78, 2, 2, 964, 106, 3, 2, 2, 2, 965, 966, 7, 81, 2, 2, 966, 967, 7, 80, 2, 2, 967, 108, 3, 2, 2, 2, 968, 969, 7, 82, 2, 2, 969, 970, 7, 75, 2, 2, 970, 971, 7, 88, 2, 2, 971, 972, 7, 81, 2, 2, 972, 973, 7, 86, 2, 2, 973, 110, 3, 2, 2, 2, 974, 975, 7, 78, 2, 2, 975, 976, 7, 67, 2, 2, 976, 977, 7, 86, 2, 2, 977, 978, 7, 71, 2, 2, 978, 979, 7, 84, 2, 2, 979, 980, 7, 67, 2, 2, 980, 981, 7, 78, 2, 2, 981, 112, 3, 2, 2, 2, 982, 983, 7, 89, 2, 2, 983, 984, 7, 75, 2, 2, 984, 985, 7, 80, 2, 2, 985, 986, 7, 70, 2, 2, 986, 987, 7, 81, 2, 2, 987, 988, 7, 89, 2, 2, 988, 114, 3, 2, 2, 2, 989, 990, 7, 81, 2, 2, 990, 991, 7, 88, 2, 2, 991, 992, 7, 71, 2, 2, 992, 993, 7, 84, 2, 2, 993, 116, 3, 2, 2, 2, 994, 995, 7, 82, 2, 2, 995, 996, 7, 67, 2, 2, 996, 997, 7, 84, 2, 2, 997, 998, 7, 86, 2, 2, 998, 999, 7, 75, 2, 2, 999, 1000, 7, 86, 2, 2, 1000, 1001, 7, 75, 2, 2, 1001, 1002, 7, 81, 2, 2, 1002, 1003, 7, 80, 2, 2, 1003, 118, 3, 2, 2, 2, 1004, 1005, 7, 84, 2, 2, 1005, 1006, 7, 67, 2, 2, 1006, 1007, 7, 80, 2, 2, 1007, 1008, 7, 73, 2, 2, 1008, 1009, 7, 71, 2, 2, 1009, 120, 3, 2, 2, 2, 1010, 1011, 7, 84, 2, 2, 1011, 1012, 7, 81, 2, 2, 1012, 1013, 7, 89, 2, 2, 1013, 1014, 7, 85, 2, 2, 1014, 122, 3, 2, 2, 2, 1015, 1016, 7, 87, 2, 2, 1016, 1017, 7, 80, 2, 2, 1017, 1018, 7, 68, 2, 2, 1018, 1019, 7, 81, 2, 2, 1019, 1020, 7, 87, 2, 2, 1020, 1021, 7, 80, 2, 2, 1021, 1022, 7, 70, 2, 2, 1022, 1023, 7, 71, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 124, 3, 2, 2, 2, 1025, 1026, 7, 82, 2, 2, 1026, 1027, 7, 84, 2, 2, 1027, 1028, 7, 71, 2, 2, 1028, 1029, 7, 69, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 70, 2, 2, 1031, 1032, 7, 75, 2, 2, 1032, 1033, 7, 80, 2, 2, 1033, 1034, 7, 73, 2, 2, 1034, 126, 3, 2, 2, 2, 1035, 1036, 7, 72, 2, 2, 1036, 1037, 7, 81, 2, 2, 1037, 1038, 7, 78, 2, 2, 1038, 1039, 7, 78, 2, 2, 1039, 1040, 7, 81, 2, 2, 1040, 1041, 7, 89, 2, 2, 1041, 1042, 7, 75, 2, 2, 1042, 1043, 7, 80, 2, 2, 1043, 1044, 7, 73, 2, 2, 1044, 128, 3, 2, 2, 2, 1045, 1046, 7, 69, 2, 2, 1046, 1047, 7, 87, 2, 2, 1047, 1048, 7, 84, 2, 2, 1048, 1049, 7, 84, 2, 2, 1049, 1050, 7, 71, 2, 2, 1050, 1051, 7, 80, 2, 2, 1051, 1052, 7, 86, 2, 2, 1052, 130, 3, 2, 2, 2, 1053, 1054, 7, 72, 2, 2, 1054, 1055, 7, 75, 2, 2, 1055, 1056, 7, 84, 2, 2, 1056, 1057, 7, 85, 2, 2, 1057, 1058, 7, 86, 2, 2, 1058, 132, 3, 2, 2, 2, 1059, 1060, 7, 67, 2, 2, 1060, 1061, 7, 72, 2, 2, 1061, 1062, 7, 86, 2, 2, 1062, 1063, 7, 71, 2, 2, 1063, 1064, 7, 84, 2, 2, 1064, 134, 3, 2, 2, 2, 1065, 1066, 7, 78, 2, 2, 1066, 1067, 7, 67, 2, 2, 1067, 1068, 7, 85, 2, 2, 1068, 1069, 7, 86, 2, 2, 1069, 136, 3, 2, 2, 2, 1070, 1071, 7, 89, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 86, 2, 2, 1073, 1074, 7, 74, 2, 2, 1074, 138, 3, 2, 2, 2, 1075, 1076, 7, 88, 2, 2, 1076, 1077, 7, 67, 2, 2, 1077, 1078, 7, 78, 2, 2, 1078, 1079, 7, 87, 2, 2, 1079, 1080, 7, 71, 2, 2, 1080, 1081, 7, 85, 2, 2, 1081, 140, 3, 2, 2, 2, 1082, 1083, 7, 69, 2, 2, 1083, 1084, 7, 84, 2, 2, 1084, 1085, 7, 71, 2, 2, 1085, 1086, 7, 67, 2, 2, 1086, 1087, 7, 86, 2, 2, 1087, 1088, 7, 71, 2, 2, 1088, 142, 3, 2, 2, 2, 1089, 1090, 7, 86, 2, 2, 1090, 1091, 7, 67, 2, 2, 1091, 1092, 7, 68, 2, 2, 1092, 1093, 7, 78, 2, 2, 1093, 1094, 7, 71, 2, 2, 1094, 144, 3, 2, 2, 2, 1095, 1096, 7, 70, 2, 2, 1096, 1097, 7, 75, 2, 2, 1097, 1098, 7, 84, 2, 2, 1098, 1099, 7, 71, 2, 2, 1099, 1100, 7, 69, 2, 2, 1100, 1101, 7, 86, 2, 2, 1101, 1102, 7, 81, 2, 2, 1102, 1103, 7, 84, 2, 2, 1103, 1104, 7, 91, 2, 2, 1104, 146, 3, 2, 2, 2, 1105, 1106, 7, 88, 2, 2, 1106, 1107, 7, 75, 2, 2, 1107, 1108, 7, 71, 2, 2, 1108, 1109, 7, 89, 2, 2, 1109, 148, 3, 2, 2, 2, 1110, 1111, 7, 84, 2, 2, 1111, 1112, 7, 71, 2, 2, 1112, 1113, 7, 82, 2, 2, 1113, 1114, 7, 78, 2, 2, 1114, 1115, 7, 67, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 71, 2, 2, 1117, 150, 3, 2, 2, 2, 1118, 1119, 7, 75, 2, 2, 1119, 1120, 7, 80, 2, 2, 1120, 1121, 7, 85, 2, 2, 1121, 1122, 7, 71, 2, 2, 1122, 1123, 7, 84, 2, 2, 1123, 1124, 7, 86, 2, 2, 1124, 152, 3, 2, 2, 2, 1125, 1126, 7, 70, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 78, 2, 2, 1128, 1129, 7, 71, 2, 2, 1129, 1130, 7, 86, 2, 2, 1130, 1131, 7, 71, 2, 2, 1131, 154, 3, 2, 2, 2, 1132, 1133, 7, 75, 2, 2, 1133, 1134, 7, 80, 2, 2, 1134, 1135, 7, 86, 2, 2, 1135, 1136, 7, 81, 2, 2, 1136, 156, 3, 2, 2, 2, 1137, 1138, 7, 70, 2, 2, 1138, 1139, 7, 71, 2, 2, 1139, 1140, 7, 85, 2, 2, 1140, 1141, 7, 69, 2, 2, 1141, 1142, 7, 84, 2, 2, 1142, 1143, 7, 75, 2, 2, 1143, 1144, 7, 68, 2, 2, 1144, 1145, 7, 71, 2, 2, 1145, 158, 3, 2, 2, 2, 1146, 1147, 7, 71, 2, 2, 1147, 1148, 7, 90, 2, 2, 1148, 1149, 7, 82, 2, 2, 1149, 1150, 7, 78, 2, 2, 1150, 1151, 7, 67, 2, 2, 1151, 1152, 7, 75, 2, 2, 1152, 1153, 7, 80, 2, 2, 1153, 160, 3, 2, 2, 2, 1154, 1155, 7, 72, 2, 2, 1155, 1156, 7, 81, 2, 2, 1156, 1157, 7, 84, 2, 2, 1157, 1158, 7, 79, 2, 2, 1158, 1159, 7, 67, 2, 2, 1159, 1160, 7, 86, 2, 2, 1160, 162, 3, 2, 2, 2, 1161, 1162, 7, 78, 2, 2, 1162, 1163, 7, 81, 2, 2, 1163, 1164, 7, 73, 2, 2, 1164, 1165, 7, 75, 2, 2, 1165, 1166, 7, 69, 2, 2, 1166, 1167, 7, 67, 2, 2, 1167, 1168, 7, 78, 2, 2, 1168, 164, 3, 2, 2, 2, 1169, 1170, 7, 69, 2, 2, 1170, 1171, 7, 81, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 71, 2, 2, 1173, 1174, 7, 73, 2, 2, 1174, 1175, 7, 71, 2, 2, 1175, 1176, 7, 80, 2, 2, 1176, 166, 3, 2, 2, 2, 1177, 1178, 7, 69, 2, 2, 1178, 1179, 7, 81, 2, 2, 1179, 1180, 7, 85, 2, 2, 1180, 1181, 7, 86, 2, 2, 1181, 168, 3, 2, 2, 2, 1182, 1183, 7, 69, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 85, 2, 2, 1185, 1186, 7, 86, 2, 2, 1186, 170, 3, 2, 2, 2, 1187, 1188, 7, 85, 2, 2, 1188, 1189, 7, 74, 2, 2, 1189, 1190, 7, 81, 2, 2, 1190, 1191, 7, 89, 2, 2, 1191, 172, 3, 2, 2, 2, 1192, 1193, 7, 86, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 68, 2, 2, 1195, 1196, 7, 78, 2, 2, 1196, 1197, 7, 71, 2, 2, 1197, 1198, 7, 85, 2, 2, 1198, 174, 3, 2, 2, 2, 1199, 1200, 7, 69, 2, 2, 1200, 1201, 7, 81, 2, 2, 1201, 1202, 7, 78, 2, 2, 1202, 1203, 7, 87, 2, 2, 1203, 1204, 7, 79, 2, 2, 1204, 1205, 7, 80, 2, 2, 1205, 1206, 7, 85, 2, 2, 1206, 176, 3, 2, 2, 2, 1207, 1208, 7, 69, 2, 2, 1208, 1209, 7, 81, 2, 2, 1209, 1210, 7, 78, 2, 2, 1210, 1211, 7, 87, 2, 2, 1211, 1212, 7, 79, 2, 2, 1212, 1213, 7, 80, 2, 2, 1213, 178, 3, 2, 2, 2, 1214, 1215, 7, 87, 2, 2, 1215, 1216, 7, 85, 2, 2, 1216, 1217, 7, 71, 2, 2, 1217, 180, 3, 2, 2, 2, 1218, 1219, 7, 82, 2, 2, 1219, 1220, 7, 67, 2, 2, 1220, 1221, 7, 84, 2, 2, 1221, 1222, 7, 86, 2, 2, 1222, 1223, 7, 75, 2, 2, 1223, 1224, 7, 86, 2, 2, 1224, 1225, 7, 75, 2, 2, 1225, 1226, 7, 81, 2, 2, 1226, 1227, 7, 80, 2, 2, 1227, 1228, 7, 85, 2, 2, 1228, 182, 3, 2, 2, 2, 1229, 1230, 7, 72, 2, 2, 1230, 1231, 7, 87, 2, 2, 1231, 1232, 7, 80, 2, 2, 1232, 1233, 7, 69, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 1235, 7, 75, 2, 2, 1235, 1236, 7, 81, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 85, 2, 2, 1238, 184, 3, 2, 2, 2, 1239, 1240, 7, 70, 2, 2, 1240, 1241, 7, 84, 2, 2, 1241, 1242, 7, 81, 2, 2, 1242, 1243, 7, 82, 2, 2, 1243, 186, 3, 2, 2, 2, 1244, 1245, 7, 87, 2, 2, 1245, 1246, 7, 80, 2, 2, 1246, 1247, 7, 75, 2, 2, 1247, 1248, 7, 81, 2, 2, 1248, 1249, 7, 80, 2, 2, 1249, 188, 3, 2, 2, 2, 1250, 1251, 7, 71, 2, 2, 1251, 1252, 7, 90, 2, 2, 1252, 1253, 7, 69, 2, 2, 1253, 1254, 7, 71, 2, 2, 1254, 1255, 7, 82, 2, 2, 1255, 1256, 7, 86, 2, 2, 1256, 190, 3, 2, 2, 2, 1257, 1258, 7, 85, 2, 2, 1258, 1259, 7, 71, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 1261, 7, 79, 2, 2, 1261, 1262, 7, 75, 2, 2, 1262, 1263, 7, 80, 2, 2, 1263, 1264, 7, 87, 2, 2, 1264, 1265, 7, 85, 2, 2, 1265, 192, 3, 2, 2, 2, 1266, 1267, 7, 75, 2, 2, 1267, 1268, 7, 80, 2, 2, 1268, 1269, 7, 86, 2, 2, 1269, 1270, 7, 71, 2, 2, 1270, 1271, 7, 84, 2, 2, 1271, 1272, 7, 85, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 69, 2, 2, 1274, 1275, 7, 86, 2, 2, 1275, 194, 3, 2, 2, 2, 1276, 1277, 7, 86, 2, 2, 1277, 1278, 7, 81, 2, 2, 1278, 196, 3, 2, 2, 2, 1279, 1280, 7, 86, 2, 2, 1280, 1281, 7, 67, 2, 2, 1281, 1282, 7, 68, 2, 2, 1282, 1283, 7, 78, 2, 2, 1283, 1284, 7, 71, 2, 2, 1284, 1285, 7, 85, 2, 2, 1285, 1286, 7, 67, 2, 2, 1286, 1287, 7, 79, 2, 2, 1287, 1288, 7, 82, 2, 2, 1288, 1289, 7, 78, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 198, 3, 2, 2, 2, 1291, 1292, 7, 85, 2, 2, 1292, 1293, 7, 86, 2, 2, 1293, 1294, 7, 84, 2, 2, 1294, 1295, 7, 67, 2, 2, 1295, 1296, 7, 86, 2, 2, 1296, 1297, 7, 75, 2, 2, 1297, 1298, 7, 72, 2, 2, 1298, 1299, 7, 91, 2, 2, 1299, 200, 3, 2, 2, 2, 1300, 1301, 7, 67, 2, 2, 1301, 1302, 7, 78, 2, 2, 1302, 1303, 7, 86, 2, 2, 1303, 1304, 7, 71, 2, 2, 1304, 1305, 7, 84, 2, 2, 1305, 202, 3, 2, 2, 2, 1306, 1307, 7, 84, 2, 2, 1307, 1308, 7, 71, 2, 2, 1308, 1309, 7, 80, 2, 2, 1309, 1310, 7, 67, 2, 2, 1310, 1311, 7, 79, 2, 2, 1311, 1312, 7, 71, 2, 2, 1312, 204, 3, 2, 2, 2, 1313, 1314, 7, 85, 2, 2, 1314, 1315, 7, 86, 2, 2, 1315, 1316, 7, 84, 2, 2, 1316, 1317, 7, 87, 2, 2, 1317, 1318, 7, 69, 2, 2, 1318, 1319, 7, 86, 2, 2, 1319, 206, 3, 2, 2, 2, 1320, 1321, 7, 69, 2, 2, 1321, 1322, 7, 81, 2, 2, 1322, 1323, 7, 79, 2, 2, 1323, 1324, 7, 79, 2, 2, 1324, 1325, 7, 71, 2, 2, 1325, 1326, 7, 80, 2, 2, 1326, 1327, 7, 86, 2, 2, 1327, 208, 3, 2, 2, 2, 1328, 1329, 7, 85, 2, 2, 1329, 1330, 7, 71, 2, 2, 1330, 1331, 7, 86, 2, 2, 1331, 210, 3, 2, 2, 2, 1332, 1333, 7, 84, 2, 2, 1333, 1334, 7, 71, 2, 2, 1334, 1335, 7, 85, 2, 2, 1335, 1336, 7, 71, 2, 2, 1336, 1337, 7, 86, 2, 2, 1337, 212, 3, 2, 2, 2, 1338, 1339, 7, 70, 2, 2, 1339, 1340, 7, 67, 2, 2, 1340, 1341, 7, 86, 2, 2, 1341, 1342, 7, 67, 2, 2, 1342, 214, 3, 2, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 67, 2, 2, 1346, 1347, 7, 84, 2, 2, 1347, 1348, 7, 86, 2, 2, 1348, 216, 3, 2, 2, 2, 1349, 1350, 7, 86, 2, 2, 1350, 1351, 7, 84, 2, 2, 1351, 1352, 7, 67, 2, 2, 1352, 1353, 7, 80, 2, 2, 1353, 1354, 7, 85, 2, 2, 1354, 1355, 7, 67, 2, 2, 1355, 1356, 7, 69, 2, 2, 1356, 1357, 7, 86, 2, 2, 1357, 1358, 7, 75, 2, 2, 1358, 1359, 7, 81, 2, 2, 1359, 1360, 7, 80, 2, 2, 1360, 218, 3, 2, 2, 2, 1361, 1362, 7, 69, 2, 2, 1362, 1363, 7, 81, 2, 2, 1363, 1364, 7, 79, 2, 2, 1364, 1365, 7, 79, 2, 2, 1365, 1366, 7, 75, 2, 2, 1366, 1367, 7, 86, 2, 2, 1367, 220, 3, 2, 2, 2, 1368, 1369, 7, 84, 2, 2, 1369, 1370, 7, 81, 2, 2, 1370, 1371, 7, 78, 2, 2, 1371, 1372, 7, 78, 2, 2, 1372, 1373, 7, 68, 2, 2, 1373, 1374, 7, 67, 2, 2, 1374, 1375, 7, 69, 2, 2, 1375, 1376, 7, 77, 2, 2, 1376, 222, 3, 2, 2, 2, 1377, 1378, 7, 79, 2, 2, 1378, 1379, 7, 67, 2, 2, 1379, 1380, 7, 69, 2, 2, 1380, 1381, 7, 84, 2, 2, 1381, 1382, 7, 81, 2, 2, 1382, 224, 3, 2, 2, 2, 1383, 1384, 7, 75, 2, 2, 1384, 1385, 7, 73, 2, 2, 1385, 1386, 7, 80, 2, 2, 1386, 1387, 7, 81, 2, 2, 1387, 1388, 7, 84, 2, 2, 1388, 1389, 7, 71, 2, 2, 1389, 226, 3, 2, 2, 2, 1390, 1391, 7, 68, 2, 2, 1391, 1392, 7, 81, 2, 2, 1392, 1393, 7, 86, 2, 2, 1393, 1394, 7, 74, 2, 2, 1394, 228, 3, 2, 2, 2, 1395, 1396, 7, 78, 2, 2, 1396, 1397, 7, 71, 2, 2, 1397, 1398, 7, 67, 2, 2, 1398, 1399, 7, 70, 2, 2, 1399, 1400, 7, 75, 2, 2, 1400, 1401, 7, 80, 2, 2, 1401, 1402, 7, 73, 2, 2, 1402, 230, 3, 2, 2, 2, 1403, 1404, 7, 86, 2, 2, 1404, 1405, 7, 84, 2, 2, 1405, 1406, 7, 67, 2, 2, 1406, 1407, 7, 75, 2, 2, 1407, 1408, 7, 78, 2, 2, 1408, 1409, 7, 75, 2, 2, 1409, 1410, 7, 80, 2, 2, 1410, 1411, 7, 73, 2, 2, 1411, 232, 3, 2, 2, 2, 1412, 1413, 7, 75, 2, 2, 1413, 1414, 7, 72, 2, 2, 1414, 234, 3, 2, 2, 2, 1415, 1416, 7, 82, 2, 2, 1416, 1417, 7, 81, 2, 2, 1417, 1418, 7, 85, 2, 2, 1418, 1419, 7, 75, 2, 2, 1419, 1420, 7, 86, 2, 2, 1420, 1421, 7, 75, 2, 2, 1421, 1422, 7, 81, 2, 2, 1422, 1423, 7, 80, 2, 2, 1423, 236, 3, 2, 2, 2, 1424, 1425, 7, 71, 2, 2, 1425, 1426, 7, 90, 2, 2, 1426, 1427, 7, 86, 2, 2, 1427, 1428, 7, 84, 2, 2, 1428, 1429, 7, 67, 2, 2, 1429, 1430, 7, 69, 2, 2, 1430, 1431, 7, 86, 2, 2, 1431, 238, 3, 2, 2, 2, 1432, 1433, 7, 71, 2, 2, 1433, 1434, 7, 83, 2, 2, 1434, 240, 3, 2, 2, 2, 1435, 1436, 7, 80, 2, 2, 1436, 1437, 7, 85, 2, 2, 1437, 1438, 7, 71, 2, 2, 1438, 1439, 7, 83, 2, 2, 1439, 242, 3, 2, 2, 2, 1440, 1441, 7, 80, 2, 2, 1441, 1442, 7, 71, 2, 2, 1442, 1443, 7, 83, 2, 2, 1443, 244, 3, 2, 2, 2, 1444, 1445, 7, 80, 2, 2, 1445, 1446, 7, 71, 2, 2, 1446, 1447, 7, 83, 2, 2, 1447, 1448, 7, 76, 2, 2, 1448, 246, 3, 2, 2, 2, 1449, 1450, 7, 78, 2, 2, 1450, 1451, 7, 86, 2, 2, 1451, 248, 3, 2, 2, 2, 1452, 1453, 7, 78, 2, 2, 1453, 1454, 7, 86, 2, 2, 1454, 1455, 7, 71, 2, 2, 1455, 250, 3, 2, 2, 2, 1456, 1457, 7, 73, 2, 2, 1457, 1458, 7, 86, 2, 2, 1458, 252, 3, 2, 2, 2, 1459, 1460, 7, 73, 2, 2, 1460, 1461, 7, 86, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 254, 3, 2, 2, 2, 1463, 1464, 7, 82, 2, 2, 1464, 1465, 7, 78, 2, 2, 1465, 1466, 7, 87, 2, 2, 1466, 1467, 7, 85, 2, 2, 1467, 256, 3, 2, 2, 2, 1468, 1469, 7, 79, 2, 2, 1469, 1470, 7, 75, 2, 2, 1470, 1471, 7, 80, 2, 2, 1471, 1472, 7, 87, 2, 2, 1472, 1473, 7, 85, 2, 2, 1473, 258, 3, 2, 2, 2, 1474, 1475, 7, 67, 2, 2, 1475, 1476, 7, 85, 2, 2, 1476, 1477, 7, 86, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 1479, 7, 84, 2, 2, 1479, 1480, 7, 75, 2, 2, 1480, 1481, 7, 85, 2, 2, 1481, 1482, 7, 77, 2, 2, 1482, 260, 3, 2, 2, 2, 1483, 1484, 7, 85, 2, 2, 1484, 1485, 7, 78, 2, 2, 1485, 1486, 7, 67, 2, 2, 1486, 1487, 7, 85, 2, 2, 1487, 1488, 7, 74, 2, 2, 1488, 262, 3, 2, 2, 2, 1489, 1490, 7, 82, 2, 2, 1490, 1491, 7, 71, 2, 2, 1491, 1492, 7, 84, 2, 2, 1492, 1493, 7, 69, 2, 2, 1493, 1494, 7, 71, 2, 2, 1494, 1495, 7, 80, 2, 2, 1495, 1496, 7, 86, 2, 2, 1496, 264, 3, 2, 2, 2, 1497, 1498, 7, 70, 2, 2, 1498, 1499, 7, 75, 2, 2, 1499, 1500, 7, 88, 2, 2, 1500, 266, 3, 2, 2, 2, 1501, 1502, 7, 86, 2, 2, 1502, 1503, 7, 75, 2, 2, 1503, 1504, 7, 78, 2, 2, 1504, 1505, 7, 70, 2, 2, 1505, 1506, 7, 71, 2, 2, 1506, 268, 3, 2, 2, 2, 1507, 1508, 7, 67, 2, 2, 1508, 1509, 7, 79, 2, 2, 1509, 1510, 7, 82, 2, 2, 1510, 1511, 7, 71, 2, 2, 1511, 1512, 7, 84, 2, 2, 1512, 1513, 7, 85, 2, 2, 1513, 1514, 7, 67, 2, 2, 1514, 1515, 7, 80, 2, 2, 1515, 1516, 7, 70, 2, 2, 1516, 270, 3, 2, 2, 2, 1517, 1518, 7, 82, 2, 2, 1518, 1519, 7, 75, 2, 2, 1519, 1520, 7, 82, 2, 2, 1520, 1521, 7, 71, 2, 2, 1521, 272, 3, 2, 2, 2, 1522, 1523, 7, 69, 2, 2, 1523, 1524, 7, 81, 2, 2, 1524, 1525, 7, 80, 2, 2, 1525, 1526, 7, 69, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 97, 2, 2, 1529, 1530, 7, 82, 2, 2, 1530, 1531, 7, 75, 2, 2, 1531, 1532, 7, 82, 2, 2, 1532, 1533, 7, 71, 2, 2, 1533, 274, 3, 2, 2, 2, 1534, 1535, 7, 74, 2, 2, 1535, 1536, 7, 67, 2, 2, 1536, 1537, 7, 86, 2, 2, 1537, 276, 3, 2, 2, 2, 1538, 1539, 7, 82, 2, 2, 1539, 1540, 7, 71, 2, 2, 1540, 1541, 7, 84, 2, 2, 1541, 1542, 7, 69, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 1544, 7, 80, 2, 2, 1544, 1545, 7, 86, 2, 2, 1545, 1546, 7, 78, 2, 2, 1546, 1547, 7, 75, 2, 2, 1547, 1548, 7, 86, 2, 2, 1548, 278, 3, 2, 2, 2, 1549, 1550, 7, 68, 2, 2, 1550, 1551, 7, 87, 2, 2, 1551, 1552, 7, 69, 2, 2, 1552, 1553, 7, 77, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 86, 2, 2, 1555, 280, 3, 2, 2, 2, 1556, 1557, 7, 81, 2, 2, 1557, 1558, 7, 87, 2, 2, 1558, 1559, 7, 86, 2, 2, 1559, 282, 3, 2, 2, 2, 1560, 1561, 7, 81, 2, 2, 1561, 1562, 7, 72, 2, 2, 1562, 284, 3, 2, 2, 2, 1563, 1564, 7, 85, 2, 2, 1564, 1565, 7, 81, 2, 2, 1565, 1566, 7, 84, 2, 2, 1566, 1567, 7, 86, 2, 2, 1567, 286, 3, 2, 2, 2, 1568, 1569, 7, 69, 2, 2, 1569, 1570, 7, 78, 2, 2, 1570, 1571, 7, 87, 2, 2, 1571, 1572, 7, 85, 2, 2, 1572, 1573, 7, 86, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 288, 3, 2, 2, 2, 1576, 1577, 7, 70, 2, 2, 1577, 1578, 7, 75, 2, 2, 1578, 1579, 7, 85, 2, 2, 1579, 1580, 7, 86, 2, 2, 1580, 1581, 7, 84, 2, 2, 1581, 1582, 7, 75, 2, 2, 1582, 1583, 7, 68, 2, 2, 1583, 1584, 7, 87, 2, 2, 1584, 1585, 7, 86, 2, 2, 1585, 1586, 7, 71, 2, 2, 1586, 290, 3, 2, 2, 2, 1587, 1588, 7, 81, 2, 2, 1588, 1589, 7, 88, 2, 2, 1589, 1590, 7, 71, 2, 2, 1590, 1591, 7, 84, 2, 2, 1591, 1592, 7, 89, 2, 2, 1592, 1593, 7, 84, 2, 2, 1593, 1594, 7, 75, 2, 2, 1594, 1595, 7, 86, 2, 2, 1595, 1596, 7, 71, 2, 2, 1596, 292, 3, 2, 2, 2, 1597, 1598, 7, 86, 2, 2, 1598, 1599, 7, 84, 2, 2, 1599, 1600, 7, 67, 2, 2, 1600, 1601, 7, 80, 2, 2, 1601, 1602, 7, 85, 2, 2, 1602, 1603, 7, 72, 2, 2, 1603, 1604, 7, 81, 2, 2, 1604, 1605, 7, 84, 2, 2, 1605, 1606, 7, 79, 2, 2, 1606, 294, 3, 2, 2, 2, 1607, 1608, 7, 84, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 70, 2, 2, 1610, 1611, 7, 87, 2, 2, 1611, 1612, 7, 69, 2, 2, 1612, 1613, 7, 71, 2, 2, 1613, 296, 3, 2, 2, 2, 1614, 1615, 7, 87, 2, 2, 1615, 1616, 7, 85, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 298, 3, 2, 2, 2, 1620, 1621, 7, 85, 2, 2, 1621, 1622, 7, 71, 2, 2, 1622, 1623, 7, 84, 2, 2, 1623, 1624, 7, 70, 2, 2, 1624, 1625, 7, 71, 2, 2, 1625, 300, 3, 2, 2, 2, 1626, 1627, 7, 85, 2, 2, 1627, 1628, 7, 71, 2, 2, 1628, 1629, 7, 84, 2, 2, 1629, 1630, 7, 70, 2, 2, 1630, 1631, 7, 71, 2, 2, 1631, 1632, 7, 82, 2, 2, 1632, 1633, 7, 84, 2, 2, 1633, 1634, 7, 81, 2, 2, 1634, 1635, 7, 82, 2, 2, 1635, 1636, 7, 71, 2, 2, 1636, 1637, 7, 84, 2, 2, 1637, 1638, 7, 86, 2, 2, 1638, 1639, 7, 75, 2, 2, 1639, 1640, 7, 71, 2, 2, 1640, 1641, 7, 85, 2, 2, 1641, 302, 3, 2, 2, 2, 1642, 1643, 7, 84, 2, 2, 1643, 1644, 7, 71, 2, 2, 1644, 1645, 7, 69, 2, 2, 1645, 1646, 7, 81, 2, 2, 1646, 1647, 7, 84, 2, 2, 1647, 1648, 7, 70, 2, 2, 1648, 1649, 7, 84, 2, 2, 1649, 1650, 7, 71, 2, 2, 1650, 1651, 7, 67, 2, 2, 1651, 1652, 7, 70, 2, 2, 1652, 1653, 7, 71, 2, 2, 1653, 1654, 7, 84, 2, 2, 1654, 304, 3, 2, 2, 2, 1655, 1656, 7, 84, 2, 2, 1656, 1657, 7, 71, 2, 2, 1657, 1658, 7, 69, 2, 2, 1658, 1659, 7, 81, 2, 2, 1659, 1660, 7, 84, 2, 2, 1660, 1661, 7, 70, 2, 2, 1661, 1662, 7, 89, 2, 2, 1662, 1663, 7, 84, 2, 2, 1663, 1664, 7, 75, 2, 2, 1664, 1665, 7, 86, 2, 2, 1665, 1666, 7, 71, 2, 2, 1666, 1667, 7, 84, 2, 2, 1667, 306, 3, 2, 2, 2, 1668, 1669, 7, 70, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 78, 2, 2, 1671, 1672, 7, 75, 2, 2, 1672, 1673, 7, 79, 2, 2, 1673, 1674, 7, 75, 2, 2, 1674, 1675, 7, 86, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 70, 2, 2, 1677, 308, 3, 2, 2, 2, 1678, 1679, 7, 72, 2, 2, 1679, 1680, 7, 75, 2, 2, 1680, 1681, 7, 71, 2, 2, 1681, 1682, 7, 78, 2, 2, 1682, 1683, 7, 70, 2, 2, 1683, 1684, 7, 85, 2, 2, 1684, 310, 3, 2, 2, 2, 1685, 1686, 7, 86, 2, 2, 1686, 1687, 7, 71, 2, 2, 1687, 1688, 7, 84, 2, 2, 1688, 1689, 7, 79, 2, 2, 1689, 1690, 7, 75, 2, 2, 1690, 1691, 7, 80, 2, 2, 1691, 1692, 7, 67, 2, 2, 1692, 1693, 7, 86, 2, 2, 1693, 1694, 7, 71, 2, 2, 1694, 1695, 7, 70, 2, 2, 1695, 312, 3, 2, 2, 2, 1696, 1697, 7, 69, 2, 2, 1697, 1698, 7, 81, 2, 2, 1698, 1699, 7, 78, 2, 2, 1699, 1700, 7, 78, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 69, 2, 2, 1702, 1703, 7, 86, 2, 2, 1703, 1704, 7, 75, 2, 2, 1704, 1705, 7, 81, 2, 2, 1705, 1706, 7, 80, 2, 2, 1706, 314, 3, 2, 2, 2, 1707, 1708, 7, 75, 2, 2, 1708, 1709, 7, 86, 2, 2, 1709, 1710, 7, 71, 2, 2, 1710, 1711, 7, 79, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 316, 3, 2, 2, 2, 1713, 1714, 7, 77, 2, 2, 1714, 1715, 7, 71, 2, 2, 1715, 1716, 7, 91, 2, 2, 1716, 1717, 7, 85, 2, 2, 1717, 318, 3, 2, 2, 2, 1718, 1719, 7, 71, 2, 2, 1719, 1720, 7, 85, 2, 2, 1720, 1721, 7, 69, 2, 2, 1721, 1722, 7, 67, 2, 2, 1722, 1723, 7, 82, 2, 2, 1723, 1724, 7, 71, 2, 2, 1724, 1725, 7, 70, 2, 2, 1725, 320, 3, 2, 2, 2, 1726, 1727, 7, 78, 2, 2, 1727, 1728, 7, 75, 2, 2, 1728, 1729, 7, 80, 2, 2, 1729, 1730, 7, 71, 2, 2, 1730, 1731, 7, 85, 2, 2, 1731, 322, 3, 2, 2, 2, 1732, 1733, 7, 85, 2, 2, 1733, 1734, 7, 71, 2, 2, 1734, 1735, 7, 82, 2, 2, 1735, 1736, 7, 67, 2, 2, 1736, 1737, 7, 84, 2, 2, 1737, 1738, 7, 67, 2, 2, 1738, 1739, 7, 86, 2, 2, 1739, 1740, 7, 71, 2, 2, 1740, 1741, 7, 70, 2, 2, 1741, 324, 3, 2, 2, 2, 1742, 1743, 7, 72, 2, 2, 1743, 1744, 7, 87, 2, 2, 1744, 1745, 7, 80, 2, 2, 1745, 1746, 7, 69, 2, 2, 1746, 1747, 7, 86, 2, 2, 1747, 1748, 7, 75, 2, 2, 1748, 1749, 7, 81, 2, 2, 1749, 1750, 7, 80, 2, 2, 1750, 326, 3, 2, 2, 2, 1751, 1752, 7, 71, 2, 2, 1752, 1753, 7, 90, 2, 2, 1753, 1754, 7, 86, 2, 2, 1754, 1755, 7, 71, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 1757, 7, 70, 2, 2, 1757, 1758, 7, 71, 2, 2, 1758, 1759, 7, 70, 2, 2, 1759, 328, 3, 2, 2, 2, 1760, 1761, 7, 84, 2, 2, 1761, 1762, 7, 71, 2, 2, 1762, 1763, 7, 72, 2, 2, 1763, 1764, 7, 84, 2, 2, 1764, 1765, 7, 71, 2, 2, 1765, 1766, 7, 85, 2, 2, 1766, 1767, 7, 74, 2, 2, 1767, 330, 3, 2, 2, 2, 1768, 1769, 7, 69, 2, 2, 1769, 1770, 7, 78, 2, 2, 1770, 1771, 7, 71, 2, 2, 1771, 1772, 7, 67, 2, 2, 1772, 1773, 7, 84, 2, 2, 1773, 332, 3, 2, 2, 2, 1774, 1775, 7, 69, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 69, 2, 2, 1777, 1778, 7, 74, 2, 2, 1778, 1779, 7, 71, 2, 2, 1779, 334, 3, 2, 2, 2, 1780, 1781, 7, 87, 2, 2, 1781, 1782, 7, 80, 2, 2, 1782, 1783, 7, 69, 2, 2, 1783, 1784, 7, 67, 2, 2, 1784, 1785, 7, 69, 2, 2, 1785, 1786, 7, 74, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 336, 3, 2, 2, 2, 1788, 1789, 7, 78, 2, 2, 1789, 1790, 7, 67, 2, 2, 1790, 1791, 7, 92, 2, 2, 1791, 1792, 7, 91, 2, 2, 1792, 338, 3, 2, 2, 2, 1793, 1794, 7, 72, 2, 2, 1794, 1795, 7, 81, 2, 2, 1795, 1796, 7, 84, 2, 2, 1796, 1797, 7, 79, 2, 2, 1797, 1798, 7, 67, 2, 2, 1798, 1799, 7, 86, 2, 2, 1799, 1800, 7, 86, 2, 2, 1800, 1801, 7, 71, 2, 2, 1801, 1802, 7, 70, 2, 2, 1802, 340, 3, 2, 2, 2, 1803, 1804, 7, 73, 2, 2, 1804, 1805, 7, 78, 2, 2, 1805, 1806, 7, 81, 2, 2, 1806, 1807, 7, 68, 2, 2, 1807, 1808, 7, 67, 2, 2, 1808, 1809, 7, 78, 2, 2, 1809, 342, 3, 2, 2, 2, 1810, 1811, 7, 86, 2, 2, 1811, 1812, 7, 71, 2, 2, 1812, 1813, 7, 79, 2, 2, 1813, 1814, 7, 82, 2, 2, 1814, 1815, 7, 81, 2, 2, 1815, 1816, 7, 84, 2, 2, 1816, 1817, 7, 67, 2, 2, 1817, 1818, 7, 84, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 344, 3, 2, 2, 2, 1820, 1821, 7, 81, 2, 2, 1821, 1822, 7, 82, 2, 2, 1822, 1823, 7, 86, 2, 2, 1823, 1824, 7, 75, 2, 2, 1824, 1825, 7, 81, 2, 2, 1825, 1826, 7, 80, 2, 2, 1826, 1827, 7, 85, 2, 2, 1827, 346, 3, 2, 2, 2, 1828, 1829, 7, 87, 2, 2, 1829, 1830, 7, 80, 2, 2, 1830, 1831, 7, 85, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 86, 2, 2, 1833, 348, 3, 2, 2, 2, 1834, 1835, 7, 86, 2, 2, 1835, 1836, 7, 68, 2, 2, 1836, 1837, 7, 78, 2, 2, 1837, 1838, 7, 82, 2, 2, 1838, 1839, 7, 84, 2, 2, 1839, 1840, 7, 81, 2, 2, 1840, 1841, 7, 82, 2, 2, 1841, 1842, 7, 71, 2, 2, 1842, 1843, 7, 84, 2, 2, 1843, 1844, 7, 86, 2, 2, 1844, 1845, 7, 75, 2, 2, 1845, 1846, 7, 71, 2, 2, 1846, 1847, 7, 85, 2, 2, 1847, 350, 3, 2, 2, 2, 1848, 1849, 7, 70, 2, 2, 1849, 1850, 7, 68, 2, 2, 1850, 1851, 7, 82, 2, 2, 1851, 1852, 7, 84, 2, 2, 1852, 1853, 7, 81, 2, 2, 1853, 1854, 7, 82, 2, 2, 1854, 1855, 7, 71, 2, 2, 1855, 1856, 7, 84, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 75, 2, 2, 1858, 1859, 7, 71, 2, 2, 1859, 1860, 7, 85, 2, 2, 1860, 352, 3, 2, 2, 2, 1861, 1862, 7, 68, 2, 2, 1862, 1863, 7, 87, 2, 2, 1863, 1864, 7, 69, 2, 2, 1864, 1865, 7, 77, 2, 2, 1865, 1866, 7, 71, 2, 2, 1866, 1867, 7, 86, 2, 2, 1867, 1868, 7, 85, 2, 2, 1868, 354, 3, 2, 2, 2, 1869, 1870, 7, 85, 2, 2, 1870, 1871, 7, 77, 2, 2, 1871, 1872, 7, 71, 2, 2, 1872, 1873, 7, 89, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 70, 2, 2, 1875, 356, 3, 2, 2, 2, 1876, 1877, 7, 85, 2, 2, 1877, 1878, 7, 86, 2, 2, 1878, 1879, 7, 81, 2, 2, 1879, 1880, 7, 84, 2, 2, 1880, 1881, 7, 71, 2, 2, 1881, 1882, 7, 70, 2, 2, 1882, 358, 3, 2, 2, 2, 1883, 1884, 7, 70, 2, 2, 1884, 1885, 7, 75, 2, 2, 1885, 1886, 7, 84, 2, 2, 1886, 1887, 7, 71, 2, 2, 1887, 1888, 7, 69, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 81, 2, 2, 1890, 1891, 7, 84, 2, 2, 1891, 1892, 7, 75, 2, 2, 1892, 1893, 7, 71, 2, 2, 1893, 1894, 7, 85, 2, 2, 1894, 360, 3, 2, 2, 2, 1895, 1896, 7, 78, 2, 2, 1896, 1897, 7, 81, 2, 2, 1897, 1898, 7, 69, 2, 2, 1898, 1899, 7, 67, 2, 2, 1899, 1900, 7, 86, 2, 2, 1900, 1901, 7, 75, 2, 2, 1901, 1902, 7, 81, 2, 2, 1902, 1903, 7, 80, 2, 2, 1903, 362, 3, 2, 2, 2, 1904, 1905, 7, 71, 2, 2, 1905, 1906, 7, 90, 2, 2, 1906, 1907, 7, 69, 2, 2, 1907, 1908, 7, 74, 2, 2, 1908, 1909, 7, 67, 2, 2, 1909, 1910, 7, 80, 2, 2, 1910, 1911, 7, 73, 2, 2, 1911, 1912, 7, 71, 2, 2, 1912, 364, 3, 2, 2, 2, 1913, 1914, 7, 67, 2, 2, 1914, 1915, 7, 84, 2, 2, 1915, 1916, 7, 69, 2, 2, 1916, 1917, 7, 74, 2, 2, 1917, 1918, 7, 75, 2, 2, 1918, 1919, 7, 88, 2, 2, 1919, 1920, 7, 71, 2, 2, 1920, 366, 3, 2, 2, 2, 1921, 1922, 7, 87, 2, 2, 1922, 1923, 7, 80, 2, 2, 1923, 1924, 7, 67, 2, 2, 1924, 1925, 7, 84, 2, 2, 1925, 1926, 7, 69, 2, 2, 1926, 1927, 7, 74, 2, 2, 1927, 1928, 7, 75, 2, 2, 1928, 1929, 7, 88, 2, 2, 1929, 1930, 7, 71, 2, 2, 1930, 368, 3, 2, 2, 2, 1931, 1932, 7, 72, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 78, 2, 2, 1934, 1935, 7, 71, 2, 2, 1935, 1936, 7, 72, 2, 2, 1936, 1937, 7, 81, 2, 2, 1937, 1938, 7, 84, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 1940, 7, 67, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 370, 3, 2, 2, 2, 1942, 1943, 7, 86, 2, 2, 1943, 1944, 7, 81, 2, 2, 1944, 1945, 7, 87, 2, 2, 1945, 1946, 7, 69, 2, 2, 1946, 1947, 7, 74, 2, 2, 1947, 372, 3, 2, 2, 2, 1948, 1949, 7, 69, 2, 2, 1949, 1950, 7, 81, 2, 2, 1950, 1951, 7, 79, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 67, 2, 2, 1953, 1954, 7, 69, 2, 2, 1954, 1955, 7, 86, 2, 2, 1955, 374, 3, 2, 2, 2, 1956, 1957, 7, 69, 2, 2, 1957, 1958, 7, 81, 2, 2, 1958, 1959, 7, 80, 2, 2, 1959, 1960, 7, 69, 2, 2, 1960, 1961, 7, 67, 2, 2, 1961, 1962, 7, 86, 2, 2, 1962, 1963, 7, 71, 2, 2, 1963, 1964, 7, 80, 2, 2, 1964, 1965, 7, 67, 2, 2, 1965, 1966, 7, 86, 2, 2, 1966, 1967, 7, 71, 2, 2, 1967, 376, 3, 2, 2, 2, 1968, 1969, 7, 69, 2, 2, 1969, 1970, 7, 74, 2, 2, 1970, 1971, 7, 67, 2, 2, 1971, 1972, 7, 80, 2, 2, 1972, 1973, 7, 73, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 378, 3, 2, 2, 2, 1975, 1976, 7, 69, 2, 2, 1976, 1977, 7, 67, 2, 2, 1977, 1978, 7, 85, 2, 2, 1978, 1979, 7, 69, 2, 2, 1979, 1980, 7, 67, 2, 2, 1980, 1981, 7, 70, 2, 2, 1981, 1982, 7, 71, 2, 2, 1982, 380, 3, 2, 2, 2, 1983, 1984, 7, 84, 2, 2, 1984, 1985, 7, 71, 2, 2, 1985, 1986, 7, 85, 2, 2, 1986, 1987, 7, 86, 2, 2, 1987, 1988, 7, 84, 2, 2, 1988, 1989, 7, 75, 2, 2, 1989, 1990, 7, 69, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 382, 3, 2, 2, 2, 1992, 1993, 7, 69, 2, 2, 1993, 1994, 7, 78, 2, 2, 1994, 1995, 7, 87, 2, 2, 1995, 1996, 7, 85, 2, 2, 1996, 1997, 7, 86, 2, 2, 1997, 1998, 7, 71, 2, 2, 1998, 1999, 7, 84, 2, 2, 1999, 2000, 7, 71, 2, 2, 2000, 2001, 7, 70, 2, 2, 2001, 384, 3, 2, 2, 2, 2002, 2003, 7, 85, 2, 2, 2003, 2004, 7, 81, 2, 2, 2004, 2005, 7, 84, 2, 2, 2005, 2006, 7, 86, 2, 2, 2006, 2007, 7, 71, 2, 2, 2007, 2008, 7, 70, 2, 2, 2008, 386, 3, 2, 2, 2, 2009, 2010, 7, 82, 2, 2, 2010, 2011, 7, 87, 2, 2, 2011, 2012, 7, 84, 2, 2, 2012, 2013, 7, 73, 2, 2, 2013, 2014, 7, 71, 2, 2, 2014, 388, 3, 2, 2, 2, 2015, 2016, 7, 75, 2, 2, 2016, 2017, 7, 80, 2, 2, 2017, 2018, 7, 82, 2, 2, 2018, 2019, 7, 87, 2, 2, 2019, 2020, 7, 86, 2, 2, 2020, 2021, 7, 72, 2, 2, 2021, 2022, 7, 81, 2, 2, 2022, 2023, 7, 84, 2, 2, 2023, 2024, 7, 79, 2, 2, 2024, 2025, 7, 67, 2, 2, 2025, 2026, 7, 86, 2, 2, 2026, 390, 3, 2, 2, 2, 2027, 2028, 7, 81, 2, 2, 2028, 2029, 7, 87, 2, 2, 2029, 2030, 7, 86, 2, 2, 2030, 2031, 7, 82, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 86, 2, 2, 2033, 2034, 7, 72, 2, 2, 2034, 2035, 7, 81, 2, 2, 2035, 2036, 7, 84, 2, 2, 2036, 2037, 7, 79, 2, 2, 2037, 2038, 7, 67, 2, 2, 2038, 2039, 7, 86, 2, 2, 2039, 392, 3, 2, 2, 2, 2040, 2041, 7, 70, 2, 2, 2041, 2042, 7, 67, 2, 2, 2042, 2043, 7, 86, 2, 2, 2043, 2044, 7, 67, 2, 2, 2044, 2045, 7, 68, 2, 2, 2045, 2046, 7, 67, 2, 2, 2046, 2047, 7, 85, 2, 2, 2047, 2048, 7, 71, 2, 2, 2048, 394, 3, 2, 2, 2, 2049, 2050, 7, 70, 2, 2, 2050, 2051, 7, 67, 2, 2, 2051, 2052, 7, 86, 2, 2, 2052, 2053, 7, 67, 2, 2, 2053, 2054, 7, 68, 2, 2, 2054, 2055, 7, 67, 2, 2, 2055, 2056, 7, 85, 2, 2, 2056, 2057, 7, 71, 2, 2, 2057, 2058, 7, 85, 2, 2, 2058, 396, 3, 2, 2, 2, 2059, 2060, 7, 70, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 2062, 7, 85, 2, 2, 2062, 398, 3, 2, 2, 2, 2063, 2064, 7, 86, 2, 2, 2064, 2065, 7, 84, 2, 2, 2065, 2066, 7, 87, 2, 2, 2066, 2067, 7, 80, 2, 2, 2067, 2068, 7, 69, 2, 2, 2068, 2069, 7, 67, 2, 2, 2069, 2070, 7, 86, 2, 2, 2070, 2071, 7, 71, 2, 2, 2071, 400, 3, 2, 2, 2, 2072, 2073, 7, 67, 2, 2, 2073, 2074, 7, 80, 2, 2, 2074, 2075, 7, 67, 2, 2, 2075, 2076, 7, 78, 2, 2, 2076, 2077, 7, 91, 2, 2, 2077, 2078, 7, 92, 2, 2, 2078, 2079, 7, 71, 2, 2, 2079, 402, 3, 2, 2, 2, 2080, 2081, 7, 69, 2, 2, 2081, 2082, 7, 81, 2, 2, 2082, 2083, 7, 79, 2, 2, 2083, 2084, 7, 82, 2, 2, 2084, 2085, 7, 87, 2, 2, 2085, 2086, 7, 86, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 404, 3, 2, 2, 2, 2088, 2089, 7, 78, 2, 2, 2089, 2090, 7, 75, 2, 2, 2090, 2091, 7, 85, 2, 2, 2091, 2092, 7, 86, 2, 2, 2092, 406, 3, 2, 2, 2, 2093, 2094, 7, 85, 2, 2, 2094, 2095, 7, 86, 2, 2, 2095, 2096, 7, 67, 2, 2, 2096, 2097, 7, 86, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 85, 2, 2, 2099, 2100, 7, 86, 2, 2, 2100, 2101, 7, 75, 2, 2, 2101, 2102, 7, 69, 2, 2, 2102, 2103, 7, 85, 2, 2, 2103, 408, 3, 2, 2, 2, 2104, 2105, 7, 82, 2, 2, 2105, 2106, 7, 67, 2, 2, 2106, 2107, 7, 84, 2, 2, 2107, 2108, 7, 86, 2, 2, 2108, 2109, 7, 75, 2, 2, 2109, 2110, 7, 86, 2, 2, 2110, 2111, 7, 75, 2, 2, 2111, 2112, 7, 81, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 71, 2, 2, 2114, 2115, 7, 70, 2, 2, 2115, 410, 3, 2, 2, 2, 2116, 2117, 7, 71, 2, 2, 2117, 2118, 7, 90, 2, 2, 2118, 2119, 7, 86, 2, 2, 2119, 2120, 7, 71, 2, 2, 2120, 2121, 7, 84, 2, 2, 2121, 2122, 7, 80, 2, 2, 2122, 2123, 7, 67, 2, 2, 2123, 2124, 7, 78, 2, 2, 2124, 412, 3, 2, 2, 2, 2125, 2126, 7, 70, 2, 2, 2126, 2127, 7, 71, 2, 2, 2127, 2128, 7, 72, 2, 2, 2128, 2129, 7, 75, 2, 2, 2129, 2130, 7, 80, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 70, 2, 2, 2132, 414, 3, 2, 2, 2, 2133, 2134, 7, 84, 2, 2, 2134, 2135, 7, 71, 2, 2, 2135, 2136, 7, 88, 2, 2, 2136, 2137, 7, 81, 2, 2, 2137, 2138, 7, 77, 2, 2, 2138, 2139, 7, 71, 2, 2, 2139, 416, 3, 2, 2, 2, 2140, 2141, 7, 73, 2, 2, 2141, 2142, 7, 84, 2, 2, 2142, 2143, 7, 67, 2, 2, 2143, 2144, 7, 80, 2, 2, 2144, 2145, 7, 86, 2, 2, 2145, 418, 3, 2, 2, 2, 2146, 2147, 7, 78, 2, 2, 2147, 2148, 7, 81, 2, 2, 2148, 2149, 7, 69, 2, 2, 2149, 2150, 7, 77, 2, 2, 2150, 420, 3, 2, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 80, 2, 2, 2153, 2154, 7, 78, 2, 2, 2154, 2155, 7, 81, 2, 2, 2155, 2156, 7, 69, 2, 2, 2156, 2157, 7, 77, 2, 2, 2157, 422, 3, 2, 2, 2, 2158, 2159, 7, 79, 2, 2, 2159, 2160, 7, 85, 2, 2, 2160, 2161, 7, 69, 2, 2, 2161, 2162, 7, 77, 2, 2, 2162, 424, 3, 2, 2, 2, 2163, 2164, 7, 84, 2, 2, 2164, 2165, 7, 71, 2, 2, 2165, 2166, 7, 82, 2, 2, 2166, 2167, 7, 67, 2, 2, 2167, 2168, 7, 75, 2, 2, 2168, 2169, 7, 84, 2, 2, 2169, 426, 3, 2, 2, 2, 2170, 2171, 7, 84, 2, 2, 2171, 2172, 7, 71, 2, 2, 2172, 2173, 7, 69, 2, 2, 2173, 2174, 7, 81, 2, 2, 2174, 2175, 7, 88, 2, 2, 2175, 2176, 7, 71, 2, 2, 2176, 2177, 7, 84, 2, 2, 2177, 428, 3, 2, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 90, 2, 2, 2180, 2181, 7, 82, 2, 2, 2181, 2182, 7, 81, 2, 2, 2182, 2183, 7, 84, 2, 2, 2183, 2184, 7, 86, 2, 2, 2184, 430, 3, 2, 2, 2, 2185, 2186, 7, 75, 2, 2, 2186, 2187, 7, 79, 2, 2, 2187, 2188, 7, 82, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 84, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 432, 3, 2, 2, 2, 2192, 2193, 7, 78, 2, 2, 2193, 2194, 7, 81, 2, 2, 2194, 2195, 7, 67, 2, 2, 2195, 2196, 7, 70, 2, 2, 2196, 434, 3, 2, 2, 2, 2197, 2198, 7, 84, 2, 2, 2198, 2199, 7, 81, 2, 2, 2199, 2200, 7, 78, 2, 2, 2200, 2201, 7, 71, 2, 2, 2201, 436, 3, 2, 2, 2, 2202, 2203, 7, 84, 2, 2, 2203, 2204, 7, 81, 2, 2, 2204, 2205, 7, 78, 2, 2, 2205, 2206, 7, 71, 2, 2, 2206, 2207, 7, 85, 2, 2, 2207, 438, 3, 2, 2, 2, 2208, 2209, 7, 69, 2, 2, 2209, 2210, 7, 81, 2, 2, 2210, 2211, 7, 79, 2, 2, 2211, 2212, 7, 82, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 69, 2, 2, 2214, 2215, 7, 86, 2, 2, 2215, 2216, 7, 75, 2, 2, 2216, 2217, 7, 81, 2, 2, 2217, 2218, 7, 80, 2, 2, 2218, 2219, 7, 85, 2, 2, 2219, 440, 3, 2, 2, 2, 2220, 2221, 7, 82, 2, 2, 2221, 2222, 7, 84, 2, 2, 2222, 2223, 7, 75, 2, 2, 2223, 2224, 7, 80, 2, 2, 2224, 2225, 7, 69, 2, 2, 2225, 2226, 7, 75, 2, 2, 2226, 2227, 7, 82, 2, 2, 2227, 2228, 7, 67, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 85, 2, 2, 2230, 442, 3, 2, 2, 2, 2231, 2232, 7, 86, 2, 2, 2232, 2233, 7, 84, 2, 2, 2233, 2234, 7, 67, 2, 2, 2234, 2235, 7, 80, 2, 2, 2235, 2236, 7, 85, 2, 2, 2236, 2237, 7, 67, 2, 2, 2237, 2238, 7, 69, 2, 2, 2238, 2239, 7, 86, 2, 2, 2239, 2240, 7, 75, 2, 2, 2240, 2241, 7, 81, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 85, 2, 2, 2243, 444, 3, 2, 2, 2, 2244, 2245, 7, 75, 2, 2, 2245, 2246, 7, 80, 2, 2, 2246, 2247, 7, 70, 2, 2, 2247, 2248, 7, 71, 2, 2, 2248, 2249, 7, 90, 2, 2, 2249, 446, 3, 2, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 80, 2, 2, 2252, 2253, 7, 70, 2, 2, 2253, 2254, 7, 71, 2, 2, 2254, 2255, 7, 90, 2, 2, 2255, 2256, 7, 71, 2, 2, 2256, 2257, 7, 85, 2, 2, 2257, 448, 3, 2, 2, 2, 2258, 2259, 7, 78, 2, 2, 2259, 2260, 7, 81, 2, 2, 2260, 2261, 7, 69, 2, 2, 2261, 2262, 7, 77, 2, 2, 2262, 2263, 7, 85, 2, 2, 2263, 450, 3, 2, 2, 2, 2264, 2265, 7, 81, 2, 2, 2265, 2266, 7, 82, 2, 2, 2266, 2267, 7, 86, 2, 2, 2267, 2268, 7, 75, 2, 2, 2268, 2269, 7, 81, 2, 2, 2269, 2270, 7, 80, 2, 2, 2270, 452, 3, 2, 2, 2, 2271, 2272, 7, 67, 2, 2, 2272, 2273, 7, 80, 2, 2, 2273, 2274, 7, 86, 2, 2, 2274, 2275, 7, 75, 2, 2, 2275, 454, 3, 2, 2, 2, 2276, 2277, 7, 78, 2, 2, 2277, 2278, 7, 81, 2, 2, 2278, 2279, 7, 69, 2, 2, 2279, 2280, 7, 67, 2, 2, 2280, 2281, 7, 78, 2, 2, 2281, 456, 3, 2, 2, 2, 2282, 2283, 7, 75, 2, 2, 2283, 2284, 7, 80, 2, 2, 2284, 2285, 7, 82, 2, 2, 2285, 2286, 7, 67, 2, 2, 2286, 2287, 7, 86, 2, 2, 2287, 2288, 7, 74, 2, 2, 2288, 458, 3, 2, 2, 2, 2289, 2290, 7, 89, 2, 2, 2290, 2291, 7, 67, 2, 2, 2291, 2292, 7, 86, 2, 2, 2292, 2293, 7, 71, 2, 2, 2293, 2294, 7, 84, 2, 2, 2294, 2295, 7, 79, 2, 2, 2295, 2296, 7, 67, 2, 2, 2296, 2297, 7, 84, 2, 2, 2297, 2298, 7, 77, 2, 2, 2298, 460, 3, 2, 2, 2, 2299, 2300, 7, 87, 2, 2, 2300, 2301, 7, 80, 2, 2, 2301, 2302, 7, 80, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 85, 2, 2, 2304, 2305, 7, 86, 2, 2, 2305, 462, 3, 2, 2, 2, 2306, 2307, 7, 79, 2, 2, 2307, 2308, 7, 67, 2, 2, 2308, 2309, 7, 86, 2, 2, 2309, 2310, 7, 69, 2, 2, 2310, 2311, 7, 74, 2, 2, 2311, 2312, 7, 97, 2, 2, 2312, 2313, 7, 84, 2, 2, 2313, 2314, 7, 71, 2, 2, 2314, 2315, 7, 69, 2, 2, 2315, 2316, 7, 81, 2, 2, 2316, 2317, 7, 73, 2, 2, 2317, 2318, 7, 80, 2, 2, 2318, 2319, 7, 75, 2, 2, 2319, 2320, 7, 92, 2, 2, 2320, 2321, 7, 71, 2, 2, 2321, 464, 3, 2, 2, 2, 2322, 2323, 7, 79, 2, 2, 2323, 2324, 7, 71, 2, 2, 2324, 2325, 7, 67, 2, 2, 2325, 2326, 7, 85, 2, 2, 2326, 2327, 7, 87, 2, 2, 2327, 2328, 7, 84, 2, 2, 2328, 2329, 7, 71, 2, 2, 2329, 2330, 7, 85, 2, 2, 2330, 466, 3, 2, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 71, 2, 2, 2334, 468, 3, 2, 2, 2, 2335, 2336, 7, 82, 2, 2, 2336, 2337, 7, 71, 2, 2, 2337, 2338, 7, 84, 2, 2, 2338, 470, 3, 2, 2, 2, 2339, 2340, 7, 79, 2, 2, 2340, 2341, 7, 67, 2, 2, 2341, 2342, 7, 86, 2, 2, 2342, 2343, 7, 69, 2, 2, 2343, 2344, 7, 74, 2, 2, 2344, 472, 3, 2, 2, 2, 2345, 2346, 7, 85, 2, 2, 2346, 2347, 7, 77, 2, 2, 2347, 2348, 7, 75, 2, 2, 2348, 2349, 7, 82, 2, 2, 2349, 2350, 7, 51, 2, 2, 2350, 474, 3, 2, 2, 2, 2351, 2352, 7, 80, 2, 2, 2352, 2353, 7, 71, 2, 2, 2353, 2354, 7, 90, 2, 2, 2354, 2355, 7, 86, 2, 2, 2355, 476, 3, 2, 2, 2, 2356, 2357, 7, 82, 2, 2, 2357, 2358, 7, 67, 2, 2, 2358, 2359, 7, 85, 2, 2, 2359, 2360, 7, 86, 2, 2, 2360, 478, 3, 2, 2, 2, 2361, 2362, 7, 82, 2, 2, 2362, 2363, 7, 67, 2, 2, 2363, 2364, 7, 86, 2, 2, 2364, 2365, 7, 86, 2, 2, 2365, 2366, 7, 71, 2, 2, 2366, 2367, 7, 84, 2, 2, 2367, 2368, 7, 80, 2, 2, 2368, 480, 3, 2, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 75, 2, 2, 2371, 2372, 7, 86, 2, 2, 2372, 2373, 7, 74, 2, 2, 2373, 2374, 7, 75, 2, 2, 2374, 2375, 7, 80, 2, 2, 2375, 482, 3, 2, 2, 2, 2376, 2377, 7, 70, 2, 2, 2377, 2378, 7, 71, 2, 2, 2378, 2379, 7, 72, 2, 2, 2379, 2380, 7, 75, 2, 2, 2380, 2381, 7, 80, 2, 2, 2381, 2382, 7, 71, 2, 2, 2382, 484, 3, 2, 2, 2, 2383, 2384, 7, 68, 2, 2, 2384, 2385, 7, 75, 2, 2, 2385, 2386, 7, 73, 2, 2, 2386, 2387, 7, 75, 2, 2, 2387, 2388, 7, 80, 2, 2, 2388, 2389, 7, 86, 2, 2, 2389, 2390, 7, 97, 2, 2, 2390, 2391, 7, 78, 2, 2, 2391, 2392, 7, 75, 2, 2, 2392, 2393, 7, 86, 2, 2, 2393, 2394, 7, 71, 2, 2, 2394, 2395, 7, 84, 2, 2, 2395, 2396, 7, 67, 2, 2, 2396, 2397, 7, 78, 2, 2, 2397, 486, 3, 2, 2, 2, 2398, 2399, 7, 85, 2, 2, 2399, 2400, 7, 79, 2, 2, 2400, 2401, 7, 67, 2, 2, 2401, 2402, 7, 78, 2, 2, 2402, 2403, 7, 78, 2, 2, 2403, 2404, 7, 75, 2, 2, 2404, 2405, 7, 80, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 97, 2, 2, 2407, 2408, 7, 78, 2, 2, 2408, 2409, 7, 75, 2, 2, 2409, 2410, 7, 86, 2, 2, 2410, 2411, 7, 71, 2, 2, 2411, 2412, 7, 84, 2, 2, 2412, 2413, 7, 67, 2, 2, 2413, 2414, 7, 78, 2, 2, 2414, 488, 3, 2, 2, 2, 2415, 2416, 7, 86, 2, 2, 2416, 2417, 7, 75, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 91, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 80, 2, 2, 2421, 2422, 7, 86, 2, 2, 2422, 2423, 7, 97, 2, 2, 2423, 2424, 7, 78, 2, 2, 2424, 2425, 7, 75, 2, 2, 2425, 2426, 7, 86, 2, 2, 2426, 2427, 7, 71, 2, 2, 2427, 2428, 7, 84, 2, 2, 2428, 2429, 7, 67, 2, 2, 2429, 2430, 7, 78, 2, 2, 2430, 490, 3, 2, 2, 2, 2431, 2432, 7, 75, 2, 2, 2432, 2433, 7, 80, 2, 2, 2433, 2434, 7, 86, 2, 2, 2434, 2435, 7, 71, 2, 2, 2435, 2436, 7, 73, 2, 2, 2436, 2437, 7, 71, 2, 2, 2437, 2438, 7, 84, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 88, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 78, 2, 2, 2442, 2443, 7, 87, 2, 2, 2443, 2444, 7, 71, 2, 2, 2444, 492, 3, 2, 2, 2, 2445, 2446, 7, 70, 2, 2, 2446, 2447, 7, 71, 2, 2, 2447, 2448, 7, 69, 2, 2, 2448, 2449, 7, 75, 2, 2, 2449, 2450, 7, 79, 2, 2, 2450, 2451, 7, 67, 2, 2, 2451, 2452, 7, 78, 2, 2, 2452, 2453, 7, 97, 2, 2, 2453, 2454, 7, 88, 2, 2, 2454, 2455, 7, 67, 2, 2, 2455, 2456, 7, 78, 2, 2, 2456, 2457, 7, 87, 2, 2, 2457, 2458, 7, 71, 2, 2, 2458, 494, 3, 2, 2, 2, 2459, 2460, 7, 70, 2, 2, 2460, 2461, 7, 81, 2, 2, 2461, 2462, 7, 87, 2, 2, 2462, 2463, 7, 68, 2, 2, 2463, 2464, 7, 78, 2, 2, 2464, 2465, 7, 71, 2, 2, 2465, 2466, 7, 97, 2, 2, 2466, 2467, 7, 78, 2, 2, 2467, 2468, 7, 75, 2, 2, 2468, 2469, 7, 86, 2, 2, 2469, 2470, 7, 71, 2, 2, 2470, 2471, 7, 84, 2, 2, 2471, 2472, 7, 67, 2, 2, 2472, 2473, 7, 78, 2, 2, 2473, 496, 3, 2, 2, 2, 2474, 2475, 7, 68, 2, 2, 2475, 2476, 7, 75, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 70, 2, 2, 2478, 2479, 7, 71, 2, 2, 2479, 2480, 7, 69, 2, 2, 2480, 2481, 7, 75, 2, 2, 2481, 2482, 7, 79, 2, 2, 2482, 2483, 7, 67, 2, 2, 2483, 2484, 7, 78, 2, 2, 2484, 2485, 7, 97, 2, 2, 2485, 2486, 7, 78, 2, 2, 2486, 2487, 7, 75, 2, 2, 2487, 2488, 7, 86, 2, 2, 2488, 2489, 7, 71, 2, 2, 2489, 2490, 7, 84, 2, 2, 2490, 2491, 7, 67, 2, 2, 2491, 2492, 7, 78, 2, 2, 2492, 498, 3, 2, 2, 2, 2493, 2494, 7, 75, 2, 2, 2494, 2495, 7, 70, 2, 2, 2495, 2496, 7, 71, 2, 2, 2496, 2497, 7, 80, 2, 2, 2497, 2498, 7, 86, 2, 2, 2498, 2499, 7, 75, 2, 2, 2499, 2500, 7, 72, 2, 2, 2500, 2501, 7, 75, 2, 2, 2501, 2502, 7, 71, 2, 2, 2502, 2503, 7, 84, 2, 2, 2503, 500, 3, 2, 2, 2, 2504, 2505, 7, 68, 2, 2, 2505, 2506, 7, 67, 2, 2, 2506, 2507, 7, 69, 2, 2, 2507, 2508, 7, 77, 2, 2, 2508, 2509, 7, 83, 2, 2, 2509, 2510, 7, 87, 2, 2, 2510, 2511, 7, 81, 2, 2, 2511, 2512, 7, 86, 2, 2, 2512, 2513, 7, 71, 2, 2, 2513, 2514, 7, 70, 2, 2, 2514, 2515, 7, 97, 2, 2, 2515, 2516, 7, 75, 2, 2, 2516, 2517, 7, 70, 2, 2, 2517, 2518, 7, 71, 2, 2, 2518, 2519, 7, 80, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 75, 2, 2, 2521, 2522, 7, 72, 2, 2, 2522, 2523, 7, 75, 2, 2, 2523, 2524, 7, 71, 2, 2, 2524, 2525, 7, 84, 2, 2, 2525, 502, 3, 2, 2, 2, 2526, 2527, 7, 85, 2, 2, 2527, 2528, 7, 75, 2, 2, 2528, 2529, 7, 79, 2, 2, 2529, 2530, 7, 82, 2, 2, 2530, 2531, 7, 78, 2, 2, 2531, 2532, 7, 71, 2, 2, 2532, 2533, 7, 97, 2, 2, 2533, 2534, 7, 69, 2, 2, 2534, 2535, 7, 81, 2, 2, 2535, 2536, 7, 79, 2, 2, 2536, 2537, 7, 79, 2, 2, 2537, 2538, 7, 71, 2, 2, 2538, 2539, 7, 80, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 504, 3, 2, 2, 2, 2541, 2542, 7, 68, 2, 2, 2542, 2543, 7, 84, 2, 2, 2543, 2544, 7, 67, 2, 2, 2544, 2545, 7, 69, 2, 2, 2545, 2546, 7, 77, 2, 2, 2546, 2547, 7, 71, 2, 2, 2547, 2548, 7, 86, 2, 2, 2548, 2549, 7, 71, 2, 2, 2549, 2550, 7, 70, 2, 2, 2550, 2551, 7, 97, 2, 2, 2551, 2552, 7, 71, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 82, 2, 2, 2554, 2555, 7, 86, 2, 2, 2555, 2556, 7, 91, 2, 2, 2556, 2557, 7, 97, 2, 2, 2557, 2558, 7, 69, 2, 2, 2558, 2559, 7, 81, 2, 2, 2559, 2560, 7, 79, 2, 2, 2560, 2561, 7, 79, 2, 2, 2561, 2562, 7, 71, 2, 2, 2562, 2563, 7, 80, 2, 2, 2563, 2564, 7, 86, 2, 2, 2564, 506, 3, 2, 2, 2, 2565, 2566, 7, 68, 2, 2, 2566, 2567, 7, 84, 2, 2, 2567, 2568, 7, 67, 2, 2, 2568, 2569, 7, 69, 2, 2, 2569, 2570, 7, 77, 2, 2, 2570, 2571, 7, 71, 2, 2, 2571, 2572, 7, 86, 2, 2, 2572, 2573, 7, 71, 2, 2, 2573, 2574, 7, 70, 2, 2, 2574, 2575, 7, 97, 2, 2, 2575, 2576, 7, 69, 2, 2, 2576, 2577, 7, 81, 2, 2, 2577, 2578, 7, 79, 2, 2, 2578, 2579, 7, 79, 2, 2, 2579, 2580, 7, 71, 2, 2, 2580, 2581, 7, 80, 2, 2, 2581, 2582, 7, 86, 2, 2, 2582, 508, 3, 2, 2, 2, 2583, 2584, 7, 89, 2, 2, 2584, 2585, 7, 85, 2, 2, 2585, 510, 3, 2, 2, 2, 2586, 2587, 7, 87, 2, 2, 2587, 2588, 7, 80, 2, 2, 2588, 2589, 7, 84, 2, 2, 2589, 2590, 7, 71, 2, 2, 2590, 2591, 7, 69, 2, 2, 2591, 2592, 7, 81, 2, 2, 2592, 2593, 7, 73, 2, 2, 2593, 2594, 7, 80, 2, 2, 2594, 2595, 7, 75, 2, 2, 2595, 2596, 7, 92, 2, 2, 2596, 2597, 7, 71, 2, 2, 2597, 2598, 7, 70, 2, 2, 2598, 512, 3, 2, 2, 2, 2599, 2600, 7, 85, 2, 2, 2600, 2601, 7, 91, 2, 2, 2601, 2602, 7, 85, 2, 2, 2602, 2603, 7, 86, 2, 2, 2603, 2604, 7, 71, 2, 2, 2604, 2605, 7, 79, 2, 2, 2605, 514, 3, 2, 2, 2, 2606, 2607, 7, 85, 2, 2, 2607, 2608, 7, 86, 2, 2, 2608, 2609, 7, 84, 2, 2, 2609, 2610, 7, 75, 2, 2, 2610, 2611, 7, 80, 2, 2, 2611, 2612, 7, 73, 2, 2, 2612, 516, 3, 2, 2, 2, 2613, 2614, 7, 67, 2, 2, 2614, 2615, 7, 84, 2, 2, 2615, 2616, 7, 84, 2, 2, 2616, 2617, 7, 67, 2, 2, 2617, 2618, 7, 91, 2, 2, 2618, 518, 3, 2, 2, 2, 2619, 2620, 7, 79, 2, 2, 2620, 2621, 7, 67, 2, 2, 2621, 2622, 7, 82, 2, 2, 2622, 520, 3, 2, 2, 2, 2623, 2624, 7, 69, 2, 2, 2624, 2625, 7, 74, 2, 2, 2625, 2626, 7, 67, 2, 2, 2626, 2627, 7, 84, 2, 2, 2627, 522, 3, 2, 2, 2, 2628, 2629, 7, 88, 2, 2, 2629, 2630, 7, 67, 2, 2, 2630, 2631, 7, 84, 2, 2, 2631, 2632, 7, 69, 2, 2, 2632, 2633, 7, 74, 2, 2, 2633, 2634, 7, 67, 2, 2, 2634, 2635, 7, 84, 2, 2, 2635, 524, 3, 2, 2, 2, 2636, 2637, 7, 68, 2, 2, 2637, 2638, 7, 75, 2, 2, 2638, 2639, 7, 80, 2, 2, 2639, 2640, 7, 67, 2, 2, 2640, 2641, 7, 84, 2, 2, 2641, 2642, 7, 91, 2, 2, 2642, 526, 3, 2, 2, 2, 2643, 2644, 7, 88, 2, 2, 2644, 2645, 7, 67, 2, 2, 2645, 2646, 7, 84, 2, 2, 2646, 2647, 7, 68, 2, 2, 2647, 2648, 7, 75, 2, 2, 2648, 2649, 7, 80, 2, 2, 2649, 2650, 7, 67, 2, 2, 2650, 2651, 7, 84, 2, 2, 2651, 2652, 7, 91, 2, 2, 2652, 528, 3, 2, 2, 2, 2653, 2654, 7, 68, 2, 2, 2654, 2655, 7, 91, 2, 2, 2655, 2656, 7, 86, 2, 2, 2656, 2657, 7, 71, 2, 2, 2657, 2658, 7, 85, 2, 2, 2658, 530, 3, 2, 2, 2, 2659, 2660, 7, 70, 2, 2, 2660, 2661, 7, 71, 2, 2, 2661, 2662, 7, 69, 2, 2, 2662, 2663, 7, 75, 2, 2, 2663, 2664, 7, 79, 2, 2, 2664, 2665, 7, 67, 2, 2, 2665, 2666, 7, 78, 2, 2, 2666, 532, 3, 2, 2, 2, 2667, 2668, 7, 86, 2, 2, 2668, 2669, 7, 75, 2, 2, 2669, 2670, 7, 80, 2, 2, 2670, 2671, 7, 91, 2, 2, 2671, 2672, 7, 75, 2, 2, 2672, 2673, 7, 80, 2, 2, 2673, 2674, 7, 86, 2, 2, 2674, 534, 3, 2, 2, 2, 2675, 2676, 7, 85, 2, 2, 2676, 2677, 7, 79, 2, 2, 2677, 2678, 7, 67, 2, 2, 2678, 2679, 7, 78, 2, 2, 2679, 2680, 7, 78, 2, 2, 2680, 2681, 7, 75, 2, 2, 2681, 2682, 7, 80, 2, 2, 2682, 2683, 7, 86, 2, 2, 2683, 536, 3, 2, 2, 2, 2684, 2685, 7, 75, 2, 2, 2685, 2686, 7, 80, 2, 2, 2686, 2687, 7, 86, 2, 2, 2687, 538, 3, 2, 2, 2, 2688, 2689, 7, 68, 2, 2, 2689, 2690, 7, 75, 2, 2, 2690, 2691, 7, 73, 2, 2, 2691, 2692, 7, 75, 2, 2, 2692, 2693, 7, 80, 2, 2, 2693, 2694, 7, 86, 2, 2, 2694, 540, 3, 2, 2, 2, 2695, 2696, 7, 72, 2, 2, 2696, 2697, 7, 78, 2, 2, 2697, 2698, 7, 81, 2, 2, 2698, 2699, 7, 67, 2, 2, 2699, 2700, 7, 86, 2, 2, 2700, 542, 3, 2, 2, 2, 2701, 2702, 7, 70, 2, 2, 2702, 2703, 7, 81, 2, 2, 2703, 2704, 7, 87, 2, 2, 2704, 2705, 7, 68, 2, 2, 2705, 2706, 7, 78, 2, 2, 2706, 2707, 7, 71, 2, 2, 2707, 544, 3, 2, 2, 2, 2708, 2709, 7, 70, 2, 2, 2709, 2710, 7, 67, 2, 2, 2710, 2711, 7, 86, 2, 2, 2711, 2712, 7, 71, 2, 2, 2712, 546, 3, 2, 2, 2, 2713, 2714, 7, 86, 2, 2, 2714, 2715, 7, 75, 2, 2, 2715, 2716, 7, 79, 2, 2, 2716, 2717, 7, 71, 2, 2, 2717, 548, 3, 2, 2, 2, 2718, 2719, 7, 86, 2, 2, 2719, 2720, 7, 75, 2, 2, 2720, 2721, 7, 79, 2, 2, 2721, 2722, 7, 71, 2, 2, 2722, 2723, 7, 85, 2, 2, 2723, 2724, 7, 86, 2, 2, 2724, 2725, 7, 67, 2, 2, 2725, 2726, 7, 79, 2, 2, 2726, 2727, 7, 82, 2, 2, 2727, 550, 3, 2, 2, 2, 2728, 2729, 7, 79, 2, 2, 2729, 2730, 7, 87, 2, 2, 2730, 2731, 7, 78, 2, 2, 2731, 2732, 7, 86, 2, 2, 2732, 2733, 7, 75, 2, 2, 2733, 2734, 7, 85, 2, 2, 2734, 2735, 7, 71, 2, 2, 2735, 2736, 7, 86, 2, 2, 2736, 552, 3, 2, 2, 2, 2737, 2738, 7, 68, 2, 2, 2738, 2739, 7, 81, 2, 2, 2739, 2740, 7, 81, 2, 2, 2740, 2741, 7, 78, 2, 2, 2741, 2742, 7, 71, 2, 2, 2742, 2743, 7, 67, 2, 2, 2743, 2744, 7, 80, 2, 2, 2744, 554, 3, 2, 2, 2, 2745, 2746, 7, 84, 2, 2, 2746, 2747, 7, 67, 2, 2, 2747, 2748, 7, 89, 2, 2, 2748, 556, 3, 2, 2, 2, 2749, 2750, 7, 84, 2, 2, 2750, 2751, 7, 81, 2, 2, 2751, 2752, 7, 89, 2, 2, 2752, 558, 3, 2, 2, 2, 2753, 2754, 7, 80, 2, 2, 2754, 2755, 7, 87, 2, 2, 2755, 2756, 7, 78, 2, 2, 2756, 2757, 7, 78, 2, 2, 2757, 560, 3, 2, 2, 2, 2758, 2759, 7, 63, 2, 2, 2759, 562, 3, 2, 2, 2, 2760, 2761, 7, 64, 2, 2, 2761, 564, 3, 2, 2, 2, 2762, 2763, 7, 62, 2, 2, 2763, 566, 3, 2, 2, 2, 2764, 2765, 7, 35, 2, 2, 2765, 568, 3, 2, 2, 2, 2766, 2767, 7, 128, 2, 2, 2767, 570, 3, 2, 2, 2, 2768, 2769, 7, 126, 2, 2, 2769, 572, 3, 2, 2, 2, 2770, 2771, 7, 40, 2, 2, 2771, 574, 3, 2, 2, 2, 2772, 2773, 7, 96, 2, 2, 2773, 576, 3, 2, 2, 2, 2774, 2775, 7, 48, 2, 2, 2775, 578, 3, 2, 2, 2, 2776, 2777, 7, 93, 2, 2, 2777, 580, 3, 2, 2, 2, 2778, 2779, 7, 95, 2, 2, 2779, 582, 3, 2, 2, 2, 2780, 2781, 7, 42, 2, 2, 2781, 584, 3, 2, 2, 2, 2782, 2783, 7, 43, 2, 2, 2783, 586, 3, 2, 2, 2, 2784, 2785, 7, 46, 2, 2, 2785, 588, 3, 2, 2, 2, 2786, 2787, 7, 61, 2, 2, 2787, 590, 3, 2, 2, 2, 2788, 2789, 7, 66, 2, 2, 2789, 592, 3, 2, 2, 2, 2790, 2791, 7, 50, 2, 2, 2791, 594, 3, 2, 2, 2, 2792, 2793, 7, 51, 2, 2, 2793, 596, 3, 2, 2, 2, 2794, 2795, 7, 52, 2, 2, 2795, 598, 3, 2, 2, 2, 2796, 2797, 7, 41, 2, 2, 2797, 600, 3, 2, 2, 2, 2798, 2799, 7, 36, 2, 2, 2799, 602, 3, 2, 2, 2, 2800, 2801, 7, 98, 2, 2, 2801, 604, 3, 2, 2, 2, 2802, 2803, 7, 60, 2, 2, 2803, 606, 3, 2, 2, 2, 2804, 2805, 7, 44, 2, 2, 2805, 608, 3, 2, 2, 2, 2806, 2807, 7, 97, 2, 2, 2807, 610, 3, 2, 2, 2, 2808, 2809, 7, 47, 2, 2, 2809, 612, 3, 2, 2, 2, 2810, 2811, 7, 45, 2, 2, 2811, 614, 3, 2, 2, 2, 2812, 2813, 7, 39, 2, 2, 2813, 616, 3, 2, 2, 2, 2814, 2815, 7, 47, 2, 2, 2815, 2816, 7, 47, 2, 2, 2816, 618, 3, 2, 2, 2, 2817, 2818, 7, 49, 2, 2, 2818, 620, 3, 2, 2, 2, 2819, 2820, 7, 48, 2, 2, 2820, 2821, 5, 637, 319, 2, 2821, 622, 3, 2, 2, 2, 2822, 2823, 5, 637, 319, 2, 2823, 624, 3, 2, 2, 2, 2824, 2828, 5, 643, 322, 2, 2825, 2828, 5, 645, 323, 2, 2826, 2828, 5, 649, 325, 2, 2827, 2824, 3, 2, 2, 2, 2827, 2825, 3, 2, 2, 2, 2827, 2826, 3, 2, 2, 2, 2828, 626, 3, 2, 2, 2, 2829, 2831, 5, 639, 320, 2, 2830, 2829, 3, 2, 2, 2, 2831, 2832, 3, 2, 2, 2, 2832, 2830, 3, 2, 2, 2, 2832, 2833, 3, 2, 2, 2, 2833, 628, 3, 2, 2, 2, 2834, 2836, 5, 639, 320, 2, 2835, 2834, 3, 2, 2, 2, 2836, 2837, 3, 2, 2, 2, 2837, 2835, 3, 2, 2, 2, 2837, 2838, 3, 2, 2, 2, 2838, 2840, 3, 2, 2, 2, 2839, 2835, 3, 2, 2, 2, 2839, 2840, 3, 2, 2, 2, 2840, 2841, 3, 2, 2, 2, 2841, 2843, 7, 48, 2, 2, 2842, 2844, 5, 639, 320, 2, 2843, 2842, 3, 2, 2, 2, 2844, 2845, 3, 2, 2, 2, 2845, 2843, 3, 2, 2, 2, 2845, 2846, 3, 2, 2, 2, 2846, 2878, 3, 2, 2, 2, 2847, 2849, 5, 639, 320, 2, 2848, 2847, 3, 2, 2, 2, 2849, 2850, 3, 2, 2, 2, 2850, 2848, 3, 2, 2, 2, 2850, 2851, 3, 2, 2, 2, 2851, 2852, 3, 2, 2, 2, 2852, 2853, 7, 48, 2, 2, 2853, 2854, 5, 635, 318, 2, 2854, 2878, 3, 2, 2, 2, 2855, 2857, 5, 639, 320, 2, 2856, 2855, 3, 2, 2, 2, 2857, 2858, 3, 2, 2, 2, 2858, 2856, 3, 2, 2, 2, 2858, 2859, 3, 2, 2, 2, 2859, 2861, 3, 2, 2, 2, 2860, 2856, 3, 2, 2, 2, 2860, 2861, 3, 2, 2, 2, 2861, 2862, 3, 2, 2, 2, 2862, 2864, 7, 48, 2, 2, 2863, 2865, 5, 639, 320, 2, 2864, 2863, 3, 2, 2, 2, 2865, 2866, 3, 2, 2, 2, 2866, 2864, 3, 2, 2, 2, 2866, 2867, 3, 2, 2, 2, 2867, 2868, 3, 2, 2, 2, 2868, 2869, 5, 635, 318, 2, 2869, 2878, 3, 2, 2, 2, 2870, 2872, 5, 639, 320, 2, 2871, 2870, 3, 2, 2, 2, 2872, 2873, 3, 2, 2, 2, 2873, 2871, 3, 2, 2, 2, 2873, 2874, 3, 2, 2, 2, 2874, 2875, 3, 2, 2, 2, 2875, 2876, 5, 635, 318, 2, 2876, 2878, 3, 2, 2, 2, 2877, 2839, 3, 2, 2, 2, 2877, 2848, 3, 2, 2, 2, 2877, 2860, 3, 2, 2, 2, 2877, 2871, 3, 2, 2, 2, 2878, 630, 3, 2, 2, 2, 2879, 2880, 5, 647, 324, 2, 2880, 632, 3, 2, 2, 2, 2881, 2885, 5, 641, 321, 2, 2882, 2885, 5, 639, 320, 2, 2883, 2885, 5, 609, 305, 2, 2884, 2881, 3, 2, 2, 2, 2884, 2882, 3, 2, 2, 2, 2884, 2883, 3, 2, 2, 2, 2885, 2886, 3, 2, 2, 2, 2886, 2884, 3, 2, 2, 2, 2886, 2887, 3, 2, 2, 2, 2887, 634, 3, 2, 2, 2, 2888, 2890, 7, 71, 2, 2, 2889, 2891, 9, 4, 2, 2, 2890, 2889, 3, 2, 2, 2, 2890, 2891, 3, 2, 2, 2, 2891, 2893, 3, 2, 2, 2, 2892, 2894, 5, 639, 320, 2, 2893, 2892, 3, 2, 2, 2, 2894, 2895, 3, 2, 2, 2, 2895, 2893, 3, 2, 2, 2, 2895, 2896, 3, 2, 2, 2, 2896, 636, 3, 2, 2, 2, 2897, 2899, 9, 5, 2, 2, 2898, 2897, 3, 2, 2, 2, 2899, 2902, 3, 2, 2, 2, 2900, 2901, 3, 2, 2, 2, 2900, 2898, 3, 2, 2, 2, 2901, 2904, 3, 2, 2, 2, 2902, 2900, 3, 2, 2, 2, 2903, 2905, 9, 6, 2, 2, 2904, 2903, 3, 2, 2, 2, 2905, 2906, 3, 2, 2, 2, 2906, 2907, 3, 2, 2, 2, 2906, 2904, 3, 2, 2, 2, 2907, 2911, 3, 2, 2, 2, 2908, 2910, 9, 5, 2, 2, 2909, 2908, 3, 2, 2, 2, 2910, 2913, 3, 2, 2, 2, 2911, 2909, 3, 2, 2, 2, 2911, 2912, 3, 2, 2, 2, 2912, 638, 3, 2, 2, 2, 2913, 2911, 3, 2, 2, 2, 2914, 2915, 9, 7, 2, 2, 2915, 640, 3, 2, 2, 2, 2916, 2917, 9, 8, 2, 2, 2917, 642, 3, 2, 2, 2, 2918, 2926, 7, 36, 2, 2, 2919, 2920, 7, 94, 2, 2, 2920, 2925, 11, 2, 2, 2, 2921, 2922, 7, 36, 2, 2, 2922, 2925, 7, 36, 2, 2, 2923, 2925, 10, 9, 2, 2, 2924, 2919, 3, 2, 2, 2, 2924, 2921, 3, 2, 2, 2, 2924, 2923, 3, 2, 2, 2, 2925, 2928, 3, 2, 2, 2, 2926, 2924, 3, 2, 2, 2, 2926, 2927, 3, 2, 2, 2, 2927, 2929, 3, 2, 2, 2, 2928, 2926, 3, 2, 2, 2, 2929, 2930, 7, 36, 2, 2, 2930, 644, 3, 2, 2, 2, 2931, 2939, 7, 41, 2, 2, 2932, 2933, 7, 94, 2, 2, 2933, 2938, 11, 2, 2, 2, 2934, 2935, 7, 41, 2, 2, 2935, 2938, 7, 41, 2, 2, 2936, 2938, 10, 10, 2, 2, 2937, 2932, 3, 2, 2, 2, 2937, 2934, 3, 2, 2, 2, 2937, 2936, 3, 2, 2, 2, 2938, 2941, 3, 2, 2, 2, 2939, 2937, 3, 2, 2, 2, 2939, 2940, 3, 2, 2, 2, 2940, 2942, 3, 2, 2, 2, 2941, 2939, 3, 2, 2, 2, 2942, 2943, 7, 41, 2, 2, 2943, 646, 3, 2, 2, 2, 2944, 2945, 7, 68, 2, 2, 2945, 2947, 7, 41, 2, 2, 2946, 2948, 9, 11, 2, 2, 2947, 2946, 3, 2, 2, 2, 2948, 2949, 3, 2, 2, 2, 2949, 2947, 3, 2, 2, 2, 2949, 2950, 3, 2, 2, 2, 2950, 2951, 3, 2, 2, 2, 2951, 2952, 7, 41, 2, 2, 2952, 648, 3, 2, 2, 2, 2953, 2961, 7, 98, 2, 2, 2954, 2955, 7, 94, 2, 2, 2955, 2960, 11, 2, 2, 2, 2956, 2957, 7, 98, 2, 2, 2957, 2960, 7, 98, 2, 2, 2958, 2960, 10, 12, 2, 2, 2959, 2954, 3, 2, 2, 2, 2959, 2956, 3, 2, 2, 2, 2959, 2958, 3, 2, 2, 2, 2960, 2963, 3, 2, 2, 2, 2961, 2959, 3, 2, 2, 2, 2961, 2962, 3, 2, 2, 2, 2962, 2964, 3, 2, 2, 2, 2963, 2961, 3, 2, 2, 2, 2964, 2965, 7, 98, 2, 2, 2965, 650, 3, 2, 2, 2, 37, 2, 654, 664, 676, 681, 685, 689, 695, 699, 701, 2827, 2832, 2837, 2839, 2845, 2850, 2858, 2860, 2866, 2873, 2877, 2884, 2886, 2890, 2895, 2900, 2906, 2911, 2924, 2926, 2937, 2939, 2949, 2959, 2961, 3, 2, 3, 2] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParserLexer.js b/src/lib/flinksql/FlinkSqlParserLexer.js deleted file mode 100644 index 5a54abf..0000000 --- a/src/lib/flinksql/FlinkSqlParserLexer.js +++ /dev/null @@ -1,2596 +0,0 @@ -// Generated from /Users/erindeng/Desktop/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.8 -// jshint ignore: start -var antlr4 = require('antlr4/index'); - - - -var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0002\u013e\u0b96\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", - "\u0004\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t", - "\u0007\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004", - "\f\t\f\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010", - "\t\u0010\u0004\u0011\t\u0011\u0004\u0012\t\u0012\u0004\u0013\t\u0013", - "\u0004\u0014\t\u0014\u0004\u0015\t\u0015\u0004\u0016\t\u0016\u0004\u0017", - "\t\u0017\u0004\u0018\t\u0018\u0004\u0019\t\u0019\u0004\u001a\t\u001a", - "\u0004\u001b\t\u001b\u0004\u001c\t\u001c\u0004\u001d\t\u001d\u0004\u001e", - "\t\u001e\u0004\u001f\t\u001f\u0004 \t \u0004!\t!\u0004\"\t\"\u0004#", - "\t#\u0004$\t$\u0004%\t%\u0004&\t&\u0004\'\t\'\u0004(\t(\u0004)\t)\u0004", - "*\t*\u0004+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u0004", - "1\t1\u00042\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u0004", - "8\t8\u00049\t9\u0004:\t:\u0004;\t;\u0004<\t<\u0004=\t=\u0004>\t>\u0004", - "?\t?\u0004@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0004D\tD\u0004E\tE\u0004", - "F\tF\u0004G\tG\u0004H\tH\u0004I\tI\u0004J\tJ\u0004K\tK\u0004L\tL\u0004", - "M\tM\u0004N\tN\u0004O\tO\u0004P\tP\u0004Q\tQ\u0004R\tR\u0004S\tS\u0004", - "T\tT\u0004U\tU\u0004V\tV\u0004W\tW\u0004X\tX\u0004Y\tY\u0004Z\tZ\u0004", - "[\t[\u0004\\\t\\\u0004]\t]\u0004^\t^\u0004_\t_\u0004`\t`\u0004a\ta\u0004", - "b\tb\u0004c\tc\u0004d\td\u0004e\te\u0004f\tf\u0004g\tg\u0004h\th\u0004", - "i\ti\u0004j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0004n\tn\u0004o\to\u0004", - "p\tp\u0004q\tq\u0004r\tr\u0004s\ts\u0004t\tt\u0004u\tu\u0004v\tv\u0004", - "w\tw\u0004x\tx\u0004y\ty\u0004z\tz\u0004{\t{\u0004|\t|\u0004}\t}\u0004", - "~\t~\u0004\u007f\t\u007f\u0004\u0080\t\u0080\u0004\u0081\t\u0081\u0004", - "\u0082\t\u0082\u0004\u0083\t\u0083\u0004\u0084\t\u0084\u0004\u0085\t", - "\u0085\u0004\u0086\t\u0086\u0004\u0087\t\u0087\u0004\u0088\t\u0088\u0004", - "\u0089\t\u0089\u0004\u008a\t\u008a\u0004\u008b\t\u008b\u0004\u008c\t", - "\u008c\u0004\u008d\t\u008d\u0004\u008e\t\u008e\u0004\u008f\t\u008f\u0004", - "\u0090\t\u0090\u0004\u0091\t\u0091\u0004\u0092\t\u0092\u0004\u0093\t", - "\u0093\u0004\u0094\t\u0094\u0004\u0095\t\u0095\u0004\u0096\t\u0096\u0004", - "\u0097\t\u0097\u0004\u0098\t\u0098\u0004\u0099\t\u0099\u0004\u009a\t", - "\u009a\u0004\u009b\t\u009b\u0004\u009c\t\u009c\u0004\u009d\t\u009d\u0004", - "\u009e\t\u009e\u0004\u009f\t\u009f\u0004\u00a0\t\u00a0\u0004\u00a1\t", - "\u00a1\u0004\u00a2\t\u00a2\u0004\u00a3\t\u00a3\u0004\u00a4\t\u00a4\u0004", - "\u00a5\t\u00a5\u0004\u00a6\t\u00a6\u0004\u00a7\t\u00a7\u0004\u00a8\t", - "\u00a8\u0004\u00a9\t\u00a9\u0004\u00aa\t\u00aa\u0004\u00ab\t\u00ab\u0004", - "\u00ac\t\u00ac\u0004\u00ad\t\u00ad\u0004\u00ae\t\u00ae\u0004\u00af\t", - "\u00af\u0004\u00b0\t\u00b0\u0004\u00b1\t\u00b1\u0004\u00b2\t\u00b2\u0004", - "\u00b3\t\u00b3\u0004\u00b4\t\u00b4\u0004\u00b5\t\u00b5\u0004\u00b6\t", - "\u00b6\u0004\u00b7\t\u00b7\u0004\u00b8\t\u00b8\u0004\u00b9\t\u00b9\u0004", - "\u00ba\t\u00ba\u0004\u00bb\t\u00bb\u0004\u00bc\t\u00bc\u0004\u00bd\t", - "\u00bd\u0004\u00be\t\u00be\u0004\u00bf\t\u00bf\u0004\u00c0\t\u00c0\u0004", - "\u00c1\t\u00c1\u0004\u00c2\t\u00c2\u0004\u00c3\t\u00c3\u0004\u00c4\t", - "\u00c4\u0004\u00c5\t\u00c5\u0004\u00c6\t\u00c6\u0004\u00c7\t\u00c7\u0004", - "\u00c8\t\u00c8\u0004\u00c9\t\u00c9\u0004\u00ca\t\u00ca\u0004\u00cb\t", - "\u00cb\u0004\u00cc\t\u00cc\u0004\u00cd\t\u00cd\u0004\u00ce\t\u00ce\u0004", - "\u00cf\t\u00cf\u0004\u00d0\t\u00d0\u0004\u00d1\t\u00d1\u0004\u00d2\t", - "\u00d2\u0004\u00d3\t\u00d3\u0004\u00d4\t\u00d4\u0004\u00d5\t\u00d5\u0004", - "\u00d6\t\u00d6\u0004\u00d7\t\u00d7\u0004\u00d8\t\u00d8\u0004\u00d9\t", - "\u00d9\u0004\u00da\t\u00da\u0004\u00db\t\u00db\u0004\u00dc\t\u00dc\u0004", - "\u00dd\t\u00dd\u0004\u00de\t\u00de\u0004\u00df\t\u00df\u0004\u00e0\t", - "\u00e0\u0004\u00e1\t\u00e1\u0004\u00e2\t\u00e2\u0004\u00e3\t\u00e3\u0004", - "\u00e4\t\u00e4\u0004\u00e5\t\u00e5\u0004\u00e6\t\u00e6\u0004\u00e7\t", - "\u00e7\u0004\u00e8\t\u00e8\u0004\u00e9\t\u00e9\u0004\u00ea\t\u00ea\u0004", - "\u00eb\t\u00eb\u0004\u00ec\t\u00ec\u0004\u00ed\t\u00ed\u0004\u00ee\t", - "\u00ee\u0004\u00ef\t\u00ef\u0004\u00f0\t\u00f0\u0004\u00f1\t\u00f1\u0004", - "\u00f2\t\u00f2\u0004\u00f3\t\u00f3\u0004\u00f4\t\u00f4\u0004\u00f5\t", - "\u00f5\u0004\u00f6\t\u00f6\u0004\u00f7\t\u00f7\u0004\u00f8\t\u00f8\u0004", - "\u00f9\t\u00f9\u0004\u00fa\t\u00fa\u0004\u00fb\t\u00fb\u0004\u00fc\t", - "\u00fc\u0004\u00fd\t\u00fd\u0004\u00fe\t\u00fe\u0004\u00ff\t\u00ff\u0004", - "\u0100\t\u0100\u0004\u0101\t\u0101\u0004\u0102\t\u0102\u0004\u0103\t", - "\u0103\u0004\u0104\t\u0104\u0004\u0105\t\u0105\u0004\u0106\t\u0106\u0004", - "\u0107\t\u0107\u0004\u0108\t\u0108\u0004\u0109\t\u0109\u0004\u010a\t", - "\u010a\u0004\u010b\t\u010b\u0004\u010c\t\u010c\u0004\u010d\t\u010d\u0004", - "\u010e\t\u010e\u0004\u010f\t\u010f\u0004\u0110\t\u0110\u0004\u0111\t", - "\u0111\u0004\u0112\t\u0112\u0004\u0113\t\u0113\u0004\u0114\t\u0114\u0004", - "\u0115\t\u0115\u0004\u0116\t\u0116\u0004\u0117\t\u0117\u0004\u0118\t", - "\u0118\u0004\u0119\t\u0119\u0004\u011a\t\u011a\u0004\u011b\t\u011b\u0004", - "\u011c\t\u011c\u0004\u011d\t\u011d\u0004\u011e\t\u011e\u0004\u011f\t", - "\u011f\u0004\u0120\t\u0120\u0004\u0121\t\u0121\u0004\u0122\t\u0122\u0004", - "\u0123\t\u0123\u0004\u0124\t\u0124\u0004\u0125\t\u0125\u0004\u0126\t", - "\u0126\u0004\u0127\t\u0127\u0004\u0128\t\u0128\u0004\u0129\t\u0129\u0004", - "\u012a\t\u012a\u0004\u012b\t\u012b\u0004\u012c\t\u012c\u0004\u012d\t", - "\u012d\u0004\u012e\t\u012e\u0004\u012f\t\u012f\u0004\u0130\t\u0130\u0004", - "\u0131\t\u0131\u0004\u0132\t\u0132\u0004\u0133\t\u0133\u0004\u0134\t", - "\u0134\u0004\u0135\t\u0135\u0004\u0136\t\u0136\u0004\u0137\t\u0137\u0004", - "\u0138\t\u0138\u0004\u0139\t\u0139\u0004\u013a\t\u013a\u0004\u013b\t", - "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0004", - "\u013f\t\u013f\u0004\u0140\t\u0140\u0004\u0141\t\u0141\u0004\u0142\t", - "\u0142\u0004\u0143\t\u0143\u0004\u0144\t\u0144\u0004\u0145\t\u0145\u0003", - "\u0002\u0006\u0002\u028d\n\u0002\r\u0002\u000e\u0002\u028e\u0003\u0002", - "\u0003\u0002\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0007\u0003", - "\u0297\n\u0003\f\u0003\u000e\u0003\u029a\u000b\u0003\u0003\u0003\u0003", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003", - "\u0004\u0003\u0004\u0005\u0004\u02a5\n\u0004\u0003\u0004\u0007\u0004", - "\u02a8\n\u0004\f\u0004\u000e\u0004\u02ab\u000b\u0004\u0003\u0004\u0005", - "\u0004\u02ae\n\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02b2\n\u0004", - "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02b8\n", - "\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02bc\n\u0004\u0005\u0004", - "\u02be\n\u0004\u0003\u0004\u0003\u0004\u0003\u0005\u0003\u0005\u0003", - "\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0006\u0003", - "\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0007\u0003\u0007\u0003", - "\u0007\u0003\u0007\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003", - "\t\u0003\n\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b", - "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", - "\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003", - "\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0003", - "\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003", - "\u000f\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0003", - "\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003", - "\u0011\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003", - "\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003", - "\u0013\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", - "\u0014\u0003\u0014\u0003\u0014\u0003\u0015\u0003\u0015\u0003\u0015\u0003", - "\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016\u0003", - "\u0017\u0003\u0017\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003", - "\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0003\u001a\u0003\u001a\u0003", - "\u001a\u0003\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003", - "\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003", - "\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003", - "\u001d\u0003\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003", - "\u001e\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003", - "\u001f\u0003 \u0003 \u0003 \u0003!\u0003!\u0003!\u0003!\u0003!\u0003", - "\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0003#\u0003", - "#\u0003#\u0003#\u0003$\u0003$\u0003$\u0003$\u0003%\u0003%\u0003%\u0003", - "%\u0003%\u0003&\u0003&\u0003&\u0003&\u0003\'\u0003\'\u0003\'\u0003\'", - "\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003(\u0003(\u0003(\u0003", - "(\u0003(\u0003)\u0003)\u0003)\u0003)\u0003)\u0003*\u0003*\u0003*\u0003", - "*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003+\u0003,\u0003,\u0003,\u0003", - ",\u0003-\u0003-\u0003-\u0003-\u0003-\u0003.\u0003.\u0003.\u0003.\u0003", - ".\u0003.\u0003/\u0003/\u0003/\u0003/\u0003/\u0003/\u00030\u00030\u0003", - "0\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00031\u00032\u0003", - "2\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u00033\u00033\u0003", - "4\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u00035\u00035\u0003", - "5\u00035\u00035\u00036\u00036\u00036\u00037\u00037\u00037\u00037\u0003", - "7\u00037\u00038\u00038\u00038\u00038\u00038\u00038\u00038\u00038\u0003", - "9\u00039\u00039\u00039\u00039\u00039\u00039\u0003:\u0003:\u0003:\u0003", - ":\u0003:\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003", - ";\u0003;\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003=\u0003=\u0003", - "=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", - ">\u0003>\u0003>\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003", - "?\u0003?\u0003?\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003", - "@\u0003@\u0003@\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003", - "A\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003C\u0003", - "C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003E\u0003E\u0003", - "E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", - "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003", - "H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", - "I\u0003I\u0003I\u0003J\u0003J\u0003J\u0003J\u0003J\u0003K\u0003K\u0003", - "K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003", - "L\u0003L\u0003L\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003", - "N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003O\u0003O\u0003O\u0003O\u0003", - "O\u0003O\u0003O\u0003O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", - "P\u0003P\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003", - "R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003", - "S\u0003S\u0003S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", - "U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003V\u0003V\u0003V\u0003V\u0003", - "W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003", - "X\u0003X\u0003X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", - "Y\u0003Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003[\u0003[\u0003[\u0003[\u0003", - "[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003\\\u0003\\\u0003\\", - "\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003]\u0003", - "]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003", - "_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003`\u0003`\u0003`\u0003", - "`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003a\u0003a\u0003a\u0003a\u0003", - "a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003b\u0003b\u0003b\u0003c\u0003", - "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", - "c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", - "e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003f\u0003f\u0003f\u0003", - "f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003", - "h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003", - "i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003j\u0003j\u0003k\u0003k\u0003", - "k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003l\u0003m\u0003", - "m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003", - "m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003o\u0003o\u0003", - "o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003p\u0003p\u0003p\u0003", - "p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003", - "r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003s\u0003s\u0003", - "s\u0003s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003", - "t\u0003t\u0003u\u0003u\u0003u\u0003v\u0003v\u0003v\u0003v\u0003v\u0003", - "v\u0003v\u0003v\u0003v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003", - "w\u0003w\u0003x\u0003x\u0003x\u0003y\u0003y\u0003y\u0003y\u0003y\u0003", - "z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003{\u0003{\u0003|\u0003", - "|\u0003|\u0003}\u0003}\u0003}\u0003}\u0003~\u0003~\u0003~\u0003\u007f", - "\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003\u0080\u0003\u0080", - "\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081", - "\u0003\u0081\u0003\u0081\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082", - "\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0083", - "\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0084", - "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084", - "\u0003\u0084\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0086", - "\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087", - "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087", - "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088\u0003\u0088", - "\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", - "\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", - "\u0003\u0089\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", - "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b", - "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008c", - "\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c", - "\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008e\u0003\u008e", - "\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f", - "\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090", - "\u0003\u0090\u0003\u0090\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", - "\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", - "\u0003\u0091\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092", - "\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0093", - "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093", - "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094\u0003\u0094\u0003\u0094", - "\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0095\u0003\u0095", - "\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0096\u0003\u0096", - "\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0097\u0003\u0097", - "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", - "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", - "\u0003\u0097\u0003\u0097\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", - "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", - "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0099\u0003\u0099\u0003\u0099", - "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", - "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u009a\u0003\u009a", - "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a", - "\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b", - "\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009c\u0003\u009c\u0003\u009c", - "\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c", - "\u0003\u009c\u0003\u009c\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", - "\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", - "\u0003\u009d\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e", - "\u0003\u009e\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f", - "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0", - "\u0003\u00a0\u0003\u00a0\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1", - "\u0003\u00a1\u0003\u00a1\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", - "\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", - "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", - "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4\u0003\u00a4\u0003\u00a4", - "\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4", - "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", - "\u0003\u00a5\u0003\u00a5\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6", - "\u0003\u00a6\u0003\u00a6\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7", - "\u0003\u00a7\u0003\u00a7\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", - "\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a9\u0003\u00a9", - "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00aa\u0003\u00aa\u0003\u00aa", - "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa", - "\u0003\u00aa\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab", - "\u0003\u00ab\u0003\u00ab\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", - "\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", - "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", - "\u0003\u00ad\u0003\u00ad\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae", - "\u0003\u00ae\u0003\u00ae\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", - "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", - "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00b0\u0003\u00b0", - "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", - "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b1", - "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1", - "\u0003\u00b1\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2", - "\u0003\u00b2\u0003\u00b2\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3", - "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b4\u0003\u00b4\u0003\u00b4", - "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4", - "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b5\u0003\u00b5\u0003\u00b5", - "\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5", - "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", - "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7\u0003\u00b7\u0003\u00b7", - "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b8", - "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", - "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b9\u0003\u00b9\u0003\u00b9", - "\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9", - "\u0003\u00b9\u0003\u00b9\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", - "\u0003\u00ba\u0003\u00ba\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", - "\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bc\u0003\u00bc", - "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", - "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bd\u0003\u00bd", - "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00be", - "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be", - "\u0003\u00be\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", - "\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00c0\u0003\u00c0", - "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0", - "\u0003\u00c0\u0003\u00c0\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1", - "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c2\u0003\u00c2\u0003\u00c2", - "\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c3\u0003\u00c3\u0003\u00c3", - "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3", - "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c4\u0003\u00c4\u0003\u00c4", - "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4", - "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c5\u0003\u00c5", - "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5", - "\u0003\u00c5\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6", - "\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c7", - "\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c8\u0003\u00c8\u0003\u00c8", - "\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8", - "\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9", - "\u0003\u00c9\u0003\u00c9\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca", - "\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00cb\u0003\u00cb", - "\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cc\u0003\u00cc\u0003\u00cc", - "\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc", - "\u0003\u00cc\u0003\u00cc\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", - "\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", - "\u0003\u00cd\u0003\u00cd\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", - "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00cf", - "\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf", - "\u0003\u00cf\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0", - "\u0003\u00d0\u0003\u00d0\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1", - "\u0003\u00d1\u0003\u00d1\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d2", - "\u0003\u00d2\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3", - "\u0003\u00d3\u0003\u00d3\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4", - "\u0003\u00d4\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5", - "\u0003\u00d5\u0003\u00d5\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6", - "\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d7\u0003\u00d7", - "\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d8", - "\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8", - "\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00da", - "\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00db\u0003\u00db", - "\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00dc\u0003\u00dc", - "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc", - "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dd\u0003\u00dd", - "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd", - "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00de\u0003\u00de\u0003\u00de", - "\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de", - "\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00df\u0003\u00df", - "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00e0\u0003\u00e0", - "\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0", - "\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1", - "\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2", - "\u0003\u00e2\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3", - "\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4", - "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5", - "\u0003\u00e5\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6", - "\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e7", - "\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7", - "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", - "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", - "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e9\u0003\u00e9", - "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9", - "\u0003\u00e9\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00eb", - "\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00ec\u0003\u00ec\u0003\u00ec", - "\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ed\u0003\u00ed\u0003\u00ed", - "\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ee\u0003\u00ee\u0003\u00ee", - "\u0003\u00ee\u0003\u00ee\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00ef", - "\u0003\u00ef\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0", - "\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f1\u0003\u00f1\u0003\u00f1", - "\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f2\u0003\u00f2", - "\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f3", - "\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3", - "\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3", - "\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5", - "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5", - "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f6", - "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", - "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", - "\u0003\u00f6\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", - "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", - "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f8\u0003\u00f8\u0003\u00f8", - "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", - "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", - "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", - "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", - "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", - "\u0003\u00f9\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", - "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", - "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", - "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", - "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", - "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fd\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u0100\u0003\u0100", - "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100", - "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0101", - "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101", - "\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102", - "\u0003\u0102\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103", - "\u0003\u0103\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0105", - "\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106", - "\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106", - "\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107", - "\u0003\u0107\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108", - "\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109", - "\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u010a", - "\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a", - "\u0003\u010a\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b", - "\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010c\u0003\u010c\u0003\u010c", - "\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c", - "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010e\u0003\u010e", - "\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010f", - "\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u0110", - "\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110", - "\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0112", - "\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0113\u0003\u0113", - "\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113", - "\u0003\u0113\u0003\u0113\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114", - "\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0115", - "\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115", - "\u0003\u0115\u0003\u0116\u0003\u0116\u0003\u0116\u0003\u0116\u0003\u0117", - "\u0003\u0117\u0003\u0117\u0003\u0117\u0003\u0118\u0003\u0118\u0003\u0118", - "\u0003\u0118\u0003\u0118\u0003\u0119\u0003\u0119\u0003\u011a\u0003\u011a", - "\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011d\u0003\u011d", - "\u0003\u011e\u0003\u011e\u0003\u011f\u0003\u011f\u0003\u0120\u0003\u0120", - "\u0003\u0121\u0003\u0121\u0003\u0122\u0003\u0122\u0003\u0123\u0003\u0123", - "\u0003\u0124\u0003\u0124\u0003\u0125\u0003\u0125\u0003\u0126\u0003\u0126", - "\u0003\u0127\u0003\u0127\u0003\u0128\u0003\u0128\u0003\u0129\u0003\u0129", - "\u0003\u012a\u0003\u012a\u0003\u012b\u0003\u012b\u0003\u012c\u0003\u012c", - "\u0003\u012d\u0003\u012d\u0003\u012e\u0003\u012e\u0003\u012f\u0003\u012f", - "\u0003\u0130\u0003\u0130\u0003\u0131\u0003\u0131\u0003\u0132\u0003\u0132", - "\u0003\u0133\u0003\u0133\u0003\u0134\u0003\u0134\u0003\u0135\u0003\u0135", - "\u0003\u0135\u0003\u0136\u0003\u0136\u0003\u0137\u0003\u0137\u0003\u0137", - "\u0003\u0138\u0003\u0138\u0003\u0139\u0003\u0139\u0003\u0139\u0005\u0139", - "\u0b0c\n\u0139\u0003\u013a\u0006\u013a\u0b0f\n\u013a\r\u013a\u000e\u013a", - "\u0b10\u0003\u013b\u0006\u013b\u0b14\n\u013b\r\u013b\u000e\u013b\u0b15", - "\u0005\u013b\u0b18\n\u013b\u0003\u013b\u0003\u013b\u0006\u013b\u0b1c", - "\n\u013b\r\u013b\u000e\u013b\u0b1d\u0003\u013b\u0006\u013b\u0b21\n\u013b", - "\r\u013b\u000e\u013b\u0b22\u0003\u013b\u0003\u013b\u0003\u013b\u0003", - "\u013b\u0006\u013b\u0b29\n\u013b\r\u013b\u000e\u013b\u0b2a\u0005\u013b", - "\u0b2d\n\u013b\u0003\u013b\u0003\u013b\u0006\u013b\u0b31\n\u013b\r\u013b", - "\u000e\u013b\u0b32\u0003\u013b\u0003\u013b\u0003\u013b\u0006\u013b\u0b38", - "\n\u013b\r\u013b\u000e\u013b\u0b39\u0003\u013b\u0003\u013b\u0005\u013b", - "\u0b3e\n\u013b\u0003\u013c\u0003\u013c\u0003\u013d\u0003\u013d\u0003", - "\u013d\u0006\u013d\u0b45\n\u013d\r\u013d\u000e\u013d\u0b46\u0003\u013e", - "\u0003\u013e\u0005\u013e\u0b4b\n\u013e\u0003\u013e\u0006\u013e\u0b4e", - "\n\u013e\r\u013e\u000e\u013e\u0b4f\u0003\u013f\u0007\u013f\u0b53\n\u013f", - "\f\u013f\u000e\u013f\u0b56\u000b\u013f\u0003\u013f\u0006\u013f\u0b59", - "\n\u013f\r\u013f\u000e\u013f\u0b5a\u0003\u013f\u0007\u013f\u0b5e\n\u013f", - "\f\u013f\u000e\u013f\u0b61\u000b\u013f\u0003\u0140\u0003\u0140\u0003", - "\u0141\u0003\u0141\u0003\u0142\u0003\u0142\u0003\u0142\u0003\u0142\u0003", - "\u0142\u0003\u0142\u0007\u0142\u0b6d\n\u0142\f\u0142\u000e\u0142\u0b70", - "\u000b\u0142\u0003\u0142\u0003\u0142\u0003\u0143\u0003\u0143\u0003\u0143", - "\u0003\u0143\u0003\u0143\u0003\u0143\u0007\u0143\u0b7a\n\u0143\f\u0143", - "\u000e\u0143\u0b7d\u000b\u0143\u0003\u0143\u0003\u0143\u0003\u0144\u0003", - "\u0144\u0003\u0144\u0006\u0144\u0b84\n\u0144\r\u0144\u000e\u0144\u0b85", - "\u0003\u0144\u0003\u0144\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145", - "\u0003\u0145\u0003\u0145\u0007\u0145\u0b90\n\u0145\f\u0145\u000e\u0145", - "\u0b93\u000b\u0145\u0003\u0145\u0003\u0145\u0005\u0298\u0b54\u0b5a\u0002", - "\u0146\u0003\u0003\u0005\u0004\u0007\u0005\t\u0006\u000b\u0007\r\b\u000f", - "\t\u0011\n\u0013\u000b\u0015\f\u0017\r\u0019\u000e\u001b\u000f\u001d", - "\u0010\u001f\u0011!\u0012#\u0013%\u0014\'\u0015)\u0016+\u0017-\u0018", - "/\u00191\u001a3\u001b5\u001c7\u001d9\u001e;\u001f= ?!A\"C#E$G%I&K\'", - "M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u{?}@\u007fA\u0081B\u0083", - "C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097", - "M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00ab", - "W\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bf", - "a\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3", - "k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7", - "u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9~\u00fb", - "\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084\u0107", - "\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a\u0113", - "\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090\u011f", - "\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096\u012b", - "\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c\u0137", - "\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2\u0143", - "\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8\u014f", - "\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae\u015b", - "\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4\u0167", - "\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba\u0173", - "\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0\u017f", - "\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6\u018b", - "\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc\u0197", - "\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2\u01a3", - "\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8\u01af", - "\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de\u01bb", - "\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4\u01c7", - "\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea\u01d3", - "\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0\u01df", - "\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6\u01eb", - "\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc\u01f7", - "\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102\u0203", - "\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108\u020f", - "\u0109\u0211\u010a\u0213\u010b\u0215\u010c\u0217\u010d\u0219\u010e\u021b", - "\u010f\u021d\u0110\u021f\u0111\u0221\u0112\u0223\u0113\u0225\u0114\u0227", - "\u0115\u0229\u0116\u022b\u0117\u022d\u0118\u022f\u0119\u0231\u011a\u0233", - "\u011b\u0235\u011c\u0237\u011d\u0239\u011e\u023b\u011f\u023d\u0120\u023f", - "\u0121\u0241\u0122\u0243\u0123\u0245\u0124\u0247\u0125\u0249\u0126\u024b", - "\u0127\u024d\u0128\u024f\u0129\u0251\u012a\u0253\u012b\u0255\u012c\u0257", - "\u012d\u0259\u012e\u025b\u012f\u025d\u0130\u025f\u0131\u0261\u0132\u0263", - "\u0133\u0265\u0134\u0267\u0135\u0269\u0136\u026b\u0137\u026d\u0138\u026f", - "\u0139\u0271\u013a\u0273\u013b\u0275\u013c\u0277\u013d\u0279\u013e\u027b", - "\u0002\u027d\u0002\u027f\u0002\u0281\u0002\u0283\u0002\u0285\u0002\u0287", - "\u0002\u0289\u0002\u0003\u0002\r\u0005\u0002\u000b\f\u000f\u000f\"\"", - "\u0004\u0002\f\f\u000f\u000f\u0004\u0002--//\u0006\u00022;C\\aac|\u0005", - "\u0002C\\aac|\u0003\u00022;\u0004\u0002C\\c|\u0004\u0002$$^^\u0004\u0002", - "))^^\u0003\u000223\u0004\u0002^^bb\u0002\u0bb6\u0002\u0003\u0003\u0002", - "\u0002\u0002\u0002\u0005\u0003\u0002\u0002\u0002\u0002\u0007\u0003\u0002", - "\u0002\u0002\u0002\t\u0003\u0002\u0002\u0002\u0002\u000b\u0003\u0002", - "\u0002\u0002\u0002\r\u0003\u0002\u0002\u0002\u0002\u000f\u0003\u0002", - "\u0002\u0002\u0002\u0011\u0003\u0002\u0002\u0002\u0002\u0013\u0003\u0002", - "\u0002\u0002\u0002\u0015\u0003\u0002\u0002\u0002\u0002\u0017\u0003\u0002", - "\u0002\u0002\u0002\u0019\u0003\u0002\u0002\u0002\u0002\u001b\u0003\u0002", - "\u0002\u0002\u0002\u001d\u0003\u0002\u0002\u0002\u0002\u001f\u0003\u0002", - "\u0002\u0002\u0002!\u0003\u0002\u0002\u0002\u0002#\u0003\u0002\u0002", - "\u0002\u0002%\u0003\u0002\u0002\u0002\u0002\'\u0003\u0002\u0002\u0002", - "\u0002)\u0003\u0002\u0002\u0002\u0002+\u0003\u0002\u0002\u0002\u0002", - "-\u0003\u0002\u0002\u0002\u0002/\u0003\u0002\u0002\u0002\u00021\u0003", - "\u0002\u0002\u0002\u00023\u0003\u0002\u0002\u0002\u00025\u0003\u0002", - "\u0002\u0002\u00027\u0003\u0002\u0002\u0002\u00029\u0003\u0002\u0002", - "\u0002\u0002;\u0003\u0002\u0002\u0002\u0002=\u0003\u0002\u0002\u0002", - "\u0002?\u0003\u0002\u0002\u0002\u0002A\u0003\u0002\u0002\u0002\u0002", - "C\u0003\u0002\u0002\u0002\u0002E\u0003\u0002\u0002\u0002\u0002G\u0003", - "\u0002\u0002\u0002\u0002I\u0003\u0002\u0002\u0002\u0002K\u0003\u0002", - "\u0002\u0002\u0002M\u0003\u0002\u0002\u0002\u0002O\u0003\u0002\u0002", - "\u0002\u0002Q\u0003\u0002\u0002\u0002\u0002S\u0003\u0002\u0002\u0002", - "\u0002U\u0003\u0002\u0002\u0002\u0002W\u0003\u0002\u0002\u0002\u0002", - "Y\u0003\u0002\u0002\u0002\u0002[\u0003\u0002\u0002\u0002\u0002]\u0003", - "\u0002\u0002\u0002\u0002_\u0003\u0002\u0002\u0002\u0002a\u0003\u0002", - "\u0002\u0002\u0002c\u0003\u0002\u0002\u0002\u0002e\u0003\u0002\u0002", - "\u0002\u0002g\u0003\u0002\u0002\u0002\u0002i\u0003\u0002\u0002\u0002", - "\u0002k\u0003\u0002\u0002\u0002\u0002m\u0003\u0002\u0002\u0002\u0002", - "o\u0003\u0002\u0002\u0002\u0002q\u0003\u0002\u0002\u0002\u0002s\u0003", - "\u0002\u0002\u0002\u0002u\u0003\u0002\u0002\u0002\u0002w\u0003\u0002", - "\u0002\u0002\u0002y\u0003\u0002\u0002\u0002\u0002{\u0003\u0002\u0002", - "\u0002\u0002}\u0003\u0002\u0002\u0002\u0002\u007f\u0003\u0002\u0002", - "\u0002\u0002\u0081\u0003\u0002\u0002\u0002\u0002\u0083\u0003\u0002\u0002", - "\u0002\u0002\u0085\u0003\u0002\u0002\u0002\u0002\u0087\u0003\u0002\u0002", - "\u0002\u0002\u0089\u0003\u0002\u0002\u0002\u0002\u008b\u0003\u0002\u0002", - "\u0002\u0002\u008d\u0003\u0002\u0002\u0002\u0002\u008f\u0003\u0002\u0002", - "\u0002\u0002\u0091\u0003\u0002\u0002\u0002\u0002\u0093\u0003\u0002\u0002", - "\u0002\u0002\u0095\u0003\u0002\u0002\u0002\u0002\u0097\u0003\u0002\u0002", - "\u0002\u0002\u0099\u0003\u0002\u0002\u0002\u0002\u009b\u0003\u0002\u0002", - "\u0002\u0002\u009d\u0003\u0002\u0002\u0002\u0002\u009f\u0003\u0002\u0002", - "\u0002\u0002\u00a1\u0003\u0002\u0002\u0002\u0002\u00a3\u0003\u0002\u0002", - "\u0002\u0002\u00a5\u0003\u0002\u0002\u0002\u0002\u00a7\u0003\u0002\u0002", - "\u0002\u0002\u00a9\u0003\u0002\u0002\u0002\u0002\u00ab\u0003\u0002\u0002", - "\u0002\u0002\u00ad\u0003\u0002\u0002\u0002\u0002\u00af\u0003\u0002\u0002", - "\u0002\u0002\u00b1\u0003\u0002\u0002\u0002\u0002\u00b3\u0003\u0002\u0002", - "\u0002\u0002\u00b5\u0003\u0002\u0002\u0002\u0002\u00b7\u0003\u0002\u0002", - "\u0002\u0002\u00b9\u0003\u0002\u0002\u0002\u0002\u00bb\u0003\u0002\u0002", - "\u0002\u0002\u00bd\u0003\u0002\u0002\u0002\u0002\u00bf\u0003\u0002\u0002", - "\u0002\u0002\u00c1\u0003\u0002\u0002\u0002\u0002\u00c3\u0003\u0002\u0002", - "\u0002\u0002\u00c5\u0003\u0002\u0002\u0002\u0002\u00c7\u0003\u0002\u0002", - "\u0002\u0002\u00c9\u0003\u0002\u0002\u0002\u0002\u00cb\u0003\u0002\u0002", - "\u0002\u0002\u00cd\u0003\u0002\u0002\u0002\u0002\u00cf\u0003\u0002\u0002", - "\u0002\u0002\u00d1\u0003\u0002\u0002\u0002\u0002\u00d3\u0003\u0002\u0002", - "\u0002\u0002\u00d5\u0003\u0002\u0002\u0002\u0002\u00d7\u0003\u0002\u0002", - "\u0002\u0002\u00d9\u0003\u0002\u0002\u0002\u0002\u00db\u0003\u0002\u0002", - "\u0002\u0002\u00dd\u0003\u0002\u0002\u0002\u0002\u00df\u0003\u0002\u0002", - "\u0002\u0002\u00e1\u0003\u0002\u0002\u0002\u0002\u00e3\u0003\u0002\u0002", - "\u0002\u0002\u00e5\u0003\u0002\u0002\u0002\u0002\u00e7\u0003\u0002\u0002", - "\u0002\u0002\u00e9\u0003\u0002\u0002\u0002\u0002\u00eb\u0003\u0002\u0002", - "\u0002\u0002\u00ed\u0003\u0002\u0002\u0002\u0002\u00ef\u0003\u0002\u0002", - "\u0002\u0002\u00f1\u0003\u0002\u0002\u0002\u0002\u00f3\u0003\u0002\u0002", - "\u0002\u0002\u00f5\u0003\u0002\u0002\u0002\u0002\u00f7\u0003\u0002\u0002", - "\u0002\u0002\u00f9\u0003\u0002\u0002\u0002\u0002\u00fb\u0003\u0002\u0002", - "\u0002\u0002\u00fd\u0003\u0002\u0002\u0002\u0002\u00ff\u0003\u0002\u0002", - "\u0002\u0002\u0101\u0003\u0002\u0002\u0002\u0002\u0103\u0003\u0002\u0002", - "\u0002\u0002\u0105\u0003\u0002\u0002\u0002\u0002\u0107\u0003\u0002\u0002", - "\u0002\u0002\u0109\u0003\u0002\u0002\u0002\u0002\u010b\u0003\u0002\u0002", - "\u0002\u0002\u010d\u0003\u0002\u0002\u0002\u0002\u010f\u0003\u0002\u0002", - "\u0002\u0002\u0111\u0003\u0002\u0002\u0002\u0002\u0113\u0003\u0002\u0002", - "\u0002\u0002\u0115\u0003\u0002\u0002\u0002\u0002\u0117\u0003\u0002\u0002", - "\u0002\u0002\u0119\u0003\u0002\u0002\u0002\u0002\u011b\u0003\u0002\u0002", - "\u0002\u0002\u011d\u0003\u0002\u0002\u0002\u0002\u011f\u0003\u0002\u0002", - "\u0002\u0002\u0121\u0003\u0002\u0002\u0002\u0002\u0123\u0003\u0002\u0002", - "\u0002\u0002\u0125\u0003\u0002\u0002\u0002\u0002\u0127\u0003\u0002\u0002", - "\u0002\u0002\u0129\u0003\u0002\u0002\u0002\u0002\u012b\u0003\u0002\u0002", - "\u0002\u0002\u012d\u0003\u0002\u0002\u0002\u0002\u012f\u0003\u0002\u0002", - "\u0002\u0002\u0131\u0003\u0002\u0002\u0002\u0002\u0133\u0003\u0002\u0002", - "\u0002\u0002\u0135\u0003\u0002\u0002\u0002\u0002\u0137\u0003\u0002\u0002", - "\u0002\u0002\u0139\u0003\u0002\u0002\u0002\u0002\u013b\u0003\u0002\u0002", - "\u0002\u0002\u013d\u0003\u0002\u0002\u0002\u0002\u013f\u0003\u0002\u0002", - "\u0002\u0002\u0141\u0003\u0002\u0002\u0002\u0002\u0143\u0003\u0002\u0002", - "\u0002\u0002\u0145\u0003\u0002\u0002\u0002\u0002\u0147\u0003\u0002\u0002", - "\u0002\u0002\u0149\u0003\u0002\u0002\u0002\u0002\u014b\u0003\u0002\u0002", - "\u0002\u0002\u014d\u0003\u0002\u0002\u0002\u0002\u014f\u0003\u0002\u0002", - "\u0002\u0002\u0151\u0003\u0002\u0002\u0002\u0002\u0153\u0003\u0002\u0002", - "\u0002\u0002\u0155\u0003\u0002\u0002\u0002\u0002\u0157\u0003\u0002\u0002", - "\u0002\u0002\u0159\u0003\u0002\u0002\u0002\u0002\u015b\u0003\u0002\u0002", - "\u0002\u0002\u015d\u0003\u0002\u0002\u0002\u0002\u015f\u0003\u0002\u0002", - "\u0002\u0002\u0161\u0003\u0002\u0002\u0002\u0002\u0163\u0003\u0002\u0002", - "\u0002\u0002\u0165\u0003\u0002\u0002\u0002\u0002\u0167\u0003\u0002\u0002", - "\u0002\u0002\u0169\u0003\u0002\u0002\u0002\u0002\u016b\u0003\u0002\u0002", - "\u0002\u0002\u016d\u0003\u0002\u0002\u0002\u0002\u016f\u0003\u0002\u0002", - "\u0002\u0002\u0171\u0003\u0002\u0002\u0002\u0002\u0173\u0003\u0002\u0002", - "\u0002\u0002\u0175\u0003\u0002\u0002\u0002\u0002\u0177\u0003\u0002\u0002", - "\u0002\u0002\u0179\u0003\u0002\u0002\u0002\u0002\u017b\u0003\u0002\u0002", - "\u0002\u0002\u017d\u0003\u0002\u0002\u0002\u0002\u017f\u0003\u0002\u0002", - "\u0002\u0002\u0181\u0003\u0002\u0002\u0002\u0002\u0183\u0003\u0002\u0002", - "\u0002\u0002\u0185\u0003\u0002\u0002\u0002\u0002\u0187\u0003\u0002\u0002", - "\u0002\u0002\u0189\u0003\u0002\u0002\u0002\u0002\u018b\u0003\u0002\u0002", - "\u0002\u0002\u018d\u0003\u0002\u0002\u0002\u0002\u018f\u0003\u0002\u0002", - "\u0002\u0002\u0191\u0003\u0002\u0002\u0002\u0002\u0193\u0003\u0002\u0002", - "\u0002\u0002\u0195\u0003\u0002\u0002\u0002\u0002\u0197\u0003\u0002\u0002", - "\u0002\u0002\u0199\u0003\u0002\u0002\u0002\u0002\u019b\u0003\u0002\u0002", - "\u0002\u0002\u019d\u0003\u0002\u0002\u0002\u0002\u019f\u0003\u0002\u0002", - "\u0002\u0002\u01a1\u0003\u0002\u0002\u0002\u0002\u01a3\u0003\u0002\u0002", - "\u0002\u0002\u01a5\u0003\u0002\u0002\u0002\u0002\u01a7\u0003\u0002\u0002", - "\u0002\u0002\u01a9\u0003\u0002\u0002\u0002\u0002\u01ab\u0003\u0002\u0002", - "\u0002\u0002\u01ad\u0003\u0002\u0002\u0002\u0002\u01af\u0003\u0002\u0002", - "\u0002\u0002\u01b1\u0003\u0002\u0002\u0002\u0002\u01b3\u0003\u0002\u0002", - "\u0002\u0002\u01b5\u0003\u0002\u0002\u0002\u0002\u01b7\u0003\u0002\u0002", - "\u0002\u0002\u01b9\u0003\u0002\u0002\u0002\u0002\u01bb\u0003\u0002\u0002", - "\u0002\u0002\u01bd\u0003\u0002\u0002\u0002\u0002\u01bf\u0003\u0002\u0002", - "\u0002\u0002\u01c1\u0003\u0002\u0002\u0002\u0002\u01c3\u0003\u0002\u0002", - "\u0002\u0002\u01c5\u0003\u0002\u0002\u0002\u0002\u01c7\u0003\u0002\u0002", - "\u0002\u0002\u01c9\u0003\u0002\u0002\u0002\u0002\u01cb\u0003\u0002\u0002", - "\u0002\u0002\u01cd\u0003\u0002\u0002\u0002\u0002\u01cf\u0003\u0002\u0002", - "\u0002\u0002\u01d1\u0003\u0002\u0002\u0002\u0002\u01d3\u0003\u0002\u0002", - "\u0002\u0002\u01d5\u0003\u0002\u0002\u0002\u0002\u01d7\u0003\u0002\u0002", - "\u0002\u0002\u01d9\u0003\u0002\u0002\u0002\u0002\u01db\u0003\u0002\u0002", - "\u0002\u0002\u01dd\u0003\u0002\u0002\u0002\u0002\u01df\u0003\u0002\u0002", - "\u0002\u0002\u01e1\u0003\u0002\u0002\u0002\u0002\u01e3\u0003\u0002\u0002", - "\u0002\u0002\u01e5\u0003\u0002\u0002\u0002\u0002\u01e7\u0003\u0002\u0002", - "\u0002\u0002\u01e9\u0003\u0002\u0002\u0002\u0002\u01eb\u0003\u0002\u0002", - "\u0002\u0002\u01ed\u0003\u0002\u0002\u0002\u0002\u01ef\u0003\u0002\u0002", - "\u0002\u0002\u01f1\u0003\u0002\u0002\u0002\u0002\u01f3\u0003\u0002\u0002", - "\u0002\u0002\u01f5\u0003\u0002\u0002\u0002\u0002\u01f7\u0003\u0002\u0002", - "\u0002\u0002\u01f9\u0003\u0002\u0002\u0002\u0002\u01fb\u0003\u0002\u0002", - "\u0002\u0002\u01fd\u0003\u0002\u0002\u0002\u0002\u01ff\u0003\u0002\u0002", - "\u0002\u0002\u0201\u0003\u0002\u0002\u0002\u0002\u0203\u0003\u0002\u0002", - "\u0002\u0002\u0205\u0003\u0002\u0002\u0002\u0002\u0207\u0003\u0002\u0002", - "\u0002\u0002\u0209\u0003\u0002\u0002\u0002\u0002\u020b\u0003\u0002\u0002", - "\u0002\u0002\u020d\u0003\u0002\u0002\u0002\u0002\u020f\u0003\u0002\u0002", - "\u0002\u0002\u0211\u0003\u0002\u0002\u0002\u0002\u0213\u0003\u0002\u0002", - "\u0002\u0002\u0215\u0003\u0002\u0002\u0002\u0002\u0217\u0003\u0002\u0002", - "\u0002\u0002\u0219\u0003\u0002\u0002\u0002\u0002\u021b\u0003\u0002\u0002", - "\u0002\u0002\u021d\u0003\u0002\u0002\u0002\u0002\u021f\u0003\u0002\u0002", - "\u0002\u0002\u0221\u0003\u0002\u0002\u0002\u0002\u0223\u0003\u0002\u0002", - "\u0002\u0002\u0225\u0003\u0002\u0002\u0002\u0002\u0227\u0003\u0002\u0002", - "\u0002\u0002\u0229\u0003\u0002\u0002\u0002\u0002\u022b\u0003\u0002\u0002", - "\u0002\u0002\u022d\u0003\u0002\u0002\u0002\u0002\u022f\u0003\u0002\u0002", - "\u0002\u0002\u0231\u0003\u0002\u0002\u0002\u0002\u0233\u0003\u0002\u0002", - "\u0002\u0002\u0235\u0003\u0002\u0002\u0002\u0002\u0237\u0003\u0002\u0002", - "\u0002\u0002\u0239\u0003\u0002\u0002\u0002\u0002\u023b\u0003\u0002\u0002", - "\u0002\u0002\u023d\u0003\u0002\u0002\u0002\u0002\u023f\u0003\u0002\u0002", - "\u0002\u0002\u0241\u0003\u0002\u0002\u0002\u0002\u0243\u0003\u0002\u0002", - "\u0002\u0002\u0245\u0003\u0002\u0002\u0002\u0002\u0247\u0003\u0002\u0002", - "\u0002\u0002\u0249\u0003\u0002\u0002\u0002\u0002\u024b\u0003\u0002\u0002", - "\u0002\u0002\u024d\u0003\u0002\u0002\u0002\u0002\u024f\u0003\u0002\u0002", - "\u0002\u0002\u0251\u0003\u0002\u0002\u0002\u0002\u0253\u0003\u0002\u0002", - "\u0002\u0002\u0255\u0003\u0002\u0002\u0002\u0002\u0257\u0003\u0002\u0002", - "\u0002\u0002\u0259\u0003\u0002\u0002\u0002\u0002\u025b\u0003\u0002\u0002", - "\u0002\u0002\u025d\u0003\u0002\u0002\u0002\u0002\u025f\u0003\u0002\u0002", - "\u0002\u0002\u0261\u0003\u0002\u0002\u0002\u0002\u0263\u0003\u0002\u0002", - "\u0002\u0002\u0265\u0003\u0002\u0002\u0002\u0002\u0267\u0003\u0002\u0002", - "\u0002\u0002\u0269\u0003\u0002\u0002\u0002\u0002\u026b\u0003\u0002\u0002", - "\u0002\u0002\u026d\u0003\u0002\u0002\u0002\u0002\u026f\u0003\u0002\u0002", - "\u0002\u0002\u0271\u0003\u0002\u0002\u0002\u0002\u0273\u0003\u0002\u0002", - "\u0002\u0002\u0275\u0003\u0002\u0002\u0002\u0002\u0277\u0003\u0002\u0002", - "\u0002\u0002\u0279\u0003\u0002\u0002\u0002\u0003\u028c\u0003\u0002\u0002", - "\u0002\u0005\u0292\u0003\u0002\u0002\u0002\u0007\u02bd\u0003\u0002\u0002", - "\u0002\t\u02c1\u0003\u0002\u0002\u0002\u000b\u02c8\u0003\u0002\u0002", - "\u0002\r\u02cd\u0003\u0002\u0002\u0002\u000f\u02d1\u0003\u0002\u0002", - "\u0002\u0011\u02d4\u0003\u0002\u0002\u0002\u0013\u02d8\u0003\u0002\u0002", - "\u0002\u0015\u02dc\u0003\u0002\u0002\u0002\u0017\u02e5\u0003\u0002\u0002", - "\u0002\u0019\u02eb\u0003\u0002\u0002\u0002\u001b\u02f1\u0003\u0002\u0002", - "\u0002\u001d\u02f4\u0003\u0002\u0002\u0002\u001f\u02fd\u0003\u0002\u0002", - "\u0002!\u0302\u0003\u0002\u0002\u0002#\u0307\u0003\u0002\u0002\u0002", - "%\u030e\u0003\u0002\u0002\u0002\'\u0314\u0003\u0002\u0002\u0002)\u031b", - "\u0003\u0002\u0002\u0002+\u0321\u0003\u0002\u0002\u0002-\u0324\u0003", - "\u0002\u0002\u0002/\u0327\u0003\u0002\u0002\u00021\u032b\u0003\u0002", - "\u0002\u00023\u032e\u0003\u0002\u0002\u00025\u0332\u0003\u0002\u0002", - "\u00027\u0335\u0003\u0002\u0002\u00029\u033c\u0003\u0002\u0002\u0002", - ";\u0344\u0003\u0002\u0002\u0002=\u0349\u0003\u0002\u0002\u0002?\u034f", - "\u0003\u0002\u0002\u0002A\u0352\u0003\u0002\u0002\u0002C\u0357\u0003", - "\u0002\u0002\u0002E\u035d\u0003\u0002\u0002\u0002G\u0363\u0003\u0002", - "\u0002\u0002I\u0367\u0003\u0002\u0002\u0002K\u036c\u0003\u0002\u0002", - "\u0002M\u0370\u0003\u0002\u0002\u0002O\u0379\u0003\u0002\u0002\u0002", - "Q\u037e\u0003\u0002\u0002\u0002S\u0383\u0003\u0002\u0002\u0002U\u0388", - "\u0003\u0002\u0002\u0002W\u038d\u0003\u0002\u0002\u0002Y\u0391\u0003", - "\u0002\u0002\u0002[\u0396\u0003\u0002\u0002\u0002]\u039c\u0003\u0002", - "\u0002\u0002_\u03a2\u0003\u0002\u0002\u0002a\u03a8\u0003\u0002\u0002", - "\u0002c\u03ad\u0003\u0002\u0002\u0002e\u03b2\u0003\u0002\u0002\u0002", - "g\u03b8\u0003\u0002\u0002\u0002i\u03bd\u0003\u0002\u0002\u0002k\u03c5", - "\u0003\u0002\u0002\u0002m\u03c8\u0003\u0002\u0002\u0002o\u03ce\u0003", - "\u0002\u0002\u0002q\u03d6\u0003\u0002\u0002\u0002s\u03dd\u0003\u0002", - "\u0002\u0002u\u03e2\u0003\u0002\u0002\u0002w\u03ec\u0003\u0002\u0002", - "\u0002y\u03f2\u0003\u0002\u0002\u0002{\u03f7\u0003\u0002\u0002\u0002", - "}\u0401\u0003\u0002\u0002\u0002\u007f\u040b\u0003\u0002\u0002\u0002", - "\u0081\u0415\u0003\u0002\u0002\u0002\u0083\u041d\u0003\u0002\u0002\u0002", - "\u0085\u0423\u0003\u0002\u0002\u0002\u0087\u0429\u0003\u0002\u0002\u0002", - "\u0089\u042e\u0003\u0002\u0002\u0002\u008b\u0433\u0003\u0002\u0002\u0002", - "\u008d\u043a\u0003\u0002\u0002\u0002\u008f\u0441\u0003\u0002\u0002\u0002", - "\u0091\u0447\u0003\u0002\u0002\u0002\u0093\u0451\u0003\u0002\u0002\u0002", - "\u0095\u0456\u0003\u0002\u0002\u0002\u0097\u045e\u0003\u0002\u0002\u0002", - "\u0099\u0465\u0003\u0002\u0002\u0002\u009b\u046c\u0003\u0002\u0002\u0002", - "\u009d\u0471\u0003\u0002\u0002\u0002\u009f\u047a\u0003\u0002\u0002\u0002", - "\u00a1\u0482\u0003\u0002\u0002\u0002\u00a3\u0489\u0003\u0002\u0002\u0002", - "\u00a5\u0491\u0003\u0002\u0002\u0002\u00a7\u0499\u0003\u0002\u0002\u0002", - "\u00a9\u049e\u0003\u0002\u0002\u0002\u00ab\u04a3\u0003\u0002\u0002\u0002", - "\u00ad\u04a8\u0003\u0002\u0002\u0002\u00af\u04af\u0003\u0002\u0002\u0002", - "\u00b1\u04b7\u0003\u0002\u0002\u0002\u00b3\u04be\u0003\u0002\u0002\u0002", - "\u00b5\u04c2\u0003\u0002\u0002\u0002\u00b7\u04cd\u0003\u0002\u0002\u0002", - "\u00b9\u04d7\u0003\u0002\u0002\u0002\u00bb\u04dc\u0003\u0002\u0002\u0002", - "\u00bd\u04e2\u0003\u0002\u0002\u0002\u00bf\u04e9\u0003\u0002\u0002\u0002", - "\u00c1\u04f2\u0003\u0002\u0002\u0002\u00c3\u04fc\u0003\u0002\u0002\u0002", - "\u00c5\u04ff\u0003\u0002\u0002\u0002\u00c7\u050b\u0003\u0002\u0002\u0002", - "\u00c9\u0514\u0003\u0002\u0002\u0002\u00cb\u051a\u0003\u0002\u0002\u0002", - "\u00cd\u0521\u0003\u0002\u0002\u0002\u00cf\u0528\u0003\u0002\u0002\u0002", - "\u00d1\u0530\u0003\u0002\u0002\u0002\u00d3\u0534\u0003\u0002\u0002\u0002", - "\u00d5\u053a\u0003\u0002\u0002\u0002\u00d7\u053f\u0003\u0002\u0002\u0002", - "\u00d9\u0545\u0003\u0002\u0002\u0002\u00db\u0551\u0003\u0002\u0002\u0002", - "\u00dd\u0558\u0003\u0002\u0002\u0002\u00df\u0561\u0003\u0002\u0002\u0002", - "\u00e1\u0567\u0003\u0002\u0002\u0002\u00e3\u056e\u0003\u0002\u0002\u0002", - "\u00e5\u0573\u0003\u0002\u0002\u0002\u00e7\u057b\u0003\u0002\u0002\u0002", - "\u00e9\u0584\u0003\u0002\u0002\u0002\u00eb\u0587\u0003\u0002\u0002\u0002", - "\u00ed\u0590\u0003\u0002\u0002\u0002\u00ef\u0598\u0003\u0002\u0002\u0002", - "\u00f1\u059b\u0003\u0002\u0002\u0002\u00f3\u05a0\u0003\u0002\u0002\u0002", - "\u00f5\u05a4\u0003\u0002\u0002\u0002\u00f7\u05a9\u0003\u0002\u0002\u0002", - "\u00f9\u05ac\u0003\u0002\u0002\u0002\u00fb\u05b0\u0003\u0002\u0002\u0002", - "\u00fd\u05b3\u0003\u0002\u0002\u0002\u00ff\u05b7\u0003\u0002\u0002\u0002", - "\u0101\u05bc\u0003\u0002\u0002\u0002\u0103\u05c2\u0003\u0002\u0002\u0002", - "\u0105\u05cb\u0003\u0002\u0002\u0002\u0107\u05d1\u0003\u0002\u0002\u0002", - "\u0109\u05d9\u0003\u0002\u0002\u0002\u010b\u05dd\u0003\u0002\u0002\u0002", - "\u010d\u05e3\u0003\u0002\u0002\u0002\u010f\u05ed\u0003\u0002\u0002\u0002", - "\u0111\u05f2\u0003\u0002\u0002\u0002\u0113\u05fe\u0003\u0002\u0002\u0002", - "\u0115\u0602\u0003\u0002\u0002\u0002\u0117\u060d\u0003\u0002\u0002\u0002", - "\u0119\u0614\u0003\u0002\u0002\u0002\u011b\u0618\u0003\u0002\u0002\u0002", - "\u011d\u061b\u0003\u0002\u0002\u0002\u011f\u0620\u0003\u0002\u0002\u0002", - "\u0121\u0628\u0003\u0002\u0002\u0002\u0123\u0633\u0003\u0002\u0002\u0002", - "\u0125\u063d\u0003\u0002\u0002\u0002\u0127\u0647\u0003\u0002\u0002\u0002", - "\u0129\u064e\u0003\u0002\u0002\u0002\u012b\u0654\u0003\u0002\u0002\u0002", - "\u012d\u065a\u0003\u0002\u0002\u0002\u012f\u066a\u0003\u0002\u0002\u0002", - "\u0131\u0677\u0003\u0002\u0002\u0002\u0133\u0684\u0003\u0002\u0002\u0002", - "\u0135\u068e\u0003\u0002\u0002\u0002\u0137\u0695\u0003\u0002\u0002\u0002", - "\u0139\u06a0\u0003\u0002\u0002\u0002\u013b\u06ab\u0003\u0002\u0002\u0002", - "\u013d\u06b1\u0003\u0002\u0002\u0002\u013f\u06b6\u0003\u0002\u0002\u0002", - "\u0141\u06be\u0003\u0002\u0002\u0002\u0143\u06c4\u0003\u0002\u0002\u0002", - "\u0145\u06ce\u0003\u0002\u0002\u0002\u0147\u06d7\u0003\u0002\u0002\u0002", - "\u0149\u06e0\u0003\u0002\u0002\u0002\u014b\u06e8\u0003\u0002\u0002\u0002", - "\u014d\u06ee\u0003\u0002\u0002\u0002\u014f\u06f4\u0003\u0002\u0002\u0002", - "\u0151\u06fc\u0003\u0002\u0002\u0002\u0153\u0701\u0003\u0002\u0002\u0002", - "\u0155\u070b\u0003\u0002\u0002\u0002\u0157\u0712\u0003\u0002\u0002\u0002", - "\u0159\u071c\u0003\u0002\u0002\u0002\u015b\u0724\u0003\u0002\u0002\u0002", - "\u015d\u072a\u0003\u0002\u0002\u0002\u015f\u0738\u0003\u0002\u0002\u0002", - "\u0161\u0745\u0003\u0002\u0002\u0002\u0163\u074d\u0003\u0002\u0002\u0002", - "\u0165\u0754\u0003\u0002\u0002\u0002\u0167\u075b\u0003\u0002\u0002\u0002", - "\u0169\u0767\u0003\u0002\u0002\u0002\u016b\u0770\u0003\u0002\u0002\u0002", - "\u016d\u0779\u0003\u0002\u0002\u0002\u016f\u0781\u0003\u0002\u0002\u0002", - "\u0171\u078b\u0003\u0002\u0002\u0002\u0173\u0796\u0003\u0002\u0002\u0002", - "\u0175\u079c\u0003\u0002\u0002\u0002\u0177\u07a4\u0003\u0002\u0002\u0002", - "\u0179\u07b0\u0003\u0002\u0002\u0002\u017b\u07b7\u0003\u0002\u0002\u0002", - "\u017d\u07bf\u0003\u0002\u0002\u0002\u017f\u07c8\u0003\u0002\u0002\u0002", - "\u0181\u07d2\u0003\u0002\u0002\u0002\u0183\u07d9\u0003\u0002\u0002\u0002", - "\u0185\u07df\u0003\u0002\u0002\u0002\u0187\u07eb\u0003\u0002\u0002\u0002", - "\u0189\u07f8\u0003\u0002\u0002\u0002\u018b\u0801\u0003\u0002\u0002\u0002", - "\u018d\u080b\u0003\u0002\u0002\u0002\u018f\u080f\u0003\u0002\u0002\u0002", - "\u0191\u0818\u0003\u0002\u0002\u0002\u0193\u0820\u0003\u0002\u0002\u0002", - "\u0195\u0828\u0003\u0002\u0002\u0002\u0197\u082d\u0003\u0002\u0002\u0002", - "\u0199\u0838\u0003\u0002\u0002\u0002\u019b\u0844\u0003\u0002\u0002\u0002", - "\u019d\u084d\u0003\u0002\u0002\u0002\u019f\u0855\u0003\u0002\u0002\u0002", - "\u01a1\u085c\u0003\u0002\u0002\u0002\u01a3\u0862\u0003\u0002\u0002\u0002", - "\u01a5\u0867\u0003\u0002\u0002\u0002\u01a7\u086e\u0003\u0002\u0002\u0002", - "\u01a9\u0873\u0003\u0002\u0002\u0002\u01ab\u087a\u0003\u0002\u0002\u0002", - "\u01ad\u0882\u0003\u0002\u0002\u0002\u01af\u0889\u0003\u0002\u0002\u0002", - "\u01b1\u0890\u0003\u0002\u0002\u0002\u01b3\u0895\u0003\u0002\u0002\u0002", - "\u01b5\u089a\u0003\u0002\u0002\u0002\u01b7\u08a0\u0003\u0002\u0002\u0002", - "\u01b9\u08ac\u0003\u0002\u0002\u0002\u01bb\u08b7\u0003\u0002\u0002\u0002", - "\u01bd\u08c4\u0003\u0002\u0002\u0002\u01bf\u08ca\u0003\u0002\u0002\u0002", - "\u01c1\u08d2\u0003\u0002\u0002\u0002\u01c3\u08d8\u0003\u0002\u0002\u0002", - "\u01c5\u08df\u0003\u0002\u0002\u0002\u01c7\u08e4\u0003\u0002\u0002\u0002", - "\u01c9\u08ea\u0003\u0002\u0002\u0002\u01cb\u08f1\u0003\u0002\u0002\u0002", - "\u01cd\u08fb\u0003\u0002\u0002\u0002\u01cf\u0902\u0003\u0002\u0002\u0002", - "\u01d1\u0912\u0003\u0002\u0002\u0002\u01d3\u091b\u0003\u0002\u0002\u0002", - "\u01d5\u091f\u0003\u0002\u0002\u0002\u01d7\u0923\u0003\u0002\u0002\u0002", - "\u01d9\u0929\u0003\u0002\u0002\u0002\u01db\u092f\u0003\u0002\u0002\u0002", - "\u01dd\u0934\u0003\u0002\u0002\u0002\u01df\u0939\u0003\u0002\u0002\u0002", - "\u01e1\u0941\u0003\u0002\u0002\u0002\u01e3\u0948\u0003\u0002\u0002\u0002", - "\u01e5\u094f\u0003\u0002\u0002\u0002\u01e7\u095e\u0003\u0002\u0002\u0002", - "\u01e9\u096f\u0003\u0002\u0002\u0002\u01eb\u097f\u0003\u0002\u0002\u0002", - "\u01ed\u098d\u0003\u0002\u0002\u0002\u01ef\u099b\u0003\u0002\u0002\u0002", - "\u01f1\u09aa\u0003\u0002\u0002\u0002\u01f3\u09bd\u0003\u0002\u0002\u0002", - "\u01f5\u09c8\u0003\u0002\u0002\u0002\u01f7\u09de\u0003\u0002\u0002\u0002", - "\u01f9\u09ed\u0003\u0002\u0002\u0002\u01fb\u0a05\u0003\u0002\u0002\u0002", - "\u01fd\u0a17\u0003\u0002\u0002\u0002\u01ff\u0a1a\u0003\u0002\u0002\u0002", - "\u0201\u0a27\u0003\u0002\u0002\u0002\u0203\u0a2e\u0003\u0002\u0002\u0002", - "\u0205\u0a35\u0003\u0002\u0002\u0002\u0207\u0a3b\u0003\u0002\u0002\u0002", - "\u0209\u0a3f\u0003\u0002\u0002\u0002\u020b\u0a44\u0003\u0002\u0002\u0002", - "\u020d\u0a4c\u0003\u0002\u0002\u0002\u020f\u0a53\u0003\u0002\u0002\u0002", - "\u0211\u0a5d\u0003\u0002\u0002\u0002\u0213\u0a63\u0003\u0002\u0002\u0002", - "\u0215\u0a6b\u0003\u0002\u0002\u0002\u0217\u0a73\u0003\u0002\u0002\u0002", - "\u0219\u0a7c\u0003\u0002\u0002\u0002\u021b\u0a80\u0003\u0002\u0002\u0002", - "\u021d\u0a87\u0003\u0002\u0002\u0002\u021f\u0a8d\u0003\u0002\u0002\u0002", - "\u0221\u0a94\u0003\u0002\u0002\u0002\u0223\u0a99\u0003\u0002\u0002\u0002", - "\u0225\u0a9e\u0003\u0002\u0002\u0002\u0227\u0aa8\u0003\u0002\u0002\u0002", - "\u0229\u0ab1\u0003\u0002\u0002\u0002\u022b\u0ab9\u0003\u0002\u0002\u0002", - "\u022d\u0abd\u0003\u0002\u0002\u0002\u022f\u0ac1\u0003\u0002\u0002\u0002", - "\u0231\u0ac6\u0003\u0002\u0002\u0002\u0233\u0ac8\u0003\u0002\u0002\u0002", - "\u0235\u0aca\u0003\u0002\u0002\u0002\u0237\u0acc\u0003\u0002\u0002\u0002", - "\u0239\u0ace\u0003\u0002\u0002\u0002\u023b\u0ad0\u0003\u0002\u0002\u0002", - "\u023d\u0ad2\u0003\u0002\u0002\u0002\u023f\u0ad4\u0003\u0002\u0002\u0002", - "\u0241\u0ad6\u0003\u0002\u0002\u0002\u0243\u0ad8\u0003\u0002\u0002\u0002", - "\u0245\u0ada\u0003\u0002\u0002\u0002\u0247\u0adc\u0003\u0002\u0002\u0002", - "\u0249\u0ade\u0003\u0002\u0002\u0002\u024b\u0ae0\u0003\u0002\u0002\u0002", - "\u024d\u0ae2\u0003\u0002\u0002\u0002\u024f\u0ae4\u0003\u0002\u0002\u0002", - "\u0251\u0ae6\u0003\u0002\u0002\u0002\u0253\u0ae8\u0003\u0002\u0002\u0002", - "\u0255\u0aea\u0003\u0002\u0002\u0002\u0257\u0aec\u0003\u0002\u0002\u0002", - "\u0259\u0aee\u0003\u0002\u0002\u0002\u025b\u0af0\u0003\u0002\u0002\u0002", - "\u025d\u0af2\u0003\u0002\u0002\u0002\u025f\u0af4\u0003\u0002\u0002\u0002", - "\u0261\u0af6\u0003\u0002\u0002\u0002\u0263\u0af8\u0003\u0002\u0002\u0002", - "\u0265\u0afa\u0003\u0002\u0002\u0002\u0267\u0afc\u0003\u0002\u0002\u0002", - "\u0269\u0afe\u0003\u0002\u0002\u0002\u026b\u0b01\u0003\u0002\u0002\u0002", - "\u026d\u0b03\u0003\u0002\u0002\u0002\u026f\u0b06\u0003\u0002\u0002\u0002", - "\u0271\u0b0b\u0003\u0002\u0002\u0002\u0273\u0b0e\u0003\u0002\u0002\u0002", - "\u0275\u0b3d\u0003\u0002\u0002\u0002\u0277\u0b3f\u0003\u0002\u0002\u0002", - "\u0279\u0b44\u0003\u0002\u0002\u0002\u027b\u0b48\u0003\u0002\u0002\u0002", - "\u027d\u0b54\u0003\u0002\u0002\u0002\u027f\u0b62\u0003\u0002\u0002\u0002", - "\u0281\u0b64\u0003\u0002\u0002\u0002\u0283\u0b66\u0003\u0002\u0002\u0002", - "\u0285\u0b73\u0003\u0002\u0002\u0002\u0287\u0b80\u0003\u0002\u0002\u0002", - "\u0289\u0b89\u0003\u0002\u0002\u0002\u028b\u028d\t\u0002\u0002\u0002", - "\u028c\u028b\u0003\u0002\u0002\u0002\u028d\u028e\u0003\u0002\u0002\u0002", - "\u028e\u028c\u0003\u0002\u0002\u0002\u028e\u028f\u0003\u0002\u0002\u0002", - "\u028f\u0290\u0003\u0002\u0002\u0002\u0290\u0291\b\u0002\u0002\u0002", - "\u0291\u0004\u0003\u0002\u0002\u0002\u0292\u0293\u00071\u0002\u0002", - "\u0293\u0294\u0007,\u0002\u0002\u0294\u0298\u0003\u0002\u0002\u0002", - "\u0295\u0297\u000b\u0002\u0002\u0002\u0296\u0295\u0003\u0002\u0002\u0002", - "\u0297\u029a\u0003\u0002\u0002\u0002\u0298\u0299\u0003\u0002\u0002\u0002", - "\u0298\u0296\u0003\u0002\u0002\u0002\u0299\u029b\u0003\u0002\u0002\u0002", - "\u029a\u0298\u0003\u0002\u0002\u0002\u029b\u029c\u0007,\u0002\u0002", - "\u029c\u029d\u00071\u0002\u0002\u029d\u029e\u0003\u0002\u0002\u0002", - "\u029e\u029f\b\u0003\u0002\u0002\u029f\u0006\u0003\u0002\u0002\u0002", - "\u02a0\u02a1\u0007/\u0002\u0002\u02a1\u02a2\u0007/\u0002\u0002\u02a2", - "\u02a5\u0007\"\u0002\u0002\u02a3\u02a5\u0007%\u0002\u0002\u02a4\u02a0", - "\u0003\u0002\u0002\u0002\u02a4\u02a3\u0003\u0002\u0002\u0002\u02a5\u02a9", - "\u0003\u0002\u0002\u0002\u02a6\u02a8\n\u0003\u0002\u0002\u02a7\u02a6", - "\u0003\u0002\u0002\u0002\u02a8\u02ab\u0003\u0002\u0002\u0002\u02a9\u02a7", - "\u0003\u0002\u0002\u0002\u02a9\u02aa\u0003\u0002\u0002\u0002\u02aa\u02b1", - "\u0003\u0002\u0002\u0002\u02ab\u02a9\u0003\u0002\u0002\u0002\u02ac\u02ae", - "\u0007\u000f\u0002\u0002\u02ad\u02ac\u0003\u0002\u0002\u0002\u02ad\u02ae", - "\u0003\u0002\u0002\u0002\u02ae\u02af\u0003\u0002\u0002\u0002\u02af\u02b2", - "\u0007\f\u0002\u0002\u02b0\u02b2\u0007\u0002\u0002\u0003\u02b1\u02ad", - "\u0003\u0002\u0002\u0002\u02b1\u02b0\u0003\u0002\u0002\u0002\u02b2\u02be", - "\u0003\u0002\u0002\u0002\u02b3\u02b4\u0007/\u0002\u0002\u02b4\u02b5", - "\u0007/\u0002\u0002\u02b5\u02bb\u0003\u0002\u0002\u0002\u02b6\u02b8", - "\u0007\u000f\u0002\u0002\u02b7\u02b6\u0003\u0002\u0002\u0002\u02b7\u02b8", - "\u0003\u0002\u0002\u0002\u02b8\u02b9\u0003\u0002\u0002\u0002\u02b9\u02bc", - "\u0007\f\u0002\u0002\u02ba\u02bc\u0007\u0002\u0002\u0003\u02bb\u02b7", - "\u0003\u0002\u0002\u0002\u02bb\u02ba\u0003\u0002\u0002\u0002\u02bc\u02be", - "\u0003\u0002\u0002\u0002\u02bd\u02a4\u0003\u0002\u0002\u0002\u02bd\u02b3", - "\u0003\u0002\u0002\u0002\u02be\u02bf\u0003\u0002\u0002\u0002\u02bf\u02c0", - "\b\u0004\u0002\u0002\u02c0\b\u0003\u0002\u0002\u0002\u02c1\u02c2\u0007", - "U\u0002\u0002\u02c2\u02c3\u0007G\u0002\u0002\u02c3\u02c4\u0007N\u0002", - "\u0002\u02c4\u02c5\u0007G\u0002\u0002\u02c5\u02c6\u0007E\u0002\u0002", - "\u02c6\u02c7\u0007V\u0002\u0002\u02c7\n\u0003\u0002\u0002\u0002\u02c8", - "\u02c9\u0007H\u0002\u0002\u02c9\u02ca\u0007T\u0002\u0002\u02ca\u02cb", - "\u0007Q\u0002\u0002\u02cb\u02cc\u0007O\u0002\u0002\u02cc\f\u0003\u0002", - "\u0002\u0002\u02cd\u02ce\u0007C\u0002\u0002\u02ce\u02cf\u0007F\u0002", - "\u0002\u02cf\u02d0\u0007F\u0002\u0002\u02d0\u000e\u0003\u0002\u0002", - "\u0002\u02d1\u02d2\u0007C\u0002\u0002\u02d2\u02d3\u0007U\u0002\u0002", - "\u02d3\u0010\u0003\u0002\u0002\u0002\u02d4\u02d5\u0007C\u0002\u0002", - "\u02d5\u02d6\u0007N\u0002\u0002\u02d6\u02d7\u0007N\u0002\u0002\u02d7", - "\u0012\u0003\u0002\u0002\u0002\u02d8\u02d9\u0007C\u0002\u0002\u02d9", - "\u02da\u0007P\u0002\u0002\u02da\u02db\u0007[\u0002\u0002\u02db\u0014", - "\u0003\u0002\u0002\u0002\u02dc\u02dd\u0007F\u0002\u0002\u02dd\u02de", - "\u0007K\u0002\u0002\u02de\u02df\u0007U\u0002\u0002\u02df\u02e0\u0007", - "V\u0002\u0002\u02e0\u02e1\u0007K\u0002\u0002\u02e1\u02e2\u0007P\u0002", - "\u0002\u02e2\u02e3\u0007E\u0002\u0002\u02e3\u02e4\u0007V\u0002\u0002", - "\u02e4\u0016\u0003\u0002\u0002\u0002\u02e5\u02e6\u0007Y\u0002\u0002", - "\u02e6\u02e7\u0007J\u0002\u0002\u02e7\u02e8\u0007G\u0002\u0002\u02e8", - "\u02e9\u0007T\u0002\u0002\u02e9\u02ea\u0007G\u0002\u0002\u02ea\u0018", - "\u0003\u0002\u0002\u0002\u02eb\u02ec\u0007I\u0002\u0002\u02ec\u02ed", - "\u0007T\u0002\u0002\u02ed\u02ee\u0007Q\u0002\u0002\u02ee\u02ef\u0007", - "W\u0002\u0002\u02ef\u02f0\u0007R\u0002\u0002\u02f0\u001a\u0003\u0002", - "\u0002\u0002\u02f1\u02f2\u0007D\u0002\u0002\u02f2\u02f3\u0007[\u0002", - "\u0002\u02f3\u001c\u0003\u0002\u0002\u0002\u02f4\u02f5\u0007I\u0002", - "\u0002\u02f5\u02f6\u0007T\u0002\u0002\u02f6\u02f7\u0007Q\u0002\u0002", - "\u02f7\u02f8\u0007W\u0002\u0002\u02f8\u02f9\u0007R\u0002\u0002\u02f9", - "\u02fa\u0007K\u0002\u0002\u02fa\u02fb\u0007P\u0002\u0002\u02fb\u02fc", - "\u0007I\u0002\u0002\u02fc\u001e\u0003\u0002\u0002\u0002\u02fd\u02fe", - "\u0007U\u0002\u0002\u02fe\u02ff\u0007G\u0002\u0002\u02ff\u0300\u0007", - "V\u0002\u0002\u0300\u0301\u0007U\u0002\u0002\u0301 \u0003\u0002\u0002", - "\u0002\u0302\u0303\u0007E\u0002\u0002\u0303\u0304\u0007W\u0002\u0002", - "\u0304\u0305\u0007D\u0002\u0002\u0305\u0306\u0007G\u0002\u0002\u0306", - "\"\u0003\u0002\u0002\u0002\u0307\u0308\u0007T\u0002\u0002\u0308\u0309", - "\u0007Q\u0002\u0002\u0309\u030a\u0007N\u0002\u0002\u030a\u030b\u0007", - "N\u0002\u0002\u030b\u030c\u0007W\u0002\u0002\u030c\u030d\u0007R\u0002", - "\u0002\u030d$\u0003\u0002\u0002\u0002\u030e\u030f\u0007Q\u0002\u0002", - "\u030f\u0310\u0007T\u0002\u0002\u0310\u0311\u0007F\u0002\u0002\u0311", - "\u0312\u0007G\u0002\u0002\u0312\u0313\u0007T\u0002\u0002\u0313&\u0003", - "\u0002\u0002\u0002\u0314\u0315\u0007J\u0002\u0002\u0315\u0316\u0007", - "C\u0002\u0002\u0316\u0317\u0007X\u0002\u0002\u0317\u0318\u0007K\u0002", - "\u0002\u0318\u0319\u0007P\u0002\u0002\u0319\u031a\u0007I\u0002\u0002", - "\u031a(\u0003\u0002\u0002\u0002\u031b\u031c\u0007N\u0002\u0002\u031c", - "\u031d\u0007K\u0002\u0002\u031d\u031e\u0007O\u0002\u0002\u031e\u031f", - "\u0007K\u0002\u0002\u031f\u0320\u0007V\u0002\u0002\u0320*\u0003\u0002", - "\u0002\u0002\u0321\u0322\u0007C\u0002\u0002\u0322\u0323\u0007V\u0002", - "\u0002\u0323,\u0003\u0002\u0002\u0002\u0324\u0325\u0007Q\u0002\u0002", - "\u0325\u0326\u0007T\u0002\u0002\u0326.\u0003\u0002\u0002\u0002\u0327", - "\u0328\u0007C\u0002\u0002\u0328\u0329\u0007P\u0002\u0002\u0329\u032a", - "\u0007F\u0002\u0002\u032a0\u0003\u0002\u0002\u0002\u032b\u032c\u0007", - "K\u0002\u0002\u032c\u032d\u0007P\u0002\u0002\u032d2\u0003\u0002\u0002", - "\u0002\u032e\u032f\u0007P\u0002\u0002\u032f\u0330\u0007Q\u0002\u0002", - "\u0330\u0331\u0007V\u0002\u0002\u03314\u0003\u0002\u0002\u0002\u0332", - "\u0333\u0007P\u0002\u0002\u0333\u0334\u0007Q\u0002\u0002\u03346\u0003", - "\u0002\u0002\u0002\u0335\u0336\u0007G\u0002\u0002\u0336\u0337\u0007", - "Z\u0002\u0002\u0337\u0338\u0007K\u0002\u0002\u0338\u0339\u0007U\u0002", - "\u0002\u0339\u033a\u0007V\u0002\u0002\u033a\u033b\u0007U\u0002\u0002", - "\u033b8\u0003\u0002\u0002\u0002\u033c\u033d\u0007D\u0002\u0002\u033d", - "\u033e\u0007G\u0002\u0002\u033e\u033f\u0007V\u0002\u0002\u033f\u0340", - "\u0007Y\u0002\u0002\u0340\u0341\u0007G\u0002\u0002\u0341\u0342\u0007", - "G\u0002\u0002\u0342\u0343\u0007P\u0002\u0002\u0343:\u0003\u0002\u0002", - "\u0002\u0344\u0345\u0007N\u0002\u0002\u0345\u0346\u0007K\u0002\u0002", - "\u0346\u0347\u0007M\u0002\u0002\u0347\u0348\u0007G\u0002\u0002\u0348", - "<\u0003\u0002\u0002\u0002\u0349\u034a\u0007T\u0002\u0002\u034a\u034b", - "\u0007N\u0002\u0002\u034b\u034c\u0007K\u0002\u0002\u034c\u034d\u0007", - "M\u0002\u0002\u034d\u034e\u0007G\u0002\u0002\u034e>\u0003\u0002\u0002", - "\u0002\u034f\u0350\u0007K\u0002\u0002\u0350\u0351\u0007U\u0002\u0002", - "\u0351@\u0003\u0002\u0002\u0002\u0352\u0353\u0007V\u0002\u0002\u0353", - "\u0354\u0007T\u0002\u0002\u0354\u0355\u0007W\u0002\u0002\u0355\u0356", - "\u0007G\u0002\u0002\u0356B\u0003\u0002\u0002\u0002\u0357\u0358\u0007", - "H\u0002\u0002\u0358\u0359\u0007C\u0002\u0002\u0359\u035a\u0007N\u0002", - "\u0002\u035a\u035b\u0007U\u0002\u0002\u035b\u035c\u0007G\u0002\u0002", - "\u035cD\u0003\u0002\u0002\u0002\u035d\u035e\u0007P\u0002\u0002\u035e", - "\u035f\u0007W\u0002\u0002\u035f\u0360\u0007N\u0002\u0002\u0360\u0361", - "\u0007N\u0002\u0002\u0361\u0362\u0007U\u0002\u0002\u0362F\u0003\u0002", - "\u0002\u0002\u0363\u0364\u0007C\u0002\u0002\u0364\u0365\u0007U\u0002", - "\u0002\u0365\u0366\u0007E\u0002\u0002\u0366H\u0003\u0002\u0002\u0002", - "\u0367\u0368\u0007F\u0002\u0002\u0368\u0369\u0007G\u0002\u0002\u0369", - "\u036a\u0007U\u0002\u0002\u036a\u036b\u0007E\u0002\u0002\u036bJ\u0003", - "\u0002\u0002\u0002\u036c\u036d\u0007H\u0002\u0002\u036d\u036e\u0007", - "Q\u0002\u0002\u036e\u036f\u0007T\u0002\u0002\u036fL\u0003\u0002\u0002", - "\u0002\u0370\u0371\u0007K\u0002\u0002\u0371\u0372\u0007P\u0002\u0002", - "\u0372\u0373\u0007V\u0002\u0002\u0373\u0374\u0007G\u0002\u0002\u0374", - "\u0375\u0007T\u0002\u0002\u0375\u0376\u0007X\u0002\u0002\u0376\u0377", - "\u0007C\u0002\u0002\u0377\u0378\u0007N\u0002\u0002\u0378N\u0003\u0002", - "\u0002\u0002\u0379\u037a\u0007E\u0002\u0002\u037a\u037b\u0007C\u0002", - "\u0002\u037b\u037c\u0007U\u0002\u0002\u037c\u037d\u0007G\u0002\u0002", - "\u037dP\u0003\u0002\u0002\u0002\u037e\u037f\u0007Y\u0002\u0002\u037f", - "\u0380\u0007J\u0002\u0002\u0380\u0381\u0007G\u0002\u0002\u0381\u0382", - "\u0007P\u0002\u0002\u0382R\u0003\u0002\u0002\u0002\u0383\u0384\u0007", - "V\u0002\u0002\u0384\u0385\u0007J\u0002\u0002\u0385\u0386\u0007G\u0002", - "\u0002\u0386\u0387\u0007P\u0002\u0002\u0387T\u0003\u0002\u0002\u0002", - "\u0388\u0389\u0007G\u0002\u0002\u0389\u038a\u0007N\u0002\u0002\u038a", - "\u038b\u0007U\u0002\u0002\u038b\u038c\u0007G\u0002\u0002\u038cV\u0003", - "\u0002\u0002\u0002\u038d\u038e\u0007G\u0002\u0002\u038e\u038f\u0007", - "P\u0002\u0002\u038f\u0390\u0007F\u0002\u0002\u0390X\u0003\u0002\u0002", - "\u0002\u0391\u0392\u0007L\u0002\u0002\u0392\u0393\u0007Q\u0002\u0002", - "\u0393\u0394\u0007K\u0002\u0002\u0394\u0395\u0007P\u0002\u0002\u0395", - "Z\u0003\u0002\u0002\u0002\u0396\u0397\u0007E\u0002\u0002\u0397\u0398", - "\u0007T\u0002\u0002\u0398\u0399\u0007Q\u0002\u0002\u0399\u039a\u0007", - "U\u0002\u0002\u039a\u039b\u0007U\u0002\u0002\u039b\\\u0003\u0002\u0002", - "\u0002\u039c\u039d\u0007Q\u0002\u0002\u039d\u039e\u0007W\u0002\u0002", - "\u039e\u039f\u0007V\u0002\u0002\u039f\u03a0\u0007G\u0002\u0002\u03a0", - "\u03a1\u0007T\u0002\u0002\u03a1^\u0003\u0002\u0002\u0002\u03a2\u03a3", - "\u0007K\u0002\u0002\u03a3\u03a4\u0007P\u0002\u0002\u03a4\u03a5\u0007", - "P\u0002\u0002\u03a5\u03a6\u0007G\u0002\u0002\u03a6\u03a7\u0007T\u0002", - "\u0002\u03a7`\u0003\u0002\u0002\u0002\u03a8\u03a9\u0007N\u0002\u0002", - "\u03a9\u03aa\u0007G\u0002\u0002\u03aa\u03ab\u0007H\u0002\u0002\u03ab", - "\u03ac\u0007V\u0002\u0002\u03acb\u0003\u0002\u0002\u0002\u03ad\u03ae", - "\u0007U\u0002\u0002\u03ae\u03af\u0007G\u0002\u0002\u03af\u03b0\u0007", - "O\u0002\u0002\u03b0\u03b1\u0007K\u0002\u0002\u03b1d\u0003\u0002\u0002", - "\u0002\u03b2\u03b3\u0007T\u0002\u0002\u03b3\u03b4\u0007K\u0002\u0002", - "\u03b4\u03b5\u0007I\u0002\u0002\u03b5\u03b6\u0007J\u0002\u0002\u03b6", - "\u03b7\u0007V\u0002\u0002\u03b7f\u0003\u0002\u0002\u0002\u03b8\u03b9", - "\u0007H\u0002\u0002\u03b9\u03ba\u0007W\u0002\u0002\u03ba\u03bb\u0007", - "N\u0002\u0002\u03bb\u03bc\u0007N\u0002\u0002\u03bch\u0003\u0002\u0002", - "\u0002\u03bd\u03be\u0007P\u0002\u0002\u03be\u03bf\u0007C\u0002\u0002", - "\u03bf\u03c0\u0007V\u0002\u0002\u03c0\u03c1\u0007W\u0002\u0002\u03c1", - "\u03c2\u0007T\u0002\u0002\u03c2\u03c3\u0007C\u0002\u0002\u03c3\u03c4", - "\u0007N\u0002\u0002\u03c4j\u0003\u0002\u0002\u0002\u03c5\u03c6\u0007", - "Q\u0002\u0002\u03c6\u03c7\u0007P\u0002\u0002\u03c7l\u0003\u0002\u0002", - "\u0002\u03c8\u03c9\u0007R\u0002\u0002\u03c9\u03ca\u0007K\u0002\u0002", - "\u03ca\u03cb\u0007X\u0002\u0002\u03cb\u03cc\u0007Q\u0002\u0002\u03cc", - "\u03cd\u0007V\u0002\u0002\u03cdn\u0003\u0002\u0002\u0002\u03ce\u03cf", - "\u0007N\u0002\u0002\u03cf\u03d0\u0007C\u0002\u0002\u03d0\u03d1\u0007", - "V\u0002\u0002\u03d1\u03d2\u0007G\u0002\u0002\u03d2\u03d3\u0007T\u0002", - "\u0002\u03d3\u03d4\u0007C\u0002\u0002\u03d4\u03d5\u0007N\u0002\u0002", - "\u03d5p\u0003\u0002\u0002\u0002\u03d6\u03d7\u0007Y\u0002\u0002\u03d7", - "\u03d8\u0007K\u0002\u0002\u03d8\u03d9\u0007P\u0002\u0002\u03d9\u03da", - "\u0007F\u0002\u0002\u03da\u03db\u0007Q\u0002\u0002\u03db\u03dc\u0007", - "Y\u0002\u0002\u03dcr\u0003\u0002\u0002\u0002\u03dd\u03de\u0007Q\u0002", - "\u0002\u03de\u03df\u0007X\u0002\u0002\u03df\u03e0\u0007G\u0002\u0002", - "\u03e0\u03e1\u0007T\u0002\u0002\u03e1t\u0003\u0002\u0002\u0002\u03e2", - "\u03e3\u0007R\u0002\u0002\u03e3\u03e4\u0007C\u0002\u0002\u03e4\u03e5", - "\u0007T\u0002\u0002\u03e5\u03e6\u0007V\u0002\u0002\u03e6\u03e7\u0007", - "K\u0002\u0002\u03e7\u03e8\u0007V\u0002\u0002\u03e8\u03e9\u0007K\u0002", - "\u0002\u03e9\u03ea\u0007Q\u0002\u0002\u03ea\u03eb\u0007P\u0002\u0002", - "\u03ebv\u0003\u0002\u0002\u0002\u03ec\u03ed\u0007T\u0002\u0002\u03ed", - "\u03ee\u0007C\u0002\u0002\u03ee\u03ef\u0007P\u0002\u0002\u03ef\u03f0", - "\u0007I\u0002\u0002\u03f0\u03f1\u0007G\u0002\u0002\u03f1x\u0003\u0002", - "\u0002\u0002\u03f2\u03f3\u0007T\u0002\u0002\u03f3\u03f4\u0007Q\u0002", - "\u0002\u03f4\u03f5\u0007Y\u0002\u0002\u03f5\u03f6\u0007U\u0002\u0002", - "\u03f6z\u0003\u0002\u0002\u0002\u03f7\u03f8\u0007W\u0002\u0002\u03f8", - "\u03f9\u0007P\u0002\u0002\u03f9\u03fa\u0007D\u0002\u0002\u03fa\u03fb", - "\u0007Q\u0002\u0002\u03fb\u03fc\u0007W\u0002\u0002\u03fc\u03fd\u0007", - "P\u0002\u0002\u03fd\u03fe\u0007F\u0002\u0002\u03fe\u03ff\u0007G\u0002", - "\u0002\u03ff\u0400\u0007F\u0002\u0002\u0400|\u0003\u0002\u0002\u0002", - "\u0401\u0402\u0007R\u0002\u0002\u0402\u0403\u0007T\u0002\u0002\u0403", - "\u0404\u0007G\u0002\u0002\u0404\u0405\u0007E\u0002\u0002\u0405\u0406", - "\u0007G\u0002\u0002\u0406\u0407\u0007F\u0002\u0002\u0407\u0408\u0007", - "K\u0002\u0002\u0408\u0409\u0007P\u0002\u0002\u0409\u040a\u0007I\u0002", - "\u0002\u040a~\u0003\u0002\u0002\u0002\u040b\u040c\u0007H\u0002\u0002", - "\u040c\u040d\u0007Q\u0002\u0002\u040d\u040e\u0007N\u0002\u0002\u040e", - "\u040f\u0007N\u0002\u0002\u040f\u0410\u0007Q\u0002\u0002\u0410\u0411", - "\u0007Y\u0002\u0002\u0411\u0412\u0007K\u0002\u0002\u0412\u0413\u0007", - "P\u0002\u0002\u0413\u0414\u0007I\u0002\u0002\u0414\u0080\u0003\u0002", - "\u0002\u0002\u0415\u0416\u0007E\u0002\u0002\u0416\u0417\u0007W\u0002", - "\u0002\u0417\u0418\u0007T\u0002\u0002\u0418\u0419\u0007T\u0002\u0002", - "\u0419\u041a\u0007G\u0002\u0002\u041a\u041b\u0007P\u0002\u0002\u041b", - "\u041c\u0007V\u0002\u0002\u041c\u0082\u0003\u0002\u0002\u0002\u041d", - "\u041e\u0007H\u0002\u0002\u041e\u041f\u0007K\u0002\u0002\u041f\u0420", - "\u0007T\u0002\u0002\u0420\u0421\u0007U\u0002\u0002\u0421\u0422\u0007", - "V\u0002\u0002\u0422\u0084\u0003\u0002\u0002\u0002\u0423\u0424\u0007", - "C\u0002\u0002\u0424\u0425\u0007H\u0002\u0002\u0425\u0426\u0007V\u0002", - "\u0002\u0426\u0427\u0007G\u0002\u0002\u0427\u0428\u0007T\u0002\u0002", - "\u0428\u0086\u0003\u0002\u0002\u0002\u0429\u042a\u0007N\u0002\u0002", - "\u042a\u042b\u0007C\u0002\u0002\u042b\u042c\u0007U\u0002\u0002\u042c", - "\u042d\u0007V\u0002\u0002\u042d\u0088\u0003\u0002\u0002\u0002\u042e", - "\u042f\u0007Y\u0002\u0002\u042f\u0430\u0007K\u0002\u0002\u0430\u0431", - "\u0007V\u0002\u0002\u0431\u0432\u0007J\u0002\u0002\u0432\u008a\u0003", - "\u0002\u0002\u0002\u0433\u0434\u0007X\u0002\u0002\u0434\u0435\u0007", - "C\u0002\u0002\u0435\u0436\u0007N\u0002\u0002\u0436\u0437\u0007W\u0002", - "\u0002\u0437\u0438\u0007G\u0002\u0002\u0438\u0439\u0007U\u0002\u0002", - "\u0439\u008c\u0003\u0002\u0002\u0002\u043a\u043b\u0007E\u0002\u0002", - "\u043b\u043c\u0007T\u0002\u0002\u043c\u043d\u0007G\u0002\u0002\u043d", - "\u043e\u0007C\u0002\u0002\u043e\u043f\u0007V\u0002\u0002\u043f\u0440", - "\u0007G\u0002\u0002\u0440\u008e\u0003\u0002\u0002\u0002\u0441\u0442", - "\u0007V\u0002\u0002\u0442\u0443\u0007C\u0002\u0002\u0443\u0444\u0007", - "D\u0002\u0002\u0444\u0445\u0007N\u0002\u0002\u0445\u0446\u0007G\u0002", - "\u0002\u0446\u0090\u0003\u0002\u0002\u0002\u0447\u0448\u0007F\u0002", - "\u0002\u0448\u0449\u0007K\u0002\u0002\u0449\u044a\u0007T\u0002\u0002", - "\u044a\u044b\u0007G\u0002\u0002\u044b\u044c\u0007E\u0002\u0002\u044c", - "\u044d\u0007V\u0002\u0002\u044d\u044e\u0007Q\u0002\u0002\u044e\u044f", - "\u0007T\u0002\u0002\u044f\u0450\u0007[\u0002\u0002\u0450\u0092\u0003", - "\u0002\u0002\u0002\u0451\u0452\u0007X\u0002\u0002\u0452\u0453\u0007", - "K\u0002\u0002\u0453\u0454\u0007G\u0002\u0002\u0454\u0455\u0007Y\u0002", - "\u0002\u0455\u0094\u0003\u0002\u0002\u0002\u0456\u0457\u0007T\u0002", - "\u0002\u0457\u0458\u0007G\u0002\u0002\u0458\u0459\u0007R\u0002\u0002", - "\u0459\u045a\u0007N\u0002\u0002\u045a\u045b\u0007C\u0002\u0002\u045b", - "\u045c\u0007E\u0002\u0002\u045c\u045d\u0007G\u0002\u0002\u045d\u0096", - "\u0003\u0002\u0002\u0002\u045e\u045f\u0007K\u0002\u0002\u045f\u0460", - "\u0007P\u0002\u0002\u0460\u0461\u0007U\u0002\u0002\u0461\u0462\u0007", - "G\u0002\u0002\u0462\u0463\u0007T\u0002\u0002\u0463\u0464\u0007V\u0002", - "\u0002\u0464\u0098\u0003\u0002\u0002\u0002\u0465\u0466\u0007F\u0002", - "\u0002\u0466\u0467\u0007G\u0002\u0002\u0467\u0468\u0007N\u0002\u0002", - "\u0468\u0469\u0007G\u0002\u0002\u0469\u046a\u0007V\u0002\u0002\u046a", - "\u046b\u0007G\u0002\u0002\u046b\u009a\u0003\u0002\u0002\u0002\u046c", - "\u046d\u0007K\u0002\u0002\u046d\u046e\u0007P\u0002\u0002\u046e\u046f", - "\u0007V\u0002\u0002\u046f\u0470\u0007Q\u0002\u0002\u0470\u009c\u0003", - "\u0002\u0002\u0002\u0471\u0472\u0007F\u0002\u0002\u0472\u0473\u0007", - "G\u0002\u0002\u0473\u0474\u0007U\u0002\u0002\u0474\u0475\u0007E\u0002", - "\u0002\u0475\u0476\u0007T\u0002\u0002\u0476\u0477\u0007K\u0002\u0002", - "\u0477\u0478\u0007D\u0002\u0002\u0478\u0479\u0007G\u0002\u0002\u0479", - "\u009e\u0003\u0002\u0002\u0002\u047a\u047b\u0007G\u0002\u0002\u047b", - "\u047c\u0007Z\u0002\u0002\u047c\u047d\u0007R\u0002\u0002\u047d\u047e", - "\u0007N\u0002\u0002\u047e\u047f\u0007C\u0002\u0002\u047f\u0480\u0007", - "K\u0002\u0002\u0480\u0481\u0007P\u0002\u0002\u0481\u00a0\u0003\u0002", - "\u0002\u0002\u0482\u0483\u0007H\u0002\u0002\u0483\u0484\u0007Q\u0002", - "\u0002\u0484\u0485\u0007T\u0002\u0002\u0485\u0486\u0007O\u0002\u0002", - "\u0486\u0487\u0007C\u0002\u0002\u0487\u0488\u0007V\u0002\u0002\u0488", - "\u00a2\u0003\u0002\u0002\u0002\u0489\u048a\u0007N\u0002\u0002\u048a", - "\u048b\u0007Q\u0002\u0002\u048b\u048c\u0007I\u0002\u0002\u048c\u048d", - "\u0007K\u0002\u0002\u048d\u048e\u0007E\u0002\u0002\u048e\u048f\u0007", - "C\u0002\u0002\u048f\u0490\u0007N\u0002\u0002\u0490\u00a4\u0003\u0002", - "\u0002\u0002\u0491\u0492\u0007E\u0002\u0002\u0492\u0493\u0007Q\u0002", - "\u0002\u0493\u0494\u0007F\u0002\u0002\u0494\u0495\u0007G\u0002\u0002", - "\u0495\u0496\u0007I\u0002\u0002\u0496\u0497\u0007G\u0002\u0002\u0497", - "\u0498\u0007P\u0002\u0002\u0498\u00a6\u0003\u0002\u0002\u0002\u0499", - "\u049a\u0007E\u0002\u0002\u049a\u049b\u0007Q\u0002\u0002\u049b\u049c", - "\u0007U\u0002\u0002\u049c\u049d\u0007V\u0002\u0002\u049d\u00a8\u0003", - "\u0002\u0002\u0002\u049e\u049f\u0007E\u0002\u0002\u049f\u04a0\u0007", - "C\u0002\u0002\u04a0\u04a1\u0007U\u0002\u0002\u04a1\u04a2\u0007V\u0002", - "\u0002\u04a2\u00aa\u0003\u0002\u0002\u0002\u04a3\u04a4\u0007U\u0002", - "\u0002\u04a4\u04a5\u0007J\u0002\u0002\u04a5\u04a6\u0007Q\u0002\u0002", - "\u04a6\u04a7\u0007Y\u0002\u0002\u04a7\u00ac\u0003\u0002\u0002\u0002", - "\u04a8\u04a9\u0007V\u0002\u0002\u04a9\u04aa\u0007C\u0002\u0002\u04aa", - "\u04ab\u0007D\u0002\u0002\u04ab\u04ac\u0007N\u0002\u0002\u04ac\u04ad", - "\u0007G\u0002\u0002\u04ad\u04ae\u0007U\u0002\u0002\u04ae\u00ae\u0003", - "\u0002\u0002\u0002\u04af\u04b0\u0007E\u0002\u0002\u04b0\u04b1\u0007", - "Q\u0002\u0002\u04b1\u04b2\u0007N\u0002\u0002\u04b2\u04b3\u0007W\u0002", - "\u0002\u04b3\u04b4\u0007O\u0002\u0002\u04b4\u04b5\u0007P\u0002\u0002", - "\u04b5\u04b6\u0007U\u0002\u0002\u04b6\u00b0\u0003\u0002\u0002\u0002", - "\u04b7\u04b8\u0007E\u0002\u0002\u04b8\u04b9\u0007Q\u0002\u0002\u04b9", - "\u04ba\u0007N\u0002\u0002\u04ba\u04bb\u0007W\u0002\u0002\u04bb\u04bc", - "\u0007O\u0002\u0002\u04bc\u04bd\u0007P\u0002\u0002\u04bd\u00b2\u0003", - "\u0002\u0002\u0002\u04be\u04bf\u0007W\u0002\u0002\u04bf\u04c0\u0007", - "U\u0002\u0002\u04c0\u04c1\u0007G\u0002\u0002\u04c1\u00b4\u0003\u0002", - "\u0002\u0002\u04c2\u04c3\u0007R\u0002\u0002\u04c3\u04c4\u0007C\u0002", - "\u0002\u04c4\u04c5\u0007T\u0002\u0002\u04c5\u04c6\u0007V\u0002\u0002", - "\u04c6\u04c7\u0007K\u0002\u0002\u04c7\u04c8\u0007V\u0002\u0002\u04c8", - "\u04c9\u0007K\u0002\u0002\u04c9\u04ca\u0007Q\u0002\u0002\u04ca\u04cb", - "\u0007P\u0002\u0002\u04cb\u04cc\u0007U\u0002\u0002\u04cc\u00b6\u0003", - "\u0002\u0002\u0002\u04cd\u04ce\u0007H\u0002\u0002\u04ce\u04cf\u0007", - "W\u0002\u0002\u04cf\u04d0\u0007P\u0002\u0002\u04d0\u04d1\u0007E\u0002", - "\u0002\u04d1\u04d2\u0007V\u0002\u0002\u04d2\u04d3\u0007K\u0002\u0002", - "\u04d3\u04d4\u0007Q\u0002\u0002\u04d4\u04d5\u0007P\u0002\u0002\u04d5", - "\u04d6\u0007U\u0002\u0002\u04d6\u00b8\u0003\u0002\u0002\u0002\u04d7", - "\u04d8\u0007F\u0002\u0002\u04d8\u04d9\u0007T\u0002\u0002\u04d9\u04da", - "\u0007Q\u0002\u0002\u04da\u04db\u0007R\u0002\u0002\u04db\u00ba\u0003", - "\u0002\u0002\u0002\u04dc\u04dd\u0007W\u0002\u0002\u04dd\u04de\u0007", - "P\u0002\u0002\u04de\u04df\u0007K\u0002\u0002\u04df\u04e0\u0007Q\u0002", - "\u0002\u04e0\u04e1\u0007P\u0002\u0002\u04e1\u00bc\u0003\u0002\u0002", - "\u0002\u04e2\u04e3\u0007G\u0002\u0002\u04e3\u04e4\u0007Z\u0002\u0002", - "\u04e4\u04e5\u0007E\u0002\u0002\u04e5\u04e6\u0007G\u0002\u0002\u04e6", - "\u04e7\u0007R\u0002\u0002\u04e7\u04e8\u0007V\u0002\u0002\u04e8\u00be", - "\u0003\u0002\u0002\u0002\u04e9\u04ea\u0007U\u0002\u0002\u04ea\u04eb", - "\u0007G\u0002\u0002\u04eb\u04ec\u0007V\u0002\u0002\u04ec\u04ed\u0007", - "O\u0002\u0002\u04ed\u04ee\u0007K\u0002\u0002\u04ee\u04ef\u0007P\u0002", - "\u0002\u04ef\u04f0\u0007W\u0002\u0002\u04f0\u04f1\u0007U\u0002\u0002", - "\u04f1\u00c0\u0003\u0002\u0002\u0002\u04f2\u04f3\u0007K\u0002\u0002", - "\u04f3\u04f4\u0007P\u0002\u0002\u04f4\u04f5\u0007V\u0002\u0002\u04f5", - "\u04f6\u0007G\u0002\u0002\u04f6\u04f7\u0007T\u0002\u0002\u04f7\u04f8", - "\u0007U\u0002\u0002\u04f8\u04f9\u0007G\u0002\u0002\u04f9\u04fa\u0007", - "E\u0002\u0002\u04fa\u04fb\u0007V\u0002\u0002\u04fb\u00c2\u0003\u0002", - "\u0002\u0002\u04fc\u04fd\u0007V\u0002\u0002\u04fd\u04fe\u0007Q\u0002", - "\u0002\u04fe\u00c4\u0003\u0002\u0002\u0002\u04ff\u0500\u0007V\u0002", - "\u0002\u0500\u0501\u0007C\u0002\u0002\u0501\u0502\u0007D\u0002\u0002", - "\u0502\u0503\u0007N\u0002\u0002\u0503\u0504\u0007G\u0002\u0002\u0504", - "\u0505\u0007U\u0002\u0002\u0505\u0506\u0007C\u0002\u0002\u0506\u0507", - "\u0007O\u0002\u0002\u0507\u0508\u0007R\u0002\u0002\u0508\u0509\u0007", - "N\u0002\u0002\u0509\u050a\u0007G\u0002\u0002\u050a\u00c6\u0003\u0002", - "\u0002\u0002\u050b\u050c\u0007U\u0002\u0002\u050c\u050d\u0007V\u0002", - "\u0002\u050d\u050e\u0007T\u0002\u0002\u050e\u050f\u0007C\u0002\u0002", - "\u050f\u0510\u0007V\u0002\u0002\u0510\u0511\u0007K\u0002\u0002\u0511", - "\u0512\u0007H\u0002\u0002\u0512\u0513\u0007[\u0002\u0002\u0513\u00c8", - "\u0003\u0002\u0002\u0002\u0514\u0515\u0007C\u0002\u0002\u0515\u0516", - "\u0007N\u0002\u0002\u0516\u0517\u0007V\u0002\u0002\u0517\u0518\u0007", - "G\u0002\u0002\u0518\u0519\u0007T\u0002\u0002\u0519\u00ca\u0003\u0002", - "\u0002\u0002\u051a\u051b\u0007T\u0002\u0002\u051b\u051c\u0007G\u0002", - "\u0002\u051c\u051d\u0007P\u0002\u0002\u051d\u051e\u0007C\u0002\u0002", - "\u051e\u051f\u0007O\u0002\u0002\u051f\u0520\u0007G\u0002\u0002\u0520", - "\u00cc\u0003\u0002\u0002\u0002\u0521\u0522\u0007U\u0002\u0002\u0522", - "\u0523\u0007V\u0002\u0002\u0523\u0524\u0007T\u0002\u0002\u0524\u0525", - "\u0007W\u0002\u0002\u0525\u0526\u0007E\u0002\u0002\u0526\u0527\u0007", - "V\u0002\u0002\u0527\u00ce\u0003\u0002\u0002\u0002\u0528\u0529\u0007", - "E\u0002\u0002\u0529\u052a\u0007Q\u0002\u0002\u052a\u052b\u0007O\u0002", - "\u0002\u052b\u052c\u0007O\u0002\u0002\u052c\u052d\u0007G\u0002\u0002", - "\u052d\u052e\u0007P\u0002\u0002\u052e\u052f\u0007V\u0002\u0002\u052f", - "\u00d0\u0003\u0002\u0002\u0002\u0530\u0531\u0007U\u0002\u0002\u0531", - "\u0532\u0007G\u0002\u0002\u0532\u0533\u0007V\u0002\u0002\u0533\u00d2", - "\u0003\u0002\u0002\u0002\u0534\u0535\u0007T\u0002\u0002\u0535\u0536", - "\u0007G\u0002\u0002\u0536\u0537\u0007U\u0002\u0002\u0537\u0538\u0007", - "G\u0002\u0002\u0538\u0539\u0007V\u0002\u0002\u0539\u00d4\u0003\u0002", - "\u0002\u0002\u053a\u053b\u0007F\u0002\u0002\u053b\u053c\u0007C\u0002", - "\u0002\u053c\u053d\u0007V\u0002\u0002\u053d\u053e\u0007C\u0002\u0002", - "\u053e\u00d6\u0003\u0002\u0002\u0002\u053f\u0540\u0007U\u0002\u0002", - "\u0540\u0541\u0007V\u0002\u0002\u0541\u0542\u0007C\u0002\u0002\u0542", - "\u0543\u0007T\u0002\u0002\u0543\u0544\u0007V\u0002\u0002\u0544\u00d8", - "\u0003\u0002\u0002\u0002\u0545\u0546\u0007V\u0002\u0002\u0546\u0547", - "\u0007T\u0002\u0002\u0547\u0548\u0007C\u0002\u0002\u0548\u0549\u0007", - "P\u0002\u0002\u0549\u054a\u0007U\u0002\u0002\u054a\u054b\u0007C\u0002", - "\u0002\u054b\u054c\u0007E\u0002\u0002\u054c\u054d\u0007V\u0002\u0002", - "\u054d\u054e\u0007K\u0002\u0002\u054e\u054f\u0007Q\u0002\u0002\u054f", - "\u0550\u0007P\u0002\u0002\u0550\u00da\u0003\u0002\u0002\u0002\u0551", - "\u0552\u0007E\u0002\u0002\u0552\u0553\u0007Q\u0002\u0002\u0553\u0554", - "\u0007O\u0002\u0002\u0554\u0555\u0007O\u0002\u0002\u0555\u0556\u0007", - "K\u0002\u0002\u0556\u0557\u0007V\u0002\u0002\u0557\u00dc\u0003\u0002", - "\u0002\u0002\u0558\u0559\u0007T\u0002\u0002\u0559\u055a\u0007Q\u0002", - "\u0002\u055a\u055b\u0007N\u0002\u0002\u055b\u055c\u0007N\u0002\u0002", - "\u055c\u055d\u0007D\u0002\u0002\u055d\u055e\u0007C\u0002\u0002\u055e", - "\u055f\u0007E\u0002\u0002\u055f\u0560\u0007M\u0002\u0002\u0560\u00de", - "\u0003\u0002\u0002\u0002\u0561\u0562\u0007O\u0002\u0002\u0562\u0563", - "\u0007C\u0002\u0002\u0563\u0564\u0007E\u0002\u0002\u0564\u0565\u0007", - "T\u0002\u0002\u0565\u0566\u0007Q\u0002\u0002\u0566\u00e0\u0003\u0002", - "\u0002\u0002\u0567\u0568\u0007K\u0002\u0002\u0568\u0569\u0007I\u0002", - "\u0002\u0569\u056a\u0007P\u0002\u0002\u056a\u056b\u0007Q\u0002\u0002", - "\u056b\u056c\u0007T\u0002\u0002\u056c\u056d\u0007G\u0002\u0002\u056d", - "\u00e2\u0003\u0002\u0002\u0002\u056e\u056f\u0007D\u0002\u0002\u056f", - "\u0570\u0007Q\u0002\u0002\u0570\u0571\u0007V\u0002\u0002\u0571\u0572", - "\u0007J\u0002\u0002\u0572\u00e4\u0003\u0002\u0002\u0002\u0573\u0574", - "\u0007N\u0002\u0002\u0574\u0575\u0007G\u0002\u0002\u0575\u0576\u0007", - "C\u0002\u0002\u0576\u0577\u0007F\u0002\u0002\u0577\u0578\u0007K\u0002", - "\u0002\u0578\u0579\u0007P\u0002\u0002\u0579\u057a\u0007I\u0002\u0002", - "\u057a\u00e6\u0003\u0002\u0002\u0002\u057b\u057c\u0007V\u0002\u0002", - "\u057c\u057d\u0007T\u0002\u0002\u057d\u057e\u0007C\u0002\u0002\u057e", - "\u057f\u0007K\u0002\u0002\u057f\u0580\u0007N\u0002\u0002\u0580\u0581", - "\u0007K\u0002\u0002\u0581\u0582\u0007P\u0002\u0002\u0582\u0583\u0007", - "I\u0002\u0002\u0583\u00e8\u0003\u0002\u0002\u0002\u0584\u0585\u0007", - "K\u0002\u0002\u0585\u0586\u0007H\u0002\u0002\u0586\u00ea\u0003\u0002", - "\u0002\u0002\u0587\u0588\u0007R\u0002\u0002\u0588\u0589\u0007Q\u0002", - "\u0002\u0589\u058a\u0007U\u0002\u0002\u058a\u058b\u0007K\u0002\u0002", - "\u058b\u058c\u0007V\u0002\u0002\u058c\u058d\u0007K\u0002\u0002\u058d", - "\u058e\u0007Q\u0002\u0002\u058e\u058f\u0007P\u0002\u0002\u058f\u00ec", - "\u0003\u0002\u0002\u0002\u0590\u0591\u0007G\u0002\u0002\u0591\u0592", - "\u0007Z\u0002\u0002\u0592\u0593\u0007V\u0002\u0002\u0593\u0594\u0007", - "T\u0002\u0002\u0594\u0595\u0007C\u0002\u0002\u0595\u0596\u0007E\u0002", - "\u0002\u0596\u0597\u0007V\u0002\u0002\u0597\u00ee\u0003\u0002\u0002", - "\u0002\u0598\u0599\u0007G\u0002\u0002\u0599\u059a\u0007S\u0002\u0002", - "\u059a\u00f0\u0003\u0002\u0002\u0002\u059b\u059c\u0007P\u0002\u0002", - "\u059c\u059d\u0007U\u0002\u0002\u059d\u059e\u0007G\u0002\u0002\u059e", - "\u059f\u0007S\u0002\u0002\u059f\u00f2\u0003\u0002\u0002\u0002\u05a0", - "\u05a1\u0007P\u0002\u0002\u05a1\u05a2\u0007G\u0002\u0002\u05a2\u05a3", - "\u0007S\u0002\u0002\u05a3\u00f4\u0003\u0002\u0002\u0002\u05a4\u05a5", - "\u0007P\u0002\u0002\u05a5\u05a6\u0007G\u0002\u0002\u05a6\u05a7\u0007", - "S\u0002\u0002\u05a7\u05a8\u0007L\u0002\u0002\u05a8\u00f6\u0003\u0002", - "\u0002\u0002\u05a9\u05aa\u0007N\u0002\u0002\u05aa\u05ab\u0007V\u0002", - "\u0002\u05ab\u00f8\u0003\u0002\u0002\u0002\u05ac\u05ad\u0007N\u0002", - "\u0002\u05ad\u05ae\u0007V\u0002\u0002\u05ae\u05af\u0007G\u0002\u0002", - "\u05af\u00fa\u0003\u0002\u0002\u0002\u05b0\u05b1\u0007I\u0002\u0002", - "\u05b1\u05b2\u0007V\u0002\u0002\u05b2\u00fc\u0003\u0002\u0002\u0002", - "\u05b3\u05b4\u0007I\u0002\u0002\u05b4\u05b5\u0007V\u0002\u0002\u05b5", - "\u05b6\u0007G\u0002\u0002\u05b6\u00fe\u0003\u0002\u0002\u0002\u05b7", - "\u05b8\u0007R\u0002\u0002\u05b8\u05b9\u0007N\u0002\u0002\u05b9\u05ba", - "\u0007W\u0002\u0002\u05ba\u05bb\u0007U\u0002\u0002\u05bb\u0100\u0003", - "\u0002\u0002\u0002\u05bc\u05bd\u0007O\u0002\u0002\u05bd\u05be\u0007", - "K\u0002\u0002\u05be\u05bf\u0007P\u0002\u0002\u05bf\u05c0\u0007W\u0002", - "\u0002\u05c0\u05c1\u0007U\u0002\u0002\u05c1\u0102\u0003\u0002\u0002", - "\u0002\u05c2\u05c3\u0007C\u0002\u0002\u05c3\u05c4\u0007U\u0002\u0002", - "\u05c4\u05c5\u0007V\u0002\u0002\u05c5\u05c6\u0007G\u0002\u0002\u05c6", - "\u05c7\u0007T\u0002\u0002\u05c7\u05c8\u0007K\u0002\u0002\u05c8\u05c9", - "\u0007U\u0002\u0002\u05c9\u05ca\u0007M\u0002\u0002\u05ca\u0104\u0003", - "\u0002\u0002\u0002\u05cb\u05cc\u0007U\u0002\u0002\u05cc\u05cd\u0007", - "N\u0002\u0002\u05cd\u05ce\u0007C\u0002\u0002\u05ce\u05cf\u0007U\u0002", - "\u0002\u05cf\u05d0\u0007J\u0002\u0002\u05d0\u0106\u0003\u0002\u0002", - "\u0002\u05d1\u05d2\u0007R\u0002\u0002\u05d2\u05d3\u0007G\u0002\u0002", - "\u05d3\u05d4\u0007T\u0002\u0002\u05d4\u05d5\u0007E\u0002\u0002\u05d5", - "\u05d6\u0007G\u0002\u0002\u05d6\u05d7\u0007P\u0002\u0002\u05d7\u05d8", - "\u0007V\u0002\u0002\u05d8\u0108\u0003\u0002\u0002\u0002\u05d9\u05da", - "\u0007F\u0002\u0002\u05da\u05db\u0007K\u0002\u0002\u05db\u05dc\u0007", - "X\u0002\u0002\u05dc\u010a\u0003\u0002\u0002\u0002\u05dd\u05de\u0007", - "V\u0002\u0002\u05de\u05df\u0007K\u0002\u0002\u05df\u05e0\u0007N\u0002", - "\u0002\u05e0\u05e1\u0007F\u0002\u0002\u05e1\u05e2\u0007G\u0002\u0002", - "\u05e2\u010c\u0003\u0002\u0002\u0002\u05e3\u05e4\u0007C\u0002\u0002", - "\u05e4\u05e5\u0007O\u0002\u0002\u05e5\u05e6\u0007R\u0002\u0002\u05e6", - "\u05e7\u0007G\u0002\u0002\u05e7\u05e8\u0007T\u0002\u0002\u05e8\u05e9", - "\u0007U\u0002\u0002\u05e9\u05ea\u0007C\u0002\u0002\u05ea\u05eb\u0007", - "P\u0002\u0002\u05eb\u05ec\u0007F\u0002\u0002\u05ec\u010e\u0003\u0002", - "\u0002\u0002\u05ed\u05ee\u0007R\u0002\u0002\u05ee\u05ef\u0007K\u0002", - "\u0002\u05ef\u05f0\u0007R\u0002\u0002\u05f0\u05f1\u0007G\u0002\u0002", - "\u05f1\u0110\u0003\u0002\u0002\u0002\u05f2\u05f3\u0007E\u0002\u0002", - "\u05f3\u05f4\u0007Q\u0002\u0002\u05f4\u05f5\u0007P\u0002\u0002\u05f5", - "\u05f6\u0007E\u0002\u0002\u05f6\u05f7\u0007C\u0002\u0002\u05f7\u05f8", - "\u0007V\u0002\u0002\u05f8\u05f9\u0007a\u0002\u0002\u05f9\u05fa\u0007", - "R\u0002\u0002\u05fa\u05fb\u0007K\u0002\u0002\u05fb\u05fc\u0007R\u0002", - "\u0002\u05fc\u05fd\u0007G\u0002\u0002\u05fd\u0112\u0003\u0002\u0002", - "\u0002\u05fe\u05ff\u0007J\u0002\u0002\u05ff\u0600\u0007C\u0002\u0002", - "\u0600\u0601\u0007V\u0002\u0002\u0601\u0114\u0003\u0002\u0002\u0002", - "\u0602\u0603\u0007R\u0002\u0002\u0603\u0604\u0007G\u0002\u0002\u0604", - "\u0605\u0007T\u0002\u0002\u0605\u0606\u0007E\u0002\u0002\u0606\u0607", - "\u0007G\u0002\u0002\u0607\u0608\u0007P\u0002\u0002\u0608\u0609\u0007", - "V\u0002\u0002\u0609\u060a\u0007N\u0002\u0002\u060a\u060b\u0007K\u0002", - "\u0002\u060b\u060c\u0007V\u0002\u0002\u060c\u0116\u0003\u0002\u0002", - "\u0002\u060d\u060e\u0007D\u0002\u0002\u060e\u060f\u0007W\u0002\u0002", - "\u060f\u0610\u0007E\u0002\u0002\u0610\u0611\u0007M\u0002\u0002\u0611", - "\u0612\u0007G\u0002\u0002\u0612\u0613\u0007V\u0002\u0002\u0613\u0118", - "\u0003\u0002\u0002\u0002\u0614\u0615\u0007Q\u0002\u0002\u0615\u0616", - "\u0007W\u0002\u0002\u0616\u0617\u0007V\u0002\u0002\u0617\u011a\u0003", - "\u0002\u0002\u0002\u0618\u0619\u0007Q\u0002\u0002\u0619\u061a\u0007", - "H\u0002\u0002\u061a\u011c\u0003\u0002\u0002\u0002\u061b\u061c\u0007", - "U\u0002\u0002\u061c\u061d\u0007Q\u0002\u0002\u061d\u061e\u0007T\u0002", - "\u0002\u061e\u061f\u0007V\u0002\u0002\u061f\u011e\u0003\u0002\u0002", - "\u0002\u0620\u0621\u0007E\u0002\u0002\u0621\u0622\u0007N\u0002\u0002", - "\u0622\u0623\u0007W\u0002\u0002\u0623\u0624\u0007U\u0002\u0002\u0624", - "\u0625\u0007V\u0002\u0002\u0625\u0626\u0007G\u0002\u0002\u0626\u0627", - "\u0007T\u0002\u0002\u0627\u0120\u0003\u0002\u0002\u0002\u0628\u0629", - "\u0007F\u0002\u0002\u0629\u062a\u0007K\u0002\u0002\u062a\u062b\u0007", - "U\u0002\u0002\u062b\u062c\u0007V\u0002\u0002\u062c\u062d\u0007T\u0002", - "\u0002\u062d\u062e\u0007K\u0002\u0002\u062e\u062f\u0007D\u0002\u0002", - "\u062f\u0630\u0007W\u0002\u0002\u0630\u0631\u0007V\u0002\u0002\u0631", - "\u0632\u0007G\u0002\u0002\u0632\u0122\u0003\u0002\u0002\u0002\u0633", - "\u0634\u0007Q\u0002\u0002\u0634\u0635\u0007X\u0002\u0002\u0635\u0636", - "\u0007G\u0002\u0002\u0636\u0637\u0007T\u0002\u0002\u0637\u0638\u0007", - "Y\u0002\u0002\u0638\u0639\u0007T\u0002\u0002\u0639\u063a\u0007K\u0002", - "\u0002\u063a\u063b\u0007V\u0002\u0002\u063b\u063c\u0007G\u0002\u0002", - "\u063c\u0124\u0003\u0002\u0002\u0002\u063d\u063e\u0007V\u0002\u0002", - "\u063e\u063f\u0007T\u0002\u0002\u063f\u0640\u0007C\u0002\u0002\u0640", - "\u0641\u0007P\u0002\u0002\u0641\u0642\u0007U\u0002\u0002\u0642\u0643", - "\u0007H\u0002\u0002\u0643\u0644\u0007Q\u0002\u0002\u0644\u0645\u0007", - "T\u0002\u0002\u0645\u0646\u0007O\u0002\u0002\u0646\u0126\u0003\u0002", - "\u0002\u0002\u0647\u0648\u0007T\u0002\u0002\u0648\u0649\u0007G\u0002", - "\u0002\u0649\u064a\u0007F\u0002\u0002\u064a\u064b\u0007W\u0002\u0002", - "\u064b\u064c\u0007E\u0002\u0002\u064c\u064d\u0007G\u0002\u0002\u064d", - "\u0128\u0003\u0002\u0002\u0002\u064e\u064f\u0007W\u0002\u0002\u064f", - "\u0650\u0007U\u0002\u0002\u0650\u0651\u0007K\u0002\u0002\u0651\u0652", - "\u0007P\u0002\u0002\u0652\u0653\u0007I\u0002\u0002\u0653\u012a\u0003", - "\u0002\u0002\u0002\u0654\u0655\u0007U\u0002\u0002\u0655\u0656\u0007", - "G\u0002\u0002\u0656\u0657\u0007T\u0002\u0002\u0657\u0658\u0007F\u0002", - "\u0002\u0658\u0659\u0007G\u0002\u0002\u0659\u012c\u0003\u0002\u0002", - "\u0002\u065a\u065b\u0007U\u0002\u0002\u065b\u065c\u0007G\u0002\u0002", - "\u065c\u065d\u0007T\u0002\u0002\u065d\u065e\u0007F\u0002\u0002\u065e", - "\u065f\u0007G\u0002\u0002\u065f\u0660\u0007R\u0002\u0002\u0660\u0661", - "\u0007T\u0002\u0002\u0661\u0662\u0007Q\u0002\u0002\u0662\u0663\u0007", - "R\u0002\u0002\u0663\u0664\u0007G\u0002\u0002\u0664\u0665\u0007T\u0002", - "\u0002\u0665\u0666\u0007V\u0002\u0002\u0666\u0667\u0007K\u0002\u0002", - "\u0667\u0668\u0007G\u0002\u0002\u0668\u0669\u0007U\u0002\u0002\u0669", - "\u012e\u0003\u0002\u0002\u0002\u066a\u066b\u0007T\u0002\u0002\u066b", - "\u066c\u0007G\u0002\u0002\u066c\u066d\u0007E\u0002\u0002\u066d\u066e", - "\u0007Q\u0002\u0002\u066e\u066f\u0007T\u0002\u0002\u066f\u0670\u0007", - "F\u0002\u0002\u0670\u0671\u0007T\u0002\u0002\u0671\u0672\u0007G\u0002", - "\u0002\u0672\u0673\u0007C\u0002\u0002\u0673\u0674\u0007F\u0002\u0002", - "\u0674\u0675\u0007G\u0002\u0002\u0675\u0676\u0007T\u0002\u0002\u0676", - "\u0130\u0003\u0002\u0002\u0002\u0677\u0678\u0007T\u0002\u0002\u0678", - "\u0679\u0007G\u0002\u0002\u0679\u067a\u0007E\u0002\u0002\u067a\u067b", - "\u0007Q\u0002\u0002\u067b\u067c\u0007T\u0002\u0002\u067c\u067d\u0007", - "F\u0002\u0002\u067d\u067e\u0007Y\u0002\u0002\u067e\u067f\u0007T\u0002", - "\u0002\u067f\u0680\u0007K\u0002\u0002\u0680\u0681\u0007V\u0002\u0002", - "\u0681\u0682\u0007G\u0002\u0002\u0682\u0683\u0007T\u0002\u0002\u0683", - "\u0132\u0003\u0002\u0002\u0002\u0684\u0685\u0007F\u0002\u0002\u0685", - "\u0686\u0007G\u0002\u0002\u0686\u0687\u0007N\u0002\u0002\u0687\u0688", - "\u0007K\u0002\u0002\u0688\u0689\u0007O\u0002\u0002\u0689\u068a\u0007", - "K\u0002\u0002\u068a\u068b\u0007V\u0002\u0002\u068b\u068c\u0007G\u0002", - "\u0002\u068c\u068d\u0007F\u0002\u0002\u068d\u0134\u0003\u0002\u0002", - "\u0002\u068e\u068f\u0007H\u0002\u0002\u068f\u0690\u0007K\u0002\u0002", - "\u0690\u0691\u0007G\u0002\u0002\u0691\u0692\u0007N\u0002\u0002\u0692", - "\u0693\u0007F\u0002\u0002\u0693\u0694\u0007U\u0002\u0002\u0694\u0136", - "\u0003\u0002\u0002\u0002\u0695\u0696\u0007V\u0002\u0002\u0696\u0697", - "\u0007G\u0002\u0002\u0697\u0698\u0007T\u0002\u0002\u0698\u0699\u0007", - "O\u0002\u0002\u0699\u069a\u0007K\u0002\u0002\u069a\u069b\u0007P\u0002", - "\u0002\u069b\u069c\u0007C\u0002\u0002\u069c\u069d\u0007V\u0002\u0002", - "\u069d\u069e\u0007G\u0002\u0002\u069e\u069f\u0007F\u0002\u0002\u069f", - "\u0138\u0003\u0002\u0002\u0002\u06a0\u06a1\u0007E\u0002\u0002\u06a1", - "\u06a2\u0007Q\u0002\u0002\u06a2\u06a3\u0007N\u0002\u0002\u06a3\u06a4", - "\u0007N\u0002\u0002\u06a4\u06a5\u0007G\u0002\u0002\u06a5\u06a6\u0007", - "E\u0002\u0002\u06a6\u06a7\u0007V\u0002\u0002\u06a7\u06a8\u0007K\u0002", - "\u0002\u06a8\u06a9\u0007Q\u0002\u0002\u06a9\u06aa\u0007P\u0002\u0002", - "\u06aa\u013a\u0003\u0002\u0002\u0002\u06ab\u06ac\u0007K\u0002\u0002", - "\u06ac\u06ad\u0007V\u0002\u0002\u06ad\u06ae\u0007G\u0002\u0002\u06ae", - "\u06af\u0007O\u0002\u0002\u06af\u06b0\u0007U\u0002\u0002\u06b0\u013c", - "\u0003\u0002\u0002\u0002\u06b1\u06b2\u0007M\u0002\u0002\u06b2\u06b3", - "\u0007G\u0002\u0002\u06b3\u06b4\u0007[\u0002\u0002\u06b4\u06b5\u0007", - "U\u0002\u0002\u06b5\u013e\u0003\u0002\u0002\u0002\u06b6\u06b7\u0007", - "G\u0002\u0002\u06b7\u06b8\u0007U\u0002\u0002\u06b8\u06b9\u0007E\u0002", - "\u0002\u06b9\u06ba\u0007C\u0002\u0002\u06ba\u06bb\u0007R\u0002\u0002", - "\u06bb\u06bc\u0007G\u0002\u0002\u06bc\u06bd\u0007F\u0002\u0002\u06bd", - "\u0140\u0003\u0002\u0002\u0002\u06be\u06bf\u0007N\u0002\u0002\u06bf", - "\u06c0\u0007K\u0002\u0002\u06c0\u06c1\u0007P\u0002\u0002\u06c1\u06c2", - "\u0007G\u0002\u0002\u06c2\u06c3\u0007U\u0002\u0002\u06c3\u0142\u0003", - "\u0002\u0002\u0002\u06c4\u06c5\u0007U\u0002\u0002\u06c5\u06c6\u0007", - "G\u0002\u0002\u06c6\u06c7\u0007R\u0002\u0002\u06c7\u06c8\u0007C\u0002", - "\u0002\u06c8\u06c9\u0007T\u0002\u0002\u06c9\u06ca\u0007C\u0002\u0002", - "\u06ca\u06cb\u0007V\u0002\u0002\u06cb\u06cc\u0007G\u0002\u0002\u06cc", - "\u06cd\u0007F\u0002\u0002\u06cd\u0144\u0003\u0002\u0002\u0002\u06ce", - "\u06cf\u0007H\u0002\u0002\u06cf\u06d0\u0007W\u0002\u0002\u06d0\u06d1", - "\u0007P\u0002\u0002\u06d1\u06d2\u0007E\u0002\u0002\u06d2\u06d3\u0007", - "V\u0002\u0002\u06d3\u06d4\u0007K\u0002\u0002\u06d4\u06d5\u0007Q\u0002", - "\u0002\u06d5\u06d6\u0007P\u0002\u0002\u06d6\u0146\u0003\u0002\u0002", - "\u0002\u06d7\u06d8\u0007G\u0002\u0002\u06d8\u06d9\u0007Z\u0002\u0002", - "\u06d9\u06da\u0007V\u0002\u0002\u06da\u06db\u0007G\u0002\u0002\u06db", - "\u06dc\u0007P\u0002\u0002\u06dc\u06dd\u0007F\u0002\u0002\u06dd\u06de", - "\u0007G\u0002\u0002\u06de\u06df\u0007F\u0002\u0002\u06df\u0148\u0003", - "\u0002\u0002\u0002\u06e0\u06e1\u0007T\u0002\u0002\u06e1\u06e2\u0007", - "G\u0002\u0002\u06e2\u06e3\u0007H\u0002\u0002\u06e3\u06e4\u0007T\u0002", - "\u0002\u06e4\u06e5\u0007G\u0002\u0002\u06e5\u06e6\u0007U\u0002\u0002", - "\u06e6\u06e7\u0007J\u0002\u0002\u06e7\u014a\u0003\u0002\u0002\u0002", - "\u06e8\u06e9\u0007E\u0002\u0002\u06e9\u06ea\u0007N\u0002\u0002\u06ea", - "\u06eb\u0007G\u0002\u0002\u06eb\u06ec\u0007C\u0002\u0002\u06ec\u06ed", - "\u0007T\u0002\u0002\u06ed\u014c\u0003\u0002\u0002\u0002\u06ee\u06ef", - "\u0007E\u0002\u0002\u06ef\u06f0\u0007C\u0002\u0002\u06f0\u06f1\u0007", - "E\u0002\u0002\u06f1\u06f2\u0007J\u0002\u0002\u06f2\u06f3\u0007G\u0002", - "\u0002\u06f3\u014e\u0003\u0002\u0002\u0002\u06f4\u06f5\u0007W\u0002", - "\u0002\u06f5\u06f6\u0007P\u0002\u0002\u06f6\u06f7\u0007E\u0002\u0002", - "\u06f7\u06f8\u0007C\u0002\u0002\u06f8\u06f9\u0007E\u0002\u0002\u06f9", - "\u06fa\u0007J\u0002\u0002\u06fa\u06fb\u0007G\u0002\u0002\u06fb\u0150", - "\u0003\u0002\u0002\u0002\u06fc\u06fd\u0007N\u0002\u0002\u06fd\u06fe", - "\u0007C\u0002\u0002\u06fe\u06ff\u0007\\\u0002\u0002\u06ff\u0700\u0007", - "[\u0002\u0002\u0700\u0152\u0003\u0002\u0002\u0002\u0701\u0702\u0007", - "H\u0002\u0002\u0702\u0703\u0007Q\u0002\u0002\u0703\u0704\u0007T\u0002", - "\u0002\u0704\u0705\u0007O\u0002\u0002\u0705\u0706\u0007C\u0002\u0002", - "\u0706\u0707\u0007V\u0002\u0002\u0707\u0708\u0007V\u0002\u0002\u0708", - "\u0709\u0007G\u0002\u0002\u0709\u070a\u0007F\u0002\u0002\u070a\u0154", - "\u0003\u0002\u0002\u0002\u070b\u070c\u0007I\u0002\u0002\u070c\u070d", - "\u0007N\u0002\u0002\u070d\u070e\u0007Q\u0002\u0002\u070e\u070f\u0007", - "D\u0002\u0002\u070f\u0710\u0007C\u0002\u0002\u0710\u0711\u0007N\u0002", - "\u0002\u0711\u0156\u0003\u0002\u0002\u0002\u0712\u0713\u0007V\u0002", - "\u0002\u0713\u0714\u0007G\u0002\u0002\u0714\u0715\u0007O\u0002\u0002", - "\u0715\u0716\u0007R\u0002\u0002\u0716\u0717\u0007Q\u0002\u0002\u0717", - "\u0718\u0007T\u0002\u0002\u0718\u0719\u0007C\u0002\u0002\u0719\u071a", - "\u0007T\u0002\u0002\u071a\u071b\u0007[\u0002\u0002\u071b\u0158\u0003", - "\u0002\u0002\u0002\u071c\u071d\u0007Q\u0002\u0002\u071d\u071e\u0007", - "R\u0002\u0002\u071e\u071f\u0007V\u0002\u0002\u071f\u0720\u0007K\u0002", - "\u0002\u0720\u0721\u0007Q\u0002\u0002\u0721\u0722\u0007P\u0002\u0002", - "\u0722\u0723\u0007U\u0002\u0002\u0723\u015a\u0003\u0002\u0002\u0002", - "\u0724\u0725\u0007W\u0002\u0002\u0725\u0726\u0007P\u0002\u0002\u0726", - "\u0727\u0007U\u0002\u0002\u0727\u0728\u0007G\u0002\u0002\u0728\u0729", - "\u0007V\u0002\u0002\u0729\u015c\u0003\u0002\u0002\u0002\u072a\u072b", - "\u0007V\u0002\u0002\u072b\u072c\u0007D\u0002\u0002\u072c\u072d\u0007", - "N\u0002\u0002\u072d\u072e\u0007R\u0002\u0002\u072e\u072f\u0007T\u0002", - "\u0002\u072f\u0730\u0007Q\u0002\u0002\u0730\u0731\u0007R\u0002\u0002", - "\u0731\u0732\u0007G\u0002\u0002\u0732\u0733\u0007T\u0002\u0002\u0733", - "\u0734\u0007V\u0002\u0002\u0734\u0735\u0007K\u0002\u0002\u0735\u0736", - "\u0007G\u0002\u0002\u0736\u0737\u0007U\u0002\u0002\u0737\u015e\u0003", - "\u0002\u0002\u0002\u0738\u0739\u0007F\u0002\u0002\u0739\u073a\u0007", - "D\u0002\u0002\u073a\u073b\u0007R\u0002\u0002\u073b\u073c\u0007T\u0002", - "\u0002\u073c\u073d\u0007Q\u0002\u0002\u073d\u073e\u0007R\u0002\u0002", - "\u073e\u073f\u0007G\u0002\u0002\u073f\u0740\u0007T\u0002\u0002\u0740", - "\u0741\u0007V\u0002\u0002\u0741\u0742\u0007K\u0002\u0002\u0742\u0743", - "\u0007G\u0002\u0002\u0743\u0744\u0007U\u0002\u0002\u0744\u0160\u0003", - "\u0002\u0002\u0002\u0745\u0746\u0007D\u0002\u0002\u0746\u0747\u0007", - "W\u0002\u0002\u0747\u0748\u0007E\u0002\u0002\u0748\u0749\u0007M\u0002", - "\u0002\u0749\u074a\u0007G\u0002\u0002\u074a\u074b\u0007V\u0002\u0002", - "\u074b\u074c\u0007U\u0002\u0002\u074c\u0162\u0003\u0002\u0002\u0002", - "\u074d\u074e\u0007U\u0002\u0002\u074e\u074f\u0007M\u0002\u0002\u074f", - "\u0750\u0007G\u0002\u0002\u0750\u0751\u0007Y\u0002\u0002\u0751\u0752", - "\u0007G\u0002\u0002\u0752\u0753\u0007F\u0002\u0002\u0753\u0164\u0003", - "\u0002\u0002\u0002\u0754\u0755\u0007U\u0002\u0002\u0755\u0756\u0007", - "V\u0002\u0002\u0756\u0757\u0007Q\u0002\u0002\u0757\u0758\u0007T\u0002", - "\u0002\u0758\u0759\u0007G\u0002\u0002\u0759\u075a\u0007F\u0002\u0002", - "\u075a\u0166\u0003\u0002\u0002\u0002\u075b\u075c\u0007F\u0002\u0002", - "\u075c\u075d\u0007K\u0002\u0002\u075d\u075e\u0007T\u0002\u0002\u075e", - "\u075f\u0007G\u0002\u0002\u075f\u0760\u0007E\u0002\u0002\u0760\u0761", - "\u0007V\u0002\u0002\u0761\u0762\u0007Q\u0002\u0002\u0762\u0763\u0007", - "T\u0002\u0002\u0763\u0764\u0007K\u0002\u0002\u0764\u0765\u0007G\u0002", - "\u0002\u0765\u0766\u0007U\u0002\u0002\u0766\u0168\u0003\u0002\u0002", - "\u0002\u0767\u0768\u0007N\u0002\u0002\u0768\u0769\u0007Q\u0002\u0002", - "\u0769\u076a\u0007E\u0002\u0002\u076a\u076b\u0007C\u0002\u0002\u076b", - "\u076c\u0007V\u0002\u0002\u076c\u076d\u0007K\u0002\u0002\u076d\u076e", - "\u0007Q\u0002\u0002\u076e\u076f\u0007P\u0002\u0002\u076f\u016a\u0003", - "\u0002\u0002\u0002\u0770\u0771\u0007G\u0002\u0002\u0771\u0772\u0007", - "Z\u0002\u0002\u0772\u0773\u0007E\u0002\u0002\u0773\u0774\u0007J\u0002", - "\u0002\u0774\u0775\u0007C\u0002\u0002\u0775\u0776\u0007P\u0002\u0002", - "\u0776\u0777\u0007I\u0002\u0002\u0777\u0778\u0007G\u0002\u0002\u0778", - "\u016c\u0003\u0002\u0002\u0002\u0779\u077a\u0007C\u0002\u0002\u077a", - "\u077b\u0007T\u0002\u0002\u077b\u077c\u0007E\u0002\u0002\u077c\u077d", - "\u0007J\u0002\u0002\u077d\u077e\u0007K\u0002\u0002\u077e\u077f\u0007", - "X\u0002\u0002\u077f\u0780\u0007G\u0002\u0002\u0780\u016e\u0003\u0002", - "\u0002\u0002\u0781\u0782\u0007W\u0002\u0002\u0782\u0783\u0007P\u0002", - "\u0002\u0783\u0784\u0007C\u0002\u0002\u0784\u0785\u0007T\u0002\u0002", - "\u0785\u0786\u0007E\u0002\u0002\u0786\u0787\u0007J\u0002\u0002\u0787", - "\u0788\u0007K\u0002\u0002\u0788\u0789\u0007X\u0002\u0002\u0789\u078a", - "\u0007G\u0002\u0002\u078a\u0170\u0003\u0002\u0002\u0002\u078b\u078c", - "\u0007H\u0002\u0002\u078c\u078d\u0007K\u0002\u0002\u078d\u078e\u0007", - "N\u0002\u0002\u078e\u078f\u0007G\u0002\u0002\u078f\u0790\u0007H\u0002", - "\u0002\u0790\u0791\u0007Q\u0002\u0002\u0791\u0792\u0007T\u0002\u0002", - "\u0792\u0793\u0007O\u0002\u0002\u0793\u0794\u0007C\u0002\u0002\u0794", - "\u0795\u0007V\u0002\u0002\u0795\u0172\u0003\u0002\u0002\u0002\u0796", - "\u0797\u0007V\u0002\u0002\u0797\u0798\u0007Q\u0002\u0002\u0798\u0799", - "\u0007W\u0002\u0002\u0799\u079a\u0007E\u0002\u0002\u079a\u079b\u0007", - "J\u0002\u0002\u079b\u0174\u0003\u0002\u0002\u0002\u079c\u079d\u0007", - "E\u0002\u0002\u079d\u079e\u0007Q\u0002\u0002\u079e\u079f\u0007O\u0002", - "\u0002\u079f\u07a0\u0007R\u0002\u0002\u07a0\u07a1\u0007C\u0002\u0002", - "\u07a1\u07a2\u0007E\u0002\u0002\u07a2\u07a3\u0007V\u0002\u0002\u07a3", - "\u0176\u0003\u0002\u0002\u0002\u07a4\u07a5\u0007E\u0002\u0002\u07a5", - "\u07a6\u0007Q\u0002\u0002\u07a6\u07a7\u0007P\u0002\u0002\u07a7\u07a8", - "\u0007E\u0002\u0002\u07a8\u07a9\u0007C\u0002\u0002\u07a9\u07aa\u0007", - "V\u0002\u0002\u07aa\u07ab\u0007G\u0002\u0002\u07ab\u07ac\u0007P\u0002", - "\u0002\u07ac\u07ad\u0007C\u0002\u0002\u07ad\u07ae\u0007V\u0002\u0002", - "\u07ae\u07af\u0007G\u0002\u0002\u07af\u0178\u0003\u0002\u0002\u0002", - "\u07b0\u07b1\u0007E\u0002\u0002\u07b1\u07b2\u0007J\u0002\u0002\u07b2", - "\u07b3\u0007C\u0002\u0002\u07b3\u07b4\u0007P\u0002\u0002\u07b4\u07b5", - "\u0007I\u0002\u0002\u07b5\u07b6\u0007G\u0002\u0002\u07b6\u017a\u0003", - "\u0002\u0002\u0002\u07b7\u07b8\u0007E\u0002\u0002\u07b8\u07b9\u0007", - "C\u0002\u0002\u07b9\u07ba\u0007U\u0002\u0002\u07ba\u07bb\u0007E\u0002", - "\u0002\u07bb\u07bc\u0007C\u0002\u0002\u07bc\u07bd\u0007F\u0002\u0002", - "\u07bd\u07be\u0007G\u0002\u0002\u07be\u017c\u0003\u0002\u0002\u0002", - "\u07bf\u07c0\u0007T\u0002\u0002\u07c0\u07c1\u0007G\u0002\u0002\u07c1", - "\u07c2\u0007U\u0002\u0002\u07c2\u07c3\u0007V\u0002\u0002\u07c3\u07c4", - "\u0007T\u0002\u0002\u07c4\u07c5\u0007K\u0002\u0002\u07c5\u07c6\u0007", - "E\u0002\u0002\u07c6\u07c7\u0007V\u0002\u0002\u07c7\u017e\u0003\u0002", - "\u0002\u0002\u07c8\u07c9\u0007E\u0002\u0002\u07c9\u07ca\u0007N\u0002", - "\u0002\u07ca\u07cb\u0007W\u0002\u0002\u07cb\u07cc\u0007U\u0002\u0002", - "\u07cc\u07cd\u0007V\u0002\u0002\u07cd\u07ce\u0007G\u0002\u0002\u07ce", - "\u07cf\u0007T\u0002\u0002\u07cf\u07d0\u0007G\u0002\u0002\u07d0\u07d1", - "\u0007F\u0002\u0002\u07d1\u0180\u0003\u0002\u0002\u0002\u07d2\u07d3", - "\u0007U\u0002\u0002\u07d3\u07d4\u0007Q\u0002\u0002\u07d4\u07d5\u0007", - "T\u0002\u0002\u07d5\u07d6\u0007V\u0002\u0002\u07d6\u07d7\u0007G\u0002", - "\u0002\u07d7\u07d8\u0007F\u0002\u0002\u07d8\u0182\u0003\u0002\u0002", - "\u0002\u07d9\u07da\u0007R\u0002\u0002\u07da\u07db\u0007W\u0002\u0002", - "\u07db\u07dc\u0007T\u0002\u0002\u07dc\u07dd\u0007I\u0002\u0002\u07dd", - "\u07de\u0007G\u0002\u0002\u07de\u0184\u0003\u0002\u0002\u0002\u07df", - "\u07e0\u0007K\u0002\u0002\u07e0\u07e1\u0007P\u0002\u0002\u07e1\u07e2", - "\u0007R\u0002\u0002\u07e2\u07e3\u0007W\u0002\u0002\u07e3\u07e4\u0007", - "V\u0002\u0002\u07e4\u07e5\u0007H\u0002\u0002\u07e5\u07e6\u0007Q\u0002", - "\u0002\u07e6\u07e7\u0007T\u0002\u0002\u07e7\u07e8\u0007O\u0002\u0002", - "\u07e8\u07e9\u0007C\u0002\u0002\u07e9\u07ea\u0007V\u0002\u0002\u07ea", - "\u0186\u0003\u0002\u0002\u0002\u07eb\u07ec\u0007Q\u0002\u0002\u07ec", - "\u07ed\u0007W\u0002\u0002\u07ed\u07ee\u0007V\u0002\u0002\u07ee\u07ef", - "\u0007R\u0002\u0002\u07ef\u07f0\u0007W\u0002\u0002\u07f0\u07f1\u0007", - "V\u0002\u0002\u07f1\u07f2\u0007H\u0002\u0002\u07f2\u07f3\u0007Q\u0002", - "\u0002\u07f3\u07f4\u0007T\u0002\u0002\u07f4\u07f5\u0007O\u0002\u0002", - "\u07f5\u07f6\u0007C\u0002\u0002\u07f6\u07f7\u0007V\u0002\u0002\u07f7", - "\u0188\u0003\u0002\u0002\u0002\u07f8\u07f9\u0007F\u0002\u0002\u07f9", - "\u07fa\u0007C\u0002\u0002\u07fa\u07fb\u0007V\u0002\u0002\u07fb\u07fc", - "\u0007C\u0002\u0002\u07fc\u07fd\u0007D\u0002\u0002\u07fd\u07fe\u0007", - "C\u0002\u0002\u07fe\u07ff\u0007U\u0002\u0002\u07ff\u0800\u0007G\u0002", - "\u0002\u0800\u018a\u0003\u0002\u0002\u0002\u0801\u0802\u0007F\u0002", - "\u0002\u0802\u0803\u0007C\u0002\u0002\u0803\u0804\u0007V\u0002\u0002", - "\u0804\u0805\u0007C\u0002\u0002\u0805\u0806\u0007D\u0002\u0002\u0806", - "\u0807\u0007C\u0002\u0002\u0807\u0808\u0007U\u0002\u0002\u0808\u0809", - "\u0007G\u0002\u0002\u0809\u080a\u0007U\u0002\u0002\u080a\u018c\u0003", - "\u0002\u0002\u0002\u080b\u080c\u0007F\u0002\u0002\u080c\u080d\u0007", - "H\u0002\u0002\u080d\u080e\u0007U\u0002\u0002\u080e\u018e\u0003\u0002", - "\u0002\u0002\u080f\u0810\u0007V\u0002\u0002\u0810\u0811\u0007T\u0002", - "\u0002\u0811\u0812\u0007W\u0002\u0002\u0812\u0813\u0007P\u0002\u0002", - "\u0813\u0814\u0007E\u0002\u0002\u0814\u0815\u0007C\u0002\u0002\u0815", - "\u0816\u0007V\u0002\u0002\u0816\u0817\u0007G\u0002\u0002\u0817\u0190", - "\u0003\u0002\u0002\u0002\u0818\u0819\u0007C\u0002\u0002\u0819\u081a", - "\u0007P\u0002\u0002\u081a\u081b\u0007C\u0002\u0002\u081b\u081c\u0007", - "N\u0002\u0002\u081c\u081d\u0007[\u0002\u0002\u081d\u081e\u0007\\\u0002", - "\u0002\u081e\u081f\u0007G\u0002\u0002\u081f\u0192\u0003\u0002\u0002", - "\u0002\u0820\u0821\u0007E\u0002\u0002\u0821\u0822\u0007Q\u0002\u0002", - "\u0822\u0823\u0007O\u0002\u0002\u0823\u0824\u0007R\u0002\u0002\u0824", - "\u0825\u0007W\u0002\u0002\u0825\u0826\u0007V\u0002\u0002\u0826\u0827", - "\u0007G\u0002\u0002\u0827\u0194\u0003\u0002\u0002\u0002\u0828\u0829", - "\u0007N\u0002\u0002\u0829\u082a\u0007K\u0002\u0002\u082a\u082b\u0007", - "U\u0002\u0002\u082b\u082c\u0007V\u0002\u0002\u082c\u0196\u0003\u0002", - "\u0002\u0002\u082d\u082e\u0007U\u0002\u0002\u082e\u082f\u0007V\u0002", - "\u0002\u082f\u0830\u0007C\u0002\u0002\u0830\u0831\u0007V\u0002\u0002", - "\u0831\u0832\u0007K\u0002\u0002\u0832\u0833\u0007U\u0002\u0002\u0833", - "\u0834\u0007V\u0002\u0002\u0834\u0835\u0007K\u0002\u0002\u0835\u0836", - "\u0007E\u0002\u0002\u0836\u0837\u0007U\u0002\u0002\u0837\u0198\u0003", - "\u0002\u0002\u0002\u0838\u0839\u0007R\u0002\u0002\u0839\u083a\u0007", - "C\u0002\u0002\u083a\u083b\u0007T\u0002\u0002\u083b\u083c\u0007V\u0002", - "\u0002\u083c\u083d\u0007K\u0002\u0002\u083d\u083e\u0007V\u0002\u0002", - "\u083e\u083f\u0007K\u0002\u0002\u083f\u0840\u0007Q\u0002\u0002\u0840", - "\u0841\u0007P\u0002\u0002\u0841\u0842\u0007G\u0002\u0002\u0842\u0843", - "\u0007F\u0002\u0002\u0843\u019a\u0003\u0002\u0002\u0002\u0844\u0845", - "\u0007G\u0002\u0002\u0845\u0846\u0007Z\u0002\u0002\u0846\u0847\u0007", - "V\u0002\u0002\u0847\u0848\u0007G\u0002\u0002\u0848\u0849\u0007T\u0002", - "\u0002\u0849\u084a\u0007P\u0002\u0002\u084a\u084b\u0007C\u0002\u0002", - "\u084b\u084c\u0007N\u0002\u0002\u084c\u019c\u0003\u0002\u0002\u0002", - "\u084d\u084e\u0007F\u0002\u0002\u084e\u084f\u0007G\u0002\u0002\u084f", - "\u0850\u0007H\u0002\u0002\u0850\u0851\u0007K\u0002\u0002\u0851\u0852", - "\u0007P\u0002\u0002\u0852\u0853\u0007G\u0002\u0002\u0853\u0854\u0007", - "F\u0002\u0002\u0854\u019e\u0003\u0002\u0002\u0002\u0855\u0856\u0007", - "T\u0002\u0002\u0856\u0857\u0007G\u0002\u0002\u0857\u0858\u0007X\u0002", - "\u0002\u0858\u0859\u0007Q\u0002\u0002\u0859\u085a\u0007M\u0002\u0002", - "\u085a\u085b\u0007G\u0002\u0002\u085b\u01a0\u0003\u0002\u0002\u0002", - "\u085c\u085d\u0007I\u0002\u0002\u085d\u085e\u0007T\u0002\u0002\u085e", - "\u085f\u0007C\u0002\u0002\u085f\u0860\u0007P\u0002\u0002\u0860\u0861", - "\u0007V\u0002\u0002\u0861\u01a2\u0003\u0002\u0002\u0002\u0862\u0863", - "\u0007N\u0002\u0002\u0863\u0864\u0007Q\u0002\u0002\u0864\u0865\u0007", - "E\u0002\u0002\u0865\u0866\u0007M\u0002\u0002\u0866\u01a4\u0003\u0002", - "\u0002\u0002\u0867\u0868\u0007W\u0002\u0002\u0868\u0869\u0007P\u0002", - "\u0002\u0869\u086a\u0007N\u0002\u0002\u086a\u086b\u0007Q\u0002\u0002", - "\u086b\u086c\u0007E\u0002\u0002\u086c\u086d\u0007M\u0002\u0002\u086d", - "\u01a6\u0003\u0002\u0002\u0002\u086e\u086f\u0007O\u0002\u0002\u086f", - "\u0870\u0007U\u0002\u0002\u0870\u0871\u0007E\u0002\u0002\u0871\u0872", - "\u0007M\u0002\u0002\u0872\u01a8\u0003\u0002\u0002\u0002\u0873\u0874", - "\u0007T\u0002\u0002\u0874\u0875\u0007G\u0002\u0002\u0875\u0876\u0007", - "R\u0002\u0002\u0876\u0877\u0007C\u0002\u0002\u0877\u0878\u0007K\u0002", - "\u0002\u0878\u0879\u0007T\u0002\u0002\u0879\u01aa\u0003\u0002\u0002", - "\u0002\u087a\u087b\u0007T\u0002\u0002\u087b\u087c\u0007G\u0002\u0002", - "\u087c\u087d\u0007E\u0002\u0002\u087d\u087e\u0007Q\u0002\u0002\u087e", - "\u087f\u0007X\u0002\u0002\u087f\u0880\u0007G\u0002\u0002\u0880\u0881", - "\u0007T\u0002\u0002\u0881\u01ac\u0003\u0002\u0002\u0002\u0882\u0883", - "\u0007G\u0002\u0002\u0883\u0884\u0007Z\u0002\u0002\u0884\u0885\u0007", - "R\u0002\u0002\u0885\u0886\u0007Q\u0002\u0002\u0886\u0887\u0007T\u0002", - "\u0002\u0887\u0888\u0007V\u0002\u0002\u0888\u01ae\u0003\u0002\u0002", - "\u0002\u0889\u088a\u0007K\u0002\u0002\u088a\u088b\u0007O\u0002\u0002", - "\u088b\u088c\u0007R\u0002\u0002\u088c\u088d\u0007Q\u0002\u0002\u088d", - "\u088e\u0007T\u0002\u0002\u088e\u088f\u0007V\u0002\u0002\u088f\u01b0", - "\u0003\u0002\u0002\u0002\u0890\u0891\u0007N\u0002\u0002\u0891\u0892", - "\u0007Q\u0002\u0002\u0892\u0893\u0007C\u0002\u0002\u0893\u0894\u0007", - "F\u0002\u0002\u0894\u01b2\u0003\u0002\u0002\u0002\u0895\u0896\u0007", - "T\u0002\u0002\u0896\u0897\u0007Q\u0002\u0002\u0897\u0898\u0007N\u0002", - "\u0002\u0898\u0899\u0007G\u0002\u0002\u0899\u01b4\u0003\u0002\u0002", - "\u0002\u089a\u089b\u0007T\u0002\u0002\u089b\u089c\u0007Q\u0002\u0002", - "\u089c\u089d\u0007N\u0002\u0002\u089d\u089e\u0007G\u0002\u0002\u089e", - "\u089f\u0007U\u0002\u0002\u089f\u01b6\u0003\u0002\u0002\u0002\u08a0", - "\u08a1\u0007E\u0002\u0002\u08a1\u08a2\u0007Q\u0002\u0002\u08a2\u08a3", - "\u0007O\u0002\u0002\u08a3\u08a4\u0007R\u0002\u0002\u08a4\u08a5\u0007", - "C\u0002\u0002\u08a5\u08a6\u0007E\u0002\u0002\u08a6\u08a7\u0007V\u0002", - "\u0002\u08a7\u08a8\u0007K\u0002\u0002\u08a8\u08a9\u0007Q\u0002\u0002", - "\u08a9\u08aa\u0007P\u0002\u0002\u08aa\u08ab\u0007U\u0002\u0002\u08ab", - "\u01b8\u0003\u0002\u0002\u0002\u08ac\u08ad\u0007R\u0002\u0002\u08ad", - "\u08ae\u0007T\u0002\u0002\u08ae\u08af\u0007K\u0002\u0002\u08af\u08b0", - "\u0007P\u0002\u0002\u08b0\u08b1\u0007E\u0002\u0002\u08b1\u08b2\u0007", - "K\u0002\u0002\u08b2\u08b3\u0007R\u0002\u0002\u08b3\u08b4\u0007C\u0002", - "\u0002\u08b4\u08b5\u0007N\u0002\u0002\u08b5\u08b6\u0007U\u0002\u0002", - "\u08b6\u01ba\u0003\u0002\u0002\u0002\u08b7\u08b8\u0007V\u0002\u0002", - "\u08b8\u08b9\u0007T\u0002\u0002\u08b9\u08ba\u0007C\u0002\u0002\u08ba", - "\u08bb\u0007P\u0002\u0002\u08bb\u08bc\u0007U\u0002\u0002\u08bc\u08bd", - "\u0007C\u0002\u0002\u08bd\u08be\u0007E\u0002\u0002\u08be\u08bf\u0007", - "V\u0002\u0002\u08bf\u08c0\u0007K\u0002\u0002\u08c0\u08c1\u0007Q\u0002", - "\u0002\u08c1\u08c2\u0007P\u0002\u0002\u08c2\u08c3\u0007U\u0002\u0002", - "\u08c3\u01bc\u0003\u0002\u0002\u0002\u08c4\u08c5\u0007K\u0002\u0002", - "\u08c5\u08c6\u0007P\u0002\u0002\u08c6\u08c7\u0007F\u0002\u0002\u08c7", - "\u08c8\u0007G\u0002\u0002\u08c8\u08c9\u0007Z\u0002\u0002\u08c9\u01be", - "\u0003\u0002\u0002\u0002\u08ca\u08cb\u0007K\u0002\u0002\u08cb\u08cc", - "\u0007P\u0002\u0002\u08cc\u08cd\u0007F\u0002\u0002\u08cd\u08ce\u0007", - "G\u0002\u0002\u08ce\u08cf\u0007Z\u0002\u0002\u08cf\u08d0\u0007G\u0002", - "\u0002\u08d0\u08d1\u0007U\u0002\u0002\u08d1\u01c0\u0003\u0002\u0002", - "\u0002\u08d2\u08d3\u0007N\u0002\u0002\u08d3\u08d4\u0007Q\u0002\u0002", - "\u08d4\u08d5\u0007E\u0002\u0002\u08d5\u08d6\u0007M\u0002\u0002\u08d6", - "\u08d7\u0007U\u0002\u0002\u08d7\u01c2\u0003\u0002\u0002\u0002\u08d8", - "\u08d9\u0007Q\u0002\u0002\u08d9\u08da\u0007R\u0002\u0002\u08da\u08db", - "\u0007V\u0002\u0002\u08db\u08dc\u0007K\u0002\u0002\u08dc\u08dd\u0007", - "Q\u0002\u0002\u08dd\u08de\u0007P\u0002\u0002\u08de\u01c4\u0003\u0002", - "\u0002\u0002\u08df\u08e0\u0007C\u0002\u0002\u08e0\u08e1\u0007P\u0002", - "\u0002\u08e1\u08e2\u0007V\u0002\u0002\u08e2\u08e3\u0007K\u0002\u0002", - "\u08e3\u01c6\u0003\u0002\u0002\u0002\u08e4\u08e5\u0007N\u0002\u0002", - "\u08e5\u08e6\u0007Q\u0002\u0002\u08e6\u08e7\u0007E\u0002\u0002\u08e7", - "\u08e8\u0007C\u0002\u0002\u08e8\u08e9\u0007N\u0002\u0002\u08e9\u01c8", - "\u0003\u0002\u0002\u0002\u08ea\u08eb\u0007K\u0002\u0002\u08eb\u08ec", - "\u0007P\u0002\u0002\u08ec\u08ed\u0007R\u0002\u0002\u08ed\u08ee\u0007", - "C\u0002\u0002\u08ee\u08ef\u0007V\u0002\u0002\u08ef\u08f0\u0007J\u0002", - "\u0002\u08f0\u01ca\u0003\u0002\u0002\u0002\u08f1\u08f2\u0007Y\u0002", - "\u0002\u08f2\u08f3\u0007C\u0002\u0002\u08f3\u08f4\u0007V\u0002\u0002", - "\u08f4\u08f5\u0007G\u0002\u0002\u08f5\u08f6\u0007T\u0002\u0002\u08f6", - "\u08f7\u0007O\u0002\u0002\u08f7\u08f8\u0007C\u0002\u0002\u08f8\u08f9", - "\u0007T\u0002\u0002\u08f9\u08fa\u0007M\u0002\u0002\u08fa\u01cc\u0003", - "\u0002\u0002\u0002\u08fb\u08fc\u0007W\u0002\u0002\u08fc\u08fd\u0007", - "P\u0002\u0002\u08fd\u08fe\u0007P\u0002\u0002\u08fe\u08ff\u0007G\u0002", - "\u0002\u08ff\u0900\u0007U\u0002\u0002\u0900\u0901\u0007V\u0002\u0002", - "\u0901\u01ce\u0003\u0002\u0002\u0002\u0902\u0903\u0007O\u0002\u0002", - "\u0903\u0904\u0007C\u0002\u0002\u0904\u0905\u0007V\u0002\u0002\u0905", - "\u0906\u0007E\u0002\u0002\u0906\u0907\u0007J\u0002\u0002\u0907\u0908", - "\u0007a\u0002\u0002\u0908\u0909\u0007T\u0002\u0002\u0909\u090a\u0007", - "G\u0002\u0002\u090a\u090b\u0007E\u0002\u0002\u090b\u090c\u0007Q\u0002", - "\u0002\u090c\u090d\u0007I\u0002\u0002\u090d\u090e\u0007P\u0002\u0002", - "\u090e\u090f\u0007K\u0002\u0002\u090f\u0910\u0007\\\u0002\u0002\u0910", - "\u0911\u0007G\u0002\u0002\u0911\u01d0\u0003\u0002\u0002\u0002\u0912", - "\u0913\u0007O\u0002\u0002\u0913\u0914\u0007G\u0002\u0002\u0914\u0915", - "\u0007C\u0002\u0002\u0915\u0916\u0007U\u0002\u0002\u0916\u0917\u0007", - "W\u0002\u0002\u0917\u0918\u0007T\u0002\u0002\u0918\u0919\u0007G\u0002", - "\u0002\u0919\u091a\u0007U\u0002\u0002\u091a\u01d2\u0003\u0002\u0002", - "\u0002\u091b\u091c\u0007Q\u0002\u0002\u091c\u091d\u0007P\u0002\u0002", - "\u091d\u091e\u0007G\u0002\u0002\u091e\u01d4\u0003\u0002\u0002\u0002", - "\u091f\u0920\u0007R\u0002\u0002\u0920\u0921\u0007G\u0002\u0002\u0921", - "\u0922\u0007T\u0002\u0002\u0922\u01d6\u0003\u0002\u0002\u0002\u0923", - "\u0924\u0007O\u0002\u0002\u0924\u0925\u0007C\u0002\u0002\u0925\u0926", - "\u0007V\u0002\u0002\u0926\u0927\u0007E\u0002\u0002\u0927\u0928\u0007", - "J\u0002\u0002\u0928\u01d8\u0003\u0002\u0002\u0002\u0929\u092a\u0007", - "U\u0002\u0002\u092a\u092b\u0007M\u0002\u0002\u092b\u092c\u0007K\u0002", - "\u0002\u092c\u092d\u0007R\u0002\u0002\u092d\u092e\u00073\u0002\u0002", - "\u092e\u01da\u0003\u0002\u0002\u0002\u092f\u0930\u0007P\u0002\u0002", - "\u0930\u0931\u0007G\u0002\u0002\u0931\u0932\u0007Z\u0002\u0002\u0932", - "\u0933\u0007V\u0002\u0002\u0933\u01dc\u0003\u0002\u0002\u0002\u0934", - "\u0935\u0007R\u0002\u0002\u0935\u0936\u0007C\u0002\u0002\u0936\u0937", - "\u0007U\u0002\u0002\u0937\u0938\u0007V\u0002\u0002\u0938\u01de\u0003", - "\u0002\u0002\u0002\u0939\u093a\u0007R\u0002\u0002\u093a\u093b\u0007", - "C\u0002\u0002\u093b\u093c\u0007V\u0002\u0002\u093c\u093d\u0007V\u0002", - "\u0002\u093d\u093e\u0007G\u0002\u0002\u093e\u093f\u0007T\u0002\u0002", - "\u093f\u0940\u0007P\u0002\u0002\u0940\u01e0\u0003\u0002\u0002\u0002", - "\u0941\u0942\u0007Y\u0002\u0002\u0942\u0943\u0007K\u0002\u0002\u0943", - "\u0944\u0007V\u0002\u0002\u0944\u0945\u0007J\u0002\u0002\u0945\u0946", - "\u0007K\u0002\u0002\u0946\u0947\u0007P\u0002\u0002\u0947\u01e2\u0003", - "\u0002\u0002\u0002\u0948\u0949\u0007F\u0002\u0002\u0949\u094a\u0007", - "G\u0002\u0002\u094a\u094b\u0007H\u0002\u0002\u094b\u094c\u0007K\u0002", - "\u0002\u094c\u094d\u0007P\u0002\u0002\u094d\u094e\u0007G\u0002\u0002", - "\u094e\u01e4\u0003\u0002\u0002\u0002\u094f\u0950\u0007D\u0002\u0002", - "\u0950\u0951\u0007K\u0002\u0002\u0951\u0952\u0007I\u0002\u0002\u0952", - "\u0953\u0007K\u0002\u0002\u0953\u0954\u0007P\u0002\u0002\u0954\u0955", - "\u0007V\u0002\u0002\u0955\u0956\u0007a\u0002\u0002\u0956\u0957\u0007", - "N\u0002\u0002\u0957\u0958\u0007K\u0002\u0002\u0958\u0959\u0007V\u0002", - "\u0002\u0959\u095a\u0007G\u0002\u0002\u095a\u095b\u0007T\u0002\u0002", - "\u095b\u095c\u0007C\u0002\u0002\u095c\u095d\u0007N\u0002\u0002\u095d", - "\u01e6\u0003\u0002\u0002\u0002\u095e\u095f\u0007U\u0002\u0002\u095f", - "\u0960\u0007O\u0002\u0002\u0960\u0961\u0007C\u0002\u0002\u0961\u0962", - "\u0007N\u0002\u0002\u0962\u0963\u0007N\u0002\u0002\u0963\u0964\u0007", - "K\u0002\u0002\u0964\u0965\u0007P\u0002\u0002\u0965\u0966\u0007V\u0002", - "\u0002\u0966\u0967\u0007a\u0002\u0002\u0967\u0968\u0007N\u0002\u0002", - "\u0968\u0969\u0007K\u0002\u0002\u0969\u096a\u0007V\u0002\u0002\u096a", - "\u096b\u0007G\u0002\u0002\u096b\u096c\u0007T\u0002\u0002\u096c\u096d", - "\u0007C\u0002\u0002\u096d\u096e\u0007N\u0002\u0002\u096e\u01e8\u0003", - "\u0002\u0002\u0002\u096f\u0970\u0007V\u0002\u0002\u0970\u0971\u0007", - "K\u0002\u0002\u0971\u0972\u0007P\u0002\u0002\u0972\u0973\u0007[\u0002", - "\u0002\u0973\u0974\u0007K\u0002\u0002\u0974\u0975\u0007P\u0002\u0002", - "\u0975\u0976\u0007V\u0002\u0002\u0976\u0977\u0007a\u0002\u0002\u0977", - "\u0978\u0007N\u0002\u0002\u0978\u0979\u0007K\u0002\u0002\u0979\u097a", - "\u0007V\u0002\u0002\u097a\u097b\u0007G\u0002\u0002\u097b\u097c\u0007", - "T\u0002\u0002\u097c\u097d\u0007C\u0002\u0002\u097d\u097e\u0007N\u0002", - "\u0002\u097e\u01ea\u0003\u0002\u0002\u0002\u097f\u0980\u0007K\u0002", - "\u0002\u0980\u0981\u0007P\u0002\u0002\u0981\u0982\u0007V\u0002\u0002", - "\u0982\u0983\u0007G\u0002\u0002\u0983\u0984\u0007I\u0002\u0002\u0984", - "\u0985\u0007G\u0002\u0002\u0985\u0986\u0007T\u0002\u0002\u0986\u0987", - "\u0007a\u0002\u0002\u0987\u0988\u0007X\u0002\u0002\u0988\u0989\u0007", - "C\u0002\u0002\u0989\u098a\u0007N\u0002\u0002\u098a\u098b\u0007W\u0002", - "\u0002\u098b\u098c\u0007G\u0002\u0002\u098c\u01ec\u0003\u0002\u0002", - "\u0002\u098d\u098e\u0007F\u0002\u0002\u098e\u098f\u0007G\u0002\u0002", - "\u098f\u0990\u0007E\u0002\u0002\u0990\u0991\u0007K\u0002\u0002\u0991", - "\u0992\u0007O\u0002\u0002\u0992\u0993\u0007C\u0002\u0002\u0993\u0994", - "\u0007N\u0002\u0002\u0994\u0995\u0007a\u0002\u0002\u0995\u0996\u0007", - "X\u0002\u0002\u0996\u0997\u0007C\u0002\u0002\u0997\u0998\u0007N\u0002", - "\u0002\u0998\u0999\u0007W\u0002\u0002\u0999\u099a\u0007G\u0002\u0002", - "\u099a\u01ee\u0003\u0002\u0002\u0002\u099b\u099c\u0007F\u0002\u0002", - "\u099c\u099d\u0007Q\u0002\u0002\u099d\u099e\u0007W\u0002\u0002\u099e", - "\u099f\u0007D\u0002\u0002\u099f\u09a0\u0007N\u0002\u0002\u09a0\u09a1", - "\u0007G\u0002\u0002\u09a1\u09a2\u0007a\u0002\u0002\u09a2\u09a3\u0007", - "N\u0002\u0002\u09a3\u09a4\u0007K\u0002\u0002\u09a4\u09a5\u0007V\u0002", - "\u0002\u09a5\u09a6\u0007G\u0002\u0002\u09a6\u09a7\u0007T\u0002\u0002", - "\u09a7\u09a8\u0007C\u0002\u0002\u09a8\u09a9\u0007N\u0002\u0002\u09a9", - "\u01f0\u0003\u0002\u0002\u0002\u09aa\u09ab\u0007D\u0002\u0002\u09ab", - "\u09ac\u0007K\u0002\u0002\u09ac\u09ad\u0007I\u0002\u0002\u09ad\u09ae", - "\u0007F\u0002\u0002\u09ae\u09af\u0007G\u0002\u0002\u09af\u09b0\u0007", - "E\u0002\u0002\u09b0\u09b1\u0007K\u0002\u0002\u09b1\u09b2\u0007O\u0002", - "\u0002\u09b2\u09b3\u0007C\u0002\u0002\u09b3\u09b4\u0007N\u0002\u0002", - "\u09b4\u09b5\u0007a\u0002\u0002\u09b5\u09b6\u0007N\u0002\u0002\u09b6", - "\u09b7\u0007K\u0002\u0002\u09b7\u09b8\u0007V\u0002\u0002\u09b8\u09b9", - "\u0007G\u0002\u0002\u09b9\u09ba\u0007T\u0002\u0002\u09ba\u09bb\u0007", - "C\u0002\u0002\u09bb\u09bc\u0007N\u0002\u0002\u09bc\u01f2\u0003\u0002", - "\u0002\u0002\u09bd\u09be\u0007K\u0002\u0002\u09be\u09bf\u0007F\u0002", - "\u0002\u09bf\u09c0\u0007G\u0002\u0002\u09c0\u09c1\u0007P\u0002\u0002", - "\u09c1\u09c2\u0007V\u0002\u0002\u09c2\u09c3\u0007K\u0002\u0002\u09c3", - "\u09c4\u0007H\u0002\u0002\u09c4\u09c5\u0007K\u0002\u0002\u09c5\u09c6", - "\u0007G\u0002\u0002\u09c6\u09c7\u0007T\u0002\u0002\u09c7\u01f4\u0003", - "\u0002\u0002\u0002\u09c8\u09c9\u0007D\u0002\u0002\u09c9\u09ca\u0007", - "C\u0002\u0002\u09ca\u09cb\u0007E\u0002\u0002\u09cb\u09cc\u0007M\u0002", - "\u0002\u09cc\u09cd\u0007S\u0002\u0002\u09cd\u09ce\u0007W\u0002\u0002", - "\u09ce\u09cf\u0007Q\u0002\u0002\u09cf\u09d0\u0007V\u0002\u0002\u09d0", - "\u09d1\u0007G\u0002\u0002\u09d1\u09d2\u0007F\u0002\u0002\u09d2\u09d3", - "\u0007a\u0002\u0002\u09d3\u09d4\u0007K\u0002\u0002\u09d4\u09d5\u0007", - "F\u0002\u0002\u09d5\u09d6\u0007G\u0002\u0002\u09d6\u09d7\u0007P\u0002", - "\u0002\u09d7\u09d8\u0007V\u0002\u0002\u09d8\u09d9\u0007K\u0002\u0002", - "\u09d9\u09da\u0007H\u0002\u0002\u09da\u09db\u0007K\u0002\u0002\u09db", - "\u09dc\u0007G\u0002\u0002\u09dc\u09dd\u0007T\u0002\u0002\u09dd\u01f6", - "\u0003\u0002\u0002\u0002\u09de\u09df\u0007U\u0002\u0002\u09df\u09e0", - "\u0007K\u0002\u0002\u09e0\u09e1\u0007O\u0002\u0002\u09e1\u09e2\u0007", - "R\u0002\u0002\u09e2\u09e3\u0007N\u0002\u0002\u09e3\u09e4\u0007G\u0002", - "\u0002\u09e4\u09e5\u0007a\u0002\u0002\u09e5\u09e6\u0007E\u0002\u0002", - "\u09e6\u09e7\u0007Q\u0002\u0002\u09e7\u09e8\u0007O\u0002\u0002\u09e8", - "\u09e9\u0007O\u0002\u0002\u09e9\u09ea\u0007G\u0002\u0002\u09ea\u09eb", - "\u0007P\u0002\u0002\u09eb\u09ec\u0007V\u0002\u0002\u09ec\u01f8\u0003", - "\u0002\u0002\u0002\u09ed\u09ee\u0007D\u0002\u0002\u09ee\u09ef\u0007", - "T\u0002\u0002\u09ef\u09f0\u0007C\u0002\u0002\u09f0\u09f1\u0007E\u0002", - "\u0002\u09f1\u09f2\u0007M\u0002\u0002\u09f2\u09f3\u0007G\u0002\u0002", - "\u09f3\u09f4\u0007V\u0002\u0002\u09f4\u09f5\u0007G\u0002\u0002\u09f5", - "\u09f6\u0007F\u0002\u0002\u09f6\u09f7\u0007a\u0002\u0002\u09f7\u09f8", - "\u0007G\u0002\u0002\u09f8\u09f9\u0007O\u0002\u0002\u09f9\u09fa\u0007", - "R\u0002\u0002\u09fa\u09fb\u0007V\u0002\u0002\u09fb\u09fc\u0007[\u0002", - "\u0002\u09fc\u09fd\u0007a\u0002\u0002\u09fd\u09fe\u0007E\u0002\u0002", - "\u09fe\u09ff\u0007Q\u0002\u0002\u09ff\u0a00\u0007O\u0002\u0002\u0a00", - "\u0a01\u0007O\u0002\u0002\u0a01\u0a02\u0007G\u0002\u0002\u0a02\u0a03", - "\u0007P\u0002\u0002\u0a03\u0a04\u0007V\u0002\u0002\u0a04\u01fa\u0003", - "\u0002\u0002\u0002\u0a05\u0a06\u0007D\u0002\u0002\u0a06\u0a07\u0007", - "T\u0002\u0002\u0a07\u0a08\u0007C\u0002\u0002\u0a08\u0a09\u0007E\u0002", - "\u0002\u0a09\u0a0a\u0007M\u0002\u0002\u0a0a\u0a0b\u0007G\u0002\u0002", - "\u0a0b\u0a0c\u0007V\u0002\u0002\u0a0c\u0a0d\u0007G\u0002\u0002\u0a0d", - "\u0a0e\u0007F\u0002\u0002\u0a0e\u0a0f\u0007a\u0002\u0002\u0a0f\u0a10", - "\u0007E\u0002\u0002\u0a10\u0a11\u0007Q\u0002\u0002\u0a11\u0a12\u0007", - "O\u0002\u0002\u0a12\u0a13\u0007O\u0002\u0002\u0a13\u0a14\u0007G\u0002", - "\u0002\u0a14\u0a15\u0007P\u0002\u0002\u0a15\u0a16\u0007V\u0002\u0002", - "\u0a16\u01fc\u0003\u0002\u0002\u0002\u0a17\u0a18\u0007Y\u0002\u0002", - "\u0a18\u0a19\u0007U\u0002\u0002\u0a19\u01fe\u0003\u0002\u0002\u0002", - "\u0a1a\u0a1b\u0007W\u0002\u0002\u0a1b\u0a1c\u0007P\u0002\u0002\u0a1c", - "\u0a1d\u0007T\u0002\u0002\u0a1d\u0a1e\u0007G\u0002\u0002\u0a1e\u0a1f", - "\u0007E\u0002\u0002\u0a1f\u0a20\u0007Q\u0002\u0002\u0a20\u0a21\u0007", - "I\u0002\u0002\u0a21\u0a22\u0007P\u0002\u0002\u0a22\u0a23\u0007K\u0002", - "\u0002\u0a23\u0a24\u0007\\\u0002\u0002\u0a24\u0a25\u0007G\u0002\u0002", - "\u0a25\u0a26\u0007F\u0002\u0002\u0a26\u0200\u0003\u0002\u0002\u0002", - "\u0a27\u0a28\u0007U\u0002\u0002\u0a28\u0a29\u0007[\u0002\u0002\u0a29", - "\u0a2a\u0007U\u0002\u0002\u0a2a\u0a2b\u0007V\u0002\u0002\u0a2b\u0a2c", - "\u0007G\u0002\u0002\u0a2c\u0a2d\u0007O\u0002\u0002\u0a2d\u0202\u0003", - "\u0002\u0002\u0002\u0a2e\u0a2f\u0007U\u0002\u0002\u0a2f\u0a30\u0007", - "V\u0002\u0002\u0a30\u0a31\u0007T\u0002\u0002\u0a31\u0a32\u0007K\u0002", - "\u0002\u0a32\u0a33\u0007P\u0002\u0002\u0a33\u0a34\u0007I\u0002\u0002", - "\u0a34\u0204\u0003\u0002\u0002\u0002\u0a35\u0a36\u0007C\u0002\u0002", - "\u0a36\u0a37\u0007T\u0002\u0002\u0a37\u0a38\u0007T\u0002\u0002\u0a38", - "\u0a39\u0007C\u0002\u0002\u0a39\u0a3a\u0007[\u0002\u0002\u0a3a\u0206", - "\u0003\u0002\u0002\u0002\u0a3b\u0a3c\u0007O\u0002\u0002\u0a3c\u0a3d", - "\u0007C\u0002\u0002\u0a3d\u0a3e\u0007R\u0002\u0002\u0a3e\u0208\u0003", - "\u0002\u0002\u0002\u0a3f\u0a40\u0007E\u0002\u0002\u0a40\u0a41\u0007", - "J\u0002\u0002\u0a41\u0a42\u0007C\u0002\u0002\u0a42\u0a43\u0007T\u0002", - "\u0002\u0a43\u020a\u0003\u0002\u0002\u0002\u0a44\u0a45\u0007X\u0002", - "\u0002\u0a45\u0a46\u0007C\u0002\u0002\u0a46\u0a47\u0007T\u0002\u0002", - "\u0a47\u0a48\u0007E\u0002\u0002\u0a48\u0a49\u0007J\u0002\u0002\u0a49", - "\u0a4a\u0007C\u0002\u0002\u0a4a\u0a4b\u0007T\u0002\u0002\u0a4b\u020c", - "\u0003\u0002\u0002\u0002\u0a4c\u0a4d\u0007D\u0002\u0002\u0a4d\u0a4e", - "\u0007K\u0002\u0002\u0a4e\u0a4f\u0007P\u0002\u0002\u0a4f\u0a50\u0007", - "C\u0002\u0002\u0a50\u0a51\u0007T\u0002\u0002\u0a51\u0a52\u0007[\u0002", - "\u0002\u0a52\u020e\u0003\u0002\u0002\u0002\u0a53\u0a54\u0007X\u0002", - "\u0002\u0a54\u0a55\u0007C\u0002\u0002\u0a55\u0a56\u0007T\u0002\u0002", - "\u0a56\u0a57\u0007D\u0002\u0002\u0a57\u0a58\u0007K\u0002\u0002\u0a58", - "\u0a59\u0007P\u0002\u0002\u0a59\u0a5a\u0007C\u0002\u0002\u0a5a\u0a5b", - "\u0007T\u0002\u0002\u0a5b\u0a5c\u0007[\u0002\u0002\u0a5c\u0210\u0003", - "\u0002\u0002\u0002\u0a5d\u0a5e\u0007D\u0002\u0002\u0a5e\u0a5f\u0007", - "[\u0002\u0002\u0a5f\u0a60\u0007V\u0002\u0002\u0a60\u0a61\u0007G\u0002", - "\u0002\u0a61\u0a62\u0007U\u0002\u0002\u0a62\u0212\u0003\u0002\u0002", - "\u0002\u0a63\u0a64\u0007F\u0002\u0002\u0a64\u0a65\u0007G\u0002\u0002", - "\u0a65\u0a66\u0007E\u0002\u0002\u0a66\u0a67\u0007K\u0002\u0002\u0a67", - "\u0a68\u0007O\u0002\u0002\u0a68\u0a69\u0007C\u0002\u0002\u0a69\u0a6a", - "\u0007N\u0002\u0002\u0a6a\u0214\u0003\u0002\u0002\u0002\u0a6b\u0a6c", - "\u0007V\u0002\u0002\u0a6c\u0a6d\u0007K\u0002\u0002\u0a6d\u0a6e\u0007", - "P\u0002\u0002\u0a6e\u0a6f\u0007[\u0002\u0002\u0a6f\u0a70\u0007K\u0002", - "\u0002\u0a70\u0a71\u0007P\u0002\u0002\u0a71\u0a72\u0007V\u0002\u0002", - "\u0a72\u0216\u0003\u0002\u0002\u0002\u0a73\u0a74\u0007U\u0002\u0002", - "\u0a74\u0a75\u0007O\u0002\u0002\u0a75\u0a76\u0007C\u0002\u0002\u0a76", - "\u0a77\u0007N\u0002\u0002\u0a77\u0a78\u0007N\u0002\u0002\u0a78\u0a79", - "\u0007K\u0002\u0002\u0a79\u0a7a\u0007P\u0002\u0002\u0a7a\u0a7b\u0007", - "V\u0002\u0002\u0a7b\u0218\u0003\u0002\u0002\u0002\u0a7c\u0a7d\u0007", - "K\u0002\u0002\u0a7d\u0a7e\u0007P\u0002\u0002\u0a7e\u0a7f\u0007V\u0002", - "\u0002\u0a7f\u021a\u0003\u0002\u0002\u0002\u0a80\u0a81\u0007D\u0002", - "\u0002\u0a81\u0a82\u0007K\u0002\u0002\u0a82\u0a83\u0007I\u0002\u0002", - "\u0a83\u0a84\u0007K\u0002\u0002\u0a84\u0a85\u0007P\u0002\u0002\u0a85", - "\u0a86\u0007V\u0002\u0002\u0a86\u021c\u0003\u0002\u0002\u0002\u0a87", - "\u0a88\u0007H\u0002\u0002\u0a88\u0a89\u0007N\u0002\u0002\u0a89\u0a8a", - "\u0007Q\u0002\u0002\u0a8a\u0a8b\u0007C\u0002\u0002\u0a8b\u0a8c\u0007", - "V\u0002\u0002\u0a8c\u021e\u0003\u0002\u0002\u0002\u0a8d\u0a8e\u0007", - "F\u0002\u0002\u0a8e\u0a8f\u0007Q\u0002\u0002\u0a8f\u0a90\u0007W\u0002", - "\u0002\u0a90\u0a91\u0007D\u0002\u0002\u0a91\u0a92\u0007N\u0002\u0002", - "\u0a92\u0a93\u0007G\u0002\u0002\u0a93\u0220\u0003\u0002\u0002\u0002", - "\u0a94\u0a95\u0007F\u0002\u0002\u0a95\u0a96\u0007C\u0002\u0002\u0a96", - "\u0a97\u0007V\u0002\u0002\u0a97\u0a98\u0007G\u0002\u0002\u0a98\u0222", - "\u0003\u0002\u0002\u0002\u0a99\u0a9a\u0007V\u0002\u0002\u0a9a\u0a9b", - "\u0007K\u0002\u0002\u0a9b\u0a9c\u0007O\u0002\u0002\u0a9c\u0a9d\u0007", - "G\u0002\u0002\u0a9d\u0224\u0003\u0002\u0002\u0002\u0a9e\u0a9f\u0007", - "V\u0002\u0002\u0a9f\u0aa0\u0007K\u0002\u0002\u0aa0\u0aa1\u0007O\u0002", - "\u0002\u0aa1\u0aa2\u0007G\u0002\u0002\u0aa2\u0aa3\u0007U\u0002\u0002", - "\u0aa3\u0aa4\u0007V\u0002\u0002\u0aa4\u0aa5\u0007C\u0002\u0002\u0aa5", - "\u0aa6\u0007O\u0002\u0002\u0aa6\u0aa7\u0007R\u0002\u0002\u0aa7\u0226", - "\u0003\u0002\u0002\u0002\u0aa8\u0aa9\u0007O\u0002\u0002\u0aa9\u0aaa", - "\u0007W\u0002\u0002\u0aaa\u0aab\u0007N\u0002\u0002\u0aab\u0aac\u0007", - "V\u0002\u0002\u0aac\u0aad\u0007K\u0002\u0002\u0aad\u0aae\u0007U\u0002", - "\u0002\u0aae\u0aaf\u0007G\u0002\u0002\u0aaf\u0ab0\u0007V\u0002\u0002", - "\u0ab0\u0228\u0003\u0002\u0002\u0002\u0ab1\u0ab2\u0007D\u0002\u0002", - "\u0ab2\u0ab3\u0007Q\u0002\u0002\u0ab3\u0ab4\u0007Q\u0002\u0002\u0ab4", - "\u0ab5\u0007N\u0002\u0002\u0ab5\u0ab6\u0007G\u0002\u0002\u0ab6\u0ab7", - "\u0007C\u0002\u0002\u0ab7\u0ab8\u0007P\u0002\u0002\u0ab8\u022a\u0003", - "\u0002\u0002\u0002\u0ab9\u0aba\u0007T\u0002\u0002\u0aba\u0abb\u0007", - "C\u0002\u0002\u0abb\u0abc\u0007Y\u0002\u0002\u0abc\u022c\u0003\u0002", - "\u0002\u0002\u0abd\u0abe\u0007T\u0002\u0002\u0abe\u0abf\u0007Q\u0002", - "\u0002\u0abf\u0ac0\u0007Y\u0002\u0002\u0ac0\u022e\u0003\u0002\u0002", - "\u0002\u0ac1\u0ac2\u0007P\u0002\u0002\u0ac2\u0ac3\u0007W\u0002\u0002", - "\u0ac3\u0ac4\u0007N\u0002\u0002\u0ac4\u0ac5\u0007N\u0002\u0002\u0ac5", - "\u0230\u0003\u0002\u0002\u0002\u0ac6\u0ac7\u0007?\u0002\u0002\u0ac7", - "\u0232\u0003\u0002\u0002\u0002\u0ac8\u0ac9\u0007@\u0002\u0002\u0ac9", - "\u0234\u0003\u0002\u0002\u0002\u0aca\u0acb\u0007>\u0002\u0002\u0acb", - "\u0236\u0003\u0002\u0002\u0002\u0acc\u0acd\u0007#\u0002\u0002\u0acd", - "\u0238\u0003\u0002\u0002\u0002\u0ace\u0acf\u0007\u0080\u0002\u0002\u0acf", - "\u023a\u0003\u0002\u0002\u0002\u0ad0\u0ad1\u0007~\u0002\u0002\u0ad1", - "\u023c\u0003\u0002\u0002\u0002\u0ad2\u0ad3\u0007(\u0002\u0002\u0ad3", - "\u023e\u0003\u0002\u0002\u0002\u0ad4\u0ad5\u0007`\u0002\u0002\u0ad5", - "\u0240\u0003\u0002\u0002\u0002\u0ad6\u0ad7\u00070\u0002\u0002\u0ad7", - "\u0242\u0003\u0002\u0002\u0002\u0ad8\u0ad9\u0007]\u0002\u0002\u0ad9", - "\u0244\u0003\u0002\u0002\u0002\u0ada\u0adb\u0007_\u0002\u0002\u0adb", - "\u0246\u0003\u0002\u0002\u0002\u0adc\u0add\u0007*\u0002\u0002\u0add", - "\u0248\u0003\u0002\u0002\u0002\u0ade\u0adf\u0007+\u0002\u0002\u0adf", - "\u024a\u0003\u0002\u0002\u0002\u0ae0\u0ae1\u0007.\u0002\u0002\u0ae1", - "\u024c\u0003\u0002\u0002\u0002\u0ae2\u0ae3\u0007=\u0002\u0002\u0ae3", - "\u024e\u0003\u0002\u0002\u0002\u0ae4\u0ae5\u0007B\u0002\u0002\u0ae5", - "\u0250\u0003\u0002\u0002\u0002\u0ae6\u0ae7\u00072\u0002\u0002\u0ae7", - "\u0252\u0003\u0002\u0002\u0002\u0ae8\u0ae9\u00073\u0002\u0002\u0ae9", - "\u0254\u0003\u0002\u0002\u0002\u0aea\u0aeb\u00074\u0002\u0002\u0aeb", - "\u0256\u0003\u0002\u0002\u0002\u0aec\u0aed\u0007)\u0002\u0002\u0aed", - "\u0258\u0003\u0002\u0002\u0002\u0aee\u0aef\u0007$\u0002\u0002\u0aef", - "\u025a\u0003\u0002\u0002\u0002\u0af0\u0af1\u0007b\u0002\u0002\u0af1", - "\u025c\u0003\u0002\u0002\u0002\u0af2\u0af3\u0007<\u0002\u0002\u0af3", - "\u025e\u0003\u0002\u0002\u0002\u0af4\u0af5\u0007,\u0002\u0002\u0af5", - "\u0260\u0003\u0002\u0002\u0002\u0af6\u0af7\u0007a\u0002\u0002\u0af7", - "\u0262\u0003\u0002\u0002\u0002\u0af8\u0af9\u0007/\u0002\u0002\u0af9", - "\u0264\u0003\u0002\u0002\u0002\u0afa\u0afb\u0007-\u0002\u0002\u0afb", - "\u0266\u0003\u0002\u0002\u0002\u0afc\u0afd\u0007\'\u0002\u0002\u0afd", - "\u0268\u0003\u0002\u0002\u0002\u0afe\u0aff\u0007/\u0002\u0002\u0aff", - "\u0b00\u0007/\u0002\u0002\u0b00\u026a\u0003\u0002\u0002\u0002\u0b01", - "\u0b02\u00071\u0002\u0002\u0b02\u026c\u0003\u0002\u0002\u0002\u0b03", - "\u0b04\u00070\u0002\u0002\u0b04\u0b05\u0005\u027d\u013f\u0002\u0b05", - "\u026e\u0003\u0002\u0002\u0002\u0b06\u0b07\u0005\u027d\u013f\u0002\u0b07", - "\u0270\u0003\u0002\u0002\u0002\u0b08\u0b0c\u0005\u0283\u0142\u0002\u0b09", - "\u0b0c\u0005\u0285\u0143\u0002\u0b0a\u0b0c\u0005\u0289\u0145\u0002\u0b0b", - "\u0b08\u0003\u0002\u0002\u0002\u0b0b\u0b09\u0003\u0002\u0002\u0002\u0b0b", - "\u0b0a\u0003\u0002\u0002\u0002\u0b0c\u0272\u0003\u0002\u0002\u0002\u0b0d", - "\u0b0f\u0005\u027f\u0140\u0002\u0b0e\u0b0d\u0003\u0002\u0002\u0002\u0b0f", - "\u0b10\u0003\u0002\u0002\u0002\u0b10\u0b0e\u0003\u0002\u0002\u0002\u0b10", - "\u0b11\u0003\u0002\u0002\u0002\u0b11\u0274\u0003\u0002\u0002\u0002\u0b12", - "\u0b14\u0005\u027f\u0140\u0002\u0b13\u0b12\u0003\u0002\u0002\u0002\u0b14", - "\u0b15\u0003\u0002\u0002\u0002\u0b15\u0b13\u0003\u0002\u0002\u0002\u0b15", - "\u0b16\u0003\u0002\u0002\u0002\u0b16\u0b18\u0003\u0002\u0002\u0002\u0b17", - "\u0b13\u0003\u0002\u0002\u0002\u0b17\u0b18\u0003\u0002\u0002\u0002\u0b18", - "\u0b19\u0003\u0002\u0002\u0002\u0b19\u0b1b\u00070\u0002\u0002\u0b1a", - "\u0b1c\u0005\u027f\u0140\u0002\u0b1b\u0b1a\u0003\u0002\u0002\u0002\u0b1c", - "\u0b1d\u0003\u0002\u0002\u0002\u0b1d\u0b1b\u0003\u0002\u0002\u0002\u0b1d", - "\u0b1e\u0003\u0002\u0002\u0002\u0b1e\u0b3e\u0003\u0002\u0002\u0002\u0b1f", - "\u0b21\u0005\u027f\u0140\u0002\u0b20\u0b1f\u0003\u0002\u0002\u0002\u0b21", - "\u0b22\u0003\u0002\u0002\u0002\u0b22\u0b20\u0003\u0002\u0002\u0002\u0b22", - "\u0b23\u0003\u0002\u0002\u0002\u0b23\u0b24\u0003\u0002\u0002\u0002\u0b24", - "\u0b25\u00070\u0002\u0002\u0b25\u0b26\u0005\u027b\u013e\u0002\u0b26", - "\u0b3e\u0003\u0002\u0002\u0002\u0b27\u0b29\u0005\u027f\u0140\u0002\u0b28", - "\u0b27\u0003\u0002\u0002\u0002\u0b29\u0b2a\u0003\u0002\u0002\u0002\u0b2a", - "\u0b28\u0003\u0002\u0002\u0002\u0b2a\u0b2b\u0003\u0002\u0002\u0002\u0b2b", - "\u0b2d\u0003\u0002\u0002\u0002\u0b2c\u0b28\u0003\u0002\u0002\u0002\u0b2c", - "\u0b2d\u0003\u0002\u0002\u0002\u0b2d\u0b2e\u0003\u0002\u0002\u0002\u0b2e", - "\u0b30\u00070\u0002\u0002\u0b2f\u0b31\u0005\u027f\u0140\u0002\u0b30", - "\u0b2f\u0003\u0002\u0002\u0002\u0b31\u0b32\u0003\u0002\u0002\u0002\u0b32", - "\u0b30\u0003\u0002\u0002\u0002\u0b32\u0b33\u0003\u0002\u0002\u0002\u0b33", - "\u0b34\u0003\u0002\u0002\u0002\u0b34\u0b35\u0005\u027b\u013e\u0002\u0b35", - "\u0b3e\u0003\u0002\u0002\u0002\u0b36\u0b38\u0005\u027f\u0140\u0002\u0b37", - "\u0b36\u0003\u0002\u0002\u0002\u0b38\u0b39\u0003\u0002\u0002\u0002\u0b39", - "\u0b37\u0003\u0002\u0002\u0002\u0b39\u0b3a\u0003\u0002\u0002\u0002\u0b3a", - "\u0b3b\u0003\u0002\u0002\u0002\u0b3b\u0b3c\u0005\u027b\u013e\u0002\u0b3c", - "\u0b3e\u0003\u0002\u0002\u0002\u0b3d\u0b17\u0003\u0002\u0002\u0002\u0b3d", - "\u0b20\u0003\u0002\u0002\u0002\u0b3d\u0b2c\u0003\u0002\u0002\u0002\u0b3d", - "\u0b37\u0003\u0002\u0002\u0002\u0b3e\u0276\u0003\u0002\u0002\u0002\u0b3f", - "\u0b40\u0005\u0287\u0144\u0002\u0b40\u0278\u0003\u0002\u0002\u0002\u0b41", - "\u0b45\u0005\u0281\u0141\u0002\u0b42\u0b45\u0005\u027f\u0140\u0002\u0b43", - "\u0b45\u0005\u0261\u0131\u0002\u0b44\u0b41\u0003\u0002\u0002\u0002\u0b44", - "\u0b42\u0003\u0002\u0002\u0002\u0b44\u0b43\u0003\u0002\u0002\u0002\u0b45", - "\u0b46\u0003\u0002\u0002\u0002\u0b46\u0b44\u0003\u0002\u0002\u0002\u0b46", - "\u0b47\u0003\u0002\u0002\u0002\u0b47\u027a\u0003\u0002\u0002\u0002\u0b48", - "\u0b4a\u0007G\u0002\u0002\u0b49\u0b4b\t\u0004\u0002\u0002\u0b4a\u0b49", - "\u0003\u0002\u0002\u0002\u0b4a\u0b4b\u0003\u0002\u0002\u0002\u0b4b\u0b4d", - "\u0003\u0002\u0002\u0002\u0b4c\u0b4e\u0005\u027f\u0140\u0002\u0b4d\u0b4c", - "\u0003\u0002\u0002\u0002\u0b4e\u0b4f\u0003\u0002\u0002\u0002\u0b4f\u0b4d", - "\u0003\u0002\u0002\u0002\u0b4f\u0b50\u0003\u0002\u0002\u0002\u0b50\u027c", - "\u0003\u0002\u0002\u0002\u0b51\u0b53\t\u0005\u0002\u0002\u0b52\u0b51", - "\u0003\u0002\u0002\u0002\u0b53\u0b56\u0003\u0002\u0002\u0002\u0b54\u0b55", - "\u0003\u0002\u0002\u0002\u0b54\u0b52\u0003\u0002\u0002\u0002\u0b55\u0b58", - "\u0003\u0002\u0002\u0002\u0b56\u0b54\u0003\u0002\u0002\u0002\u0b57\u0b59", - "\t\u0006\u0002\u0002\u0b58\u0b57\u0003\u0002\u0002\u0002\u0b59\u0b5a", - "\u0003\u0002\u0002\u0002\u0b5a\u0b5b\u0003\u0002\u0002\u0002\u0b5a\u0b58", - "\u0003\u0002\u0002\u0002\u0b5b\u0b5f\u0003\u0002\u0002\u0002\u0b5c\u0b5e", - "\t\u0005\u0002\u0002\u0b5d\u0b5c\u0003\u0002\u0002\u0002\u0b5e\u0b61", - "\u0003\u0002\u0002\u0002\u0b5f\u0b5d\u0003\u0002\u0002\u0002\u0b5f\u0b60", - "\u0003\u0002\u0002\u0002\u0b60\u027e\u0003\u0002\u0002\u0002\u0b61\u0b5f", - "\u0003\u0002\u0002\u0002\u0b62\u0b63\t\u0007\u0002\u0002\u0b63\u0280", - "\u0003\u0002\u0002\u0002\u0b64\u0b65\t\b\u0002\u0002\u0b65\u0282\u0003", - "\u0002\u0002\u0002\u0b66\u0b6e\u0007$\u0002\u0002\u0b67\u0b68\u0007", - "^\u0002\u0002\u0b68\u0b6d\u000b\u0002\u0002\u0002\u0b69\u0b6a\u0007", - "$\u0002\u0002\u0b6a\u0b6d\u0007$\u0002\u0002\u0b6b\u0b6d\n\t\u0002\u0002", - "\u0b6c\u0b67\u0003\u0002\u0002\u0002\u0b6c\u0b69\u0003\u0002\u0002\u0002", - "\u0b6c\u0b6b\u0003\u0002\u0002\u0002\u0b6d\u0b70\u0003\u0002\u0002\u0002", - "\u0b6e\u0b6c\u0003\u0002\u0002\u0002\u0b6e\u0b6f\u0003\u0002\u0002\u0002", - "\u0b6f\u0b71\u0003\u0002\u0002\u0002\u0b70\u0b6e\u0003\u0002\u0002\u0002", - "\u0b71\u0b72\u0007$\u0002\u0002\u0b72\u0284\u0003\u0002\u0002\u0002", - "\u0b73\u0b7b\u0007)\u0002\u0002\u0b74\u0b75\u0007^\u0002\u0002\u0b75", - "\u0b7a\u000b\u0002\u0002\u0002\u0b76\u0b77\u0007)\u0002\u0002\u0b77", - "\u0b7a\u0007)\u0002\u0002\u0b78\u0b7a\n\n\u0002\u0002\u0b79\u0b74\u0003", - "\u0002\u0002\u0002\u0b79\u0b76\u0003\u0002\u0002\u0002\u0b79\u0b78\u0003", - "\u0002\u0002\u0002\u0b7a\u0b7d\u0003\u0002\u0002\u0002\u0b7b\u0b79\u0003", - "\u0002\u0002\u0002\u0b7b\u0b7c\u0003\u0002\u0002\u0002\u0b7c\u0b7e\u0003", - "\u0002\u0002\u0002\u0b7d\u0b7b\u0003\u0002\u0002\u0002\u0b7e\u0b7f\u0007", - ")\u0002\u0002\u0b7f\u0286\u0003\u0002\u0002\u0002\u0b80\u0b81\u0007", - "D\u0002\u0002\u0b81\u0b83\u0007)\u0002\u0002\u0b82\u0b84\t\u000b\u0002", - "\u0002\u0b83\u0b82\u0003\u0002\u0002\u0002\u0b84\u0b85\u0003\u0002\u0002", - "\u0002\u0b85\u0b83\u0003\u0002\u0002\u0002\u0b85\u0b86\u0003\u0002\u0002", - "\u0002\u0b86\u0b87\u0003\u0002\u0002\u0002\u0b87\u0b88\u0007)\u0002", - "\u0002\u0b88\u0288\u0003\u0002\u0002\u0002\u0b89\u0b91\u0007b\u0002", - "\u0002\u0b8a\u0b8b\u0007^\u0002\u0002\u0b8b\u0b90\u000b\u0002\u0002", - "\u0002\u0b8c\u0b8d\u0007b\u0002\u0002\u0b8d\u0b90\u0007b\u0002\u0002", - "\u0b8e\u0b90\n\f\u0002\u0002\u0b8f\u0b8a\u0003\u0002\u0002\u0002\u0b8f", - "\u0b8c\u0003\u0002\u0002\u0002\u0b8f\u0b8e\u0003\u0002\u0002\u0002\u0b90", - "\u0b93\u0003\u0002\u0002\u0002\u0b91\u0b8f\u0003\u0002\u0002\u0002\u0b91", - "\u0b92\u0003\u0002\u0002\u0002\u0b92\u0b94\u0003\u0002\u0002\u0002\u0b93", - "\u0b91\u0003\u0002\u0002\u0002\u0b94\u0b95\u0007b\u0002\u0002\u0b95", - "\u028a\u0003\u0002\u0002\u0002%\u0002\u028e\u0298\u02a4\u02a9\u02ad", - "\u02b1\u02b7\u02bb\u02bd\u0b0b\u0b10\u0b15\u0b17\u0b1d\u0b22\u0b2a\u0b2c", - "\u0b32\u0b39\u0b3d\u0b44\u0b46\u0b4a\u0b4f\u0b54\u0b5a\u0b5f\u0b6c\u0b6e", - "\u0b79\u0b7b\u0b85\u0b8f\u0b91\u0003\u0002\u0003\u0002"].join(""); - - -var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); - -var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new antlr4.dfa.DFA(ds, index); }); - -function FlinkSqlParserLexer(input) { - antlr4.Lexer.call(this, input); - this._interp = new antlr4.atn.LexerATNSimulator(this, atn, decisionsToDFA, new antlr4.PredictionContextCache()); - return this; -} - -FlinkSqlParserLexer.prototype = Object.create(antlr4.Lexer.prototype); -FlinkSqlParserLexer.prototype.constructor = FlinkSqlParserLexer; - -Object.defineProperty(FlinkSqlParserLexer.prototype, "atn", { - get : function() { - return atn; - } -}); - -FlinkSqlParserLexer.EOF = antlr4.Token.EOF; -FlinkSqlParserLexer.SPACE = 1; -FlinkSqlParserLexer.COMMENT_INPUT = 2; -FlinkSqlParserLexer.LINE_COMMENT = 3; -FlinkSqlParserLexer.SELECT = 4; -FlinkSqlParserLexer.FROM = 5; -FlinkSqlParserLexer.ADD = 6; -FlinkSqlParserLexer.AS = 7; -FlinkSqlParserLexer.ALL = 8; -FlinkSqlParserLexer.ANY = 9; -FlinkSqlParserLexer.DISTINCT = 10; -FlinkSqlParserLexer.WHERE = 11; -FlinkSqlParserLexer.GROUP = 12; -FlinkSqlParserLexer.BY = 13; -FlinkSqlParserLexer.GROUPING = 14; -FlinkSqlParserLexer.SETS = 15; -FlinkSqlParserLexer.CUBE = 16; -FlinkSqlParserLexer.ROLLUP = 17; -FlinkSqlParserLexer.ORDER = 18; -FlinkSqlParserLexer.HAVING = 19; -FlinkSqlParserLexer.LIMIT = 20; -FlinkSqlParserLexer.AT = 21; -FlinkSqlParserLexer.OR = 22; -FlinkSqlParserLexer.AND = 23; -FlinkSqlParserLexer.IN = 24; -FlinkSqlParserLexer.NOT = 25; -FlinkSqlParserLexer.NO = 26; -FlinkSqlParserLexer.EXISTS = 27; -FlinkSqlParserLexer.BETWEEN = 28; -FlinkSqlParserLexer.LIKE = 29; -FlinkSqlParserLexer.RLIKE = 30; -FlinkSqlParserLexer.IS = 31; -FlinkSqlParserLexer.TRUE = 32; -FlinkSqlParserLexer.FALSE = 33; -FlinkSqlParserLexer.NULLS = 34; -FlinkSqlParserLexer.ASC = 35; -FlinkSqlParserLexer.DESC = 36; -FlinkSqlParserLexer.FOR = 37; -FlinkSqlParserLexer.INTERVAL = 38; -FlinkSqlParserLexer.CASE = 39; -FlinkSqlParserLexer.WHEN = 40; -FlinkSqlParserLexer.THEN = 41; -FlinkSqlParserLexer.ELSE = 42; -FlinkSqlParserLexer.END = 43; -FlinkSqlParserLexer.JOIN = 44; -FlinkSqlParserLexer.CROSS = 45; -FlinkSqlParserLexer.OUTER = 46; -FlinkSqlParserLexer.INNER = 47; -FlinkSqlParserLexer.LEFT = 48; -FlinkSqlParserLexer.SEMI = 49; -FlinkSqlParserLexer.RIGHT = 50; -FlinkSqlParserLexer.FULL = 51; -FlinkSqlParserLexer.NATURAL = 52; -FlinkSqlParserLexer.ON = 53; -FlinkSqlParserLexer.PIVOT = 54; -FlinkSqlParserLexer.LATERAL = 55; -FlinkSqlParserLexer.WINDOW = 56; -FlinkSqlParserLexer.OVER = 57; -FlinkSqlParserLexer.PARTITION = 58; -FlinkSqlParserLexer.RANGE = 59; -FlinkSqlParserLexer.ROWS = 60; -FlinkSqlParserLexer.UNBOUNDED = 61; -FlinkSqlParserLexer.PRECEDING = 62; -FlinkSqlParserLexer.FOLLOWING = 63; -FlinkSqlParserLexer.CURRENT = 64; -FlinkSqlParserLexer.FIRST = 65; -FlinkSqlParserLexer.AFTER = 66; -FlinkSqlParserLexer.LAST = 67; -FlinkSqlParserLexer.WITH = 68; -FlinkSqlParserLexer.VALUES = 69; -FlinkSqlParserLexer.CREATE = 70; -FlinkSqlParserLexer.TABLE = 71; -FlinkSqlParserLexer.DIRECTORY = 72; -FlinkSqlParserLexer.VIEW = 73; -FlinkSqlParserLexer.REPLACE = 74; -FlinkSqlParserLexer.INSERT = 75; -FlinkSqlParserLexer.DELETE = 76; -FlinkSqlParserLexer.INTO = 77; -FlinkSqlParserLexer.DESCRIBE = 78; -FlinkSqlParserLexer.EXPLAIN = 79; -FlinkSqlParserLexer.FORMAT = 80; -FlinkSqlParserLexer.LOGICAL = 81; -FlinkSqlParserLexer.CODEGEN = 82; -FlinkSqlParserLexer.COST = 83; -FlinkSqlParserLexer.CAST = 84; -FlinkSqlParserLexer.SHOW = 85; -FlinkSqlParserLexer.TABLES = 86; -FlinkSqlParserLexer.COLUMNS = 87; -FlinkSqlParserLexer.COLUMN = 88; -FlinkSqlParserLexer.USE = 89; -FlinkSqlParserLexer.PARTITIONS = 90; -FlinkSqlParserLexer.FUNCTIONS = 91; -FlinkSqlParserLexer.DROP = 92; -FlinkSqlParserLexer.UNION = 93; -FlinkSqlParserLexer.EXCEPT = 94; -FlinkSqlParserLexer.SETMINUS = 95; -FlinkSqlParserLexer.INTERSECT = 96; -FlinkSqlParserLexer.TO = 97; -FlinkSqlParserLexer.TABLESAMPLE = 98; -FlinkSqlParserLexer.STRATIFY = 99; -FlinkSqlParserLexer.ALTER = 100; -FlinkSqlParserLexer.RENAME = 101; -FlinkSqlParserLexer.STRUCT = 102; -FlinkSqlParserLexer.COMMENT = 103; -FlinkSqlParserLexer.SET = 104; -FlinkSqlParserLexer.RESET = 105; -FlinkSqlParserLexer.DATA = 106; -FlinkSqlParserLexer.START = 107; -FlinkSqlParserLexer.TRANSACTION = 108; -FlinkSqlParserLexer.COMMIT = 109; -FlinkSqlParserLexer.ROLLBACK = 110; -FlinkSqlParserLexer.MACRO = 111; -FlinkSqlParserLexer.IGNORE = 112; -FlinkSqlParserLexer.BOTH = 113; -FlinkSqlParserLexer.LEADING = 114; -FlinkSqlParserLexer.TRAILING = 115; -FlinkSqlParserLexer.IF = 116; -FlinkSqlParserLexer.POSITION = 117; -FlinkSqlParserLexer.EXTRACT = 118; -FlinkSqlParserLexer.EQ = 119; -FlinkSqlParserLexer.NSEQ = 120; -FlinkSqlParserLexer.NEQ = 121; -FlinkSqlParserLexer.NEQJ = 122; -FlinkSqlParserLexer.LT = 123; -FlinkSqlParserLexer.LTE = 124; -FlinkSqlParserLexer.GT = 125; -FlinkSqlParserLexer.GTE = 126; -FlinkSqlParserLexer.PLUS = 127; -FlinkSqlParserLexer.MINUS = 128; -FlinkSqlParserLexer.ASTERISK = 129; -FlinkSqlParserLexer.SLASH = 130; -FlinkSqlParserLexer.PERCENT = 131; -FlinkSqlParserLexer.DIV = 132; -FlinkSqlParserLexer.TILDE = 133; -FlinkSqlParserLexer.AMPERSAND = 134; -FlinkSqlParserLexer.PIPE = 135; -FlinkSqlParserLexer.CONCAT_PIPE = 136; -FlinkSqlParserLexer.HAT = 137; -FlinkSqlParserLexer.PERCENTLIT = 138; -FlinkSqlParserLexer.BUCKET = 139; -FlinkSqlParserLexer.OUT = 140; -FlinkSqlParserLexer.OF = 141; -FlinkSqlParserLexer.SORT = 142; -FlinkSqlParserLexer.CLUSTER = 143; -FlinkSqlParserLexer.DISTRIBUTE = 144; -FlinkSqlParserLexer.OVERWRITE = 145; -FlinkSqlParserLexer.TRANSFORM = 146; -FlinkSqlParserLexer.REDUCE = 147; -FlinkSqlParserLexer.USING = 148; -FlinkSqlParserLexer.SERDE = 149; -FlinkSqlParserLexer.SERDEPROPERTIES = 150; -FlinkSqlParserLexer.RECORDREADER = 151; -FlinkSqlParserLexer.RECORDWRITER = 152; -FlinkSqlParserLexer.DELIMITED = 153; -FlinkSqlParserLexer.FIELDS = 154; -FlinkSqlParserLexer.TERMINATED = 155; -FlinkSqlParserLexer.COLLECTION = 156; -FlinkSqlParserLexer.ITEMS = 157; -FlinkSqlParserLexer.KEYS = 158; -FlinkSqlParserLexer.ESCAPED = 159; -FlinkSqlParserLexer.LINES = 160; -FlinkSqlParserLexer.SEPARATED = 161; -FlinkSqlParserLexer.FUNCTION = 162; -FlinkSqlParserLexer.EXTENDED = 163; -FlinkSqlParserLexer.REFRESH = 164; -FlinkSqlParserLexer.CLEAR = 165; -FlinkSqlParserLexer.CACHE = 166; -FlinkSqlParserLexer.UNCACHE = 167; -FlinkSqlParserLexer.LAZY = 168; -FlinkSqlParserLexer.FORMATTED = 169; -FlinkSqlParserLexer.GLOBAL = 170; -FlinkSqlParserLexer.TEMPORARY = 171; -FlinkSqlParserLexer.OPTIONS = 172; -FlinkSqlParserLexer.UNSET = 173; -FlinkSqlParserLexer.TBLPROPERTIES = 174; -FlinkSqlParserLexer.DBPROPERTIES = 175; -FlinkSqlParserLexer.BUCKETS = 176; -FlinkSqlParserLexer.SKEWED = 177; -FlinkSqlParserLexer.STORED = 178; -FlinkSqlParserLexer.DIRECTORIES = 179; -FlinkSqlParserLexer.LOCATION = 180; -FlinkSqlParserLexer.EXCHANGE = 181; -FlinkSqlParserLexer.ARCHIVE = 182; -FlinkSqlParserLexer.UNARCHIVE = 183; -FlinkSqlParserLexer.FILEFORMAT = 184; -FlinkSqlParserLexer.TOUCH = 185; -FlinkSqlParserLexer.COMPACT = 186; -FlinkSqlParserLexer.CONCATENATE = 187; -FlinkSqlParserLexer.CHANGE = 188; -FlinkSqlParserLexer.CASCADE = 189; -FlinkSqlParserLexer.RESTRICT = 190; -FlinkSqlParserLexer.CLUSTERED = 191; -FlinkSqlParserLexer.SORTED = 192; -FlinkSqlParserLexer.PURGE = 193; -FlinkSqlParserLexer.INPUTFORMAT = 194; -FlinkSqlParserLexer.OUTPUTFORMAT = 195; -FlinkSqlParserLexer.DATABASE = 196; -FlinkSqlParserLexer.DATABASES = 197; -FlinkSqlParserLexer.DFS = 198; -FlinkSqlParserLexer.TRUNCATE = 199; -FlinkSqlParserLexer.ANALYZE = 200; -FlinkSqlParserLexer.COMPUTE = 201; -FlinkSqlParserLexer.LIST = 202; -FlinkSqlParserLexer.STATISTICS = 203; -FlinkSqlParserLexer.PARTITIONED = 204; -FlinkSqlParserLexer.EXTERNAL = 205; -FlinkSqlParserLexer.DEFINED = 206; -FlinkSqlParserLexer.REVOKE = 207; -FlinkSqlParserLexer.GRANT = 208; -FlinkSqlParserLexer.LOCK = 209; -FlinkSqlParserLexer.UNLOCK = 210; -FlinkSqlParserLexer.MSCK = 211; -FlinkSqlParserLexer.REPAIR = 212; -FlinkSqlParserLexer.RECOVER = 213; -FlinkSqlParserLexer.EXPORT = 214; -FlinkSqlParserLexer.IMPORT = 215; -FlinkSqlParserLexer.LOAD = 216; -FlinkSqlParserLexer.ROLE = 217; -FlinkSqlParserLexer.ROLES = 218; -FlinkSqlParserLexer.COMPACTIONS = 219; -FlinkSqlParserLexer.PRINCIPALS = 220; -FlinkSqlParserLexer.TRANSACTIONS = 221; -FlinkSqlParserLexer.INDEX = 222; -FlinkSqlParserLexer.INDEXES = 223; -FlinkSqlParserLexer.LOCKS = 224; -FlinkSqlParserLexer.OPTION = 225; -FlinkSqlParserLexer.ANTI = 226; -FlinkSqlParserLexer.LOCAL = 227; -FlinkSqlParserLexer.INPATH = 228; -FlinkSqlParserLexer.WATERMARK = 229; -FlinkSqlParserLexer.UNNEST = 230; -FlinkSqlParserLexer.MATCH_RECOGNIZE = 231; -FlinkSqlParserLexer.MEASURES = 232; -FlinkSqlParserLexer.ONE = 233; -FlinkSqlParserLexer.PER = 234; -FlinkSqlParserLexer.MATCH = 235; -FlinkSqlParserLexer.SKIP1 = 236; -FlinkSqlParserLexer.NEXT = 237; -FlinkSqlParserLexer.PAST = 238; -FlinkSqlParserLexer.PATTERN = 239; -FlinkSqlParserLexer.WITHIN = 240; -FlinkSqlParserLexer.DEFINE = 241; -FlinkSqlParserLexer.BIGINT_LITERAL = 242; -FlinkSqlParserLexer.SMALLINT_LITERAL = 243; -FlinkSqlParserLexer.TINYINT_LITERAL = 244; -FlinkSqlParserLexer.INTEGER_VALUE = 245; -FlinkSqlParserLexer.DECIMAL_VALUE = 246; -FlinkSqlParserLexer.DOUBLE_LITERAL = 247; -FlinkSqlParserLexer.BIGDECIMAL_LITERAL = 248; -FlinkSqlParserLexer.IDENTIFIER = 249; -FlinkSqlParserLexer.BACKQUOTED_IDENTIFIER = 250; -FlinkSqlParserLexer.SIMPLE_COMMENT = 251; -FlinkSqlParserLexer.BRACKETED_EMPTY_COMMENT = 252; -FlinkSqlParserLexer.BRACKETED_COMMENT = 253; -FlinkSqlParserLexer.WS = 254; -FlinkSqlParserLexer.UNRECOGNIZED = 255; -FlinkSqlParserLexer.SYSTEM = 256; -FlinkSqlParserLexer.STRING = 257; -FlinkSqlParserLexer.ARRAY = 258; -FlinkSqlParserLexer.MAP = 259; -FlinkSqlParserLexer.CHAR = 260; -FlinkSqlParserLexer.VARCHAR = 261; -FlinkSqlParserLexer.BINARY = 262; -FlinkSqlParserLexer.VARBINARY = 263; -FlinkSqlParserLexer.BYTES = 264; -FlinkSqlParserLexer.DECIMAL = 265; -FlinkSqlParserLexer.TINYINT = 266; -FlinkSqlParserLexer.SMALLINT = 267; -FlinkSqlParserLexer.INT = 268; -FlinkSqlParserLexer.BIGINT = 269; -FlinkSqlParserLexer.FLOAT = 270; -FlinkSqlParserLexer.DOUBLE = 271; -FlinkSqlParserLexer.DATE = 272; -FlinkSqlParserLexer.TIME = 273; -FlinkSqlParserLexer.TIMESTAMP = 274; -FlinkSqlParserLexer.MULTISET = 275; -FlinkSqlParserLexer.BOOLEAN = 276; -FlinkSqlParserLexer.RAW = 277; -FlinkSqlParserLexer.ROW = 278; -FlinkSqlParserLexer.NULL = 279; -FlinkSqlParserLexer.EQUAL_SYMBOL = 280; -FlinkSqlParserLexer.GREATER_SYMBOL = 281; -FlinkSqlParserLexer.LESS_SYMBOL = 282; -FlinkSqlParserLexer.EXCLAMATION_SYMBOL = 283; -FlinkSqlParserLexer.BIT_NOT_OP = 284; -FlinkSqlParserLexer.BIT_OR_OP = 285; -FlinkSqlParserLexer.BIT_AND_OP = 286; -FlinkSqlParserLexer.BIT_XOR_OP = 287; -FlinkSqlParserLexer.DOT = 288; -FlinkSqlParserLexer.LS_BRACKET = 289; -FlinkSqlParserLexer.RS_BRACKET = 290; -FlinkSqlParserLexer.LR_BRACKET = 291; -FlinkSqlParserLexer.RR_BRACKET = 292; -FlinkSqlParserLexer.COMMA = 293; -FlinkSqlParserLexer.SEMICOLON = 294; -FlinkSqlParserLexer.AT_SIGN = 295; -FlinkSqlParserLexer.ZERO_DECIMAL = 296; -FlinkSqlParserLexer.ONE_DECIMAL = 297; -FlinkSqlParserLexer.TWO_DECIMAL = 298; -FlinkSqlParserLexer.SINGLE_QUOTE_SYMB = 299; -FlinkSqlParserLexer.DOUBLE_QUOTE_SYMB = 300; -FlinkSqlParserLexer.REVERSE_QUOTE_SYMB = 301; -FlinkSqlParserLexer.COLON_SYMB = 302; -FlinkSqlParserLexer.ASTERISK_SIGN = 303; -FlinkSqlParserLexer.UNDERLINE_SIGN = 304; -FlinkSqlParserLexer.HYPNEN_SIGN = 305; -FlinkSqlParserLexer.ADD_SIGN = 306; -FlinkSqlParserLexer.PENCENT_SIGN = 307; -FlinkSqlParserLexer.DOUBLE_HYPNEN_SIGN = 308; -FlinkSqlParserLexer.SLASH_SIGN = 309; -FlinkSqlParserLexer.DOT_ID = 310; -FlinkSqlParserLexer.ID = 311; -FlinkSqlParserLexer.STRING_LITERAL = 312; -FlinkSqlParserLexer.DECIMAL_LITERAL = 313; -FlinkSqlParserLexer.REAL_LITERAL = 314; -FlinkSqlParserLexer.BIT_STRING = 315; -FlinkSqlParserLexer.IDENTIFIER_BASE = 316; - -FlinkSqlParserLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; - -FlinkSqlParserLexer.prototype.modeNames = [ "DEFAULT_MODE" ]; - -FlinkSqlParserLexer.prototype.literalNames = [ null, null, null, null, "'SELECT'", - "'FROM'", "'ADD'", "'AS'", - "'ALL'", "'ANY'", "'DISTINCT'", - "'WHERE'", "'GROUP'", "'BY'", - "'GROUPING'", "'SETS'", "'CUBE'", - "'ROLLUP'", "'ORDER'", "'HAVING'", - "'LIMIT'", "'AT'", "'OR'", - "'AND'", "'IN'", "'NOT'", - "'NO'", "'EXISTS'", "'BETWEEN'", - "'LIKE'", "'RLIKE'", "'IS'", - "'TRUE'", "'FALSE'", "'NULLS'", - "'ASC'", "'DESC'", "'FOR'", - "'INTERVAL'", "'CASE'", "'WHEN'", - "'THEN'", "'ELSE'", "'END'", - "'JOIN'", "'CROSS'", "'OUTER'", - "'INNER'", "'LEFT'", "'SEMI'", - "'RIGHT'", "'FULL'", "'NATURAL'", - "'ON'", "'PIVOT'", "'LATERAL'", - "'WINDOW'", "'OVER'", "'PARTITION'", - "'RANGE'", "'ROWS'", "'UNBOUNDED'", - "'PRECEDING'", "'FOLLOWING'", - "'CURRENT'", "'FIRST'", "'AFTER'", - "'LAST'", "'WITH'", "'VALUES'", - "'CREATE'", "'TABLE'", "'DIRECTORY'", - "'VIEW'", "'REPLACE'", "'INSERT'", - "'DELETE'", "'INTO'", "'DESCRIBE'", - "'EXPLAIN'", "'FORMAT'", - "'LOGICAL'", "'CODEGEN'", - "'COST'", "'CAST'", "'SHOW'", - "'TABLES'", "'COLUMNS'", - "'COLUMN'", "'USE'", "'PARTITIONS'", - "'FUNCTIONS'", "'DROP'", - "'UNION'", "'EXCEPT'", "'SETMINUS'", - "'INTERSECT'", "'TO'", "'TABLESAMPLE'", - "'STRATIFY'", "'ALTER'", - "'RENAME'", "'STRUCT'", "'COMMENT'", - "'SET'", "'RESET'", "'DATA'", - "'START'", "'TRANSACTION'", - "'COMMIT'", "'ROLLBACK'", - "'MACRO'", "'IGNORE'", "'BOTH'", - "'LEADING'", "'TRAILING'", - "'IF'", "'POSITION'", "'EXTRACT'", - "'EQ'", "'NSEQ'", "'NEQ'", - "'NEQJ'", "'LT'", "'LTE'", - "'GT'", "'GTE'", "'PLUS'", - "'MINUS'", "'ASTERISK'", - "'SLASH'", "'PERCENT'", "'DIV'", - "'TILDE'", "'AMPERSAND'", - "'PIPE'", "'CONCAT_PIPE'", - "'HAT'", "'PERCENTLIT'", - "'BUCKET'", "'OUT'", "'OF'", - "'SORT'", "'CLUSTER'", "'DISTRIBUTE'", - "'OVERWRITE'", "'TRANSFORM'", - "'REDUCE'", "'USING'", "'SERDE'", - "'SERDEPROPERTIES'", "'RECORDREADER'", - "'RECORDWRITER'", "'DELIMITED'", - "'FIELDS'", "'TERMINATED'", - "'COLLECTION'", "'ITEMS'", - "'KEYS'", "'ESCAPED'", "'LINES'", - "'SEPARATED'", "'FUNCTION'", - "'EXTENDED'", "'REFRESH'", - "'CLEAR'", "'CACHE'", "'UNCACHE'", - "'LAZY'", "'FORMATTED'", - "'GLOBAL'", "'TEMPORARY'", - "'OPTIONS'", "'UNSET'", "'TBLPROPERTIES'", - "'DBPROPERTIES'", "'BUCKETS'", - "'SKEWED'", "'STORED'", "'DIRECTORIES'", - "'LOCATION'", "'EXCHANGE'", - "'ARCHIVE'", "'UNARCHIVE'", - "'FILEFORMAT'", "'TOUCH'", - "'COMPACT'", "'CONCATENATE'", - "'CHANGE'", "'CASCADE'", - "'RESTRICT'", "'CLUSTERED'", - "'SORTED'", "'PURGE'", "'INPUTFORMAT'", - "'OUTPUTFORMAT'", "'DATABASE'", - "'DATABASES'", "'DFS'", "'TRUNCATE'", - "'ANALYZE'", "'COMPUTE'", - "'LIST'", "'STATISTICS'", - "'PARTITIONED'", "'EXTERNAL'", - "'DEFINED'", "'REVOKE'", - "'GRANT'", "'LOCK'", "'UNLOCK'", - "'MSCK'", "'REPAIR'", "'RECOVER'", - "'EXPORT'", "'IMPORT'", "'LOAD'", - "'ROLE'", "'ROLES'", "'COMPACTIONS'", - "'PRINCIPALS'", "'TRANSACTIONS'", - "'INDEX'", "'INDEXES'", "'LOCKS'", - "'OPTION'", "'ANTI'", "'LOCAL'", - "'INPATH'", "'WATERMARK'", - "'UNNEST'", "'MATCH_RECOGNIZE'", - "'MEASURES'", "'ONE'", "'PER'", - "'MATCH'", "'SKIP1'", "'NEXT'", - "'PAST'", "'PATTERN'", "'WITHIN'", - "'DEFINE'", "'BIGINT_LITERAL'", - "'SMALLINT_LITERAL'", "'TINYINT_LITERAL'", - "'INTEGER_VALUE'", "'DECIMAL_VALUE'", - "'DOUBLE_LITERAL'", "'BIGDECIMAL_LITERAL'", - "'IDENTIFIER'", "'BACKQUOTED_IDENTIFIER'", - "'SIMPLE_COMMENT'", "'BRACKETED_EMPTY_COMMENT'", - "'BRACKETED_COMMENT'", "'WS'", - "'UNRECOGNIZED'", "'SYSTEM'", - "'STRING'", "'ARRAY'", "'MAP'", - "'CHAR'", "'VARCHAR'", "'BINARY'", - "'VARBINARY'", "'BYTES'", - "'DECIMAL'", "'TINYINT'", - "'SMALLINT'", "'INT'", "'BIGINT'", - "'FLOAT'", "'DOUBLE'", "'DATE'", - "'TIME'", "'TIMESTAMP'", - "'MULTISET'", "'BOOLEAN'", - "'RAW'", "'ROW'", "'NULL'", - "'='", "'>'", "'<'", "'!'", - "'~'", "'|'", "'&'", "'^'", - "'.'", "'['", "']'", "'('", - "')'", "','", "';'", "'@'", - "'0'", "'1'", "'2'", "'''", - "'\"'", "'`'", "':'", "'*'", - "'_'", "'-'", "'+'", "'%'", - "'--'", "'/'" ]; - -FlinkSqlParserLexer.prototype.symbolicNames = [ null, "SPACE", "COMMENT_INPUT", - "LINE_COMMENT", "SELECT", - "FROM", "ADD", "AS", "ALL", - "ANY", "DISTINCT", "WHERE", - "GROUP", "BY", "GROUPING", - "SETS", "CUBE", "ROLLUP", - "ORDER", "HAVING", "LIMIT", - "AT", "OR", "AND", "IN", - "NOT", "NO", "EXISTS", "BETWEEN", - "LIKE", "RLIKE", "IS", "TRUE", - "FALSE", "NULLS", "ASC", - "DESC", "FOR", "INTERVAL", - "CASE", "WHEN", "THEN", - "ELSE", "END", "JOIN", "CROSS", - "OUTER", "INNER", "LEFT", - "SEMI", "RIGHT", "FULL", - "NATURAL", "ON", "PIVOT", - "LATERAL", "WINDOW", "OVER", - "PARTITION", "RANGE", "ROWS", - "UNBOUNDED", "PRECEDING", - "FOLLOWING", "CURRENT", - "FIRST", "AFTER", "LAST", - "WITH", "VALUES", "CREATE", - "TABLE", "DIRECTORY", "VIEW", - "REPLACE", "INSERT", "DELETE", - "INTO", "DESCRIBE", "EXPLAIN", - "FORMAT", "LOGICAL", "CODEGEN", - "COST", "CAST", "SHOW", - "TABLES", "COLUMNS", "COLUMN", - "USE", "PARTITIONS", "FUNCTIONS", - "DROP", "UNION", "EXCEPT", - "SETMINUS", "INTERSECT", - "TO", "TABLESAMPLE", "STRATIFY", - "ALTER", "RENAME", "STRUCT", - "COMMENT", "SET", "RESET", - "DATA", "START", "TRANSACTION", - "COMMIT", "ROLLBACK", "MACRO", - "IGNORE", "BOTH", "LEADING", - "TRAILING", "IF", "POSITION", - "EXTRACT", "EQ", "NSEQ", - "NEQ", "NEQJ", "LT", "LTE", - "GT", "GTE", "PLUS", "MINUS", - "ASTERISK", "SLASH", "PERCENT", - "DIV", "TILDE", "AMPERSAND", - "PIPE", "CONCAT_PIPE", "HAT", - "PERCENTLIT", "BUCKET", - "OUT", "OF", "SORT", "CLUSTER", - "DISTRIBUTE", "OVERWRITE", - "TRANSFORM", "REDUCE", "USING", - "SERDE", "SERDEPROPERTIES", - "RECORDREADER", "RECORDWRITER", - "DELIMITED", "FIELDS", "TERMINATED", - "COLLECTION", "ITEMS", "KEYS", - "ESCAPED", "LINES", "SEPARATED", - "FUNCTION", "EXTENDED", - "REFRESH", "CLEAR", "CACHE", - "UNCACHE", "LAZY", "FORMATTED", - "GLOBAL", "TEMPORARY", "OPTIONS", - "UNSET", "TBLPROPERTIES", - "DBPROPERTIES", "BUCKETS", - "SKEWED", "STORED", "DIRECTORIES", - "LOCATION", "EXCHANGE", - "ARCHIVE", "UNARCHIVE", - "FILEFORMAT", "TOUCH", "COMPACT", - "CONCATENATE", "CHANGE", - "CASCADE", "RESTRICT", "CLUSTERED", - "SORTED", "PURGE", "INPUTFORMAT", - "OUTPUTFORMAT", "DATABASE", - "DATABASES", "DFS", "TRUNCATE", - "ANALYZE", "COMPUTE", "LIST", - "STATISTICS", "PARTITIONED", - "EXTERNAL", "DEFINED", "REVOKE", - "GRANT", "LOCK", "UNLOCK", - "MSCK", "REPAIR", "RECOVER", - "EXPORT", "IMPORT", "LOAD", - "ROLE", "ROLES", "COMPACTIONS", - "PRINCIPALS", "TRANSACTIONS", - "INDEX", "INDEXES", "LOCKS", - "OPTION", "ANTI", "LOCAL", - "INPATH", "WATERMARK", "UNNEST", - "MATCH_RECOGNIZE", "MEASURES", - "ONE", "PER", "MATCH", "SKIP1", - "NEXT", "PAST", "PATTERN", - "WITHIN", "DEFINE", "BIGINT_LITERAL", - "SMALLINT_LITERAL", "TINYINT_LITERAL", - "INTEGER_VALUE", "DECIMAL_VALUE", - "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", - "IDENTIFIER", "BACKQUOTED_IDENTIFIER", - "SIMPLE_COMMENT", "BRACKETED_EMPTY_COMMENT", - "BRACKETED_COMMENT", "WS", - "UNRECOGNIZED", "SYSTEM", - "STRING", "ARRAY", "MAP", - "CHAR", "VARCHAR", "BINARY", - "VARBINARY", "BYTES", "DECIMAL", - "TINYINT", "SMALLINT", "INT", - "BIGINT", "FLOAT", "DOUBLE", - "DATE", "TIME", "TIMESTAMP", - "MULTISET", "BOOLEAN", "RAW", - "ROW", "NULL", "EQUAL_SYMBOL", - "GREATER_SYMBOL", "LESS_SYMBOL", - "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", - "BIT_XOR_OP", "DOT", "LS_BRACKET", - "RS_BRACKET", "LR_BRACKET", - "RR_BRACKET", "COMMA", "SEMICOLON", - "AT_SIGN", "ZERO_DECIMAL", - "ONE_DECIMAL", "TWO_DECIMAL", - "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", - "REVERSE_QUOTE_SYMB", "COLON_SYMB", - "ASTERISK_SIGN", "UNDERLINE_SIGN", - "HYPNEN_SIGN", "ADD_SIGN", - "PENCENT_SIGN", "DOUBLE_HYPNEN_SIGN", - "SLASH_SIGN", "DOT_ID", - "ID", "STRING_LITERAL", - "DECIMAL_LITERAL", "REAL_LITERAL", - "BIT_STRING", "IDENTIFIER_BASE" ]; - -FlinkSqlParserLexer.prototype.ruleNames = [ "SPACE", "COMMENT_INPUT", "LINE_COMMENT", - "SELECT", "FROM", "ADD", "AS", - "ALL", "ANY", "DISTINCT", "WHERE", - "GROUP", "BY", "GROUPING", "SETS", - "CUBE", "ROLLUP", "ORDER", "HAVING", - "LIMIT", "AT", "OR", "AND", - "IN", "NOT", "NO", "EXISTS", - "BETWEEN", "LIKE", "RLIKE", - "IS", "TRUE", "FALSE", "NULLS", - "ASC", "DESC", "FOR", "INTERVAL", - "CASE", "WHEN", "THEN", "ELSE", - "END", "JOIN", "CROSS", "OUTER", - "INNER", "LEFT", "SEMI", "RIGHT", - "FULL", "NATURAL", "ON", "PIVOT", - "LATERAL", "WINDOW", "OVER", - "PARTITION", "RANGE", "ROWS", - "UNBOUNDED", "PRECEDING", "FOLLOWING", - "CURRENT", "FIRST", "AFTER", - "LAST", "WITH", "VALUES", "CREATE", - "TABLE", "DIRECTORY", "VIEW", - "REPLACE", "INSERT", "DELETE", - "INTO", "DESCRIBE", "EXPLAIN", - "FORMAT", "LOGICAL", "CODEGEN", - "COST", "CAST", "SHOW", "TABLES", - "COLUMNS", "COLUMN", "USE", - "PARTITIONS", "FUNCTIONS", "DROP", - "UNION", "EXCEPT", "SETMINUS", - "INTERSECT", "TO", "TABLESAMPLE", - "STRATIFY", "ALTER", "RENAME", - "STRUCT", "COMMENT", "SET", - "RESET", "DATA", "START", "TRANSACTION", - "COMMIT", "ROLLBACK", "MACRO", - "IGNORE", "BOTH", "LEADING", - "TRAILING", "IF", "POSITION", - "EXTRACT", "EQ", "NSEQ", "NEQ", - "NEQJ", "LT", "LTE", "GT", "GTE", - "PLUS", "MINUS", "ASTERISK", - "SLASH", "PERCENT", "DIV", "TILDE", - "AMPERSAND", "PIPE", "CONCAT_PIPE", - "HAT", "PERCENTLIT", "BUCKET", - "OUT", "OF", "SORT", "CLUSTER", - "DISTRIBUTE", "OVERWRITE", "TRANSFORM", - "REDUCE", "USING", "SERDE", - "SERDEPROPERTIES", "RECORDREADER", - "RECORDWRITER", "DELIMITED", - "FIELDS", "TERMINATED", "COLLECTION", - "ITEMS", "KEYS", "ESCAPED", - "LINES", "SEPARATED", "FUNCTION", - "EXTENDED", "REFRESH", "CLEAR", - "CACHE", "UNCACHE", "LAZY", - "FORMATTED", "GLOBAL", "TEMPORARY", - "OPTIONS", "UNSET", "TBLPROPERTIES", - "DBPROPERTIES", "BUCKETS", "SKEWED", - "STORED", "DIRECTORIES", "LOCATION", - "EXCHANGE", "ARCHIVE", "UNARCHIVE", - "FILEFORMAT", "TOUCH", "COMPACT", - "CONCATENATE", "CHANGE", "CASCADE", - "RESTRICT", "CLUSTERED", "SORTED", - "PURGE", "INPUTFORMAT", "OUTPUTFORMAT", - "DATABASE", "DATABASES", "DFS", - "TRUNCATE", "ANALYZE", "COMPUTE", - "LIST", "STATISTICS", "PARTITIONED", - "EXTERNAL", "DEFINED", "REVOKE", - "GRANT", "LOCK", "UNLOCK", "MSCK", - "REPAIR", "RECOVER", "EXPORT", - "IMPORT", "LOAD", "ROLE", "ROLES", - "COMPACTIONS", "PRINCIPALS", - "TRANSACTIONS", "INDEX", "INDEXES", - "LOCKS", "OPTION", "ANTI", "LOCAL", - "INPATH", "WATERMARK", "UNNEST", - "MATCH_RECOGNIZE", "MEASURES", - "ONE", "PER", "MATCH", "SKIP1", - "NEXT", "PAST", "PATTERN", "WITHIN", - "DEFINE", "BIGINT_LITERAL", - "SMALLINT_LITERAL", "TINYINT_LITERAL", - "INTEGER_VALUE", "DECIMAL_VALUE", - "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", - "IDENTIFIER", "BACKQUOTED_IDENTIFIER", - "SIMPLE_COMMENT", "BRACKETED_EMPTY_COMMENT", - "BRACKETED_COMMENT", "WS", "UNRECOGNIZED", - "SYSTEM", "STRING", "ARRAY", - "MAP", "CHAR", "VARCHAR", "BINARY", - "VARBINARY", "BYTES", "DECIMAL", - "TINYINT", "SMALLINT", "INT", - "BIGINT", "FLOAT", "DOUBLE", - "DATE", "TIME", "TIMESTAMP", - "MULTISET", "BOOLEAN", "RAW", - "ROW", "NULL", "EQUAL_SYMBOL", - "GREATER_SYMBOL", "LESS_SYMBOL", - "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", - "DOT", "LS_BRACKET", "RS_BRACKET", - "LR_BRACKET", "RR_BRACKET", - "COMMA", "SEMICOLON", "AT_SIGN", - "ZERO_DECIMAL", "ONE_DECIMAL", - "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", - "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", - "COLON_SYMB", "ASTERISK_SIGN", - "UNDERLINE_SIGN", "HYPNEN_SIGN", - "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", - "DOT_ID", "ID", "STRING_LITERAL", - "DECIMAL_LITERAL", "REAL_LITERAL", - "BIT_STRING", "IDENTIFIER_BASE", - "EXPONENT_NUM_PART", "ID_LITERAL", - "DEC_DIGIT", "DEC_LETTER", "DQUOTA_STRING", - "SQUOTA_STRING", "BIT_STRING_L", - "BQUOTA_STRING" ]; - -FlinkSqlParserLexer.prototype.grammarFileName = "FlinkSqlParser.g4"; - - -exports.FlinkSqlParserLexer = FlinkSqlParserLexer; - diff --git a/src/lib/flinksql/FlinkSqlParserLexer.tokens b/src/lib/flinksql/FlinkSqlParserLexer.tokens deleted file mode 100644 index f1d08a0..0000000 --- a/src/lib/flinksql/FlinkSqlParserLexer.tokens +++ /dev/null @@ -1,622 +0,0 @@ -SPACE=1 -COMMENT_INPUT=2 -LINE_COMMENT=3 -SELECT=4 -FROM=5 -ADD=6 -AS=7 -ALL=8 -ANY=9 -DISTINCT=10 -WHERE=11 -GROUP=12 -BY=13 -GROUPING=14 -SETS=15 -CUBE=16 -ROLLUP=17 -ORDER=18 -HAVING=19 -LIMIT=20 -AT=21 -OR=22 -AND=23 -IN=24 -NOT=25 -NO=26 -EXISTS=27 -BETWEEN=28 -LIKE=29 -RLIKE=30 -IS=31 -TRUE=32 -FALSE=33 -NULLS=34 -ASC=35 -DESC=36 -FOR=37 -INTERVAL=38 -CASE=39 -WHEN=40 -THEN=41 -ELSE=42 -END=43 -JOIN=44 -CROSS=45 -OUTER=46 -INNER=47 -LEFT=48 -SEMI=49 -RIGHT=50 -FULL=51 -NATURAL=52 -ON=53 -PIVOT=54 -LATERAL=55 -WINDOW=56 -OVER=57 -PARTITION=58 -RANGE=59 -ROWS=60 -UNBOUNDED=61 -PRECEDING=62 -FOLLOWING=63 -CURRENT=64 -FIRST=65 -AFTER=66 -LAST=67 -WITH=68 -VALUES=69 -CREATE=70 -TABLE=71 -DIRECTORY=72 -VIEW=73 -REPLACE=74 -INSERT=75 -DELETE=76 -INTO=77 -DESCRIBE=78 -EXPLAIN=79 -FORMAT=80 -LOGICAL=81 -CODEGEN=82 -COST=83 -CAST=84 -SHOW=85 -TABLES=86 -COLUMNS=87 -COLUMN=88 -USE=89 -PARTITIONS=90 -FUNCTIONS=91 -DROP=92 -UNION=93 -EXCEPT=94 -SETMINUS=95 -INTERSECT=96 -TO=97 -TABLESAMPLE=98 -STRATIFY=99 -ALTER=100 -RENAME=101 -STRUCT=102 -COMMENT=103 -SET=104 -RESET=105 -DATA=106 -START=107 -TRANSACTION=108 -COMMIT=109 -ROLLBACK=110 -MACRO=111 -IGNORE=112 -BOTH=113 -LEADING=114 -TRAILING=115 -IF=116 -POSITION=117 -EXTRACT=118 -EQ=119 -NSEQ=120 -NEQ=121 -NEQJ=122 -LT=123 -LTE=124 -GT=125 -GTE=126 -PLUS=127 -MINUS=128 -ASTERISK=129 -SLASH=130 -PERCENT=131 -DIV=132 -TILDE=133 -AMPERSAND=134 -PIPE=135 -CONCAT_PIPE=136 -HAT=137 -PERCENTLIT=138 -BUCKET=139 -OUT=140 -OF=141 -SORT=142 -CLUSTER=143 -DISTRIBUTE=144 -OVERWRITE=145 -TRANSFORM=146 -REDUCE=147 -USING=148 -SERDE=149 -SERDEPROPERTIES=150 -RECORDREADER=151 -RECORDWRITER=152 -DELIMITED=153 -FIELDS=154 -TERMINATED=155 -COLLECTION=156 -ITEMS=157 -KEYS=158 -ESCAPED=159 -LINES=160 -SEPARATED=161 -FUNCTION=162 -EXTENDED=163 -REFRESH=164 -CLEAR=165 -CACHE=166 -UNCACHE=167 -LAZY=168 -FORMATTED=169 -GLOBAL=170 -TEMPORARY=171 -OPTIONS=172 -UNSET=173 -TBLPROPERTIES=174 -DBPROPERTIES=175 -BUCKETS=176 -SKEWED=177 -STORED=178 -DIRECTORIES=179 -LOCATION=180 -EXCHANGE=181 -ARCHIVE=182 -UNARCHIVE=183 -FILEFORMAT=184 -TOUCH=185 -COMPACT=186 -CONCATENATE=187 -CHANGE=188 -CASCADE=189 -RESTRICT=190 -CLUSTERED=191 -SORTED=192 -PURGE=193 -INPUTFORMAT=194 -OUTPUTFORMAT=195 -DATABASE=196 -DATABASES=197 -DFS=198 -TRUNCATE=199 -ANALYZE=200 -COMPUTE=201 -LIST=202 -STATISTICS=203 -PARTITIONED=204 -EXTERNAL=205 -DEFINED=206 -REVOKE=207 -GRANT=208 -LOCK=209 -UNLOCK=210 -MSCK=211 -REPAIR=212 -RECOVER=213 -EXPORT=214 -IMPORT=215 -LOAD=216 -ROLE=217 -ROLES=218 -COMPACTIONS=219 -PRINCIPALS=220 -TRANSACTIONS=221 -INDEX=222 -INDEXES=223 -LOCKS=224 -OPTION=225 -ANTI=226 -LOCAL=227 -INPATH=228 -WATERMARK=229 -UNNEST=230 -MATCH_RECOGNIZE=231 -MEASURES=232 -ONE=233 -PER=234 -MATCH=235 -SKIP1=236 -NEXT=237 -PAST=238 -PATTERN=239 -WITHIN=240 -DEFINE=241 -BIGINT_LITERAL=242 -SMALLINT_LITERAL=243 -TINYINT_LITERAL=244 -INTEGER_VALUE=245 -DECIMAL_VALUE=246 -DOUBLE_LITERAL=247 -BIGDECIMAL_LITERAL=248 -IDENTIFIER=249 -BACKQUOTED_IDENTIFIER=250 -SIMPLE_COMMENT=251 -BRACKETED_EMPTY_COMMENT=252 -BRACKETED_COMMENT=253 -WS=254 -UNRECOGNIZED=255 -SYSTEM=256 -STRING=257 -ARRAY=258 -MAP=259 -CHAR=260 -VARCHAR=261 -BINARY=262 -VARBINARY=263 -BYTES=264 -DECIMAL=265 -TINYINT=266 -SMALLINT=267 -INT=268 -BIGINT=269 -FLOAT=270 -DOUBLE=271 -DATE=272 -TIME=273 -TIMESTAMP=274 -MULTISET=275 -BOOLEAN=276 -RAW=277 -ROW=278 -NULL=279 -EQUAL_SYMBOL=280 -GREATER_SYMBOL=281 -LESS_SYMBOL=282 -EXCLAMATION_SYMBOL=283 -BIT_NOT_OP=284 -BIT_OR_OP=285 -BIT_AND_OP=286 -BIT_XOR_OP=287 -DOT=288 -LS_BRACKET=289 -RS_BRACKET=290 -LR_BRACKET=291 -RR_BRACKET=292 -COMMA=293 -SEMICOLON=294 -AT_SIGN=295 -ZERO_DECIMAL=296 -ONE_DECIMAL=297 -TWO_DECIMAL=298 -SINGLE_QUOTE_SYMB=299 -DOUBLE_QUOTE_SYMB=300 -REVERSE_QUOTE_SYMB=301 -COLON_SYMB=302 -ASTERISK_SIGN=303 -UNDERLINE_SIGN=304 -HYPNEN_SIGN=305 -ADD_SIGN=306 -PENCENT_SIGN=307 -DOUBLE_HYPNEN_SIGN=308 -SLASH_SIGN=309 -DOT_ID=310 -ID=311 -STRING_LITERAL=312 -DECIMAL_LITERAL=313 -REAL_LITERAL=314 -BIT_STRING=315 -IDENTIFIER_BASE=316 -'SELECT'=4 -'FROM'=5 -'ADD'=6 -'AS'=7 -'ALL'=8 -'ANY'=9 -'DISTINCT'=10 -'WHERE'=11 -'GROUP'=12 -'BY'=13 -'GROUPING'=14 -'SETS'=15 -'CUBE'=16 -'ROLLUP'=17 -'ORDER'=18 -'HAVING'=19 -'LIMIT'=20 -'AT'=21 -'OR'=22 -'AND'=23 -'IN'=24 -'NOT'=25 -'NO'=26 -'EXISTS'=27 -'BETWEEN'=28 -'LIKE'=29 -'RLIKE'=30 -'IS'=31 -'TRUE'=32 -'FALSE'=33 -'NULLS'=34 -'ASC'=35 -'DESC'=36 -'FOR'=37 -'INTERVAL'=38 -'CASE'=39 -'WHEN'=40 -'THEN'=41 -'ELSE'=42 -'END'=43 -'JOIN'=44 -'CROSS'=45 -'OUTER'=46 -'INNER'=47 -'LEFT'=48 -'SEMI'=49 -'RIGHT'=50 -'FULL'=51 -'NATURAL'=52 -'ON'=53 -'PIVOT'=54 -'LATERAL'=55 -'WINDOW'=56 -'OVER'=57 -'PARTITION'=58 -'RANGE'=59 -'ROWS'=60 -'UNBOUNDED'=61 -'PRECEDING'=62 -'FOLLOWING'=63 -'CURRENT'=64 -'FIRST'=65 -'AFTER'=66 -'LAST'=67 -'WITH'=68 -'VALUES'=69 -'CREATE'=70 -'TABLE'=71 -'DIRECTORY'=72 -'VIEW'=73 -'REPLACE'=74 -'INSERT'=75 -'DELETE'=76 -'INTO'=77 -'DESCRIBE'=78 -'EXPLAIN'=79 -'FORMAT'=80 -'LOGICAL'=81 -'CODEGEN'=82 -'COST'=83 -'CAST'=84 -'SHOW'=85 -'TABLES'=86 -'COLUMNS'=87 -'COLUMN'=88 -'USE'=89 -'PARTITIONS'=90 -'FUNCTIONS'=91 -'DROP'=92 -'UNION'=93 -'EXCEPT'=94 -'SETMINUS'=95 -'INTERSECT'=96 -'TO'=97 -'TABLESAMPLE'=98 -'STRATIFY'=99 -'ALTER'=100 -'RENAME'=101 -'STRUCT'=102 -'COMMENT'=103 -'SET'=104 -'RESET'=105 -'DATA'=106 -'START'=107 -'TRANSACTION'=108 -'COMMIT'=109 -'ROLLBACK'=110 -'MACRO'=111 -'IGNORE'=112 -'BOTH'=113 -'LEADING'=114 -'TRAILING'=115 -'IF'=116 -'POSITION'=117 -'EXTRACT'=118 -'EQ'=119 -'NSEQ'=120 -'NEQ'=121 -'NEQJ'=122 -'LT'=123 -'LTE'=124 -'GT'=125 -'GTE'=126 -'PLUS'=127 -'MINUS'=128 -'ASTERISK'=129 -'SLASH'=130 -'PERCENT'=131 -'DIV'=132 -'TILDE'=133 -'AMPERSAND'=134 -'PIPE'=135 -'CONCAT_PIPE'=136 -'HAT'=137 -'PERCENTLIT'=138 -'BUCKET'=139 -'OUT'=140 -'OF'=141 -'SORT'=142 -'CLUSTER'=143 -'DISTRIBUTE'=144 -'OVERWRITE'=145 -'TRANSFORM'=146 -'REDUCE'=147 -'USING'=148 -'SERDE'=149 -'SERDEPROPERTIES'=150 -'RECORDREADER'=151 -'RECORDWRITER'=152 -'DELIMITED'=153 -'FIELDS'=154 -'TERMINATED'=155 -'COLLECTION'=156 -'ITEMS'=157 -'KEYS'=158 -'ESCAPED'=159 -'LINES'=160 -'SEPARATED'=161 -'FUNCTION'=162 -'EXTENDED'=163 -'REFRESH'=164 -'CLEAR'=165 -'CACHE'=166 -'UNCACHE'=167 -'LAZY'=168 -'FORMATTED'=169 -'GLOBAL'=170 -'TEMPORARY'=171 -'OPTIONS'=172 -'UNSET'=173 -'TBLPROPERTIES'=174 -'DBPROPERTIES'=175 -'BUCKETS'=176 -'SKEWED'=177 -'STORED'=178 -'DIRECTORIES'=179 -'LOCATION'=180 -'EXCHANGE'=181 -'ARCHIVE'=182 -'UNARCHIVE'=183 -'FILEFORMAT'=184 -'TOUCH'=185 -'COMPACT'=186 -'CONCATENATE'=187 -'CHANGE'=188 -'CASCADE'=189 -'RESTRICT'=190 -'CLUSTERED'=191 -'SORTED'=192 -'PURGE'=193 -'INPUTFORMAT'=194 -'OUTPUTFORMAT'=195 -'DATABASE'=196 -'DATABASES'=197 -'DFS'=198 -'TRUNCATE'=199 -'ANALYZE'=200 -'COMPUTE'=201 -'LIST'=202 -'STATISTICS'=203 -'PARTITIONED'=204 -'EXTERNAL'=205 -'DEFINED'=206 -'REVOKE'=207 -'GRANT'=208 -'LOCK'=209 -'UNLOCK'=210 -'MSCK'=211 -'REPAIR'=212 -'RECOVER'=213 -'EXPORT'=214 -'IMPORT'=215 -'LOAD'=216 -'ROLE'=217 -'ROLES'=218 -'COMPACTIONS'=219 -'PRINCIPALS'=220 -'TRANSACTIONS'=221 -'INDEX'=222 -'INDEXES'=223 -'LOCKS'=224 -'OPTION'=225 -'ANTI'=226 -'LOCAL'=227 -'INPATH'=228 -'WATERMARK'=229 -'UNNEST'=230 -'MATCH_RECOGNIZE'=231 -'MEASURES'=232 -'ONE'=233 -'PER'=234 -'MATCH'=235 -'SKIP1'=236 -'NEXT'=237 -'PAST'=238 -'PATTERN'=239 -'WITHIN'=240 -'DEFINE'=241 -'BIGINT_LITERAL'=242 -'SMALLINT_LITERAL'=243 -'TINYINT_LITERAL'=244 -'INTEGER_VALUE'=245 -'DECIMAL_VALUE'=246 -'DOUBLE_LITERAL'=247 -'BIGDECIMAL_LITERAL'=248 -'IDENTIFIER'=249 -'BACKQUOTED_IDENTIFIER'=250 -'SIMPLE_COMMENT'=251 -'BRACKETED_EMPTY_COMMENT'=252 -'BRACKETED_COMMENT'=253 -'WS'=254 -'UNRECOGNIZED'=255 -'SYSTEM'=256 -'STRING'=257 -'ARRAY'=258 -'MAP'=259 -'CHAR'=260 -'VARCHAR'=261 -'BINARY'=262 -'VARBINARY'=263 -'BYTES'=264 -'DECIMAL'=265 -'TINYINT'=266 -'SMALLINT'=267 -'INT'=268 -'BIGINT'=269 -'FLOAT'=270 -'DOUBLE'=271 -'DATE'=272 -'TIME'=273 -'TIMESTAMP'=274 -'MULTISET'=275 -'BOOLEAN'=276 -'RAW'=277 -'ROW'=278 -'NULL'=279 -'='=280 -'>'=281 -'<'=282 -'!'=283 -'~'=284 -'|'=285 -'&'=286 -'^'=287 -'.'=288 -'['=289 -']'=290 -'('=291 -')'=292 -','=293 -';'=294 -'@'=295 -'0'=296 -'1'=297 -'2'=298 -'\''=299 -'"'=300 -'`'=301 -':'=302 -'*'=303 -'_'=304 -'-'=305 -'+'=306 -'%'=307 -'--'=308 -'/'=309 diff --git a/src/lib/flinksql/FlinkSqlParserListener.js b/src/lib/flinksql/FlinkSqlParserListener.js index e9eb74b..6a04116 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.js +++ b/src/lib/flinksql/FlinkSqlParserListener.js @@ -2,7 +2,7 @@ // jshint ignore: start var antlr4 = require('antlr4/index'); -// This class defines a complete listener for a parse tree produced by FlinkSqlParserParser. +// This class defines a complete listener for a parse tree produced by FlinkSqlParser. function FlinkSqlParserListener() { antlr4.tree.ParseTreeListener.call(this); return this; @@ -11,722 +11,1163 @@ function FlinkSqlParserListener() { FlinkSqlParserListener.prototype = Object.create(antlr4.tree.ParseTreeListener.prototype); FlinkSqlParserListener.prototype.constructor = FlinkSqlParserListener; -// Enter a parse tree produced by FlinkSqlParserParser#program. +// Enter a parse tree produced by FlinkSqlParser#program. FlinkSqlParserListener.prototype.enterProgram = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#program. +// Exit a parse tree produced by FlinkSqlParser#program. FlinkSqlParserListener.prototype.exitProgram = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#statement. +// Enter a parse tree produced by FlinkSqlParser#statement. FlinkSqlParserListener.prototype.enterStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#statement. +// Exit a parse tree produced by FlinkSqlParser#statement. FlinkSqlParserListener.prototype.exitStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#sqlStatements. +// Enter a parse tree produced by FlinkSqlParser#sqlStatements. FlinkSqlParserListener.prototype.enterSqlStatements = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#sqlStatements. +// Exit a parse tree produced by FlinkSqlParser#sqlStatements. FlinkSqlParserListener.prototype.exitSqlStatements = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#sqlStatement. +// Enter a parse tree produced by FlinkSqlParser#sqlStatement. FlinkSqlParserListener.prototype.enterSqlStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#sqlStatement. +// Exit a parse tree produced by FlinkSqlParser#sqlStatement. FlinkSqlParserListener.prototype.exitSqlStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#emptyStatement. +// Enter a parse tree produced by FlinkSqlParser#emptyStatement. FlinkSqlParserListener.prototype.enterEmptyStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#emptyStatement. +// Exit a parse tree produced by FlinkSqlParser#emptyStatement. FlinkSqlParserListener.prototype.exitEmptyStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#ddlStatement. +// Enter a parse tree produced by FlinkSqlParser#ddlStatement. FlinkSqlParserListener.prototype.enterDdlStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#ddlStatement. +// Exit a parse tree produced by FlinkSqlParser#ddlStatement. FlinkSqlParserListener.prototype.exitDdlStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#dmlStatement. +// Enter a parse tree produced by FlinkSqlParser#dmlStatement. FlinkSqlParserListener.prototype.enterDmlStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#dmlStatement. +// Exit a parse tree produced by FlinkSqlParser#dmlStatement. FlinkSqlParserListener.prototype.exitDmlStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#createTable. +// Enter a parse tree produced by FlinkSqlParser#describeStatement. +FlinkSqlParserListener.prototype.enterDescribeStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#describeStatement. +FlinkSqlParserListener.prototype.exitDescribeStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#explainStatement. +FlinkSqlParserListener.prototype.enterExplainStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#explainStatement. +FlinkSqlParserListener.prototype.exitExplainStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#useStatement. +FlinkSqlParserListener.prototype.enterUseStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#useStatement. +FlinkSqlParserListener.prototype.exitUseStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#showStatememt. +FlinkSqlParserListener.prototype.enterShowStatememt = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#showStatememt. +FlinkSqlParserListener.prototype.exitShowStatememt = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createTable. FlinkSqlParserListener.prototype.enterCreateTable = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#createTable. +// Exit a parse tree produced by FlinkSqlParser#createTable. FlinkSqlParserListener.prototype.exitCreateTable = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#columnOptionDefinition. +// Enter a parse tree produced by FlinkSqlParser#columnOptionDefinition. FlinkSqlParserListener.prototype.enterColumnOptionDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#columnOptionDefinition. +// Exit a parse tree produced by FlinkSqlParser#columnOptionDefinition. FlinkSqlParserListener.prototype.exitColumnOptionDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#columnName. +// Enter a parse tree produced by FlinkSqlParser#columnName. FlinkSqlParserListener.prototype.enterColumnName = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#columnName. +// Exit a parse tree produced by FlinkSqlParser#columnName. FlinkSqlParserListener.prototype.exitColumnName = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#columnType. +// Enter a parse tree produced by FlinkSqlParser#columnType. FlinkSqlParserListener.prototype.enterColumnType = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#columnType. +// Exit a parse tree produced by FlinkSqlParser#columnType. FlinkSqlParserListener.prototype.exitColumnType = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#partitionDefinition. +// Enter a parse tree produced by FlinkSqlParser#lengthOneDimension. +FlinkSqlParserListener.prototype.enterLengthOneDimension = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#lengthOneDimension. +FlinkSqlParserListener.prototype.exitLengthOneDimension = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#commentSpec. +FlinkSqlParserListener.prototype.enterCommentSpec = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#commentSpec. +FlinkSqlParserListener.prototype.exitCommentSpec = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#watermarkDefinition. +FlinkSqlParserListener.prototype.enterWatermarkDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#watermarkDefinition. +FlinkSqlParserListener.prototype.exitWatermarkDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#partitionDefinition. FlinkSqlParserListener.prototype.enterPartitionDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#partitionDefinition. +// Exit a parse tree produced by FlinkSqlParser#partitionDefinition. FlinkSqlParserListener.prototype.exitPartitionDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#partitionColumnDefinition. -FlinkSqlParserListener.prototype.enterPartitionColumnDefinition = function(ctx) { +// Enter a parse tree produced by FlinkSqlParser#transformList. +FlinkSqlParserListener.prototype.enterTransformList = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#partitionColumnDefinition. -FlinkSqlParserListener.prototype.exitPartitionColumnDefinition = function(ctx) { +// Exit a parse tree produced by FlinkSqlParser#transformList. +FlinkSqlParserListener.prototype.exitTransformList = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#partitionColumnName. -FlinkSqlParserListener.prototype.enterPartitionColumnName = function(ctx) { +// Enter a parse tree produced by FlinkSqlParser#identityTransform. +FlinkSqlParserListener.prototype.enterIdentityTransform = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#partitionColumnName. -FlinkSqlParserListener.prototype.exitPartitionColumnName = function(ctx) { +// Exit a parse tree produced by FlinkSqlParser#identityTransform. +FlinkSqlParserListener.prototype.exitIdentityTransform = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#createDatabase. +// Enter a parse tree produced by FlinkSqlParser#applyTransform. +FlinkSqlParserListener.prototype.enterApplyTransform = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#applyTransform. +FlinkSqlParserListener.prototype.exitApplyTransform = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#transformArgument. +FlinkSqlParserListener.prototype.enterTransformArgument = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#transformArgument. +FlinkSqlParserListener.prototype.exitTransformArgument = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#likeDefinition. +FlinkSqlParserListener.prototype.enterLikeDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#likeDefinition. +FlinkSqlParserListener.prototype.exitLikeDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#likeOption. +FlinkSqlParserListener.prototype.enterLikeOption = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#likeOption. +FlinkSqlParserListener.prototype.exitLikeOption = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createCatalog. +FlinkSqlParserListener.prototype.enterCreateCatalog = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#createCatalog. +FlinkSqlParserListener.prototype.exitCreateCatalog = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#createDatabase. FlinkSqlParserListener.prototype.enterCreateDatabase = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#createDatabase. +// Exit a parse tree produced by FlinkSqlParser#createDatabase. FlinkSqlParserListener.prototype.exitCreateDatabase = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#createView. +// Enter a parse tree produced by FlinkSqlParser#createView. FlinkSqlParserListener.prototype.enterCreateView = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#createView. +// Exit a parse tree produced by FlinkSqlParser#createView. FlinkSqlParserListener.prototype.exitCreateView = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#createFunction. +// Enter a parse tree produced by FlinkSqlParser#createFunction. FlinkSqlParserListener.prototype.enterCreateFunction = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#createFunction. +// Exit a parse tree produced by FlinkSqlParser#createFunction. FlinkSqlParserListener.prototype.exitCreateFunction = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#alterTable. +// Enter a parse tree produced by FlinkSqlParser#alterTable. FlinkSqlParserListener.prototype.enterAlterTable = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#alterTable. +// Exit a parse tree produced by FlinkSqlParser#alterTable. FlinkSqlParserListener.prototype.exitAlterTable = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#renameDefinition. +// Enter a parse tree produced by FlinkSqlParser#renameDefinition. FlinkSqlParserListener.prototype.enterRenameDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#renameDefinition. +// Exit a parse tree produced by FlinkSqlParser#renameDefinition. FlinkSqlParserListener.prototype.exitRenameDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#setKeyValueDefinition. +// Enter a parse tree produced by FlinkSqlParser#setKeyValueDefinition. FlinkSqlParserListener.prototype.enterSetKeyValueDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#setKeyValueDefinition. +// Exit a parse tree produced by FlinkSqlParser#setKeyValueDefinition. FlinkSqlParserListener.prototype.exitSetKeyValueDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#alterDatabase. +// Enter a parse tree produced by FlinkSqlParser#alterDatabase. FlinkSqlParserListener.prototype.enterAlterDatabase = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#alterDatabase. +// Exit a parse tree produced by FlinkSqlParser#alterDatabase. FlinkSqlParserListener.prototype.exitAlterDatabase = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#alterFunction. +// Enter a parse tree produced by FlinkSqlParser#alterFunction. FlinkSqlParserListener.prototype.enterAlterFunction = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#alterFunction. +// Exit a parse tree produced by FlinkSqlParser#alterFunction. FlinkSqlParserListener.prototype.exitAlterFunction = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#dropTable. +// Enter a parse tree produced by FlinkSqlParser#dropTable. FlinkSqlParserListener.prototype.enterDropTable = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#dropTable. +// Exit a parse tree produced by FlinkSqlParser#dropTable. FlinkSqlParserListener.prototype.exitDropTable = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#dropDatabase. +// Enter a parse tree produced by FlinkSqlParser#dropDatabase. FlinkSqlParserListener.prototype.enterDropDatabase = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#dropDatabase. +// Exit a parse tree produced by FlinkSqlParser#dropDatabase. FlinkSqlParserListener.prototype.exitDropDatabase = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#dropView. +// Enter a parse tree produced by FlinkSqlParser#dropView. FlinkSqlParserListener.prototype.enterDropView = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#dropView. +// Exit a parse tree produced by FlinkSqlParser#dropView. FlinkSqlParserListener.prototype.exitDropView = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#dropFunction. +// Enter a parse tree produced by FlinkSqlParser#dropFunction. FlinkSqlParserListener.prototype.enterDropFunction = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#dropFunction. +// Exit a parse tree produced by FlinkSqlParser#dropFunction. FlinkSqlParserListener.prototype.exitDropFunction = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#insertStatement. +// Enter a parse tree produced by FlinkSqlParser#insertStatement. FlinkSqlParserListener.prototype.enterInsertStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#insertStatement. +// Exit a parse tree produced by FlinkSqlParser#insertStatement. FlinkSqlParserListener.prototype.exitInsertStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#insertPartitionDefinition. +// Enter a parse tree produced by FlinkSqlParser#insertPartitionDefinition. FlinkSqlParserListener.prototype.enterInsertPartitionDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#insertPartitionDefinition. +// Exit a parse tree produced by FlinkSqlParser#insertPartitionDefinition. FlinkSqlParserListener.prototype.exitInsertPartitionDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#valuesDefinition. +// Enter a parse tree produced by FlinkSqlParser#valuesDefinition. FlinkSqlParserListener.prototype.enterValuesDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#valuesDefinition. +// Exit a parse tree produced by FlinkSqlParser#valuesDefinition. FlinkSqlParserListener.prototype.exitValuesDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#valuesRowDefinition. +// Enter a parse tree produced by FlinkSqlParser#valuesRowDefinition. FlinkSqlParserListener.prototype.enterValuesRowDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#valuesRowDefinition. +// Exit a parse tree produced by FlinkSqlParser#valuesRowDefinition. FlinkSqlParserListener.prototype.exitValuesRowDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#allValueDifinition. -FlinkSqlParserListener.prototype.enterAllValueDifinition = function(ctx) { -}; - -// Exit a parse tree produced by FlinkSqlParserParser#allValueDifinition. -FlinkSqlParserListener.prototype.exitAllValueDifinition = function(ctx) { -}; - - -// Enter a parse tree produced by FlinkSqlParserParser#queryStatement. +// Enter a parse tree produced by FlinkSqlParser#queryStatement. FlinkSqlParserListener.prototype.enterQueryStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#queryStatement. +// Exit a parse tree produced by FlinkSqlParser#queryStatement. FlinkSqlParserListener.prototype.exitQueryStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#selectStatement. +// Enter a parse tree produced by FlinkSqlParser#valuesCaluse. +FlinkSqlParserListener.prototype.enterValuesCaluse = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#valuesCaluse. +FlinkSqlParserListener.prototype.exitValuesCaluse = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#selectStatement. FlinkSqlParserListener.prototype.enterSelectStatement = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#selectStatement. +// Exit a parse tree produced by FlinkSqlParser#selectStatement. FlinkSqlParserListener.prototype.exitSelectStatement = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#projectItemDefinition. +// Enter a parse tree produced by FlinkSqlParser#selectClause. +FlinkSqlParserListener.prototype.enterSelectClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#selectClause. +FlinkSqlParserListener.prototype.exitSelectClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#projectItemDefinition. FlinkSqlParserListener.prototype.enterProjectItemDefinition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#projectItemDefinition. +// Exit a parse tree produced by FlinkSqlParser#projectItemDefinition. FlinkSqlParserListener.prototype.exitProjectItemDefinition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#tableExpression. +// Enter a parse tree produced by FlinkSqlParser#fromClause. +FlinkSqlParserListener.prototype.enterFromClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#fromClause. +FlinkSqlParserListener.prototype.exitFromClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#tableExpression. FlinkSqlParserListener.prototype.enterTableExpression = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#tableExpression. +// Exit a parse tree produced by FlinkSqlParser#tableExpression. FlinkSqlParserListener.prototype.exitTableExpression = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#tableReference. +// Enter a parse tree produced by FlinkSqlParser#tableReference. FlinkSqlParserListener.prototype.enterTableReference = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#tableReference. +// Exit a parse tree produced by FlinkSqlParser#tableReference. FlinkSqlParserListener.prototype.exitTableReference = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#tablePrimary. +// Enter a parse tree produced by FlinkSqlParser#tablePrimary. FlinkSqlParserListener.prototype.enterTablePrimary = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#tablePrimary. +// Exit a parse tree produced by FlinkSqlParser#tablePrimary. FlinkSqlParserListener.prototype.exitTablePrimary = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#expression. +// Enter a parse tree produced by FlinkSqlParser#joinCondition. +FlinkSqlParserListener.prototype.enterJoinCondition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#joinCondition. +FlinkSqlParserListener.prototype.exitJoinCondition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#whereClause. +FlinkSqlParserListener.prototype.enterWhereClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#whereClause. +FlinkSqlParserListener.prototype.exitWhereClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#groupByClause. +FlinkSqlParserListener.prototype.enterGroupByClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#groupByClause. +FlinkSqlParserListener.prototype.exitGroupByClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#groupItemDefinition. +FlinkSqlParserListener.prototype.enterGroupItemDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#groupItemDefinition. +FlinkSqlParserListener.prototype.exitGroupItemDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#havingClause. +FlinkSqlParserListener.prototype.enterHavingClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#havingClause. +FlinkSqlParserListener.prototype.exitHavingClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#orderByCaluse. +FlinkSqlParserListener.prototype.enterOrderByCaluse = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#orderByCaluse. +FlinkSqlParserListener.prototype.exitOrderByCaluse = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#orderItemDefition. +FlinkSqlParserListener.prototype.enterOrderItemDefition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#orderItemDefition. +FlinkSqlParserListener.prototype.exitOrderItemDefition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#limitClause. +FlinkSqlParserListener.prototype.enterLimitClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#limitClause. +FlinkSqlParserListener.prototype.exitLimitClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#windowClause. +FlinkSqlParserListener.prototype.enterWindowClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#windowClause. +FlinkSqlParserListener.prototype.exitWindowClause = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#namedWindow. +FlinkSqlParserListener.prototype.enterNamedWindow = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#namedWindow. +FlinkSqlParserListener.prototype.exitNamedWindow = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#windowSpec. +FlinkSqlParserListener.prototype.enterWindowSpec = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#windowSpec. +FlinkSqlParserListener.prototype.exitWindowSpec = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#sortItem. +FlinkSqlParserListener.prototype.enterSortItem = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#sortItem. +FlinkSqlParserListener.prototype.exitSortItem = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#windowFrame. +FlinkSqlParserListener.prototype.enterWindowFrame = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#windowFrame. +FlinkSqlParserListener.prototype.exitWindowFrame = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#frameBound. +FlinkSqlParserListener.prototype.enterFrameBound = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#frameBound. +FlinkSqlParserListener.prototype.exitFrameBound = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#expression. FlinkSqlParserListener.prototype.enterExpression = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#expression. +// Exit a parse tree produced by FlinkSqlParser#expression. FlinkSqlParserListener.prototype.exitExpression = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#logicalNot. +// Enter a parse tree produced by FlinkSqlParser#logicalNot. FlinkSqlParserListener.prototype.enterLogicalNot = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#logicalNot. +// Exit a parse tree produced by FlinkSqlParser#logicalNot. FlinkSqlParserListener.prototype.exitLogicalNot = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#predicated. +// Enter a parse tree produced by FlinkSqlParser#predicated. FlinkSqlParserListener.prototype.enterPredicated = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#predicated. +// Exit a parse tree produced by FlinkSqlParser#predicated. FlinkSqlParserListener.prototype.exitPredicated = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#logicalBinary. +// Enter a parse tree produced by FlinkSqlParser#exists. +FlinkSqlParserListener.prototype.enterExists = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#exists. +FlinkSqlParserListener.prototype.exitExists = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#logicalBinary. FlinkSqlParserListener.prototype.enterLogicalBinary = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#logicalBinary. +// Exit a parse tree produced by FlinkSqlParser#logicalBinary. FlinkSqlParserListener.prototype.exitLogicalBinary = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#predicate. +// Enter a parse tree produced by FlinkSqlParser#predicate. FlinkSqlParserListener.prototype.enterPredicate = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#predicate. +// Exit a parse tree produced by FlinkSqlParser#predicate. FlinkSqlParserListener.prototype.exitPredicate = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#valueExpressionDefault. +// Enter a parse tree produced by FlinkSqlParser#valueExpressionDefault. FlinkSqlParserListener.prototype.enterValueExpressionDefault = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#valueExpressionDefault. +// Exit a parse tree produced by FlinkSqlParser#valueExpressionDefault. FlinkSqlParserListener.prototype.exitValueExpressionDefault = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#comparison. +// Enter a parse tree produced by FlinkSqlParser#comparison. FlinkSqlParserListener.prototype.enterComparison = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#comparison. +// Exit a parse tree produced by FlinkSqlParser#comparison. FlinkSqlParserListener.prototype.exitComparison = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#arithmeticBinary. +// Enter a parse tree produced by FlinkSqlParser#arithmeticBinary. FlinkSqlParserListener.prototype.enterArithmeticBinary = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#arithmeticBinary. +// Exit a parse tree produced by FlinkSqlParser#arithmeticBinary. FlinkSqlParserListener.prototype.exitArithmeticBinary = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#arithmeticUnary. +// Enter a parse tree produced by FlinkSqlParser#arithmeticUnary. FlinkSqlParserListener.prototype.enterArithmeticUnary = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#arithmeticUnary. +// Exit a parse tree produced by FlinkSqlParser#arithmeticUnary. FlinkSqlParserListener.prototype.exitArithmeticUnary = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#simpleCase. +// Enter a parse tree produced by FlinkSqlParser#dereference. +FlinkSqlParserListener.prototype.enterDereference = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dereference. +FlinkSqlParserListener.prototype.exitDereference = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#simpleCase. FlinkSqlParserListener.prototype.enterSimpleCase = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#simpleCase. +// Exit a parse tree produced by FlinkSqlParser#simpleCase. FlinkSqlParserListener.prototype.exitSimpleCase = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#constantDefault. -FlinkSqlParserListener.prototype.enterConstantDefault = function(ctx) { +// Enter a parse tree produced by FlinkSqlParser#columnReference. +FlinkSqlParserListener.prototype.enterColumnReference = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#constantDefault. -FlinkSqlParserListener.prototype.exitConstantDefault = function(ctx) { +// Exit a parse tree produced by FlinkSqlParser#columnReference. +FlinkSqlParserListener.prototype.exitColumnReference = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#parenthesizedExpression. -FlinkSqlParserListener.prototype.enterParenthesizedExpression = function(ctx) { -}; - -// Exit a parse tree produced by FlinkSqlParserParser#parenthesizedExpression. -FlinkSqlParserListener.prototype.exitParenthesizedExpression = function(ctx) { -}; - - -// Enter a parse tree produced by FlinkSqlParserParser#last. +// Enter a parse tree produced by FlinkSqlParser#last. FlinkSqlParserListener.prototype.enterLast = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#last. +// Exit a parse tree produced by FlinkSqlParser#last. FlinkSqlParserListener.prototype.exitLast = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#star. +// Enter a parse tree produced by FlinkSqlParser#star. FlinkSqlParserListener.prototype.enterStar = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#star. +// Exit a parse tree produced by FlinkSqlParser#star. FlinkSqlParserListener.prototype.exitStar = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#subscript. +// Enter a parse tree produced by FlinkSqlParser#subscript. FlinkSqlParserListener.prototype.enterSubscript = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#subscript. +// Exit a parse tree produced by FlinkSqlParser#subscript. FlinkSqlParserListener.prototype.exitSubscript = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#searchedCase. +// Enter a parse tree produced by FlinkSqlParser#subqueryExpression. +FlinkSqlParserListener.prototype.enterSubqueryExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#subqueryExpression. +FlinkSqlParserListener.prototype.exitSubqueryExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#constantDefault. +FlinkSqlParserListener.prototype.enterConstantDefault = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#constantDefault. +FlinkSqlParserListener.prototype.exitConstantDefault = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#parenthesizedExpression. +FlinkSqlParserListener.prototype.enterParenthesizedExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#parenthesizedExpression. +FlinkSqlParserListener.prototype.exitParenthesizedExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#functionCall. +FlinkSqlParserListener.prototype.enterFunctionCall = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#functionCall. +FlinkSqlParserListener.prototype.exitFunctionCall = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#searchedCase. FlinkSqlParserListener.prototype.enterSearchedCase = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#searchedCase. +// Exit a parse tree produced by FlinkSqlParser#searchedCase. FlinkSqlParserListener.prototype.exitSearchedCase = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#position. +// Enter a parse tree produced by FlinkSqlParser#position. FlinkSqlParserListener.prototype.enterPosition = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#position. +// Exit a parse tree produced by FlinkSqlParser#position. FlinkSqlParserListener.prototype.exitPosition = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#first. +// Enter a parse tree produced by FlinkSqlParser#first. FlinkSqlParserListener.prototype.enterFirst = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#first. +// Exit a parse tree produced by FlinkSqlParser#first. FlinkSqlParserListener.prototype.exitFirst = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#tableAlias. +// Enter a parse tree produced by FlinkSqlParser#functionName. +FlinkSqlParserListener.prototype.enterFunctionName = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#functionName. +FlinkSqlParserListener.prototype.exitFunctionName = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#dereferenceDefinition. +FlinkSqlParserListener.prototype.enterDereferenceDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#dereferenceDefinition. +FlinkSqlParserListener.prototype.exitDereferenceDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#qualifiedName. +FlinkSqlParserListener.prototype.enterQualifiedName = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#qualifiedName. +FlinkSqlParserListener.prototype.exitQualifiedName = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#interval. +FlinkSqlParserListener.prototype.enterInterval = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#interval. +FlinkSqlParserListener.prototype.exitInterval = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#errorCapturingMultiUnitsInterval. +FlinkSqlParserListener.prototype.enterErrorCapturingMultiUnitsInterval = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#errorCapturingMultiUnitsInterval. +FlinkSqlParserListener.prototype.exitErrorCapturingMultiUnitsInterval = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#multiUnitsInterval. +FlinkSqlParserListener.prototype.enterMultiUnitsInterval = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#multiUnitsInterval. +FlinkSqlParserListener.prototype.exitMultiUnitsInterval = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#errorCapturingUnitToUnitInterval. +FlinkSqlParserListener.prototype.enterErrorCapturingUnitToUnitInterval = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#errorCapturingUnitToUnitInterval. +FlinkSqlParserListener.prototype.exitErrorCapturingUnitToUnitInterval = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#unitToUnitInterval. +FlinkSqlParserListener.prototype.enterUnitToUnitInterval = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#unitToUnitInterval. +FlinkSqlParserListener.prototype.exitUnitToUnitInterval = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#intervalValue. +FlinkSqlParserListener.prototype.enterIntervalValue = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#intervalValue. +FlinkSqlParserListener.prototype.exitIntervalValue = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#tableAlias. FlinkSqlParserListener.prototype.enterTableAlias = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#tableAlias. +// Exit a parse tree produced by FlinkSqlParser#tableAlias. FlinkSqlParserListener.prototype.exitTableAlias = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#identifierList. +// Enter a parse tree produced by FlinkSqlParser#errorCapturingIdentifier. +FlinkSqlParserListener.prototype.enterErrorCapturingIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#errorCapturingIdentifier. +FlinkSqlParserListener.prototype.exitErrorCapturingIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#errorIdent. +FlinkSqlParserListener.prototype.enterErrorIdent = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#errorIdent. +FlinkSqlParserListener.prototype.exitErrorIdent = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#realIdent. +FlinkSqlParserListener.prototype.enterRealIdent = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#realIdent. +FlinkSqlParserListener.prototype.exitRealIdent = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#identifierList. FlinkSqlParserListener.prototype.enterIdentifierList = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#identifierList. +// Exit a parse tree produced by FlinkSqlParser#identifierList. FlinkSqlParserListener.prototype.exitIdentifierList = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#identifierSeq. +// Enter a parse tree produced by FlinkSqlParser#identifierSeq. FlinkSqlParserListener.prototype.enterIdentifierSeq = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#identifierSeq. +// Exit a parse tree produced by FlinkSqlParser#identifierSeq. FlinkSqlParserListener.prototype.exitIdentifierSeq = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#identifier. +// Enter a parse tree produced by FlinkSqlParser#identifier. FlinkSqlParserListener.prototype.enterIdentifier = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#identifier. +// Exit a parse tree produced by FlinkSqlParser#identifier. FlinkSqlParserListener.prototype.exitIdentifier = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#unquotedIdentifier. -FlinkSqlParserListener.prototype.enterUnquotedIdentifier = function(ctx) { +// Enter a parse tree produced by FlinkSqlParser#unquotedIdentifierAlternative. +FlinkSqlParserListener.prototype.enterUnquotedIdentifierAlternative = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#unquotedIdentifier. -FlinkSqlParserListener.prototype.exitUnquotedIdentifier = function(ctx) { +// Exit a parse tree produced by FlinkSqlParser#unquotedIdentifierAlternative. +FlinkSqlParserListener.prototype.exitUnquotedIdentifierAlternative = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#quotedIdentifierAlternative. +// Enter a parse tree produced by FlinkSqlParser#quotedIdentifierAlternative. FlinkSqlParserListener.prototype.enterQuotedIdentifierAlternative = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#quotedIdentifierAlternative. +// Exit a parse tree produced by FlinkSqlParser#quotedIdentifierAlternative. FlinkSqlParserListener.prototype.exitQuotedIdentifierAlternative = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#quotedIdentifier. +// Enter a parse tree produced by FlinkSqlParser#unquotedIdentifier. +FlinkSqlParserListener.prototype.enterUnquotedIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#unquotedIdentifier. +FlinkSqlParserListener.prototype.exitUnquotedIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#quotedIdentifier. FlinkSqlParserListener.prototype.enterQuotedIdentifier = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#quotedIdentifier. +// Exit a parse tree produced by FlinkSqlParser#quotedIdentifier. FlinkSqlParserListener.prototype.exitQuotedIdentifier = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#whenClause. +// Enter a parse tree produced by FlinkSqlParser#whenClause. FlinkSqlParserListener.prototype.enterWhenClause = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#whenClause. +// Exit a parse tree produced by FlinkSqlParser#whenClause. FlinkSqlParserListener.prototype.exitWhenClause = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#uidList. +// Enter a parse tree produced by FlinkSqlParser#uidList. FlinkSqlParserListener.prototype.enterUidList = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#uidList. +// Exit a parse tree produced by FlinkSqlParser#uidList. FlinkSqlParserListener.prototype.exitUidList = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#uid. +// Enter a parse tree produced by FlinkSqlParser#uid. FlinkSqlParserListener.prototype.enterUid = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#uid. +// Exit a parse tree produced by FlinkSqlParser#uid. FlinkSqlParserListener.prototype.exitUid = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#withOption. +// Enter a parse tree produced by FlinkSqlParser#withOption. FlinkSqlParserListener.prototype.enterWithOption = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#withOption. +// Exit a parse tree produced by FlinkSqlParser#withOption. FlinkSqlParserListener.prototype.exitWithOption = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#ifNotExists. +// Enter a parse tree produced by FlinkSqlParser#ifNotExists. FlinkSqlParserListener.prototype.enterIfNotExists = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#ifNotExists. +// Exit a parse tree produced by FlinkSqlParser#ifNotExists. FlinkSqlParserListener.prototype.exitIfNotExists = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#ifExists. +// Enter a parse tree produced by FlinkSqlParser#ifExists. FlinkSqlParserListener.prototype.enterIfExists = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#ifExists. +// Exit a parse tree produced by FlinkSqlParser#ifExists. FlinkSqlParserListener.prototype.exitIfExists = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#keyValueDefinition. -FlinkSqlParserListener.prototype.enterKeyValueDefinition = function(ctx) { +// Enter a parse tree produced by FlinkSqlParser#tablePropertyList. +FlinkSqlParserListener.prototype.enterTablePropertyList = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#keyValueDefinition. -FlinkSqlParserListener.prototype.exitKeyValueDefinition = function(ctx) { +// Exit a parse tree produced by FlinkSqlParser#tablePropertyList. +FlinkSqlParserListener.prototype.exitTablePropertyList = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#logicalOperator. +// Enter a parse tree produced by FlinkSqlParser#tableProperty. +FlinkSqlParserListener.prototype.enterTableProperty = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#tableProperty. +FlinkSqlParserListener.prototype.exitTableProperty = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#tablePropertyKey. +FlinkSqlParserListener.prototype.enterTablePropertyKey = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#tablePropertyKey. +FlinkSqlParserListener.prototype.exitTablePropertyKey = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#tablePropertyValue. +FlinkSqlParserListener.prototype.enterTablePropertyValue = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#tablePropertyValue. +FlinkSqlParserListener.prototype.exitTablePropertyValue = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#logicalOperator. FlinkSqlParserListener.prototype.enterLogicalOperator = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#logicalOperator. +// Exit a parse tree produced by FlinkSqlParser#logicalOperator. FlinkSqlParserListener.prototype.exitLogicalOperator = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#comparisonOperator. +// Enter a parse tree produced by FlinkSqlParser#comparisonOperator. FlinkSqlParserListener.prototype.enterComparisonOperator = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#comparisonOperator. +// Exit a parse tree produced by FlinkSqlParser#comparisonOperator. FlinkSqlParserListener.prototype.exitComparisonOperator = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#bitOperator. +// Enter a parse tree produced by FlinkSqlParser#bitOperator. FlinkSqlParserListener.prototype.enterBitOperator = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#bitOperator. +// Exit a parse tree produced by FlinkSqlParser#bitOperator. FlinkSqlParserListener.prototype.exitBitOperator = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#mathOperator. +// Enter a parse tree produced by FlinkSqlParser#mathOperator. FlinkSqlParserListener.prototype.enterMathOperator = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#mathOperator. +// Exit a parse tree produced by FlinkSqlParser#mathOperator. FlinkSqlParserListener.prototype.exitMathOperator = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#unaryOperator. +// Enter a parse tree produced by FlinkSqlParser#unaryOperator. FlinkSqlParserListener.prototype.enterUnaryOperator = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#unaryOperator. +// Exit a parse tree produced by FlinkSqlParser#unaryOperator. FlinkSqlParserListener.prototype.exitUnaryOperator = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#fullColumnName. +// Enter a parse tree produced by FlinkSqlParser#fullColumnName. FlinkSqlParserListener.prototype.enterFullColumnName = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#fullColumnName. +// Exit a parse tree produced by FlinkSqlParser#fullColumnName. FlinkSqlParserListener.prototype.exitFullColumnName = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#constant. +// Enter a parse tree produced by FlinkSqlParser#constant. FlinkSqlParserListener.prototype.enterConstant = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#constant. +// Exit a parse tree produced by FlinkSqlParser#constant. FlinkSqlParserListener.prototype.exitConstant = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#stringLiteral. +// Enter a parse tree produced by FlinkSqlParser#stringLiteral. FlinkSqlParserListener.prototype.enterStringLiteral = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#stringLiteral. +// Exit a parse tree produced by FlinkSqlParser#stringLiteral. FlinkSqlParserListener.prototype.exitStringLiteral = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#decimalLiteral. +// Enter a parse tree produced by FlinkSqlParser#decimalLiteral. FlinkSqlParserListener.prototype.enterDecimalLiteral = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#decimalLiteral. +// Exit a parse tree produced by FlinkSqlParser#decimalLiteral. FlinkSqlParserListener.prototype.exitDecimalLiteral = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#booleanLiteral. +// Enter a parse tree produced by FlinkSqlParser#booleanLiteral. FlinkSqlParserListener.prototype.enterBooleanLiteral = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#booleanLiteral. +// Exit a parse tree produced by FlinkSqlParser#booleanLiteral. FlinkSqlParserListener.prototype.exitBooleanLiteral = function(ctx) { }; -// Enter a parse tree produced by FlinkSqlParserParser#setQuantifier. +// Enter a parse tree produced by FlinkSqlParser#setQuantifier. FlinkSqlParserListener.prototype.enterSetQuantifier = function(ctx) { }; -// Exit a parse tree produced by FlinkSqlParserParser#setQuantifier. +// Exit a parse tree produced by FlinkSqlParser#setQuantifier. FlinkSqlParserListener.prototype.exitSetQuantifier = function(ctx) { }; diff --git a/src/lib/flinksql/FlinkSqlParserParser.js b/src/lib/flinksql/FlinkSqlParserParser.js deleted file mode 100644 index 055006a..0000000 --- a/src/lib/flinksql/FlinkSqlParserParser.js +++ /dev/null @@ -1,8994 +0,0 @@ -// Generated from /Users/erindeng/Desktop/dt-sql-parser/src/grammar/flinksql/FlinkSqlParser.g4 by ANTLR 4.8 -// jshint ignore: start -var antlr4 = require('antlr4/index'); -var FlinkSqlParserListener = require('./FlinkSqlParserListener').FlinkSqlParserListener; -var FlinkSqlParserVisitor = require('./FlinkSqlParserVisitor').FlinkSqlParserVisitor; - -var grammarFileName = "FlinkSqlParser.g4"; - - -var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0003\u013f\u02d4\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", - "\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t\u0007", - "\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004\f\t\f", - "\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010\t\u0010", - "\u0004\u0011\t\u0011\u0004\u0012\t\u0012\u0004\u0013\t\u0013\u0004\u0014", - "\t\u0014\u0004\u0015\t\u0015\u0004\u0016\t\u0016\u0004\u0017\t\u0017", - "\u0004\u0018\t\u0018\u0004\u0019\t\u0019\u0004\u001a\t\u001a\u0004\u001b", - "\t\u001b\u0004\u001c\t\u001c\u0004\u001d\t\u001d\u0004\u001e\t\u001e", - "\u0004\u001f\t\u001f\u0004 \t \u0004!\t!\u0004\"\t\"\u0004#\t#\u0004", - "$\t$\u0004%\t%\u0004&\t&\u0004\'\t\'\u0004(\t(\u0004)\t)\u0004*\t*\u0004", - "+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u00041\t1\u0004", - "2\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u00048\t8\u0004", - "9\t9\u0004:\t:\u0004;\t;\u0004<\t<\u0004=\t=\u0004>\t>\u0004?\t?\u0004", - "@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0003\u0002\u0003\u0002\u0003\u0002", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004", - "\u0003\u0004\u0007\u0004\u0091\n\u0004\f\u0004\u000e\u0004\u0094\u000b", - "\u0004\u0003\u0005\u0003\u0005\u0005\u0005\u0098\n\u0005\u0003\u0006", - "\u0003\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", - "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", - "\u0005\u0007\u00a7\n\u0007\u0003\b\u0003\b\u0005\b\u00ab\n\b\u0003\t", - "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u00b4\n\t\f", - "\t\u000e\t\u00b7\u000b\t\u0003\t\u0003\t\u0005\t\u00bb\n\t\u0003\t\u0003", - "\t\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\f\u0003\f\u0003", - "\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0007", - "\u000e\u00cd\n\u000e\f\u000e\u000e\u000e\u00d0\u000b\u000e\u0003\u000f", - "\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0005\u0010\u00d7\n", - "\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0005", - "\u0011\u00de\n\u0011\u0003\u0011\u0003\u0011\u0005\u0011\u00e2\n\u0011", - "\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012", - "\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0005\u0013", - "\u00ef\n\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", - "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u00fa", - "\n\u0015\f\u0015\u000e\u0015\u00fd\u000b\u0015\u0003\u0015\u0003\u0015", - "\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017", - "\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0005\u0018\u010b\n", - "\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0005", - "\u0019\u0112\n\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0116\n\u0019", - "\u0003\u001a\u0003\u001a\u0005\u001a\u011a\n\u001a\u0003\u001a\u0003", - "\u001a\u0005\u001a\u011e\n\u001a\u0003\u001a\u0003\u001a\u0003\u001b", - "\u0003\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u0126\n\u001b\u0003", - "\u001b\u0003\u001b\u0005\u001b\u012a\n\u001b\u0003\u001b\u0003\u001b", - "\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0132\n", - "\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0136\n\u001c\u0003\u001d", - "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0007\u001d\u013d\n", - "\u001d\f\u001d\u000e\u001d\u0140\u000b\u001d\u0003\u001d\u0003\u001d", - "\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0007\u001e\u0148\n", - "\u001e\f\u001e\u000e\u001e\u014b\u000b\u001e\u0003\u001f\u0003\u001f", - "\u0003\u001f\u0003\u001f\u0007\u001f\u0151\n\u001f\f\u001f\u000e\u001f", - "\u0154\u000b\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", - " \u0005 \u015c\n \u0003!\u0003!\u0003\"\u0003\"\u0005\"\u0162\n\"\u0003", - "\"\u0003\"\u0003\"\u0003\"\u0007\"\u0168\n\"\f\"\u000e\"\u016b\u000b", - "\"\u0005\"\u016d\n\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0005#\u0174", - "\n#\u0003#\u0005#\u0177\n#\u0003#\u0003#\u0003#\u0003#\u0005#\u017d", - "\n#\u0003$\u0003$\u0003$\u0007$\u0182\n$\f$\u000e$\u0185\u000b$\u0003", - "%\u0003%\u0003%\u0003&\u0005&\u018b\n&\u0003&\u0003&\u0003\'\u0003\'", - "\u0003(\u0003(\u0003(\u0003(\u0003(\u0005(\u0196\n(\u0005(\u0198\n(", - "\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0007(\u01a0\n(\f(\u000e", - "(\u01a3\u000b(\u0003)\u0005)\u01a6\n)\u0003)\u0003)\u0003)\u0003)\u0003", - ")\u0003)\u0005)\u01ae\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0007)\u01b5", - "\n)\f)\u000e)\u01b8\u000b)\u0003)\u0003)\u0003)\u0005)\u01bd\n)\u0003", - ")\u0003)\u0003)\u0005)\u01c2\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0003", - ")\u0003)\u0003)\u0007)\u01cc\n)\f)\u000e)\u01cf\u000b)\u0003)\u0003", - ")\u0005)\u01d3\n)\u0003)\u0005)\u01d6\n)\u0003)\u0003)\u0003)\u0003", - ")\u0005)\u01dc\n)\u0003)\u0003)\u0003)\u0005)\u01e1\n)\u0003)\u0003", - ")\u0003)\u0005)\u01e6\n)\u0003)\u0003)\u0003)\u0005)\u01eb\n)\u0003", - "*\u0003*\u0003*\u0003*\u0005*\u01f1\n*\u0003*\u0003*\u0003*\u0003*\u0003", - "*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003", - "*\u0003*\u0003*\u0003*\u0003*\u0007*\u0206\n*\f*\u000e*\u0209\u000b", - "*\u0003+\u0003+\u0003+\u0006+\u020e\n+\r+\u000e+\u020f\u0003+\u0003", - "+\u0005+\u0214\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0006+\u021b\n", - "+\r+\u000e+\u021c\u0003+\u0003+\u0005+\u0221\n+\u0003+\u0003+\u0003", - "+\u0003+\u0003+\u0003+\u0003+\u0005+\u022a\n+\u0003+\u0003+\u0003+\u0003", - "+\u0003+\u0003+\u0003+\u0005+\u0233\n+\u0003+\u0003+\u0003+\u0003+\u0003", - "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003", - "+\u0005+\u0244\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0007+\u024b\n", - "+\f+\u000e+\u024e\u000b+\u0003,\u0005,\u0251\n,\u0003,\u0003,\u0005", - ",\u0255\n,\u0005,\u0257\n,\u0003-\u0003-\u0003-\u0003-\u0003.\u0003", - ".\u0003.\u0007.\u0260\n.\f.\u000e.\u0263\u000b.\u0003/\u0003/\u0003", - "0\u00030\u00050\u0269\n0\u00031\u00031\u00032\u00032\u00032\u00032\u0003", - "2\u00033\u00033\u00033\u00073\u0275\n3\f3\u000e3\u0278\u000b3\u0003", - "4\u00034\u00074\u027c\n4\f4\u000e4\u027f\u000b4\u00035\u00035\u0003", - "5\u00035\u00035\u00075\u0286\n5\f5\u000e5\u0289\u000b5\u00035\u0003", - "5\u00036\u00036\u00036\u00036\u00037\u00037\u00037\u00038\u00038\u0003", - "8\u00038\u00039\u00039\u00039\u00039\u00039\u00039\u00059\u029e\n9\u0003", - ":\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003", - ":\u0003:\u0003:\u0003:\u0005:\u02ae\n:\u0003;\u0003;\u0003;\u0003;\u0003", - ";\u0003;\u0003;\u0005;\u02b7\n;\u0003<\u0003<\u0003=\u0003=\u0003>\u0003", - ">\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0005?\u02c7", - "\n?\u0003?\u0005?\u02ca\n?\u0003@\u0003@\u0003A\u0003A\u0003B\u0003", - "B\u0003C\u0003C\u0003C\u0003\u027d\u0005NRTD\u0002\u0004\u0006\b\n\f", - "\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.0246", - "8:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0002\u000e", - "\u0003\u0002\u0103\u0119\u0003\u0002\u00bf\u00c0\u0004\u0002OO\u0093", - "\u0093\u0003\u0002\n\u000b\u0003\u0002\"#\u0004\u0002\u0081\u0082\u0087", - "\u0087\u0003\u0002\u0083\u0086\u0004\u0002\u0081\u0082\u008a\u008a\u0005", - "\u0002\u0086\u0086\u0131\u0131\u0133\u0137\u0005\u0002\u001b\u001b\u011d", - "\u011e\u0133\u0134\u0004\u0002\u012a\u012c\u013b\u013b\u0004\u0002\n", - "\n\f\f\u0002\u0307\u0002\u0086\u0003\u0002\u0002\u0002\u0004\u0089\u0003", - "\u0002\u0002\u0002\u0006\u0092\u0003\u0002\u0002\u0002\b\u0097\u0003", - "\u0002\u0002\u0002\n\u0099\u0003\u0002\u0002\u0002\f\u00a6\u0003\u0002", - "\u0002\u0002\u000e\u00aa\u0003\u0002\u0002\u0002\u0010\u00ac\u0003\u0002", - "\u0002\u0002\u0012\u00be\u0003\u0002\u0002\u0002\u0014\u00c1\u0003\u0002", - "\u0002\u0002\u0016\u00c3\u0003\u0002\u0002\u0002\u0018\u00c5\u0003\u0002", - "\u0002\u0002\u001a\u00c9\u0003\u0002\u0002\u0002\u001c\u00d1\u0003\u0002", - "\u0002\u0002\u001e\u00d3\u0003\u0002\u0002\u0002 \u00db\u0003\u0002", - "\u0002\u0002\"\u00e7\u0003\u0002\u0002\u0002$\u00e9\u0003\u0002\u0002", - "\u0002&\u00f0\u0003\u0002\u0002\u0002(\u00f4\u0003\u0002\u0002\u0002", - "*\u0100\u0003\u0002\u0002\u0002,\u0105\u0003\u0002\u0002\u0002.\u0107", - "\u0003\u0002\u0002\u00020\u010e\u0003\u0002\u0002\u00022\u0117\u0003", - "\u0002\u0002\u00024\u0121\u0003\u0002\u0002\u00026\u012d\u0003\u0002", - "\u0002\u00028\u0137\u0003\u0002\u0002\u0002:\u0143\u0003\u0002\u0002", - "\u0002<\u014c\u0003\u0002\u0002\u0002>\u015b\u0003\u0002\u0002\u0002", - "@\u015d\u0003\u0002\u0002\u0002B\u015f\u0003\u0002\u0002\u0002D\u017c", - "\u0003\u0002\u0002\u0002F\u017e\u0003\u0002\u0002\u0002H\u0186\u0003", - "\u0002\u0002\u0002J\u018a\u0003\u0002\u0002\u0002L\u018e\u0003\u0002", - "\u0002\u0002N\u0197\u0003\u0002\u0002\u0002P\u01ea\u0003\u0002\u0002", - "\u0002R\u01f0\u0003\u0002\u0002\u0002T\u0243\u0003\u0002\u0002\u0002", - "V\u0256\u0003\u0002\u0002\u0002X\u0258\u0003\u0002\u0002\u0002Z\u025c", - "\u0003\u0002\u0002\u0002\\\u0264\u0003\u0002\u0002\u0002^\u0268\u0003", - "\u0002\u0002\u0002`\u026a\u0003\u0002\u0002\u0002b\u026c\u0003\u0002", - "\u0002\u0002d\u0271\u0003\u0002\u0002\u0002f\u0279\u0003\u0002\u0002", - "\u0002h\u0280\u0003\u0002\u0002\u0002j\u028c\u0003\u0002\u0002\u0002", - "l\u0290\u0003\u0002\u0002\u0002n\u0293\u0003\u0002\u0002\u0002p\u029d", - "\u0003\u0002\u0002\u0002r\u02ad\u0003\u0002\u0002\u0002t\u02b6\u0003", - "\u0002\u0002\u0002v\u02b8\u0003\u0002\u0002\u0002x\u02ba\u0003\u0002", - "\u0002\u0002z\u02bc\u0003\u0002\u0002\u0002|\u02c9\u0003\u0002\u0002", - "\u0002~\u02cb\u0003\u0002\u0002\u0002\u0080\u02cd\u0003\u0002\u0002", - "\u0002\u0082\u02cf\u0003\u0002\u0002\u0002\u0084\u02d1\u0003\u0002\u0002", - "\u0002\u0086\u0087\u0005\u0004\u0003\u0002\u0087\u0088\u0007\u0002\u0002", - "\u0003\u0088\u0003\u0003\u0002\u0002\u0002\u0089\u008a\u0005\u0006\u0004", - "\u0002\u008a\u008b\u0007\u0002\u0002\u0003\u008b\u0005\u0003\u0002\u0002", - "\u0002\u008c\u008d\u0005\b\u0005\u0002\u008d\u008e\u0007\u0128\u0002", - "\u0002\u008e\u0091\u0003\u0002\u0002\u0002\u008f\u0091\u0005\n\u0006", - "\u0002\u0090\u008c\u0003\u0002\u0002\u0002\u0090\u008f\u0003\u0002\u0002", - "\u0002\u0091\u0094\u0003\u0002\u0002\u0002\u0092\u0090\u0003\u0002\u0002", - "\u0002\u0092\u0093\u0003\u0002\u0002\u0002\u0093\u0007\u0003\u0002\u0002", - "\u0002\u0094\u0092\u0003\u0002\u0002\u0002\u0095\u0098\u0005\f\u0007", - "\u0002\u0096\u0098\u0005\u000e\b\u0002\u0097\u0095\u0003\u0002\u0002", - "\u0002\u0097\u0096\u0003\u0002\u0002\u0002\u0098\t\u0003\u0002\u0002", - "\u0002\u0099\u009a\u0007\u0128\u0002\u0002\u009a\u000b\u0003\u0002\u0002", - "\u0002\u009b\u00a7\u0005\u0010\t\u0002\u009c\u00a7\u0005\u001e\u0010", - "\u0002\u009d\u00a7\u0005 \u0011\u0002\u009e\u00a7\u0005\"\u0012\u0002", - "\u009f\u00a7\u0005$\u0013\u0002\u00a0\u00a7\u0005*\u0016\u0002\u00a1", - "\u00a7\u0005,\u0017\u0002\u00a2\u00a7\u0005.\u0018\u0002\u00a3\u00a7", - "\u00050\u0019\u0002\u00a4\u00a7\u00052\u001a\u0002\u00a5\u00a7\u0005", - "4\u001b\u0002\u00a6\u009b\u0003\u0002\u0002\u0002\u00a6\u009c\u0003", - "\u0002\u0002\u0002\u00a6\u009d\u0003\u0002\u0002\u0002\u00a6\u009e\u0003", - "\u0002\u0002\u0002\u00a6\u009f\u0003\u0002\u0002\u0002\u00a6\u00a0\u0003", - "\u0002\u0002\u0002\u00a6\u00a1\u0003\u0002\u0002\u0002\u00a6\u00a2\u0003", - "\u0002\u0002\u0002\u00a6\u00a3\u0003\u0002\u0002\u0002\u00a6\u00a4\u0003", - "\u0002\u0002\u0002\u00a6\u00a5\u0003\u0002\u0002\u0002\u00a7\r\u0003", - "\u0002\u0002\u0002\u00a8\u00ab\u0005@!\u0002\u00a9\u00ab\u00056\u001c", - "\u0002\u00aa\u00a8\u0003\u0002\u0002\u0002\u00aa\u00a9\u0003\u0002\u0002", - "\u0002\u00ab\u000f\u0003\u0002\u0002\u0002\u00ac\u00ad\u0007H\u0002", - "\u0002\u00ad\u00ae\u0007I\u0002\u0002\u00ae\u00af\u0005f4\u0002\u00af", - "\u00b0\u0007\u0125\u0002\u0002\u00b0\u00b5\u0005\u0012\n\u0002\u00b1", - "\u00b2\u0007\u0127\u0002\u0002\u00b2\u00b4\u0005\u0012\n\u0002\u00b3", - "\u00b1\u0003\u0002\u0002\u0002\u00b4\u00b7\u0003\u0002\u0002\u0002\u00b5", - "\u00b3\u0003\u0002\u0002\u0002\u00b5\u00b6\u0003\u0002\u0002\u0002\u00b6", - "\u00b8\u0003\u0002\u0002\u0002\u00b7\u00b5\u0003\u0002\u0002\u0002\u00b8", - "\u00ba\u0007\u0126\u0002\u0002\u00b9\u00bb\u0005\u0018\r\u0002\u00ba", - "\u00b9\u0003\u0002\u0002\u0002\u00ba\u00bb\u0003\u0002\u0002\u0002\u00bb", - "\u00bc\u0003\u0002\u0002\u0002\u00bc\u00bd\u0005h5\u0002\u00bd\u0011", - "\u0003\u0002\u0002\u0002\u00be\u00bf\u0005\u0014\u000b\u0002\u00bf\u00c0", - "\u0005\u0016\f\u0002\u00c0\u0013\u0003\u0002\u0002\u0002\u00c1\u00c2", - "\u0007\u0139\u0002\u0002\u00c2\u0015\u0003\u0002\u0002\u0002\u00c3\u00c4", - "\t\u0002\u0002\u0002\u00c4\u0017\u0003\u0002\u0002\u0002\u00c5\u00c6", - "\u0007\u00ce\u0002\u0002\u00c6\u00c7\u0007\u000f\u0002\u0002\u00c7\u00c8", - "\u0005\u001a\u000e\u0002\u00c8\u0019\u0003\u0002\u0002\u0002\u00c9\u00ce", - "\u0005\u001c\u000f\u0002\u00ca\u00cb\u0007\u0127\u0002\u0002\u00cb\u00cd", - "\u0005\u001c\u000f\u0002\u00cc\u00ca\u0003\u0002\u0002\u0002\u00cd\u00d0", - "\u0003\u0002\u0002\u0002\u00ce\u00cc\u0003\u0002\u0002\u0002\u00ce\u00cf", - "\u0003\u0002\u0002\u0002\u00cf\u001b\u0003\u0002\u0002\u0002\u00d0\u00ce", - "\u0003\u0002\u0002\u0002\u00d1\u00d2\u0007\u0139\u0002\u0002\u00d2\u001d", - "\u0003\u0002\u0002\u0002\u00d3\u00d4\u0007H\u0002\u0002\u00d4\u00d6", - "\u0007\u00c6\u0002\u0002\u00d5\u00d7\u0005j6\u0002\u00d6\u00d5\u0003", - "\u0002\u0002\u0002\u00d6\u00d7\u0003\u0002\u0002\u0002\u00d7\u00d8\u0003", - "\u0002\u0002\u0002\u00d8\u00d9\u0005f4\u0002\u00d9\u00da\u0005h5\u0002", - "\u00da\u001f\u0003\u0002\u0002\u0002\u00db\u00dd\u0007H\u0002\u0002", - "\u00dc\u00de\u0007\u00ad\u0002\u0002\u00dd\u00dc\u0003\u0002\u0002\u0002", - "\u00dd\u00de\u0003\u0002\u0002\u0002\u00de\u00df\u0003\u0002\u0002\u0002", - "\u00df\u00e1\u0007K\u0002\u0002\u00e0\u00e2\u0005j6\u0002\u00e1\u00e0", - "\u0003\u0002\u0002\u0002\u00e1\u00e2\u0003\u0002\u0002\u0002\u00e2\u00e3", - "\u0003\u0002\u0002\u0002\u00e3\u00e4\u0005f4\u0002\u00e4\u00e5\u0007", - "\t\u0002\u0002\u00e5\u00e6\u0005B\"\u0002\u00e6!\u0003\u0002\u0002\u0002", - "\u00e7\u00e8\u0003\u0002\u0002\u0002\u00e8#\u0003\u0002\u0002\u0002", - "\u00e9\u00ea\u0007f\u0002\u0002\u00ea\u00eb\u0007I\u0002\u0002\u00eb", - "\u00ee\u0005f4\u0002\u00ec\u00ef\u0005&\u0014\u0002\u00ed\u00ef\u0005", - "(\u0015\u0002\u00ee\u00ec\u0003\u0002\u0002\u0002\u00ee\u00ed\u0003", - "\u0002\u0002\u0002\u00ef%\u0003\u0002\u0002\u0002\u00f0\u00f1\u0007", - "g\u0002\u0002\u00f1\u00f2\u0007c\u0002\u0002\u00f2\u00f3\u0005f4\u0002", - "\u00f3\'\u0003\u0002\u0002\u0002\u00f4\u00f5\u0007j\u0002\u0002\u00f5", - "\u00f6\u0007\u0125\u0002\u0002\u00f6\u00fb\u0005n8\u0002\u00f7\u00f8", - "\u0007\u0127\u0002\u0002\u00f8\u00fa\u0005n8\u0002\u00f9\u00f7\u0003", - "\u0002\u0002\u0002\u00fa\u00fd\u0003\u0002\u0002\u0002\u00fb\u00f9\u0003", - "\u0002\u0002\u0002\u00fb\u00fc\u0003\u0002\u0002\u0002\u00fc\u00fe\u0003", - "\u0002\u0002\u0002\u00fd\u00fb\u0003\u0002\u0002\u0002\u00fe\u00ff\u0007", - "\u0126\u0002\u0002\u00ff)\u0003\u0002\u0002\u0002\u0100\u0101\u0007", - "f\u0002\u0002\u0101\u0102\u0007\u00c6\u0002\u0002\u0102\u0103\u0005", - "f4\u0002\u0103\u0104\u0005(\u0015\u0002\u0104+\u0003\u0002\u0002\u0002", - "\u0105\u0106\u0003\u0002\u0002\u0002\u0106-\u0003\u0002\u0002\u0002", - "\u0107\u0108\u0007^\u0002\u0002\u0108\u010a\u0007I\u0002\u0002\u0109", - "\u010b\u0005l7\u0002\u010a\u0109\u0003\u0002\u0002\u0002\u010a\u010b", - "\u0003\u0002\u0002\u0002\u010b\u010c\u0003\u0002\u0002\u0002\u010c\u010d", - "\u0005f4\u0002\u010d/\u0003\u0002\u0002\u0002\u010e\u010f\u0007^\u0002", - "\u0002\u010f\u0111\u0007\u00c6\u0002\u0002\u0110\u0112\u0005l7\u0002", - "\u0111\u0110\u0003\u0002\u0002\u0002\u0111\u0112\u0003\u0002\u0002\u0002", - "\u0112\u0113\u0003\u0002\u0002\u0002\u0113\u0115\u0005f4\u0002\u0114", - "\u0116\t\u0003\u0002\u0002\u0115\u0114\u0003\u0002\u0002\u0002\u0115", - "\u0116\u0003\u0002\u0002\u0002\u01161\u0003\u0002\u0002\u0002\u0117", - "\u0119\u0007^\u0002\u0002\u0118\u011a\u0007\u00ad\u0002\u0002\u0119", - "\u0118\u0003\u0002\u0002\u0002\u0119\u011a\u0003\u0002\u0002\u0002\u011a", - "\u011b\u0003\u0002\u0002\u0002\u011b\u011d\u0007K\u0002\u0002\u011c", - "\u011e\u0005l7\u0002\u011d\u011c\u0003\u0002\u0002\u0002\u011d\u011e", - "\u0003\u0002\u0002\u0002\u011e\u011f\u0003\u0002\u0002\u0002\u011f\u0120", - "\u0005f4\u0002\u01203\u0003\u0002\u0002\u0002\u0121\u0125\u0007^\u0002", - "\u0002\u0122\u0126\u0007\u00ad\u0002\u0002\u0123\u0124\u0007\u00ad\u0002", - "\u0002\u0124\u0126\u0007\u0102\u0002\u0002\u0125\u0122\u0003\u0002\u0002", - "\u0002\u0125\u0123\u0003\u0002\u0002\u0002\u0125\u0126\u0003\u0002\u0002", - "\u0002\u0126\u0127\u0003\u0002\u0002\u0002\u0127\u0129\u0007\u00a4\u0002", - "\u0002\u0128\u012a\u0005l7\u0002\u0129\u0128\u0003\u0002\u0002\u0002", - "\u0129\u012a\u0003\u0002\u0002\u0002\u012a\u012b\u0003\u0002\u0002\u0002", - "\u012b\u012c\u0005f4\u0002\u012c5\u0003\u0002\u0002\u0002\u012d\u012e", - "\u0007M\u0002\u0002\u012e\u012f\t\u0004\u0002\u0002\u012f\u0135\u0005", - "f4\u0002\u0130\u0132\u00058\u001d\u0002\u0131\u0130\u0003\u0002\u0002", - "\u0002\u0131\u0132\u0003\u0002\u0002\u0002\u0132\u0133\u0003\u0002\u0002", - "\u0002\u0133\u0136\u0005B\"\u0002\u0134\u0136\u0005:\u001e\u0002\u0135", - "\u0131\u0003\u0002\u0002\u0002\u0135\u0134\u0003\u0002\u0002\u0002\u0136", - "7\u0003\u0002\u0002\u0002\u0137\u0138\u0007<\u0002\u0002\u0138\u0139", - "\u0007\u0125\u0002\u0002\u0139\u013e\u0005n8\u0002\u013a\u013b\u0007", - "\u0127\u0002\u0002\u013b\u013d\u0005n8\u0002\u013c\u013a\u0003\u0002", - "\u0002\u0002\u013d\u0140\u0003\u0002\u0002\u0002\u013e\u013c\u0003\u0002", - "\u0002\u0002\u013e\u013f\u0003\u0002\u0002\u0002\u013f\u0141\u0003\u0002", - "\u0002\u0002\u0140\u013e\u0003\u0002\u0002\u0002\u0141\u0142\u0007\u0126", - "\u0002\u0002\u01429\u0003\u0002\u0002\u0002\u0143\u0144\u0007G\u0002", - "\u0002\u0144\u0149\u0005<\u001f\u0002\u0145\u0146\u0007\u0127\u0002", - "\u0002\u0146\u0148\u0005<\u001f\u0002\u0147\u0145\u0003\u0002\u0002", - "\u0002\u0148\u014b\u0003\u0002\u0002\u0002\u0149\u0147\u0003\u0002\u0002", - "\u0002\u0149\u014a\u0003\u0002\u0002\u0002\u014a;\u0003\u0002\u0002", - "\u0002\u014b\u0149\u0003\u0002\u0002\u0002\u014c\u014d\u0007\u0125\u0002", - "\u0002\u014d\u0152\u0005> \u0002\u014e\u014f\u0007\u0127\u0002\u0002", - "\u014f\u0151\u0005> \u0002\u0150\u014e\u0003\u0002\u0002\u0002\u0151", - "\u0154\u0003\u0002\u0002\u0002\u0152\u0150\u0003\u0002\u0002\u0002\u0152", - "\u0153\u0003\u0002\u0002\u0002\u0153\u0155\u0003\u0002\u0002\u0002\u0154", - "\u0152\u0003\u0002\u0002\u0002\u0155\u0156\u0007\u0126\u0002\u0002\u0156", - "=\u0003\u0002\u0002\u0002\u0157\u015c\u0005~@\u0002\u0158\u015c\u0005", - "\u0082B\u0002\u0159\u015c\u0007\u013f\u0002\u0002\u015a\u015c\u0007", - "\u0119\u0002\u0002\u015b\u0157\u0003\u0002\u0002\u0002\u015b\u0158\u0003", - "\u0002\u0002\u0002\u015b\u0159\u0003\u0002\u0002\u0002\u015b\u015a\u0003", - "\u0002\u0002\u0002\u015c?\u0003\u0002\u0002\u0002\u015d\u015e\u0003", - "\u0002\u0002\u0002\u015eA\u0003\u0002\u0002\u0002\u015f\u0161\u0007", - "\u0006\u0002\u0002\u0160\u0162\u0005\u0084C\u0002\u0161\u0160\u0003", - "\u0002\u0002\u0002\u0161\u0162\u0003\u0002\u0002\u0002\u0162\u016c\u0003", - "\u0002\u0002\u0002\u0163\u016d\u0007\u0131\u0002\u0002\u0164\u0169\u0005", - "D#\u0002\u0165\u0166\u0007\u0127\u0002\u0002\u0166\u0168\u0005D#\u0002", - "\u0167\u0165\u0003\u0002\u0002\u0002\u0168\u016b\u0003\u0002\u0002\u0002", - "\u0169\u0167\u0003\u0002\u0002\u0002\u0169\u016a\u0003\u0002\u0002\u0002", - "\u016a\u016d\u0003\u0002\u0002\u0002\u016b\u0169\u0003\u0002\u0002\u0002", - "\u016c\u0163\u0003\u0002\u0002\u0002\u016c\u0164\u0003\u0002\u0002\u0002", - "\u016d\u016e\u0003\u0002\u0002\u0002\u016e\u016f\u0007\u0007\u0002\u0002", - "\u016f\u0170\u0005F$\u0002\u0170C\u0003\u0002\u0002\u0002\u0171\u0176", - "\u0005L\'\u0002\u0172\u0174\u0007\t\u0002\u0002\u0173\u0172\u0003\u0002", - "\u0002\u0002\u0173\u0174\u0003\u0002\u0002\u0002\u0174\u0175\u0003\u0002", - "\u0002\u0002\u0175\u0177\u0005f4\u0002\u0176\u0173\u0003\u0002\u0002", - "\u0002\u0176\u0177\u0003\u0002\u0002\u0002\u0177\u017d\u0003\u0002\u0002", - "\u0002\u0178\u0179\u0005f4\u0002\u0179\u017a\u0007\u0122\u0002\u0002", - "\u017a\u017b\u0007\u0131\u0002\u0002\u017b\u017d\u0003\u0002\u0002\u0002", - "\u017c\u0171\u0003\u0002\u0002\u0002\u017c\u0178\u0003\u0002\u0002\u0002", - "\u017dE\u0003\u0002\u0002\u0002\u017e\u0183\u0005H%\u0002\u017f\u0180", - "\u0007\u0127\u0002\u0002\u0180\u0182\u0005H%\u0002\u0181\u017f\u0003", - "\u0002\u0002\u0002\u0182\u0185\u0003\u0002\u0002\u0002\u0183\u0181\u0003", - "\u0002\u0002\u0002\u0183\u0184\u0003\u0002\u0002\u0002\u0184G\u0003", - "\u0002\u0002\u0002\u0185\u0183\u0003\u0002\u0002\u0002\u0186\u0187\u0005", - "J&\u0002\u0187\u0188\u0005V,\u0002\u0188I\u0003\u0002\u0002\u0002\u0189", - "\u018b\u0007I\u0002\u0002\u018a\u0189\u0003\u0002\u0002\u0002\u018a", - "\u018b\u0003\u0002\u0002\u0002\u018b\u018c\u0003\u0002\u0002\u0002\u018c", - "\u018d\u0005f4\u0002\u018dK\u0003\u0002\u0002\u0002\u018e\u018f\u0005", - "N(\u0002\u018fM\u0003\u0002\u0002\u0002\u0190\u0191\b(\u0001\u0002\u0191", - "\u0192\u0007\u001b\u0002\u0002\u0192\u0198\u0005N(\u0006\u0193\u0195", - "\u0005R*\u0002\u0194\u0196\u0005P)\u0002\u0195\u0194\u0003\u0002\u0002", - "\u0002\u0195\u0196\u0003\u0002\u0002\u0002\u0196\u0198\u0003\u0002\u0002", - "\u0002\u0197\u0190\u0003\u0002\u0002\u0002\u0197\u0193\u0003\u0002\u0002", - "\u0002\u0198\u01a1\u0003\u0002\u0002\u0002\u0199\u019a\f\u0004\u0002", - "\u0002\u019a\u019b\u0007\u0019\u0002\u0002\u019b\u01a0\u0005N(\u0005", - "\u019c\u019d\f\u0003\u0002\u0002\u019d\u019e\u0007\u0018\u0002\u0002", - "\u019e\u01a0\u0005N(\u0004\u019f\u0199\u0003\u0002\u0002\u0002\u019f", - "\u019c\u0003\u0002\u0002\u0002\u01a0\u01a3\u0003\u0002\u0002\u0002\u01a1", - "\u019f\u0003\u0002\u0002\u0002\u01a1\u01a2\u0003\u0002\u0002\u0002\u01a2", - "O\u0003\u0002\u0002\u0002\u01a3\u01a1\u0003\u0002\u0002\u0002\u01a4", - "\u01a6\u0007\u001b\u0002\u0002\u01a5\u01a4\u0003\u0002\u0002\u0002\u01a5", - "\u01a6\u0003\u0002\u0002\u0002\u01a6\u01a7\u0003\u0002\u0002\u0002\u01a7", - "\u01a8\u0007\u001e\u0002\u0002\u01a8\u01a9\u0005R*\u0002\u01a9\u01aa", - "\u0007\u0019\u0002\u0002\u01aa\u01ab\u0005R*\u0002\u01ab\u01eb\u0003", - "\u0002\u0002\u0002\u01ac\u01ae\u0007\u001b\u0002\u0002\u01ad\u01ac\u0003", - "\u0002\u0002\u0002\u01ad\u01ae\u0003\u0002\u0002\u0002\u01ae\u01af\u0003", - "\u0002\u0002\u0002\u01af\u01b0\u0007\u001a\u0002\u0002\u01b0\u01b1\u0007", - "\u0125\u0002\u0002\u01b1\u01b6\u0005L\'\u0002\u01b2\u01b3\u0007\u0127", - "\u0002\u0002\u01b3\u01b5\u0005L\'\u0002\u01b4\u01b2\u0003\u0002\u0002", - "\u0002\u01b5\u01b8\u0003\u0002\u0002\u0002\u01b6\u01b4\u0003\u0002\u0002", - "\u0002\u01b6\u01b7\u0003\u0002\u0002\u0002\u01b7\u01b9\u0003\u0002\u0002", - "\u0002\u01b8\u01b6\u0003\u0002\u0002\u0002\u01b9\u01ba\u0007\u0126\u0002", - "\u0002\u01ba\u01eb\u0003\u0002\u0002\u0002\u01bb\u01bd\u0007\u001b\u0002", - "\u0002\u01bc\u01bb\u0003\u0002\u0002\u0002\u01bc\u01bd\u0003\u0002\u0002", - "\u0002\u01bd\u01be\u0003\u0002\u0002\u0002\u01be\u01bf\u0007 \u0002", - "\u0002\u01bf\u01eb\u0005R*\u0002\u01c0\u01c2\u0007\u001b\u0002\u0002", - "\u01c1\u01c0\u0003\u0002\u0002\u0002\u01c1\u01c2\u0003\u0002\u0002\u0002", - "\u01c2\u01c3\u0003\u0002\u0002\u0002\u01c3\u01c4\u0007\u001f\u0002\u0002", - "\u01c4\u01d2\t\u0005\u0002\u0002\u01c5\u01c6\u0007\u0125\u0002\u0002", - "\u01c6\u01d3\u0007\u0126\u0002\u0002\u01c7\u01c8\u0007\u0125\u0002\u0002", - "\u01c8\u01cd\u0005L\'\u0002\u01c9\u01ca\u0007\u0127\u0002\u0002\u01ca", - "\u01cc\u0005L\'\u0002\u01cb\u01c9\u0003\u0002\u0002\u0002\u01cc\u01cf", - "\u0003\u0002\u0002\u0002\u01cd\u01cb\u0003\u0002\u0002\u0002\u01cd\u01ce", - "\u0003\u0002\u0002\u0002\u01ce\u01d0\u0003\u0002\u0002\u0002\u01cf\u01cd", - "\u0003\u0002\u0002\u0002\u01d0\u01d1\u0007\u0126\u0002\u0002\u01d1\u01d3", - "\u0003\u0002\u0002\u0002\u01d2\u01c5\u0003\u0002\u0002\u0002\u01d2\u01c7", - "\u0003\u0002\u0002\u0002\u01d3\u01eb\u0003\u0002\u0002\u0002\u01d4\u01d6", - "\u0007\u001b\u0002\u0002\u01d5\u01d4\u0003\u0002\u0002\u0002\u01d5\u01d6", - "\u0003\u0002\u0002\u0002\u01d6\u01d7\u0003\u0002\u0002\u0002\u01d7\u01d8", - "\u0007\u001f\u0002\u0002\u01d8\u01eb\u0005R*\u0002\u01d9\u01db\u0007", - "!\u0002\u0002\u01da\u01dc\u0007\u001b\u0002\u0002\u01db\u01da\u0003", - "\u0002\u0002\u0002\u01db\u01dc\u0003\u0002\u0002\u0002\u01dc\u01dd\u0003", - "\u0002\u0002\u0002\u01dd\u01eb\u0007\u0119\u0002\u0002\u01de\u01e0\u0007", - "!\u0002\u0002\u01df\u01e1\u0007\u001b\u0002\u0002\u01e0\u01df\u0003", - "\u0002\u0002\u0002\u01e0\u01e1\u0003\u0002\u0002\u0002\u01e1\u01e2\u0003", - "\u0002\u0002\u0002\u01e2\u01eb\t\u0006\u0002\u0002\u01e3\u01e5\u0007", - "!\u0002\u0002\u01e4\u01e6\u0007\u001b\u0002\u0002\u01e5\u01e4\u0003", - "\u0002\u0002\u0002\u01e5\u01e6\u0003\u0002\u0002\u0002\u01e6\u01e7\u0003", - "\u0002\u0002\u0002\u01e7\u01e8\u0007\f\u0002\u0002\u01e8\u01e9\u0007", - "\u0007\u0002\u0002\u01e9\u01eb\u0005R*\u0002\u01ea\u01a5\u0003\u0002", - "\u0002\u0002\u01ea\u01ad\u0003\u0002\u0002\u0002\u01ea\u01bc\u0003\u0002", - "\u0002\u0002\u01ea\u01c1\u0003\u0002\u0002\u0002\u01ea\u01d5\u0003\u0002", - "\u0002\u0002\u01ea\u01d9\u0003\u0002\u0002\u0002\u01ea\u01de\u0003\u0002", - "\u0002\u0002\u01ea\u01e3\u0003\u0002\u0002\u0002\u01ebQ\u0003\u0002", - "\u0002\u0002\u01ec\u01ed\b*\u0001\u0002\u01ed\u01f1\u0005T+\u0002\u01ee", - "\u01ef\t\u0007\u0002\u0002\u01ef\u01f1\u0005R*\t\u01f0\u01ec\u0003\u0002", - "\u0002\u0002\u01f0\u01ee\u0003\u0002\u0002\u0002\u01f1\u0207\u0003\u0002", - "\u0002\u0002\u01f2\u01f3\f\b\u0002\u0002\u01f3\u01f4\t\b\u0002\u0002", - "\u01f4\u0206\u0005R*\t\u01f5\u01f6\f\u0007\u0002\u0002\u01f6\u01f7\t", - "\t\u0002\u0002\u01f7\u0206\u0005R*\b\u01f8\u01f9\f\u0006\u0002\u0002", - "\u01f9\u01fa\u0007\u0088\u0002\u0002\u01fa\u0206\u0005R*\u0007\u01fb", - "\u01fc\f\u0005\u0002\u0002\u01fc\u01fd\u0007\u008b\u0002\u0002\u01fd", - "\u0206\u0005R*\u0006\u01fe\u01ff\f\u0004\u0002\u0002\u01ff\u0200\u0007", - "\u0089\u0002\u0002\u0200\u0206\u0005R*\u0005\u0201\u0202\f\u0003\u0002", - "\u0002\u0202\u0203\u0005r:\u0002\u0203\u0204\u0005R*\u0004\u0204\u0206", - "\u0003\u0002\u0002\u0002\u0205\u01f2\u0003\u0002\u0002\u0002\u0205\u01f5", - "\u0003\u0002\u0002\u0002\u0205\u01f8\u0003\u0002\u0002\u0002\u0205\u01fb", - "\u0003\u0002\u0002\u0002\u0205\u01fe\u0003\u0002\u0002\u0002\u0205\u0201", - "\u0003\u0002\u0002\u0002\u0206\u0209\u0003\u0002\u0002\u0002\u0207\u0205", - "\u0003\u0002\u0002\u0002\u0207\u0208\u0003\u0002\u0002\u0002\u0208S", - "\u0003\u0002\u0002\u0002\u0209\u0207\u0003\u0002\u0002\u0002\u020a\u020b", - "\b+\u0001\u0002\u020b\u020d\u0007)\u0002\u0002\u020c\u020e\u0005b2\u0002", - "\u020d\u020c\u0003\u0002\u0002\u0002\u020e\u020f\u0003\u0002\u0002\u0002", - "\u020f\u020d\u0003\u0002\u0002\u0002\u020f\u0210\u0003\u0002\u0002\u0002", - "\u0210\u0213\u0003\u0002\u0002\u0002\u0211\u0212\u0007,\u0002\u0002", - "\u0212\u0214\u0005L\'\u0002\u0213\u0211\u0003\u0002\u0002\u0002\u0213", - "\u0214\u0003\u0002\u0002\u0002\u0214\u0215\u0003\u0002\u0002\u0002\u0215", - "\u0216\u0007-\u0002\u0002\u0216\u0244\u0003\u0002\u0002\u0002\u0217", - "\u0218\u0007)\u0002\u0002\u0218\u021a\u0005L\'\u0002\u0219\u021b\u0005", - "b2\u0002\u021a\u0219\u0003\u0002\u0002\u0002\u021b\u021c\u0003\u0002", - "\u0002\u0002\u021c\u021a\u0003\u0002\u0002\u0002\u021c\u021d\u0003\u0002", - "\u0002\u0002\u021d\u0220\u0003\u0002\u0002\u0002\u021e\u021f\u0007,", - "\u0002\u0002\u021f\u0221\u0005L\'\u0002\u0220\u021e\u0003\u0002\u0002", - "\u0002\u0220\u0221\u0003\u0002\u0002\u0002\u0221\u0222\u0003\u0002\u0002", - "\u0002\u0222\u0223\u0007-\u0002\u0002\u0223\u0244\u0003\u0002\u0002", - "\u0002\u0224\u0225\u0007C\u0002\u0002\u0225\u0226\u0007\u0125\u0002", - "\u0002\u0226\u0229\u0005L\'\u0002\u0227\u0228\u0007r\u0002\u0002\u0228", - "\u022a\u0007$\u0002\u0002\u0229\u0227\u0003\u0002\u0002\u0002\u0229", - "\u022a\u0003\u0002\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b", - "\u022c\u0007\u0126\u0002\u0002\u022c\u0244\u0003\u0002\u0002\u0002\u022d", - "\u022e\u0007E\u0002\u0002\u022e\u022f\u0007\u0125\u0002\u0002\u022f", - "\u0232\u0005L\'\u0002\u0230\u0231\u0007r\u0002\u0002\u0231\u0233\u0007", - "$\u0002\u0002\u0232\u0230\u0003\u0002\u0002\u0002\u0232\u0233\u0003", - "\u0002\u0002\u0002\u0233\u0234\u0003\u0002\u0002\u0002\u0234\u0235\u0007", - "\u0126\u0002\u0002\u0235\u0244\u0003\u0002\u0002\u0002\u0236\u0237\u0007", - "w\u0002\u0002\u0237\u0238\u0007\u0125\u0002\u0002\u0238\u0239\u0005", - "R*\u0002\u0239\u023a\u0007\u001a\u0002\u0002\u023a\u023b\u0005R*\u0002", - "\u023b\u023c\u0007\u0126\u0002\u0002\u023c\u0244\u0003\u0002\u0002\u0002", - "\u023d\u0244\u0005|?\u0002\u023e\u0244\u0007\u0083\u0002\u0002\u023f", - "\u0240\u0007\u0125\u0002\u0002\u0240\u0241\u0005L\'\u0002\u0241\u0242", - "\u0007\u0126\u0002\u0002\u0242\u0244\u0003\u0002\u0002\u0002\u0243\u020a", - "\u0003\u0002\u0002\u0002\u0243\u0217\u0003\u0002\u0002\u0002\u0243\u0224", - "\u0003\u0002\u0002\u0002\u0243\u022d\u0003\u0002\u0002\u0002\u0243\u0236", - "\u0003\u0002\u0002\u0002\u0243\u023d\u0003\u0002\u0002\u0002\u0243\u023e", - "\u0003\u0002\u0002\u0002\u0243\u023f\u0003\u0002\u0002\u0002\u0244\u024c", - "\u0003\u0002\u0002\u0002\u0245\u0246\f\u0004\u0002\u0002\u0246\u0247", - "\u0007\u0123\u0002\u0002\u0247\u0248\u0005R*\u0002\u0248\u0249\u0007", - "\u0124\u0002\u0002\u0249\u024b\u0003\u0002\u0002\u0002\u024a\u0245\u0003", - "\u0002\u0002\u0002\u024b\u024e\u0003\u0002\u0002\u0002\u024c\u024a\u0003", - "\u0002\u0002\u0002\u024c\u024d\u0003\u0002\u0002\u0002\u024dU\u0003", - "\u0002\u0002\u0002\u024e\u024c\u0003\u0002\u0002\u0002\u024f\u0251\u0007", - "\t\u0002\u0002\u0250\u024f\u0003\u0002\u0002\u0002\u0250\u0251\u0003", - "\u0002\u0002\u0002\u0251\u0252\u0003\u0002\u0002\u0002\u0252\u0254\u0005", - "^0\u0002\u0253\u0255\u0005X-\u0002\u0254\u0253\u0003\u0002\u0002\u0002", - "\u0254\u0255\u0003\u0002\u0002\u0002\u0255\u0257\u0003\u0002\u0002\u0002", - "\u0256\u0250\u0003\u0002\u0002\u0002\u0256\u0257\u0003\u0002\u0002\u0002", - "\u0257W\u0003\u0002\u0002\u0002\u0258\u0259\u0007\u0125\u0002\u0002", - "\u0259\u025a\u0005Z.\u0002\u025a\u025b\u0007\u0126\u0002\u0002\u025b", - "Y\u0003\u0002\u0002\u0002\u025c\u0261\u0005\\/\u0002\u025d\u025e\u0007", - "\u0127\u0002\u0002\u025e\u0260\u0005\\/\u0002\u025f\u025d\u0003\u0002", - "\u0002\u0002\u0260\u0263\u0003\u0002\u0002\u0002\u0261\u025f\u0003\u0002", - "\u0002\u0002\u0261\u0262\u0003\u0002\u0002\u0002\u0262[\u0003\u0002", - "\u0002\u0002\u0263\u0261\u0003\u0002\u0002\u0002\u0264\u0265\u0005^", - "0\u0002\u0265]\u0003\u0002\u0002\u0002\u0266\u0269\u0007\u013e\u0002", - "\u0002\u0267\u0269\u0005`1\u0002\u0268\u0266\u0003\u0002\u0002\u0002", - "\u0268\u0267\u0003\u0002\u0002\u0002\u0269_\u0003\u0002\u0002\u0002", - "\u026a\u026b\u0007\u013a\u0002\u0002\u026ba\u0003\u0002\u0002\u0002", - "\u026c\u026d\u0007*\u0002\u0002\u026d\u026e\u0005L\'\u0002\u026e\u026f", - "\u0007+\u0002\u0002\u026f\u0270\u0005L\'\u0002\u0270c\u0003\u0002\u0002", - "\u0002\u0271\u0276\u0005f4\u0002\u0272\u0273\u0007\u0127\u0002\u0002", - "\u0273\u0275\u0005f4\u0002\u0274\u0272\u0003\u0002\u0002\u0002\u0275", - "\u0278\u0003\u0002\u0002\u0002\u0276\u0274\u0003\u0002\u0002\u0002\u0276", - "\u0277\u0003\u0002\u0002\u0002\u0277e\u0003\u0002\u0002\u0002\u0278", - "\u0276\u0003\u0002\u0002\u0002\u0279\u027d\u0007\u0139\u0002\u0002\u027a", - "\u027c\u0007\u0138\u0002\u0002\u027b\u027a\u0003\u0002\u0002\u0002\u027c", - "\u027f\u0003\u0002\u0002\u0002\u027d\u027e\u0003\u0002\u0002\u0002\u027d", - "\u027b\u0003\u0002\u0002\u0002\u027eg\u0003\u0002\u0002\u0002\u027f", - "\u027d\u0003\u0002\u0002\u0002\u0280\u0281\u0007F\u0002\u0002\u0281", - "\u0282\u0007\u0125\u0002\u0002\u0282\u0287\u0005n8\u0002\u0283\u0284", - "\u0007\u0127\u0002\u0002\u0284\u0286\u0005n8\u0002\u0285\u0283\u0003", - "\u0002\u0002\u0002\u0286\u0289\u0003\u0002\u0002\u0002\u0287\u0285\u0003", - "\u0002\u0002\u0002\u0287\u0288\u0003\u0002\u0002\u0002\u0288\u028a\u0003", - "\u0002\u0002\u0002\u0289\u0287\u0003\u0002\u0002\u0002\u028a\u028b\u0007", - "\u0126\u0002\u0002\u028bi\u0003\u0002\u0002\u0002\u028c\u028d\u0007", - "v\u0002\u0002\u028d\u028e\u0007\u001b\u0002\u0002\u028e\u028f\u0007", - "\u001d\u0002\u0002\u028fk\u0003\u0002\u0002\u0002\u0290\u0291\u0007", - "v\u0002\u0002\u0291\u0292\u0007\u001d\u0002\u0002\u0292m\u0003\u0002", - "\u0002\u0002\u0293\u0294\u0007\u013a\u0002\u0002\u0294\u0295\u0007\u011a", - "\u0002\u0002\u0295\u0296\u0007\u013a\u0002\u0002\u0296o\u0003\u0002", - "\u0002\u0002\u0297\u029e\u0007\u0019\u0002\u0002\u0298\u0299\u0007\u0120", - "\u0002\u0002\u0299\u029e\u0007\u0120\u0002\u0002\u029a\u029e\u0007\u0018", - "\u0002\u0002\u029b\u029c\u0007\u011f\u0002\u0002\u029c\u029e\u0007\u011f", - "\u0002\u0002\u029d\u0297\u0003\u0002\u0002\u0002\u029d\u0298\u0003\u0002", - "\u0002\u0002\u029d\u029a\u0003\u0002\u0002\u0002\u029d\u029b\u0003\u0002", - "\u0002\u0002\u029eq\u0003\u0002\u0002\u0002\u029f\u02ae\u0007\u011a", - "\u0002\u0002\u02a0\u02ae\u0007\u011b\u0002\u0002\u02a1\u02ae\u0007\u011c", - "\u0002\u0002\u02a2\u02a3\u0007\u011c\u0002\u0002\u02a3\u02ae\u0007\u011a", - "\u0002\u0002\u02a4\u02a5\u0007\u011b\u0002\u0002\u02a5\u02ae\u0007\u011a", - "\u0002\u0002\u02a6\u02a7\u0007\u011c\u0002\u0002\u02a7\u02ae\u0007\u011b", - "\u0002\u0002\u02a8\u02a9\u0007\u011d\u0002\u0002\u02a9\u02ae\u0007\u011a", - "\u0002\u0002\u02aa\u02ab\u0007\u011c\u0002\u0002\u02ab\u02ac\u0007\u011a", - "\u0002\u0002\u02ac\u02ae\u0007\u011b\u0002\u0002\u02ad\u029f\u0003\u0002", - "\u0002\u0002\u02ad\u02a0\u0003\u0002\u0002\u0002\u02ad\u02a1\u0003\u0002", - "\u0002\u0002\u02ad\u02a2\u0003\u0002\u0002\u0002\u02ad\u02a4\u0003\u0002", - "\u0002\u0002\u02ad\u02a6\u0003\u0002\u0002\u0002\u02ad\u02a8\u0003\u0002", - "\u0002\u0002\u02ad\u02aa\u0003\u0002\u0002\u0002\u02aes\u0003\u0002", - "\u0002\u0002\u02af\u02b0\u0007\u011c\u0002\u0002\u02b0\u02b7\u0007\u011c", - "\u0002\u0002\u02b1\u02b2\u0007\u011b\u0002\u0002\u02b2\u02b7\u0007\u011b", - "\u0002\u0002\u02b3\u02b7\u0007\u0120\u0002\u0002\u02b4\u02b7\u0007\u0121", - "\u0002\u0002\u02b5\u02b7\u0007\u011f\u0002\u0002\u02b6\u02af\u0003\u0002", - "\u0002\u0002\u02b6\u02b1\u0003\u0002\u0002\u0002\u02b6\u02b3\u0003\u0002", - "\u0002\u0002\u02b6\u02b4\u0003\u0002\u0002\u0002\u02b6\u02b5\u0003\u0002", - "\u0002\u0002\u02b7u\u0003\u0002\u0002\u0002\u02b8\u02b9\t\n\u0002\u0002", - "\u02b9w\u0003\u0002\u0002\u0002\u02ba\u02bb\t\u000b\u0002\u0002\u02bb", - "y\u0003\u0002\u0002\u0002\u02bc\u02bd\u0005f4\u0002\u02bd{\u0003\u0002", - "\u0002\u0002\u02be\u02ca\u0005~@\u0002\u02bf\u02ca\u0005\u0080A\u0002", - "\u02c0\u02c1\u0007\u0133\u0002\u0002\u02c1\u02ca\u0005\u0080A\u0002", - "\u02c2\u02ca\u0005\u0082B\u0002\u02c3\u02ca\u0007\u013c\u0002\u0002", - "\u02c4\u02ca\u0007\u013d\u0002\u0002\u02c5\u02c7\u0007\u001b\u0002\u0002", - "\u02c6\u02c5\u0003\u0002\u0002\u0002\u02c6\u02c7\u0003\u0002\u0002\u0002", - "\u02c7\u02c8\u0003\u0002\u0002\u0002\u02c8\u02ca\u0007\u0119\u0002\u0002", - "\u02c9\u02be\u0003\u0002\u0002\u0002\u02c9\u02bf\u0003\u0002\u0002\u0002", - "\u02c9\u02c0\u0003\u0002\u0002\u0002\u02c9\u02c2\u0003\u0002\u0002\u0002", - "\u02c9\u02c3\u0003\u0002\u0002\u0002\u02c9\u02c4\u0003\u0002\u0002\u0002", - "\u02c9\u02c6\u0003\u0002\u0002\u0002\u02ca}\u0003\u0002\u0002\u0002", - "\u02cb\u02cc\u0007\u013a\u0002\u0002\u02cc\u007f\u0003\u0002\u0002\u0002", - "\u02cd\u02ce\t\f\u0002\u0002\u02ce\u0081\u0003\u0002\u0002\u0002\u02cf", - "\u02d0\t\u0006\u0002\u0002\u02d0\u0083\u0003\u0002\u0002\u0002\u02d1", - "\u02d2\t\r\u0002\u0002\u02d2\u0085\u0003\u0002\u0002\u0002L\u0090\u0092", - "\u0097\u00a6\u00aa\u00b5\u00ba\u00ce\u00d6\u00dd\u00e1\u00ee\u00fb\u010a", - "\u0111\u0115\u0119\u011d\u0125\u0129\u0131\u0135\u013e\u0149\u0152\u015b", - "\u0161\u0169\u016c\u0173\u0176\u017c\u0183\u018a\u0195\u0197\u019f\u01a1", - "\u01a5\u01ad\u01b6\u01bc\u01c1\u01cd\u01d2\u01d5\u01db\u01e0\u01e5\u01ea", - "\u01f0\u0205\u0207\u020f\u0213\u021c\u0220\u0229\u0232\u0243\u024c\u0250", - "\u0254\u0256\u0261\u0268\u0276\u027d\u0287\u029d\u02ad\u02b6\u02c6\u02c9"].join(""); - - -var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); - -var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new antlr4.dfa.DFA(ds, index); }); - -var sharedContextCache = new antlr4.PredictionContextCache(); - -var literalNames = [ null, null, null, null, "'SELECT'", "'FROM'", "'ADD'", - "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", - "'GROUP'", "'BY'", "'GROUPING'", "'SETS'", "'CUBE'", - "'ROLLUP'", "'ORDER'", "'HAVING'", "'LIMIT'", "'AT'", - "'OR'", "'AND'", "'IN'", "'NOT'", "'NO'", "'EXISTS'", - "'BETWEEN'", "'LIKE'", "'RLIKE'", "'IS'", "'TRUE'", - "'FALSE'", "'NULLS'", "'ASC'", "'DESC'", "'FOR'", "'INTERVAL'", - "'CASE'", "'WHEN'", "'THEN'", "'ELSE'", "'END'", "'JOIN'", - "'CROSS'", "'OUTER'", "'INNER'", "'LEFT'", "'SEMI'", - "'RIGHT'", "'FULL'", "'NATURAL'", "'ON'", "'PIVOT'", - "'LATERAL'", "'WINDOW'", "'OVER'", "'PARTITION'", "'RANGE'", - "'ROWS'", "'UNBOUNDED'", "'PRECEDING'", "'FOLLOWING'", - "'CURRENT'", "'FIRST'", "'AFTER'", "'LAST'", "'WITH'", - "'VALUES'", "'CREATE'", "'TABLE'", "'DIRECTORY'", "'VIEW'", - "'REPLACE'", "'INSERT'", "'DELETE'", "'INTO'", "'DESCRIBE'", - "'EXPLAIN'", "'FORMAT'", "'LOGICAL'", "'CODEGEN'", - "'COST'", "'CAST'", "'SHOW'", "'TABLES'", "'COLUMNS'", - "'COLUMN'", "'USE'", "'PARTITIONS'", "'FUNCTIONS'", - "'DROP'", "'UNION'", "'EXCEPT'", "'SETMINUS'", "'INTERSECT'", - "'TO'", "'TABLESAMPLE'", "'STRATIFY'", "'ALTER'", "'RENAME'", - "'STRUCT'", "'COMMENT'", "'SET'", "'RESET'", "'DATA'", - "'START'", "'TRANSACTION'", "'COMMIT'", "'ROLLBACK'", - "'MACRO'", "'IGNORE'", "'BOTH'", "'LEADING'", "'TRAILING'", - "'IF'", "'POSITION'", "'EXTRACT'", "'EQ'", "'NSEQ'", - "'NEQ'", "'NEQJ'", "'LT'", "'LTE'", "'GT'", "'GTE'", - "'PLUS'", "'MINUS'", "'ASTERISK'", "'SLASH'", "'PERCENT'", - "'DIV'", "'TILDE'", "'AMPERSAND'", "'PIPE'", "'CONCAT_PIPE'", - "'HAT'", "'PERCENTLIT'", "'BUCKET'", "'OUT'", "'OF'", - "'SORT'", "'CLUSTER'", "'DISTRIBUTE'", "'OVERWRITE'", - "'TRANSFORM'", "'REDUCE'", "'USING'", "'SERDE'", "'SERDEPROPERTIES'", - "'RECORDREADER'", "'RECORDWRITER'", "'DELIMITED'", - "'FIELDS'", "'TERMINATED'", "'COLLECTION'", "'ITEMS'", - "'KEYS'", "'ESCAPED'", "'LINES'", "'SEPARATED'", "'FUNCTION'", - "'EXTENDED'", "'REFRESH'", "'CLEAR'", "'CACHE'", "'UNCACHE'", - "'LAZY'", "'FORMATTED'", "'GLOBAL'", "'TEMPORARY'", - "'OPTIONS'", "'UNSET'", "'TBLPROPERTIES'", "'DBPROPERTIES'", - "'BUCKETS'", "'SKEWED'", "'STORED'", "'DIRECTORIES'", - "'LOCATION'", "'EXCHANGE'", "'ARCHIVE'", "'UNARCHIVE'", - "'FILEFORMAT'", "'TOUCH'", "'COMPACT'", "'CONCATENATE'", - "'CHANGE'", "'CASCADE'", "'RESTRICT'", "'CLUSTERED'", - "'SORTED'", "'PURGE'", "'INPUTFORMAT'", "'OUTPUTFORMAT'", - "'DATABASE'", "'DATABASES'", "'DFS'", "'TRUNCATE'", - "'ANALYZE'", "'COMPUTE'", "'LIST'", "'STATISTICS'", - "'PARTITIONED'", "'EXTERNAL'", "'DEFINED'", "'REVOKE'", - "'GRANT'", "'LOCK'", "'UNLOCK'", "'MSCK'", "'REPAIR'", - "'RECOVER'", "'EXPORT'", "'IMPORT'", "'LOAD'", "'ROLE'", - "'ROLES'", "'COMPACTIONS'", "'PRINCIPALS'", "'TRANSACTIONS'", - "'INDEX'", "'INDEXES'", "'LOCKS'", "'OPTION'", "'ANTI'", - "'LOCAL'", "'INPATH'", "'WATERMARK'", "'UNNEST'", "'MATCH_RECOGNIZE'", - "'MEASURES'", "'ONE'", "'PER'", "'MATCH'", "'SKIP1'", - "'NEXT'", "'PAST'", "'PATTERN'", "'WITHIN'", "'DEFINE'", - "'BIGINT_LITERAL'", "'SMALLINT_LITERAL'", "'TINYINT_LITERAL'", - "'INTEGER_VALUE'", "'DECIMAL_VALUE'", "'DOUBLE_LITERAL'", - "'BIGDECIMAL_LITERAL'", "'IDENTIFIER'", "'BACKQUOTED_IDENTIFIER'", - "'SIMPLE_COMMENT'", "'BRACKETED_EMPTY_COMMENT'", "'BRACKETED_COMMENT'", - "'WS'", "'UNRECOGNIZED'", "'SYSTEM'", "'STRING'", "'ARRAY'", - "'MAP'", "'CHAR'", "'VARCHAR'", "'BINARY'", "'VARBINARY'", - "'BYTES'", "'DECIMAL'", "'TINYINT'", "'SMALLINT'", - "'INT'", "'BIGINT'", "'FLOAT'", "'DOUBLE'", "'DATE'", - "'TIME'", "'TIMESTAMP'", "'MULTISET'", "'BOOLEAN'", - "'RAW'", "'ROW'", "'NULL'", "'='", "'>'", "'<'", "'!'", - "'~'", "'|'", "'&'", "'^'", "'.'", "'['", "']'", "'('", - "')'", "','", "';'", "'@'", "'0'", "'1'", "'2'", "'''", - "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", "'%'", - "'--'", "'/'" ]; - -var symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", - "FROM", "ADD", "AS", "ALL", "ANY", "DISTINCT", "WHERE", - "GROUP", "BY", "GROUPING", "SETS", "CUBE", "ROLLUP", - "ORDER", "HAVING", "LIMIT", "AT", "OR", "AND", "IN", - "NOT", "NO", "EXISTS", "BETWEEN", "LIKE", "RLIKE", - "IS", "TRUE", "FALSE", "NULLS", "ASC", "DESC", "FOR", - "INTERVAL", "CASE", "WHEN", "THEN", "ELSE", "END", - "JOIN", "CROSS", "OUTER", "INNER", "LEFT", "SEMI", - "RIGHT", "FULL", "NATURAL", "ON", "PIVOT", "LATERAL", - "WINDOW", "OVER", "PARTITION", "RANGE", "ROWS", "UNBOUNDED", - "PRECEDING", "FOLLOWING", "CURRENT", "FIRST", "AFTER", - "LAST", "WITH", "VALUES", "CREATE", "TABLE", "DIRECTORY", - "VIEW", "REPLACE", "INSERT", "DELETE", "INTO", "DESCRIBE", - "EXPLAIN", "FORMAT", "LOGICAL", "CODEGEN", "COST", - "CAST", "SHOW", "TABLES", "COLUMNS", "COLUMN", "USE", - "PARTITIONS", "FUNCTIONS", "DROP", "UNION", "EXCEPT", - "SETMINUS", "INTERSECT", "TO", "TABLESAMPLE", "STRATIFY", - "ALTER", "RENAME", "STRUCT", "COMMENT", "SET", "RESET", - "DATA", "START", "TRANSACTION", "COMMIT", "ROLLBACK", - "MACRO", "IGNORE", "BOTH", "LEADING", "TRAILING", - "IF", "POSITION", "EXTRACT", "EQ", "NSEQ", "NEQ", - "NEQJ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", - "ASTERISK", "SLASH", "PERCENT", "DIV", "TILDE", "AMPERSAND", - "PIPE", "CONCAT_PIPE", "HAT", "PERCENTLIT", "BUCKET", - "OUT", "OF", "SORT", "CLUSTER", "DISTRIBUTE", "OVERWRITE", - "TRANSFORM", "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", - "RECORDREADER", "RECORDWRITER", "DELIMITED", "FIELDS", - "TERMINATED", "COLLECTION", "ITEMS", "KEYS", "ESCAPED", - "LINES", "SEPARATED", "FUNCTION", "EXTENDED", "REFRESH", - "CLEAR", "CACHE", "UNCACHE", "LAZY", "FORMATTED", - "GLOBAL", "TEMPORARY", "OPTIONS", "UNSET", "TBLPROPERTIES", - "DBPROPERTIES", "BUCKETS", "SKEWED", "STORED", "DIRECTORIES", - "LOCATION", "EXCHANGE", "ARCHIVE", "UNARCHIVE", "FILEFORMAT", - "TOUCH", "COMPACT", "CONCATENATE", "CHANGE", "CASCADE", - "RESTRICT", "CLUSTERED", "SORTED", "PURGE", "INPUTFORMAT", - "OUTPUTFORMAT", "DATABASE", "DATABASES", "DFS", "TRUNCATE", - "ANALYZE", "COMPUTE", "LIST", "STATISTICS", "PARTITIONED", - "EXTERNAL", "DEFINED", "REVOKE", "GRANT", "LOCK", - "UNLOCK", "MSCK", "REPAIR", "RECOVER", "EXPORT", "IMPORT", - "LOAD", "ROLE", "ROLES", "COMPACTIONS", "PRINCIPALS", - "TRANSACTIONS", "INDEX", "INDEXES", "LOCKS", "OPTION", - "ANTI", "LOCAL", "INPATH", "WATERMARK", "UNNEST", - "MATCH_RECOGNIZE", "MEASURES", "ONE", "PER", "MATCH", - "SKIP1", "NEXT", "PAST", "PATTERN", "WITHIN", "DEFINE", - "BIGINT_LITERAL", "SMALLINT_LITERAL", "TINYINT_LITERAL", - "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_LITERAL", - "BIGDECIMAL_LITERAL", "IDENTIFIER", "BACKQUOTED_IDENTIFIER", - "SIMPLE_COMMENT", "BRACKETED_EMPTY_COMMENT", "BRACKETED_COMMENT", - "WS", "UNRECOGNIZED", "SYSTEM", "STRING", "ARRAY", - "MAP", "CHAR", "VARCHAR", "BINARY", "VARBINARY", "BYTES", - "DECIMAL", "TINYINT", "SMALLINT", "INT", "BIGINT", - "FLOAT", "DOUBLE", "DATE", "TIME", "TIMESTAMP", "MULTISET", - "BOOLEAN", "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", - "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", - "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "COMMA", - "SEMICOLON", "AT_SIGN", "ZERO_DECIMAL", "ONE_DECIMAL", - "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", - "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", - "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "DOT_ID", "ID", - "STRING_LITERAL", "DECIMAL_LITERAL", "REAL_LITERAL", - "BIT_STRING", "IDENTIFIER_BASE", "DEC_DIGIT" ]; - -var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", - "emptyStatement", "ddlStatement", "dmlStatement", "createTable", - "columnOptionDefinition", "columnName", "columnType", - "partitionDefinition", "partitionColumnDefinition", "partitionColumnName", - "createDatabase", "createView", "createFunction", "alterTable", - "renameDefinition", "setKeyValueDefinition", "alterDatabase", - "alterFunction", "dropTable", "dropDatabase", "dropView", - "dropFunction", "insertStatement", "insertPartitionDefinition", - "valuesDefinition", "valuesRowDefinition", "allValueDifinition", - "queryStatement", "selectStatement", "projectItemDefinition", - "tableExpression", "tableReference", "tablePrimary", - "expression", "booleanExpression", "predicate", "valueExpression", - "primaryExpression", "tableAlias", "identifierList", - "identifierSeq", "identifier", "strictIdentifier", "quotedIdentifier", - "whenClause", "uidList", "uid", "withOption", "ifNotExists", - "ifExists", "keyValueDefinition", "logicalOperator", - "comparisonOperator", "bitOperator", "mathOperator", - "unaryOperator", "fullColumnName", "constant", "stringLiteral", - "decimalLiteral", "booleanLiteral", "setQuantifier" ]; - -function FlinkSqlParserParser (input) { - antlr4.Parser.call(this, input); - this._interp = new antlr4.atn.ParserATNSimulator(this, atn, decisionsToDFA, sharedContextCache); - this.ruleNames = ruleNames; - this.literalNames = literalNames; - this.symbolicNames = symbolicNames; - return this; -} - -FlinkSqlParserParser.prototype = Object.create(antlr4.Parser.prototype); -FlinkSqlParserParser.prototype.constructor = FlinkSqlParserParser; - -Object.defineProperty(FlinkSqlParserParser.prototype, "atn", { - get : function() { - return atn; - } -}); - -FlinkSqlParserParser.EOF = antlr4.Token.EOF; -FlinkSqlParserParser.SPACE = 1; -FlinkSqlParserParser.COMMENT_INPUT = 2; -FlinkSqlParserParser.LINE_COMMENT = 3; -FlinkSqlParserParser.SELECT = 4; -FlinkSqlParserParser.FROM = 5; -FlinkSqlParserParser.ADD = 6; -FlinkSqlParserParser.AS = 7; -FlinkSqlParserParser.ALL = 8; -FlinkSqlParserParser.ANY = 9; -FlinkSqlParserParser.DISTINCT = 10; -FlinkSqlParserParser.WHERE = 11; -FlinkSqlParserParser.GROUP = 12; -FlinkSqlParserParser.BY = 13; -FlinkSqlParserParser.GROUPING = 14; -FlinkSqlParserParser.SETS = 15; -FlinkSqlParserParser.CUBE = 16; -FlinkSqlParserParser.ROLLUP = 17; -FlinkSqlParserParser.ORDER = 18; -FlinkSqlParserParser.HAVING = 19; -FlinkSqlParserParser.LIMIT = 20; -FlinkSqlParserParser.AT = 21; -FlinkSqlParserParser.OR = 22; -FlinkSqlParserParser.AND = 23; -FlinkSqlParserParser.IN = 24; -FlinkSqlParserParser.NOT = 25; -FlinkSqlParserParser.NO = 26; -FlinkSqlParserParser.EXISTS = 27; -FlinkSqlParserParser.BETWEEN = 28; -FlinkSqlParserParser.LIKE = 29; -FlinkSqlParserParser.RLIKE = 30; -FlinkSqlParserParser.IS = 31; -FlinkSqlParserParser.TRUE = 32; -FlinkSqlParserParser.FALSE = 33; -FlinkSqlParserParser.NULLS = 34; -FlinkSqlParserParser.ASC = 35; -FlinkSqlParserParser.DESC = 36; -FlinkSqlParserParser.FOR = 37; -FlinkSqlParserParser.INTERVAL = 38; -FlinkSqlParserParser.CASE = 39; -FlinkSqlParserParser.WHEN = 40; -FlinkSqlParserParser.THEN = 41; -FlinkSqlParserParser.ELSE = 42; -FlinkSqlParserParser.END = 43; -FlinkSqlParserParser.JOIN = 44; -FlinkSqlParserParser.CROSS = 45; -FlinkSqlParserParser.OUTER = 46; -FlinkSqlParserParser.INNER = 47; -FlinkSqlParserParser.LEFT = 48; -FlinkSqlParserParser.SEMI = 49; -FlinkSqlParserParser.RIGHT = 50; -FlinkSqlParserParser.FULL = 51; -FlinkSqlParserParser.NATURAL = 52; -FlinkSqlParserParser.ON = 53; -FlinkSqlParserParser.PIVOT = 54; -FlinkSqlParserParser.LATERAL = 55; -FlinkSqlParserParser.WINDOW = 56; -FlinkSqlParserParser.OVER = 57; -FlinkSqlParserParser.PARTITION = 58; -FlinkSqlParserParser.RANGE = 59; -FlinkSqlParserParser.ROWS = 60; -FlinkSqlParserParser.UNBOUNDED = 61; -FlinkSqlParserParser.PRECEDING = 62; -FlinkSqlParserParser.FOLLOWING = 63; -FlinkSqlParserParser.CURRENT = 64; -FlinkSqlParserParser.FIRST = 65; -FlinkSqlParserParser.AFTER = 66; -FlinkSqlParserParser.LAST = 67; -FlinkSqlParserParser.WITH = 68; -FlinkSqlParserParser.VALUES = 69; -FlinkSqlParserParser.CREATE = 70; -FlinkSqlParserParser.TABLE = 71; -FlinkSqlParserParser.DIRECTORY = 72; -FlinkSqlParserParser.VIEW = 73; -FlinkSqlParserParser.REPLACE = 74; -FlinkSqlParserParser.INSERT = 75; -FlinkSqlParserParser.DELETE = 76; -FlinkSqlParserParser.INTO = 77; -FlinkSqlParserParser.DESCRIBE = 78; -FlinkSqlParserParser.EXPLAIN = 79; -FlinkSqlParserParser.FORMAT = 80; -FlinkSqlParserParser.LOGICAL = 81; -FlinkSqlParserParser.CODEGEN = 82; -FlinkSqlParserParser.COST = 83; -FlinkSqlParserParser.CAST = 84; -FlinkSqlParserParser.SHOW = 85; -FlinkSqlParserParser.TABLES = 86; -FlinkSqlParserParser.COLUMNS = 87; -FlinkSqlParserParser.COLUMN = 88; -FlinkSqlParserParser.USE = 89; -FlinkSqlParserParser.PARTITIONS = 90; -FlinkSqlParserParser.FUNCTIONS = 91; -FlinkSqlParserParser.DROP = 92; -FlinkSqlParserParser.UNION = 93; -FlinkSqlParserParser.EXCEPT = 94; -FlinkSqlParserParser.SETMINUS = 95; -FlinkSqlParserParser.INTERSECT = 96; -FlinkSqlParserParser.TO = 97; -FlinkSqlParserParser.TABLESAMPLE = 98; -FlinkSqlParserParser.STRATIFY = 99; -FlinkSqlParserParser.ALTER = 100; -FlinkSqlParserParser.RENAME = 101; -FlinkSqlParserParser.STRUCT = 102; -FlinkSqlParserParser.COMMENT = 103; -FlinkSqlParserParser.SET = 104; -FlinkSqlParserParser.RESET = 105; -FlinkSqlParserParser.DATA = 106; -FlinkSqlParserParser.START = 107; -FlinkSqlParserParser.TRANSACTION = 108; -FlinkSqlParserParser.COMMIT = 109; -FlinkSqlParserParser.ROLLBACK = 110; -FlinkSqlParserParser.MACRO = 111; -FlinkSqlParserParser.IGNORE = 112; -FlinkSqlParserParser.BOTH = 113; -FlinkSqlParserParser.LEADING = 114; -FlinkSqlParserParser.TRAILING = 115; -FlinkSqlParserParser.IF = 116; -FlinkSqlParserParser.POSITION = 117; -FlinkSqlParserParser.EXTRACT = 118; -FlinkSqlParserParser.EQ = 119; -FlinkSqlParserParser.NSEQ = 120; -FlinkSqlParserParser.NEQ = 121; -FlinkSqlParserParser.NEQJ = 122; -FlinkSqlParserParser.LT = 123; -FlinkSqlParserParser.LTE = 124; -FlinkSqlParserParser.GT = 125; -FlinkSqlParserParser.GTE = 126; -FlinkSqlParserParser.PLUS = 127; -FlinkSqlParserParser.MINUS = 128; -FlinkSqlParserParser.ASTERISK = 129; -FlinkSqlParserParser.SLASH = 130; -FlinkSqlParserParser.PERCENT = 131; -FlinkSqlParserParser.DIV = 132; -FlinkSqlParserParser.TILDE = 133; -FlinkSqlParserParser.AMPERSAND = 134; -FlinkSqlParserParser.PIPE = 135; -FlinkSqlParserParser.CONCAT_PIPE = 136; -FlinkSqlParserParser.HAT = 137; -FlinkSqlParserParser.PERCENTLIT = 138; -FlinkSqlParserParser.BUCKET = 139; -FlinkSqlParserParser.OUT = 140; -FlinkSqlParserParser.OF = 141; -FlinkSqlParserParser.SORT = 142; -FlinkSqlParserParser.CLUSTER = 143; -FlinkSqlParserParser.DISTRIBUTE = 144; -FlinkSqlParserParser.OVERWRITE = 145; -FlinkSqlParserParser.TRANSFORM = 146; -FlinkSqlParserParser.REDUCE = 147; -FlinkSqlParserParser.USING = 148; -FlinkSqlParserParser.SERDE = 149; -FlinkSqlParserParser.SERDEPROPERTIES = 150; -FlinkSqlParserParser.RECORDREADER = 151; -FlinkSqlParserParser.RECORDWRITER = 152; -FlinkSqlParserParser.DELIMITED = 153; -FlinkSqlParserParser.FIELDS = 154; -FlinkSqlParserParser.TERMINATED = 155; -FlinkSqlParserParser.COLLECTION = 156; -FlinkSqlParserParser.ITEMS = 157; -FlinkSqlParserParser.KEYS = 158; -FlinkSqlParserParser.ESCAPED = 159; -FlinkSqlParserParser.LINES = 160; -FlinkSqlParserParser.SEPARATED = 161; -FlinkSqlParserParser.FUNCTION = 162; -FlinkSqlParserParser.EXTENDED = 163; -FlinkSqlParserParser.REFRESH = 164; -FlinkSqlParserParser.CLEAR = 165; -FlinkSqlParserParser.CACHE = 166; -FlinkSqlParserParser.UNCACHE = 167; -FlinkSqlParserParser.LAZY = 168; -FlinkSqlParserParser.FORMATTED = 169; -FlinkSqlParserParser.GLOBAL = 170; -FlinkSqlParserParser.TEMPORARY = 171; -FlinkSqlParserParser.OPTIONS = 172; -FlinkSqlParserParser.UNSET = 173; -FlinkSqlParserParser.TBLPROPERTIES = 174; -FlinkSqlParserParser.DBPROPERTIES = 175; -FlinkSqlParserParser.BUCKETS = 176; -FlinkSqlParserParser.SKEWED = 177; -FlinkSqlParserParser.STORED = 178; -FlinkSqlParserParser.DIRECTORIES = 179; -FlinkSqlParserParser.LOCATION = 180; -FlinkSqlParserParser.EXCHANGE = 181; -FlinkSqlParserParser.ARCHIVE = 182; -FlinkSqlParserParser.UNARCHIVE = 183; -FlinkSqlParserParser.FILEFORMAT = 184; -FlinkSqlParserParser.TOUCH = 185; -FlinkSqlParserParser.COMPACT = 186; -FlinkSqlParserParser.CONCATENATE = 187; -FlinkSqlParserParser.CHANGE = 188; -FlinkSqlParserParser.CASCADE = 189; -FlinkSqlParserParser.RESTRICT = 190; -FlinkSqlParserParser.CLUSTERED = 191; -FlinkSqlParserParser.SORTED = 192; -FlinkSqlParserParser.PURGE = 193; -FlinkSqlParserParser.INPUTFORMAT = 194; -FlinkSqlParserParser.OUTPUTFORMAT = 195; -FlinkSqlParserParser.DATABASE = 196; -FlinkSqlParserParser.DATABASES = 197; -FlinkSqlParserParser.DFS = 198; -FlinkSqlParserParser.TRUNCATE = 199; -FlinkSqlParserParser.ANALYZE = 200; -FlinkSqlParserParser.COMPUTE = 201; -FlinkSqlParserParser.LIST = 202; -FlinkSqlParserParser.STATISTICS = 203; -FlinkSqlParserParser.PARTITIONED = 204; -FlinkSqlParserParser.EXTERNAL = 205; -FlinkSqlParserParser.DEFINED = 206; -FlinkSqlParserParser.REVOKE = 207; -FlinkSqlParserParser.GRANT = 208; -FlinkSqlParserParser.LOCK = 209; -FlinkSqlParserParser.UNLOCK = 210; -FlinkSqlParserParser.MSCK = 211; -FlinkSqlParserParser.REPAIR = 212; -FlinkSqlParserParser.RECOVER = 213; -FlinkSqlParserParser.EXPORT = 214; -FlinkSqlParserParser.IMPORT = 215; -FlinkSqlParserParser.LOAD = 216; -FlinkSqlParserParser.ROLE = 217; -FlinkSqlParserParser.ROLES = 218; -FlinkSqlParserParser.COMPACTIONS = 219; -FlinkSqlParserParser.PRINCIPALS = 220; -FlinkSqlParserParser.TRANSACTIONS = 221; -FlinkSqlParserParser.INDEX = 222; -FlinkSqlParserParser.INDEXES = 223; -FlinkSqlParserParser.LOCKS = 224; -FlinkSqlParserParser.OPTION = 225; -FlinkSqlParserParser.ANTI = 226; -FlinkSqlParserParser.LOCAL = 227; -FlinkSqlParserParser.INPATH = 228; -FlinkSqlParserParser.WATERMARK = 229; -FlinkSqlParserParser.UNNEST = 230; -FlinkSqlParserParser.MATCH_RECOGNIZE = 231; -FlinkSqlParserParser.MEASURES = 232; -FlinkSqlParserParser.ONE = 233; -FlinkSqlParserParser.PER = 234; -FlinkSqlParserParser.MATCH = 235; -FlinkSqlParserParser.SKIP1 = 236; -FlinkSqlParserParser.NEXT = 237; -FlinkSqlParserParser.PAST = 238; -FlinkSqlParserParser.PATTERN = 239; -FlinkSqlParserParser.WITHIN = 240; -FlinkSqlParserParser.DEFINE = 241; -FlinkSqlParserParser.BIGINT_LITERAL = 242; -FlinkSqlParserParser.SMALLINT_LITERAL = 243; -FlinkSqlParserParser.TINYINT_LITERAL = 244; -FlinkSqlParserParser.INTEGER_VALUE = 245; -FlinkSqlParserParser.DECIMAL_VALUE = 246; -FlinkSqlParserParser.DOUBLE_LITERAL = 247; -FlinkSqlParserParser.BIGDECIMAL_LITERAL = 248; -FlinkSqlParserParser.IDENTIFIER = 249; -FlinkSqlParserParser.BACKQUOTED_IDENTIFIER = 250; -FlinkSqlParserParser.SIMPLE_COMMENT = 251; -FlinkSqlParserParser.BRACKETED_EMPTY_COMMENT = 252; -FlinkSqlParserParser.BRACKETED_COMMENT = 253; -FlinkSqlParserParser.WS = 254; -FlinkSqlParserParser.UNRECOGNIZED = 255; -FlinkSqlParserParser.SYSTEM = 256; -FlinkSqlParserParser.STRING = 257; -FlinkSqlParserParser.ARRAY = 258; -FlinkSqlParserParser.MAP = 259; -FlinkSqlParserParser.CHAR = 260; -FlinkSqlParserParser.VARCHAR = 261; -FlinkSqlParserParser.BINARY = 262; -FlinkSqlParserParser.VARBINARY = 263; -FlinkSqlParserParser.BYTES = 264; -FlinkSqlParserParser.DECIMAL = 265; -FlinkSqlParserParser.TINYINT = 266; -FlinkSqlParserParser.SMALLINT = 267; -FlinkSqlParserParser.INT = 268; -FlinkSqlParserParser.BIGINT = 269; -FlinkSqlParserParser.FLOAT = 270; -FlinkSqlParserParser.DOUBLE = 271; -FlinkSqlParserParser.DATE = 272; -FlinkSqlParserParser.TIME = 273; -FlinkSqlParserParser.TIMESTAMP = 274; -FlinkSqlParserParser.MULTISET = 275; -FlinkSqlParserParser.BOOLEAN = 276; -FlinkSqlParserParser.RAW = 277; -FlinkSqlParserParser.ROW = 278; -FlinkSqlParserParser.NULL = 279; -FlinkSqlParserParser.EQUAL_SYMBOL = 280; -FlinkSqlParserParser.GREATER_SYMBOL = 281; -FlinkSqlParserParser.LESS_SYMBOL = 282; -FlinkSqlParserParser.EXCLAMATION_SYMBOL = 283; -FlinkSqlParserParser.BIT_NOT_OP = 284; -FlinkSqlParserParser.BIT_OR_OP = 285; -FlinkSqlParserParser.BIT_AND_OP = 286; -FlinkSqlParserParser.BIT_XOR_OP = 287; -FlinkSqlParserParser.DOT = 288; -FlinkSqlParserParser.LS_BRACKET = 289; -FlinkSqlParserParser.RS_BRACKET = 290; -FlinkSqlParserParser.LR_BRACKET = 291; -FlinkSqlParserParser.RR_BRACKET = 292; -FlinkSqlParserParser.COMMA = 293; -FlinkSqlParserParser.SEMICOLON = 294; -FlinkSqlParserParser.AT_SIGN = 295; -FlinkSqlParserParser.ZERO_DECIMAL = 296; -FlinkSqlParserParser.ONE_DECIMAL = 297; -FlinkSqlParserParser.TWO_DECIMAL = 298; -FlinkSqlParserParser.SINGLE_QUOTE_SYMB = 299; -FlinkSqlParserParser.DOUBLE_QUOTE_SYMB = 300; -FlinkSqlParserParser.REVERSE_QUOTE_SYMB = 301; -FlinkSqlParserParser.COLON_SYMB = 302; -FlinkSqlParserParser.ASTERISK_SIGN = 303; -FlinkSqlParserParser.UNDERLINE_SIGN = 304; -FlinkSqlParserParser.HYPNEN_SIGN = 305; -FlinkSqlParserParser.ADD_SIGN = 306; -FlinkSqlParserParser.PENCENT_SIGN = 307; -FlinkSqlParserParser.DOUBLE_HYPNEN_SIGN = 308; -FlinkSqlParserParser.SLASH_SIGN = 309; -FlinkSqlParserParser.DOT_ID = 310; -FlinkSqlParserParser.ID = 311; -FlinkSqlParserParser.STRING_LITERAL = 312; -FlinkSqlParserParser.DECIMAL_LITERAL = 313; -FlinkSqlParserParser.REAL_LITERAL = 314; -FlinkSqlParserParser.BIT_STRING = 315; -FlinkSqlParserParser.IDENTIFIER_BASE = 316; -FlinkSqlParserParser.DEC_DIGIT = 317; - -FlinkSqlParserParser.RULE_program = 0; -FlinkSqlParserParser.RULE_statement = 1; -FlinkSqlParserParser.RULE_sqlStatements = 2; -FlinkSqlParserParser.RULE_sqlStatement = 3; -FlinkSqlParserParser.RULE_emptyStatement = 4; -FlinkSqlParserParser.RULE_ddlStatement = 5; -FlinkSqlParserParser.RULE_dmlStatement = 6; -FlinkSqlParserParser.RULE_createTable = 7; -FlinkSqlParserParser.RULE_columnOptionDefinition = 8; -FlinkSqlParserParser.RULE_columnName = 9; -FlinkSqlParserParser.RULE_columnType = 10; -FlinkSqlParserParser.RULE_partitionDefinition = 11; -FlinkSqlParserParser.RULE_partitionColumnDefinition = 12; -FlinkSqlParserParser.RULE_partitionColumnName = 13; -FlinkSqlParserParser.RULE_createDatabase = 14; -FlinkSqlParserParser.RULE_createView = 15; -FlinkSqlParserParser.RULE_createFunction = 16; -FlinkSqlParserParser.RULE_alterTable = 17; -FlinkSqlParserParser.RULE_renameDefinition = 18; -FlinkSqlParserParser.RULE_setKeyValueDefinition = 19; -FlinkSqlParserParser.RULE_alterDatabase = 20; -FlinkSqlParserParser.RULE_alterFunction = 21; -FlinkSqlParserParser.RULE_dropTable = 22; -FlinkSqlParserParser.RULE_dropDatabase = 23; -FlinkSqlParserParser.RULE_dropView = 24; -FlinkSqlParserParser.RULE_dropFunction = 25; -FlinkSqlParserParser.RULE_insertStatement = 26; -FlinkSqlParserParser.RULE_insertPartitionDefinition = 27; -FlinkSqlParserParser.RULE_valuesDefinition = 28; -FlinkSqlParserParser.RULE_valuesRowDefinition = 29; -FlinkSqlParserParser.RULE_allValueDifinition = 30; -FlinkSqlParserParser.RULE_queryStatement = 31; -FlinkSqlParserParser.RULE_selectStatement = 32; -FlinkSqlParserParser.RULE_projectItemDefinition = 33; -FlinkSqlParserParser.RULE_tableExpression = 34; -FlinkSqlParserParser.RULE_tableReference = 35; -FlinkSqlParserParser.RULE_tablePrimary = 36; -FlinkSqlParserParser.RULE_expression = 37; -FlinkSqlParserParser.RULE_booleanExpression = 38; -FlinkSqlParserParser.RULE_predicate = 39; -FlinkSqlParserParser.RULE_valueExpression = 40; -FlinkSqlParserParser.RULE_primaryExpression = 41; -FlinkSqlParserParser.RULE_tableAlias = 42; -FlinkSqlParserParser.RULE_identifierList = 43; -FlinkSqlParserParser.RULE_identifierSeq = 44; -FlinkSqlParserParser.RULE_identifier = 45; -FlinkSqlParserParser.RULE_strictIdentifier = 46; -FlinkSqlParserParser.RULE_quotedIdentifier = 47; -FlinkSqlParserParser.RULE_whenClause = 48; -FlinkSqlParserParser.RULE_uidList = 49; -FlinkSqlParserParser.RULE_uid = 50; -FlinkSqlParserParser.RULE_withOption = 51; -FlinkSqlParserParser.RULE_ifNotExists = 52; -FlinkSqlParserParser.RULE_ifExists = 53; -FlinkSqlParserParser.RULE_keyValueDefinition = 54; -FlinkSqlParserParser.RULE_logicalOperator = 55; -FlinkSqlParserParser.RULE_comparisonOperator = 56; -FlinkSqlParserParser.RULE_bitOperator = 57; -FlinkSqlParserParser.RULE_mathOperator = 58; -FlinkSqlParserParser.RULE_unaryOperator = 59; -FlinkSqlParserParser.RULE_fullColumnName = 60; -FlinkSqlParserParser.RULE_constant = 61; -FlinkSqlParserParser.RULE_stringLiteral = 62; -FlinkSqlParserParser.RULE_decimalLiteral = 63; -FlinkSqlParserParser.RULE_booleanLiteral = 64; -FlinkSqlParserParser.RULE_setQuantifier = 65; - - -function ProgramContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_program; - return this; -} - -ProgramContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ProgramContext.prototype.constructor = ProgramContext; - -ProgramContext.prototype.statement = function() { - return this.getTypedRuleContext(StatementContext,0); -}; - -ProgramContext.prototype.EOF = function() { - return this.getToken(FlinkSqlParserParser.EOF, 0); -}; - -ProgramContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterProgram(this); - } -}; - -ProgramContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitProgram(this); - } -}; - -ProgramContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitProgram(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ProgramContext = ProgramContext; - -FlinkSqlParserParser.prototype.program = function() { - - var localctx = new ProgramContext(this, this._ctx, this.state); - this.enterRule(localctx, 0, FlinkSqlParserParser.RULE_program); - try { - this.enterOuterAlt(localctx, 1); - this.state = 132; - this.statement(); - this.state = 133; - this.match(FlinkSqlParserParser.EOF); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function StatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_statement; - return this; -} - -StatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -StatementContext.prototype.constructor = StatementContext; - -StatementContext.prototype.sqlStatements = function() { - return this.getTypedRuleContext(SqlStatementsContext,0); -}; - -StatementContext.prototype.EOF = function() { - return this.getToken(FlinkSqlParserParser.EOF, 0); -}; - -StatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterStatement(this); - } -}; - -StatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitStatement(this); - } -}; - -StatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.StatementContext = StatementContext; - -FlinkSqlParserParser.prototype.statement = function() { - - var localctx = new StatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 2, FlinkSqlParserParser.RULE_statement); - try { - this.enterOuterAlt(localctx, 1); - this.state = 135; - this.sqlStatements(); - this.state = 136; - this.match(FlinkSqlParserParser.EOF); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function SqlStatementsContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_sqlStatements; - return this; -} - -SqlStatementsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -SqlStatementsContext.prototype.constructor = SqlStatementsContext; - -SqlStatementsContext.prototype.sqlStatement = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(SqlStatementContext); - } else { - return this.getTypedRuleContext(SqlStatementContext,i); - } -}; - -SqlStatementsContext.prototype.SEMICOLON = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.SEMICOLON); - } else { - return this.getToken(FlinkSqlParserParser.SEMICOLON, i); - } -}; - - -SqlStatementsContext.prototype.emptyStatement = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(EmptyStatementContext); - } else { - return this.getTypedRuleContext(EmptyStatementContext,i); - } -}; - -SqlStatementsContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSqlStatements(this); - } -}; - -SqlStatementsContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSqlStatements(this); - } -}; - -SqlStatementsContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSqlStatements(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.SqlStatementsContext = SqlStatementsContext; - -FlinkSqlParserParser.prototype.sqlStatements = function() { - - var localctx = new SqlStatementsContext(this, this._ctx, this.state); - this.enterRule(localctx, 4, FlinkSqlParserParser.RULE_sqlStatements); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 144; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(((((_la - 70)) & ~0x1f) == 0 && ((1 << (_la - 70)) & ((1 << (FlinkSqlParserParser.CREATE - 70)) | (1 << (FlinkSqlParserParser.INSERT - 70)) | (1 << (FlinkSqlParserParser.DROP - 70)) | (1 << (FlinkSqlParserParser.ALTER - 70)))) !== 0) || _la===FlinkSqlParserParser.SEMICOLON) { - this.state = 142; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); - switch(la_) { - case 1: - this.state = 138; - this.sqlStatement(); - this.state = 139; - this.match(FlinkSqlParserParser.SEMICOLON); - break; - - case 2: - this.state = 141; - this.emptyStatement(); - break; - - } - this.state = 146; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function SqlStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_sqlStatement; - return this; -} - -SqlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -SqlStatementContext.prototype.constructor = SqlStatementContext; - -SqlStatementContext.prototype.ddlStatement = function() { - return this.getTypedRuleContext(DdlStatementContext,0); -}; - -SqlStatementContext.prototype.dmlStatement = function() { - return this.getTypedRuleContext(DmlStatementContext,0); -}; - -SqlStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSqlStatement(this); - } -}; - -SqlStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSqlStatement(this); - } -}; - -SqlStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSqlStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.SqlStatementContext = SqlStatementContext; - -FlinkSqlParserParser.prototype.sqlStatement = function() { - - var localctx = new SqlStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 6, FlinkSqlParserParser.RULE_sqlStatement); - try { - this.state = 149; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); - switch(la_) { - case 1: - this.enterOuterAlt(localctx, 1); - this.state = 147; - this.ddlStatement(); - break; - - case 2: - this.enterOuterAlt(localctx, 2); - this.state = 148; - this.dmlStatement(); - break; - - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function EmptyStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_emptyStatement; - return this; -} - -EmptyStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -EmptyStatementContext.prototype.constructor = EmptyStatementContext; - -EmptyStatementContext.prototype.SEMICOLON = function() { - return this.getToken(FlinkSqlParserParser.SEMICOLON, 0); -}; - -EmptyStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterEmptyStatement(this); - } -}; - -EmptyStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitEmptyStatement(this); - } -}; - -EmptyStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitEmptyStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.EmptyStatementContext = EmptyStatementContext; - -FlinkSqlParserParser.prototype.emptyStatement = function() { - - var localctx = new EmptyStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 8, FlinkSqlParserParser.RULE_emptyStatement); - try { - this.enterOuterAlt(localctx, 1); - this.state = 151; - this.match(FlinkSqlParserParser.SEMICOLON); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DdlStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_ddlStatement; - return this; -} - -DdlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DdlStatementContext.prototype.constructor = DdlStatementContext; - -DdlStatementContext.prototype.createTable = function() { - return this.getTypedRuleContext(CreateTableContext,0); -}; - -DdlStatementContext.prototype.createDatabase = function() { - return this.getTypedRuleContext(CreateDatabaseContext,0); -}; - -DdlStatementContext.prototype.createView = function() { - return this.getTypedRuleContext(CreateViewContext,0); -}; - -DdlStatementContext.prototype.createFunction = function() { - return this.getTypedRuleContext(CreateFunctionContext,0); -}; - -DdlStatementContext.prototype.alterTable = function() { - return this.getTypedRuleContext(AlterTableContext,0); -}; - -DdlStatementContext.prototype.alterDatabase = function() { - return this.getTypedRuleContext(AlterDatabaseContext,0); -}; - -DdlStatementContext.prototype.alterFunction = function() { - return this.getTypedRuleContext(AlterFunctionContext,0); -}; - -DdlStatementContext.prototype.dropTable = function() { - return this.getTypedRuleContext(DropTableContext,0); -}; - -DdlStatementContext.prototype.dropDatabase = function() { - return this.getTypedRuleContext(DropDatabaseContext,0); -}; - -DdlStatementContext.prototype.dropView = function() { - return this.getTypedRuleContext(DropViewContext,0); -}; - -DdlStatementContext.prototype.dropFunction = function() { - return this.getTypedRuleContext(DropFunctionContext,0); -}; - -DdlStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDdlStatement(this); - } -}; - -DdlStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDdlStatement(this); - } -}; - -DdlStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDdlStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DdlStatementContext = DdlStatementContext; - -FlinkSqlParserParser.prototype.ddlStatement = function() { - - var localctx = new DdlStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 10, FlinkSqlParserParser.RULE_ddlStatement); - try { - this.state = 164; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,3,this._ctx); - switch(la_) { - case 1: - this.enterOuterAlt(localctx, 1); - this.state = 153; - this.createTable(); - break; - - case 2: - this.enterOuterAlt(localctx, 2); - this.state = 154; - this.createDatabase(); - break; - - case 3: - this.enterOuterAlt(localctx, 3); - this.state = 155; - this.createView(); - break; - - case 4: - this.enterOuterAlt(localctx, 4); - this.state = 156; - this.createFunction(); - break; - - case 5: - this.enterOuterAlt(localctx, 5); - this.state = 157; - this.alterTable(); - break; - - case 6: - this.enterOuterAlt(localctx, 6); - this.state = 158; - this.alterDatabase(); - break; - - case 7: - this.enterOuterAlt(localctx, 7); - this.state = 159; - this.alterFunction(); - break; - - case 8: - this.enterOuterAlt(localctx, 8); - this.state = 160; - this.dropTable(); - break; - - case 9: - this.enterOuterAlt(localctx, 9); - this.state = 161; - this.dropDatabase(); - break; - - case 10: - this.enterOuterAlt(localctx, 10); - this.state = 162; - this.dropView(); - break; - - case 11: - this.enterOuterAlt(localctx, 11); - this.state = 163; - this.dropFunction(); - break; - - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DmlStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_dmlStatement; - return this; -} - -DmlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DmlStatementContext.prototype.constructor = DmlStatementContext; - -DmlStatementContext.prototype.queryStatement = function() { - return this.getTypedRuleContext(QueryStatementContext,0); -}; - -DmlStatementContext.prototype.insertStatement = function() { - return this.getTypedRuleContext(InsertStatementContext,0); -}; - -DmlStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDmlStatement(this); - } -}; - -DmlStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDmlStatement(this); - } -}; - -DmlStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDmlStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DmlStatementContext = DmlStatementContext; - -FlinkSqlParserParser.prototype.dmlStatement = function() { - - var localctx = new DmlStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 12, FlinkSqlParserParser.RULE_dmlStatement); - try { - this.state = 168; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.SEMICOLON: - this.enterOuterAlt(localctx, 1); - this.state = 166; - this.queryStatement(); - break; - case FlinkSqlParserParser.INSERT: - this.enterOuterAlt(localctx, 2); - this.state = 167; - this.insertStatement(); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function CreateTableContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_createTable; - return this; -} - -CreateTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -CreateTableContext.prototype.constructor = CreateTableContext; - -CreateTableContext.prototype.CREATE = function() { - return this.getToken(FlinkSqlParserParser.CREATE, 0); -}; - -CreateTableContext.prototype.TABLE = function() { - return this.getToken(FlinkSqlParserParser.TABLE, 0); -}; - -CreateTableContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -CreateTableContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -CreateTableContext.prototype.columnOptionDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ColumnOptionDefinitionContext); - } else { - return this.getTypedRuleContext(ColumnOptionDefinitionContext,i); - } -}; - -CreateTableContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -CreateTableContext.prototype.withOption = function() { - return this.getTypedRuleContext(WithOptionContext,0); -}; - -CreateTableContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -CreateTableContext.prototype.partitionDefinition = function() { - return this.getTypedRuleContext(PartitionDefinitionContext,0); -}; - -CreateTableContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterCreateTable(this); - } -}; - -CreateTableContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitCreateTable(this); - } -}; - -CreateTableContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitCreateTable(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.CreateTableContext = CreateTableContext; - -FlinkSqlParserParser.prototype.createTable = function() { - - var localctx = new CreateTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 14, FlinkSqlParserParser.RULE_createTable); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 170; - this.match(FlinkSqlParserParser.CREATE); - this.state = 171; - this.match(FlinkSqlParserParser.TABLE); - this.state = 172; - this.uid(); - this.state = 173; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 174; - this.columnOptionDefinition(); - this.state = 179; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 175; - this.match(FlinkSqlParserParser.COMMA); - this.state = 176; - this.columnOptionDefinition(); - this.state = 181; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 182; - this.match(FlinkSqlParserParser.RR_BRACKET); - this.state = 184; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.PARTITIONED) { - this.state = 183; - this.partitionDefinition(); - } - - this.state = 186; - this.withOption(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ColumnOptionDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_columnOptionDefinition; - return this; -} - -ColumnOptionDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ColumnOptionDefinitionContext.prototype.constructor = ColumnOptionDefinitionContext; - -ColumnOptionDefinitionContext.prototype.columnName = function() { - return this.getTypedRuleContext(ColumnNameContext,0); -}; - -ColumnOptionDefinitionContext.prototype.columnType = function() { - return this.getTypedRuleContext(ColumnTypeContext,0); -}; - -ColumnOptionDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterColumnOptionDefinition(this); - } -}; - -ColumnOptionDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitColumnOptionDefinition(this); - } -}; - -ColumnOptionDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitColumnOptionDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ColumnOptionDefinitionContext = ColumnOptionDefinitionContext; - -FlinkSqlParserParser.prototype.columnOptionDefinition = function() { - - var localctx = new ColumnOptionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 16, FlinkSqlParserParser.RULE_columnOptionDefinition); - try { - this.enterOuterAlt(localctx, 1); - this.state = 188; - this.columnName(); - this.state = 189; - this.columnType(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ColumnNameContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_columnName; - return this; -} - -ColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ColumnNameContext.prototype.constructor = ColumnNameContext; - -ColumnNameContext.prototype.ID = function() { - return this.getToken(FlinkSqlParserParser.ID, 0); -}; - -ColumnNameContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterColumnName(this); - } -}; - -ColumnNameContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitColumnName(this); - } -}; - -ColumnNameContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitColumnName(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ColumnNameContext = ColumnNameContext; - -FlinkSqlParserParser.prototype.columnName = function() { - - var localctx = new ColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 18, FlinkSqlParserParser.RULE_columnName); - try { - this.enterOuterAlt(localctx, 1); - this.state = 191; - this.match(FlinkSqlParserParser.ID); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ColumnTypeContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_columnType; - this.typeName = null; // Token - return this; -} - -ColumnTypeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ColumnTypeContext.prototype.constructor = ColumnTypeContext; - -ColumnTypeContext.prototype.CHAR = function() { - return this.getToken(FlinkSqlParserParser.CHAR, 0); -}; - -ColumnTypeContext.prototype.VARCHAR = function() { - return this.getToken(FlinkSqlParserParser.VARCHAR, 0); -}; - -ColumnTypeContext.prototype.STRING = function() { - return this.getToken(FlinkSqlParserParser.STRING, 0); -}; - -ColumnTypeContext.prototype.BINARY = function() { - return this.getToken(FlinkSqlParserParser.BINARY, 0); -}; - -ColumnTypeContext.prototype.VARBINARY = function() { - return this.getToken(FlinkSqlParserParser.VARBINARY, 0); -}; - -ColumnTypeContext.prototype.BYTES = function() { - return this.getToken(FlinkSqlParserParser.BYTES, 0); -}; - -ColumnTypeContext.prototype.DECIMAL = function() { - return this.getToken(FlinkSqlParserParser.DECIMAL, 0); -}; - -ColumnTypeContext.prototype.TINYINT = function() { - return this.getToken(FlinkSqlParserParser.TINYINT, 0); -}; - -ColumnTypeContext.prototype.SMALLINT = function() { - return this.getToken(FlinkSqlParserParser.SMALLINT, 0); -}; - -ColumnTypeContext.prototype.INT = function() { - return this.getToken(FlinkSqlParserParser.INT, 0); -}; - -ColumnTypeContext.prototype.BIGINT = function() { - return this.getToken(FlinkSqlParserParser.BIGINT, 0); -}; - -ColumnTypeContext.prototype.FLOAT = function() { - return this.getToken(FlinkSqlParserParser.FLOAT, 0); -}; - -ColumnTypeContext.prototype.DOUBLE = function() { - return this.getToken(FlinkSqlParserParser.DOUBLE, 0); -}; - -ColumnTypeContext.prototype.DATE = function() { - return this.getToken(FlinkSqlParserParser.DATE, 0); -}; - -ColumnTypeContext.prototype.TIME = function() { - return this.getToken(FlinkSqlParserParser.TIME, 0); -}; - -ColumnTypeContext.prototype.TIMESTAMP = function() { - return this.getToken(FlinkSqlParserParser.TIMESTAMP, 0); -}; - -ColumnTypeContext.prototype.ARRAY = function() { - return this.getToken(FlinkSqlParserParser.ARRAY, 0); -}; - -ColumnTypeContext.prototype.MAP = function() { - return this.getToken(FlinkSqlParserParser.MAP, 0); -}; - -ColumnTypeContext.prototype.MULTISET = function() { - return this.getToken(FlinkSqlParserParser.MULTISET, 0); -}; - -ColumnTypeContext.prototype.ROW = function() { - return this.getToken(FlinkSqlParserParser.ROW, 0); -}; - -ColumnTypeContext.prototype.BOOLEAN = function() { - return this.getToken(FlinkSqlParserParser.BOOLEAN, 0); -}; - -ColumnTypeContext.prototype.RAW = function() { - return this.getToken(FlinkSqlParserParser.RAW, 0); -}; - -ColumnTypeContext.prototype.NULL = function() { - return this.getToken(FlinkSqlParserParser.NULL, 0); -}; - -ColumnTypeContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterColumnType(this); - } -}; - -ColumnTypeContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitColumnType(this); - } -}; - -ColumnTypeContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitColumnType(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ColumnTypeContext = ColumnTypeContext; - -FlinkSqlParserParser.prototype.columnType = function() { - - var localctx = new ColumnTypeContext(this, this._ctx, this.state); - this.enterRule(localctx, 20, FlinkSqlParserParser.RULE_columnType); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 193; - localctx.typeName = this._input.LT(1); - _la = this._input.LA(1); - if(!(((((_la - 257)) & ~0x1f) == 0 && ((1 << (_la - 257)) & ((1 << (FlinkSqlParserParser.STRING - 257)) | (1 << (FlinkSqlParserParser.ARRAY - 257)) | (1 << (FlinkSqlParserParser.MAP - 257)) | (1 << (FlinkSqlParserParser.CHAR - 257)) | (1 << (FlinkSqlParserParser.VARCHAR - 257)) | (1 << (FlinkSqlParserParser.BINARY - 257)) | (1 << (FlinkSqlParserParser.VARBINARY - 257)) | (1 << (FlinkSqlParserParser.BYTES - 257)) | (1 << (FlinkSqlParserParser.DECIMAL - 257)) | (1 << (FlinkSqlParserParser.TINYINT - 257)) | (1 << (FlinkSqlParserParser.SMALLINT - 257)) | (1 << (FlinkSqlParserParser.INT - 257)) | (1 << (FlinkSqlParserParser.BIGINT - 257)) | (1 << (FlinkSqlParserParser.FLOAT - 257)) | (1 << (FlinkSqlParserParser.DOUBLE - 257)) | (1 << (FlinkSqlParserParser.DATE - 257)) | (1 << (FlinkSqlParserParser.TIME - 257)) | (1 << (FlinkSqlParserParser.TIMESTAMP - 257)) | (1 << (FlinkSqlParserParser.MULTISET - 257)) | (1 << (FlinkSqlParserParser.BOOLEAN - 257)) | (1 << (FlinkSqlParserParser.RAW - 257)) | (1 << (FlinkSqlParserParser.ROW - 257)) | (1 << (FlinkSqlParserParser.NULL - 257)))) !== 0))) { - localctx.typeName = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function PartitionDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_partitionDefinition; - return this; -} - -PartitionDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PartitionDefinitionContext.prototype.constructor = PartitionDefinitionContext; - -PartitionDefinitionContext.prototype.PARTITIONED = function() { - return this.getToken(FlinkSqlParserParser.PARTITIONED, 0); -}; - -PartitionDefinitionContext.prototype.BY = function() { - return this.getToken(FlinkSqlParserParser.BY, 0); -}; - -PartitionDefinitionContext.prototype.partitionColumnDefinition = function() { - return this.getTypedRuleContext(PartitionColumnDefinitionContext,0); -}; - -PartitionDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterPartitionDefinition(this); - } -}; - -PartitionDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitPartitionDefinition(this); - } -}; - -PartitionDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPartitionDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.PartitionDefinitionContext = PartitionDefinitionContext; - -FlinkSqlParserParser.prototype.partitionDefinition = function() { - - var localctx = new PartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 22, FlinkSqlParserParser.RULE_partitionDefinition); - try { - this.enterOuterAlt(localctx, 1); - this.state = 195; - this.match(FlinkSqlParserParser.PARTITIONED); - this.state = 196; - this.match(FlinkSqlParserParser.BY); - this.state = 197; - this.partitionColumnDefinition(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function PartitionColumnDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_partitionColumnDefinition; - return this; -} - -PartitionColumnDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PartitionColumnDefinitionContext.prototype.constructor = PartitionColumnDefinitionContext; - -PartitionColumnDefinitionContext.prototype.partitionColumnName = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(PartitionColumnNameContext); - } else { - return this.getTypedRuleContext(PartitionColumnNameContext,i); - } -}; - -PartitionColumnDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -PartitionColumnDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterPartitionColumnDefinition(this); - } -}; - -PartitionColumnDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitPartitionColumnDefinition(this); - } -}; - -PartitionColumnDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPartitionColumnDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.PartitionColumnDefinitionContext = PartitionColumnDefinitionContext; - -FlinkSqlParserParser.prototype.partitionColumnDefinition = function() { - - var localctx = new PartitionColumnDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 24, FlinkSqlParserParser.RULE_partitionColumnDefinition); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 199; - this.partitionColumnName(); - this.state = 204; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 200; - this.match(FlinkSqlParserParser.COMMA); - this.state = 201; - this.partitionColumnName(); - this.state = 206; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function PartitionColumnNameContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_partitionColumnName; - return this; -} - -PartitionColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PartitionColumnNameContext.prototype.constructor = PartitionColumnNameContext; - -PartitionColumnNameContext.prototype.ID = function() { - return this.getToken(FlinkSqlParserParser.ID, 0); -}; - -PartitionColumnNameContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterPartitionColumnName(this); - } -}; - -PartitionColumnNameContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitPartitionColumnName(this); - } -}; - -PartitionColumnNameContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPartitionColumnName(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.PartitionColumnNameContext = PartitionColumnNameContext; - -FlinkSqlParserParser.prototype.partitionColumnName = function() { - - var localctx = new PartitionColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 26, FlinkSqlParserParser.RULE_partitionColumnName); - try { - this.enterOuterAlt(localctx, 1); - this.state = 207; - this.match(FlinkSqlParserParser.ID); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function CreateDatabaseContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_createDatabase; - return this; -} - -CreateDatabaseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -CreateDatabaseContext.prototype.constructor = CreateDatabaseContext; - -CreateDatabaseContext.prototype.CREATE = function() { - return this.getToken(FlinkSqlParserParser.CREATE, 0); -}; - -CreateDatabaseContext.prototype.DATABASE = function() { - return this.getToken(FlinkSqlParserParser.DATABASE, 0); -}; - -CreateDatabaseContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -CreateDatabaseContext.prototype.withOption = function() { - return this.getTypedRuleContext(WithOptionContext,0); -}; - -CreateDatabaseContext.prototype.ifNotExists = function() { - return this.getTypedRuleContext(IfNotExistsContext,0); -}; - -CreateDatabaseContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterCreateDatabase(this); - } -}; - -CreateDatabaseContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitCreateDatabase(this); - } -}; - -CreateDatabaseContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitCreateDatabase(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.CreateDatabaseContext = CreateDatabaseContext; - -FlinkSqlParserParser.prototype.createDatabase = function() { - - var localctx = new CreateDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 28, FlinkSqlParserParser.RULE_createDatabase); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 209; - this.match(FlinkSqlParserParser.CREATE); - this.state = 210; - this.match(FlinkSqlParserParser.DATABASE); - this.state = 212; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IF) { - this.state = 211; - this.ifNotExists(); - } - - this.state = 214; - this.uid(); - this.state = 215; - this.withOption(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function CreateViewContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_createView; - return this; -} - -CreateViewContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -CreateViewContext.prototype.constructor = CreateViewContext; - -CreateViewContext.prototype.CREATE = function() { - return this.getToken(FlinkSqlParserParser.CREATE, 0); -}; - -CreateViewContext.prototype.VIEW = function() { - return this.getToken(FlinkSqlParserParser.VIEW, 0); -}; - -CreateViewContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -CreateViewContext.prototype.AS = function() { - return this.getToken(FlinkSqlParserParser.AS, 0); -}; - -CreateViewContext.prototype.selectStatement = function() { - return this.getTypedRuleContext(SelectStatementContext,0); -}; - -CreateViewContext.prototype.TEMPORARY = function() { - return this.getToken(FlinkSqlParserParser.TEMPORARY, 0); -}; - -CreateViewContext.prototype.ifNotExists = function() { - return this.getTypedRuleContext(IfNotExistsContext,0); -}; - -CreateViewContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterCreateView(this); - } -}; - -CreateViewContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitCreateView(this); - } -}; - -CreateViewContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitCreateView(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.CreateViewContext = CreateViewContext; - -FlinkSqlParserParser.prototype.createView = function() { - - var localctx = new CreateViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 30, FlinkSqlParserParser.RULE_createView); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 217; - this.match(FlinkSqlParserParser.CREATE); - this.state = 219; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.TEMPORARY) { - this.state = 218; - this.match(FlinkSqlParserParser.TEMPORARY); - } - - this.state = 221; - this.match(FlinkSqlParserParser.VIEW); - this.state = 223; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IF) { - this.state = 222; - this.ifNotExists(); - } - - this.state = 225; - this.uid(); - this.state = 226; - this.match(FlinkSqlParserParser.AS); - this.state = 227; - this.selectStatement(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function CreateFunctionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_createFunction; - return this; -} - -CreateFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -CreateFunctionContext.prototype.constructor = CreateFunctionContext; - - -CreateFunctionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterCreateFunction(this); - } -}; - -CreateFunctionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitCreateFunction(this); - } -}; - -CreateFunctionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitCreateFunction(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.CreateFunctionContext = CreateFunctionContext; - -FlinkSqlParserParser.prototype.createFunction = function() { - - var localctx = new CreateFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 32, FlinkSqlParserParser.RULE_createFunction); - try { - this.enterOuterAlt(localctx, 1); - - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function AlterTableContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_alterTable; - return this; -} - -AlterTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -AlterTableContext.prototype.constructor = AlterTableContext; - -AlterTableContext.prototype.ALTER = function() { - return this.getToken(FlinkSqlParserParser.ALTER, 0); -}; - -AlterTableContext.prototype.TABLE = function() { - return this.getToken(FlinkSqlParserParser.TABLE, 0); -}; - -AlterTableContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -AlterTableContext.prototype.renameDefinition = function() { - return this.getTypedRuleContext(RenameDefinitionContext,0); -}; - -AlterTableContext.prototype.setKeyValueDefinition = function() { - return this.getTypedRuleContext(SetKeyValueDefinitionContext,0); -}; - -AlterTableContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterAlterTable(this); - } -}; - -AlterTableContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitAlterTable(this); - } -}; - -AlterTableContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitAlterTable(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.AlterTableContext = AlterTableContext; - -FlinkSqlParserParser.prototype.alterTable = function() { - - var localctx = new AlterTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 34, FlinkSqlParserParser.RULE_alterTable); - try { - this.enterOuterAlt(localctx, 1); - this.state = 231; - this.match(FlinkSqlParserParser.ALTER); - this.state = 232; - this.match(FlinkSqlParserParser.TABLE); - this.state = 233; - this.uid(); - this.state = 236; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.RENAME: - this.state = 234; - this.renameDefinition(); - break; - case FlinkSqlParserParser.SET: - this.state = 235; - this.setKeyValueDefinition(); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function RenameDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_renameDefinition; - return this; -} - -RenameDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -RenameDefinitionContext.prototype.constructor = RenameDefinitionContext; - -RenameDefinitionContext.prototype.RENAME = function() { - return this.getToken(FlinkSqlParserParser.RENAME, 0); -}; - -RenameDefinitionContext.prototype.TO = function() { - return this.getToken(FlinkSqlParserParser.TO, 0); -}; - -RenameDefinitionContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -RenameDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterRenameDefinition(this); - } -}; - -RenameDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitRenameDefinition(this); - } -}; - -RenameDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitRenameDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.RenameDefinitionContext = RenameDefinitionContext; - -FlinkSqlParserParser.prototype.renameDefinition = function() { - - var localctx = new RenameDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 36, FlinkSqlParserParser.RULE_renameDefinition); - try { - this.enterOuterAlt(localctx, 1); - this.state = 238; - this.match(FlinkSqlParserParser.RENAME); - this.state = 239; - this.match(FlinkSqlParserParser.TO); - this.state = 240; - this.uid(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function SetKeyValueDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_setKeyValueDefinition; - return this; -} - -SetKeyValueDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -SetKeyValueDefinitionContext.prototype.constructor = SetKeyValueDefinitionContext; - -SetKeyValueDefinitionContext.prototype.SET = function() { - return this.getToken(FlinkSqlParserParser.SET, 0); -}; - -SetKeyValueDefinitionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -SetKeyValueDefinitionContext.prototype.keyValueDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(KeyValueDefinitionContext); - } else { - return this.getTypedRuleContext(KeyValueDefinitionContext,i); - } -}; - -SetKeyValueDefinitionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -SetKeyValueDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -SetKeyValueDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSetKeyValueDefinition(this); - } -}; - -SetKeyValueDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSetKeyValueDefinition(this); - } -}; - -SetKeyValueDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSetKeyValueDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.SetKeyValueDefinitionContext = SetKeyValueDefinitionContext; - -FlinkSqlParserParser.prototype.setKeyValueDefinition = function() { - - var localctx = new SetKeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 38, FlinkSqlParserParser.RULE_setKeyValueDefinition); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 242; - this.match(FlinkSqlParserParser.SET); - this.state = 243; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 244; - this.keyValueDefinition(); - this.state = 249; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 245; - this.match(FlinkSqlParserParser.COMMA); - this.state = 246; - this.keyValueDefinition(); - this.state = 251; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 252; - this.match(FlinkSqlParserParser.RR_BRACKET); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function AlterDatabaseContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_alterDatabase; - return this; -} - -AlterDatabaseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -AlterDatabaseContext.prototype.constructor = AlterDatabaseContext; - -AlterDatabaseContext.prototype.ALTER = function() { - return this.getToken(FlinkSqlParserParser.ALTER, 0); -}; - -AlterDatabaseContext.prototype.DATABASE = function() { - return this.getToken(FlinkSqlParserParser.DATABASE, 0); -}; - -AlterDatabaseContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -AlterDatabaseContext.prototype.setKeyValueDefinition = function() { - return this.getTypedRuleContext(SetKeyValueDefinitionContext,0); -}; - -AlterDatabaseContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterAlterDatabase(this); - } -}; - -AlterDatabaseContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitAlterDatabase(this); - } -}; - -AlterDatabaseContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitAlterDatabase(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.AlterDatabaseContext = AlterDatabaseContext; - -FlinkSqlParserParser.prototype.alterDatabase = function() { - - var localctx = new AlterDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 40, FlinkSqlParserParser.RULE_alterDatabase); - try { - this.enterOuterAlt(localctx, 1); - this.state = 254; - this.match(FlinkSqlParserParser.ALTER); - this.state = 255; - this.match(FlinkSqlParserParser.DATABASE); - this.state = 256; - this.uid(); - this.state = 257; - this.setKeyValueDefinition(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function AlterFunctionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_alterFunction; - return this; -} - -AlterFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -AlterFunctionContext.prototype.constructor = AlterFunctionContext; - - -AlterFunctionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterAlterFunction(this); - } -}; - -AlterFunctionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitAlterFunction(this); - } -}; - -AlterFunctionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitAlterFunction(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.AlterFunctionContext = AlterFunctionContext; - -FlinkSqlParserParser.prototype.alterFunction = function() { - - var localctx = new AlterFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 42, FlinkSqlParserParser.RULE_alterFunction); - try { - this.enterOuterAlt(localctx, 1); - - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DropTableContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_dropTable; - return this; -} - -DropTableContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DropTableContext.prototype.constructor = DropTableContext; - -DropTableContext.prototype.DROP = function() { - return this.getToken(FlinkSqlParserParser.DROP, 0); -}; - -DropTableContext.prototype.TABLE = function() { - return this.getToken(FlinkSqlParserParser.TABLE, 0); -}; - -DropTableContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -DropTableContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - -DropTableContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDropTable(this); - } -}; - -DropTableContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDropTable(this); - } -}; - -DropTableContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDropTable(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DropTableContext = DropTableContext; - -FlinkSqlParserParser.prototype.dropTable = function() { - - var localctx = new DropTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 44, FlinkSqlParserParser.RULE_dropTable); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 261; - this.match(FlinkSqlParserParser.DROP); - this.state = 262; - this.match(FlinkSqlParserParser.TABLE); - this.state = 264; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IF) { - this.state = 263; - this.ifExists(); - } - - this.state = 266; - this.uid(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DropDatabaseContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_dropDatabase; - this.dropType = null; // Token - return this; -} - -DropDatabaseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DropDatabaseContext.prototype.constructor = DropDatabaseContext; - -DropDatabaseContext.prototype.DROP = function() { - return this.getToken(FlinkSqlParserParser.DROP, 0); -}; - -DropDatabaseContext.prototype.DATABASE = function() { - return this.getToken(FlinkSqlParserParser.DATABASE, 0); -}; - -DropDatabaseContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -DropDatabaseContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - -DropDatabaseContext.prototype.RESTRICT = function() { - return this.getToken(FlinkSqlParserParser.RESTRICT, 0); -}; - -DropDatabaseContext.prototype.CASCADE = function() { - return this.getToken(FlinkSqlParserParser.CASCADE, 0); -}; - -DropDatabaseContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDropDatabase(this); - } -}; - -DropDatabaseContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDropDatabase(this); - } -}; - -DropDatabaseContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDropDatabase(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DropDatabaseContext = DropDatabaseContext; - -FlinkSqlParserParser.prototype.dropDatabase = function() { - - var localctx = new DropDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 46, FlinkSqlParserParser.RULE_dropDatabase); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 268; - this.match(FlinkSqlParserParser.DROP); - this.state = 269; - this.match(FlinkSqlParserParser.DATABASE); - this.state = 271; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IF) { - this.state = 270; - this.ifExists(); - } - - this.state = 273; - this.uid(); - this.state = 275; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.CASCADE || _la===FlinkSqlParserParser.RESTRICT) { - this.state = 274; - localctx.dropType = this._input.LT(1); - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.CASCADE || _la===FlinkSqlParserParser.RESTRICT)) { - localctx.dropType = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } - - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DropViewContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_dropView; - return this; -} - -DropViewContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DropViewContext.prototype.constructor = DropViewContext; - -DropViewContext.prototype.DROP = function() { - return this.getToken(FlinkSqlParserParser.DROP, 0); -}; - -DropViewContext.prototype.VIEW = function() { - return this.getToken(FlinkSqlParserParser.VIEW, 0); -}; - -DropViewContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -DropViewContext.prototype.TEMPORARY = function() { - return this.getToken(FlinkSqlParserParser.TEMPORARY, 0); -}; - -DropViewContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - -DropViewContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDropView(this); - } -}; - -DropViewContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDropView(this); - } -}; - -DropViewContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDropView(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DropViewContext = DropViewContext; - -FlinkSqlParserParser.prototype.dropView = function() { - - var localctx = new DropViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 48, FlinkSqlParserParser.RULE_dropView); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 277; - this.match(FlinkSqlParserParser.DROP); - this.state = 279; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.TEMPORARY) { - this.state = 278; - this.match(FlinkSqlParserParser.TEMPORARY); - } - - this.state = 281; - this.match(FlinkSqlParserParser.VIEW); - this.state = 283; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IF) { - this.state = 282; - this.ifExists(); - } - - this.state = 285; - this.uid(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DropFunctionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_dropFunction; - return this; -} - -DropFunctionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DropFunctionContext.prototype.constructor = DropFunctionContext; - -DropFunctionContext.prototype.DROP = function() { - return this.getToken(FlinkSqlParserParser.DROP, 0); -}; - -DropFunctionContext.prototype.FUNCTION = function() { - return this.getToken(FlinkSqlParserParser.FUNCTION, 0); -}; - -DropFunctionContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -DropFunctionContext.prototype.TEMPORARY = function() { - return this.getToken(FlinkSqlParserParser.TEMPORARY, 0); -}; - -DropFunctionContext.prototype.SYSTEM = function() { - return this.getToken(FlinkSqlParserParser.SYSTEM, 0); -}; - -DropFunctionContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - -DropFunctionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDropFunction(this); - } -}; - -DropFunctionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDropFunction(this); - } -}; - -DropFunctionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDropFunction(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DropFunctionContext = DropFunctionContext; - -FlinkSqlParserParser.prototype.dropFunction = function() { - - var localctx = new DropFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 50, FlinkSqlParserParser.RULE_dropFunction); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 287; - this.match(FlinkSqlParserParser.DROP); - this.state = 291; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,18,this._ctx); - if(la_===1) { - this.state = 288; - this.match(FlinkSqlParserParser.TEMPORARY); - - } else if(la_===2) { - this.state = 289; - this.match(FlinkSqlParserParser.TEMPORARY); - this.state = 290; - this.match(FlinkSqlParserParser.SYSTEM); - - } - this.state = 293; - this.match(FlinkSqlParserParser.FUNCTION); - this.state = 295; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IF) { - this.state = 294; - this.ifExists(); - } - - this.state = 297; - this.uid(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function InsertStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_insertStatement; - return this; -} - -InsertStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -InsertStatementContext.prototype.constructor = InsertStatementContext; - -InsertStatementContext.prototype.INSERT = function() { - return this.getToken(FlinkSqlParserParser.INSERT, 0); -}; - -InsertStatementContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -InsertStatementContext.prototype.INTO = function() { - return this.getToken(FlinkSqlParserParser.INTO, 0); -}; - -InsertStatementContext.prototype.OVERWRITE = function() { - return this.getToken(FlinkSqlParserParser.OVERWRITE, 0); -}; - -InsertStatementContext.prototype.selectStatement = function() { - return this.getTypedRuleContext(SelectStatementContext,0); -}; - -InsertStatementContext.prototype.valuesDefinition = function() { - return this.getTypedRuleContext(ValuesDefinitionContext,0); -}; - -InsertStatementContext.prototype.insertPartitionDefinition = function() { - return this.getTypedRuleContext(InsertPartitionDefinitionContext,0); -}; - -InsertStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterInsertStatement(this); - } -}; - -InsertStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitInsertStatement(this); - } -}; - -InsertStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitInsertStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.InsertStatementContext = InsertStatementContext; - -FlinkSqlParserParser.prototype.insertStatement = function() { - - var localctx = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 52, FlinkSqlParserParser.RULE_insertStatement); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 299; - this.match(FlinkSqlParserParser.INSERT); - this.state = 300; - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.INTO || _la===FlinkSqlParserParser.OVERWRITE)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 301; - this.uid(); - this.state = 307; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.SELECT: - case FlinkSqlParserParser.PARTITION: - this.state = 303; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.PARTITION) { - this.state = 302; - this.insertPartitionDefinition(); - } - - this.state = 305; - this.selectStatement(); - break; - case FlinkSqlParserParser.VALUES: - this.state = 306; - this.valuesDefinition(); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function InsertPartitionDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_insertPartitionDefinition; - return this; -} - -InsertPartitionDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -InsertPartitionDefinitionContext.prototype.constructor = InsertPartitionDefinitionContext; - -InsertPartitionDefinitionContext.prototype.PARTITION = function() { - return this.getToken(FlinkSqlParserParser.PARTITION, 0); -}; - -InsertPartitionDefinitionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -InsertPartitionDefinitionContext.prototype.keyValueDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(KeyValueDefinitionContext); - } else { - return this.getTypedRuleContext(KeyValueDefinitionContext,i); - } -}; - -InsertPartitionDefinitionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -InsertPartitionDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -InsertPartitionDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterInsertPartitionDefinition(this); - } -}; - -InsertPartitionDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitInsertPartitionDefinition(this); - } -}; - -InsertPartitionDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitInsertPartitionDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.InsertPartitionDefinitionContext = InsertPartitionDefinitionContext; - -FlinkSqlParserParser.prototype.insertPartitionDefinition = function() { - - var localctx = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 54, FlinkSqlParserParser.RULE_insertPartitionDefinition); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 309; - this.match(FlinkSqlParserParser.PARTITION); - this.state = 310; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 311; - this.keyValueDefinition(); - this.state = 316; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 312; - this.match(FlinkSqlParserParser.COMMA); - this.state = 313; - this.keyValueDefinition(); - this.state = 318; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 319; - this.match(FlinkSqlParserParser.RR_BRACKET); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ValuesDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_valuesDefinition; - return this; -} - -ValuesDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ValuesDefinitionContext.prototype.constructor = ValuesDefinitionContext; - -ValuesDefinitionContext.prototype.VALUES = function() { - return this.getToken(FlinkSqlParserParser.VALUES, 0); -}; - -ValuesDefinitionContext.prototype.valuesRowDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ValuesRowDefinitionContext); - } else { - return this.getTypedRuleContext(ValuesRowDefinitionContext,i); - } -}; - -ValuesDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -ValuesDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterValuesDefinition(this); - } -}; - -ValuesDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitValuesDefinition(this); - } -}; - -ValuesDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitValuesDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ValuesDefinitionContext = ValuesDefinitionContext; - -FlinkSqlParserParser.prototype.valuesDefinition = function() { - - var localctx = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 56, FlinkSqlParserParser.RULE_valuesDefinition); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 321; - this.match(FlinkSqlParserParser.VALUES); - this.state = 322; - this.valuesRowDefinition(); - this.state = 327; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 323; - this.match(FlinkSqlParserParser.COMMA); - this.state = 324; - this.valuesRowDefinition(); - this.state = 329; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ValuesRowDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_valuesRowDefinition; - return this; -} - -ValuesRowDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ValuesRowDefinitionContext.prototype.constructor = ValuesRowDefinitionContext; - -ValuesRowDefinitionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -ValuesRowDefinitionContext.prototype.allValueDifinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(AllValueDifinitionContext); - } else { - return this.getTypedRuleContext(AllValueDifinitionContext,i); - } -}; - -ValuesRowDefinitionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -ValuesRowDefinitionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -ValuesRowDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterValuesRowDefinition(this); - } -}; - -ValuesRowDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitValuesRowDefinition(this); - } -}; - -ValuesRowDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitValuesRowDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ValuesRowDefinitionContext = ValuesRowDefinitionContext; - -FlinkSqlParserParser.prototype.valuesRowDefinition = function() { - - var localctx = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 58, FlinkSqlParserParser.RULE_valuesRowDefinition); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 330; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 331; - this.allValueDifinition(); - this.state = 336; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 332; - this.match(FlinkSqlParserParser.COMMA); - this.state = 333; - this.allValueDifinition(); - this.state = 338; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 339; - this.match(FlinkSqlParserParser.RR_BRACKET); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function AllValueDifinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_allValueDifinition; - return this; -} - -AllValueDifinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -AllValueDifinitionContext.prototype.constructor = AllValueDifinitionContext; - -AllValueDifinitionContext.prototype.stringLiteral = function() { - return this.getTypedRuleContext(StringLiteralContext,0); -}; - -AllValueDifinitionContext.prototype.booleanLiteral = function() { - return this.getTypedRuleContext(BooleanLiteralContext,0); -}; - -AllValueDifinitionContext.prototype.DEC_DIGIT = function() { - return this.getToken(FlinkSqlParserParser.DEC_DIGIT, 0); -}; - -AllValueDifinitionContext.prototype.NULL = function() { - return this.getToken(FlinkSqlParserParser.NULL, 0); -}; - -AllValueDifinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterAllValueDifinition(this); - } -}; - -AllValueDifinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitAllValueDifinition(this); - } -}; - -AllValueDifinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitAllValueDifinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.AllValueDifinitionContext = AllValueDifinitionContext; - -FlinkSqlParserParser.prototype.allValueDifinition = function() { - - var localctx = new AllValueDifinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 60, FlinkSqlParserParser.RULE_allValueDifinition); - try { - this.state = 345; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.STRING_LITERAL: - this.enterOuterAlt(localctx, 1); - this.state = 341; - this.stringLiteral(); - break; - case FlinkSqlParserParser.TRUE: - case FlinkSqlParserParser.FALSE: - this.enterOuterAlt(localctx, 2); - this.state = 342; - this.booleanLiteral(); - break; - case FlinkSqlParserParser.DEC_DIGIT: - this.enterOuterAlt(localctx, 3); - this.state = 343; - this.match(FlinkSqlParserParser.DEC_DIGIT); - break; - case FlinkSqlParserParser.NULL: - this.enterOuterAlt(localctx, 4); - this.state = 344; - this.match(FlinkSqlParserParser.NULL); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function QueryStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_queryStatement; - return this; -} - -QueryStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -QueryStatementContext.prototype.constructor = QueryStatementContext; - - -QueryStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterQueryStatement(this); - } -}; - -QueryStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitQueryStatement(this); - } -}; - -QueryStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitQueryStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.QueryStatementContext = QueryStatementContext; - -FlinkSqlParserParser.prototype.queryStatement = function() { - - var localctx = new QueryStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 62, FlinkSqlParserParser.RULE_queryStatement); - try { - this.enterOuterAlt(localctx, 1); - - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function SelectStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_selectStatement; - return this; -} - -SelectStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -SelectStatementContext.prototype.constructor = SelectStatementContext; - -SelectStatementContext.prototype.SELECT = function() { - return this.getToken(FlinkSqlParserParser.SELECT, 0); -}; - -SelectStatementContext.prototype.FROM = function() { - return this.getToken(FlinkSqlParserParser.FROM, 0); -}; - -SelectStatementContext.prototype.tableExpression = function() { - return this.getTypedRuleContext(TableExpressionContext,0); -}; - -SelectStatementContext.prototype.ASTERISK_SIGN = function() { - return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 0); -}; - -SelectStatementContext.prototype.projectItemDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ProjectItemDefinitionContext); - } else { - return this.getTypedRuleContext(ProjectItemDefinitionContext,i); - } -}; - -SelectStatementContext.prototype.setQuantifier = function() { - return this.getTypedRuleContext(SetQuantifierContext,0); -}; - -SelectStatementContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -SelectStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSelectStatement(this); - } -}; - -SelectStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSelectStatement(this); - } -}; - -SelectStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSelectStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.SelectStatementContext = SelectStatementContext; - -FlinkSqlParserParser.prototype.selectStatement = function() { - - var localctx = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 64, FlinkSqlParserParser.RULE_selectStatement); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 349; - this.match(FlinkSqlParserParser.SELECT); - this.state = 351; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.ALL || _la===FlinkSqlParserParser.DISTINCT) { - this.state = 350; - this.setQuantifier(); - } - - this.state = 362; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.ASTERISK_SIGN: - this.state = 353; - this.match(FlinkSqlParserParser.ASTERISK_SIGN); - break; - case FlinkSqlParserParser.NOT: - case FlinkSqlParserParser.TRUE: - case FlinkSqlParserParser.FALSE: - case FlinkSqlParserParser.CASE: - case FlinkSqlParserParser.FIRST: - case FlinkSqlParserParser.LAST: - case FlinkSqlParserParser.POSITION: - case FlinkSqlParserParser.PLUS: - case FlinkSqlParserParser.MINUS: - case FlinkSqlParserParser.ASTERISK: - case FlinkSqlParserParser.TILDE: - case FlinkSqlParserParser.NULL: - case FlinkSqlParserParser.LR_BRACKET: - case FlinkSqlParserParser.ZERO_DECIMAL: - case FlinkSqlParserParser.ONE_DECIMAL: - case FlinkSqlParserParser.TWO_DECIMAL: - case FlinkSqlParserParser.HYPNEN_SIGN: - case FlinkSqlParserParser.ID: - case FlinkSqlParserParser.STRING_LITERAL: - case FlinkSqlParserParser.DECIMAL_LITERAL: - case FlinkSqlParserParser.REAL_LITERAL: - case FlinkSqlParserParser.BIT_STRING: - this.state = 354; - this.projectItemDefinition(); - this.state = 359; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 355; - this.match(FlinkSqlParserParser.COMMA); - this.state = 356; - this.projectItemDefinition(); - this.state = 361; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - this.state = 364; - this.match(FlinkSqlParserParser.FROM); - this.state = 365; - this.tableExpression(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ProjectItemDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_projectItemDefinition; - return this; -} - -ProjectItemDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ProjectItemDefinitionContext.prototype.constructor = ProjectItemDefinitionContext; - -ProjectItemDefinitionContext.prototype.expression = function() { - return this.getTypedRuleContext(ExpressionContext,0); -}; - -ProjectItemDefinitionContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -ProjectItemDefinitionContext.prototype.AS = function() { - return this.getToken(FlinkSqlParserParser.AS, 0); -}; - -ProjectItemDefinitionContext.prototype.DOT = function() { - return this.getToken(FlinkSqlParserParser.DOT, 0); -}; - -ProjectItemDefinitionContext.prototype.ASTERISK_SIGN = function() { - return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 0); -}; - -ProjectItemDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterProjectItemDefinition(this); - } -}; - -ProjectItemDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitProjectItemDefinition(this); - } -}; - -ProjectItemDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitProjectItemDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ProjectItemDefinitionContext = ProjectItemDefinitionContext; - -FlinkSqlParserParser.prototype.projectItemDefinition = function() { - - var localctx = new ProjectItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 66, FlinkSqlParserParser.RULE_projectItemDefinition); - var _la = 0; // Token type - try { - this.state = 378; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.NOT: - case FlinkSqlParserParser.TRUE: - case FlinkSqlParserParser.FALSE: - case FlinkSqlParserParser.CASE: - case FlinkSqlParserParser.FIRST: - case FlinkSqlParserParser.LAST: - case FlinkSqlParserParser.POSITION: - case FlinkSqlParserParser.PLUS: - case FlinkSqlParserParser.MINUS: - case FlinkSqlParserParser.ASTERISK: - case FlinkSqlParserParser.TILDE: - case FlinkSqlParserParser.NULL: - case FlinkSqlParserParser.LR_BRACKET: - case FlinkSqlParserParser.ZERO_DECIMAL: - case FlinkSqlParserParser.ONE_DECIMAL: - case FlinkSqlParserParser.TWO_DECIMAL: - case FlinkSqlParserParser.HYPNEN_SIGN: - case FlinkSqlParserParser.STRING_LITERAL: - case FlinkSqlParserParser.DECIMAL_LITERAL: - case FlinkSqlParserParser.REAL_LITERAL: - case FlinkSqlParserParser.BIT_STRING: - this.enterOuterAlt(localctx, 1); - this.state = 367; - this.expression(); - this.state = 372; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.AS || _la===FlinkSqlParserParser.ID) { - this.state = 369; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.AS) { - this.state = 368; - this.match(FlinkSqlParserParser.AS); - } - - this.state = 371; - this.uid(); - } - - break; - case FlinkSqlParserParser.ID: - this.enterOuterAlt(localctx, 2); - this.state = 374; - this.uid(); - this.state = 375; - this.match(FlinkSqlParserParser.DOT); - this.state = 376; - this.match(FlinkSqlParserParser.ASTERISK_SIGN); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function TableExpressionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_tableExpression; - return this; -} - -TableExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -TableExpressionContext.prototype.constructor = TableExpressionContext; - -TableExpressionContext.prototype.tableReference = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(TableReferenceContext); - } else { - return this.getTypedRuleContext(TableReferenceContext,i); - } -}; - -TableExpressionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -TableExpressionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterTableExpression(this); - } -}; - -TableExpressionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitTableExpression(this); - } -}; - -TableExpressionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitTableExpression(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.TableExpressionContext = TableExpressionContext; - -FlinkSqlParserParser.prototype.tableExpression = function() { - - var localctx = new TableExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 68, FlinkSqlParserParser.RULE_tableExpression); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 380; - this.tableReference(); - this.state = 385; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 381; - this.match(FlinkSqlParserParser.COMMA); - this.state = 382; - this.tableReference(); - this.state = 387; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function TableReferenceContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_tableReference; - return this; -} - -TableReferenceContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -TableReferenceContext.prototype.constructor = TableReferenceContext; - -TableReferenceContext.prototype.tablePrimary = function() { - return this.getTypedRuleContext(TablePrimaryContext,0); -}; - -TableReferenceContext.prototype.tableAlias = function() { - return this.getTypedRuleContext(TableAliasContext,0); -}; - -TableReferenceContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterTableReference(this); - } -}; - -TableReferenceContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitTableReference(this); - } -}; - -TableReferenceContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitTableReference(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.TableReferenceContext = TableReferenceContext; - -FlinkSqlParserParser.prototype.tableReference = function() { - - var localctx = new TableReferenceContext(this, this._ctx, this.state); - this.enterRule(localctx, 70, FlinkSqlParserParser.RULE_tableReference); - try { - this.enterOuterAlt(localctx, 1); - this.state = 388; - this.tablePrimary(); - this.state = 389; - this.tableAlias(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function TablePrimaryContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_tablePrimary; - return this; -} - -TablePrimaryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -TablePrimaryContext.prototype.constructor = TablePrimaryContext; - -TablePrimaryContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -TablePrimaryContext.prototype.TABLE = function() { - return this.getToken(FlinkSqlParserParser.TABLE, 0); -}; - -TablePrimaryContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterTablePrimary(this); - } -}; - -TablePrimaryContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitTablePrimary(this); - } -}; - -TablePrimaryContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitTablePrimary(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.TablePrimaryContext = TablePrimaryContext; - -FlinkSqlParserParser.prototype.tablePrimary = function() { - - var localctx = new TablePrimaryContext(this, this._ctx, this.state); - this.enterRule(localctx, 72, FlinkSqlParserParser.RULE_tablePrimary); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 392; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.TABLE) { - this.state = 391; - this.match(FlinkSqlParserParser.TABLE); - } - - this.state = 394; - this.uid(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ExpressionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_expression; - return this; -} - -ExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ExpressionContext.prototype.constructor = ExpressionContext; - -ExpressionContext.prototype.booleanExpression = function() { - return this.getTypedRuleContext(BooleanExpressionContext,0); -}; - -ExpressionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterExpression(this); - } -}; - -ExpressionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitExpression(this); - } -}; - -ExpressionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitExpression(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ExpressionContext = ExpressionContext; - -FlinkSqlParserParser.prototype.expression = function() { - - var localctx = new ExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 74, FlinkSqlParserParser.RULE_expression); - try { - this.enterOuterAlt(localctx, 1); - this.state = 396; - this.booleanExpression(0); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function BooleanExpressionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_booleanExpression; - return this; -} - -BooleanExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -BooleanExpressionContext.prototype.constructor = BooleanExpressionContext; - - - -BooleanExpressionContext.prototype.copyFrom = function(ctx) { - antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); -}; - -function LogicalNotContext(parser, ctx) { - BooleanExpressionContext.call(this, parser); - BooleanExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -LogicalNotContext.prototype = Object.create(BooleanExpressionContext.prototype); -LogicalNotContext.prototype.constructor = LogicalNotContext; - -FlinkSqlParserParser.LogicalNotContext = LogicalNotContext; - -LogicalNotContext.prototype.NOT = function() { - return this.getToken(FlinkSqlParserParser.NOT, 0); -}; - -LogicalNotContext.prototype.booleanExpression = function() { - return this.getTypedRuleContext(BooleanExpressionContext,0); -}; -LogicalNotContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterLogicalNot(this); - } -}; - -LogicalNotContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitLogicalNot(this); - } -}; - -LogicalNotContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitLogicalNot(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function PredicatedContext(parser, ctx) { - BooleanExpressionContext.call(this, parser); - BooleanExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -PredicatedContext.prototype = Object.create(BooleanExpressionContext.prototype); -PredicatedContext.prototype.constructor = PredicatedContext; - -FlinkSqlParserParser.PredicatedContext = PredicatedContext; - -PredicatedContext.prototype.valueExpression = function() { - return this.getTypedRuleContext(ValueExpressionContext,0); -}; - -PredicatedContext.prototype.predicate = function() { - return this.getTypedRuleContext(PredicateContext,0); -}; -PredicatedContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterPredicated(this); - } -}; - -PredicatedContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitPredicated(this); - } -}; - -PredicatedContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPredicated(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function LogicalBinaryContext(parser, ctx) { - BooleanExpressionContext.call(this, parser); - this.left = null; // BooleanExpressionContext; - this.operator = null; // Token; - this.right = null; // BooleanExpressionContext; - BooleanExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -LogicalBinaryContext.prototype = Object.create(BooleanExpressionContext.prototype); -LogicalBinaryContext.prototype.constructor = LogicalBinaryContext; - -FlinkSqlParserParser.LogicalBinaryContext = LogicalBinaryContext; - -LogicalBinaryContext.prototype.booleanExpression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(BooleanExpressionContext); - } else { - return this.getTypedRuleContext(BooleanExpressionContext,i); - } -}; - -LogicalBinaryContext.prototype.AND = function() { - return this.getToken(FlinkSqlParserParser.AND, 0); -}; - -LogicalBinaryContext.prototype.OR = function() { - return this.getToken(FlinkSqlParserParser.OR, 0); -}; -LogicalBinaryContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterLogicalBinary(this); - } -}; - -LogicalBinaryContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitLogicalBinary(this); - } -}; - -LogicalBinaryContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitLogicalBinary(this); - } else { - return visitor.visitChildren(this); - } -}; - - - -FlinkSqlParserParser.prototype.booleanExpression = function(_p) { - if(_p===undefined) { - _p = 0; - } - var _parentctx = this._ctx; - var _parentState = this.state; - var localctx = new BooleanExpressionContext(this, this._ctx, _parentState); - var _prevctx = localctx; - var _startState = 76; - this.enterRecursionRule(localctx, 76, FlinkSqlParserParser.RULE_booleanExpression, _p); - try { - this.enterOuterAlt(localctx, 1); - this.state = 405; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,35,this._ctx); - switch(la_) { - case 1: - localctx = new LogicalNotContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - - this.state = 399; - this.match(FlinkSqlParserParser.NOT); - this.state = 400; - this.booleanExpression(4); - break; - - case 2: - localctx = new PredicatedContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 401; - this.valueExpression(0); - this.state = 403; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); - if(la_===1) { - this.state = 402; - this.predicate(); - - } - break; - - } - this._ctx.stop = this._input.LT(-1); - this.state = 415; - this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,37,this._ctx) - while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { - if(_alt===1) { - if(this._parseListeners!==null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - this.state = 413; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,36,this._ctx); - switch(la_) { - case 1: - localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_booleanExpression); - this.state = 407; - if (!( this.precpred(this._ctx, 2))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); - } - this.state = 408; - localctx.operator = this.match(FlinkSqlParserParser.AND); - this.state = 409; - localctx.right = this.booleanExpression(3); - break; - - case 2: - localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_booleanExpression); - this.state = 410; - if (!( this.precpred(this._ctx, 1))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); - } - this.state = 411; - localctx.operator = this.match(FlinkSqlParserParser.OR); - this.state = 412; - localctx.right = this.booleanExpression(2); - break; - - } - } - this.state = 417; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,37,this._ctx); - } - - } catch( error) { - if(error instanceof antlr4.error.RecognitionException) { - localctx.exception = error; - this._errHandler.reportError(this, error); - this._errHandler.recover(this, error); - } else { - throw error; - } - } finally { - this.unrollRecursionContexts(_parentctx) - } - return localctx; -}; - - -function PredicateContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_predicate; - this.kind = null; // Token - this.lower = null; // ValueExpressionContext - this.upper = null; // ValueExpressionContext - this.pattern = null; // ValueExpressionContext - this.quantifier = null; // Token - this.right = null; // ValueExpressionContext - return this; -} - -PredicateContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PredicateContext.prototype.constructor = PredicateContext; - -PredicateContext.prototype.AND = function() { - return this.getToken(FlinkSqlParserParser.AND, 0); -}; - -PredicateContext.prototype.BETWEEN = function() { - return this.getToken(FlinkSqlParserParser.BETWEEN, 0); -}; - -PredicateContext.prototype.valueExpression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ValueExpressionContext); - } else { - return this.getTypedRuleContext(ValueExpressionContext,i); - } -}; - -PredicateContext.prototype.NOT = function() { - return this.getToken(FlinkSqlParserParser.NOT, 0); -}; - -PredicateContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -PredicateContext.prototype.expression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ExpressionContext); - } else { - return this.getTypedRuleContext(ExpressionContext,i); - } -}; - -PredicateContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -PredicateContext.prototype.IN = function() { - return this.getToken(FlinkSqlParserParser.IN, 0); -}; - -PredicateContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -PredicateContext.prototype.RLIKE = function() { - return this.getToken(FlinkSqlParserParser.RLIKE, 0); -}; - -PredicateContext.prototype.LIKE = function() { - return this.getToken(FlinkSqlParserParser.LIKE, 0); -}; - -PredicateContext.prototype.ANY = function() { - return this.getToken(FlinkSqlParserParser.ANY, 0); -}; - -PredicateContext.prototype.ALL = function() { - return this.getToken(FlinkSqlParserParser.ALL, 0); -}; - -PredicateContext.prototype.IS = function() { - return this.getToken(FlinkSqlParserParser.IS, 0); -}; - -PredicateContext.prototype.NULL = function() { - return this.getToken(FlinkSqlParserParser.NULL, 0); -}; - -PredicateContext.prototype.TRUE = function() { - return this.getToken(FlinkSqlParserParser.TRUE, 0); -}; - -PredicateContext.prototype.FALSE = function() { - return this.getToken(FlinkSqlParserParser.FALSE, 0); -}; - -PredicateContext.prototype.FROM = function() { - return this.getToken(FlinkSqlParserParser.FROM, 0); -}; - -PredicateContext.prototype.DISTINCT = function() { - return this.getToken(FlinkSqlParserParser.DISTINCT, 0); -}; - -PredicateContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterPredicate(this); - } -}; - -PredicateContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitPredicate(this); - } -}; - -PredicateContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPredicate(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.PredicateContext = PredicateContext; - -FlinkSqlParserParser.prototype.predicate = function() { - - var localctx = new PredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 78, FlinkSqlParserParser.RULE_predicate); - var _la = 0; // Token type - try { - this.state = 488; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); - switch(la_) { - case 1: - this.enterOuterAlt(localctx, 1); - this.state = 419; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 418; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 421; - localctx.kind = this.match(FlinkSqlParserParser.BETWEEN); - this.state = 422; - localctx.lower = this.valueExpression(0); - this.state = 423; - this.match(FlinkSqlParserParser.AND); - this.state = 424; - localctx.upper = this.valueExpression(0); - break; - - case 2: - this.enterOuterAlt(localctx, 2); - this.state = 427; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 426; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 429; - localctx.kind = this.match(FlinkSqlParserParser.IN); - this.state = 430; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 431; - this.expression(); - this.state = 436; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 432; - this.match(FlinkSqlParserParser.COMMA); - this.state = 433; - this.expression(); - this.state = 438; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 439; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - case 3: - this.enterOuterAlt(localctx, 3); - this.state = 442; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 441; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 444; - localctx.kind = this.match(FlinkSqlParserParser.RLIKE); - this.state = 445; - localctx.pattern = this.valueExpression(0); - break; - - case 4: - this.enterOuterAlt(localctx, 4); - this.state = 447; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 446; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 449; - localctx.kind = this.match(FlinkSqlParserParser.LIKE); - this.state = 450; - localctx.quantifier = this._input.LT(1); - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.ALL || _la===FlinkSqlParserParser.ANY)) { - localctx.quantifier = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 464; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); - switch(la_) { - case 1: - this.state = 451; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 452; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - case 2: - this.state = 453; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 454; - this.expression(); - this.state = 459; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 455; - this.match(FlinkSqlParserParser.COMMA); - this.state = 456; - this.expression(); - this.state = 461; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 462; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - } - break; - - case 5: - this.enterOuterAlt(localctx, 5); - this.state = 467; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 466; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 469; - localctx.kind = this.match(FlinkSqlParserParser.LIKE); - this.state = 470; - localctx.pattern = this.valueExpression(0); - break; - - case 6: - this.enterOuterAlt(localctx, 6); - this.state = 471; - this.match(FlinkSqlParserParser.IS); - this.state = 473; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 472; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 475; - localctx.kind = this.match(FlinkSqlParserParser.NULL); - break; - - case 7: - this.enterOuterAlt(localctx, 7); - this.state = 476; - this.match(FlinkSqlParserParser.IS); - this.state = 478; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 477; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 480; - localctx.kind = this._input.LT(1); - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.TRUE || _la===FlinkSqlParserParser.FALSE)) { - localctx.kind = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - break; - - case 8: - this.enterOuterAlt(localctx, 8); - this.state = 481; - this.match(FlinkSqlParserParser.IS); - this.state = 483; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 482; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 485; - localctx.kind = this.match(FlinkSqlParserParser.DISTINCT); - this.state = 486; - this.match(FlinkSqlParserParser.FROM); - this.state = 487; - localctx.right = this.valueExpression(0); - break; - - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ValueExpressionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_valueExpression; - return this; -} - -ValueExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ValueExpressionContext.prototype.constructor = ValueExpressionContext; - - - -ValueExpressionContext.prototype.copyFrom = function(ctx) { - antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); -}; - -function ValueExpressionDefaultContext(parser, ctx) { - ValueExpressionContext.call(this, parser); - ValueExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -ValueExpressionDefaultContext.prototype = Object.create(ValueExpressionContext.prototype); -ValueExpressionDefaultContext.prototype.constructor = ValueExpressionDefaultContext; - -FlinkSqlParserParser.ValueExpressionDefaultContext = ValueExpressionDefaultContext; - -ValueExpressionDefaultContext.prototype.primaryExpression = function() { - return this.getTypedRuleContext(PrimaryExpressionContext,0); -}; -ValueExpressionDefaultContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterValueExpressionDefault(this); - } -}; - -ValueExpressionDefaultContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitValueExpressionDefault(this); - } -}; - -ValueExpressionDefaultContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitValueExpressionDefault(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function ComparisonContext(parser, ctx) { - ValueExpressionContext.call(this, parser); - this.left = null; // ValueExpressionContext; - this.right = null; // ValueExpressionContext; - ValueExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -ComparisonContext.prototype = Object.create(ValueExpressionContext.prototype); -ComparisonContext.prototype.constructor = ComparisonContext; - -FlinkSqlParserParser.ComparisonContext = ComparisonContext; - -ComparisonContext.prototype.comparisonOperator = function() { - return this.getTypedRuleContext(ComparisonOperatorContext,0); -}; - -ComparisonContext.prototype.valueExpression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ValueExpressionContext); - } else { - return this.getTypedRuleContext(ValueExpressionContext,i); - } -}; -ComparisonContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterComparison(this); - } -}; - -ComparisonContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitComparison(this); - } -}; - -ComparisonContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitComparison(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function ArithmeticBinaryContext(parser, ctx) { - ValueExpressionContext.call(this, parser); - this.left = null; // ValueExpressionContext; - this.operator = null; // Token; - this.right = null; // ValueExpressionContext; - ValueExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -ArithmeticBinaryContext.prototype = Object.create(ValueExpressionContext.prototype); -ArithmeticBinaryContext.prototype.constructor = ArithmeticBinaryContext; - -FlinkSqlParserParser.ArithmeticBinaryContext = ArithmeticBinaryContext; - -ArithmeticBinaryContext.prototype.valueExpression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ValueExpressionContext); - } else { - return this.getTypedRuleContext(ValueExpressionContext,i); - } -}; - -ArithmeticBinaryContext.prototype.ASTERISK = function() { - return this.getToken(FlinkSqlParserParser.ASTERISK, 0); -}; - -ArithmeticBinaryContext.prototype.SLASH = function() { - return this.getToken(FlinkSqlParserParser.SLASH, 0); -}; - -ArithmeticBinaryContext.prototype.PERCENT = function() { - return this.getToken(FlinkSqlParserParser.PERCENT, 0); -}; - -ArithmeticBinaryContext.prototype.DIV = function() { - return this.getToken(FlinkSqlParserParser.DIV, 0); -}; - -ArithmeticBinaryContext.prototype.PLUS = function() { - return this.getToken(FlinkSqlParserParser.PLUS, 0); -}; - -ArithmeticBinaryContext.prototype.MINUS = function() { - return this.getToken(FlinkSqlParserParser.MINUS, 0); -}; - -ArithmeticBinaryContext.prototype.CONCAT_PIPE = function() { - return this.getToken(FlinkSqlParserParser.CONCAT_PIPE, 0); -}; - -ArithmeticBinaryContext.prototype.AMPERSAND = function() { - return this.getToken(FlinkSqlParserParser.AMPERSAND, 0); -}; - -ArithmeticBinaryContext.prototype.HAT = function() { - return this.getToken(FlinkSqlParserParser.HAT, 0); -}; - -ArithmeticBinaryContext.prototype.PIPE = function() { - return this.getToken(FlinkSqlParserParser.PIPE, 0); -}; -ArithmeticBinaryContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterArithmeticBinary(this); - } -}; - -ArithmeticBinaryContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitArithmeticBinary(this); - } -}; - -ArithmeticBinaryContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitArithmeticBinary(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function ArithmeticUnaryContext(parser, ctx) { - ValueExpressionContext.call(this, parser); - this.operator = null; // Token; - ValueExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -ArithmeticUnaryContext.prototype = Object.create(ValueExpressionContext.prototype); -ArithmeticUnaryContext.prototype.constructor = ArithmeticUnaryContext; - -FlinkSqlParserParser.ArithmeticUnaryContext = ArithmeticUnaryContext; - -ArithmeticUnaryContext.prototype.valueExpression = function() { - return this.getTypedRuleContext(ValueExpressionContext,0); -}; - -ArithmeticUnaryContext.prototype.MINUS = function() { - return this.getToken(FlinkSqlParserParser.MINUS, 0); -}; - -ArithmeticUnaryContext.prototype.PLUS = function() { - return this.getToken(FlinkSqlParserParser.PLUS, 0); -}; - -ArithmeticUnaryContext.prototype.TILDE = function() { - return this.getToken(FlinkSqlParserParser.TILDE, 0); -}; -ArithmeticUnaryContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterArithmeticUnary(this); - } -}; - -ArithmeticUnaryContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitArithmeticUnary(this); - } -}; - -ArithmeticUnaryContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitArithmeticUnary(this); - } else { - return visitor.visitChildren(this); - } -}; - - - -FlinkSqlParserParser.prototype.valueExpression = function(_p) { - if(_p===undefined) { - _p = 0; - } - var _parentctx = this._ctx; - var _parentState = this.state; - var localctx = new ValueExpressionContext(this, this._ctx, _parentState); - var _prevctx = localctx; - var _startState = 80; - this.enterRecursionRule(localctx, 80, FlinkSqlParserParser.RULE_valueExpression, _p); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 494; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.NOT: - case FlinkSqlParserParser.TRUE: - case FlinkSqlParserParser.FALSE: - case FlinkSqlParserParser.CASE: - case FlinkSqlParserParser.FIRST: - case FlinkSqlParserParser.LAST: - case FlinkSqlParserParser.POSITION: - case FlinkSqlParserParser.ASTERISK: - case FlinkSqlParserParser.NULL: - case FlinkSqlParserParser.LR_BRACKET: - case FlinkSqlParserParser.ZERO_DECIMAL: - case FlinkSqlParserParser.ONE_DECIMAL: - case FlinkSqlParserParser.TWO_DECIMAL: - case FlinkSqlParserParser.HYPNEN_SIGN: - case FlinkSqlParserParser.STRING_LITERAL: - case FlinkSqlParserParser.DECIMAL_LITERAL: - case FlinkSqlParserParser.REAL_LITERAL: - case FlinkSqlParserParser.BIT_STRING: - localctx = new ValueExpressionDefaultContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - - this.state = 491; - this.primaryExpression(0); - break; - case FlinkSqlParserParser.PLUS: - case FlinkSqlParserParser.MINUS: - case FlinkSqlParserParser.TILDE: - localctx = new ArithmeticUnaryContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 492; - localctx.operator = this._input.LT(1); - _la = this._input.LA(1); - if(!(((((_la - 127)) & ~0x1f) == 0 && ((1 << (_la - 127)) & ((1 << (FlinkSqlParserParser.PLUS - 127)) | (1 << (FlinkSqlParserParser.MINUS - 127)) | (1 << (FlinkSqlParserParser.TILDE - 127)))) !== 0))) { - localctx.operator = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 493; - this.valueExpression(7); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - this._ctx.stop = this._input.LT(-1); - this.state = 517; - this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,52,this._ctx) - while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { - if(_alt===1) { - if(this._parseListeners!==null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - this.state = 515; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,51,this._ctx); - switch(la_) { - case 1: - localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); - this.state = 496; - if (!( this.precpred(this._ctx, 6))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); - } - this.state = 497; - localctx.operator = this._input.LT(1); - _la = this._input.LA(1); - if(!(((((_la - 129)) & ~0x1f) == 0 && ((1 << (_la - 129)) & ((1 << (FlinkSqlParserParser.ASTERISK - 129)) | (1 << (FlinkSqlParserParser.SLASH - 129)) | (1 << (FlinkSqlParserParser.PERCENT - 129)) | (1 << (FlinkSqlParserParser.DIV - 129)))) !== 0))) { - localctx.operator = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 498; - localctx.right = this.valueExpression(7); - break; - - case 2: - localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); - this.state = 499; - if (!( this.precpred(this._ctx, 5))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); - } - this.state = 500; - localctx.operator = this._input.LT(1); - _la = this._input.LA(1); - if(!(((((_la - 127)) & ~0x1f) == 0 && ((1 << (_la - 127)) & ((1 << (FlinkSqlParserParser.PLUS - 127)) | (1 << (FlinkSqlParserParser.MINUS - 127)) | (1 << (FlinkSqlParserParser.CONCAT_PIPE - 127)))) !== 0))) { - localctx.operator = this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 501; - localctx.right = this.valueExpression(6); - break; - - case 3: - localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); - this.state = 502; - if (!( this.precpred(this._ctx, 4))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); - } - this.state = 503; - localctx.operator = this.match(FlinkSqlParserParser.AMPERSAND); - this.state = 504; - localctx.right = this.valueExpression(5); - break; - - case 4: - localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); - this.state = 505; - if (!( this.precpred(this._ctx, 3))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); - } - this.state = 506; - localctx.operator = this.match(FlinkSqlParserParser.HAT); - this.state = 507; - localctx.right = this.valueExpression(4); - break; - - case 5: - localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); - this.state = 508; - if (!( this.precpred(this._ctx, 2))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); - } - this.state = 509; - localctx.operator = this.match(FlinkSqlParserParser.PIPE); - this.state = 510; - localctx.right = this.valueExpression(3); - break; - - case 6: - localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); - localctx.left = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); - this.state = 511; - if (!( this.precpred(this._ctx, 1))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); - } - this.state = 512; - this.comparisonOperator(); - this.state = 513; - localctx.right = this.valueExpression(2); - break; - - } - } - this.state = 519; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,52,this._ctx); - } - - } catch( error) { - if(error instanceof antlr4.error.RecognitionException) { - localctx.exception = error; - this._errHandler.reportError(this, error); - this._errHandler.recover(this, error); - } else { - throw error; - } - } finally { - this.unrollRecursionContexts(_parentctx) - } - return localctx; -}; - - -function PrimaryExpressionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_primaryExpression; - return this; -} - -PrimaryExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -PrimaryExpressionContext.prototype.constructor = PrimaryExpressionContext; - - - -PrimaryExpressionContext.prototype.copyFrom = function(ctx) { - antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); -}; - -function SimpleCaseContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - this.value = null; // ExpressionContext; - this.elseExpression = null; // ExpressionContext; - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -SimpleCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); -SimpleCaseContext.prototype.constructor = SimpleCaseContext; - -FlinkSqlParserParser.SimpleCaseContext = SimpleCaseContext; - -SimpleCaseContext.prototype.CASE = function() { - return this.getToken(FlinkSqlParserParser.CASE, 0); -}; - -SimpleCaseContext.prototype.END = function() { - return this.getToken(FlinkSqlParserParser.END, 0); -}; - -SimpleCaseContext.prototype.expression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ExpressionContext); - } else { - return this.getTypedRuleContext(ExpressionContext,i); - } -}; - -SimpleCaseContext.prototype.whenClause = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(WhenClauseContext); - } else { - return this.getTypedRuleContext(WhenClauseContext,i); - } -}; - -SimpleCaseContext.prototype.ELSE = function() { - return this.getToken(FlinkSqlParserParser.ELSE, 0); -}; -SimpleCaseContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSimpleCase(this); - } -}; - -SimpleCaseContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSimpleCase(this); - } -}; - -SimpleCaseContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSimpleCase(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function ConstantDefaultContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -ConstantDefaultContext.prototype = Object.create(PrimaryExpressionContext.prototype); -ConstantDefaultContext.prototype.constructor = ConstantDefaultContext; - -FlinkSqlParserParser.ConstantDefaultContext = ConstantDefaultContext; - -ConstantDefaultContext.prototype.constant = function() { - return this.getTypedRuleContext(ConstantContext,0); -}; -ConstantDefaultContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterConstantDefault(this); - } -}; - -ConstantDefaultContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitConstantDefault(this); - } -}; - -ConstantDefaultContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitConstantDefault(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function ParenthesizedExpressionContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -ParenthesizedExpressionContext.prototype = Object.create(PrimaryExpressionContext.prototype); -ParenthesizedExpressionContext.prototype.constructor = ParenthesizedExpressionContext; - -FlinkSqlParserParser.ParenthesizedExpressionContext = ParenthesizedExpressionContext; - -ParenthesizedExpressionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -ParenthesizedExpressionContext.prototype.expression = function() { - return this.getTypedRuleContext(ExpressionContext,0); -}; - -ParenthesizedExpressionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; -ParenthesizedExpressionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterParenthesizedExpression(this); - } -}; - -ParenthesizedExpressionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitParenthesizedExpression(this); - } -}; - -ParenthesizedExpressionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitParenthesizedExpression(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function LastContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -LastContext.prototype = Object.create(PrimaryExpressionContext.prototype); -LastContext.prototype.constructor = LastContext; - -FlinkSqlParserParser.LastContext = LastContext; - -LastContext.prototype.LAST = function() { - return this.getToken(FlinkSqlParserParser.LAST, 0); -}; - -LastContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -LastContext.prototype.expression = function() { - return this.getTypedRuleContext(ExpressionContext,0); -}; - -LastContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -LastContext.prototype.IGNORE = function() { - return this.getToken(FlinkSqlParserParser.IGNORE, 0); -}; - -LastContext.prototype.NULLS = function() { - return this.getToken(FlinkSqlParserParser.NULLS, 0); -}; -LastContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterLast(this); - } -}; - -LastContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitLast(this); - } -}; - -LastContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitLast(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function StarContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -StarContext.prototype = Object.create(PrimaryExpressionContext.prototype); -StarContext.prototype.constructor = StarContext; - -FlinkSqlParserParser.StarContext = StarContext; - -StarContext.prototype.ASTERISK = function() { - return this.getToken(FlinkSqlParserParser.ASTERISK, 0); -}; -StarContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterStar(this); - } -}; - -StarContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitStar(this); - } -}; - -StarContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitStar(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function SubscriptContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - this.value = null; // PrimaryExpressionContext; - this.index = null; // ValueExpressionContext; - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -SubscriptContext.prototype = Object.create(PrimaryExpressionContext.prototype); -SubscriptContext.prototype.constructor = SubscriptContext; - -FlinkSqlParserParser.SubscriptContext = SubscriptContext; - -SubscriptContext.prototype.LS_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LS_BRACKET, 0); -}; - -SubscriptContext.prototype.RS_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RS_BRACKET, 0); -}; - -SubscriptContext.prototype.primaryExpression = function() { - return this.getTypedRuleContext(PrimaryExpressionContext,0); -}; - -SubscriptContext.prototype.valueExpression = function() { - return this.getTypedRuleContext(ValueExpressionContext,0); -}; -SubscriptContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSubscript(this); - } -}; - -SubscriptContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSubscript(this); - } -}; - -SubscriptContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSubscript(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function SearchedCaseContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - this.elseExpression = null; // ExpressionContext; - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -SearchedCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); -SearchedCaseContext.prototype.constructor = SearchedCaseContext; - -FlinkSqlParserParser.SearchedCaseContext = SearchedCaseContext; - -SearchedCaseContext.prototype.CASE = function() { - return this.getToken(FlinkSqlParserParser.CASE, 0); -}; - -SearchedCaseContext.prototype.END = function() { - return this.getToken(FlinkSqlParserParser.END, 0); -}; - -SearchedCaseContext.prototype.whenClause = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(WhenClauseContext); - } else { - return this.getTypedRuleContext(WhenClauseContext,i); - } -}; - -SearchedCaseContext.prototype.ELSE = function() { - return this.getToken(FlinkSqlParserParser.ELSE, 0); -}; - -SearchedCaseContext.prototype.expression = function() { - return this.getTypedRuleContext(ExpressionContext,0); -}; -SearchedCaseContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSearchedCase(this); - } -}; - -SearchedCaseContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSearchedCase(this); - } -}; - -SearchedCaseContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSearchedCase(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function PositionContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - this.substr = null; // ValueExpressionContext; - this.str = null; // ValueExpressionContext; - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -PositionContext.prototype = Object.create(PrimaryExpressionContext.prototype); -PositionContext.prototype.constructor = PositionContext; - -FlinkSqlParserParser.PositionContext = PositionContext; - -PositionContext.prototype.POSITION = function() { - return this.getToken(FlinkSqlParserParser.POSITION, 0); -}; - -PositionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -PositionContext.prototype.IN = function() { - return this.getToken(FlinkSqlParserParser.IN, 0); -}; - -PositionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -PositionContext.prototype.valueExpression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ValueExpressionContext); - } else { - return this.getTypedRuleContext(ValueExpressionContext,i); - } -}; -PositionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterPosition(this); - } -}; - -PositionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitPosition(this); - } -}; - -PositionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitPosition(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function FirstContext(parser, ctx) { - PrimaryExpressionContext.call(this, parser); - PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); - return this; -} - -FirstContext.prototype = Object.create(PrimaryExpressionContext.prototype); -FirstContext.prototype.constructor = FirstContext; - -FlinkSqlParserParser.FirstContext = FirstContext; - -FirstContext.prototype.FIRST = function() { - return this.getToken(FlinkSqlParserParser.FIRST, 0); -}; - -FirstContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -FirstContext.prototype.expression = function() { - return this.getTypedRuleContext(ExpressionContext,0); -}; - -FirstContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -FirstContext.prototype.IGNORE = function() { - return this.getToken(FlinkSqlParserParser.IGNORE, 0); -}; - -FirstContext.prototype.NULLS = function() { - return this.getToken(FlinkSqlParserParser.NULLS, 0); -}; -FirstContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterFirst(this); - } -}; - -FirstContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitFirst(this); - } -}; - -FirstContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitFirst(this); - } else { - return visitor.visitChildren(this); - } -}; - - - -FlinkSqlParserParser.prototype.primaryExpression = function(_p) { - if(_p===undefined) { - _p = 0; - } - var _parentctx = this._ctx; - var _parentState = this.state; - var localctx = new PrimaryExpressionContext(this, this._ctx, _parentState); - var _prevctx = localctx; - var _startState = 82; - this.enterRecursionRule(localctx, 82, FlinkSqlParserParser.RULE_primaryExpression, _p); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 577; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); - switch(la_) { - case 1: - localctx = new SearchedCaseContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - - this.state = 521; - this.match(FlinkSqlParserParser.CASE); - this.state = 523; - this._errHandler.sync(this); - _la = this._input.LA(1); - do { - this.state = 522; - this.whenClause(); - this.state = 525; - this._errHandler.sync(this); - _la = this._input.LA(1); - } while(_la===FlinkSqlParserParser.WHEN); - this.state = 529; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.ELSE) { - this.state = 527; - this.match(FlinkSqlParserParser.ELSE); - this.state = 528; - localctx.elseExpression = this.expression(); - } - - this.state = 531; - this.match(FlinkSqlParserParser.END); - break; - - case 2: - localctx = new SimpleCaseContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 533; - this.match(FlinkSqlParserParser.CASE); - this.state = 534; - localctx.value = this.expression(); - this.state = 536; - this._errHandler.sync(this); - _la = this._input.LA(1); - do { - this.state = 535; - this.whenClause(); - this.state = 538; - this._errHandler.sync(this); - _la = this._input.LA(1); - } while(_la===FlinkSqlParserParser.WHEN); - this.state = 542; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.ELSE) { - this.state = 540; - this.match(FlinkSqlParserParser.ELSE); - this.state = 541; - localctx.elseExpression = this.expression(); - } - - this.state = 544; - this.match(FlinkSqlParserParser.END); - break; - - case 3: - localctx = new FirstContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 546; - this.match(FlinkSqlParserParser.FIRST); - this.state = 547; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 548; - this.expression(); - this.state = 551; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IGNORE) { - this.state = 549; - this.match(FlinkSqlParserParser.IGNORE); - this.state = 550; - this.match(FlinkSqlParserParser.NULLS); - } - - this.state = 553; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - case 4: - localctx = new LastContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 555; - this.match(FlinkSqlParserParser.LAST); - this.state = 556; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 557; - this.expression(); - this.state = 560; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.IGNORE) { - this.state = 558; - this.match(FlinkSqlParserParser.IGNORE); - this.state = 559; - this.match(FlinkSqlParserParser.NULLS); - } - - this.state = 562; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - case 5: - localctx = new PositionContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 564; - this.match(FlinkSqlParserParser.POSITION); - this.state = 565; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 566; - localctx.substr = this.valueExpression(0); - this.state = 567; - this.match(FlinkSqlParserParser.IN); - this.state = 568; - localctx.str = this.valueExpression(0); - this.state = 569; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - case 6: - localctx = new ConstantDefaultContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 571; - this.constant(); - break; - - case 7: - localctx = new StarContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 572; - this.match(FlinkSqlParserParser.ASTERISK); - break; - - case 8: - localctx = new ParenthesizedExpressionContext(this, localctx); - this._ctx = localctx; - _prevctx = localctx; - this.state = 573; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 574; - this.expression(); - this.state = 575; - this.match(FlinkSqlParserParser.RR_BRACKET); - break; - - } - this._ctx.stop = this._input.LT(-1); - this.state = 586; - this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,60,this._ctx) - while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { - if(_alt===1) { - if(this._parseListeners!==null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - localctx = new SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); - localctx.value = _prevctx; - this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_primaryExpression); - this.state = 579; - if (!( this.precpred(this._ctx, 2))) { - throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); - } - this.state = 580; - this.match(FlinkSqlParserParser.LS_BRACKET); - this.state = 581; - localctx.index = this.valueExpression(0); - this.state = 582; - this.match(FlinkSqlParserParser.RS_BRACKET); - } - this.state = 588; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,60,this._ctx); - } - - } catch( error) { - if(error instanceof antlr4.error.RecognitionException) { - localctx.exception = error; - this._errHandler.reportError(this, error); - this._errHandler.recover(this, error); - } else { - throw error; - } - } finally { - this.unrollRecursionContexts(_parentctx) - } - return localctx; -}; - - -function TableAliasContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_tableAlias; - return this; -} - -TableAliasContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -TableAliasContext.prototype.constructor = TableAliasContext; - -TableAliasContext.prototype.strictIdentifier = function() { - return this.getTypedRuleContext(StrictIdentifierContext,0); -}; - -TableAliasContext.prototype.AS = function() { - return this.getToken(FlinkSqlParserParser.AS, 0); -}; - -TableAliasContext.prototype.identifierList = function() { - return this.getTypedRuleContext(IdentifierListContext,0); -}; - -TableAliasContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterTableAlias(this); - } -}; - -TableAliasContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitTableAlias(this); - } -}; - -TableAliasContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitTableAlias(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.TableAliasContext = TableAliasContext; - -FlinkSqlParserParser.prototype.tableAlias = function() { - - var localctx = new TableAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 84, FlinkSqlParserParser.RULE_tableAlias); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 596; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.AS || _la===FlinkSqlParserParser.STRING_LITERAL || _la===FlinkSqlParserParser.IDENTIFIER_BASE) { - this.state = 590; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.AS) { - this.state = 589; - this.match(FlinkSqlParserParser.AS); - } - - this.state = 592; - this.strictIdentifier(); - this.state = 594; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.LR_BRACKET) { - this.state = 593; - this.identifierList(); - } - - } - - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function IdentifierListContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_identifierList; - return this; -} - -IdentifierListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -IdentifierListContext.prototype.constructor = IdentifierListContext; - -IdentifierListContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -IdentifierListContext.prototype.identifierSeq = function() { - return this.getTypedRuleContext(IdentifierSeqContext,0); -}; - -IdentifierListContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -IdentifierListContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterIdentifierList(this); - } -}; - -IdentifierListContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitIdentifierList(this); - } -}; - -IdentifierListContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitIdentifierList(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.IdentifierListContext = IdentifierListContext; - -FlinkSqlParserParser.prototype.identifierList = function() { - - var localctx = new IdentifierListContext(this, this._ctx, this.state); - this.enterRule(localctx, 86, FlinkSqlParserParser.RULE_identifierList); - try { - this.enterOuterAlt(localctx, 1); - this.state = 598; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 599; - this.identifierSeq(); - this.state = 600; - this.match(FlinkSqlParserParser.RR_BRACKET); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function IdentifierSeqContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_identifierSeq; - return this; -} - -IdentifierSeqContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -IdentifierSeqContext.prototype.constructor = IdentifierSeqContext; - -IdentifierSeqContext.prototype.identifier = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(IdentifierContext); - } else { - return this.getTypedRuleContext(IdentifierContext,i); - } -}; - -IdentifierSeqContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -IdentifierSeqContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterIdentifierSeq(this); - } -}; - -IdentifierSeqContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitIdentifierSeq(this); - } -}; - -IdentifierSeqContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitIdentifierSeq(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.IdentifierSeqContext = IdentifierSeqContext; - -FlinkSqlParserParser.prototype.identifierSeq = function() { - - var localctx = new IdentifierSeqContext(this, this._ctx, this.state); - this.enterRule(localctx, 88, FlinkSqlParserParser.RULE_identifierSeq); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 602; - this.identifier(); - this.state = 607; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 603; - this.match(FlinkSqlParserParser.COMMA); - this.state = 604; - this.identifier(); - this.state = 609; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function IdentifierContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_identifier; - return this; -} - -IdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -IdentifierContext.prototype.constructor = IdentifierContext; - -IdentifierContext.prototype.strictIdentifier = function() { - return this.getTypedRuleContext(StrictIdentifierContext,0); -}; - -IdentifierContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterIdentifier(this); - } -}; - -IdentifierContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitIdentifier(this); - } -}; - -IdentifierContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitIdentifier(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.IdentifierContext = IdentifierContext; - -FlinkSqlParserParser.prototype.identifier = function() { - - var localctx = new IdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 90, FlinkSqlParserParser.RULE_identifier); - try { - this.enterOuterAlt(localctx, 1); - this.state = 610; - this.strictIdentifier(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function StrictIdentifierContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_strictIdentifier; - return this; -} - -StrictIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -StrictIdentifierContext.prototype.constructor = StrictIdentifierContext; - - - -StrictIdentifierContext.prototype.copyFrom = function(ctx) { - antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); -}; - - -function QuotedIdentifierAlternativeContext(parser, ctx) { - StrictIdentifierContext.call(this, parser); - StrictIdentifierContext.prototype.copyFrom.call(this, ctx); - return this; -} - -QuotedIdentifierAlternativeContext.prototype = Object.create(StrictIdentifierContext.prototype); -QuotedIdentifierAlternativeContext.prototype.constructor = QuotedIdentifierAlternativeContext; - -FlinkSqlParserParser.QuotedIdentifierAlternativeContext = QuotedIdentifierAlternativeContext; - -QuotedIdentifierAlternativeContext.prototype.quotedIdentifier = function() { - return this.getTypedRuleContext(QuotedIdentifierContext,0); -}; -QuotedIdentifierAlternativeContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterQuotedIdentifierAlternative(this); - } -}; - -QuotedIdentifierAlternativeContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitQuotedIdentifierAlternative(this); - } -}; - -QuotedIdentifierAlternativeContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitQuotedIdentifierAlternative(this); - } else { - return visitor.visitChildren(this); - } -}; - - -function UnquotedIdentifierContext(parser, ctx) { - StrictIdentifierContext.call(this, parser); - StrictIdentifierContext.prototype.copyFrom.call(this, ctx); - return this; -} - -UnquotedIdentifierContext.prototype = Object.create(StrictIdentifierContext.prototype); -UnquotedIdentifierContext.prototype.constructor = UnquotedIdentifierContext; - -FlinkSqlParserParser.UnquotedIdentifierContext = UnquotedIdentifierContext; - -UnquotedIdentifierContext.prototype.IDENTIFIER_BASE = function() { - return this.getToken(FlinkSqlParserParser.IDENTIFIER_BASE, 0); -}; -UnquotedIdentifierContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterUnquotedIdentifier(this); - } -}; - -UnquotedIdentifierContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitUnquotedIdentifier(this); - } -}; - -UnquotedIdentifierContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitUnquotedIdentifier(this); - } else { - return visitor.visitChildren(this); - } -}; - - - -FlinkSqlParserParser.StrictIdentifierContext = StrictIdentifierContext; - -FlinkSqlParserParser.prototype.strictIdentifier = function() { - - var localctx = new StrictIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 92, FlinkSqlParserParser.RULE_strictIdentifier); - try { - this.state = 614; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.IDENTIFIER_BASE: - localctx = new UnquotedIdentifierContext(this, localctx); - this.enterOuterAlt(localctx, 1); - this.state = 612; - this.match(FlinkSqlParserParser.IDENTIFIER_BASE); - break; - case FlinkSqlParserParser.STRING_LITERAL: - localctx = new QuotedIdentifierAlternativeContext(this, localctx); - this.enterOuterAlt(localctx, 2); - this.state = 613; - this.quotedIdentifier(); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function QuotedIdentifierContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_quotedIdentifier; - return this; -} - -QuotedIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -QuotedIdentifierContext.prototype.constructor = QuotedIdentifierContext; - -QuotedIdentifierContext.prototype.STRING_LITERAL = function() { - return this.getToken(FlinkSqlParserParser.STRING_LITERAL, 0); -}; - -QuotedIdentifierContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterQuotedIdentifier(this); - } -}; - -QuotedIdentifierContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitQuotedIdentifier(this); - } -}; - -QuotedIdentifierContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitQuotedIdentifier(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.QuotedIdentifierContext = QuotedIdentifierContext; - -FlinkSqlParserParser.prototype.quotedIdentifier = function() { - - var localctx = new QuotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 94, FlinkSqlParserParser.RULE_quotedIdentifier); - try { - this.enterOuterAlt(localctx, 1); - this.state = 616; - this.match(FlinkSqlParserParser.STRING_LITERAL); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function WhenClauseContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_whenClause; - this.condition = null; // ExpressionContext - this.result = null; // ExpressionContext - return this; -} - -WhenClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -WhenClauseContext.prototype.constructor = WhenClauseContext; - -WhenClauseContext.prototype.WHEN = function() { - return this.getToken(FlinkSqlParserParser.WHEN, 0); -}; - -WhenClauseContext.prototype.THEN = function() { - return this.getToken(FlinkSqlParserParser.THEN, 0); -}; - -WhenClauseContext.prototype.expression = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ExpressionContext); - } else { - return this.getTypedRuleContext(ExpressionContext,i); - } -}; - -WhenClauseContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterWhenClause(this); - } -}; - -WhenClauseContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitWhenClause(this); - } -}; - -WhenClauseContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitWhenClause(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.WhenClauseContext = WhenClauseContext; - -FlinkSqlParserParser.prototype.whenClause = function() { - - var localctx = new WhenClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 96, FlinkSqlParserParser.RULE_whenClause); - try { - this.enterOuterAlt(localctx, 1); - this.state = 618; - this.match(FlinkSqlParserParser.WHEN); - this.state = 619; - localctx.condition = this.expression(); - this.state = 620; - this.match(FlinkSqlParserParser.THEN); - this.state = 621; - localctx.result = this.expression(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function UidListContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_uidList; - return this; -} - -UidListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -UidListContext.prototype.constructor = UidListContext; - -UidListContext.prototype.uid = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(UidContext); - } else { - return this.getTypedRuleContext(UidContext,i); - } -}; - -UidListContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -UidListContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterUidList(this); - } -}; - -UidListContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitUidList(this); - } -}; - -UidListContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitUidList(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.UidListContext = UidListContext; - -FlinkSqlParserParser.prototype.uidList = function() { - - var localctx = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 98, FlinkSqlParserParser.RULE_uidList); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 623; - this.uid(); - this.state = 628; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 624; - this.match(FlinkSqlParserParser.COMMA); - this.state = 625; - this.uid(); - this.state = 630; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function UidContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_uid; - return this; -} - -UidContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -UidContext.prototype.constructor = UidContext; - -UidContext.prototype.ID = function() { - return this.getToken(FlinkSqlParserParser.ID, 0); -}; - -UidContext.prototype.DOT_ID = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.DOT_ID); - } else { - return this.getToken(FlinkSqlParserParser.DOT_ID, i); - } -}; - - -UidContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterUid(this); - } -}; - -UidContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitUid(this); - } -}; - -UidContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitUid(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.UidContext = UidContext; - -FlinkSqlParserParser.prototype.uid = function() { - - var localctx = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 100, FlinkSqlParserParser.RULE_uid); - try { - this.enterOuterAlt(localctx, 1); - this.state = 631; - this.match(FlinkSqlParserParser.ID); - this.state = 635; - this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,67,this._ctx) - while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { - if(_alt===1+1) { - this.state = 632; - this.match(FlinkSqlParserParser.DOT_ID); - } - this.state = 637; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,67,this._ctx); - } - - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function WithOptionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_withOption; - return this; -} - -WithOptionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -WithOptionContext.prototype.constructor = WithOptionContext; - -WithOptionContext.prototype.WITH = function() { - return this.getToken(FlinkSqlParserParser.WITH, 0); -}; - -WithOptionContext.prototype.LR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); -}; - -WithOptionContext.prototype.keyValueDefinition = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(KeyValueDefinitionContext); - } else { - return this.getTypedRuleContext(KeyValueDefinitionContext,i); - } -}; - -WithOptionContext.prototype.RR_BRACKET = function() { - return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); -}; - -WithOptionContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.COMMA); - } else { - return this.getToken(FlinkSqlParserParser.COMMA, i); - } -}; - - -WithOptionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterWithOption(this); - } -}; - -WithOptionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitWithOption(this); - } -}; - -WithOptionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitWithOption(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.WithOptionContext = WithOptionContext; - -FlinkSqlParserParser.prototype.withOption = function() { - - var localctx = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 102, FlinkSqlParserParser.RULE_withOption); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 638; - this.match(FlinkSqlParserParser.WITH); - this.state = 639; - this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 640; - this.keyValueDefinition(); - this.state = 645; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.COMMA) { - this.state = 641; - this.match(FlinkSqlParserParser.COMMA); - this.state = 642; - this.keyValueDefinition(); - this.state = 647; - this._errHandler.sync(this); - _la = this._input.LA(1); - } - this.state = 648; - this.match(FlinkSqlParserParser.RR_BRACKET); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function IfNotExistsContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_ifNotExists; - return this; -} - -IfNotExistsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -IfNotExistsContext.prototype.constructor = IfNotExistsContext; - -IfNotExistsContext.prototype.IF = function() { - return this.getToken(FlinkSqlParserParser.IF, 0); -}; - -IfNotExistsContext.prototype.NOT = function() { - return this.getToken(FlinkSqlParserParser.NOT, 0); -}; - -IfNotExistsContext.prototype.EXISTS = function() { - return this.getToken(FlinkSqlParserParser.EXISTS, 0); -}; - -IfNotExistsContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterIfNotExists(this); - } -}; - -IfNotExistsContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitIfNotExists(this); - } -}; - -IfNotExistsContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitIfNotExists(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.IfNotExistsContext = IfNotExistsContext; - -FlinkSqlParserParser.prototype.ifNotExists = function() { - - var localctx = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 104, FlinkSqlParserParser.RULE_ifNotExists); - try { - this.enterOuterAlt(localctx, 1); - this.state = 650; - this.match(FlinkSqlParserParser.IF); - this.state = 651; - this.match(FlinkSqlParserParser.NOT); - this.state = 652; - this.match(FlinkSqlParserParser.EXISTS); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function IfExistsContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_ifExists; - return this; -} - -IfExistsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -IfExistsContext.prototype.constructor = IfExistsContext; - -IfExistsContext.prototype.IF = function() { - return this.getToken(FlinkSqlParserParser.IF, 0); -}; - -IfExistsContext.prototype.EXISTS = function() { - return this.getToken(FlinkSqlParserParser.EXISTS, 0); -}; - -IfExistsContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterIfExists(this); - } -}; - -IfExistsContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitIfExists(this); - } -}; - -IfExistsContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitIfExists(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.IfExistsContext = IfExistsContext; - -FlinkSqlParserParser.prototype.ifExists = function() { - - var localctx = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 106, FlinkSqlParserParser.RULE_ifExists); - try { - this.enterOuterAlt(localctx, 1); - this.state = 654; - this.match(FlinkSqlParserParser.IF); - this.state = 655; - this.match(FlinkSqlParserParser.EXISTS); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function KeyValueDefinitionContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_keyValueDefinition; - return this; -} - -KeyValueDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -KeyValueDefinitionContext.prototype.constructor = KeyValueDefinitionContext; - -KeyValueDefinitionContext.prototype.STRING_LITERAL = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.STRING_LITERAL); - } else { - return this.getToken(FlinkSqlParserParser.STRING_LITERAL, i); - } -}; - - -KeyValueDefinitionContext.prototype.EQUAL_SYMBOL = function() { - return this.getToken(FlinkSqlParserParser.EQUAL_SYMBOL, 0); -}; - -KeyValueDefinitionContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterKeyValueDefinition(this); - } -}; - -KeyValueDefinitionContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitKeyValueDefinition(this); - } -}; - -KeyValueDefinitionContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitKeyValueDefinition(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.KeyValueDefinitionContext = KeyValueDefinitionContext; - -FlinkSqlParserParser.prototype.keyValueDefinition = function() { - - var localctx = new KeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 108, FlinkSqlParserParser.RULE_keyValueDefinition); - try { - this.enterOuterAlt(localctx, 1); - this.state = 657; - this.match(FlinkSqlParserParser.STRING_LITERAL); - this.state = 658; - this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - this.state = 659; - this.match(FlinkSqlParserParser.STRING_LITERAL); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function LogicalOperatorContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_logicalOperator; - return this; -} - -LogicalOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -LogicalOperatorContext.prototype.constructor = LogicalOperatorContext; - -LogicalOperatorContext.prototype.AND = function() { - return this.getToken(FlinkSqlParserParser.AND, 0); -}; - -LogicalOperatorContext.prototype.BIT_AND_OP = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.BIT_AND_OP); - } else { - return this.getToken(FlinkSqlParserParser.BIT_AND_OP, i); - } -}; - - -LogicalOperatorContext.prototype.OR = function() { - return this.getToken(FlinkSqlParserParser.OR, 0); -}; - -LogicalOperatorContext.prototype.BIT_OR_OP = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.BIT_OR_OP); - } else { - return this.getToken(FlinkSqlParserParser.BIT_OR_OP, i); - } -}; - - -LogicalOperatorContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterLogicalOperator(this); - } -}; - -LogicalOperatorContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitLogicalOperator(this); - } -}; - -LogicalOperatorContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitLogicalOperator(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.LogicalOperatorContext = LogicalOperatorContext; - -FlinkSqlParserParser.prototype.logicalOperator = function() { - - var localctx = new LogicalOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 110, FlinkSqlParserParser.RULE_logicalOperator); - try { - this.state = 667; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.AND: - this.enterOuterAlt(localctx, 1); - this.state = 661; - this.match(FlinkSqlParserParser.AND); - break; - case FlinkSqlParserParser.BIT_AND_OP: - this.enterOuterAlt(localctx, 2); - this.state = 662; - this.match(FlinkSqlParserParser.BIT_AND_OP); - this.state = 663; - this.match(FlinkSqlParserParser.BIT_AND_OP); - break; - case FlinkSqlParserParser.OR: - this.enterOuterAlt(localctx, 3); - this.state = 664; - this.match(FlinkSqlParserParser.OR); - break; - case FlinkSqlParserParser.BIT_OR_OP: - this.enterOuterAlt(localctx, 4); - this.state = 665; - this.match(FlinkSqlParserParser.BIT_OR_OP); - this.state = 666; - this.match(FlinkSqlParserParser.BIT_OR_OP); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ComparisonOperatorContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_comparisonOperator; - return this; -} - -ComparisonOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ComparisonOperatorContext.prototype.constructor = ComparisonOperatorContext; - -ComparisonOperatorContext.prototype.EQUAL_SYMBOL = function() { - return this.getToken(FlinkSqlParserParser.EQUAL_SYMBOL, 0); -}; - -ComparisonOperatorContext.prototype.GREATER_SYMBOL = function() { - return this.getToken(FlinkSqlParserParser.GREATER_SYMBOL, 0); -}; - -ComparisonOperatorContext.prototype.LESS_SYMBOL = function() { - return this.getToken(FlinkSqlParserParser.LESS_SYMBOL, 0); -}; - -ComparisonOperatorContext.prototype.EXCLAMATION_SYMBOL = function() { - return this.getToken(FlinkSqlParserParser.EXCLAMATION_SYMBOL, 0); -}; - -ComparisonOperatorContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterComparisonOperator(this); - } -}; - -ComparisonOperatorContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitComparisonOperator(this); - } -}; - -ComparisonOperatorContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitComparisonOperator(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ComparisonOperatorContext = ComparisonOperatorContext; - -FlinkSqlParserParser.prototype.comparisonOperator = function() { - - var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 112, FlinkSqlParserParser.RULE_comparisonOperator); - try { - this.state = 683; - this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,70,this._ctx); - switch(la_) { - case 1: - this.enterOuterAlt(localctx, 1); - this.state = 669; - this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - break; - - case 2: - this.enterOuterAlt(localctx, 2); - this.state = 670; - this.match(FlinkSqlParserParser.GREATER_SYMBOL); - break; - - case 3: - this.enterOuterAlt(localctx, 3); - this.state = 671; - this.match(FlinkSqlParserParser.LESS_SYMBOL); - break; - - case 4: - this.enterOuterAlt(localctx, 4); - this.state = 672; - this.match(FlinkSqlParserParser.LESS_SYMBOL); - this.state = 673; - this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - break; - - case 5: - this.enterOuterAlt(localctx, 5); - this.state = 674; - this.match(FlinkSqlParserParser.GREATER_SYMBOL); - this.state = 675; - this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - break; - - case 6: - this.enterOuterAlt(localctx, 6); - this.state = 676; - this.match(FlinkSqlParserParser.LESS_SYMBOL); - this.state = 677; - this.match(FlinkSqlParserParser.GREATER_SYMBOL); - break; - - case 7: - this.enterOuterAlt(localctx, 7); - this.state = 678; - this.match(FlinkSqlParserParser.EXCLAMATION_SYMBOL); - this.state = 679; - this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - break; - - case 8: - this.enterOuterAlt(localctx, 8); - this.state = 680; - this.match(FlinkSqlParserParser.LESS_SYMBOL); - this.state = 681; - this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - this.state = 682; - this.match(FlinkSqlParserParser.GREATER_SYMBOL); - break; - - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function BitOperatorContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_bitOperator; - return this; -} - -BitOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -BitOperatorContext.prototype.constructor = BitOperatorContext; - -BitOperatorContext.prototype.LESS_SYMBOL = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.LESS_SYMBOL); - } else { - return this.getToken(FlinkSqlParserParser.LESS_SYMBOL, i); - } -}; - - -BitOperatorContext.prototype.GREATER_SYMBOL = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParserParser.GREATER_SYMBOL); - } else { - return this.getToken(FlinkSqlParserParser.GREATER_SYMBOL, i); - } -}; - - -BitOperatorContext.prototype.BIT_AND_OP = function() { - return this.getToken(FlinkSqlParserParser.BIT_AND_OP, 0); -}; - -BitOperatorContext.prototype.BIT_XOR_OP = function() { - return this.getToken(FlinkSqlParserParser.BIT_XOR_OP, 0); -}; - -BitOperatorContext.prototype.BIT_OR_OP = function() { - return this.getToken(FlinkSqlParserParser.BIT_OR_OP, 0); -}; - -BitOperatorContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterBitOperator(this); - } -}; - -BitOperatorContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitBitOperator(this); - } -}; - -BitOperatorContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitBitOperator(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.BitOperatorContext = BitOperatorContext; - -FlinkSqlParserParser.prototype.bitOperator = function() { - - var localctx = new BitOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 114, FlinkSqlParserParser.RULE_bitOperator); - try { - this.state = 692; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.LESS_SYMBOL: - this.enterOuterAlt(localctx, 1); - this.state = 685; - this.match(FlinkSqlParserParser.LESS_SYMBOL); - this.state = 686; - this.match(FlinkSqlParserParser.LESS_SYMBOL); - break; - case FlinkSqlParserParser.GREATER_SYMBOL: - this.enterOuterAlt(localctx, 2); - this.state = 687; - this.match(FlinkSqlParserParser.GREATER_SYMBOL); - this.state = 688; - this.match(FlinkSqlParserParser.GREATER_SYMBOL); - break; - case FlinkSqlParserParser.BIT_AND_OP: - this.enterOuterAlt(localctx, 3); - this.state = 689; - this.match(FlinkSqlParserParser.BIT_AND_OP); - break; - case FlinkSqlParserParser.BIT_XOR_OP: - this.enterOuterAlt(localctx, 4); - this.state = 690; - this.match(FlinkSqlParserParser.BIT_XOR_OP); - break; - case FlinkSqlParserParser.BIT_OR_OP: - this.enterOuterAlt(localctx, 5); - this.state = 691; - this.match(FlinkSqlParserParser.BIT_OR_OP); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function MathOperatorContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_mathOperator; - return this; -} - -MathOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -MathOperatorContext.prototype.constructor = MathOperatorContext; - -MathOperatorContext.prototype.ASTERISK_SIGN = function() { - return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 0); -}; - -MathOperatorContext.prototype.SLASH_SIGN = function() { - return this.getToken(FlinkSqlParserParser.SLASH_SIGN, 0); -}; - -MathOperatorContext.prototype.PENCENT_SIGN = function() { - return this.getToken(FlinkSqlParserParser.PENCENT_SIGN, 0); -}; - -MathOperatorContext.prototype.DIV = function() { - return this.getToken(FlinkSqlParserParser.DIV, 0); -}; - -MathOperatorContext.prototype.ADD_SIGN = function() { - return this.getToken(FlinkSqlParserParser.ADD_SIGN, 0); -}; - -MathOperatorContext.prototype.HYPNEN_SIGN = function() { - return this.getToken(FlinkSqlParserParser.HYPNEN_SIGN, 0); -}; - -MathOperatorContext.prototype.DOUBLE_HYPNEN_SIGN = function() { - return this.getToken(FlinkSqlParserParser.DOUBLE_HYPNEN_SIGN, 0); -}; - -MathOperatorContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterMathOperator(this); - } -}; - -MathOperatorContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitMathOperator(this); - } -}; - -MathOperatorContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitMathOperator(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.MathOperatorContext = MathOperatorContext; - -FlinkSqlParserParser.prototype.mathOperator = function() { - - var localctx = new MathOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 116, FlinkSqlParserParser.RULE_mathOperator); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 694; - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.DIV || ((((_la - 303)) & ~0x1f) == 0 && ((1 << (_la - 303)) & ((1 << (FlinkSqlParserParser.ASTERISK_SIGN - 303)) | (1 << (FlinkSqlParserParser.HYPNEN_SIGN - 303)) | (1 << (FlinkSqlParserParser.ADD_SIGN - 303)) | (1 << (FlinkSqlParserParser.PENCENT_SIGN - 303)) | (1 << (FlinkSqlParserParser.DOUBLE_HYPNEN_SIGN - 303)) | (1 << (FlinkSqlParserParser.SLASH_SIGN - 303)))) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function UnaryOperatorContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_unaryOperator; - return this; -} - -UnaryOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -UnaryOperatorContext.prototype.constructor = UnaryOperatorContext; - -UnaryOperatorContext.prototype.EXCLAMATION_SYMBOL = function() { - return this.getToken(FlinkSqlParserParser.EXCLAMATION_SYMBOL, 0); -}; - -UnaryOperatorContext.prototype.BIT_NOT_OP = function() { - return this.getToken(FlinkSqlParserParser.BIT_NOT_OP, 0); -}; - -UnaryOperatorContext.prototype.ADD_SIGN = function() { - return this.getToken(FlinkSqlParserParser.ADD_SIGN, 0); -}; - -UnaryOperatorContext.prototype.HYPNEN_SIGN = function() { - return this.getToken(FlinkSqlParserParser.HYPNEN_SIGN, 0); -}; - -UnaryOperatorContext.prototype.NOT = function() { - return this.getToken(FlinkSqlParserParser.NOT, 0); -}; - -UnaryOperatorContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterUnaryOperator(this); - } -}; - -UnaryOperatorContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitUnaryOperator(this); - } -}; - -UnaryOperatorContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitUnaryOperator(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.UnaryOperatorContext = UnaryOperatorContext; - -FlinkSqlParserParser.prototype.unaryOperator = function() { - - var localctx = new UnaryOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 118, FlinkSqlParserParser.RULE_unaryOperator); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 696; - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.NOT || ((((_la - 283)) & ~0x1f) == 0 && ((1 << (_la - 283)) & ((1 << (FlinkSqlParserParser.EXCLAMATION_SYMBOL - 283)) | (1 << (FlinkSqlParserParser.BIT_NOT_OP - 283)) | (1 << (FlinkSqlParserParser.HYPNEN_SIGN - 283)) | (1 << (FlinkSqlParserParser.ADD_SIGN - 283)))) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function FullColumnNameContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_fullColumnName; - return this; -} - -FullColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -FullColumnNameContext.prototype.constructor = FullColumnNameContext; - -FullColumnNameContext.prototype.uid = function() { - return this.getTypedRuleContext(UidContext,0); -}; - -FullColumnNameContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterFullColumnName(this); - } -}; - -FullColumnNameContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitFullColumnName(this); - } -}; - -FullColumnNameContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitFullColumnName(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.FullColumnNameContext = FullColumnNameContext; - -FlinkSqlParserParser.prototype.fullColumnName = function() { - - var localctx = new FullColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 120, FlinkSqlParserParser.RULE_fullColumnName); - try { - this.enterOuterAlt(localctx, 1); - this.state = 698; - this.uid(); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function ConstantContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_constant; - return this; -} - -ConstantContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -ConstantContext.prototype.constructor = ConstantContext; - -ConstantContext.prototype.stringLiteral = function() { - return this.getTypedRuleContext(StringLiteralContext,0); -}; - -ConstantContext.prototype.decimalLiteral = function() { - return this.getTypedRuleContext(DecimalLiteralContext,0); -}; - -ConstantContext.prototype.HYPNEN_SIGN = function() { - return this.getToken(FlinkSqlParserParser.HYPNEN_SIGN, 0); -}; - -ConstantContext.prototype.booleanLiteral = function() { - return this.getTypedRuleContext(BooleanLiteralContext,0); -}; - -ConstantContext.prototype.REAL_LITERAL = function() { - return this.getToken(FlinkSqlParserParser.REAL_LITERAL, 0); -}; - -ConstantContext.prototype.BIT_STRING = function() { - return this.getToken(FlinkSqlParserParser.BIT_STRING, 0); -}; - -ConstantContext.prototype.NULL = function() { - return this.getToken(FlinkSqlParserParser.NULL, 0); -}; - -ConstantContext.prototype.NOT = function() { - return this.getToken(FlinkSqlParserParser.NOT, 0); -}; - -ConstantContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterConstant(this); - } -}; - -ConstantContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitConstant(this); - } -}; - -ConstantContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitConstant(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.ConstantContext = ConstantContext; - -FlinkSqlParserParser.prototype.constant = function() { - - var localctx = new ConstantContext(this, this._ctx, this.state); - this.enterRule(localctx, 122, FlinkSqlParserParser.RULE_constant); - var _la = 0; // Token type - try { - this.state = 711; - this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.STRING_LITERAL: - this.enterOuterAlt(localctx, 1); - this.state = 700; - this.stringLiteral(); - break; - case FlinkSqlParserParser.ZERO_DECIMAL: - case FlinkSqlParserParser.ONE_DECIMAL: - case FlinkSqlParserParser.TWO_DECIMAL: - case FlinkSqlParserParser.DECIMAL_LITERAL: - this.enterOuterAlt(localctx, 2); - this.state = 701; - this.decimalLiteral(); - break; - case FlinkSqlParserParser.HYPNEN_SIGN: - this.enterOuterAlt(localctx, 3); - this.state = 702; - this.match(FlinkSqlParserParser.HYPNEN_SIGN); - this.state = 703; - this.decimalLiteral(); - break; - case FlinkSqlParserParser.TRUE: - case FlinkSqlParserParser.FALSE: - this.enterOuterAlt(localctx, 4); - this.state = 704; - this.booleanLiteral(); - break; - case FlinkSqlParserParser.REAL_LITERAL: - this.enterOuterAlt(localctx, 5); - this.state = 705; - this.match(FlinkSqlParserParser.REAL_LITERAL); - break; - case FlinkSqlParserParser.BIT_STRING: - this.enterOuterAlt(localctx, 6); - this.state = 706; - this.match(FlinkSqlParserParser.BIT_STRING); - break; - case FlinkSqlParserParser.NOT: - case FlinkSqlParserParser.NULL: - this.enterOuterAlt(localctx, 7); - this.state = 708; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParserParser.NOT) { - this.state = 707; - this.match(FlinkSqlParserParser.NOT); - } - - this.state = 710; - this.match(FlinkSqlParserParser.NULL); - break; - default: - throw new antlr4.error.NoViableAltException(this); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function StringLiteralContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_stringLiteral; - return this; -} - -StringLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -StringLiteralContext.prototype.constructor = StringLiteralContext; - -StringLiteralContext.prototype.STRING_LITERAL = function() { - return this.getToken(FlinkSqlParserParser.STRING_LITERAL, 0); -}; - -StringLiteralContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterStringLiteral(this); - } -}; - -StringLiteralContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitStringLiteral(this); - } -}; - -StringLiteralContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitStringLiteral(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.StringLiteralContext = StringLiteralContext; - -FlinkSqlParserParser.prototype.stringLiteral = function() { - - var localctx = new StringLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 124, FlinkSqlParserParser.RULE_stringLiteral); - try { - this.enterOuterAlt(localctx, 1); - this.state = 713; - this.match(FlinkSqlParserParser.STRING_LITERAL); - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function DecimalLiteralContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_decimalLiteral; - return this; -} - -DecimalLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -DecimalLiteralContext.prototype.constructor = DecimalLiteralContext; - -DecimalLiteralContext.prototype.DECIMAL_LITERAL = function() { - return this.getToken(FlinkSqlParserParser.DECIMAL_LITERAL, 0); -}; - -DecimalLiteralContext.prototype.ZERO_DECIMAL = function() { - return this.getToken(FlinkSqlParserParser.ZERO_DECIMAL, 0); -}; - -DecimalLiteralContext.prototype.ONE_DECIMAL = function() { - return this.getToken(FlinkSqlParserParser.ONE_DECIMAL, 0); -}; - -DecimalLiteralContext.prototype.TWO_DECIMAL = function() { - return this.getToken(FlinkSqlParserParser.TWO_DECIMAL, 0); -}; - -DecimalLiteralContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterDecimalLiteral(this); - } -}; - -DecimalLiteralContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitDecimalLiteral(this); - } -}; - -DecimalLiteralContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitDecimalLiteral(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.DecimalLiteralContext = DecimalLiteralContext; - -FlinkSqlParserParser.prototype.decimalLiteral = function() { - - var localctx = new DecimalLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 126, FlinkSqlParserParser.RULE_decimalLiteral); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 715; - _la = this._input.LA(1); - if(!(((((_la - 296)) & ~0x1f) == 0 && ((1 << (_la - 296)) & ((1 << (FlinkSqlParserParser.ZERO_DECIMAL - 296)) | (1 << (FlinkSqlParserParser.ONE_DECIMAL - 296)) | (1 << (FlinkSqlParserParser.TWO_DECIMAL - 296)) | (1 << (FlinkSqlParserParser.DECIMAL_LITERAL - 296)))) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function BooleanLiteralContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_booleanLiteral; - return this; -} - -BooleanLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -BooleanLiteralContext.prototype.constructor = BooleanLiteralContext; - -BooleanLiteralContext.prototype.TRUE = function() { - return this.getToken(FlinkSqlParserParser.TRUE, 0); -}; - -BooleanLiteralContext.prototype.FALSE = function() { - return this.getToken(FlinkSqlParserParser.FALSE, 0); -}; - -BooleanLiteralContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterBooleanLiteral(this); - } -}; - -BooleanLiteralContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitBooleanLiteral(this); - } -}; - -BooleanLiteralContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitBooleanLiteral(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.BooleanLiteralContext = BooleanLiteralContext; - -FlinkSqlParserParser.prototype.booleanLiteral = function() { - - var localctx = new BooleanLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 128, FlinkSqlParserParser.RULE_booleanLiteral); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 717; - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.TRUE || _la===FlinkSqlParserParser.FALSE)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -function SetQuantifierContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_setQuantifier; - return this; -} - -SetQuantifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -SetQuantifierContext.prototype.constructor = SetQuantifierContext; - -SetQuantifierContext.prototype.DISTINCT = function() { - return this.getToken(FlinkSqlParserParser.DISTINCT, 0); -}; - -SetQuantifierContext.prototype.ALL = function() { - return this.getToken(FlinkSqlParserParser.ALL, 0); -}; - -SetQuantifierContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSetQuantifier(this); - } -}; - -SetQuantifierContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSetQuantifier(this); - } -}; - -SetQuantifierContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSetQuantifier(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.SetQuantifierContext = SetQuantifierContext; - -FlinkSqlParserParser.prototype.setQuantifier = function() { - - var localctx = new SetQuantifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 130, FlinkSqlParserParser.RULE_setQuantifier); - var _la = 0; // Token type - try { - this.enterOuterAlt(localctx, 1); - this.state = 719; - _la = this._input.LA(1); - if(!(_la===FlinkSqlParserParser.ALL || _la===FlinkSqlParserParser.DISTINCT)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } catch (re) { - if(re instanceof antlr4.error.RecognitionException) { - localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } finally { - this.exitRule(); - } - return localctx; -}; - - -FlinkSqlParserParser.prototype.sempred = function(localctx, ruleIndex, predIndex) { - switch(ruleIndex) { - case 38: - return this.booleanExpression_sempred(localctx, predIndex); - case 40: - return this.valueExpression_sempred(localctx, predIndex); - case 41: - return this.primaryExpression_sempred(localctx, predIndex); - default: - throw "No predicate with index:" + ruleIndex; - } -}; - -FlinkSqlParserParser.prototype.booleanExpression_sempred = function(localctx, predIndex) { - switch(predIndex) { - case 0: - return this.precpred(this._ctx, 2); - case 1: - return this.precpred(this._ctx, 1); - default: - throw "No predicate with index:" + predIndex; - } -}; - -FlinkSqlParserParser.prototype.valueExpression_sempred = function(localctx, predIndex) { - switch(predIndex) { - case 2: - return this.precpred(this._ctx, 6); - case 3: - return this.precpred(this._ctx, 5); - case 4: - return this.precpred(this._ctx, 4); - case 5: - return this.precpred(this._ctx, 3); - case 6: - return this.precpred(this._ctx, 2); - case 7: - return this.precpred(this._ctx, 1); - default: - throw "No predicate with index:" + predIndex; - } -}; - -FlinkSqlParserParser.prototype.primaryExpression_sempred = function(localctx, predIndex) { - switch(predIndex) { - case 8: - return this.precpred(this._ctx, 2); - default: - throw "No predicate with index:" + predIndex; - } -}; - - -exports.FlinkSqlParserParser = FlinkSqlParserParser; diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.js b/src/lib/flinksql/FlinkSqlParserVisitor.js index 66af531..b0f3b26 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.js +++ b/src/lib/flinksql/FlinkSqlParserVisitor.js @@ -2,7 +2,7 @@ // jshint ignore: start var antlr4 = require('antlr4/index'); -// This class defines a complete generic visitor for a parse tree produced by FlinkSqlParserParser. +// This class defines a complete generic visitor for a parse tree produced by FlinkSqlParser. function FlinkSqlParserVisitor() { antlr4.tree.ParseTreeVisitor.call(this); @@ -12,481 +12,775 @@ function FlinkSqlParserVisitor() { FlinkSqlParserVisitor.prototype = Object.create(antlr4.tree.ParseTreeVisitor.prototype); FlinkSqlParserVisitor.prototype.constructor = FlinkSqlParserVisitor; -// Visit a parse tree produced by FlinkSqlParserParser#program. +// Visit a parse tree produced by FlinkSqlParser#program. FlinkSqlParserVisitor.prototype.visitProgram = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#statement. +// Visit a parse tree produced by FlinkSqlParser#statement. FlinkSqlParserVisitor.prototype.visitStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#sqlStatements. +// Visit a parse tree produced by FlinkSqlParser#sqlStatements. FlinkSqlParserVisitor.prototype.visitSqlStatements = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#sqlStatement. +// Visit a parse tree produced by FlinkSqlParser#sqlStatement. FlinkSqlParserVisitor.prototype.visitSqlStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#emptyStatement. +// Visit a parse tree produced by FlinkSqlParser#emptyStatement. FlinkSqlParserVisitor.prototype.visitEmptyStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#ddlStatement. +// Visit a parse tree produced by FlinkSqlParser#ddlStatement. FlinkSqlParserVisitor.prototype.visitDdlStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#dmlStatement. +// Visit a parse tree produced by FlinkSqlParser#dmlStatement. FlinkSqlParserVisitor.prototype.visitDmlStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#createTable. +// Visit a parse tree produced by FlinkSqlParser#describeStatement. +FlinkSqlParserVisitor.prototype.visitDescribeStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#explainStatement. +FlinkSqlParserVisitor.prototype.visitExplainStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#useStatement. +FlinkSqlParserVisitor.prototype.visitUseStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#showStatememt. +FlinkSqlParserVisitor.prototype.visitShowStatememt = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createTable. FlinkSqlParserVisitor.prototype.visitCreateTable = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#columnOptionDefinition. +// Visit a parse tree produced by FlinkSqlParser#columnOptionDefinition. FlinkSqlParserVisitor.prototype.visitColumnOptionDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#columnName. +// Visit a parse tree produced by FlinkSqlParser#columnName. FlinkSqlParserVisitor.prototype.visitColumnName = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#columnType. +// Visit a parse tree produced by FlinkSqlParser#columnType. FlinkSqlParserVisitor.prototype.visitColumnType = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#partitionDefinition. +// Visit a parse tree produced by FlinkSqlParser#lengthOneDimension. +FlinkSqlParserVisitor.prototype.visitLengthOneDimension = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#commentSpec. +FlinkSqlParserVisitor.prototype.visitCommentSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#watermarkDefinition. +FlinkSqlParserVisitor.prototype.visitWatermarkDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#partitionDefinition. FlinkSqlParserVisitor.prototype.visitPartitionDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#partitionColumnDefinition. -FlinkSqlParserVisitor.prototype.visitPartitionColumnDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParser#transformList. +FlinkSqlParserVisitor.prototype.visitTransformList = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#partitionColumnName. -FlinkSqlParserVisitor.prototype.visitPartitionColumnName = function(ctx) { +// Visit a parse tree produced by FlinkSqlParser#identityTransform. +FlinkSqlParserVisitor.prototype.visitIdentityTransform = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#createDatabase. +// Visit a parse tree produced by FlinkSqlParser#applyTransform. +FlinkSqlParserVisitor.prototype.visitApplyTransform = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#transformArgument. +FlinkSqlParserVisitor.prototype.visitTransformArgument = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#likeDefinition. +FlinkSqlParserVisitor.prototype.visitLikeDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#likeOption. +FlinkSqlParserVisitor.prototype.visitLikeOption = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createCatalog. +FlinkSqlParserVisitor.prototype.visitCreateCatalog = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#createDatabase. FlinkSqlParserVisitor.prototype.visitCreateDatabase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#createView. +// Visit a parse tree produced by FlinkSqlParser#createView. FlinkSqlParserVisitor.prototype.visitCreateView = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#createFunction. +// Visit a parse tree produced by FlinkSqlParser#createFunction. FlinkSqlParserVisitor.prototype.visitCreateFunction = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#alterTable. +// Visit a parse tree produced by FlinkSqlParser#alterTable. FlinkSqlParserVisitor.prototype.visitAlterTable = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#renameDefinition. +// Visit a parse tree produced by FlinkSqlParser#renameDefinition. FlinkSqlParserVisitor.prototype.visitRenameDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#setKeyValueDefinition. +// Visit a parse tree produced by FlinkSqlParser#setKeyValueDefinition. FlinkSqlParserVisitor.prototype.visitSetKeyValueDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#alterDatabase. +// Visit a parse tree produced by FlinkSqlParser#alterDatabase. FlinkSqlParserVisitor.prototype.visitAlterDatabase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#alterFunction. +// Visit a parse tree produced by FlinkSqlParser#alterFunction. FlinkSqlParserVisitor.prototype.visitAlterFunction = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#dropTable. +// Visit a parse tree produced by FlinkSqlParser#dropTable. FlinkSqlParserVisitor.prototype.visitDropTable = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#dropDatabase. +// Visit a parse tree produced by FlinkSqlParser#dropDatabase. FlinkSqlParserVisitor.prototype.visitDropDatabase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#dropView. +// Visit a parse tree produced by FlinkSqlParser#dropView. FlinkSqlParserVisitor.prototype.visitDropView = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#dropFunction. +// Visit a parse tree produced by FlinkSqlParser#dropFunction. FlinkSqlParserVisitor.prototype.visitDropFunction = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#insertStatement. +// Visit a parse tree produced by FlinkSqlParser#insertStatement. FlinkSqlParserVisitor.prototype.visitInsertStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#insertPartitionDefinition. +// Visit a parse tree produced by FlinkSqlParser#insertPartitionDefinition. FlinkSqlParserVisitor.prototype.visitInsertPartitionDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#valuesDefinition. +// Visit a parse tree produced by FlinkSqlParser#valuesDefinition. FlinkSqlParserVisitor.prototype.visitValuesDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#valuesRowDefinition. +// Visit a parse tree produced by FlinkSqlParser#valuesRowDefinition. FlinkSqlParserVisitor.prototype.visitValuesRowDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#allValueDifinition. -FlinkSqlParserVisitor.prototype.visitAllValueDifinition = function(ctx) { - return this.visitChildren(ctx); -}; - - -// Visit a parse tree produced by FlinkSqlParserParser#queryStatement. +// Visit a parse tree produced by FlinkSqlParser#queryStatement. FlinkSqlParserVisitor.prototype.visitQueryStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#selectStatement. +// Visit a parse tree produced by FlinkSqlParser#valuesCaluse. +FlinkSqlParserVisitor.prototype.visitValuesCaluse = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#selectStatement. FlinkSqlParserVisitor.prototype.visitSelectStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#projectItemDefinition. +// Visit a parse tree produced by FlinkSqlParser#selectClause. +FlinkSqlParserVisitor.prototype.visitSelectClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#projectItemDefinition. FlinkSqlParserVisitor.prototype.visitProjectItemDefinition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#tableExpression. +// Visit a parse tree produced by FlinkSqlParser#fromClause. +FlinkSqlParserVisitor.prototype.visitFromClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#tableExpression. FlinkSqlParserVisitor.prototype.visitTableExpression = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#tableReference. +// Visit a parse tree produced by FlinkSqlParser#tableReference. FlinkSqlParserVisitor.prototype.visitTableReference = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#tablePrimary. +// Visit a parse tree produced by FlinkSqlParser#tablePrimary. FlinkSqlParserVisitor.prototype.visitTablePrimary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#expression. +// Visit a parse tree produced by FlinkSqlParser#joinCondition. +FlinkSqlParserVisitor.prototype.visitJoinCondition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#whereClause. +FlinkSqlParserVisitor.prototype.visitWhereClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#groupByClause. +FlinkSqlParserVisitor.prototype.visitGroupByClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#groupItemDefinition. +FlinkSqlParserVisitor.prototype.visitGroupItemDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#havingClause. +FlinkSqlParserVisitor.prototype.visitHavingClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#orderByCaluse. +FlinkSqlParserVisitor.prototype.visitOrderByCaluse = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#orderItemDefition. +FlinkSqlParserVisitor.prototype.visitOrderItemDefition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#limitClause. +FlinkSqlParserVisitor.prototype.visitLimitClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#windowClause. +FlinkSqlParserVisitor.prototype.visitWindowClause = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#namedWindow. +FlinkSqlParserVisitor.prototype.visitNamedWindow = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#windowSpec. +FlinkSqlParserVisitor.prototype.visitWindowSpec = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#sortItem. +FlinkSqlParserVisitor.prototype.visitSortItem = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#windowFrame. +FlinkSqlParserVisitor.prototype.visitWindowFrame = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#frameBound. +FlinkSqlParserVisitor.prototype.visitFrameBound = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#expression. FlinkSqlParserVisitor.prototype.visitExpression = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#logicalNot. +// Visit a parse tree produced by FlinkSqlParser#logicalNot. FlinkSqlParserVisitor.prototype.visitLogicalNot = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#predicated. +// Visit a parse tree produced by FlinkSqlParser#predicated. FlinkSqlParserVisitor.prototype.visitPredicated = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#logicalBinary. +// Visit a parse tree produced by FlinkSqlParser#exists. +FlinkSqlParserVisitor.prototype.visitExists = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#logicalBinary. FlinkSqlParserVisitor.prototype.visitLogicalBinary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#predicate. +// Visit a parse tree produced by FlinkSqlParser#predicate. FlinkSqlParserVisitor.prototype.visitPredicate = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#valueExpressionDefault. +// Visit a parse tree produced by FlinkSqlParser#valueExpressionDefault. FlinkSqlParserVisitor.prototype.visitValueExpressionDefault = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#comparison. +// Visit a parse tree produced by FlinkSqlParser#comparison. FlinkSqlParserVisitor.prototype.visitComparison = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#arithmeticBinary. +// Visit a parse tree produced by FlinkSqlParser#arithmeticBinary. FlinkSqlParserVisitor.prototype.visitArithmeticBinary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#arithmeticUnary. +// Visit a parse tree produced by FlinkSqlParser#arithmeticUnary. FlinkSqlParserVisitor.prototype.visitArithmeticUnary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#simpleCase. +// Visit a parse tree produced by FlinkSqlParser#dereference. +FlinkSqlParserVisitor.prototype.visitDereference = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#simpleCase. FlinkSqlParserVisitor.prototype.visitSimpleCase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#constantDefault. -FlinkSqlParserVisitor.prototype.visitConstantDefault = function(ctx) { +// Visit a parse tree produced by FlinkSqlParser#columnReference. +FlinkSqlParserVisitor.prototype.visitColumnReference = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#parenthesizedExpression. -FlinkSqlParserVisitor.prototype.visitParenthesizedExpression = function(ctx) { - return this.visitChildren(ctx); -}; - - -// Visit a parse tree produced by FlinkSqlParserParser#last. +// Visit a parse tree produced by FlinkSqlParser#last. FlinkSqlParserVisitor.prototype.visitLast = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#star. +// Visit a parse tree produced by FlinkSqlParser#star. FlinkSqlParserVisitor.prototype.visitStar = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#subscript. +// Visit a parse tree produced by FlinkSqlParser#subscript. FlinkSqlParserVisitor.prototype.visitSubscript = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#searchedCase. +// Visit a parse tree produced by FlinkSqlParser#subqueryExpression. +FlinkSqlParserVisitor.prototype.visitSubqueryExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#constantDefault. +FlinkSqlParserVisitor.prototype.visitConstantDefault = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#parenthesizedExpression. +FlinkSqlParserVisitor.prototype.visitParenthesizedExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#functionCall. +FlinkSqlParserVisitor.prototype.visitFunctionCall = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#searchedCase. FlinkSqlParserVisitor.prototype.visitSearchedCase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#position. +// Visit a parse tree produced by FlinkSqlParser#position. FlinkSqlParserVisitor.prototype.visitPosition = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#first. +// Visit a parse tree produced by FlinkSqlParser#first. FlinkSqlParserVisitor.prototype.visitFirst = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#tableAlias. +// Visit a parse tree produced by FlinkSqlParser#functionName. +FlinkSqlParserVisitor.prototype.visitFunctionName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#dereferenceDefinition. +FlinkSqlParserVisitor.prototype.visitDereferenceDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#qualifiedName. +FlinkSqlParserVisitor.prototype.visitQualifiedName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#interval. +FlinkSqlParserVisitor.prototype.visitInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#errorCapturingMultiUnitsInterval. +FlinkSqlParserVisitor.prototype.visitErrorCapturingMultiUnitsInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#multiUnitsInterval. +FlinkSqlParserVisitor.prototype.visitMultiUnitsInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#errorCapturingUnitToUnitInterval. +FlinkSqlParserVisitor.prototype.visitErrorCapturingUnitToUnitInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#unitToUnitInterval. +FlinkSqlParserVisitor.prototype.visitUnitToUnitInterval = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#intervalValue. +FlinkSqlParserVisitor.prototype.visitIntervalValue = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#tableAlias. FlinkSqlParserVisitor.prototype.visitTableAlias = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#identifierList. +// Visit a parse tree produced by FlinkSqlParser#errorCapturingIdentifier. +FlinkSqlParserVisitor.prototype.visitErrorCapturingIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#errorIdent. +FlinkSqlParserVisitor.prototype.visitErrorIdent = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#realIdent. +FlinkSqlParserVisitor.prototype.visitRealIdent = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#identifierList. FlinkSqlParserVisitor.prototype.visitIdentifierList = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#identifierSeq. +// Visit a parse tree produced by FlinkSqlParser#identifierSeq. FlinkSqlParserVisitor.prototype.visitIdentifierSeq = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#identifier. +// Visit a parse tree produced by FlinkSqlParser#identifier. FlinkSqlParserVisitor.prototype.visitIdentifier = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#unquotedIdentifier. -FlinkSqlParserVisitor.prototype.visitUnquotedIdentifier = function(ctx) { +// Visit a parse tree produced by FlinkSqlParser#unquotedIdentifierAlternative. +FlinkSqlParserVisitor.prototype.visitUnquotedIdentifierAlternative = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#quotedIdentifierAlternative. +// Visit a parse tree produced by FlinkSqlParser#quotedIdentifierAlternative. FlinkSqlParserVisitor.prototype.visitQuotedIdentifierAlternative = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#quotedIdentifier. +// Visit a parse tree produced by FlinkSqlParser#unquotedIdentifier. +FlinkSqlParserVisitor.prototype.visitUnquotedIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#quotedIdentifier. FlinkSqlParserVisitor.prototype.visitQuotedIdentifier = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#whenClause. +// Visit a parse tree produced by FlinkSqlParser#whenClause. FlinkSqlParserVisitor.prototype.visitWhenClause = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#uidList. +// Visit a parse tree produced by FlinkSqlParser#uidList. FlinkSqlParserVisitor.prototype.visitUidList = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#uid. +// Visit a parse tree produced by FlinkSqlParser#uid. FlinkSqlParserVisitor.prototype.visitUid = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#withOption. +// Visit a parse tree produced by FlinkSqlParser#withOption. FlinkSqlParserVisitor.prototype.visitWithOption = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#ifNotExists. +// Visit a parse tree produced by FlinkSqlParser#ifNotExists. FlinkSqlParserVisitor.prototype.visitIfNotExists = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#ifExists. +// Visit a parse tree produced by FlinkSqlParser#ifExists. FlinkSqlParserVisitor.prototype.visitIfExists = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#keyValueDefinition. -FlinkSqlParserVisitor.prototype.visitKeyValueDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParser#tablePropertyList. +FlinkSqlParserVisitor.prototype.visitTablePropertyList = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#logicalOperator. +// Visit a parse tree produced by FlinkSqlParser#tableProperty. +FlinkSqlParserVisitor.prototype.visitTableProperty = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#tablePropertyKey. +FlinkSqlParserVisitor.prototype.visitTablePropertyKey = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#tablePropertyValue. +FlinkSqlParserVisitor.prototype.visitTablePropertyValue = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#logicalOperator. FlinkSqlParserVisitor.prototype.visitLogicalOperator = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#comparisonOperator. +// Visit a parse tree produced by FlinkSqlParser#comparisonOperator. FlinkSqlParserVisitor.prototype.visitComparisonOperator = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#bitOperator. +// Visit a parse tree produced by FlinkSqlParser#bitOperator. FlinkSqlParserVisitor.prototype.visitBitOperator = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#mathOperator. +// Visit a parse tree produced by FlinkSqlParser#mathOperator. FlinkSqlParserVisitor.prototype.visitMathOperator = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#unaryOperator. +// Visit a parse tree produced by FlinkSqlParser#unaryOperator. FlinkSqlParserVisitor.prototype.visitUnaryOperator = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#fullColumnName. +// Visit a parse tree produced by FlinkSqlParser#fullColumnName. FlinkSqlParserVisitor.prototype.visitFullColumnName = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#constant. +// Visit a parse tree produced by FlinkSqlParser#constant. FlinkSqlParserVisitor.prototype.visitConstant = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#stringLiteral. +// Visit a parse tree produced by FlinkSqlParser#stringLiteral. FlinkSqlParserVisitor.prototype.visitStringLiteral = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#decimalLiteral. +// Visit a parse tree produced by FlinkSqlParser#decimalLiteral. FlinkSqlParserVisitor.prototype.visitDecimalLiteral = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#booleanLiteral. +// Visit a parse tree produced by FlinkSqlParser#booleanLiteral. FlinkSqlParserVisitor.prototype.visitBooleanLiteral = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#setQuantifier. +// Visit a parse tree produced by FlinkSqlParser#setQuantifier. FlinkSqlParserVisitor.prototype.visitSetQuantifier = function(ctx) { return this.visitChildren(ctx); }; diff --git a/src/parser/flinksql.ts b/src/parser/flinksql.ts index 655d7cf..62f9d0d 100644 --- a/src/parser/flinksql.ts +++ b/src/parser/flinksql.ts @@ -8,7 +8,7 @@ import BasicParser from './common/BasicParser'; export default class FlinkSQL extends BasicParser { public createLexer(input: string): Lexer { - const chars = new InputStream(input); + const chars = new InputStream(input.toUpperCase()); // Some Lexer only support uppercase token, So you need transform const lexer = new FlinkSqlLexer(chars) as Lexer; return lexer; } diff --git a/test/parser/flinksql/lexer.test.ts b/test/parser/flinksql/lexer.test.ts index d34ebbd..7b59601 100644 --- a/test/parser/flinksql/lexer.test.ts +++ b/test/parser/flinksql/lexer.test.ts @@ -1,5 +1,4 @@ import SQLParser from '../../../src/parser/flinksql'; -// todo 校验 token 解析 describe('FlinkSQL Lexer tests', () => { const parser = new SQLParser(); @@ -7,6 +6,6 @@ describe('FlinkSQL Lexer tests', () => { const tokens = parser.getAllTokens(sql); test('token counts', () => { - expect(tokens.length).toBe(6); + expect(tokens.length).toBe(7); }); }); diff --git a/test/parser/flinksql/syntax.test.ts b/test/parser/flinksql/syntax.test.ts index b0efcdc..0b68b87 100644 --- a/test/parser/flinksql/syntax.test.ts +++ b/test/parser/flinksql/syntax.test.ts @@ -15,8 +15,7 @@ describe('FlinkSQL Syntax Tests', () => { `; const result = parser.validate(sql); console.log(result); - // TODO find parser error - expect(result.length).toBe(1); + expect(result.length).toBe(0); }); test('Test simple CreateDatabase Statement', () => { const sql = ` @@ -28,14 +27,21 @@ describe('FlinkSQL Syntax Tests', () => { const result = parser.validate(sql); expect(result.length).toBe(0); }); - // test('Test simple CreateView Statement', () => { - // const sql = ` - // CREATE TEMPORARY VIEW IF NOT EXISTS tempView - // AS ; - // `; - // const result = parser.validate(sql); - // expect(result.length).toBe(0); - // }); + test('Test simple CreateView Statement', () => { + const sql = ` + CREATE TEMPORARY VIEW IF NOT EXISTS tempView + AS SELECT product, amount FROM Orders; + `; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test simple CreateFunction Statement', () => { + const sql = ` + CREATE TEMPORARY FUNCTION IF NOT EXISTS tempFunction AS 'SimpleUdf'; + `; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); // Alter statements test('Test simple AlterTable Statement', () => { @@ -44,7 +50,14 @@ describe('FlinkSQL Syntax Tests', () => { expect(result.length).toBe(0); }); test('Test simple AlterDatabase Statement', () => { - const sql = `ALTER DATABASE DataBase SET ("key1"="value1");`; + const sql = `ALTER DATABASE tempDB SET ("key1"="value1");`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test simple AlterFunction Statement', () => { + const sql = ` + ALTER TEMPORARY FUNCTION IF EXISTS tempFunction AS 'SimpleUdf'; + `; const result = parser.validate(sql); expect(result.length).toBe(0); }); @@ -70,10 +83,93 @@ describe('FlinkSQL Syntax Tests', () => { const result = parser.validate(sql); expect(result.length).toBe(0); }); + + // insert statements + test('Test one simple Insert Statement', () => { + const sql = ` + INSERT INTO students VALUES + ('Amy Smith', '123 Park Ave, San Jose', 111111); + `; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test two simple Insert Statement', () => { + const sql = ` + INSERT INTO students PARTITION (student_id = 444444) + SELECT name, address FROM persons WHERE name = "Dora Williams"; + `; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + + // query statements test('Test simple Select Statement', () => { const sql = `SELECT product, amount FROM Orders;`; const result = parser.validate(sql); - console.log(result); + expect(result.length).toBe(0); + }); + test('Test Select Statement with where clause', () => { + const sql = `SELECT * FROM person WHERE id = 200 OR id = 300;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test Select Statement with group by clause', () => { + const sql = `SELECT id, sum(quantity) FROM dealer GROUP BY id;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test Select Statement with having clause', () => { + const sql = ` + SELECT city, sum(quantity) AS sum + FROM dealer GROUP BY city HAVING city = 'Fremont'; + `; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test Select Statement with order by clause', () => { + const sql = `SELECT name, age FROM person ORDER BY age;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test Select Statement with limit clause', () => { + const sql = `SELECT name, age FROM person ORDER BY name LIMIT 2;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + test('Test Select Statement with join', () => { + const sql = ` + SELECT id, name, employee.deptno, deptname FROM employee + FULL JOIN department ON employee.deptno = department.deptno; + `; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + + // describe statements + test('Test simple Describe Statement', () => { + const sql = `DESCRIBE Orders;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + + // describe statements + test('Test simple Explain Statement', () => { + const sql = `EXPLAIN tempTable FOR SELECT k, SUM(v) FROM oneTable;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + + // use statements + test('Test simple Use Statement', () => { + const sql = `USE CATALOG orders;`; + const result = parser.validate(sql); + expect(result.length).toBe(0); + }); + + // show statements + test('Test simple Show Statement', () => { + const sql = `SHOW CATALOGS;`; + const result = parser.validate(sql); expect(result.length).toBe(0); }); }); diff --git a/test/parser/flinksql/visitor.test.ts b/test/parser/flinksql/visitor.test.ts deleted file mode 100644 index b088a26..0000000 --- a/test/parser/flinksql/visitor.test.ts +++ /dev/null @@ -1,23 +0,0 @@ -import SQLParser, { PlSqlParserVisitor } from '../../../src/parser/plsql'; -// todo 校验关键字提取 -describe('PLSQL Visitor Tests', () => { - const expectTableName = 'user1'; - const sql = `select id,name,sex from ${expectTableName};`; - const parser = new SQLParser(); - - const parserTree = parser.parse(sql); - - test('Visitor visitTable_ref_list', () => { - let result = ''; - class MyVisitor extends PlSqlParserVisitor { - visitTable_ref_list(ctx): void { - result = ctx.getText().toLowerCase(); - super.visitTable_ref_list(ctx); - } - } - const visitor: any = new MyVisitor(); - visitor.visit(parserTree); - - expect(result).toBe(expectTableName); - }); -});