From 40dc47e7ca6df06ac91ce67c5529bb72886c8224 Mon Sep 17 00:00:00 2001 From: liuyi Date: Wed, 23 Sep 2026 14:07:27 +0800 Subject: [PATCH 1/2] chore: update Hive benchmark report --- .../cold_start/hive.benchmark.md | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/benchmark_reports/cold_start/hive.benchmark.md b/benchmark_reports/cold_start/hive.benchmark.md index bd318df8..d231a02b 100644 --- a/benchmark_reports/cold_start/hive.benchmark.md +++ b/benchmark_reports/cold_start/hive.benchmark.md @@ -4,16 +4,16 @@ HiveSQL ### Report Time -2024/12/18 14:50:08 +2026/9/23 13:52:26 ### Device -macOS 15.0.1 -(8) arm64 Apple M1 Pro +macOS 15.7.9 +(8) arm64 Apple M3 16.00 GB ### Version -`nodejs`: v21.6.1 -`dt-sql-parser`: v4.1.0-beta.0 +`nodejs`: v22.23.1 +`dt-sql-parser`: v4.5.1 `antlr4-c3`: v3.3.7 `antlr4ng`: v2.0.11 @@ -23,17 +23,17 @@ Cold Start ### Report | Benchmark Name | Method Name |SQL Rows|Average Time(ms)| |-----------------|---------------------------------|--------|----------------| -| Query Collection| getAllTokens | 1015 | 194 | -| Query Collection| validate | 1015 | 194 | +| Query Collection| getAllTokens | 1015 | 246 | +| Query Collection| validate | 1015 | 226 | | Update Table | getAllTokens | 1011 | 126 | -| Update Table | validate | 1011 | 119 | -| Insert Columns | getAllTokens | 1001 | 326 | -| Insert Columns | validate | 1001 | 323 | -| Create Table | getAllTokens | 1002 | 21 | -| Create Table | validate | 1002 | 20 | +| Update Table | validate | 1011 | 130 | +| Insert Columns | getAllTokens | 1001 | 212 | +| Insert Columns | validate | 1001 | 209 | +| Create Table | getAllTokens | 1002 | 18 | +| Create Table | validate | 1002 | 18 | | Split SQL | splitSQLByStatement | 1001 | 71 | -| Collect Entities| getAllEntities | 1066 | 338 | -| Suggestion | getSuggestionAtCaretPosition | 1066 | 148 | -|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 201 | +| Collect Entities| getAllEntities | 1066 | 358 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 207 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 318 | From f9b61780e7ee6d93dc4dc97ce7b9cbcb09e6422d Mon Sep 17 00:00:00 2001 From: liuyi Date: Wed, 23 Sep 2026 14:49:38 +0800 Subject: [PATCH 2/2] refactor: optimize hivesql grammar --- .../cold_start/hive.benchmark.md | 24 +- src/grammar/hive/HiveSqlParser.g4 | 452 +- src/lib/hive/HiveSqlParser.interp | 58 +- src/lib/hive/HiveSqlParser.ts | 16443 +++++++--------- src/lib/hive/HiveSqlParserListener.ts | 540 +- src/lib/hive/HiveSqlParserVisitor.ts | 340 +- .../hive/syntax/fixtures/authorization.sql | 20 + .../hive/syntax/fixtures/createRole.sql | 4 +- test/parser/hive/syntax/fixtures/drop.sql | 2 + test/parser/hive/syntax/fixtures/select.sql | 26 +- test/parser/hive/validateInvalidSql.test.ts | 12 + 11 files changed, 7354 insertions(+), 10567 deletions(-) diff --git a/benchmark_reports/cold_start/hive.benchmark.md b/benchmark_reports/cold_start/hive.benchmark.md index d231a02b..287b3dd5 100644 --- a/benchmark_reports/cold_start/hive.benchmark.md +++ b/benchmark_reports/cold_start/hive.benchmark.md @@ -4,7 +4,7 @@ HiveSQL ### Report Time -2026/9/23 13:52:26 +2026/9/23 13:57:41 ### Device macOS 15.7.9 @@ -23,17 +23,17 @@ Cold Start ### Report | Benchmark Name | Method Name |SQL Rows|Average Time(ms)| |-----------------|---------------------------------|--------|----------------| -| Query Collection| getAllTokens | 1015 | 246 | -| Query Collection| validate | 1015 | 226 | -| Update Table | getAllTokens | 1011 | 126 | -| Update Table | validate | 1011 | 130 | -| Insert Columns | getAllTokens | 1001 | 212 | -| Insert Columns | validate | 1001 | 209 | -| Create Table | getAllTokens | 1002 | 18 | +| Query Collection| getAllTokens | 1015 | 213 | +| Query Collection| validate | 1015 | 211 | +| Update Table | getAllTokens | 1011 | 115 | +| Update Table | validate | 1011 | 111 | +| Insert Columns | getAllTokens | 1001 | 198 | +| Insert Columns | validate | 1001 | 192 | +| Create Table | getAllTokens | 1002 | 16 | | Create Table | validate | 1002 | 18 | -| Split SQL | splitSQLByStatement | 1001 | 71 | -| Collect Entities| getAllEntities | 1066 | 358 | -| Suggestion | getSuggestionAtCaretPosition | 1066 | 207 | -|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 318 | +| Split SQL | splitSQLByStatement | 1001 | 66 | +| Collect Entities| getAllEntities | 1066 | 317 | +| Suggestion | getSuggestionAtCaretPosition | 1066 | 188 | +|Collect Semantics|getSemanticContextAtCaretPosition| 1015 | 245 | diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index 3e70b88c..7888d102 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -90,7 +90,9 @@ execStatement ; loadStatement - : KW_LOAD KW_DATA KW_LOCAL? KW_INPATH StringLiteral KW_OVERWRITE? KW_INTO KW_TABLE tableOrPartition inputFileFormat? + : KW_LOAD KW_DATA KW_LOCAL? KW_INPATH StringLiteral KW_OVERWRITE? KW_INTO KW_TABLE tableOrPartition ( + KW_INPUTFORMAT inFmt=StringLiteral KW_SERDE serdeCls=StringLiteral + )? ; replicationClause @@ -142,7 +144,6 @@ ddlStatement | alterScheduledQueryStatement | dropScheduledQueryStatement | dropViewStatement - | dropMaterializedViewStatement | createFunctionStatement | createMacroStatement | dropFunctionStatement @@ -152,11 +153,8 @@ ddlStatement | dropIndexStatement | analyzeStatement | lockStatement - | unlockStatement | lockDatabase - | unlockDatabase | createRoleStatement - | dropRoleStatement | grantPrivileges | revokePrivileges | showGrants @@ -187,6 +185,10 @@ restrictOrCascade | KW_CASCADE ; +storedAsDirs + : KW_STORED KW_AS KW_DIRECTORIES + ; + rewriteEnabled : enable KW_REWRITE ; @@ -195,21 +197,15 @@ rewriteDisabled : disable KW_REWRITE ; -storedAsDirs - : KW_STORED KW_AS KW_DIRECTORIES - ; - createDatabaseStatement - : KW_CREATE KW_REMOTE? db_schema ifNotExists? name=dbSchemaNameCreate databaseComment? locationPath? ( - KW_MANAGEDLOCATION locn=StringLiteral - )? (KW_WITH KW_DBPROPERTIES dbprops=keyValueProperties)? - | KW_CREATE KW_REMOTE db_schema ifNotExists? name=dbSchemaNameCreate databaseComment? dbConnectorName ( + : KW_CREATE KW_REMOTE? db_schema ifNotExists? name=dbSchemaNameCreate ( + KW_COMMENT comment=StringLiteral + )? locationPath? (KW_MANAGEDLOCATION locn=StringLiteral)? ( KW_WITH KW_DBPROPERTIES dbprops=keyValueProperties )? - ; - -dbConnectorName - : KW_USING dcName=dbSchemaName + | KW_CREATE KW_REMOTE db_schema ifNotExists? name=dbSchemaNameCreate ( + KW_COMMENT comment=StringLiteral + )? KW_USING dcName=dbSchemaName (KW_WITH KW_DBPROPERTIES dbprops=keyValueProperties)? ; switchDatabaseStatement @@ -220,10 +216,6 @@ dropDatabaseStatement : KW_DROP db_schema ifExists? dbSchemaName restrictOrCascade? ; -databaseComment - : KW_COMMENT comment=StringLiteral - ; - truncateTableStatement : KW_TRUNCATE KW_TABLE? tableOrPartition (KW_COLUMNS LPAREN columnNameList RPAREN)? KW_FORCE? ; @@ -232,10 +224,6 @@ dropTableStatement : KW_DROP KW_TABLE ifExists? tableName KW_PURGE? replicationClause? ; -inputFileFormat - : KW_INPUTFORMAT inFmt=StringLiteral KW_SERDE serdeCls=StringLiteral - ; - tabTypeExpr : id_ (DOT id_)? (id_ (DOT (KW_ELEM_TYPE | KW_KEY_TYPE | KW_VALUE_TYPE | id_))*)? ; @@ -279,38 +267,42 @@ db_schema ; showStatement - : KW_SHOW (KW_DATABASES | KW_SCHEMAS) (KW_LIKE showStmtIdentifier)? - | KW_SHOW isExtended=KW_EXTENDED? KW_TABLES (from_in db_name=dbSchemaName)? filter=showTablesFilterExpr? - | KW_SHOW KW_VIEWS (from_in db_name=dbSchemaName)? ( - KW_LIKE showStmtIdentifier - | showStmtIdentifier - )? - | KW_SHOW KW_MATERIALIZED KW_VIEWS (from_in db_name=dbSchemaName)? ( - KW_LIKE showStmtIdentifier - | showStmtIdentifier - )? - | KW_SHOW KW_SORTED? KW_COLUMNS from_in tableOrView (from_in db_name=dbSchemaName)? ( - KW_LIKE showStmtIdentifier - | showStmtIdentifier - )? - | KW_SHOW KW_FUNCTIONS (KW_LIKE functionNameForDDL)? - | KW_SHOW KW_PARTITIONS tabOrViewName=tableOrView partitionSpec? whereClause? orderByClause? limitClause? - | KW_SHOW KW_CREATE (db_schema db_name=dbSchemaName | KW_TABLE tabName=tableName) - | KW_SHOW KW_TABLE KW_EXTENDED (from_in db_name=dbSchemaName)? KW_LIKE showStmtIdentifier partitionSpec? - | KW_SHOW KW_TBLPROPERTIES tableName (LPAREN prptyName=StringLiteral RPAREN)? - | KW_SHOW KW_LOCKS ( - db_schema dbName=dbSchemaName isExtended=KW_EXTENDED? - | parttype=partTypeExpr? isExtended=KW_EXTENDED? - ) - | KW_SHOW KW_COMPACTIONS ( - KW_COMPACT_ID EQUAL compactId=Number - | ((db_schema dbName=dbSchemaName) | parttype=partTypeExpr?) compactionPool? compactionType? compactionStatus? orderByClause? limitClause? + : KW_SHOW ( + (KW_DATABASES | KW_SCHEMAS) (KW_LIKE showStmtIdentifier)? + | isExtended=KW_EXTENDED? KW_TABLES (from_in db_name=dbSchemaName)? filter=showTablesFilterExpr? + | KW_VIEWS (from_in db_name=dbSchemaName)? ( + KW_LIKE showStmtIdentifier + | showStmtIdentifier + )? + | KW_MATERIALIZED KW_VIEWS (from_in db_name=dbSchemaName)? ( + KW_LIKE showStmtIdentifier + | showStmtIdentifier + )? + | KW_SORTED? KW_COLUMNS from_in tableOrView (from_in db_name=dbSchemaName)? ( + KW_LIKE showStmtIdentifier + | showStmtIdentifier + )? + | KW_FUNCTIONS (KW_LIKE functionNameForDDL)? + | KW_PARTITIONS tabOrViewName=tableOrView partitionSpec? whereClause? orderByClause? limitClause? + | KW_CREATE (db_schema db_name=dbSchemaName | KW_TABLE tabName=tableName) + | KW_TABLE KW_EXTENDED (from_in db_name=dbSchemaName)? KW_LIKE showStmtIdentifier partitionSpec? + | KW_TBLPROPERTIES tableName (LPAREN prptyName=StringLiteral RPAREN)? + | KW_LOCKS ( + db_schema dbName=dbSchemaName isExtended=KW_EXTENDED? + | parttype=partTypeExpr? isExtended=KW_EXTENDED? + ) + | KW_COMPACTIONS ( + KW_COMPACT_ID EQUAL compactId=Number + | ((db_schema dbName=dbSchemaName) | parttype=partTypeExpr?) ( + KW_POOL poolName=StringLiteral + )? (KW_TYPE compactType=StringLiteral)? (KW_STATUS status=StringLiteral)? orderByClause? limitClause? + ) + | KW_TRANSACTIONS + | KW_CONF StringLiteral + | KW_RESOURCE (KW_PLAN rp_name=id_ | KW_PLANS) + | KW_DATACONNECTORS + | KW_FORMATTED? (KW_INDEX | KW_INDEXES) KW_ON tableName (from_in dbSchemaName)? ) - | KW_SHOW KW_TRANSACTIONS - | KW_SHOW KW_CONF StringLiteral - | KW_SHOW KW_RESOURCE (KW_PLAN rp_name=id_ | KW_PLANS) - | KW_SHOW KW_DATACONNECTORS - | KW_SHOW KW_FORMATTED? (KW_INDEX | KW_INDEXES) KW_ON tableName (from_in dbSchemaName)? ; showTablesFilterExpr @@ -320,48 +312,35 @@ showTablesFilterExpr ; lockStatement - : KW_LOCK KW_TABLE tableOrPartition lockMode + : KW_LOCK KW_TABLE tableOrPartition (KW_SHARED | KW_EXCLUSIVE) + | KW_UNLOCK KW_TABLE tableOrPartition ; lockDatabase - : KW_LOCK db_schema dbName=dbSchemaName lockMode - ; - -lockMode - : KW_SHARED - | KW_EXCLUSIVE - ; - -unlockStatement - : KW_UNLOCK KW_TABLE tableOrPartition - ; - -unlockDatabase - : KW_UNLOCK db_schema dbName=dbSchemaName + : KW_LOCK db_schema dbName=dbSchemaName (KW_SHARED | KW_EXCLUSIVE) + | KW_UNLOCK db_schema dbName=dbSchemaName ; createRoleStatement - : KW_CREATE KW_ROLE roleName=id_ - ; - -dropRoleStatement - : KW_DROP KW_ROLE roleName=id_ + : (KW_CREATE | KW_DROP) KW_ROLE roleName=id_ ; grantPrivileges - : KW_GRANT privList=privilegeList privilegeObject? KW_TO principalSpecification withGrantOption? + : KW_GRANT privList=privilegeList privilegeObject? KW_TO principalSpecification ( + KW_WITH KW_GRANT KW_OPTION + )? ; revokePrivileges - : KW_REVOKE grantOptionFor? privilegeList privilegeObject? KW_FROM principalSpecification + : KW_REVOKE (KW_GRANT KW_OPTION KW_FOR)? privilegeList privilegeObject? KW_FROM principalSpecification ; grantRole - : KW_GRANT KW_ROLE? id_ (COMMA id_)* KW_TO principalSpecification withAdminOption? + : KW_GRANT KW_ROLE? id_ (COMMA id_)* KW_TO principalSpecification (KW_WITH KW_ADMIN KW_OPTION)? ; revokeRole - : KW_REVOKE adminOptionFor? KW_ROLE? id_ (COMMA id_)* KW_FROM principalSpecification + : KW_REVOKE (KW_ADMIN KW_OPTION KW_FOR)? KW_ROLE? id_ (COMMA id_)* KW_FROM principalSpecification ; showRoleGrants @@ -452,22 +431,6 @@ principalAlterName | id_ ; -withGrantOption - : KW_WITH KW_GRANT KW_OPTION - ; - -grantOptionFor - : KW_GRANT KW_OPTION KW_FOR - ; - -adminOptionFor - : KW_ADMIN KW_OPTION KW_FOR - ; - -withAdminOption - : KW_WITH KW_ADMIN KW_OPTION - ; - metastoreCheck : KW_MSCK repair=KW_REPAIR? ( KW_TABLE tableName ( @@ -476,14 +439,6 @@ metastoreCheck ) ; -resourceList - : resource (COMMA resource)* - ; - -resource - : resType=resourceType resPath=StringLiteral - ; - resourceType : KW_JAR | KW_FILE @@ -492,7 +447,9 @@ resourceType createFunctionStatement : KW_CREATE temp=KW_TEMPORARY? KW_FUNCTION functionNameCreate KW_AS StringLiteral ( - KW_USING rList=resourceList + KW_USING resType=resourceType resPath=StringLiteral ( + COMMA resType=resourceType resPath=StringLiteral + )* )? ; @@ -517,7 +474,7 @@ createIndexStatement KW_WITH KW_DEFERRED KW_REBUILD )? (KW_IDXPROPERTIES tableProperties)? (KW_IN KW_TABLE tableName)? ( KW_PARTITIONED KW_BY columnParenthesesList - )? (tableRowFormat? tableFileFormat)? locationPath? tablePropertiesPrefixed? tableComment? + )? (rowFormat? tableFileFormat)? locationPath? tablePropertiesPrefixed? tableComment? ; dropIndexStatement @@ -557,15 +514,12 @@ viewSortSpec dropViewStatement : KW_DROP KW_VIEW ifExists? viewName + | KW_DROP KW_MATERIALIZED KW_VIEW ifExists? viewName ; createMaterializedViewStatement - : KW_CREATE KW_MATERIALIZED KW_VIEW ifNotExists? name=viewNameCreate rewriteDisabled? tableComment? viewPartition? viewOrganization? - tableRowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? KW_AS selectStatementWithCTE - ; - -dropMaterializedViewStatement - : KW_DROP KW_MATERIALIZED KW_VIEW ifExists? viewName + : KW_CREATE KW_MATERIALIZED KW_VIEW ifNotExists? name=viewNameCreate rewriteDisabled? tableComment? viewPartition? viewOrganization? rowFormat? + tableFileFormat? locationPath? tablePropertiesPrefixed? KW_AS selectStatementWithCTE ; createScheduledQueryStatement @@ -634,7 +588,7 @@ partitionTransformSpec partitionTransformType : columnName - | (year | month | day | hour) LPAREN columnName RPAREN + | (KW_YEAR | KW_YEARS | KW_MONTH | KW_MONTHS | KW_DAY | KW_DAYS | KW_HOUR | KW_HOURS) LPAREN columnName RPAREN | (KW_TRUNCATE | KW_BUCKET) LPAREN value=Number COMMA columnName RPAREN ; @@ -653,14 +607,6 @@ rowFormat | rowFormatDelimited ; -recordReader - : KW_RECORDREADER StringLiteral - ; - -recordWriter - : KW_RECORDWRITER StringLiteral - ; - rowFormatSerde : KW_ROW KW_FORMAT KW_SERDE name=StringLiteral ( KW_WITH KW_SERDEPROPERTIES serderops=tableProperties @@ -668,13 +614,8 @@ rowFormatSerde ; rowFormatDelimited - : KW_ROW KW_FORMAT KW_DELIMITED tableRowFormatFieldIdentifier? tableRowFormatCollItemsIdentifier? tableRowFormatMapKeysIdentifier? - tableRowFormatLinesIdentifier? tableRowNullFormat? - ; - -tableRowFormat - : rowFormatDelimited - | rowFormatSerde + : KW_ROW KW_FORMAT KW_DELIMITED rowFormatFieldIdentifier? rowFormatCollItemsIdentifier? rowFormatMapKeysIdentifier? rowFormatLinesIdentifier? + tableRowNullFormat? ; tablePropertiesPrefixed @@ -702,21 +643,21 @@ keyValueProperty : key=StringLiteral EQUAL value=StringLiteral ; -tableRowFormatFieldIdentifier +rowFormatFieldIdentifier : KW_FIELDS KW_TERMINATED KW_BY fldIdnt=StringLiteral ( KW_ESCAPED KW_BY fldEscape=StringLiteral )? ; -tableRowFormatCollItemsIdentifier +rowFormatCollItemsIdentifier : KW_COLLECTION KW_ITEMS KW_TERMINATED KW_BY collIdnt=StringLiteral ; -tableRowFormatMapKeysIdentifier +rowFormatMapKeysIdentifier : KW_MAP KW_KEYS KW_TERMINATED KW_BY mapKeysIdnt=StringLiteral ; -tableRowFormatLinesIdentifier +rowFormatLinesIdentifier : KW_LINES KW_TERMINATED KW_BY linesIdnt=StringLiteral ; @@ -784,7 +725,7 @@ columnParenthesesList ; enableValidateSpecification - : enableSpecification validateSpecification? + : enableSpecification (KW_VALIDATE | KW_NOVALIDATE)? | enforcedSpecification ; @@ -793,27 +734,17 @@ enableSpecification | disable ; -validateSpecification - : KW_VALIDATE - | KW_NOVALIDATE - ; - enforcedSpecification : KW_ENFORCED | KW_NOT KW_ENFORCED ; -relySpecification - : KW_RELY - | KW_NORELY - ; - createConstraint - : (KW_CONSTRAINT constraintName=id_)? tableLevelConstraint constraintOptsCreate? + : (KW_CONSTRAINT constraintName=id_)? tableLevelConstraint constraintOpts? ; alterConstraintWithName - : KW_CONSTRAINT constraintName=id_ tableLevelConstraint constraintOptsAlter? + : KW_CONSTRAINT constraintName=id_ tableLevelConstraint constraintOpts? ; tableLevelConstraint @@ -831,12 +762,12 @@ checkConstraint createForeignKey : (KW_CONSTRAINT constraintName=id_)? KW_FOREIGN KW_KEY fkCols=columnParenthesesList KW_REFERENCES tabName=tableName parCols=columnParenthesesList - constraintOptsCreate? + constraintOpts? ; alterForeignKeyWithName : KW_CONSTRAINT constraintName=id_ KW_FOREIGN KW_KEY fkCols=columnParenthesesList KW_REFERENCES tabName=tableName parCols=columnParenthesesList - constraintOptsAlter? + constraintOpts? ; skewedValueElement @@ -882,7 +813,7 @@ columnRefOrder ; columnNameType - : colName=columnNameCreate columnType (KW_COMMENT comment=StringLiteral)? + : colName=columnNameCreate type (KW_COMMENT comment=StringLiteral)? ; columnNameTypeOrConstraint @@ -896,9 +827,7 @@ tableConstraint ; columnNameTypeConstraint - : colName=columnNameCreate colType=columnType columnConstraint? ( - KW_COMMENT comment=StringLiteral - )? + : colName=columnNameCreate colType=type columnConstraint? (KW_COMMENT comment=StringLiteral)? ; columnConstraint @@ -907,62 +836,35 @@ columnConstraint ; foreignKeyConstraint - : (KW_CONSTRAINT constraintName=id_)? KW_REFERENCES tabName=tableName LPAREN colName=columnName RPAREN constraintOptsCreate? + : (KW_CONSTRAINT constraintName=id_)? KW_REFERENCES tabName=tableName LPAREN colName=columnName RPAREN constraintOpts? ; colConstraint - : (KW_CONSTRAINT constraintName=id_)? columnConstraintType constraintOptsCreate? - ; - -alterColumnConstraint - : alterForeignKeyConstraint - | alterColConstraint - ; - -alterForeignKeyConstraint - : (KW_CONSTRAINT constraintName=id_)? KW_REFERENCES tabName=tableName LPAREN colName=columnName RPAREN constraintOptsAlter? - ; - -alterColConstraint - : (KW_CONSTRAINT constraintName=id_)? columnConstraintType constraintOptsAlter? + : (KW_CONSTRAINT constraintName=id_)? columnConstraintType constraintOpts? ; columnConstraintType : KW_NOT KW_NULL - | KW_DEFAULT defaultVal + | KW_DEFAULT (constant | function_ | castExpression) | checkConstraint | tableConstraintType ; -defaultVal - : constant - | function_ - | castExpression - ; - tableConstraintType : KW_PRIMARY KW_KEY | KW_UNIQUE ; -constraintOptsCreate - : enableValidateSpecification relySpecification? - ; - -constraintOptsAlter - : enableValidateSpecification relySpecification? +constraintOpts + : enableValidateSpecification (KW_RELY | KW_NORELY)? ; columnNameColonType - : colName=columnNameCreate COLON columnType (KW_COMMENT comment=StringLiteral)? + : colName=columnNameCreate COLON type (KW_COMMENT comment=StringLiteral)? ; -columnType - : type - ; - -columnTypeList - : columnType (COMMA columnType)* +typeList + : type (COMMA type)* ; type @@ -995,7 +897,7 @@ primitiveType //| KW_INTERVAL KW_DAY KW_TO KW_SECOND | KW_STRING | KW_BINARY - | decimal (LPAREN prec=Number (COMMA scale=Number)? RPAREN)? + | (KW_DEC | KW_DECIMAL | KW_NUMERIC) (LPAREN prec=Number (COMMA scale=Number)? RPAREN)? | (KW_VARCHAR | KW_CHAR) LPAREN length=Number RPAREN ; @@ -1012,7 +914,7 @@ mapType ; unionType - : KW_UNIONTYPE LESSTHAN columnTypeList GREATERTHAN + : KW_UNIONTYPE LESSTHAN typeList GREATERTHAN ; setOperator @@ -1088,7 +990,7 @@ insertClause ; destination - : local=KW_LOCAL? KW_DIRECTORY StringLiteral tableRowFormat? tableFileFormat? + : local=KW_LOCAL? KW_DIRECTORY StringLiteral rowFormat? tableFileFormat? | KW_TABLE tableOrPartition ; @@ -1149,28 +1051,13 @@ whenMatchedThenClause : KW_WHEN KW_MATCHED KW_THEN (KW_UPDATE setColumnsClause | KW_DELETE) ; -/* -BEGIN SHOW COMPACTIONS statement -*/ -compactionPool - : KW_POOL poolName=StringLiteral - ; - -compactionType - : KW_TYPE compactType=StringLiteral - ; - -compactionStatus - : KW_STATUS status=StringLiteral - ; - alterStatement : KW_ALTER ( KW_TABLE tableName alterTableStatementSuffix | KW_VIEW viewName KW_AS? alterViewStatementSuffix | KW_MATERIALIZED KW_VIEW tableNameTree=viewName ( - mvRewriteFlag=rewriteEnabled - | mvRewriteFlag2=rewriteDisabled + rewriteEnabled + | rewriteDisabled | KW_REBUILD ) | db_schema alterDatabaseStatementSuffix @@ -1217,12 +1104,14 @@ alterTblPartitionStatementSuffix | tableBuckets | KW_COMPACT compactType=StringLiteral (KW_AND KW_WAIT)? ( KW_CLUSTERED KW_INTO num=Number KW_BUCKETS - )? orderByClause? compactionPool? (KW_WITH KW_OVERWRITE KW_TBLPROPERTIES tableProperties)? + )? orderByClause? (KW_POOL poolName=StringLiteral)? ( + KW_WITH KW_OVERWRITE KW_TBLPROPERTIES tableProperties + )? | KW_UPDATE KW_STATISTICS KW_FOR KW_COLUMN? colName=columnName KW_SET tableProperties ( KW_COMMENT comment=StringLiteral )? | KW_UPDATE KW_STATISTICS KW_SET tableProperties - | KW_CHANGE KW_COLUMN? oldName=columnName newName=columnNameCreate columnType alterColumnConstraint? ( + | KW_CHANGE KW_COLUMN? oldName=columnName newName=columnNameCreate type columnConstraint? ( KW_COMMENT comment=StringLiteral )? (first=KW_FIRST | KW_AFTER afterCol=id_)? restrictOrCascade? | (add=KW_ADD | replace=KW_REPLACE) KW_COLUMNS LPAREN columnNameTypeList RPAREN restrictOrCascade? @@ -1290,19 +1179,21 @@ likeTableOrFile Rules for parsing createtable */ createTableStatement - : KW_CREATE temp=KW_TEMPORARY? trans=KW_TRANSACTIONAL? ext=KW_EXTERNAL? KW_TABLE ifNotExists? name=tableNameCreate ( - likeTableOrFile createTablePartitionSpec? tableRowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? - | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat? - tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? ( - KW_AS selectStatementWithCTE - )? - ) - | KW_CREATE mgd=KW_MANAGED KW_TABLE ifNotExists? name=tableNameCreate ( - likeTableOrFile tableRowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? - | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat? - tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? ( - KW_AS selectStatementWithCTE - )? + : KW_CREATE ( + temp=KW_TEMPORARY? trans=KW_TRANSACTIONAL? ext=KW_EXTERNAL? KW_TABLE ifNotExists? name=tableNameCreate ( + likeTableOrFile createTablePartitionSpec? rowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? + | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? rowFormat? + tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? ( + KW_AS selectStatementWithCTE + )? + ) + | mgd=KW_MANAGED KW_TABLE ifNotExists? name=tableNameCreate ( + likeTableOrFile rowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? + | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? rowFormat? + tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? ( + KW_AS selectStatementWithCTE + )? + ) ) ; @@ -1519,9 +1410,9 @@ selectClause ; selectTrfmClause - : LPAREN selectExpressionList RPAREN rowFormat recordWriter KW_USING StringLiteral ( + : LPAREN selectExpressionList RPAREN rowFormat KW_RECORDWRITER StringLiteral KW_USING StringLiteral ( KW_AS (LPAREN (aliasList | columnNameTypeList) RPAREN | aliasList | columnNameTypeList) - )? rowFormat recordReader + )? rowFormat KW_RECORDREADER StringLiteral ; selectList @@ -1548,9 +1439,9 @@ selectExpressionColumnName ; trfmClause - : (KW_MAP | KW_REDUCE) selectExpressionList rowFormat recordWriter KW_USING StringLiteral ( + : (KW_MAP | KW_REDUCE) selectExpressionList rowFormat KW_RECORDWRITER StringLiteral KW_USING StringLiteral ( KW_AS (LPAREN (aliasList | columnNameTypeList) RPAREN | aliasList | columnNameTypeList) - )? rowFormat recordReader + )? rowFormat KW_RECORDREADER StringLiteral ; selectExpression @@ -1616,11 +1507,6 @@ qualifyClause : KW_QUALIFY expression ; -expressionOrDefault - : KW_DEFAULT - | expression - ; - /** Parses comma separated list of expressions with optionally specified aliases. [] [, []] @@ -1640,7 +1526,7 @@ expressionsInParenthesis ; expressionsNotInParenthesis - : first=expressionOrDefault ((COMMA expressionOrDefault)+)? + : (KW_DEFAULT | expression) ((COMMA (KW_DEFAULT | expression))+)? ; // order by a,b @@ -1678,17 +1564,13 @@ function_ RPAREN within=KW_WITHIN KW_GROUP LPAREN ordBy=orderByClause RPAREN // No null treatment: SELECT first_value(b) OVER () // Standard null treatment spec: SELECT first_value(b) IGNORE NULLS OVER () - | RPAREN nt=null_treatment? KW_OVER ws=window_specification + | RPAREN ((KW_RESPECT | KW_IGNORE) KW_NULLS)? KW_OVER ws=window_specification // Non-standard null treatment spec: SELECT first_value(b IGNORE NULLS) OVER () - | nt=null_treatment RPAREN KW_OVER ws=window_specification + | ((KW_RESPECT | KW_IGNORE) KW_NULLS) RPAREN KW_OVER ws=window_specification | RPAREN ) ; -null_treatment - : (KW_RESPECT | KW_IGNORE) KW_NULLS - ; - functionNameCreate : functionIdentifier ; @@ -1727,14 +1609,14 @@ extractExpression ; timeQualifiers - : year + : (KW_YEAR | KW_YEARS) | KW_QUARTER - | month - | week - | day - | hour - | minute - | second + | (KW_MONTH | KW_MONTHS) + | (KW_WEEK | KW_WEEKS) + | (KW_DAY | KW_DAYS) + | (KW_HOUR | KW_HOURS) + | (KW_MINUTE | KW_MINUTES) + | (KW_SECOND | KW_SECONDS) ; constant @@ -1767,14 +1649,14 @@ intervalExpression ; intervalQualifiers - : year KW_TO month - | day KW_TO second - | year - | month - | day - | hour - | minute - | second + : (KW_YEAR | KW_YEARS) KW_TO (KW_MONTH | KW_MONTHS) + | (KW_DAY | KW_DAYS) KW_TO (KW_SECOND | KW_SECONDS) + | (KW_YEAR | KW_YEARS) + | (KW_MONTH | KW_MONTHS) + | (KW_DAY | KW_DAYS) + | (KW_HOUR | KW_HOURS) + | (KW_MINUTE | KW_MINUTES) + | (KW_SECOND | KW_SECONDS) ; expression @@ -1823,6 +1705,10 @@ precedenceBitwiseOrExpression : precedenceAmpersandExpression (BITWISEOR precedenceAmpersandExpression)* ; +subQueryExpression + : LPAREN selectStatement RPAREN + ; + precedenceSimilarOperator : KW_LIKE | KW_RLIKE @@ -1833,10 +1719,6 @@ precedenceSimilarOperator | GREATERTHAN ; -subQueryExpression - : LPAREN selectStatement RPAREN - ; - precedenceSimilarExpression : a=precedenceBitwiseOrExpression part=precedenceSimilarExpressionPart? | KW_EXISTS subQueryExpression @@ -1845,26 +1727,19 @@ precedenceSimilarExpression precedenceSimilarExpressionPart : precedenceSimilarOperator equalExpr=precedenceBitwiseOrExpression | precedenceSimilarExpressionAtom - | KW_NOT precedenceSimilarExpressionPartNot + | KW_NOT ( + (KW_LIKE | KW_RLIKE | KW_REGEXP) notExpr=precedenceBitwiseOrExpression + | precedenceSimilarExpressionAtom + ) ; precedenceSimilarExpressionAtom - : KW_IN precedenceSimilarExpressionIn + : KW_IN (subQueryExpression | expr=expressionsInParenthesis) | KW_BETWEEN min=precedenceBitwiseOrExpression KW_AND max=precedenceBitwiseOrExpression | KW_LIKE (KW_ANY | KW_ALL) expr=expressionsInParenthesis | subQuerySelectorOperator (KW_ANY | KW_SOME | KW_ALL) subQueryExpression ; -precedenceSimilarExpressionIn - : subQueryExpression - | expr=expressionsInParenthesis - ; - -precedenceSimilarExpressionPartNot - : (KW_LIKE | KW_RLIKE | KW_REGEXP) notExpr=precedenceBitwiseOrExpression - | precedenceSimilarExpressionAtom - ; - precedenceDistinctOperator : KW_IS KW_DISTINCT KW_FROM ; @@ -2403,47 +2278,6 @@ disable | KW_DISABLED ; -year - : KW_YEAR - | KW_YEARS - ; - -month - : KW_MONTH - | KW_MONTHS - ; - -week - : KW_WEEK - | KW_WEEKS - ; - -day - : KW_DAY - | KW_DAYS - ; - -hour - : KW_HOUR - | KW_HOURS - ; - -minute - : KW_MINUTE - | KW_MINUTES - ; - -second - : KW_SECOND - | KW_SECONDS - ; - -decimal - : KW_DEC - | KW_DECIMAL - | KW_NUMERIC - ; - emptyColumn : ; diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index d74dca03..1eb12567 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -899,17 +899,14 @@ ddlStatement ifExists ifNotExists restrictOrCascade +storedAsDirs rewriteEnabled rewriteDisabled -storedAsDirs createDatabaseStatement -dbConnectorName switchDatabaseStatement dropDatabaseStatement -databaseComment truncateTableStatement dropTableStatement -inputFileFormat tabTypeExpr partTypeExpr tabPartColTypeExpr @@ -921,11 +918,7 @@ showStatement showTablesFilterExpr lockStatement lockDatabase -lockMode -unlockStatement -unlockDatabase createRoleStatement -dropRoleStatement grantPrivileges revokePrivileges grantRole @@ -946,13 +939,7 @@ privilegeType principalSpecification principalName principalAlterName -withGrantOption -grantOptionFor -adminOptionFor -withAdminOption metastoreCheck -resourceList -resource resourceType createFunctionStatement dropFunctionStatement @@ -970,7 +957,6 @@ viewDistSpec viewSortSpec dropViewStatement createMaterializedViewStatement -dropMaterializedViewStatement createScheduledQueryStatement dropScheduledQueryStatement alterScheduledQueryStatement @@ -988,21 +974,18 @@ partitionTransformType tableBuckets tableSkewed rowFormat -recordReader -recordWriter rowFormatSerde rowFormatDelimited -tableRowFormat tablePropertiesPrefixed tableProperties tablePropertiesList keyValueProperties keyValuePropertyList keyValueProperty -tableRowFormatFieldIdentifier -tableRowFormatCollItemsIdentifier -tableRowFormatMapKeysIdentifier -tableRowFormatLinesIdentifier +rowFormatFieldIdentifier +rowFormatCollItemsIdentifier +rowFormatMapKeysIdentifier +rowFormatLinesIdentifier tableRowNullFormat tableFileFormat columnNameTypeList @@ -1018,9 +1001,7 @@ columnNameOrderList columnParenthesesList enableValidateSpecification enableSpecification -validateSpecification enforcedSpecification -relySpecification createConstraint alterConstraintWithName tableLevelConstraint @@ -1045,17 +1026,11 @@ columnNameTypeConstraint columnConstraint foreignKeyConstraint colConstraint -alterColumnConstraint -alterForeignKeyConstraint -alterColConstraint columnConstraintType -defaultVal tableConstraintType -constraintOptsCreate -constraintOptsAlter +constraintOpts columnNameColonType -columnType -columnTypeList +typeList type primitiveType listType @@ -1086,9 +1061,6 @@ whenClauses whenNotMatchedClause whenMatchedAndClause whenMatchedThenClause -compactionPool -compactionType -compactionStatus alterStatement alterTableStatementSuffix alterTblPartitionStatementSuffix @@ -1154,7 +1126,6 @@ rollupOldSyntax groupingSetExpression havingClause qualifyClause -expressionOrDefault firstExpressionsWithAlias expressions expressionsInParenthesis @@ -1165,7 +1136,6 @@ clusterByClause distributeByClause sortByClause function_ -null_treatment functionNameCreate functionNameForDDL functionNameForInvoke @@ -1188,13 +1158,11 @@ precedencePlusExpression precedenceConcatenateExpression precedenceAmpersandExpression precedenceBitwiseOrExpression -precedenceSimilarOperator subQueryExpression +precedenceSimilarOperator precedenceSimilarExpression precedenceSimilarExpressionPart precedenceSimilarExpressionAtom -precedenceSimilarExpressionIn -precedenceSimilarExpressionPartNot precedenceDistinctOperator precedenceEqualOperator precedenceEqualExpression @@ -1224,14 +1192,6 @@ rpUnassign activate enable disable -year -month -week -day -hour -minute -second -decimal emptyColumn poolPath poolPathAllowEmpty @@ -1242,4 +1202,4 @@ poolAssignList atn: -[4, 1, 438, 4889, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 1, 0, 5, 0, 718, 8, 0, 10, 0, 12, 0, 721, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 727, 8, 1, 1, 1, 3, 1, 730, 8, 1, 1, 2, 1, 2, 5, 2, 734, 8, 2, 10, 2, 12, 2, 737, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 742, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 749, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 759, 8, 3, 1, 3, 3, 3, 762, 8, 3, 1, 3, 1, 3, 3, 3, 766, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 781, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 788, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 794, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 799, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 804, 8, 5, 1, 5, 3, 5, 807, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 829, 8, 5, 10, 5, 12, 5, 832, 9, 5, 3, 5, 834, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 839, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 844, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 850, 8, 6, 1, 7, 1, 7, 3, 7, 854, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 9, 1, 9, 3, 9, 871, 8, 9, 1, 9, 1, 9, 3, 9, 875, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 880, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 887, 8, 10, 1, 10, 1, 10, 3, 10, 891, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 896, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 903, 8, 12, 1, 12, 1, 12, 3, 12, 907, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 912, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 958, 8, 14, 11, 14, 12, 14, 959, 1, 14, 1, 14, 1, 14, 4, 14, 965, 8, 14, 11, 14, 12, 14, 966, 1, 14, 1, 14, 1, 14, 3, 14, 972, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 995, 8, 21, 1, 21, 1, 21, 3, 21, 999, 8, 21, 1, 21, 1, 21, 3, 21, 1003, 8, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 1, 21, 3, 21, 1010, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1015, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1021, 8, 21, 1, 21, 1, 21, 3, 21, 1025, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1031, 8, 21, 3, 21, 1033, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1044, 8, 24, 1, 24, 1, 24, 3, 24, 1048, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1055, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1063, 8, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1071, 8, 27, 1, 27, 1, 27, 3, 27, 1075, 8, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1088, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1096, 8, 29, 5, 29, 1098, 8, 29, 10, 29, 12, 29, 1101, 9, 29, 3, 29, 1103, 8, 29, 1, 30, 1, 30, 3, 30, 1107, 8, 30, 1, 31, 1, 31, 3, 31, 1111, 8, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1119, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1125, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1130, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1135, 8, 32, 1, 32, 1, 32, 3, 32, 1139, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1150, 8, 33, 3, 33, 1152, 8, 33, 1, 33, 1, 33, 3, 33, 1156, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1166, 8, 36, 1, 36, 1, 36, 3, 36, 1170, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1176, 8, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1186, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1199, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1204, 8, 36, 1, 36, 1, 36, 3, 36, 1208, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1216, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1221, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1227, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1233, 8, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1251, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1259, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1264, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1272, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1279, 8, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 3, 36, 1287, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1298, 8, 36, 3, 36, 1300, 8, 36, 1, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 3, 36, 1317, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1329, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1335, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1343, 8, 36, 3, 36, 1345, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1355, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1388, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1393, 8, 45, 1, 46, 1, 46, 3, 46, 1397, 8, 46, 1, 46, 1, 46, 3, 46, 1401, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1408, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1413, 8, 47, 10, 47, 12, 47, 1416, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1421, 8, 47, 1, 48, 1, 48, 3, 48, 1425, 8, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1433, 8, 48, 10, 48, 12, 48, 1436, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1458, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1463, 8, 53, 1, 53, 1, 53, 3, 53, 1467, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1475, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1484, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1491, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1497, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1504, 8, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1513, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1518, 8, 59, 10, 59, 12, 59, 1521, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1528, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1535, 8, 62, 10, 62, 12, 62, 1538, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1546, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1553, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1573, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1580, 8, 69, 3, 69, 1582, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1587, 8, 70, 10, 70, 12, 70, 1590, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1599, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1607, 8, 73, 1, 74, 1, 74, 3, 74, 1611, 8, 74, 1, 74, 1, 74, 3, 74, 1615, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1628, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1637, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1653, 8, 78, 1, 78, 1, 78, 3, 78, 1657, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1662, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1667, 8, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1687, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1696, 8, 80, 1, 80, 1, 80, 3, 80, 1700, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1707, 8, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1728, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1734, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1760, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1768, 8, 88, 1, 88, 1, 88, 3, 88, 1772, 8, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1802, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1812, 8, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1835, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1841, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1847, 8, 94, 1, 94, 3, 94, 1850, 8, 94, 3, 94, 1852, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1859, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1866, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1879, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1884, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1891, 8, 101, 10, 101, 12, 101, 1894, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1899, 8, 102, 10, 102, 12, 102, 1902, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1909, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1922, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1935, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1951, 8, 105, 1, 106, 1, 106, 3, 106, 1955, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1970, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1976, 8, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 111, 1, 111, 3, 111, 1992, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2005, 8, 114, 10, 114, 12, 114, 2008, 9, 114, 3, 114, 2010, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2019, 8, 116, 10, 116, 12, 116, 2022, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2035, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2069, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2077, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2082, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2090, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2095, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2100, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2105, 8, 124, 10, 124, 12, 124, 2108, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2113, 8, 125, 10, 125, 12, 125, 2116, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2121, 8, 126, 10, 126, 12, 126, 2124, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2129, 8, 127, 10, 127, 12, 127, 2132, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2137, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2144, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2154, 8, 132, 5, 132, 2156, 8, 132, 10, 132, 12, 132, 2159, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2164, 8, 133, 10, 133, 12, 133, 2167, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2175, 8, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 136, 1, 136, 3, 136, 2182, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2189, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2195, 8, 140, 1, 140, 1, 140, 3, 140, 2199, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2205, 8, 141, 1, 142, 1, 142, 3, 142, 2209, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2221, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2230, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2241, 8, 146, 1, 147, 1, 147, 3, 147, 2245, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2250, 8, 148, 10, 148, 12, 148, 2253, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2262, 8, 150, 10, 150, 12, 150, 2265, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2274, 8, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2282, 8, 154, 10, 154, 12, 154, 2285, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2290, 8, 155, 1, 156, 1, 156, 3, 156, 2294, 8, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2306, 8, 157, 1, 158, 1, 158, 3, 158, 2310, 8, 158, 1, 159, 1, 159, 3, 159, 2314, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2319, 8, 160, 1, 160, 1, 160, 3, 160, 2323, 8, 160, 1, 161, 1, 161, 3, 161, 2327, 8, 161, 1, 162, 1, 162, 3, 162, 2331, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2339, 8, 162, 1, 163, 1, 163, 3, 163, 2343, 8, 163, 1, 163, 1, 163, 3, 163, 2347, 8, 163, 1, 164, 1, 164, 3, 164, 2351, 8, 164, 1, 165, 1, 165, 3, 165, 2355, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2363, 8, 165, 1, 166, 1, 166, 3, 166, 2367, 8, 166, 1, 166, 1, 166, 3, 166, 2371, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2379, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2384, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2389, 8, 169, 1, 170, 1, 170, 3, 170, 2393, 8, 170, 1, 171, 1, 171, 3, 171, 2397, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2404, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2411, 8, 174, 10, 174, 12, 174, 2414, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2421, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2433, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2451, 8, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2460, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2486, 8, 181, 1, 182, 3, 182, 2489, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2495, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2501, 8, 184, 10, 184, 12, 184, 2504, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2511, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2522, 8, 186, 10, 186, 12, 186, 2525, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2531, 8, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2566, 8, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 3, 187, 2598, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2604, 8, 188, 1, 189, 1, 189, 3, 189, 2608, 8, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2630, 8, 189, 1, 190, 1, 190, 3, 190, 2634, 8, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2654, 8, 191, 11, 191, 12, 191, 2655, 1, 192, 3, 192, 2659, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2667, 8, 193, 1, 193, 1, 193, 3, 193, 2671, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2678, 8, 193, 3, 193, 2680, 8, 193, 1, 194, 3, 194, 2683, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2688, 8, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 1, 194, 3, 194, 2695, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2700, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2706, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2714, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2720, 8, 198, 10, 198, 12, 198, 2723, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2730, 8, 199, 10, 199, 12, 199, 2733, 9, 199, 3, 199, 2735, 8, 199, 1, 199, 1, 199, 3, 199, 2739, 8, 199, 1, 199, 1, 199, 3, 199, 2743, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2748, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2755, 8, 200, 1, 201, 1, 201, 5, 201, 2759, 8, 201, 10, 201, 12, 201, 2762, 9, 201, 1, 201, 3, 201, 2765, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2772, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2777, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2790, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2798, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2817, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2827, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2840, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2850, 8, 209, 1, 209, 1, 209, 3, 209, 2854, 8, 209, 4, 209, 2856, 8, 209, 11, 209, 12, 209, 2857, 1, 209, 1, 209, 5, 209, 2862, 8, 209, 10, 209, 12, 209, 2865, 9, 209, 1, 209, 1, 209, 5, 209, 2869, 8, 209, 10, 209, 12, 209, 2872, 9, 209, 1, 209, 1, 209, 5, 209, 2876, 8, 209, 10, 209, 12, 209, 2879, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2887, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2894, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2914, 8, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2931, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2946, 8, 210, 1, 210, 1, 210, 3, 210, 2950, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2968, 8, 210, 10, 210, 12, 210, 2971, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2982, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2988, 8, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3000, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3006, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3013, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3021, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3027, 8, 210, 1, 210, 1, 210, 3, 210, 3031, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3036, 8, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 1, 210, 3, 210, 3043, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3050, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3055, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3060, 8, 210, 1, 210, 3, 210, 3063, 8, 210, 3, 210, 3065, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3073, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3081, 8, 211, 1, 211, 1, 211, 3, 211, 3085, 8, 211, 4, 211, 3087, 8, 211, 11, 211, 12, 211, 3088, 1, 211, 1, 211, 3, 211, 3093, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3110, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3127, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3134, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3141, 8, 215, 10, 215, 12, 215, 3144, 9, 215, 1, 215, 1, 215, 3, 215, 3148, 8, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 216, 1, 216, 3, 216, 3158, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3173, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3187, 8, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3201, 8, 219, 1, 220, 1, 220, 3, 220, 3205, 8, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 1, 220, 3, 220, 3215, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3220, 8, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3241, 8, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 1, 220, 3, 220, 3272, 8, 220, 3, 220, 3274, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3280, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3285, 8, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3303, 8, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 1, 220, 3, 220, 3334, 8, 220, 3, 220, 3336, 8, 220, 3, 220, 3338, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3343, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3348, 8, 221, 1, 221, 1, 221, 3, 221, 3352, 8, 221, 1, 221, 1, 221, 3, 221, 3356, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3361, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3366, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3373, 8, 223, 10, 223, 12, 223, 3376, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3383, 8, 224, 10, 224, 12, 224, 3386, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3391, 8, 225, 10, 225, 12, 225, 3394, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3403, 8, 227, 11, 227, 12, 227, 3404, 1, 227, 3, 227, 3408, 8, 227, 1, 228, 1, 228, 5, 228, 3412, 8, 228, 10, 228, 12, 228, 3415, 9, 228, 1, 228, 1, 228, 5, 228, 3419, 8, 228, 10, 228, 12, 228, 3422, 9, 228, 1, 228, 1, 228, 5, 228, 3426, 8, 228, 10, 228, 12, 228, 3429, 9, 228, 1, 228, 1, 228, 5, 228, 3433, 8, 228, 10, 228, 12, 228, 3436, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3442, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3452, 8, 229, 3, 229, 3454, 8, 229, 1, 229, 1, 229, 3, 229, 3458, 8, 229, 5, 229, 3460, 8, 229, 10, 229, 12, 229, 3463, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3469, 8, 230, 1, 230, 5, 230, 3472, 8, 230, 10, 230, 12, 230, 3475, 9, 230, 1, 231, 3, 231, 3478, 8, 231, 1, 231, 1, 231, 3, 231, 3482, 8, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3499, 8, 232, 1, 232, 1, 232, 3, 232, 3503, 8, 232, 3, 232, 3505, 8, 232, 1, 232, 3, 232, 3508, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3519, 8, 233, 10, 233, 12, 233, 3522, 9, 233, 3, 233, 3524, 8, 233, 1, 233, 3, 233, 3527, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3537, 8, 233, 10, 233, 12, 233, 3540, 9, 233, 3, 233, 3542, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3549, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3556, 8, 233, 10, 233, 12, 233, 3559, 9, 233, 1, 233, 1, 233, 3, 233, 3563, 8, 233, 3, 233, 3565, 8, 233, 3, 233, 3567, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3582, 8, 235, 10, 235, 12, 235, 3585, 9, 235, 3, 235, 3587, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3595, 8, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 236, 1, 236, 3, 236, 3602, 8, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3626, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3634, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3641, 8, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3651, 8, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3659, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3666, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3674, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3680, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3685, 8, 246, 1, 246, 1, 246, 3, 246, 3689, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3694, 8, 247, 1, 248, 1, 248, 3, 248, 3698, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3705, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3717, 8, 249, 10, 249, 12, 249, 3720, 9, 249, 3, 249, 3722, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3729, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3735, 8, 251, 10, 251, 12, 251, 3738, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3745, 8, 251, 10, 251, 12, 251, 3748, 9, 251, 3, 251, 3750, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3759, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3766, 8, 253, 10, 253, 12, 253, 3769, 9, 253, 3, 253, 3771, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3777, 8, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3785, 8, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3801, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3807, 8, 255, 3, 255, 3809, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3817, 8, 256, 10, 256, 12, 256, 3820, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3825, 8, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3836, 8, 257, 10, 257, 12, 257, 3839, 9, 257, 1, 257, 1, 257, 3, 257, 3843, 8, 257, 1, 257, 1, 257, 3, 257, 3847, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3863, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3869, 8, 260, 3, 260, 3871, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3878, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3883, 8, 262, 10, 262, 12, 262, 3886, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3897, 8, 263, 10, 263, 12, 263, 3900, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3905, 8, 264, 1, 264, 3, 264, 3908, 8, 264, 1, 264, 3, 264, 3911, 8, 264, 1, 264, 3, 264, 3914, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3923, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3930, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3936, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3945, 8, 267, 1, 268, 1, 268, 3, 268, 3949, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3955, 8, 268, 10, 268, 12, 268, 3958, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3967, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3975, 8, 269, 10, 269, 12, 269, 3978, 9, 269, 1, 269, 1, 269, 3, 269, 3982, 8, 269, 1, 270, 1, 270, 3, 270, 3986, 8, 270, 1, 270, 1, 270, 5, 270, 3990, 8, 270, 10, 270, 12, 270, 3993, 9, 270, 1, 270, 1, 270, 3, 270, 3997, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4002, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4009, 8, 273, 1, 274, 1, 274, 3, 274, 4013, 8, 274, 1, 274, 3, 274, 4016, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4021, 8, 274, 1, 274, 3, 274, 4024, 8, 274, 5, 274, 4026, 8, 274, 10, 274, 12, 274, 4029, 9, 274, 1, 275, 1, 275, 3, 275, 4033, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4042, 8, 277, 11, 277, 12, 277, 4043, 3, 277, 4046, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4053, 8, 278, 10, 278, 12, 278, 4056, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4076, 8, 282, 10, 282, 12, 282, 4079, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4086, 8, 282, 10, 282, 12, 282, 4089, 9, 282, 3, 282, 4091, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4098, 8, 283, 1, 283, 3, 283, 4101, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4111, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4116, 8, 283, 10, 283, 12, 283, 4119, 9, 283, 3, 283, 4121, 8, 283, 3, 283, 4123, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4134, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4144, 8, 283, 3, 283, 4146, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4155, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4160, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4169, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4180, 8, 289, 11, 289, 12, 289, 4181, 1, 289, 1, 289, 3, 289, 4186, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4196, 8, 290, 11, 290, 12, 290, 4197, 1, 290, 1, 290, 3, 290, 4202, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4211, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4230, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4246, 8, 294, 10, 294, 12, 294, 4249, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4260, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4275, 8, 296, 1, 296, 1, 296, 3, 296, 4279, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4295, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4300, 8, 298, 10, 298, 12, 298, 4303, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4316, 8, 299, 1, 300, 5, 300, 4319, 8, 300, 10, 300, 12, 300, 4322, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4331, 8, 300, 10, 300, 12, 300, 4334, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4339, 8, 301, 10, 301, 12, 301, 4342, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4347, 8, 302, 10, 302, 12, 302, 4350, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4355, 8, 303, 10, 303, 12, 303, 4358, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4363, 8, 304, 10, 304, 12, 304, 4366, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4371, 8, 305, 10, 305, 12, 305, 4374, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4379, 8, 306, 10, 306, 12, 306, 4382, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4392, 8, 309, 1, 309, 1, 309, 3, 309, 4396, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4404, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4420, 8, 311, 1, 312, 1, 312, 3, 312, 4424, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4429, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4442, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4451, 8, 316, 10, 316, 12, 316, 4454, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4462, 8, 317, 1, 318, 5, 318, 4465, 8, 318, 10, 318, 12, 318, 4468, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4473, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4478, 8, 319, 10, 319, 12, 319, 4481, 9, 319, 1, 320, 1, 320, 3, 320, 4485, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4492, 8, 321, 10, 321, 12, 321, 4495, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4502, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4508, 8, 323, 10, 323, 12, 323, 4511, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4518, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4528, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4533, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 4544, 8, 332, 10, 332, 12, 332, 4547, 9, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4554, 8, 333, 10, 333, 12, 333, 4557, 9, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4610, 8, 334, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4616, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4625, 8, 335, 3, 335, 4627, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 4641, 8, 335, 10, 335, 12, 335, 4644, 9, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4651, 8, 335, 1, 335, 1, 335, 3, 335, 4655, 8, 335, 3, 335, 4657, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4663, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4668, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4685, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4711, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4716, 8, 335, 3, 335, 4718, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4746, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4763, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4768, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4777, 8, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 4788, 8, 337, 1, 338, 1, 338, 1, 338, 5, 338, 4793, 8, 338, 10, 338, 12, 338, 4796, 9, 338, 1, 339, 1, 339, 1, 339, 3, 339, 4801, 8, 339, 1, 340, 1, 340, 1, 340, 3, 340, 4806, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 5, 352, 4833, 8, 352, 10, 352, 12, 352, 4836, 9, 352, 1, 353, 1, 353, 1, 353, 5, 353, 4841, 8, 353, 10, 353, 12, 353, 4844, 9, 353, 1, 353, 1, 353, 1, 353, 1, 353, 5, 353, 4850, 8, 353, 10, 353, 12, 353, 4853, 9, 353, 3, 353, 4855, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 4865, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 4879, 8, 356, 1, 357, 1, 357, 1, 357, 5, 357, 4884, 8, 357, 10, 357, 12, 357, 4887, 9, 357, 1, 357, 1, 830, 0, 358, 0, 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, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 1, 0, 395, 396, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5478, 0, 719, 1, 0, 0, 0, 2, 726, 1, 0, 0, 0, 4, 731, 1, 0, 0, 0, 6, 765, 1, 0, 0, 0, 8, 767, 1, 0, 0, 0, 10, 833, 1, 0, 0, 0, 12, 835, 1, 0, 0, 0, 14, 851, 1, 0, 0, 0, 16, 860, 1, 0, 0, 0, 18, 868, 1, 0, 0, 0, 20, 881, 1, 0, 0, 0, 22, 892, 1, 0, 0, 0, 24, 897, 1, 0, 0, 0, 26, 908, 1, 0, 0, 0, 28, 971, 1, 0, 0, 0, 30, 973, 1, 0, 0, 0, 32, 976, 1, 0, 0, 0, 34, 980, 1, 0, 0, 0, 36, 982, 1, 0, 0, 0, 38, 985, 1, 0, 0, 0, 40, 988, 1, 0, 0, 0, 42, 1032, 1, 0, 0, 0, 44, 1034, 1, 0, 0, 0, 46, 1037, 1, 0, 0, 0, 48, 1040, 1, 0, 0, 0, 50, 1049, 1, 0, 0, 0, 52, 1052, 1, 0, 0, 0, 54, 1067, 1, 0, 0, 0, 56, 1079, 1, 0, 0, 0, 58, 1084, 1, 0, 0, 0, 60, 1104, 1, 0, 0, 0, 62, 1108, 1, 0, 0, 0, 64, 1115, 1, 0, 0, 0, 66, 1140, 1, 0, 0, 0, 68, 1157, 1, 0, 0, 0, 70, 1159, 1, 0, 0, 0, 72, 1344, 1, 0, 0, 0, 74, 1354, 1, 0, 0, 0, 76, 1356, 1, 0, 0, 0, 78, 1361, 1, 0, 0, 0, 80, 1366, 1, 0, 0, 0, 82, 1368, 1, 0, 0, 0, 84, 1372, 1, 0, 0, 0, 86, 1376, 1, 0, 0, 0, 88, 1380, 1, 0, 0, 0, 90, 1384, 1, 0, 0, 0, 92, 1394, 1, 0, 0, 0, 94, 1405, 1, 0, 0, 0, 96, 1422, 1, 0, 0, 0, 98, 1440, 1, 0, 0, 0, 100, 1445, 1, 0, 0, 0, 102, 1448, 1, 0, 0, 0, 104, 1452, 1, 0, 0, 0, 106, 1459, 1, 0, 0, 0, 108, 1468, 1, 0, 0, 0, 110, 1474, 1, 0, 0, 0, 112, 1476, 1, 0, 0, 0, 114, 1490, 1, 0, 0, 0, 116, 1512, 1, 0, 0, 0, 118, 1514, 1, 0, 0, 0, 120, 1522, 1, 0, 0, 0, 122, 1529, 1, 0, 0, 0, 124, 1531, 1, 0, 0, 0, 126, 1545, 1, 0, 0, 0, 128, 1552, 1, 0, 0, 0, 130, 1554, 1, 0, 0, 0, 132, 1558, 1, 0, 0, 0, 134, 1562, 1, 0, 0, 0, 136, 1566, 1, 0, 0, 0, 138, 1570, 1, 0, 0, 0, 140, 1583, 1, 0, 0, 0, 142, 1591, 1, 0, 0, 0, 144, 1594, 1, 0, 0, 0, 146, 1596, 1, 0, 0, 0, 148, 1608, 1, 0, 0, 0, 150, 1618, 1, 0, 0, 0, 152, 1621, 1, 0, 0, 0, 154, 1632, 1, 0, 0, 0, 156, 1640, 1, 0, 0, 0, 158, 1683, 1, 0, 0, 0, 160, 1692, 1, 0, 0, 0, 162, 1720, 1, 0, 0, 0, 164, 1733, 1, 0, 0, 0, 166, 1735, 1, 0, 0, 0, 168, 1741, 1, 0, 0, 0, 170, 1744, 1, 0, 0, 0, 172, 1750, 1, 0, 0, 0, 174, 1756, 1, 0, 0, 0, 176, 1763, 1, 0, 0, 0, 178, 1797, 1, 0, 0, 0, 180, 1805, 1, 0, 0, 0, 182, 1818, 1, 0, 0, 0, 184, 1823, 1, 0, 0, 0, 186, 1834, 1, 0, 0, 0, 188, 1851, 1, 0, 0, 0, 190, 1853, 1, 0, 0, 0, 192, 1858, 1, 0, 0, 0, 194, 1865, 1, 0, 0, 0, 196, 1867, 1, 0, 0, 0, 198, 1870, 1, 0, 0, 0, 200, 1873, 1, 0, 0, 0, 202, 1887, 1, 0, 0, 0, 204, 1895, 1, 0, 0, 0, 206, 1921, 1, 0, 0, 0, 208, 1923, 1, 0, 0, 0, 210, 1940, 1, 0, 0, 0, 212, 1954, 1, 0, 0, 0, 214, 1956, 1, 0, 0, 0, 216, 1959, 1, 0, 0, 0, 218, 1962, 1, 0, 0, 0, 220, 1971, 1, 0, 0, 0, 222, 1991, 1, 0, 0, 0, 224, 1993, 1, 0, 0, 0, 226, 1996, 1, 0, 0, 0, 228, 2009, 1, 0, 0, 0, 230, 2011, 1, 0, 0, 0, 232, 2015, 1, 0, 0, 0, 234, 2023, 1, 0, 0, 0, 236, 2027, 1, 0, 0, 0, 238, 2036, 1, 0, 0, 0, 240, 2042, 1, 0, 0, 0, 242, 2048, 1, 0, 0, 0, 244, 2053, 1, 0, 0, 0, 246, 2099, 1, 0, 0, 0, 248, 2101, 1, 0, 0, 0, 250, 2109, 1, 0, 0, 0, 252, 2117, 1, 0, 0, 0, 254, 2125, 1, 0, 0, 0, 256, 2136, 1, 0, 0, 0, 258, 2138, 1, 0, 0, 0, 260, 2143, 1, 0, 0, 0, 262, 2145, 1, 0, 0, 0, 264, 2147, 1, 0, 0, 0, 266, 2160, 1, 0, 0, 0, 268, 2168, 1, 0, 0, 0, 270, 2177, 1, 0, 0, 0, 272, 2181, 1, 0, 0, 0, 274, 2183, 1, 0, 0, 0, 276, 2188, 1, 0, 0, 0, 278, 2190, 1, 0, 0, 0, 280, 2194, 1, 0, 0, 0, 282, 2200, 1, 0, 0, 0, 284, 2208, 1, 0, 0, 0, 286, 2210, 1, 0, 0, 0, 288, 2213, 1, 0, 0, 0, 290, 2220, 1, 0, 0, 0, 292, 2231, 1, 0, 0, 0, 294, 2244, 1, 0, 0, 0, 296, 2246, 1, 0, 0, 0, 298, 2254, 1, 0, 0, 0, 300, 2258, 1, 0, 0, 0, 302, 2266, 1, 0, 0, 0, 304, 2268, 1, 0, 0, 0, 306, 2271, 1, 0, 0, 0, 308, 2278, 1, 0, 0, 0, 310, 2286, 1, 0, 0, 0, 312, 2293, 1, 0, 0, 0, 314, 2301, 1, 0, 0, 0, 316, 2309, 1, 0, 0, 0, 318, 2313, 1, 0, 0, 0, 320, 2315, 1, 0, 0, 0, 322, 2326, 1, 0, 0, 0, 324, 2330, 1, 0, 0, 0, 326, 2342, 1, 0, 0, 0, 328, 2350, 1, 0, 0, 0, 330, 2354, 1, 0, 0, 0, 332, 2366, 1, 0, 0, 0, 334, 2378, 1, 0, 0, 0, 336, 2383, 1, 0, 0, 0, 338, 2388, 1, 0, 0, 0, 340, 2390, 1, 0, 0, 0, 342, 2394, 1, 0, 0, 0, 344, 2398, 1, 0, 0, 0, 346, 2405, 1, 0, 0, 0, 348, 2407, 1, 0, 0, 0, 350, 2420, 1, 0, 0, 0, 352, 2459, 1, 0, 0, 0, 354, 2461, 1, 0, 0, 0, 356, 2466, 1, 0, 0, 0, 358, 2471, 1, 0, 0, 0, 360, 2478, 1, 0, 0, 0, 362, 2483, 1, 0, 0, 0, 364, 2488, 1, 0, 0, 0, 366, 2494, 1, 0, 0, 0, 368, 2496, 1, 0, 0, 0, 370, 2505, 1, 0, 0, 0, 372, 2517, 1, 0, 0, 0, 374, 2597, 1, 0, 0, 0, 376, 2603, 1, 0, 0, 0, 378, 2629, 1, 0, 0, 0, 380, 2631, 1, 0, 0, 0, 382, 2653, 1, 0, 0, 0, 384, 2658, 1, 0, 0, 0, 386, 2662, 1, 0, 0, 0, 388, 2694, 1, 0, 0, 0, 390, 2696, 1, 0, 0, 0, 392, 2707, 1, 0, 0, 0, 394, 2713, 1, 0, 0, 0, 396, 2715, 1, 0, 0, 0, 398, 2747, 1, 0, 0, 0, 400, 2754, 1, 0, 0, 0, 402, 2760, 1, 0, 0, 0, 404, 2766, 1, 0, 0, 0, 406, 2781, 1, 0, 0, 0, 408, 2791, 1, 0, 0, 0, 410, 2799, 1, 0, 0, 0, 412, 2802, 1, 0, 0, 0, 414, 2805, 1, 0, 0, 0, 416, 2808, 1, 0, 0, 0, 418, 2930, 1, 0, 0, 0, 420, 3064, 1, 0, 0, 0, 422, 3092, 1, 0, 0, 0, 424, 3109, 1, 0, 0, 0, 426, 3126, 1, 0, 0, 0, 428, 3128, 1, 0, 0, 0, 430, 3131, 1, 0, 0, 0, 432, 3157, 1, 0, 0, 0, 434, 3162, 1, 0, 0, 0, 436, 3189, 1, 0, 0, 0, 438, 3200, 1, 0, 0, 0, 440, 3337, 1, 0, 0, 0, 442, 3339, 1, 0, 0, 0, 444, 3362, 1, 0, 0, 0, 446, 3374, 1, 0, 0, 0, 448, 3379, 1, 0, 0, 0, 450, 3387, 1, 0, 0, 0, 452, 3395, 1, 0, 0, 0, 454, 3407, 1, 0, 0, 0, 456, 3441, 1, 0, 0, 0, 458, 3443, 1, 0, 0, 0, 460, 3468, 1, 0, 0, 0, 462, 3477, 1, 0, 0, 0, 464, 3507, 1, 0, 0, 0, 466, 3566, 1, 0, 0, 0, 468, 3568, 1, 0, 0, 0, 470, 3597, 1, 0, 0, 0, 472, 3599, 1, 0, 0, 0, 474, 3615, 1, 0, 0, 0, 476, 3627, 1, 0, 0, 0, 478, 3629, 1, 0, 0, 0, 480, 3633, 1, 0, 0, 0, 482, 3643, 1, 0, 0, 0, 484, 3653, 1, 0, 0, 0, 486, 3658, 1, 0, 0, 0, 488, 3665, 1, 0, 0, 0, 490, 3669, 1, 0, 0, 0, 492, 3688, 1, 0, 0, 0, 494, 3693, 1, 0, 0, 0, 496, 3695, 1, 0, 0, 0, 498, 3699, 1, 0, 0, 0, 500, 3725, 1, 0, 0, 0, 502, 3730, 1, 0, 0, 0, 504, 3751, 1, 0, 0, 0, 506, 3756, 1, 0, 0, 0, 508, 3787, 1, 0, 0, 0, 510, 3789, 1, 0, 0, 0, 512, 3813, 1, 0, 0, 0, 514, 3846, 1, 0, 0, 0, 516, 3848, 1, 0, 0, 0, 518, 3850, 1, 0, 0, 0, 520, 3852, 1, 0, 0, 0, 522, 3877, 1, 0, 0, 0, 524, 3879, 1, 0, 0, 0, 526, 3887, 1, 0, 0, 0, 528, 3913, 1, 0, 0, 0, 530, 3915, 1, 0, 0, 0, 532, 3935, 1, 0, 0, 0, 534, 3937, 1, 0, 0, 0, 536, 3948, 1, 0, 0, 0, 538, 3961, 1, 0, 0, 0, 540, 3996, 1, 0, 0, 0, 542, 3998, 1, 0, 0, 0, 544, 4003, 1, 0, 0, 0, 546, 4008, 1, 0, 0, 0, 548, 4010, 1, 0, 0, 0, 550, 4032, 1, 0, 0, 0, 552, 4034, 1, 0, 0, 0, 554, 4038, 1, 0, 0, 0, 556, 4047, 1, 0, 0, 0, 558, 4057, 1, 0, 0, 0, 560, 4061, 1, 0, 0, 0, 562, 4065, 1, 0, 0, 0, 564, 4069, 1, 0, 0, 0, 566, 4145, 1, 0, 0, 0, 568, 4147, 1, 0, 0, 0, 570, 4150, 1, 0, 0, 0, 572, 4154, 1, 0, 0, 0, 574, 4159, 1, 0, 0, 0, 576, 4161, 1, 0, 0, 0, 578, 4172, 1, 0, 0, 0, 580, 4189, 1, 0, 0, 0, 582, 4205, 1, 0, 0, 0, 584, 4214, 1, 0, 0, 0, 586, 4229, 1, 0, 0, 0, 588, 4259, 1, 0, 0, 0, 590, 4261, 1, 0, 0, 0, 592, 4278, 1, 0, 0, 0, 594, 4294, 1, 0, 0, 0, 596, 4296, 1, 0, 0, 0, 598, 4315, 1, 0, 0, 0, 600, 4320, 1, 0, 0, 0, 602, 4335, 1, 0, 0, 0, 604, 4343, 1, 0, 0, 0, 606, 4351, 1, 0, 0, 0, 608, 4359, 1, 0, 0, 0, 610, 4367, 1, 0, 0, 0, 612, 4375, 1, 0, 0, 0, 614, 4383, 1, 0, 0, 0, 616, 4385, 1, 0, 0, 0, 618, 4395, 1, 0, 0, 0, 620, 4403, 1, 0, 0, 0, 622, 4419, 1, 0, 0, 0, 624, 4423, 1, 0, 0, 0, 626, 4428, 1, 0, 0, 0, 628, 4430, 1, 0, 0, 0, 630, 4441, 1, 0, 0, 0, 632, 4443, 1, 0, 0, 0, 634, 4461, 1, 0, 0, 0, 636, 4466, 1, 0, 0, 0, 638, 4474, 1, 0, 0, 0, 640, 4482, 1, 0, 0, 0, 642, 4486, 1, 0, 0, 0, 644, 4498, 1, 0, 0, 0, 646, 4503, 1, 0, 0, 0, 648, 4514, 1, 0, 0, 0, 650, 4521, 1, 0, 0, 0, 652, 4523, 1, 0, 0, 0, 654, 4527, 1, 0, 0, 0, 656, 4529, 1, 0, 0, 0, 658, 4534, 1, 0, 0, 0, 660, 4536, 1, 0, 0, 0, 662, 4538, 1, 0, 0, 0, 664, 4540, 1, 0, 0, 0, 666, 4548, 1, 0, 0, 0, 668, 4609, 1, 0, 0, 0, 670, 4776, 1, 0, 0, 0, 672, 4778, 1, 0, 0, 0, 674, 4787, 1, 0, 0, 0, 676, 4789, 1, 0, 0, 0, 678, 4800, 1, 0, 0, 0, 680, 4802, 1, 0, 0, 0, 682, 4807, 1, 0, 0, 0, 684, 4809, 1, 0, 0, 0, 686, 4811, 1, 0, 0, 0, 688, 4813, 1, 0, 0, 0, 690, 4815, 1, 0, 0, 0, 692, 4817, 1, 0, 0, 0, 694, 4819, 1, 0, 0, 0, 696, 4821, 1, 0, 0, 0, 698, 4823, 1, 0, 0, 0, 700, 4825, 1, 0, 0, 0, 702, 4827, 1, 0, 0, 0, 704, 4829, 1, 0, 0, 0, 706, 4854, 1, 0, 0, 0, 708, 4856, 1, 0, 0, 0, 710, 4864, 1, 0, 0, 0, 712, 4878, 1, 0, 0, 0, 714, 4880, 1, 0, 0, 0, 716, 718, 3, 2, 1, 0, 717, 716, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 5, 0, 0, 1, 723, 1, 1, 0, 0, 0, 724, 727, 3, 4, 2, 0, 725, 727, 3, 10, 5, 0, 726, 724, 1, 0, 0, 0, 726, 725, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 730, 5, 398, 0, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 3, 1, 0, 0, 0, 731, 741, 5, 119, 0, 0, 732, 734, 3, 6, 3, 0, 733, 732, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 742, 3, 10, 5, 0, 739, 740, 5, 284, 0, 0, 740, 742, 3, 364, 182, 0, 741, 735, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 5, 1, 0, 0, 0, 743, 766, 5, 122, 0, 0, 744, 766, 5, 138, 0, 0, 745, 766, 5, 88, 0, 0, 746, 748, 5, 37, 0, 0, 747, 749, 7, 0, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 766, 1, 0, 0, 0, 750, 766, 5, 192, 0, 0, 751, 766, 5, 21, 0, 0, 752, 766, 5, 10, 0, 0, 753, 766, 5, 275, 0, 0, 754, 766, 5, 191, 0, 0, 755, 766, 5, 19, 0, 0, 756, 758, 5, 377, 0, 0, 757, 759, 5, 225, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 761, 1, 0, 0, 0, 760, 762, 3, 8, 4, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 766, 1, 0, 0, 0, 763, 766, 5, 79, 0, 0, 764, 766, 5, 78, 0, 0, 765, 743, 1, 0, 0, 0, 765, 744, 1, 0, 0, 0, 765, 745, 1, 0, 0, 0, 765, 746, 1, 0, 0, 0, 765, 750, 1, 0, 0, 0, 765, 751, 1, 0, 0, 0, 765, 752, 1, 0, 0, 0, 765, 753, 1, 0, 0, 0, 765, 754, 1, 0, 0, 0, 765, 755, 1, 0, 0, 0, 765, 756, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 765, 764, 1, 0, 0, 0, 766, 7, 1, 0, 0, 0, 767, 768, 7, 1, 0, 0, 768, 9, 1, 0, 0, 0, 769, 834, 3, 364, 182, 0, 770, 834, 3, 12, 6, 0, 771, 834, 3, 16, 8, 0, 772, 834, 3, 18, 9, 0, 773, 834, 3, 20, 10, 0, 774, 834, 3, 24, 12, 0, 775, 776, 5, 277, 0, 0, 776, 777, 5, 320, 0, 0, 777, 780, 3, 476, 238, 0, 778, 779, 5, 387, 0, 0, 779, 781, 3, 230, 115, 0, 780, 778, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 834, 1, 0, 0, 0, 782, 834, 3, 28, 14, 0, 783, 784, 5, 86, 0, 0, 784, 785, 5, 139, 0, 0, 785, 787, 3, 482, 241, 0, 786, 788, 3, 500, 250, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 834, 1, 0, 0, 0, 789, 790, 5, 365, 0, 0, 790, 791, 3, 482, 241, 0, 791, 793, 3, 396, 198, 0, 792, 794, 3, 500, 250, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 834, 1, 0, 0, 0, 795, 834, 3, 398, 199, 0, 796, 798, 5, 203, 0, 0, 797, 799, 5, 436, 0, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 166, 0, 0, 801, 806, 3, 482, 241, 0, 802, 804, 5, 17, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 807, 3, 654, 327, 0, 806, 803, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 5, 370, 0, 0, 809, 810, 3, 460, 230, 0, 810, 811, 5, 224, 0, 0, 811, 812, 3, 596, 298, 0, 812, 813, 3, 402, 201, 0, 813, 834, 1, 0, 0, 0, 814, 815, 5, 249, 0, 0, 815, 816, 3, 654, 327, 0, 816, 817, 5, 139, 0, 0, 817, 818, 3, 364, 182, 0, 818, 834, 1, 0, 0, 0, 819, 820, 5, 115, 0, 0, 820, 821, 3, 654, 327, 0, 821, 822, 5, 370, 0, 0, 822, 823, 3, 300, 150, 0, 823, 834, 1, 0, 0, 0, 824, 825, 5, 304, 0, 0, 825, 826, 3, 664, 332, 0, 826, 830, 5, 405, 0, 0, 827, 829, 9, 0, 0, 0, 828, 827, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 834, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 769, 1, 0, 0, 0, 833, 770, 1, 0, 0, 0, 833, 771, 1, 0, 0, 0, 833, 772, 1, 0, 0, 0, 833, 773, 1, 0, 0, 0, 833, 774, 1, 0, 0, 0, 833, 775, 1, 0, 0, 0, 833, 782, 1, 0, 0, 0, 833, 783, 1, 0, 0, 0, 833, 789, 1, 0, 0, 0, 833, 795, 1, 0, 0, 0, 833, 796, 1, 0, 0, 0, 833, 814, 1, 0, 0, 0, 833, 819, 1, 0, 0, 0, 833, 824, 1, 0, 0, 0, 834, 11, 1, 0, 0, 0, 835, 836, 5, 187, 0, 0, 836, 838, 5, 66, 0, 0, 837, 839, 5, 188, 0, 0, 838, 837, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 5, 158, 0, 0, 841, 843, 5, 426, 0, 0, 842, 844, 5, 235, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 5, 166, 0, 0, 846, 847, 5, 329, 0, 0, 847, 849, 3, 640, 320, 0, 848, 850, 3, 56, 28, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 13, 1, 0, 0, 0, 851, 853, 5, 134, 0, 0, 852, 854, 5, 204, 0, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 5, 279, 0, 0, 856, 857, 5, 399, 0, 0, 857, 858, 5, 426, 0, 0, 858, 859, 5, 400, 0, 0, 859, 15, 1, 0, 0, 0, 860, 861, 5, 120, 0, 0, 861, 862, 5, 329, 0, 0, 862, 863, 3, 640, 320, 0, 863, 864, 5, 341, 0, 0, 864, 866, 5, 426, 0, 0, 865, 867, 3, 14, 7, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 17, 1, 0, 0, 0, 868, 874, 5, 153, 0, 0, 869, 871, 5, 123, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 5, 329, 0, 0, 873, 875, 3, 640, 320, 0, 874, 870, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 5, 139, 0, 0, 877, 879, 5, 426, 0, 0, 878, 880, 3, 428, 214, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 19, 1, 0, 0, 0, 881, 882, 5, 277, 0, 0, 882, 883, 5, 103, 0, 0, 883, 886, 3, 22, 11, 0, 884, 885, 5, 278, 0, 0, 885, 887, 3, 22, 11, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 889, 5, 387, 0, 0, 889, 891, 3, 230, 115, 0, 890, 888, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 21, 1, 0, 0, 0, 892, 895, 3, 476, 238, 0, 893, 894, 5, 395, 0, 0, 894, 896, 3, 26, 13, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 23, 1, 0, 0, 0, 897, 898, 5, 277, 0, 0, 898, 899, 5, 187, 0, 0, 899, 902, 3, 22, 11, 0, 900, 901, 5, 166, 0, 0, 901, 903, 3, 476, 238, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 906, 1, 0, 0, 0, 904, 905, 5, 387, 0, 0, 905, 907, 3, 230, 115, 0, 906, 904, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 25, 1, 0, 0, 0, 908, 911, 5, 426, 0, 0, 909, 910, 5, 395, 0, 0, 910, 912, 5, 426, 0, 0, 911, 909, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 27, 1, 0, 0, 0, 913, 972, 3, 42, 21, 0, 914, 972, 3, 46, 23, 0, 915, 972, 3, 48, 24, 0, 916, 972, 3, 440, 220, 0, 917, 972, 3, 54, 27, 0, 918, 972, 3, 52, 26, 0, 919, 972, 3, 416, 208, 0, 920, 972, 3, 64, 32, 0, 921, 972, 3, 72, 36, 0, 922, 972, 3, 138, 69, 0, 923, 972, 3, 160, 80, 0, 924, 972, 3, 176, 88, 0, 925, 972, 3, 180, 90, 0, 926, 972, 3, 184, 92, 0, 927, 972, 3, 182, 91, 0, 928, 972, 3, 174, 87, 0, 929, 972, 3, 178, 89, 0, 930, 972, 3, 146, 73, 0, 931, 972, 3, 152, 76, 0, 932, 972, 3, 148, 74, 0, 933, 972, 3, 150, 75, 0, 934, 972, 3, 154, 77, 0, 935, 972, 3, 156, 78, 0, 936, 972, 3, 158, 79, 0, 937, 972, 3, 66, 33, 0, 938, 972, 3, 76, 38, 0, 939, 972, 3, 82, 41, 0, 940, 972, 3, 78, 39, 0, 941, 972, 3, 84, 42, 0, 942, 972, 3, 86, 43, 0, 943, 972, 3, 88, 44, 0, 944, 972, 3, 90, 45, 0, 945, 972, 3, 92, 46, 0, 946, 972, 3, 106, 53, 0, 947, 972, 3, 98, 49, 0, 948, 972, 3, 108, 54, 0, 949, 972, 3, 100, 50, 0, 950, 972, 3, 94, 47, 0, 951, 972, 3, 96, 48, 0, 952, 972, 3, 104, 52, 0, 953, 972, 3, 102, 51, 0, 954, 955, 5, 1, 0, 0, 955, 957, 7, 2, 0, 0, 956, 958, 5, 431, 0, 0, 957, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 972, 1, 0, 0, 0, 961, 962, 5, 176, 0, 0, 962, 964, 5, 258, 0, 0, 963, 965, 5, 426, 0, 0, 964, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 972, 1, 0, 0, 0, 968, 972, 3, 670, 335, 0, 969, 972, 3, 442, 221, 0, 970, 972, 3, 444, 222, 0, 971, 913, 1, 0, 0, 0, 971, 914, 1, 0, 0, 0, 971, 915, 1, 0, 0, 0, 971, 916, 1, 0, 0, 0, 971, 917, 1, 0, 0, 0, 971, 918, 1, 0, 0, 0, 971, 919, 1, 0, 0, 0, 971, 920, 1, 0, 0, 0, 971, 921, 1, 0, 0, 0, 971, 922, 1, 0, 0, 0, 971, 923, 1, 0, 0, 0, 971, 924, 1, 0, 0, 0, 971, 925, 1, 0, 0, 0, 971, 926, 1, 0, 0, 0, 971, 927, 1, 0, 0, 0, 971, 928, 1, 0, 0, 0, 971, 929, 1, 0, 0, 0, 971, 930, 1, 0, 0, 0, 971, 931, 1, 0, 0, 0, 971, 932, 1, 0, 0, 0, 971, 933, 1, 0, 0, 0, 971, 934, 1, 0, 0, 0, 971, 935, 1, 0, 0, 0, 971, 936, 1, 0, 0, 0, 971, 937, 1, 0, 0, 0, 971, 938, 1, 0, 0, 0, 971, 939, 1, 0, 0, 0, 971, 940, 1, 0, 0, 0, 971, 941, 1, 0, 0, 0, 971, 942, 1, 0, 0, 0, 971, 943, 1, 0, 0, 0, 971, 944, 1, 0, 0, 0, 971, 945, 1, 0, 0, 0, 971, 946, 1, 0, 0, 0, 971, 947, 1, 0, 0, 0, 971, 948, 1, 0, 0, 0, 971, 949, 1, 0, 0, 0, 971, 950, 1, 0, 0, 0, 971, 951, 1, 0, 0, 0, 971, 952, 1, 0, 0, 0, 971, 953, 1, 0, 0, 0, 971, 954, 1, 0, 0, 0, 971, 961, 1, 0, 0, 0, 971, 968, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 971, 970, 1, 0, 0, 0, 972, 29, 1, 0, 0, 0, 973, 974, 5, 151, 0, 0, 974, 975, 5, 117, 0, 0, 975, 31, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 216, 0, 0, 978, 979, 5, 117, 0, 0, 979, 33, 1, 0, 0, 0, 980, 981, 7, 3, 0, 0, 981, 35, 1, 0, 0, 0, 982, 983, 3, 682, 341, 0, 983, 984, 5, 284, 0, 0, 984, 37, 1, 0, 0, 0, 985, 986, 3, 684, 342, 0, 986, 987, 5, 284, 0, 0, 987, 39, 1, 0, 0, 0, 988, 989, 5, 321, 0, 0, 989, 990, 5, 17, 0, 0, 990, 991, 5, 92, 0, 0, 991, 41, 1, 0, 0, 0, 992, 994, 5, 58, 0, 0, 993, 995, 5, 273, 0, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 998, 3, 70, 35, 0, 997, 999, 3, 32, 16, 0, 998, 997, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1002, 3, 478, 239, 0, 1001, 1003, 3, 50, 25, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 1, 0, 0, 0, 1004, 1006, 3, 428, 214, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1009, 1, 0, 0, 0, 1007, 1008, 5, 196, 0, 0, 1008, 1010, 5, 426, 0, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1014, 1, 0, 0, 0, 1011, 1012, 5, 387, 0, 0, 1012, 1013, 5, 76, 0, 0, 1013, 1015, 3, 230, 115, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1033, 1, 0, 0, 0, 1016, 1017, 5, 58, 0, 0, 1017, 1018, 5, 273, 0, 0, 1018, 1020, 3, 70, 35, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 3, 478, 239, 0, 1023, 1025, 3, 50, 25, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1030, 3, 44, 22, 0, 1027, 1028, 5, 387, 0, 0, 1028, 1029, 5, 76, 0, 0, 1029, 1031, 3, 230, 115, 0, 1030, 1027, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 1, 0, 0, 0, 1032, 992, 1, 0, 0, 0, 1032, 1016, 1, 0, 0, 0, 1033, 43, 1, 0, 0, 0, 1034, 1035, 5, 370, 0, 0, 1035, 1036, 3, 476, 238, 0, 1036, 45, 1, 0, 0, 0, 1037, 1038, 5, 368, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 47, 1, 0, 0, 0, 1040, 1041, 5, 101, 0, 0, 1041, 1043, 3, 70, 35, 0, 1042, 1044, 3, 30, 15, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 3, 476, 238, 0, 1046, 1048, 3, 34, 17, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 49, 1, 0, 0, 0, 1049, 1050, 5, 47, 0, 0, 1050, 1051, 5, 426, 0, 0, 1051, 51, 1, 0, 0, 0, 1052, 1054, 5, 351, 0, 0, 1053, 1055, 5, 329, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1062, 3, 640, 320, 0, 1057, 1058, 5, 46, 0, 0, 1058, 1059, 5, 399, 0, 0, 1059, 1060, 3, 254, 127, 0, 1060, 1061, 5, 400, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1066, 5, 135, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 53, 1, 0, 0, 0, 1067, 1068, 5, 101, 0, 0, 1068, 1070, 5, 329, 0, 0, 1069, 1071, 3, 30, 15, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 3, 482, 241, 0, 1073, 1075, 5, 255, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1078, 3, 14, 7, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 55, 1, 0, 0, 0, 1079, 1080, 5, 160, 0, 0, 1080, 1081, 5, 426, 0, 0, 1081, 1082, 5, 301, 0, 0, 1082, 1083, 5, 426, 0, 0, 1083, 57, 1, 0, 0, 0, 1084, 1087, 3, 654, 327, 0, 1085, 1086, 5, 395, 0, 0, 1086, 1088, 3, 654, 327, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1102, 1, 0, 0, 0, 1089, 1099, 3, 654, 327, 0, 1090, 1095, 5, 395, 0, 0, 1091, 1096, 5, 104, 0, 0, 1092, 1096, 5, 175, 0, 0, 1093, 1096, 5, 375, 0, 0, 1094, 1096, 3, 654, 327, 0, 1095, 1091, 1, 0, 0, 0, 1095, 1092, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1090, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1089, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 59, 1, 0, 0, 0, 1104, 1106, 3, 58, 29, 0, 1105, 1107, 3, 642, 321, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 61, 1, 0, 0, 0, 1108, 1110, 3, 480, 240, 0, 1109, 1111, 3, 642, 321, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1113, 1, 0, 0, 0, 1112, 1114, 3, 264, 132, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 63, 1, 0, 0, 0, 1115, 1138, 7, 4, 0, 0, 1116, 1118, 3, 70, 35, 0, 1117, 1119, 5, 122, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 3, 476, 238, 0, 1121, 1139, 1, 0, 0, 0, 1122, 1124, 5, 69, 0, 0, 1123, 1125, 5, 122, 0, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1139, 3, 476, 238, 0, 1127, 1129, 5, 141, 0, 0, 1128, 1130, 5, 122, 0, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1139, 3, 572, 286, 0, 1132, 1135, 5, 138, 0, 0, 1133, 1135, 5, 122, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1139, 3, 62, 31, 0, 1137, 1139, 3, 62, 31, 0, 1138, 1116, 1, 0, 0, 0, 1138, 1122, 1, 0, 0, 0, 1138, 1127, 1, 0, 0, 0, 1138, 1134, 1, 0, 0, 0, 1138, 1137, 1, 0, 0, 0, 1139, 65, 1, 0, 0, 0, 1140, 1141, 5, 10, 0, 0, 1141, 1142, 5, 329, 0, 0, 1142, 1155, 3, 640, 320, 0, 1143, 1144, 5, 52, 0, 0, 1144, 1151, 5, 319, 0, 0, 1145, 1152, 5, 215, 0, 0, 1146, 1147, 5, 134, 0, 0, 1147, 1149, 5, 46, 0, 0, 1148, 1150, 3, 254, 127, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 1, 0, 0, 0, 1151, 1145, 1, 0, 0, 0, 1151, 1146, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1156, 1, 0, 0, 0, 1153, 1154, 5, 33, 0, 0, 1154, 1156, 5, 204, 0, 0, 1155, 1143, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1156, 67, 1, 0, 0, 0, 1157, 1158, 7, 5, 0, 0, 1158, 69, 1, 0, 0, 0, 1159, 1160, 7, 6, 0, 0, 1160, 71, 1, 0, 0, 0, 1161, 1162, 5, 308, 0, 0, 1162, 1165, 7, 7, 0, 0, 1163, 1164, 5, 184, 0, 0, 1164, 1166, 3, 194, 97, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1345, 1, 0, 0, 0, 1167, 1169, 5, 308, 0, 0, 1168, 1170, 5, 122, 0, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1175, 5, 330, 0, 0, 1172, 1173, 3, 68, 34, 0, 1173, 1174, 3, 476, 238, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1172, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1179, 3, 74, 37, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1345, 1, 0, 0, 0, 1180, 1181, 5, 308, 0, 0, 1181, 1185, 5, 379, 0, 0, 1182, 1183, 3, 68, 34, 0, 1183, 1184, 3, 476, 238, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1182, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1190, 1, 0, 0, 0, 1187, 1188, 5, 184, 0, 0, 1188, 1191, 3, 194, 97, 0, 1189, 1191, 3, 194, 97, 0, 1190, 1187, 1, 0, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1345, 1, 0, 0, 0, 1192, 1193, 5, 308, 0, 0, 1193, 1194, 5, 202, 0, 0, 1194, 1198, 5, 379, 0, 0, 1195, 1196, 3, 68, 34, 0, 1196, 1197, 3, 476, 238, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1195, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1203, 1, 0, 0, 0, 1200, 1201, 5, 184, 0, 0, 1201, 1204, 3, 194, 97, 0, 1202, 1204, 3, 194, 97, 0, 1203, 1200, 1, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1345, 1, 0, 0, 0, 1205, 1207, 5, 308, 0, 0, 1206, 1208, 5, 315, 0, 0, 1207, 1206, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 5, 46, 0, 0, 1210, 1211, 3, 68, 34, 0, 1211, 1215, 3, 480, 240, 0, 1212, 1213, 3, 68, 34, 0, 1213, 1214, 3, 476, 238, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1212, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1220, 1, 0, 0, 0, 1217, 1218, 5, 184, 0, 0, 1218, 1221, 3, 194, 97, 0, 1219, 1221, 3, 194, 97, 0, 1220, 1217, 1, 0, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1345, 1, 0, 0, 0, 1222, 1223, 5, 308, 0, 0, 1223, 1226, 5, 142, 0, 0, 1224, 1225, 5, 184, 0, 0, 1225, 1227, 3, 572, 286, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1345, 1, 0, 0, 0, 1228, 1229, 5, 308, 0, 0, 1229, 1230, 5, 239, 0, 0, 1230, 1232, 3, 480, 240, 0, 1231, 1233, 3, 642, 321, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1235, 1, 0, 0, 0, 1234, 1236, 3, 500, 250, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 556, 278, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 390, 195, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1345, 1, 0, 0, 0, 1243, 1244, 5, 308, 0, 0, 1244, 1250, 5, 58, 0, 0, 1245, 1246, 3, 70, 35, 0, 1246, 1247, 3, 476, 238, 0, 1247, 1251, 1, 0, 0, 0, 1248, 1249, 5, 329, 0, 0, 1249, 1251, 3, 482, 241, 0, 1250, 1245, 1, 0, 0, 0, 1250, 1248, 1, 0, 0, 0, 1251, 1345, 1, 0, 0, 0, 1252, 1253, 5, 308, 0, 0, 1253, 1254, 5, 329, 0, 0, 1254, 1258, 5, 122, 0, 0, 1255, 1256, 3, 68, 34, 0, 1256, 1257, 3, 476, 238, 0, 1257, 1259, 1, 0, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 5, 184, 0, 0, 1261, 1263, 3, 194, 97, 0, 1262, 1264, 3, 642, 321, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1345, 1, 0, 0, 0, 1265, 1266, 5, 308, 0, 0, 1266, 1267, 5, 332, 0, 0, 1267, 1271, 3, 482, 241, 0, 1268, 1269, 5, 399, 0, 0, 1269, 1270, 5, 426, 0, 0, 1270, 1272, 5, 400, 0, 0, 1271, 1268, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1345, 1, 0, 0, 0, 1273, 1274, 5, 308, 0, 0, 1274, 1286, 5, 191, 0, 0, 1275, 1276, 3, 70, 35, 0, 1276, 1278, 3, 476, 238, 0, 1277, 1279, 5, 122, 0, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1287, 1, 0, 0, 0, 1280, 1282, 3, 60, 30, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1285, 5, 122, 0, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1275, 1, 0, 0, 0, 1286, 1281, 1, 0, 0, 0, 1287, 1345, 1, 0, 0, 0, 1288, 1289, 5, 308, 0, 0, 1289, 1316, 5, 50, 0, 0, 1290, 1291, 5, 51, 0, 0, 1291, 1292, 5, 405, 0, 0, 1292, 1317, 5, 431, 0, 0, 1293, 1294, 3, 70, 35, 0, 1294, 1295, 3, 476, 238, 0, 1295, 1300, 1, 0, 0, 0, 1296, 1298, 3, 60, 30, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1293, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1303, 3, 410, 205, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 412, 206, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 414, 207, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 556, 278, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 390, 195, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1290, 1, 0, 0, 0, 1316, 1299, 1, 0, 0, 0, 1317, 1345, 1, 0, 0, 0, 1318, 1319, 5, 308, 0, 0, 1319, 1345, 5, 346, 0, 0, 1320, 1321, 5, 308, 0, 0, 1321, 1322, 5, 54, 0, 0, 1322, 1345, 5, 426, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1328, 5, 280, 0, 0, 1325, 1326, 5, 243, 0, 0, 1326, 1329, 3, 654, 327, 0, 1327, 1329, 5, 244, 0, 0, 1328, 1325, 1, 0, 0, 0, 1328, 1327, 1, 0, 0, 0, 1329, 1345, 1, 0, 0, 0, 1330, 1331, 5, 308, 0, 0, 1331, 1345, 5, 70, 0, 0, 1332, 1334, 5, 308, 0, 0, 1333, 1335, 5, 138, 0, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 7, 8, 0, 0, 1337, 1338, 5, 224, 0, 0, 1338, 1342, 3, 482, 241, 0, 1339, 1340, 3, 68, 34, 0, 1340, 1341, 3, 476, 238, 0, 1341, 1343, 1, 0, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1161, 1, 0, 0, 0, 1344, 1167, 1, 0, 0, 0, 1344, 1180, 1, 0, 0, 0, 1344, 1192, 1, 0, 0, 0, 1344, 1205, 1, 0, 0, 0, 1344, 1222, 1, 0, 0, 0, 1344, 1228, 1, 0, 0, 0, 1344, 1243, 1, 0, 0, 0, 1344, 1252, 1, 0, 0, 0, 1344, 1265, 1, 0, 0, 0, 1344, 1273, 1, 0, 0, 0, 1344, 1288, 1, 0, 0, 0, 1344, 1318, 1, 0, 0, 0, 1344, 1320, 1, 0, 0, 0, 1344, 1323, 1, 0, 0, 0, 1344, 1330, 1, 0, 0, 0, 1344, 1332, 1, 0, 0, 0, 1345, 73, 1, 0, 0, 0, 1346, 1347, 5, 384, 0, 0, 1347, 1348, 3, 654, 327, 0, 1348, 1349, 5, 405, 0, 0, 1349, 1350, 5, 426, 0, 0, 1350, 1355, 1, 0, 0, 0, 1351, 1352, 5, 184, 0, 0, 1352, 1355, 3, 194, 97, 0, 1353, 1355, 3, 194, 97, 0, 1354, 1346, 1, 0, 0, 0, 1354, 1351, 1, 0, 0, 0, 1354, 1353, 1, 0, 0, 0, 1355, 75, 1, 0, 0, 0, 1356, 1357, 5, 190, 0, 0, 1357, 1358, 5, 329, 0, 0, 1358, 1359, 3, 640, 320, 0, 1359, 1360, 3, 80, 40, 0, 1360, 77, 1, 0, 0, 0, 1361, 1362, 5, 190, 0, 0, 1362, 1363, 3, 70, 35, 0, 1363, 1364, 3, 476, 238, 0, 1364, 1365, 3, 80, 40, 0, 1365, 79, 1, 0, 0, 0, 1366, 1367, 7, 9, 0, 0, 1367, 81, 1, 0, 0, 0, 1368, 1369, 5, 361, 0, 0, 1369, 1370, 5, 329, 0, 0, 1370, 1371, 3, 640, 320, 0, 1371, 83, 1, 0, 0, 0, 1372, 1373, 5, 361, 0, 0, 1373, 1374, 3, 70, 35, 0, 1374, 1375, 3, 476, 238, 0, 1375, 85, 1, 0, 0, 0, 1376, 1377, 5, 58, 0, 0, 1377, 1378, 5, 287, 0, 0, 1378, 1379, 3, 654, 327, 0, 1379, 87, 1, 0, 0, 0, 1380, 1381, 5, 101, 0, 0, 1381, 1382, 5, 287, 0, 0, 1382, 1383, 3, 654, 327, 0, 1383, 89, 1, 0, 0, 0, 1384, 1385, 5, 143, 0, 0, 1385, 1387, 3, 118, 59, 0, 1386, 1388, 3, 112, 56, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 5, 341, 0, 0, 1390, 1392, 3, 124, 62, 0, 1391, 1393, 3, 130, 65, 0, 1392, 1391, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 91, 1, 0, 0, 0, 1394, 1396, 5, 283, 0, 0, 1395, 1397, 3, 132, 66, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 3, 118, 59, 0, 1399, 1401, 3, 112, 56, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 5, 139, 0, 0, 1403, 1404, 3, 124, 62, 0, 1404, 93, 1, 0, 0, 0, 1405, 1407, 5, 143, 0, 0, 1406, 1408, 5, 287, 0, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1414, 3, 654, 327, 0, 1410, 1411, 5, 397, 0, 0, 1411, 1413, 3, 654, 327, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1416, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1417, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1418, 5, 341, 0, 0, 1418, 1420, 3, 124, 62, 0, 1419, 1421, 3, 136, 68, 0, 1420, 1419, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 95, 1, 0, 0, 0, 1422, 1424, 5, 283, 0, 0, 1423, 1425, 3, 134, 67, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 5, 287, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1434, 3, 654, 327, 0, 1430, 1431, 5, 397, 0, 0, 1431, 1433, 3, 654, 327, 0, 1432, 1430, 1, 0, 0, 0, 1433, 1436, 1, 0, 0, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1437, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1437, 1438, 5, 139, 0, 0, 1438, 1439, 3, 124, 62, 0, 1439, 97, 1, 0, 0, 0, 1440, 1441, 5, 308, 0, 0, 1441, 1442, 5, 287, 0, 0, 1442, 1443, 5, 143, 0, 0, 1443, 1444, 3, 126, 63, 0, 1444, 99, 1, 0, 0, 0, 1445, 1446, 5, 308, 0, 0, 1446, 1447, 5, 288, 0, 0, 1447, 101, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 62, 0, 0, 1450, 1451, 5, 288, 0, 0, 1451, 103, 1, 0, 0, 0, 1452, 1453, 5, 304, 0, 0, 1453, 1457, 5, 287, 0, 0, 1454, 1458, 5, 7, 0, 0, 1455, 1458, 5, 213, 0, 0, 1456, 1458, 3, 654, 327, 0, 1457, 1454, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1456, 1, 0, 0, 0, 1458, 105, 1, 0, 0, 0, 1459, 1460, 5, 308, 0, 0, 1460, 1462, 5, 143, 0, 0, 1461, 1463, 3, 126, 63, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1465, 5, 224, 0, 0, 1465, 1467, 3, 110, 55, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 107, 1, 0, 0, 0, 1468, 1469, 5, 308, 0, 0, 1469, 1470, 5, 252, 0, 0, 1470, 1471, 3, 654, 327, 0, 1471, 109, 1, 0, 0, 0, 1472, 1475, 5, 7, 0, 0, 1473, 1475, 3, 116, 58, 0, 1474, 1472, 1, 0, 0, 0, 1474, 1473, 1, 0, 0, 0, 1475, 111, 1, 0, 0, 0, 1476, 1477, 5, 224, 0, 0, 1477, 1478, 3, 114, 57, 0, 1478, 113, 1, 0, 0, 0, 1479, 1480, 3, 70, 35, 0, 1480, 1481, 3, 476, 238, 0, 1481, 1491, 1, 0, 0, 0, 1482, 1484, 5, 329, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1491, 3, 640, 320, 0, 1486, 1487, 5, 366, 0, 0, 1487, 1491, 5, 426, 0, 0, 1488, 1489, 5, 303, 0, 0, 1489, 1491, 3, 654, 327, 0, 1490, 1479, 1, 0, 0, 0, 1490, 1483, 1, 0, 0, 0, 1490, 1486, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1491, 115, 1, 0, 0, 0, 1492, 1493, 3, 70, 35, 0, 1493, 1494, 3, 476, 238, 0, 1494, 1513, 1, 0, 0, 0, 1495, 1497, 5, 329, 0, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1503, 3, 482, 241, 0, 1499, 1500, 5, 399, 0, 0, 1500, 1501, 3, 254, 127, 0, 1501, 1502, 5, 400, 0, 0, 1502, 1504, 1, 0, 0, 0, 1503, 1499, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1506, 1, 0, 0, 0, 1505, 1507, 3, 642, 321, 0, 1506, 1505, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1513, 1, 0, 0, 0, 1508, 1509, 5, 366, 0, 0, 1509, 1513, 5, 426, 0, 0, 1510, 1511, 5, 303, 0, 0, 1511, 1513, 3, 654, 327, 0, 1512, 1492, 1, 0, 0, 0, 1512, 1496, 1, 0, 0, 0, 1512, 1508, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 117, 1, 0, 0, 0, 1514, 1519, 3, 120, 60, 0, 1515, 1516, 5, 397, 0, 0, 1516, 1518, 3, 120, 60, 0, 1517, 1515, 1, 0, 0, 0, 1518, 1521, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 119, 1, 0, 0, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1527, 3, 122, 61, 0, 1523, 1524, 5, 399, 0, 0, 1524, 1525, 3, 254, 127, 0, 1525, 1526, 5, 400, 0, 0, 1526, 1528, 1, 0, 0, 0, 1527, 1523, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 121, 1, 0, 0, 0, 1529, 1530, 7, 10, 0, 0, 1530, 123, 1, 0, 0, 0, 1531, 1536, 3, 126, 63, 0, 1532, 1533, 5, 397, 0, 0, 1533, 1535, 3, 126, 63, 0, 1534, 1532, 1, 0, 0, 0, 1535, 1538, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 125, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1540, 5, 369, 0, 0, 1540, 1546, 3, 658, 329, 0, 1541, 1542, 5, 144, 0, 0, 1542, 1546, 3, 658, 329, 0, 1543, 1544, 5, 287, 0, 0, 1544, 1546, 3, 654, 327, 0, 1545, 1539, 1, 0, 0, 0, 1545, 1541, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 127, 1, 0, 0, 0, 1547, 1548, 5, 369, 0, 0, 1548, 1553, 3, 658, 329, 0, 1549, 1550, 5, 287, 0, 0, 1550, 1553, 3, 654, 327, 0, 1551, 1553, 3, 654, 327, 0, 1552, 1547, 1, 0, 0, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1551, 1, 0, 0, 0, 1553, 129, 1, 0, 0, 0, 1554, 1555, 5, 387, 0, 0, 1555, 1556, 5, 143, 0, 0, 1556, 1557, 5, 227, 0, 0, 1557, 131, 1, 0, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 1561, 5, 134, 0, 0, 1561, 133, 1, 0, 0, 0, 1562, 1563, 5, 5, 0, 0, 1563, 1564, 5, 227, 0, 0, 1564, 1565, 5, 134, 0, 0, 1565, 135, 1, 0, 0, 0, 1566, 1567, 5, 387, 0, 0, 1567, 1568, 5, 5, 0, 0, 1568, 1569, 5, 227, 0, 0, 1569, 137, 1, 0, 0, 0, 1570, 1572, 5, 212, 0, 0, 1571, 1573, 5, 276, 0, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1575, 5, 329, 0, 0, 1575, 1581, 3, 482, 241, 0, 1576, 1577, 7, 11, 0, 0, 1577, 1579, 5, 239, 0, 0, 1578, 1580, 3, 646, 323, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1582, 1, 0, 0, 0, 1581, 1576, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 139, 1, 0, 0, 0, 1583, 1588, 3, 142, 71, 0, 1584, 1585, 5, 397, 0, 0, 1585, 1587, 3, 142, 71, 0, 1586, 1584, 1, 0, 0, 0, 1587, 1590, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 141, 1, 0, 0, 0, 1590, 1588, 1, 0, 0, 0, 1591, 1592, 3, 144, 72, 0, 1592, 1593, 5, 426, 0, 0, 1593, 143, 1, 0, 0, 0, 1594, 1595, 7, 12, 0, 0, 1595, 145, 1, 0, 0, 0, 1596, 1598, 5, 58, 0, 0, 1597, 1599, 5, 333, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 5, 141, 0, 0, 1601, 1602, 3, 570, 285, 0, 1602, 1603, 5, 17, 0, 0, 1603, 1606, 5, 426, 0, 0, 1604, 1605, 5, 370, 0, 0, 1605, 1607, 3, 140, 70, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 147, 1, 0, 0, 0, 1608, 1610, 5, 101, 0, 0, 1609, 1611, 5, 333, 0, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 5, 141, 0, 0, 1613, 1615, 3, 30, 15, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 3, 572, 286, 0, 1617, 149, 1, 0, 0, 0, 1618, 1619, 5, 271, 0, 0, 1619, 1620, 7, 13, 0, 0, 1620, 151, 1, 0, 0, 0, 1621, 1622, 5, 58, 0, 0, 1622, 1623, 5, 333, 0, 0, 1623, 1624, 5, 194, 0, 0, 1624, 1625, 5, 432, 0, 0, 1625, 1627, 5, 399, 0, 0, 1626, 1628, 3, 248, 124, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 400, 0, 0, 1630, 1631, 3, 596, 298, 0, 1631, 153, 1, 0, 0, 0, 1632, 1633, 5, 101, 0, 0, 1633, 1634, 5, 333, 0, 0, 1634, 1636, 5, 194, 0, 0, 1635, 1637, 3, 30, 15, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 5, 432, 0, 0, 1639, 155, 1, 0, 0, 0, 1640, 1641, 5, 58, 0, 0, 1641, 1642, 5, 155, 0, 0, 1642, 1643, 3, 654, 327, 0, 1643, 1644, 5, 224, 0, 0, 1644, 1645, 5, 329, 0, 0, 1645, 1646, 3, 482, 241, 0, 1646, 1647, 3, 268, 134, 0, 1647, 1648, 5, 17, 0, 0, 1648, 1652, 5, 426, 0, 0, 1649, 1650, 5, 387, 0, 0, 1650, 1651, 5, 84, 0, 0, 1651, 1653, 5, 265, 0, 0, 1652, 1649, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1656, 1, 0, 0, 0, 1654, 1655, 5, 150, 0, 0, 1655, 1657, 3, 226, 113, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1661, 1, 0, 0, 0, 1658, 1659, 5, 154, 0, 0, 1659, 1660, 5, 329, 0, 0, 1660, 1662, 3, 482, 241, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1666, 1, 0, 0, 0, 1663, 1664, 5, 238, 0, 0, 1664, 1665, 5, 32, 0, 0, 1665, 1667, 3, 268, 134, 0, 1666, 1663, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1672, 1, 0, 0, 0, 1668, 1670, 3, 222, 111, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 3, 246, 123, 0, 1672, 1669, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1676, 3, 428, 214, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 224, 112, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 196, 98, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 157, 1, 0, 0, 0, 1683, 1684, 5, 101, 0, 0, 1684, 1686, 5, 155, 0, 0, 1685, 1687, 3, 30, 15, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 3, 654, 327, 0, 1689, 1690, 5, 224, 0, 0, 1690, 1691, 3, 482, 241, 0, 1691, 159, 1, 0, 0, 0, 1692, 1695, 5, 58, 0, 0, 1693, 1694, 5, 228, 0, 0, 1694, 1696, 5, 278, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 5, 378, 0, 0, 1698, 1700, 3, 32, 16, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1706, 3, 488, 244, 0, 1702, 1703, 5, 399, 0, 0, 1703, 1704, 3, 308, 154, 0, 1704, 1705, 5, 400, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1702, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 196, 98, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 162, 81, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 224, 112, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 5, 17, 0, 0, 1718, 1719, 3, 384, 192, 0, 1719, 161, 1, 0, 0, 0, 1720, 1721, 5, 238, 0, 0, 1721, 1727, 5, 224, 0, 0, 1722, 1723, 5, 399, 0, 0, 1723, 1728, 3, 254, 127, 0, 1724, 1725, 5, 316, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1728, 3, 204, 102, 0, 1727, 1722, 1, 0, 0, 0, 1727, 1724, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 5, 400, 0, 0, 1730, 163, 1, 0, 0, 0, 1731, 1734, 3, 166, 83, 0, 1732, 1734, 3, 168, 84, 0, 1733, 1731, 1, 0, 0, 0, 1733, 1732, 1, 0, 0, 0, 1734, 165, 1, 0, 0, 0, 1735, 1736, 5, 42, 0, 0, 1736, 1737, 5, 224, 0, 0, 1737, 1738, 5, 399, 0, 0, 1738, 1739, 3, 254, 127, 0, 1739, 1740, 5, 400, 0, 0, 1740, 167, 1, 0, 0, 0, 1741, 1742, 3, 170, 85, 0, 1742, 1743, 3, 172, 86, 0, 1743, 169, 1, 0, 0, 0, 1744, 1745, 5, 98, 0, 0, 1745, 1746, 5, 224, 0, 0, 1746, 1747, 5, 399, 0, 0, 1747, 1748, 3, 254, 127, 0, 1748, 1749, 5, 400, 0, 0, 1749, 171, 1, 0, 0, 0, 1750, 1751, 5, 315, 0, 0, 1751, 1752, 5, 224, 0, 0, 1752, 1753, 5, 399, 0, 0, 1753, 1754, 3, 254, 127, 0, 1754, 1755, 5, 400, 0, 0, 1755, 173, 1, 0, 0, 0, 1756, 1757, 5, 101, 0, 0, 1757, 1759, 5, 378, 0, 0, 1758, 1760, 3, 30, 15, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 3, 486, 243, 0, 1762, 175, 1, 0, 0, 0, 1763, 1764, 5, 58, 0, 0, 1764, 1765, 5, 202, 0, 0, 1765, 1767, 5, 378, 0, 0, 1766, 1768, 3, 32, 16, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 3, 488, 244, 0, 1770, 1772, 3, 38, 19, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1775, 3, 196, 98, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 162, 81, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 164, 82, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 222, 111, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 246, 123, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 428, 214, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 224, 112, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 5, 17, 0, 0, 1795, 1796, 3, 384, 192, 0, 1796, 177, 1, 0, 0, 0, 1797, 1798, 5, 101, 0, 0, 1798, 1799, 5, 202, 0, 0, 1799, 1801, 5, 378, 0, 0, 1800, 1802, 3, 30, 15, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 3, 486, 243, 0, 1804, 179, 1, 0, 0, 0, 1805, 1806, 5, 58, 0, 0, 1806, 1807, 5, 293, 0, 0, 1807, 1808, 5, 258, 0, 0, 1808, 1809, 3, 654, 327, 0, 1809, 1811, 3, 188, 94, 0, 1810, 1812, 3, 190, 95, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1814, 1, 0, 0, 0, 1813, 1815, 3, 272, 136, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 3, 192, 96, 0, 1817, 181, 1, 0, 0, 0, 1818, 1819, 5, 101, 0, 0, 1819, 1820, 5, 293, 0, 0, 1820, 1821, 5, 258, 0, 0, 1821, 1822, 3, 654, 327, 0, 1822, 183, 1, 0, 0, 0, 1823, 1824, 5, 9, 0, 0, 1824, 1825, 5, 293, 0, 0, 1825, 1826, 5, 258, 0, 0, 1826, 1827, 3, 654, 327, 0, 1827, 1828, 3, 186, 93, 0, 1828, 185, 1, 0, 0, 0, 1829, 1835, 3, 188, 94, 0, 1830, 1835, 3, 190, 95, 0, 1831, 1835, 3, 272, 136, 0, 1832, 1835, 3, 192, 96, 0, 1833, 1835, 5, 115, 0, 0, 1834, 1829, 1, 0, 0, 0, 1834, 1830, 1, 0, 0, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1833, 1, 0, 0, 0, 1835, 187, 1, 0, 0, 0, 1836, 1837, 5, 59, 0, 0, 1837, 1852, 5, 426, 0, 0, 1838, 1840, 5, 111, 0, 0, 1839, 1841, 5, 431, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1849, 3, 594, 297, 0, 1843, 1847, 5, 20, 0, 0, 1844, 1845, 5, 223, 0, 0, 1845, 1847, 5, 32, 0, 0, 1846, 1843, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1850, 5, 426, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1852, 1, 0, 0, 0, 1851, 1836, 1, 0, 0, 0, 1851, 1838, 1, 0, 0, 0, 1852, 189, 1, 0, 0, 0, 1853, 1854, 5, 116, 0, 0, 1854, 1855, 5, 17, 0, 0, 1855, 1856, 5, 426, 0, 0, 1856, 191, 1, 0, 0, 0, 1857, 1859, 5, 85, 0, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 5, 17, 0, 0, 1861, 1862, 3, 2, 1, 0, 1862, 193, 1, 0, 0, 0, 1863, 1866, 3, 654, 327, 0, 1864, 1866, 5, 426, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1866, 195, 1, 0, 0, 0, 1867, 1868, 5, 47, 0, 0, 1868, 1869, 5, 426, 0, 0, 1869, 197, 1, 0, 0, 0, 1870, 1871, 5, 183, 0, 0, 1871, 1872, 5, 431, 0, 0, 1872, 199, 1, 0, 0, 0, 1873, 1874, 5, 238, 0, 0, 1874, 1883, 5, 32, 0, 0, 1875, 1878, 5, 399, 0, 0, 1876, 1879, 3, 202, 101, 0, 1877, 1879, 3, 254, 127, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1877, 1, 0, 0, 0, 1879, 1884, 1, 0, 0, 0, 1880, 1881, 5, 316, 0, 0, 1881, 1882, 5, 399, 0, 0, 1882, 1884, 3, 204, 102, 0, 1883, 1875, 1, 0, 0, 0, 1883, 1880, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 5, 400, 0, 0, 1886, 201, 1, 0, 0, 0, 1887, 1892, 3, 320, 160, 0, 1888, 1889, 5, 397, 0, 0, 1889, 1891, 3, 320, 160, 0, 1890, 1888, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 203, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1900, 3, 206, 103, 0, 1896, 1897, 5, 397, 0, 0, 1897, 1899, 3, 206, 103, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1902, 1, 0, 0, 0, 1900, 1898, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 205, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1903, 1922, 3, 256, 128, 0, 1904, 1909, 3, 686, 343, 0, 1905, 1909, 3, 688, 344, 0, 1906, 1909, 3, 692, 346, 0, 1907, 1909, 3, 694, 347, 0, 1908, 1904, 1, 0, 0, 0, 1908, 1905, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 5, 399, 0, 0, 1911, 1912, 3, 256, 128, 0, 1912, 1913, 5, 400, 0, 0, 1913, 1922, 1, 0, 0, 0, 1914, 1915, 7, 14, 0, 0, 1915, 1916, 5, 399, 0, 0, 1916, 1917, 5, 431, 0, 0, 1917, 1918, 5, 397, 0, 0, 1918, 1919, 3, 256, 128, 0, 1919, 1920, 5, 400, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1903, 1, 0, 0, 0, 1921, 1908, 1, 0, 0, 0, 1921, 1914, 1, 0, 0, 0, 1922, 207, 1, 0, 0, 0, 1923, 1924, 5, 42, 0, 0, 1924, 1925, 5, 32, 0, 0, 1925, 1926, 5, 399, 0, 0, 1926, 1927, 3, 254, 127, 0, 1927, 1934, 5, 400, 0, 0, 1928, 1929, 5, 315, 0, 0, 1929, 1930, 5, 32, 0, 0, 1930, 1931, 5, 399, 0, 0, 1931, 1932, 3, 266, 133, 0, 1932, 1933, 5, 400, 0, 0, 1933, 1935, 1, 0, 0, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 166, 0, 0, 1937, 1938, 5, 431, 0, 0, 1938, 1939, 5, 31, 0, 0, 1939, 209, 1, 0, 0, 0, 1940, 1941, 5, 310, 0, 0, 1941, 1942, 5, 32, 0, 0, 1942, 1943, 5, 399, 0, 0, 1943, 1944, 3, 254, 127, 0, 1944, 1945, 5, 400, 0, 0, 1945, 1946, 5, 224, 0, 0, 1946, 1947, 5, 399, 0, 0, 1947, 1948, 3, 294, 147, 0, 1948, 1950, 5, 400, 0, 0, 1949, 1951, 3, 40, 20, 0, 1950, 1949, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 211, 1, 0, 0, 0, 1952, 1955, 3, 218, 109, 0, 1953, 1955, 3, 220, 110, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 213, 1, 0, 0, 0, 1956, 1957, 5, 266, 0, 0, 1957, 1958, 5, 426, 0, 0, 1958, 215, 1, 0, 0, 0, 1959, 1960, 5, 267, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 217, 1, 0, 0, 0, 1962, 1963, 5, 291, 0, 0, 1963, 1964, 5, 137, 0, 0, 1964, 1965, 5, 301, 0, 0, 1965, 1969, 5, 426, 0, 0, 1966, 1967, 5, 387, 0, 0, 1967, 1968, 5, 302, 0, 0, 1968, 1970, 3, 226, 113, 0, 1969, 1966, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 219, 1, 0, 0, 0, 1971, 1972, 5, 291, 0, 0, 1972, 1973, 5, 137, 0, 0, 1973, 1975, 5, 87, 0, 0, 1974, 1976, 3, 236, 118, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1979, 3, 238, 119, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 240, 120, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 242, 121, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 244, 122, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 221, 1, 0, 0, 0, 1989, 1992, 3, 220, 110, 0, 1990, 1992, 3, 218, 109, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1990, 1, 0, 0, 0, 1992, 223, 1, 0, 0, 0, 1993, 1994, 5, 332, 0, 0, 1994, 1995, 3, 226, 113, 0, 1995, 225, 1, 0, 0, 0, 1996, 1997, 5, 399, 0, 0, 1997, 1998, 3, 228, 114, 0, 1998, 1999, 5, 400, 0, 0, 1999, 227, 1, 0, 0, 0, 2000, 2010, 3, 232, 116, 0, 2001, 2006, 5, 426, 0, 0, 2002, 2003, 5, 397, 0, 0, 2003, 2005, 5, 426, 0, 0, 2004, 2002, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2010, 1, 0, 0, 0, 2008, 2006, 1, 0, 0, 0, 2009, 2000, 1, 0, 0, 0, 2009, 2001, 1, 0, 0, 0, 2010, 229, 1, 0, 0, 0, 2011, 2012, 5, 399, 0, 0, 2012, 2013, 3, 232, 116, 0, 2013, 2014, 5, 400, 0, 0, 2014, 231, 1, 0, 0, 0, 2015, 2020, 3, 234, 117, 0, 2016, 2017, 5, 397, 0, 0, 2017, 2019, 3, 234, 117, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 233, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2023, 2024, 5, 426, 0, 0, 2024, 2025, 5, 405, 0, 0, 2025, 2026, 5, 426, 0, 0, 2026, 235, 1, 0, 0, 0, 2027, 2028, 5, 127, 0, 0, 2028, 2029, 5, 334, 0, 0, 2029, 2030, 5, 32, 0, 0, 2030, 2034, 5, 426, 0, 0, 2031, 2032, 5, 110, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2035, 5, 426, 0, 0, 2034, 2031, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 237, 1, 0, 0, 0, 2036, 2037, 5, 44, 0, 0, 2037, 2038, 5, 169, 0, 0, 2038, 2039, 5, 334, 0, 0, 2039, 2040, 5, 32, 0, 0, 2040, 2041, 5, 426, 0, 0, 2041, 239, 1, 0, 0, 0, 2042, 2043, 5, 198, 0, 0, 2043, 2044, 5, 174, 0, 0, 2044, 2045, 5, 334, 0, 0, 2045, 2046, 5, 32, 0, 0, 2046, 2047, 5, 426, 0, 0, 2047, 241, 1, 0, 0, 0, 2048, 2049, 5, 186, 0, 0, 2049, 2050, 5, 334, 0, 0, 2050, 2051, 5, 32, 0, 0, 2051, 2052, 5, 426, 0, 0, 2052, 243, 1, 0, 0, 0, 2053, 2054, 5, 219, 0, 0, 2054, 2055, 5, 85, 0, 0, 2055, 2056, 5, 17, 0, 0, 2056, 2057, 5, 426, 0, 0, 2057, 245, 1, 0, 0, 0, 2058, 2059, 5, 321, 0, 0, 2059, 2060, 5, 17, 0, 0, 2060, 2061, 5, 160, 0, 0, 2061, 2062, 5, 426, 0, 0, 2062, 2063, 5, 233, 0, 0, 2063, 2068, 5, 426, 0, 0, 2064, 2065, 5, 159, 0, 0, 2065, 2066, 5, 426, 0, 0, 2066, 2067, 5, 232, 0, 0, 2067, 2069, 5, 426, 0, 0, 2068, 2064, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2100, 1, 0, 0, 0, 2070, 2071, 5, 321, 0, 0, 2071, 2072, 5, 32, 0, 0, 2072, 2076, 5, 426, 0, 0, 2073, 2074, 5, 387, 0, 0, 2074, 2075, 5, 302, 0, 0, 2075, 2077, 3, 226, 113, 0, 2076, 2073, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2081, 1, 0, 0, 0, 2078, 2079, 5, 321, 0, 0, 2079, 2080, 5, 17, 0, 0, 2080, 2082, 3, 654, 327, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2100, 1, 0, 0, 0, 2083, 2084, 5, 321, 0, 0, 2084, 2085, 5, 32, 0, 0, 2085, 2089, 3, 654, 327, 0, 2086, 2087, 5, 387, 0, 0, 2087, 2088, 5, 302, 0, 0, 2088, 2090, 3, 226, 113, 0, 2089, 2086, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2094, 1, 0, 0, 0, 2091, 2092, 5, 321, 0, 0, 2092, 2093, 5, 17, 0, 0, 2093, 2095, 3, 654, 327, 0, 2094, 2091, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2100, 1, 0, 0, 0, 2096, 2097, 5, 321, 0, 0, 2097, 2098, 5, 17, 0, 0, 2098, 2100, 3, 654, 327, 0, 2099, 2058, 1, 0, 0, 0, 2099, 2070, 1, 0, 0, 0, 2099, 2083, 1, 0, 0, 0, 2099, 2096, 1, 0, 0, 0, 2100, 247, 1, 0, 0, 0, 2101, 2106, 3, 314, 157, 0, 2102, 2103, 5, 397, 0, 0, 2103, 2105, 3, 314, 157, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 249, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2114, 3, 316, 158, 0, 2110, 2111, 5, 397, 0, 0, 2111, 2113, 3, 316, 158, 0, 2112, 2110, 1, 0, 0, 0, 2113, 2116, 1, 0, 0, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 251, 1, 0, 0, 0, 2116, 2114, 1, 0, 0, 0, 2117, 2122, 3, 344, 172, 0, 2118, 2119, 5, 397, 0, 0, 2119, 2121, 3, 344, 172, 0, 2120, 2118, 1, 0, 0, 0, 2121, 2124, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 253, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2125, 2130, 3, 256, 128, 0, 2126, 2127, 5, 397, 0, 0, 2127, 2129, 3, 256, 128, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2132, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 255, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2137, 3, 706, 353, 0, 2134, 2135, 4, 128, 0, 0, 2135, 2137, 3, 702, 351, 0, 2136, 2133, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 257, 1, 0, 0, 0, 2138, 2139, 3, 704, 352, 0, 2139, 259, 1, 0, 0, 0, 2140, 2144, 3, 706, 353, 0, 2141, 2142, 4, 130, 1, 0, 2142, 2144, 3, 702, 351, 0, 2143, 2140, 1, 0, 0, 0, 2143, 2141, 1, 0, 0, 0, 2144, 261, 1, 0, 0, 0, 2145, 2146, 3, 654, 327, 0, 2146, 263, 1, 0, 0, 0, 2147, 2157, 3, 256, 128, 0, 2148, 2153, 5, 395, 0, 0, 2149, 2154, 5, 104, 0, 0, 2150, 2154, 5, 175, 0, 0, 2151, 2154, 5, 375, 0, 0, 2152, 2154, 3, 654, 327, 0, 2153, 2149, 1, 0, 0, 0, 2153, 2150, 1, 0, 0, 0, 2153, 2151, 1, 0, 0, 0, 2153, 2152, 1, 0, 0, 0, 2154, 2156, 1, 0, 0, 0, 2155, 2148, 1, 0, 0, 0, 2156, 2159, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 265, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2165, 3, 306, 153, 0, 2161, 2162, 5, 397, 0, 0, 2162, 2164, 3, 306, 153, 0, 2163, 2161, 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 267, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2169, 5, 399, 0, 0, 2169, 2170, 3, 254, 127, 0, 2170, 2171, 5, 400, 0, 0, 2171, 269, 1, 0, 0, 0, 2172, 2174, 3, 272, 136, 0, 2173, 2175, 3, 274, 137, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2178, 3, 276, 138, 0, 2177, 2172, 1, 0, 0, 0, 2177, 2176, 1, 0, 0, 0, 2178, 271, 1, 0, 0, 0, 2179, 2182, 3, 682, 341, 0, 2180, 2182, 3, 684, 342, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2180, 1, 0, 0, 0, 2182, 273, 1, 0, 0, 0, 2183, 2184, 7, 15, 0, 0, 2184, 275, 1, 0, 0, 0, 2185, 2189, 5, 109, 0, 0, 2186, 2187, 5, 216, 0, 0, 2187, 2189, 5, 109, 0, 0, 2188, 2185, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 277, 1, 0, 0, 0, 2190, 2191, 7, 16, 0, 0, 2191, 279, 1, 0, 0, 0, 2192, 2193, 5, 55, 0, 0, 2193, 2195, 3, 654, 327, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2198, 3, 284, 142, 0, 2197, 2199, 3, 340, 170, 0, 2198, 2197, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 281, 1, 0, 0, 0, 2200, 2201, 5, 55, 0, 0, 2201, 2202, 3, 654, 327, 0, 2202, 2204, 3, 284, 142, 0, 2203, 2205, 3, 342, 171, 0, 2204, 2203, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 283, 1, 0, 0, 0, 2206, 2209, 3, 286, 143, 0, 2207, 2209, 3, 288, 144, 0, 2208, 2206, 1, 0, 0, 0, 2208, 2207, 1, 0, 0, 0, 2209, 285, 1, 0, 0, 0, 2210, 2211, 3, 338, 169, 0, 2211, 2212, 3, 268, 134, 0, 2212, 287, 1, 0, 0, 0, 2213, 2214, 5, 40, 0, 0, 2214, 2215, 5, 399, 0, 0, 2215, 2216, 3, 596, 298, 0, 2216, 2217, 5, 400, 0, 0, 2217, 289, 1, 0, 0, 0, 2218, 2219, 5, 55, 0, 0, 2219, 2221, 3, 654, 327, 0, 2220, 2218, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 5, 136, 0, 0, 2223, 2224, 5, 173, 0, 0, 2224, 2225, 3, 268, 134, 0, 2225, 2226, 5, 269, 0, 0, 2226, 2227, 3, 482, 241, 0, 2227, 2229, 3, 268, 134, 0, 2228, 2230, 3, 340, 170, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 291, 1, 0, 0, 0, 2231, 2232, 5, 55, 0, 0, 2232, 2233, 3, 654, 327, 0, 2233, 2234, 5, 136, 0, 0, 2234, 2235, 5, 173, 0, 0, 2235, 2236, 3, 268, 134, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2238, 3, 482, 241, 0, 2238, 2240, 3, 268, 134, 0, 2239, 2241, 3, 342, 171, 0, 2240, 2239, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 293, 1, 0, 0, 0, 2242, 2245, 3, 300, 150, 0, 2243, 2245, 3, 296, 148, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2243, 1, 0, 0, 0, 2245, 295, 1, 0, 0, 0, 2246, 2251, 3, 298, 149, 0, 2247, 2248, 5, 397, 0, 0, 2248, 2250, 3, 298, 149, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2253, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 297, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2255, 5, 399, 0, 0, 2255, 2256, 3, 300, 150, 0, 2256, 2257, 5, 400, 0, 0, 2257, 299, 1, 0, 0, 0, 2258, 2263, 3, 588, 294, 0, 2259, 2260, 5, 397, 0, 0, 2260, 2262, 3, 588, 294, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 301, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 7, 17, 0, 0, 2267, 303, 1, 0, 0, 0, 2268, 2269, 5, 220, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 305, 1, 0, 0, 0, 2271, 2273, 3, 256, 128, 0, 2272, 2274, 3, 302, 151, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2277, 3, 304, 152, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 307, 1, 0, 0, 0, 2278, 2283, 3, 310, 155, 0, 2279, 2280, 5, 397, 0, 0, 2280, 2282, 3, 310, 155, 0, 2281, 2279, 1, 0, 0, 0, 2282, 2285, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 309, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2289, 3, 262, 131, 0, 2287, 2288, 5, 47, 0, 0, 2288, 2290, 5, 426, 0, 0, 2289, 2287, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 311, 1, 0, 0, 0, 2291, 2294, 3, 256, 128, 0, 2292, 2294, 3, 596, 298, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2292, 1, 0, 0, 0, 2294, 2296, 1, 0, 0, 0, 2295, 2297, 3, 302, 151, 0, 2296, 2295, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 304, 152, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 313, 1, 0, 0, 0, 2301, 2302, 3, 262, 131, 0, 2302, 2305, 3, 346, 173, 0, 2303, 2304, 5, 47, 0, 0, 2304, 2306, 5, 426, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 315, 1, 0, 0, 0, 2307, 2310, 3, 318, 159, 0, 2308, 2310, 3, 320, 160, 0, 2309, 2307, 1, 0, 0, 0, 2309, 2308, 1, 0, 0, 0, 2310, 317, 1, 0, 0, 0, 2311, 2314, 3, 290, 145, 0, 2312, 2314, 3, 280, 140, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2312, 1, 0, 0, 0, 2314, 319, 1, 0, 0, 0, 2315, 2316, 3, 262, 131, 0, 2316, 2318, 3, 346, 173, 0, 2317, 2319, 3, 322, 161, 0, 2318, 2317, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2321, 5, 47, 0, 0, 2321, 2323, 5, 426, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 321, 1, 0, 0, 0, 2324, 2327, 3, 324, 162, 0, 2325, 2327, 3, 326, 163, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2325, 1, 0, 0, 0, 2327, 323, 1, 0, 0, 0, 2328, 2329, 5, 55, 0, 0, 2329, 2331, 3, 654, 327, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 5, 269, 0, 0, 2333, 2334, 3, 482, 241, 0, 2334, 2335, 5, 399, 0, 0, 2335, 2336, 3, 256, 128, 0, 2336, 2338, 5, 400, 0, 0, 2337, 2339, 3, 340, 170, 0, 2338, 2337, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 325, 1, 0, 0, 0, 2340, 2341, 5, 55, 0, 0, 2341, 2343, 3, 654, 327, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 3, 334, 167, 0, 2345, 2347, 3, 340, 170, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 327, 1, 0, 0, 0, 2348, 2351, 3, 330, 165, 0, 2349, 2351, 3, 332, 166, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2349, 1, 0, 0, 0, 2351, 329, 1, 0, 0, 0, 2352, 2353, 5, 55, 0, 0, 2353, 2355, 3, 654, 327, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2357, 5, 269, 0, 0, 2357, 2358, 3, 482, 241, 0, 2358, 2359, 5, 399, 0, 0, 2359, 2360, 3, 256, 128, 0, 2360, 2362, 5, 400, 0, 0, 2361, 2363, 3, 342, 171, 0, 2362, 2361, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 331, 1, 0, 0, 0, 2364, 2365, 5, 55, 0, 0, 2365, 2367, 3, 654, 327, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 3, 334, 167, 0, 2369, 2371, 3, 342, 171, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 333, 1, 0, 0, 0, 2372, 2373, 5, 216, 0, 0, 2373, 2379, 5, 219, 0, 0, 2374, 2375, 5, 83, 0, 0, 2375, 2379, 3, 336, 168, 0, 2376, 2379, 3, 288, 144, 0, 2377, 2379, 3, 338, 169, 0, 2378, 2372, 1, 0, 0, 0, 2378, 2374, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2378, 2377, 1, 0, 0, 0, 2379, 335, 1, 0, 0, 0, 2380, 2384, 3, 588, 294, 0, 2381, 2384, 3, 566, 283, 0, 2382, 2384, 3, 576, 288, 0, 2383, 2380, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2382, 1, 0, 0, 0, 2384, 337, 1, 0, 0, 0, 2385, 2386, 5, 251, 0, 0, 2386, 2389, 5, 173, 0, 0, 2387, 2389, 5, 358, 0, 0, 2388, 2385, 1, 0, 0, 0, 2388, 2387, 1, 0, 0, 0, 2389, 339, 1, 0, 0, 0, 2390, 2392, 3, 270, 135, 0, 2391, 2393, 3, 278, 139, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 341, 1, 0, 0, 0, 2394, 2396, 3, 270, 135, 0, 2395, 2397, 3, 278, 139, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 343, 1, 0, 0, 0, 2398, 2399, 3, 262, 131, 0, 2399, 2400, 5, 396, 0, 0, 2400, 2403, 3, 346, 173, 0, 2401, 2402, 5, 47, 0, 0, 2402, 2404, 5, 426, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 345, 1, 0, 0, 0, 2405, 2406, 3, 350, 175, 0, 2406, 347, 1, 0, 0, 0, 2407, 2412, 3, 346, 173, 0, 2408, 2409, 5, 397, 0, 0, 2409, 2411, 3, 346, 173, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2414, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 349, 1, 0, 0, 0, 2414, 2412, 1, 0, 0, 0, 2415, 2421, 3, 352, 176, 0, 2416, 2421, 3, 354, 177, 0, 2417, 2421, 3, 356, 178, 0, 2418, 2421, 3, 358, 179, 0, 2419, 2421, 3, 360, 180, 0, 2420, 2415, 1, 0, 0, 0, 2420, 2416, 1, 0, 0, 0, 2420, 2417, 1, 0, 0, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2419, 1, 0, 0, 0, 2421, 351, 1, 0, 0, 0, 2422, 2460, 5, 340, 0, 0, 2423, 2460, 5, 311, 0, 0, 2424, 2460, 5, 162, 0, 0, 2425, 2460, 5, 163, 0, 0, 2426, 2460, 5, 26, 0, 0, 2427, 2460, 5, 28, 0, 0, 2428, 2460, 5, 131, 0, 0, 2429, 2460, 5, 264, 0, 0, 2430, 2432, 5, 100, 0, 0, 2431, 2433, 5, 248, 0, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2460, 1, 0, 0, 0, 2434, 2460, 5, 71, 0, 0, 2435, 2460, 5, 72, 0, 0, 2436, 2460, 5, 337, 0, 0, 2437, 2460, 5, 338, 0, 0, 2438, 2439, 5, 337, 0, 0, 2439, 2440, 5, 387, 0, 0, 2440, 2441, 5, 188, 0, 0, 2441, 2442, 5, 336, 0, 0, 2442, 2460, 5, 394, 0, 0, 2443, 2460, 5, 323, 0, 0, 2444, 2460, 5, 27, 0, 0, 2445, 2453, 3, 700, 350, 0, 2446, 2447, 5, 399, 0, 0, 2447, 2450, 5, 431, 0, 0, 2448, 2449, 5, 397, 0, 0, 2449, 2451, 5, 431, 0, 0, 2450, 2448, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2454, 5, 400, 0, 0, 2453, 2446, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2460, 1, 0, 0, 0, 2455, 2456, 7, 19, 0, 0, 2456, 2457, 5, 399, 0, 0, 2457, 2458, 5, 431, 0, 0, 2458, 2460, 5, 400, 0, 0, 2459, 2422, 1, 0, 0, 0, 2459, 2423, 1, 0, 0, 0, 2459, 2424, 1, 0, 0, 0, 2459, 2425, 1, 0, 0, 0, 2459, 2426, 1, 0, 0, 0, 2459, 2427, 1, 0, 0, 0, 2459, 2428, 1, 0, 0, 0, 2459, 2429, 1, 0, 0, 0, 2459, 2430, 1, 0, 0, 0, 2459, 2434, 1, 0, 0, 0, 2459, 2435, 1, 0, 0, 0, 2459, 2436, 1, 0, 0, 0, 2459, 2437, 1, 0, 0, 0, 2459, 2438, 1, 0, 0, 0, 2459, 2443, 1, 0, 0, 0, 2459, 2444, 1, 0, 0, 0, 2459, 2445, 1, 0, 0, 0, 2459, 2455, 1, 0, 0, 0, 2460, 353, 1, 0, 0, 0, 2461, 2462, 5, 16, 0, 0, 2462, 2463, 5, 409, 0, 0, 2463, 2464, 3, 350, 175, 0, 2464, 2465, 5, 411, 0, 0, 2465, 355, 1, 0, 0, 0, 2466, 2467, 5, 324, 0, 0, 2467, 2468, 5, 409, 0, 0, 2468, 2469, 3, 252, 126, 0, 2469, 2470, 5, 411, 0, 0, 2470, 357, 1, 0, 0, 0, 2471, 2472, 5, 198, 0, 0, 2472, 2473, 5, 409, 0, 0, 2473, 2474, 3, 352, 176, 0, 2474, 2475, 5, 397, 0, 0, 2475, 2476, 3, 350, 175, 0, 2476, 2477, 5, 411, 0, 0, 2477, 359, 1, 0, 0, 0, 2478, 2479, 5, 357, 0, 0, 2479, 2480, 5, 409, 0, 0, 2480, 2481, 3, 348, 174, 0, 2481, 2482, 5, 411, 0, 0, 2482, 361, 1, 0, 0, 0, 2483, 2485, 7, 20, 0, 0, 2484, 2486, 7, 21, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 363, 1, 0, 0, 0, 2487, 2489, 3, 368, 184, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 3, 366, 183, 0, 2491, 365, 1, 0, 0, 0, 2492, 2495, 3, 372, 186, 0, 2493, 2495, 3, 376, 188, 0, 2494, 2492, 1, 0, 0, 0, 2494, 2493, 1, 0, 0, 0, 2495, 367, 1, 0, 0, 0, 2496, 2497, 5, 387, 0, 0, 2497, 2502, 3, 370, 185, 0, 2498, 2499, 5, 397, 0, 0, 2499, 2501, 3, 370, 185, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 369, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2510, 3, 654, 327, 0, 2506, 2507, 5, 399, 0, 0, 2507, 2508, 3, 254, 127, 0, 2508, 2509, 5, 400, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2506, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 5, 17, 0, 0, 2513, 2514, 5, 399, 0, 0, 2514, 2515, 3, 364, 182, 0, 2515, 2516, 5, 400, 0, 0, 2516, 371, 1, 0, 0, 0, 2517, 2523, 3, 374, 187, 0, 2518, 2519, 3, 362, 181, 0, 2519, 2520, 3, 374, 187, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2518, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 373, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2527, 3, 452, 226, 0, 2527, 2528, 3, 386, 193, 0, 2528, 2530, 3, 508, 254, 0, 2529, 2531, 3, 466, 233, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2534, 3, 500, 250, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 534, 267, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 542, 271, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 526, 263, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 544, 272, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 556, 278, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 560, 280, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 562, 281, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 564, 282, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 390, 195, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2598, 1, 0, 0, 0, 2562, 2563, 3, 452, 226, 0, 2563, 2565, 3, 508, 254, 0, 2564, 2566, 3, 466, 233, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2569, 3, 500, 250, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 534, 267, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 542, 271, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 526, 263, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 544, 272, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 556, 278, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 560, 280, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 562, 281, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 564, 282, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 390, 195, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2526, 1, 0, 0, 0, 2597, 2562, 1, 0, 0, 0, 2598, 375, 1, 0, 0, 0, 2599, 2600, 3, 386, 193, 0, 2600, 2601, 3, 380, 190, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2604, 3, 380, 190, 0, 2603, 2599, 1, 0, 0, 0, 2603, 2602, 1, 0, 0, 0, 2604, 377, 1, 0, 0, 0, 2605, 2607, 3, 508, 254, 0, 2606, 2608, 3, 452, 226, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2611, 3, 500, 250, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 534, 267, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 542, 271, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 526, 263, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 544, 272, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2630, 1, 0, 0, 0, 2624, 2625, 5, 399, 0, 0, 2625, 2626, 3, 380, 190, 0, 2626, 2627, 5, 400, 0, 0, 2627, 2630, 1, 0, 0, 0, 2628, 2630, 3, 502, 251, 0, 2629, 2605, 1, 0, 0, 0, 2629, 2624, 1, 0, 0, 0, 2629, 2628, 1, 0, 0, 0, 2630, 379, 1, 0, 0, 0, 2631, 2633, 3, 378, 189, 0, 2632, 2634, 3, 382, 191, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 556, 278, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 560, 280, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 562, 281, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 564, 282, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 390, 195, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 381, 1, 0, 0, 0, 2650, 2651, 3, 362, 181, 0, 2651, 2652, 3, 378, 189, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2650, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 383, 1, 0, 0, 0, 2657, 2659, 3, 368, 184, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 3, 380, 190, 0, 2661, 385, 1, 0, 0, 0, 2662, 2679, 5, 161, 0, 0, 2663, 2664, 5, 235, 0, 0, 2664, 2666, 3, 388, 194, 0, 2665, 2667, 3, 32, 16, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2680, 1, 0, 0, 0, 2668, 2670, 5, 166, 0, 0, 2669, 2671, 5, 329, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2677, 3, 640, 320, 0, 2673, 2674, 5, 399, 0, 0, 2674, 2675, 3, 254, 127, 0, 2675, 2676, 5, 400, 0, 0, 2676, 2678, 1, 0, 0, 0, 2677, 2673, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2680, 1, 0, 0, 0, 2679, 2663, 1, 0, 0, 0, 2679, 2668, 1, 0, 0, 0, 2680, 387, 1, 0, 0, 0, 2681, 2683, 5, 188, 0, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 93, 0, 0, 2685, 2687, 5, 426, 0, 0, 2686, 2688, 3, 222, 111, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 1, 0, 0, 0, 2689, 2691, 3, 246, 123, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2695, 1, 0, 0, 0, 2692, 2693, 5, 329, 0, 0, 2693, 2695, 3, 640, 320, 0, 2694, 2682, 1, 0, 0, 0, 2694, 2692, 1, 0, 0, 0, 2695, 389, 1, 0, 0, 0, 2696, 2705, 5, 185, 0, 0, 2697, 2698, 5, 431, 0, 0, 2698, 2700, 5, 397, 0, 0, 2699, 2697, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2706, 5, 431, 0, 0, 2702, 2703, 5, 431, 0, 0, 2703, 2704, 5, 223, 0, 0, 2704, 2706, 5, 431, 0, 0, 2705, 2699, 1, 0, 0, 0, 2705, 2702, 1, 0, 0, 0, 2706, 391, 1, 0, 0, 0, 2707, 2708, 3, 256, 128, 0, 2708, 2709, 5, 405, 0, 0, 2709, 2710, 3, 394, 197, 0, 2710, 393, 1, 0, 0, 0, 2711, 2714, 5, 83, 0, 0, 2712, 2714, 3, 606, 303, 0, 2713, 2711, 1, 0, 0, 0, 2713, 2712, 1, 0, 0, 0, 2714, 395, 1, 0, 0, 0, 2715, 2716, 5, 304, 0, 0, 2716, 2721, 3, 392, 196, 0, 2717, 2718, 5, 397, 0, 0, 2718, 2720, 3, 392, 196, 0, 2719, 2717, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 397, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2725, 5, 318, 0, 0, 2725, 2734, 5, 344, 0, 0, 2726, 2731, 3, 400, 200, 0, 2727, 2728, 5, 397, 0, 0, 2728, 2730, 3, 400, 200, 0, 2729, 2727, 1, 0, 0, 0, 2730, 2733, 1, 0, 0, 0, 2731, 2729, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2726, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2748, 1, 0, 0, 0, 2736, 2738, 5, 48, 0, 0, 2737, 2739, 5, 389, 0, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2748, 1, 0, 0, 0, 2740, 2742, 5, 289, 0, 0, 2741, 2743, 5, 389, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2748, 1, 0, 0, 0, 2744, 2745, 5, 304, 0, 0, 2745, 2746, 5, 22, 0, 0, 2746, 2748, 7, 22, 0, 0, 2747, 2724, 1, 0, 0, 0, 2747, 2736, 1, 0, 0, 0, 2747, 2740, 1, 0, 0, 0, 2747, 2744, 1, 0, 0, 0, 2748, 399, 1, 0, 0, 0, 2749, 2750, 5, 168, 0, 0, 2750, 2751, 5, 182, 0, 0, 2751, 2755, 5, 312, 0, 0, 2752, 2753, 5, 261, 0, 0, 2753, 2755, 7, 23, 0, 0, 2754, 2749, 1, 0, 0, 0, 2754, 2752, 1, 0, 0, 0, 2755, 401, 1, 0, 0, 0, 2756, 2759, 3, 406, 203, 0, 2757, 2759, 3, 408, 204, 0, 2758, 2756, 1, 0, 0, 0, 2758, 2757, 1, 0, 0, 0, 2759, 2762, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2764, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2765, 3, 404, 202, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 403, 1, 0, 0, 0, 2766, 2767, 5, 383, 0, 0, 2767, 2768, 5, 216, 0, 0, 2768, 2771, 5, 201, 0, 0, 2769, 2770, 5, 11, 0, 0, 2770, 2772, 3, 596, 298, 0, 2771, 2769, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 5, 335, 0, 0, 2774, 2776, 5, 161, 0, 0, 2775, 2777, 3, 268, 134, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 5, 374, 0, 0, 2779, 2780, 3, 552, 276, 0, 2780, 405, 1, 0, 0, 0, 2781, 2782, 5, 383, 0, 0, 2782, 2783, 5, 201, 0, 0, 2783, 2784, 5, 11, 0, 0, 2784, 2785, 3, 596, 298, 0, 2785, 2789, 5, 335, 0, 0, 2786, 2787, 5, 365, 0, 0, 2787, 2790, 3, 396, 198, 0, 2788, 2790, 5, 86, 0, 0, 2789, 2786, 1, 0, 0, 0, 2789, 2788, 1, 0, 0, 0, 2790, 407, 1, 0, 0, 0, 2791, 2792, 5, 383, 0, 0, 2792, 2793, 5, 201, 0, 0, 2793, 2797, 5, 335, 0, 0, 2794, 2795, 5, 365, 0, 0, 2795, 2798, 3, 396, 198, 0, 2796, 2798, 5, 86, 0, 0, 2797, 2794, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 409, 1, 0, 0, 0, 2799, 2800, 5, 246, 0, 0, 2800, 2801, 5, 426, 0, 0, 2801, 411, 1, 0, 0, 0, 2802, 2803, 5, 352, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 413, 1, 0, 0, 0, 2805, 2806, 5, 320, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 415, 1, 0, 0, 0, 2808, 2839, 5, 9, 0, 0, 2809, 2810, 5, 329, 0, 0, 2810, 2811, 3, 482, 241, 0, 2811, 2812, 3, 418, 209, 0, 2812, 2840, 1, 0, 0, 0, 2813, 2814, 5, 378, 0, 0, 2814, 2816, 3, 486, 243, 0, 2815, 2817, 5, 17, 0, 0, 2816, 2815, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 3, 422, 211, 0, 2819, 2840, 1, 0, 0, 0, 2820, 2821, 5, 202, 0, 0, 2821, 2822, 5, 378, 0, 0, 2822, 2826, 3, 486, 243, 0, 2823, 2827, 3, 36, 18, 0, 2824, 2827, 3, 38, 19, 0, 2825, 2827, 5, 265, 0, 0, 2826, 2823, 1, 0, 0, 0, 2826, 2824, 1, 0, 0, 0, 2826, 2825, 1, 0, 0, 0, 2827, 2840, 1, 0, 0, 0, 2828, 2829, 3, 70, 35, 0, 2829, 2830, 3, 424, 212, 0, 2830, 2840, 1, 0, 0, 0, 2831, 2832, 5, 69, 0, 0, 2832, 2840, 3, 426, 213, 0, 2833, 2834, 5, 155, 0, 0, 2834, 2835, 3, 654, 327, 0, 2835, 2836, 5, 224, 0, 0, 2836, 2837, 3, 640, 320, 0, 2837, 2838, 5, 265, 0, 0, 2838, 2840, 1, 0, 0, 0, 2839, 2809, 1, 0, 0, 0, 2839, 2813, 1, 0, 0, 0, 2839, 2820, 1, 0, 0, 0, 2839, 2828, 1, 0, 0, 0, 2839, 2831, 1, 0, 0, 0, 2839, 2833, 1, 0, 0, 0, 2840, 417, 1, 0, 0, 0, 2841, 2842, 5, 274, 0, 0, 2842, 2843, 5, 341, 0, 0, 2843, 2931, 3, 484, 242, 0, 2844, 2845, 5, 102, 0, 0, 2845, 2931, 5, 239, 0, 0, 2846, 2931, 3, 430, 215, 0, 2847, 2849, 5, 4, 0, 0, 2848, 2850, 3, 32, 16, 0, 2849, 2848, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2855, 1, 0, 0, 0, 2851, 2853, 3, 642, 321, 0, 2852, 2854, 3, 428, 214, 0, 2853, 2852, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2856, 1, 0, 0, 0, 2855, 2851, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2855, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 2931, 1, 0, 0, 0, 2859, 2863, 5, 342, 0, 0, 2860, 2862, 3, 642, 321, 0, 2861, 2860, 1, 0, 0, 0, 2862, 2865, 1, 0, 0, 0, 2863, 2861, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 2931, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2866, 2870, 5, 15, 0, 0, 2867, 2869, 3, 642, 321, 0, 2868, 2867, 1, 0, 0, 0, 2869, 2872, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 2931, 1, 0, 0, 0, 2872, 2870, 1, 0, 0, 0, 2873, 2877, 5, 353, 0, 0, 2874, 2876, 3, 642, 321, 0, 2875, 2874, 1, 0, 0, 0, 2876, 2879, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2931, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 2881, 5, 304, 0, 0, 2881, 2882, 5, 332, 0, 0, 2882, 2931, 3, 226, 113, 0, 2883, 2884, 5, 363, 0, 0, 2884, 2886, 5, 332, 0, 0, 2885, 2887, 3, 30, 15, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2931, 3, 226, 113, 0, 2889, 2931, 3, 210, 105, 0, 2890, 2893, 5, 216, 0, 0, 2891, 2894, 5, 310, 0, 0, 2892, 2894, 3, 40, 20, 0, 2893, 2891, 1, 0, 0, 0, 2893, 2892, 1, 0, 0, 0, 2894, 2931, 1, 0, 0, 0, 2895, 2896, 5, 113, 0, 0, 2896, 2897, 3, 642, 321, 0, 2897, 2898, 5, 387, 0, 0, 2898, 2899, 5, 329, 0, 0, 2899, 2900, 3, 482, 241, 0, 2900, 2931, 1, 0, 0, 0, 2901, 2902, 5, 237, 0, 0, 2902, 2903, 5, 45, 0, 0, 2903, 2904, 5, 399, 0, 0, 2904, 2905, 3, 314, 157, 0, 2905, 2906, 5, 400, 0, 0, 2906, 2931, 1, 0, 0, 0, 2907, 2908, 5, 101, 0, 0, 2908, 2909, 5, 55, 0, 0, 2909, 2931, 3, 654, 327, 0, 2910, 2913, 5, 4, 0, 0, 2911, 2914, 3, 292, 146, 0, 2912, 2914, 3, 282, 141, 0, 2913, 2911, 1, 0, 0, 0, 2913, 2912, 1, 0, 0, 0, 2914, 2931, 1, 0, 0, 0, 2915, 2917, 3, 642, 321, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2931, 3, 420, 210, 0, 2919, 2920, 5, 304, 0, 0, 2920, 2921, 5, 236, 0, 0, 2921, 2931, 3, 126, 63, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 237, 0, 0, 2924, 2925, 5, 316, 0, 0, 2925, 2926, 5, 399, 0, 0, 2926, 2927, 3, 204, 102, 0, 2927, 2928, 5, 400, 0, 0, 2928, 2931, 1, 0, 0, 0, 2929, 2931, 3, 434, 217, 0, 2930, 2841, 1, 0, 0, 0, 2930, 2844, 1, 0, 0, 0, 2930, 2846, 1, 0, 0, 0, 2930, 2847, 1, 0, 0, 0, 2930, 2859, 1, 0, 0, 0, 2930, 2866, 1, 0, 0, 0, 2930, 2873, 1, 0, 0, 0, 2930, 2880, 1, 0, 0, 0, 2930, 2883, 1, 0, 0, 0, 2930, 2889, 1, 0, 0, 0, 2930, 2890, 1, 0, 0, 0, 2930, 2895, 1, 0, 0, 0, 2930, 2901, 1, 0, 0, 0, 2930, 2907, 1, 0, 0, 0, 2930, 2910, 1, 0, 0, 0, 2930, 2916, 1, 0, 0, 0, 2930, 2919, 1, 0, 0, 0, 2930, 2922, 1, 0, 0, 0, 2930, 2929, 1, 0, 0, 0, 2931, 419, 1, 0, 0, 0, 2932, 2933, 5, 304, 0, 0, 2933, 2934, 5, 129, 0, 0, 2934, 3065, 3, 436, 218, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 189, 0, 0, 2937, 3065, 5, 426, 0, 0, 2938, 3065, 5, 53, 0, 0, 2939, 2949, 5, 304, 0, 0, 2940, 2941, 5, 301, 0, 0, 2941, 2945, 5, 426, 0, 0, 2942, 2943, 5, 387, 0, 0, 2943, 2944, 5, 302, 0, 0, 2944, 2946, 3, 226, 113, 0, 2945, 2942, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2950, 1, 0, 0, 0, 2947, 2948, 5, 302, 0, 0, 2948, 2950, 3, 226, 113, 0, 2949, 2940, 1, 0, 0, 0, 2949, 2947, 1, 0, 0, 0, 2950, 3065, 1, 0, 0, 0, 2951, 2952, 5, 363, 0, 0, 2952, 2953, 5, 302, 0, 0, 2953, 3065, 3, 226, 113, 0, 2954, 2955, 5, 274, 0, 0, 2955, 2956, 5, 341, 0, 0, 2956, 3065, 3, 642, 321, 0, 2957, 2958, 5, 166, 0, 0, 2958, 2959, 5, 431, 0, 0, 2959, 3065, 5, 31, 0, 0, 2960, 2961, 5, 304, 0, 0, 2961, 2962, 5, 310, 0, 0, 2962, 2963, 5, 189, 0, 0, 2963, 2964, 5, 399, 0, 0, 2964, 2969, 3, 432, 216, 0, 2965, 2966, 5, 397, 0, 0, 2966, 2968, 3, 432, 216, 0, 2967, 2965, 1, 0, 0, 0, 2968, 2971, 1, 0, 0, 0, 2969, 2967, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2972, 1, 0, 0, 0, 2971, 2969, 1, 0, 0, 0, 2972, 2973, 5, 400, 0, 0, 2973, 3065, 1, 0, 0, 0, 2974, 2975, 5, 216, 0, 0, 2975, 3065, 7, 24, 0, 0, 2976, 3065, 3, 208, 104, 0, 2977, 2978, 5, 49, 0, 0, 2978, 2981, 5, 426, 0, 0, 2979, 2980, 5, 11, 0, 0, 2980, 2982, 5, 380, 0, 0, 2981, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2987, 1, 0, 0, 0, 2983, 2984, 5, 42, 0, 0, 2984, 2985, 5, 166, 0, 0, 2985, 2986, 5, 431, 0, 0, 2986, 2988, 5, 31, 0, 0, 2987, 2983, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2991, 3, 556, 278, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 410, 205, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2999, 1, 0, 0, 0, 2995, 2996, 5, 387, 0, 0, 2996, 2997, 5, 235, 0, 0, 2997, 2998, 5, 332, 0, 0, 2998, 3000, 3, 226, 113, 0, 2999, 2995, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3065, 1, 0, 0, 0, 3001, 3002, 5, 365, 0, 0, 3002, 3003, 5, 319, 0, 0, 3003, 3005, 5, 134, 0, 0, 3004, 3006, 5, 45, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 3, 256, 128, 0, 3008, 3009, 5, 304, 0, 0, 3009, 3012, 3, 226, 113, 0, 3010, 3011, 5, 47, 0, 0, 3011, 3013, 5, 426, 0, 0, 3012, 3010, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3065, 1, 0, 0, 0, 3014, 3015, 5, 365, 0, 0, 3015, 3016, 5, 319, 0, 0, 3016, 3017, 5, 304, 0, 0, 3017, 3065, 3, 226, 113, 0, 3018, 3020, 5, 38, 0, 0, 3019, 3021, 5, 45, 0, 0, 3020, 3019, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 3, 256, 128, 0, 3023, 3024, 3, 262, 131, 0, 3024, 3026, 3, 346, 173, 0, 3025, 3027, 3, 328, 164, 0, 3026, 3025, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3030, 1, 0, 0, 0, 3028, 3029, 5, 47, 0, 0, 3029, 3031, 5, 426, 0, 0, 3030, 3028, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3035, 1, 0, 0, 0, 3032, 3036, 5, 130, 0, 0, 3033, 3034, 5, 6, 0, 0, 3034, 3036, 3, 654, 327, 0, 3035, 3032, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3039, 3, 34, 17, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3065, 1, 0, 0, 0, 3040, 3043, 5, 4, 0, 0, 3041, 3043, 5, 278, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3041, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3045, 5, 46, 0, 0, 3045, 3046, 5, 399, 0, 0, 3046, 3047, 3, 248, 124, 0, 3047, 3049, 5, 400, 0, 0, 3048, 3050, 3, 34, 17, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3065, 1, 0, 0, 0, 3051, 3052, 5, 365, 0, 0, 3052, 3054, 5, 46, 0, 0, 3053, 3055, 3, 34, 17, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3065, 1, 0, 0, 0, 3056, 3062, 3, 272, 136, 0, 3057, 3059, 5, 218, 0, 0, 3058, 3060, 5, 34, 0, 0, 3059, 3058, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3063, 1, 0, 0, 0, 3061, 3063, 5, 222, 0, 0, 3062, 3057, 1, 0, 0, 0, 3062, 3061, 1, 0, 0, 0, 3063, 3065, 1, 0, 0, 0, 3064, 2932, 1, 0, 0, 0, 3064, 2935, 1, 0, 0, 0, 3064, 2938, 1, 0, 0, 0, 3064, 2939, 1, 0, 0, 0, 3064, 2951, 1, 0, 0, 0, 3064, 2954, 1, 0, 0, 0, 3064, 2957, 1, 0, 0, 0, 3064, 2960, 1, 0, 0, 0, 3064, 2974, 1, 0, 0, 0, 3064, 2976, 1, 0, 0, 0, 3064, 2977, 1, 0, 0, 0, 3064, 3001, 1, 0, 0, 0, 3064, 3014, 1, 0, 0, 0, 3064, 3018, 1, 0, 0, 0, 3064, 3042, 1, 0, 0, 0, 3064, 3051, 1, 0, 0, 0, 3064, 3056, 1, 0, 0, 0, 3065, 421, 1, 0, 0, 0, 3066, 3067, 5, 304, 0, 0, 3067, 3068, 5, 332, 0, 0, 3068, 3093, 3, 226, 113, 0, 3069, 3070, 5, 363, 0, 0, 3070, 3072, 5, 332, 0, 0, 3071, 3073, 3, 30, 15, 0, 3072, 3071, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3093, 3, 226, 113, 0, 3075, 3076, 5, 274, 0, 0, 3076, 3077, 5, 341, 0, 0, 3077, 3093, 3, 484, 242, 0, 3078, 3080, 5, 4, 0, 0, 3079, 3081, 3, 32, 16, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3086, 1, 0, 0, 0, 3082, 3084, 3, 642, 321, 0, 3083, 3085, 3, 428, 214, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3087, 1, 0, 0, 0, 3086, 3082, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3093, 1, 0, 0, 0, 3090, 3093, 3, 430, 215, 0, 3091, 3093, 3, 384, 192, 0, 3092, 3066, 1, 0, 0, 0, 3092, 3069, 1, 0, 0, 0, 3092, 3075, 1, 0, 0, 0, 3092, 3078, 1, 0, 0, 0, 3092, 3090, 1, 0, 0, 0, 3092, 3091, 1, 0, 0, 0, 3093, 423, 1, 0, 0, 0, 3094, 3095, 3, 476, 238, 0, 3095, 3096, 5, 304, 0, 0, 3096, 3097, 5, 76, 0, 0, 3097, 3098, 3, 230, 115, 0, 3098, 3110, 1, 0, 0, 0, 3099, 3100, 3, 476, 238, 0, 3100, 3101, 5, 304, 0, 0, 3101, 3102, 5, 236, 0, 0, 3102, 3103, 3, 128, 64, 0, 3103, 3110, 1, 0, 0, 0, 3104, 3105, 3, 476, 238, 0, 3105, 3106, 5, 304, 0, 0, 3106, 3107, 7, 25, 0, 0, 3107, 3108, 5, 426, 0, 0, 3108, 3110, 1, 0, 0, 0, 3109, 3094, 1, 0, 0, 0, 3109, 3099, 1, 0, 0, 0, 3109, 3104, 1, 0, 0, 0, 3110, 425, 1, 0, 0, 0, 3111, 3112, 3, 476, 238, 0, 3112, 3113, 5, 304, 0, 0, 3113, 3114, 5, 77, 0, 0, 3114, 3115, 3, 230, 115, 0, 3115, 3127, 1, 0, 0, 0, 3116, 3117, 3, 476, 238, 0, 3117, 3118, 5, 304, 0, 0, 3118, 3119, 5, 236, 0, 0, 3119, 3120, 3, 128, 64, 0, 3120, 3127, 1, 0, 0, 0, 3121, 3122, 3, 476, 238, 0, 3122, 3123, 5, 304, 0, 0, 3123, 3124, 5, 367, 0, 0, 3124, 3125, 5, 426, 0, 0, 3125, 3127, 1, 0, 0, 0, 3126, 3111, 1, 0, 0, 0, 3126, 3116, 1, 0, 0, 0, 3126, 3121, 1, 0, 0, 0, 3127, 427, 1, 0, 0, 0, 3128, 3129, 5, 189, 0, 0, 3129, 3130, 5, 426, 0, 0, 3130, 429, 1, 0, 0, 0, 3131, 3133, 5, 101, 0, 0, 3132, 3134, 3, 30, 15, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 5, 237, 0, 0, 3136, 3142, 3, 646, 323, 0, 3137, 3138, 5, 397, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3141, 3, 646, 323, 0, 3140, 3137, 1, 0, 0, 0, 3141, 3144, 1, 0, 0, 0, 3142, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3147, 1, 0, 0, 0, 3144, 3142, 1, 0, 0, 0, 3145, 3146, 5, 152, 0, 0, 3146, 3148, 5, 254, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3151, 5, 255, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 3, 14, 7, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 431, 1, 0, 0, 0, 3155, 3158, 3, 588, 294, 0, 3156, 3158, 3, 298, 149, 0, 3157, 3155, 1, 0, 0, 0, 3157, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 5, 405, 0, 0, 3160, 3161, 5, 426, 0, 0, 3161, 433, 1, 0, 0, 0, 3162, 3172, 5, 115, 0, 0, 3163, 3164, 5, 289, 0, 0, 3164, 3165, 5, 399, 0, 0, 3165, 3173, 7, 26, 0, 0, 3166, 3167, 5, 118, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3173, 5, 426, 0, 0, 3169, 3170, 5, 306, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3173, 5, 431, 0, 0, 3172, 3163, 1, 0, 0, 0, 3172, 3166, 1, 0, 0, 0, 3172, 3169, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 5, 400, 0, 0, 3175, 435, 1, 0, 0, 0, 3176, 3177, 5, 160, 0, 0, 3177, 3178, 5, 426, 0, 0, 3178, 3179, 5, 233, 0, 0, 3179, 3180, 5, 426, 0, 0, 3180, 3181, 5, 301, 0, 0, 3181, 3186, 5, 426, 0, 0, 3182, 3183, 5, 159, 0, 0, 3183, 3184, 5, 426, 0, 0, 3184, 3185, 5, 232, 0, 0, 3185, 3187, 5, 426, 0, 0, 3186, 3182, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3190, 1, 0, 0, 0, 3188, 3190, 3, 654, 327, 0, 3189, 3176, 1, 0, 0, 0, 3189, 3188, 1, 0, 0, 0, 3190, 437, 1, 0, 0, 0, 3191, 3192, 5, 184, 0, 0, 3192, 3201, 5, 128, 0, 0, 3193, 3194, 5, 184, 0, 0, 3194, 3195, 5, 128, 0, 0, 3195, 3196, 3, 654, 327, 0, 3196, 3197, 5, 426, 0, 0, 3197, 3201, 1, 0, 0, 0, 3198, 3199, 5, 184, 0, 0, 3199, 3201, 3, 482, 241, 0, 3200, 3191, 1, 0, 0, 0, 3200, 3193, 1, 0, 0, 0, 3200, 3198, 1, 0, 0, 0, 3201, 439, 1, 0, 0, 0, 3202, 3204, 5, 58, 0, 0, 3203, 3205, 5, 333, 0, 0, 3204, 3203, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3208, 5, 345, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 123, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3214, 5, 329, 0, 0, 3213, 3215, 3, 32, 16, 0, 3214, 3213, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3273, 3, 484, 242, 0, 3217, 3219, 3, 438, 219, 0, 3218, 3220, 3, 200, 100, 0, 3219, 3218, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3223, 3, 222, 111, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 246, 123, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 428, 214, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 224, 112, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 198, 99, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3274, 1, 0, 0, 0, 3236, 3237, 5, 399, 0, 0, 3237, 3238, 3, 250, 125, 0, 3238, 3239, 5, 400, 0, 0, 3239, 3241, 1, 0, 0, 0, 3240, 3236, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3244, 3, 196, 98, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 200, 100, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 208, 104, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 210, 105, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 222, 111, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 246, 123, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 428, 214, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 224, 112, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 198, 99, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3270, 5, 17, 0, 0, 3270, 3272, 3, 384, 192, 0, 3271, 3269, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3217, 1, 0, 0, 0, 3273, 3240, 1, 0, 0, 0, 3274, 3338, 1, 0, 0, 0, 3275, 3276, 5, 58, 0, 0, 3276, 3277, 5, 195, 0, 0, 3277, 3279, 5, 329, 0, 0, 3278, 3280, 3, 32, 16, 0, 3279, 3278, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3335, 3, 484, 242, 0, 3282, 3284, 3, 438, 219, 0, 3283, 3285, 3, 222, 111, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3288, 3, 246, 123, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 428, 214, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 224, 112, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 198, 99, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3336, 1, 0, 0, 0, 3298, 3299, 5, 399, 0, 0, 3299, 3300, 3, 250, 125, 0, 3300, 3301, 5, 400, 0, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3298, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3306, 3, 196, 98, 0, 3305, 3304, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 200, 100, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 208, 104, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 210, 105, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 222, 111, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 246, 123, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 428, 214, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 224, 112, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 198, 99, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3333, 1, 0, 0, 0, 3331, 3332, 5, 17, 0, 0, 3332, 3334, 3, 384, 192, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3336, 1, 0, 0, 0, 3335, 3282, 1, 0, 0, 0, 3335, 3302, 1, 0, 0, 0, 3336, 3338, 1, 0, 0, 0, 3337, 3202, 1, 0, 0, 0, 3337, 3275, 1, 0, 0, 0, 3338, 441, 1, 0, 0, 0, 3339, 3340, 5, 58, 0, 0, 3340, 3342, 5, 69, 0, 0, 3341, 3343, 3, 32, 16, 0, 3342, 3341, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3347, 3, 654, 327, 0, 3345, 3346, 5, 352, 0, 0, 3346, 3348, 5, 426, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3350, 5, 367, 0, 0, 3350, 3352, 5, 426, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3355, 1, 0, 0, 0, 3353, 3354, 5, 47, 0, 0, 3354, 3356, 5, 426, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3360, 1, 0, 0, 0, 3357, 3358, 5, 387, 0, 0, 3358, 3359, 5, 77, 0, 0, 3359, 3361, 3, 230, 115, 0, 3360, 3357, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 443, 1, 0, 0, 0, 3362, 3363, 5, 101, 0, 0, 3363, 3365, 5, 69, 0, 0, 3364, 3366, 3, 30, 15, 0, 3365, 3364, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 3, 654, 327, 0, 3368, 445, 1, 0, 0, 0, 3369, 3370, 3, 654, 327, 0, 3370, 3371, 5, 395, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3369, 1, 0, 0, 0, 3373, 3376, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3374, 1, 0, 0, 0, 3377, 3378, 5, 415, 0, 0, 3378, 447, 1, 0, 0, 0, 3379, 3384, 3, 596, 298, 0, 3380, 3381, 5, 397, 0, 0, 3381, 3383, 3, 596, 298, 0, 3382, 3380, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 449, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3392, 3, 654, 327, 0, 3388, 3389, 5, 397, 0, 0, 3389, 3391, 3, 654, 327, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 451, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3395, 3396, 5, 139, 0, 0, 3396, 3397, 3, 454, 227, 0, 3397, 453, 1, 0, 0, 0, 3398, 3399, 5, 359, 0, 0, 3399, 3402, 3, 462, 231, 0, 3400, 3401, 5, 397, 0, 0, 3401, 3403, 3, 462, 231, 0, 3402, 3400, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3408, 1, 0, 0, 0, 3406, 3408, 3, 458, 229, 0, 3407, 3398, 1, 0, 0, 0, 3407, 3406, 1, 0, 0, 0, 3408, 455, 1, 0, 0, 0, 3409, 3413, 3, 472, 236, 0, 3410, 3412, 3, 466, 233, 0, 3411, 3410, 1, 0, 0, 0, 3412, 3415, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3442, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3416, 3420, 3, 506, 253, 0, 3417, 3419, 3, 466, 233, 0, 3418, 3417, 1, 0, 0, 0, 3419, 3422, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3442, 1, 0, 0, 0, 3422, 3420, 1, 0, 0, 0, 3423, 3427, 3, 490, 245, 0, 3424, 3426, 3, 466, 233, 0, 3425, 3424, 1, 0, 0, 0, 3426, 3429, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3442, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3430, 3434, 3, 496, 248, 0, 3431, 3433, 3, 466, 233, 0, 3432, 3431, 1, 0, 0, 0, 3433, 3436, 1, 0, 0, 0, 3434, 3432, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3442, 1, 0, 0, 0, 3436, 3434, 1, 0, 0, 0, 3437, 3438, 5, 399, 0, 0, 3438, 3439, 3, 458, 229, 0, 3439, 3440, 5, 400, 0, 0, 3440, 3442, 1, 0, 0, 0, 3441, 3409, 1, 0, 0, 0, 3441, 3416, 1, 0, 0, 0, 3441, 3423, 1, 0, 0, 0, 3441, 3430, 1, 0, 0, 0, 3441, 3437, 1, 0, 0, 0, 3442, 457, 1, 0, 0, 0, 3443, 3461, 3, 456, 228, 0, 3444, 3445, 3, 464, 232, 0, 3445, 3457, 3, 460, 230, 0, 3446, 3453, 5, 224, 0, 0, 3447, 3454, 3, 596, 298, 0, 3448, 3451, 3, 260, 130, 0, 3449, 3450, 5, 405, 0, 0, 3450, 3452, 3, 260, 130, 0, 3451, 3449, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3447, 1, 0, 0, 0, 3453, 3448, 1, 0, 0, 0, 3454, 3458, 1, 0, 0, 0, 3455, 3456, 5, 370, 0, 0, 3456, 3458, 3, 268, 134, 0, 3457, 3446, 1, 0, 0, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3460, 1, 0, 0, 0, 3459, 3444, 1, 0, 0, 0, 3460, 3463, 1, 0, 0, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 459, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3469, 3, 472, 236, 0, 3465, 3469, 3, 506, 253, 0, 3466, 3469, 3, 490, 245, 0, 3467, 3469, 3, 496, 248, 0, 3468, 3464, 1, 0, 0, 0, 3468, 3465, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3468, 3467, 1, 0, 0, 0, 3469, 3473, 1, 0, 0, 0, 3470, 3472, 3, 466, 233, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 461, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3478, 5, 250, 0, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3481, 3, 480, 240, 0, 3480, 3482, 3, 470, 235, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3487, 1, 0, 0, 0, 3483, 3485, 5, 17, 0, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 3, 654, 327, 0, 3487, 3484, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 5, 399, 0, 0, 3490, 3491, 3, 448, 224, 0, 3491, 3492, 5, 400, 0, 0, 3492, 463, 1, 0, 0, 0, 3493, 3508, 5, 397, 0, 0, 3494, 3505, 5, 157, 0, 0, 3495, 3505, 5, 60, 0, 0, 3496, 3498, 7, 27, 0, 0, 3497, 3499, 5, 231, 0, 0, 3498, 3497, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3505, 1, 0, 0, 0, 3500, 3502, 5, 180, 0, 0, 3501, 3503, 7, 28, 0, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3494, 1, 0, 0, 0, 3504, 3495, 1, 0, 0, 0, 3504, 3496, 1, 0, 0, 0, 3504, 3500, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 5, 171, 0, 0, 3507, 3493, 1, 0, 0, 0, 3507, 3504, 1, 0, 0, 0, 3508, 465, 1, 0, 0, 0, 3509, 3510, 5, 178, 0, 0, 3510, 3511, 5, 378, 0, 0, 3511, 3512, 5, 231, 0, 0, 3512, 3513, 3, 566, 283, 0, 3513, 3523, 3, 468, 234, 0, 3514, 3515, 5, 17, 0, 0, 3515, 3520, 3, 654, 327, 0, 3516, 3517, 5, 397, 0, 0, 3517, 3519, 3, 654, 327, 0, 3518, 3516, 1, 0, 0, 0, 3519, 3522, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3524, 1, 0, 0, 0, 3522, 3520, 1, 0, 0, 0, 3523, 3514, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3567, 1, 0, 0, 0, 3525, 3527, 5, 397, 0, 0, 3526, 3525, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3564, 5, 178, 0, 0, 3529, 3530, 5, 378, 0, 0, 3530, 3531, 3, 566, 283, 0, 3531, 3541, 3, 468, 234, 0, 3532, 3533, 5, 17, 0, 0, 3533, 3538, 3, 654, 327, 0, 3534, 3535, 5, 397, 0, 0, 3535, 3537, 3, 654, 327, 0, 3536, 3534, 1, 0, 0, 0, 3537, 3540, 1, 0, 0, 0, 3538, 3536, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3542, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3541, 3532, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3565, 1, 0, 0, 0, 3543, 3544, 5, 329, 0, 0, 3544, 3545, 5, 399, 0, 0, 3545, 3546, 3, 502, 251, 0, 3546, 3548, 5, 400, 0, 0, 3547, 3549, 5, 17, 0, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3562, 3, 468, 234, 0, 3551, 3552, 5, 399, 0, 0, 3552, 3557, 3, 654, 327, 0, 3553, 3554, 5, 397, 0, 0, 3554, 3556, 3, 654, 327, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3560, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3561, 5, 400, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3551, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, 1, 0, 0, 0, 3564, 3529, 1, 0, 0, 0, 3564, 3543, 1, 0, 0, 0, 3565, 3567, 1, 0, 0, 0, 3566, 3509, 1, 0, 0, 0, 3566, 3526, 1, 0, 0, 0, 3567, 467, 1, 0, 0, 0, 3568, 3569, 3, 654, 327, 0, 3569, 469, 1, 0, 0, 0, 3570, 3571, 5, 331, 0, 0, 3571, 3572, 5, 399, 0, 0, 3572, 3573, 5, 30, 0, 0, 3573, 3574, 5, 431, 0, 0, 3574, 3575, 5, 230, 0, 0, 3575, 3576, 5, 221, 0, 0, 3576, 3586, 5, 431, 0, 0, 3577, 3578, 5, 224, 0, 0, 3578, 3583, 3, 596, 298, 0, 3579, 3580, 5, 397, 0, 0, 3580, 3582, 3, 596, 298, 0, 3581, 3579, 1, 0, 0, 0, 3582, 3585, 1, 0, 0, 0, 3583, 3581, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3587, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3586, 3577, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3598, 5, 400, 0, 0, 3589, 3590, 5, 331, 0, 0, 3590, 3594, 5, 399, 0, 0, 3591, 3592, 5, 431, 0, 0, 3592, 3595, 7, 29, 0, 0, 3593, 3595, 5, 430, 0, 0, 3594, 3591, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3598, 5, 400, 0, 0, 3597, 3570, 1, 0, 0, 0, 3597, 3589, 1, 0, 0, 0, 3598, 471, 1, 0, 0, 0, 3599, 3601, 3, 480, 240, 0, 3600, 3602, 3, 226, 113, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3605, 3, 470, 235, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 474, 237, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3613, 1, 0, 0, 0, 3609, 3611, 5, 17, 0, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3614, 3, 654, 327, 0, 3613, 3610, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 473, 1, 0, 0, 0, 3615, 3625, 5, 134, 0, 0, 3616, 3617, 5, 327, 0, 0, 3617, 3618, 5, 17, 0, 0, 3618, 3619, 5, 221, 0, 0, 3619, 3626, 3, 596, 298, 0, 3620, 3621, 5, 134, 0, 0, 3621, 3622, 5, 328, 0, 0, 3622, 3623, 5, 17, 0, 0, 3623, 3624, 5, 221, 0, 0, 3624, 3626, 5, 431, 0, 0, 3625, 3616, 1, 0, 0, 0, 3625, 3620, 1, 0, 0, 0, 3626, 475, 1, 0, 0, 0, 3627, 3628, 3, 654, 327, 0, 3628, 477, 1, 0, 0, 0, 3629, 3630, 3, 654, 327, 0, 3630, 479, 1, 0, 0, 0, 3631, 3634, 3, 482, 241, 0, 3632, 3634, 3, 486, 243, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3632, 1, 0, 0, 0, 3634, 481, 1, 0, 0, 0, 3635, 3636, 3, 654, 327, 0, 3636, 3637, 5, 395, 0, 0, 3637, 3640, 3, 654, 327, 0, 3638, 3639, 5, 395, 0, 0, 3639, 3641, 3, 654, 327, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3644, 1, 0, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3635, 1, 0, 0, 0, 3643, 3642, 1, 0, 0, 0, 3644, 483, 1, 0, 0, 0, 3645, 3646, 3, 654, 327, 0, 3646, 3647, 5, 395, 0, 0, 3647, 3650, 3, 654, 327, 0, 3648, 3649, 5, 395, 0, 0, 3649, 3651, 3, 654, 327, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3654, 1, 0, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3645, 1, 0, 0, 0, 3653, 3652, 1, 0, 0, 0, 3654, 485, 1, 0, 0, 0, 3655, 3656, 3, 654, 327, 0, 3656, 3657, 5, 395, 0, 0, 3657, 3659, 1, 0, 0, 0, 3658, 3655, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3661, 3, 654, 327, 0, 3661, 487, 1, 0, 0, 0, 3662, 3663, 3, 654, 327, 0, 3663, 3664, 5, 395, 0, 0, 3664, 3666, 1, 0, 0, 0, 3665, 3662, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3668, 3, 654, 327, 0, 3668, 489, 1, 0, 0, 0, 3669, 3670, 5, 399, 0, 0, 3670, 3671, 3, 364, 182, 0, 3671, 3673, 5, 400, 0, 0, 3672, 3674, 5, 17, 0, 0, 3673, 3672, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 3, 654, 327, 0, 3676, 491, 1, 0, 0, 0, 3677, 3679, 3, 558, 279, 0, 3678, 3680, 3, 556, 278, 0, 3679, 3678, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3689, 1, 0, 0, 0, 3681, 3689, 3, 556, 278, 0, 3682, 3684, 3, 562, 281, 0, 3683, 3685, 3, 564, 282, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3689, 1, 0, 0, 0, 3686, 3689, 3, 564, 282, 0, 3687, 3689, 3, 560, 280, 0, 3688, 3677, 1, 0, 0, 0, 3688, 3681, 1, 0, 0, 0, 3688, 3682, 1, 0, 0, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3687, 1, 0, 0, 0, 3689, 493, 1, 0, 0, 0, 3690, 3694, 3, 490, 245, 0, 3691, 3694, 3, 472, 236, 0, 3692, 3694, 3, 496, 248, 0, 3693, 3690, 1, 0, 0, 0, 3693, 3691, 1, 0, 0, 0, 3693, 3692, 1, 0, 0, 0, 3694, 495, 1, 0, 0, 0, 3695, 3697, 3, 498, 249, 0, 3696, 3698, 3, 654, 327, 0, 3697, 3696, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 497, 1, 0, 0, 0, 3699, 3700, 3, 654, 327, 0, 3700, 3701, 5, 399, 0, 0, 3701, 3702, 5, 224, 0, 0, 3702, 3704, 3, 494, 247, 0, 3703, 3705, 3, 492, 246, 0, 3704, 3703, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3721, 1, 0, 0, 0, 3706, 3707, 5, 432, 0, 0, 3707, 3708, 5, 399, 0, 0, 3708, 3709, 3, 596, 298, 0, 3709, 3718, 5, 400, 0, 0, 3710, 3711, 5, 397, 0, 0, 3711, 3712, 5, 432, 0, 0, 3712, 3713, 5, 399, 0, 0, 3713, 3714, 3, 596, 298, 0, 3714, 3715, 5, 400, 0, 0, 3715, 3717, 1, 0, 0, 0, 3716, 3710, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3706, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 5, 400, 0, 0, 3724, 499, 1, 0, 0, 0, 3725, 3728, 5, 384, 0, 0, 3726, 3729, 3, 596, 298, 0, 3727, 3729, 3, 260, 130, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3727, 1, 0, 0, 0, 3729, 501, 1, 0, 0, 0, 3730, 3749, 5, 374, 0, 0, 3731, 3736, 3, 552, 276, 0, 3732, 3733, 5, 397, 0, 0, 3733, 3735, 3, 552, 276, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3738, 1, 0, 0, 0, 3736, 3734, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3750, 1, 0, 0, 0, 3738, 3736, 1, 0, 0, 0, 3739, 3740, 5, 399, 0, 0, 3740, 3741, 3, 548, 274, 0, 3741, 3746, 5, 400, 0, 0, 3742, 3743, 5, 397, 0, 0, 3743, 3745, 3, 552, 276, 0, 3744, 3742, 1, 0, 0, 0, 3745, 3748, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3750, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3731, 1, 0, 0, 0, 3749, 3739, 1, 0, 0, 0, 3750, 503, 1, 0, 0, 0, 3751, 3752, 5, 329, 0, 0, 3752, 3753, 5, 399, 0, 0, 3753, 3754, 3, 502, 251, 0, 3754, 3755, 5, 400, 0, 0, 3755, 505, 1, 0, 0, 0, 3756, 3758, 3, 504, 252, 0, 3757, 3759, 5, 17, 0, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3770, 3, 468, 234, 0, 3761, 3762, 5, 399, 0, 0, 3762, 3767, 3, 654, 327, 0, 3763, 3764, 5, 397, 0, 0, 3764, 3766, 3, 654, 327, 0, 3765, 3763, 1, 0, 0, 0, 3766, 3769, 1, 0, 0, 0, 3767, 3765, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3771, 1, 0, 0, 0, 3769, 3767, 1, 0, 0, 0, 3770, 3761, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 5, 400, 0, 0, 3773, 507, 1, 0, 0, 0, 3774, 3776, 5, 299, 0, 0, 3775, 3777, 5, 436, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3784, 1, 0, 0, 0, 3778, 3780, 7, 21, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3785, 3, 512, 256, 0, 3782, 3783, 5, 347, 0, 0, 3783, 3785, 3, 510, 255, 0, 3784, 3779, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3788, 1, 0, 0, 0, 3786, 3788, 3, 520, 260, 0, 3787, 3774, 1, 0, 0, 0, 3787, 3786, 1, 0, 0, 0, 3788, 509, 1, 0, 0, 0, 3789, 3790, 5, 399, 0, 0, 3790, 3791, 3, 524, 262, 0, 3791, 3792, 5, 400, 0, 0, 3792, 3793, 3, 212, 106, 0, 3793, 3794, 3, 216, 108, 0, 3794, 3795, 5, 370, 0, 0, 3795, 3808, 5, 426, 0, 0, 3796, 3806, 5, 17, 0, 0, 3797, 3800, 5, 399, 0, 0, 3798, 3801, 3, 450, 225, 0, 3799, 3801, 3, 248, 124, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 5, 400, 0, 0, 3803, 3807, 1, 0, 0, 0, 3804, 3807, 3, 450, 225, 0, 3805, 3807, 3, 248, 124, 0, 3806, 3797, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3806, 3805, 1, 0, 0, 0, 3807, 3809, 1, 0, 0, 0, 3808, 3796, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3811, 3, 212, 106, 0, 3811, 3812, 3, 214, 107, 0, 3812, 511, 1, 0, 0, 0, 3813, 3818, 3, 514, 257, 0, 3814, 3815, 5, 397, 0, 0, 3815, 3817, 3, 514, 257, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 513, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3847, 3, 446, 223, 0, 3822, 3825, 3, 516, 258, 0, 3823, 3825, 3, 518, 259, 0, 3824, 3822, 1, 0, 0, 0, 3824, 3823, 1, 0, 0, 0, 3825, 3842, 1, 0, 0, 0, 3826, 3828, 5, 17, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3843, 3, 654, 327, 0, 3830, 3831, 5, 17, 0, 0, 3831, 3832, 5, 399, 0, 0, 3832, 3837, 3, 654, 327, 0, 3833, 3834, 5, 397, 0, 0, 3834, 3836, 3, 654, 327, 0, 3835, 3833, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3840, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3841, 5, 400, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3827, 1, 0, 0, 0, 3842, 3830, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3847, 1, 0, 0, 0, 3844, 3845, 4, 257, 2, 0, 3845, 3847, 3, 702, 351, 0, 3846, 3821, 1, 0, 0, 0, 3846, 3824, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3847, 515, 1, 0, 0, 0, 3848, 3849, 3, 256, 128, 0, 3849, 517, 1, 0, 0, 0, 3850, 3851, 3, 596, 298, 0, 3851, 519, 1, 0, 0, 0, 3852, 3853, 7, 30, 0, 0, 3853, 3854, 3, 524, 262, 0, 3854, 3855, 3, 212, 106, 0, 3855, 3856, 3, 216, 108, 0, 3856, 3857, 5, 370, 0, 0, 3857, 3870, 5, 426, 0, 0, 3858, 3868, 5, 17, 0, 0, 3859, 3862, 5, 399, 0, 0, 3860, 3863, 3, 450, 225, 0, 3861, 3863, 3, 248, 124, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3861, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 3865, 5, 400, 0, 0, 3865, 3869, 1, 0, 0, 0, 3866, 3869, 3, 450, 225, 0, 3867, 3869, 3, 248, 124, 0, 3868, 3859, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 3871, 1, 0, 0, 0, 3870, 3858, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 3, 212, 106, 0, 3873, 3874, 3, 214, 107, 0, 3874, 521, 1, 0, 0, 0, 3875, 3878, 3, 446, 223, 0, 3876, 3878, 3, 596, 298, 0, 3877, 3875, 1, 0, 0, 0, 3877, 3876, 1, 0, 0, 0, 3878, 523, 1, 0, 0, 0, 3879, 3884, 3, 522, 261, 0, 3880, 3881, 5, 397, 0, 0, 3881, 3883, 3, 522, 261, 0, 3882, 3880, 1, 0, 0, 0, 3883, 3886, 1, 0, 0, 0, 3884, 3882, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 525, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3887, 3888, 5, 386, 0, 0, 3888, 3889, 3, 654, 327, 0, 3889, 3890, 5, 17, 0, 0, 3890, 3898, 3, 528, 264, 0, 3891, 3892, 5, 397, 0, 0, 3892, 3893, 3, 654, 327, 0, 3893, 3894, 5, 17, 0, 0, 3894, 3895, 3, 528, 264, 0, 3895, 3897, 1, 0, 0, 0, 3896, 3891, 1, 0, 0, 0, 3897, 3900, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 527, 1, 0, 0, 0, 3900, 3898, 1, 0, 0, 0, 3901, 3914, 3, 654, 327, 0, 3902, 3904, 5, 399, 0, 0, 3903, 3905, 3, 654, 327, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 3, 492, 246, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 530, 265, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3914, 5, 400, 0, 0, 3913, 3901, 1, 0, 0, 0, 3913, 3902, 1, 0, 0, 0, 3914, 529, 1, 0, 0, 0, 3915, 3929, 7, 31, 0, 0, 3916, 3917, 5, 354, 0, 0, 3917, 3923, 5, 247, 0, 0, 3918, 3919, 5, 62, 0, 0, 3919, 3923, 5, 291, 0, 0, 3920, 3921, 5, 431, 0, 0, 3921, 3923, 5, 247, 0, 0, 3922, 3916, 1, 0, 0, 0, 3922, 3918, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3923, 3930, 1, 0, 0, 0, 3924, 3925, 5, 25, 0, 0, 3925, 3926, 3, 532, 266, 0, 3926, 3927, 5, 11, 0, 0, 3927, 3928, 3, 532, 266, 0, 3928, 3930, 1, 0, 0, 0, 3929, 3922, 1, 0, 0, 0, 3929, 3924, 1, 0, 0, 0, 3930, 531, 1, 0, 0, 0, 3931, 3932, 7, 32, 0, 0, 3932, 3936, 7, 33, 0, 0, 3933, 3934, 5, 62, 0, 0, 3934, 3936, 5, 291, 0, 0, 3935, 3931, 1, 0, 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 533, 1, 0, 0, 0, 3937, 3938, 5, 144, 0, 0, 3938, 3944, 5, 32, 0, 0, 3939, 3945, 3, 256, 128, 0, 3940, 3945, 3, 536, 268, 0, 3941, 3945, 3, 538, 269, 0, 3942, 3943, 5, 399, 0, 0, 3943, 3945, 5, 400, 0, 0, 3944, 3939, 1, 0, 0, 0, 3944, 3940, 1, 0, 0, 0, 3944, 3941, 1, 0, 0, 0, 3944, 3942, 1, 0, 0, 0, 3945, 535, 1, 0, 0, 0, 3946, 3949, 5, 290, 0, 0, 3947, 3949, 5, 61, 0, 0, 3948, 3946, 1, 0, 0, 0, 3948, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3951, 5, 399, 0, 0, 3951, 3956, 3, 596, 298, 0, 3952, 3953, 5, 397, 0, 0, 3953, 3955, 3, 596, 298, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3958, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3959, 1, 0, 0, 0, 3958, 3956, 1, 0, 0, 0, 3959, 3960, 5, 400, 0, 0, 3960, 537, 1, 0, 0, 0, 3961, 3966, 3, 554, 277, 0, 3962, 3963, 5, 387, 0, 0, 3963, 3967, 5, 290, 0, 0, 3964, 3965, 5, 387, 0, 0, 3965, 3967, 5, 61, 0, 0, 3966, 3962, 1, 0, 0, 0, 3966, 3964, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3981, 1, 0, 0, 0, 3968, 3969, 5, 145, 0, 0, 3969, 3970, 5, 305, 0, 0, 3970, 3971, 5, 399, 0, 0, 3971, 3976, 3, 540, 270, 0, 3972, 3973, 5, 397, 0, 0, 3973, 3975, 3, 540, 270, 0, 3974, 3972, 1, 0, 0, 0, 3975, 3978, 1, 0, 0, 0, 3976, 3974, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3979, 1, 0, 0, 0, 3978, 3976, 1, 0, 0, 0, 3979, 3980, 5, 400, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3968, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 539, 1, 0, 0, 0, 3983, 3985, 5, 399, 0, 0, 3984, 3986, 3, 596, 298, 0, 3985, 3984, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3991, 1, 0, 0, 0, 3987, 3988, 5, 397, 0, 0, 3988, 3990, 3, 596, 298, 0, 3989, 3987, 1, 0, 0, 0, 3990, 3993, 1, 0, 0, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3994, 1, 0, 0, 0, 3993, 3991, 1, 0, 0, 0, 3994, 3997, 5, 400, 0, 0, 3995, 3997, 3, 596, 298, 0, 3996, 3983, 1, 0, 0, 0, 3996, 3995, 1, 0, 0, 0, 3997, 541, 1, 0, 0, 0, 3998, 4001, 5, 146, 0, 0, 3999, 4002, 3, 596, 298, 0, 4000, 4002, 3, 260, 130, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 543, 1, 0, 0, 0, 4003, 4004, 5, 256, 0, 0, 4004, 4005, 3, 596, 298, 0, 4005, 545, 1, 0, 0, 0, 4006, 4009, 5, 83, 0, 0, 4007, 4009, 3, 596, 298, 0, 4008, 4006, 1, 0, 0, 0, 4008, 4007, 1, 0, 0, 0, 4009, 547, 1, 0, 0, 0, 4010, 4012, 3, 596, 298, 0, 4011, 4013, 5, 17, 0, 0, 4012, 4011, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4015, 1, 0, 0, 0, 4014, 4016, 3, 654, 327, 0, 4015, 4014, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4027, 1, 0, 0, 0, 4017, 4018, 5, 397, 0, 0, 4018, 4020, 3, 596, 298, 0, 4019, 4021, 5, 17, 0, 0, 4020, 4019, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4023, 1, 0, 0, 0, 4022, 4024, 3, 654, 327, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4017, 1, 0, 0, 0, 4026, 4029, 1, 0, 0, 0, 4027, 4025, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 549, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4030, 4033, 3, 552, 276, 0, 4031, 4033, 3, 554, 277, 0, 4032, 4030, 1, 0, 0, 0, 4032, 4031, 1, 0, 0, 0, 4033, 551, 1, 0, 0, 0, 4034, 4035, 5, 399, 0, 0, 4035, 4036, 3, 554, 277, 0, 4036, 4037, 5, 400, 0, 0, 4037, 553, 1, 0, 0, 0, 4038, 4045, 3, 546, 273, 0, 4039, 4040, 5, 397, 0, 0, 4040, 4042, 3, 546, 273, 0, 4041, 4039, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4041, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 555, 1, 0, 0, 0, 4047, 4048, 5, 229, 0, 0, 4048, 4049, 5, 32, 0, 0, 4049, 4054, 3, 312, 156, 0, 4050, 4051, 5, 397, 0, 0, 4051, 4053, 3, 312, 156, 0, 4052, 4050, 1, 0, 0, 0, 4053, 4056, 1, 0, 0, 0, 4054, 4052, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 557, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4057, 4058, 5, 237, 0, 0, 4058, 4059, 5, 32, 0, 0, 4059, 4060, 3, 550, 275, 0, 4060, 559, 1, 0, 0, 0, 4061, 4062, 5, 41, 0, 0, 4062, 4063, 5, 32, 0, 0, 4063, 4064, 3, 550, 275, 0, 4064, 561, 1, 0, 0, 0, 4065, 4066, 5, 97, 0, 0, 4066, 4067, 5, 32, 0, 0, 4067, 4068, 3, 550, 275, 0, 4068, 563, 1, 0, 0, 0, 4069, 4070, 5, 314, 0, 0, 4070, 4090, 5, 32, 0, 0, 4071, 4072, 5, 399, 0, 0, 4072, 4077, 3, 312, 156, 0, 4073, 4074, 5, 397, 0, 0, 4074, 4076, 3, 312, 156, 0, 4075, 4073, 1, 0, 0, 0, 4076, 4079, 1, 0, 0, 0, 4077, 4075, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4080, 1, 0, 0, 0, 4079, 4077, 1, 0, 0, 0, 4080, 4081, 5, 400, 0, 0, 4081, 4091, 1, 0, 0, 0, 4082, 4087, 3, 312, 156, 0, 4083, 4084, 5, 397, 0, 0, 4084, 4086, 3, 312, 156, 0, 4085, 4083, 1, 0, 0, 0, 4086, 4089, 1, 0, 0, 0, 4087, 4085, 1, 0, 0, 0, 4087, 4088, 1, 0, 0, 0, 4088, 4091, 1, 0, 0, 0, 4089, 4087, 1, 0, 0, 0, 4090, 4071, 1, 0, 0, 0, 4090, 4082, 1, 0, 0, 0, 4091, 565, 1, 0, 0, 0, 4092, 4093, 5, 349, 0, 0, 4093, 4097, 5, 399, 0, 0, 4094, 4098, 5, 179, 0, 0, 4095, 4098, 5, 343, 0, 0, 4096, 4098, 5, 29, 0, 0, 4097, 4094, 1, 0, 0, 0, 4097, 4095, 1, 0, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4101, 3, 522, 261, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 5, 139, 0, 0, 4103, 4104, 3, 522, 261, 0, 4104, 4105, 5, 400, 0, 0, 4105, 4146, 1, 0, 0, 0, 4106, 4107, 3, 574, 287, 0, 4107, 4122, 5, 399, 0, 0, 4108, 4123, 5, 415, 0, 0, 4109, 4111, 7, 21, 0, 0, 4110, 4109, 1, 0, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4120, 1, 0, 0, 0, 4112, 4117, 3, 522, 261, 0, 4113, 4114, 5, 397, 0, 0, 4114, 4116, 3, 522, 261, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4119, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4117, 4118, 1, 0, 0, 0, 4118, 4121, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4120, 4112, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 1, 0, 0, 0, 4122, 4108, 1, 0, 0, 0, 4122, 4110, 1, 0, 0, 0, 4123, 4143, 1, 0, 0, 0, 4124, 4125, 5, 400, 0, 0, 4125, 4126, 5, 388, 0, 0, 4126, 4127, 5, 144, 0, 0, 4127, 4128, 5, 399, 0, 0, 4128, 4129, 3, 556, 278, 0, 4129, 4130, 5, 400, 0, 0, 4130, 4144, 1, 0, 0, 0, 4131, 4133, 5, 400, 0, 0, 4132, 4134, 3, 568, 284, 0, 4133, 4132, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 5, 234, 0, 0, 4136, 4144, 3, 528, 264, 0, 4137, 4138, 3, 568, 284, 0, 4138, 4139, 5, 400, 0, 0, 4139, 4140, 5, 234, 0, 0, 4140, 4141, 3, 528, 264, 0, 4141, 4144, 1, 0, 0, 0, 4142, 4144, 5, 400, 0, 0, 4143, 4124, 1, 0, 0, 0, 4143, 4131, 1, 0, 0, 0, 4143, 4137, 1, 0, 0, 0, 4143, 4142, 1, 0, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4092, 1, 0, 0, 0, 4145, 4106, 1, 0, 0, 0, 4146, 567, 1, 0, 0, 0, 4147, 4148, 7, 34, 0, 0, 4148, 4149, 5, 220, 0, 0, 4149, 569, 1, 0, 0, 0, 4150, 4151, 3, 656, 328, 0, 4151, 571, 1, 0, 0, 0, 4152, 4155, 3, 656, 328, 0, 4153, 4155, 5, 426, 0, 0, 4154, 4152, 1, 0, 0, 0, 4154, 4153, 1, 0, 0, 0, 4155, 573, 1, 0, 0, 0, 4156, 4160, 3, 656, 328, 0, 4157, 4160, 3, 662, 331, 0, 4158, 4160, 3, 652, 326, 0, 4159, 4156, 1, 0, 0, 0, 4159, 4157, 1, 0, 0, 0, 4159, 4158, 1, 0, 0, 0, 4160, 575, 1, 0, 0, 0, 4161, 4162, 5, 36, 0, 0, 4162, 4163, 5, 399, 0, 0, 4163, 4164, 3, 596, 298, 0, 4164, 4165, 5, 17, 0, 0, 4165, 4168, 3, 352, 176, 0, 4166, 4167, 5, 137, 0, 0, 4167, 4169, 5, 426, 0, 0, 4168, 4166, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4171, 5, 400, 0, 0, 4171, 577, 1, 0, 0, 0, 4172, 4173, 5, 35, 0, 0, 4173, 4179, 3, 596, 298, 0, 4174, 4175, 5, 383, 0, 0, 4175, 4176, 3, 596, 298, 0, 4176, 4177, 5, 335, 0, 0, 4177, 4178, 3, 596, 298, 0, 4178, 4180, 1, 0, 0, 0, 4179, 4174, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4179, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4185, 1, 0, 0, 0, 4183, 4184, 5, 105, 0, 0, 4184, 4186, 3, 596, 298, 0, 4185, 4183, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4188, 5, 108, 0, 0, 4188, 579, 1, 0, 0, 0, 4189, 4195, 5, 35, 0, 0, 4190, 4191, 5, 383, 0, 0, 4191, 4192, 3, 596, 298, 0, 4192, 4193, 5, 335, 0, 0, 4193, 4194, 3, 596, 298, 0, 4194, 4196, 1, 0, 0, 0, 4195, 4190, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4201, 1, 0, 0, 0, 4199, 4200, 5, 105, 0, 0, 4200, 4202, 3, 596, 298, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4204, 5, 108, 0, 0, 4204, 581, 1, 0, 0, 0, 4205, 4206, 5, 132, 0, 0, 4206, 4207, 5, 399, 0, 0, 4207, 4210, 3, 596, 298, 0, 4208, 4209, 5, 341, 0, 0, 4209, 4211, 3, 586, 293, 0, 4210, 4208, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4213, 5, 400, 0, 0, 4213, 583, 1, 0, 0, 0, 4214, 4215, 5, 124, 0, 0, 4215, 4216, 5, 399, 0, 0, 4216, 4217, 3, 586, 293, 0, 4217, 4218, 5, 139, 0, 0, 4218, 4219, 3, 596, 298, 0, 4219, 4220, 5, 400, 0, 0, 4220, 585, 1, 0, 0, 0, 4221, 4230, 3, 686, 343, 0, 4222, 4230, 5, 257, 0, 0, 4223, 4230, 3, 688, 344, 0, 4224, 4230, 3, 690, 345, 0, 4225, 4230, 3, 692, 346, 0, 4226, 4230, 3, 694, 347, 0, 4227, 4230, 3, 696, 348, 0, 4228, 4230, 3, 698, 349, 0, 4229, 4221, 1, 0, 0, 0, 4229, 4222, 1, 0, 0, 0, 4229, 4223, 1, 0, 0, 0, 4229, 4224, 1, 0, 0, 0, 4229, 4225, 1, 0, 0, 0, 4229, 4226, 1, 0, 0, 0, 4229, 4227, 1, 0, 0, 0, 4229, 4228, 1, 0, 0, 0, 4230, 587, 1, 0, 0, 0, 4231, 4232, 3, 590, 295, 0, 4232, 4233, 3, 594, 297, 0, 4233, 4260, 1, 0, 0, 0, 4234, 4260, 5, 431, 0, 0, 4235, 4236, 5, 71, 0, 0, 4236, 4260, 5, 426, 0, 0, 4237, 4260, 5, 63, 0, 0, 4238, 4239, 5, 337, 0, 0, 4239, 4260, 5, 426, 0, 0, 4240, 4260, 5, 64, 0, 0, 4241, 4242, 5, 338, 0, 0, 4242, 4260, 5, 426, 0, 0, 4243, 4247, 5, 426, 0, 0, 4244, 4246, 5, 426, 0, 0, 4245, 4244, 1, 0, 0, 0, 4246, 4249, 1, 0, 0, 0, 4247, 4245, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, 4248, 4260, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4250, 4260, 5, 428, 0, 0, 4251, 4260, 5, 429, 0, 0, 4252, 4253, 5, 433, 0, 0, 4253, 4260, 5, 427, 0, 0, 4254, 4260, 5, 350, 0, 0, 4255, 4260, 5, 125, 0, 0, 4256, 4260, 5, 219, 0, 0, 4257, 4260, 5, 424, 0, 0, 4258, 4260, 3, 258, 129, 0, 4259, 4231, 1, 0, 0, 0, 4259, 4234, 1, 0, 0, 0, 4259, 4235, 1, 0, 0, 0, 4259, 4237, 1, 0, 0, 0, 4259, 4238, 1, 0, 0, 0, 4259, 4240, 1, 0, 0, 0, 4259, 4241, 1, 0, 0, 0, 4259, 4243, 1, 0, 0, 0, 4259, 4250, 1, 0, 0, 0, 4259, 4251, 1, 0, 0, 0, 4259, 4252, 1, 0, 0, 0, 4259, 4254, 1, 0, 0, 0, 4259, 4255, 1, 0, 0, 0, 4259, 4256, 1, 0, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4258, 1, 0, 0, 0, 4260, 589, 1, 0, 0, 0, 4261, 4262, 7, 26, 0, 0, 4262, 591, 1, 0, 0, 0, 4263, 4264, 5, 399, 0, 0, 4264, 4265, 3, 590, 295, 0, 4265, 4266, 5, 400, 0, 0, 4266, 4267, 3, 594, 297, 0, 4267, 4279, 1, 0, 0, 0, 4268, 4274, 5, 165, 0, 0, 4269, 4275, 3, 590, 295, 0, 4270, 4271, 5, 399, 0, 0, 4271, 4272, 3, 596, 298, 0, 4272, 4273, 5, 400, 0, 0, 4273, 4275, 1, 0, 0, 0, 4274, 4269, 1, 0, 0, 0, 4274, 4270, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 4277, 3, 594, 297, 0, 4277, 4279, 1, 0, 0, 0, 4278, 4263, 1, 0, 0, 0, 4278, 4268, 1, 0, 0, 0, 4279, 593, 1, 0, 0, 0, 4280, 4281, 3, 686, 343, 0, 4281, 4282, 5, 341, 0, 0, 4282, 4283, 3, 688, 344, 0, 4283, 4295, 1, 0, 0, 0, 4284, 4285, 3, 692, 346, 0, 4285, 4286, 5, 341, 0, 0, 4286, 4287, 3, 698, 349, 0, 4287, 4295, 1, 0, 0, 0, 4288, 4295, 3, 686, 343, 0, 4289, 4295, 3, 688, 344, 0, 4290, 4295, 3, 692, 346, 0, 4291, 4295, 3, 694, 347, 0, 4292, 4295, 3, 696, 348, 0, 4293, 4295, 3, 698, 349, 0, 4294, 4280, 1, 0, 0, 0, 4294, 4284, 1, 0, 0, 0, 4294, 4288, 1, 0, 0, 0, 4294, 4289, 1, 0, 0, 0, 4294, 4290, 1, 0, 0, 0, 4294, 4291, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4294, 4293, 1, 0, 0, 0, 4295, 595, 1, 0, 0, 0, 4296, 4301, 3, 638, 319, 0, 4297, 4298, 5, 228, 0, 0, 4298, 4300, 3, 638, 319, 0, 4299, 4297, 1, 0, 0, 0, 4300, 4303, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 597, 1, 0, 0, 0, 4303, 4301, 1, 0, 0, 0, 4304, 4316, 3, 588, 294, 0, 4305, 4316, 3, 592, 296, 0, 4306, 4316, 3, 576, 288, 0, 4307, 4316, 3, 584, 292, 0, 4308, 4316, 3, 582, 291, 0, 4309, 4316, 3, 578, 289, 0, 4310, 4316, 3, 580, 290, 0, 4311, 4316, 3, 616, 308, 0, 4312, 4316, 3, 566, 283, 0, 4313, 4316, 3, 552, 276, 0, 4314, 4316, 3, 654, 327, 0, 4315, 4304, 1, 0, 0, 0, 4315, 4305, 1, 0, 0, 0, 4315, 4306, 1, 0, 0, 0, 4315, 4307, 1, 0, 0, 0, 4315, 4308, 1, 0, 0, 0, 4315, 4309, 1, 0, 0, 0, 4315, 4310, 1, 0, 0, 0, 4315, 4311, 1, 0, 0, 0, 4315, 4312, 1, 0, 0, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4314, 1, 0, 0, 0, 4316, 599, 1, 0, 0, 0, 4317, 4319, 7, 35, 0, 0, 4318, 4317, 1, 0, 0, 0, 4319, 4322, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4320, 1, 0, 0, 0, 4323, 4332, 3, 598, 299, 0, 4324, 4325, 5, 401, 0, 0, 4325, 4326, 3, 596, 298, 0, 4326, 4327, 5, 402, 0, 0, 4327, 4331, 1, 0, 0, 0, 4328, 4329, 5, 395, 0, 0, 4329, 4331, 3, 654, 327, 0, 4330, 4324, 1, 0, 0, 0, 4330, 4328, 1, 0, 0, 0, 4331, 4334, 1, 0, 0, 0, 4332, 4330, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 601, 1, 0, 0, 0, 4334, 4332, 1, 0, 0, 0, 4335, 4340, 3, 600, 300, 0, 4336, 4337, 5, 423, 0, 0, 4337, 4339, 3, 600, 300, 0, 4338, 4336, 1, 0, 0, 0, 4339, 4342, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4341, 1, 0, 0, 0, 4341, 603, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4343, 4348, 3, 602, 301, 0, 4344, 4345, 7, 36, 0, 0, 4345, 4347, 3, 602, 301, 0, 4346, 4344, 1, 0, 0, 0, 4347, 4350, 1, 0, 0, 0, 4348, 4346, 1, 0, 0, 0, 4348, 4349, 1, 0, 0, 0, 4349, 605, 1, 0, 0, 0, 4350, 4348, 1, 0, 0, 0, 4351, 4356, 3, 604, 302, 0, 4352, 4353, 7, 37, 0, 0, 4353, 4355, 3, 604, 302, 0, 4354, 4352, 1, 0, 0, 0, 4355, 4358, 1, 0, 0, 0, 4356, 4354, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 607, 1, 0, 0, 0, 4358, 4356, 1, 0, 0, 0, 4359, 4364, 3, 606, 303, 0, 4360, 4361, 5, 422, 0, 0, 4361, 4363, 3, 606, 303, 0, 4362, 4360, 1, 0, 0, 0, 4363, 4366, 1, 0, 0, 0, 4364, 4362, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 609, 1, 0, 0, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4372, 3, 608, 304, 0, 4368, 4369, 5, 419, 0, 0, 4369, 4371, 3, 608, 304, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4374, 1, 0, 0, 0, 4372, 4370, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 611, 1, 0, 0, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4380, 3, 610, 305, 0, 4376, 4377, 5, 421, 0, 0, 4377, 4379, 3, 610, 305, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4382, 1, 0, 0, 0, 4380, 4378, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 613, 1, 0, 0, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4384, 7, 38, 0, 0, 4384, 615, 1, 0, 0, 0, 4385, 4386, 5, 399, 0, 0, 4386, 4387, 3, 380, 190, 0, 4387, 4388, 5, 400, 0, 0, 4388, 617, 1, 0, 0, 0, 4389, 4391, 3, 612, 306, 0, 4390, 4392, 3, 620, 310, 0, 4391, 4390, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4396, 1, 0, 0, 0, 4393, 4394, 5, 117, 0, 0, 4394, 4396, 3, 616, 308, 0, 4395, 4389, 1, 0, 0, 0, 4395, 4393, 1, 0, 0, 0, 4396, 619, 1, 0, 0, 0, 4397, 4398, 3, 614, 307, 0, 4398, 4399, 3, 612, 306, 0, 4399, 4404, 1, 0, 0, 0, 4400, 4404, 3, 622, 311, 0, 4401, 4402, 5, 216, 0, 0, 4402, 4404, 3, 626, 313, 0, 4403, 4397, 1, 0, 0, 0, 4403, 4400, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4404, 621, 1, 0, 0, 0, 4405, 4406, 5, 154, 0, 0, 4406, 4420, 3, 624, 312, 0, 4407, 4408, 5, 25, 0, 0, 4408, 4409, 3, 612, 306, 0, 4409, 4410, 5, 11, 0, 0, 4410, 4411, 3, 612, 306, 0, 4411, 4420, 1, 0, 0, 0, 4412, 4413, 5, 184, 0, 0, 4413, 4414, 7, 39, 0, 0, 4414, 4420, 3, 552, 276, 0, 4415, 4416, 3, 650, 325, 0, 4416, 4417, 7, 40, 0, 0, 4417, 4418, 3, 616, 308, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4405, 1, 0, 0, 0, 4419, 4407, 1, 0, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 623, 1, 0, 0, 0, 4421, 4424, 3, 616, 308, 0, 4422, 4424, 3, 552, 276, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4422, 1, 0, 0, 0, 4424, 625, 1, 0, 0, 0, 4425, 4426, 7, 41, 0, 0, 4426, 4429, 3, 612, 306, 0, 4427, 4429, 3, 622, 311, 0, 4428, 4425, 1, 0, 0, 0, 4428, 4427, 1, 0, 0, 0, 4429, 627, 1, 0, 0, 0, 4430, 4431, 5, 167, 0, 0, 4431, 4432, 5, 96, 0, 0, 4432, 4433, 5, 139, 0, 0, 4433, 629, 1, 0, 0, 0, 4434, 4442, 5, 405, 0, 0, 4435, 4442, 5, 406, 0, 0, 4436, 4442, 5, 407, 0, 0, 4437, 4438, 5, 167, 0, 0, 4438, 4439, 5, 216, 0, 0, 4439, 4440, 5, 96, 0, 0, 4440, 4442, 5, 139, 0, 0, 4441, 4434, 1, 0, 0, 0, 4441, 4435, 1, 0, 0, 0, 4441, 4436, 1, 0, 0, 0, 4441, 4437, 1, 0, 0, 0, 4442, 631, 1, 0, 0, 0, 4443, 4452, 3, 618, 309, 0, 4444, 4445, 3, 630, 315, 0, 4445, 4446, 3, 618, 309, 0, 4446, 4451, 1, 0, 0, 0, 4447, 4448, 3, 628, 314, 0, 4448, 4449, 3, 618, 309, 0, 4449, 4451, 1, 0, 0, 0, 4450, 4444, 1, 0, 0, 0, 4450, 4447, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 633, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4462, 5, 219, 0, 0, 4456, 4462, 5, 350, 0, 0, 4457, 4462, 5, 125, 0, 0, 4458, 4462, 5, 360, 0, 0, 4459, 4460, 5, 216, 0, 0, 4460, 4462, 7, 42, 0, 0, 4461, 4455, 1, 0, 0, 0, 4461, 4456, 1, 0, 0, 0, 4461, 4457, 1, 0, 0, 0, 4461, 4458, 1, 0, 0, 0, 4461, 4459, 1, 0, 0, 0, 4462, 635, 1, 0, 0, 0, 4463, 4465, 5, 216, 0, 0, 4464, 4463, 1, 0, 0, 0, 4465, 4468, 1, 0, 0, 0, 4466, 4464, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4469, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4472, 3, 632, 316, 0, 4470, 4471, 5, 167, 0, 0, 4471, 4473, 3, 634, 317, 0, 4472, 4470, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 637, 1, 0, 0, 0, 4474, 4479, 3, 636, 318, 0, 4475, 4476, 5, 11, 0, 0, 4476, 4478, 3, 636, 318, 0, 4477, 4475, 1, 0, 0, 0, 4478, 4481, 1, 0, 0, 0, 4479, 4477, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 639, 1, 0, 0, 0, 4481, 4479, 1, 0, 0, 0, 4482, 4484, 3, 482, 241, 0, 4483, 4485, 3, 642, 321, 0, 4484, 4483, 1, 0, 0, 0, 4484, 4485, 1, 0, 0, 0, 4485, 641, 1, 0, 0, 0, 4486, 4487, 5, 237, 0, 0, 4487, 4488, 5, 399, 0, 0, 4488, 4493, 3, 644, 322, 0, 4489, 4490, 5, 397, 0, 0, 4490, 4492, 3, 644, 322, 0, 4491, 4489, 1, 0, 0, 0, 4492, 4495, 1, 0, 0, 0, 4493, 4491, 1, 0, 0, 0, 4493, 4494, 1, 0, 0, 0, 4494, 4496, 1, 0, 0, 0, 4495, 4493, 1, 0, 0, 0, 4496, 4497, 5, 400, 0, 0, 4497, 643, 1, 0, 0, 0, 4498, 4501, 3, 654, 327, 0, 4499, 4500, 5, 405, 0, 0, 4500, 4502, 3, 588, 294, 0, 4501, 4499, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 645, 1, 0, 0, 0, 4503, 4504, 5, 399, 0, 0, 4504, 4509, 3, 648, 324, 0, 4505, 4506, 5, 397, 0, 0, 4506, 4508, 3, 648, 324, 0, 4507, 4505, 1, 0, 0, 0, 4508, 4511, 1, 0, 0, 0, 4509, 4507, 1, 0, 0, 0, 4509, 4510, 1, 0, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4509, 1, 0, 0, 0, 4512, 4513, 5, 400, 0, 0, 4513, 647, 1, 0, 0, 0, 4514, 4517, 3, 654, 327, 0, 4515, 4518, 5, 184, 0, 0, 4516, 4518, 3, 650, 325, 0, 4517, 4515, 1, 0, 0, 0, 4517, 4516, 1, 0, 0, 0, 4518, 4519, 1, 0, 0, 0, 4519, 4520, 3, 588, 294, 0, 4520, 649, 1, 0, 0, 0, 4521, 4522, 7, 43, 0, 0, 4522, 651, 1, 0, 0, 0, 4523, 4524, 7, 44, 0, 0, 4524, 653, 1, 0, 0, 0, 4525, 4528, 5, 432, 0, 0, 4526, 4528, 3, 660, 330, 0, 4527, 4525, 1, 0, 0, 0, 4527, 4526, 1, 0, 0, 0, 4528, 655, 1, 0, 0, 0, 4529, 4532, 3, 654, 327, 0, 4530, 4531, 5, 395, 0, 0, 4531, 4533, 3, 654, 327, 0, 4532, 4530, 1, 0, 0, 0, 4532, 4533, 1, 0, 0, 0, 4533, 657, 1, 0, 0, 0, 4534, 4535, 3, 654, 327, 0, 4535, 659, 1, 0, 0, 0, 4536, 4537, 7, 45, 0, 0, 4537, 661, 1, 0, 0, 0, 4538, 4539, 7, 46, 0, 0, 4539, 663, 1, 0, 0, 0, 4540, 4545, 3, 666, 333, 0, 4541, 4542, 7, 47, 0, 0, 4542, 4544, 3, 666, 333, 0, 4543, 4541, 1, 0, 0, 0, 4544, 4547, 1, 0, 0, 0, 4545, 4543, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 665, 1, 0, 0, 0, 4547, 4545, 1, 0, 0, 0, 4548, 4555, 3, 668, 334, 0, 4549, 4550, 4, 333, 3, 0, 4550, 4551, 5, 414, 0, 0, 4551, 4552, 4, 333, 4, 0, 4552, 4554, 3, 668, 334, 0, 4553, 4549, 1, 0, 0, 0, 4554, 4557, 1, 0, 0, 0, 4555, 4553, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 667, 1, 0, 0, 0, 4557, 4555, 1, 0, 0, 0, 4558, 4610, 3, 654, 327, 0, 4559, 4610, 5, 299, 0, 0, 4560, 4610, 5, 171, 0, 0, 4561, 4610, 5, 237, 0, 0, 4562, 4610, 5, 198, 0, 0, 4563, 4610, 5, 268, 0, 0, 4564, 4610, 5, 369, 0, 0, 4565, 4610, 5, 241, 0, 0, 4566, 4610, 5, 165, 0, 0, 4567, 4610, 5, 292, 0, 0, 4568, 4610, 5, 356, 0, 0, 4569, 4610, 5, 144, 0, 0, 4570, 4610, 5, 203, 0, 0, 4571, 4610, 5, 219, 0, 0, 4572, 4610, 5, 126, 0, 0, 4573, 4610, 5, 188, 0, 0, 4574, 4610, 5, 101, 0, 0, 4575, 4610, 5, 329, 0, 0, 4576, 4610, 5, 224, 0, 0, 4577, 4610, 5, 291, 0, 0, 4578, 4610, 5, 145, 0, 0, 4579, 4610, 5, 304, 0, 0, 4580, 4610, 5, 135, 0, 0, 4581, 4610, 5, 318, 0, 0, 4582, 4610, 5, 161, 0, 0, 4583, 4610, 5, 54, 0, 0, 4584, 4610, 5, 166, 0, 0, 4585, 4610, 5, 358, 0, 0, 4586, 4610, 5, 45, 0, 0, 4587, 4610, 5, 347, 0, 0, 4588, 4610, 5, 96, 0, 0, 4589, 4610, 5, 154, 0, 0, 4590, 4610, 5, 269, 0, 0, 4591, 4610, 5, 337, 0, 0, 4592, 4610, 5, 225, 0, 0, 4593, 4610, 5, 108, 0, 0, 4594, 4610, 5, 141, 0, 0, 4595, 4610, 5, 365, 0, 0, 4596, 4610, 5, 21, 0, 0, 4597, 4610, 5, 78, 0, 0, 4598, 4610, 5, 374, 0, 0, 4599, 4610, 5, 336, 0, 0, 4600, 4610, 5, 167, 0, 0, 4601, 4610, 5, 134, 0, 0, 4602, 4610, 5, 216, 0, 0, 4603, 4610, 5, 27, 0, 0, 4604, 4610, 5, 370, 0, 0, 4605, 4610, 5, 263, 0, 0, 4606, 4610, 5, 25, 0, 0, 4607, 4610, 5, 62, 0, 0, 4608, 4610, 5, 17, 0, 0, 4609, 4558, 1, 0, 0, 0, 4609, 4559, 1, 0, 0, 0, 4609, 4560, 1, 0, 0, 0, 4609, 4561, 1, 0, 0, 0, 4609, 4562, 1, 0, 0, 0, 4609, 4563, 1, 0, 0, 0, 4609, 4564, 1, 0, 0, 0, 4609, 4565, 1, 0, 0, 0, 4609, 4566, 1, 0, 0, 0, 4609, 4567, 1, 0, 0, 0, 4609, 4568, 1, 0, 0, 0, 4609, 4569, 1, 0, 0, 0, 4609, 4570, 1, 0, 0, 0, 4609, 4571, 1, 0, 0, 0, 4609, 4572, 1, 0, 0, 0, 4609, 4573, 1, 0, 0, 0, 4609, 4574, 1, 0, 0, 0, 4609, 4575, 1, 0, 0, 0, 4609, 4576, 1, 0, 0, 0, 4609, 4577, 1, 0, 0, 0, 4609, 4578, 1, 0, 0, 0, 4609, 4579, 1, 0, 0, 0, 4609, 4580, 1, 0, 0, 0, 4609, 4581, 1, 0, 0, 0, 4609, 4582, 1, 0, 0, 0, 4609, 4583, 1, 0, 0, 0, 4609, 4584, 1, 0, 0, 0, 4609, 4585, 1, 0, 0, 0, 4609, 4586, 1, 0, 0, 0, 4609, 4587, 1, 0, 0, 0, 4609, 4588, 1, 0, 0, 0, 4609, 4589, 1, 0, 0, 0, 4609, 4590, 1, 0, 0, 0, 4609, 4591, 1, 0, 0, 0, 4609, 4592, 1, 0, 0, 0, 4609, 4593, 1, 0, 0, 0, 4609, 4594, 1, 0, 0, 0, 4609, 4595, 1, 0, 0, 0, 4609, 4596, 1, 0, 0, 0, 4609, 4597, 1, 0, 0, 0, 4609, 4598, 1, 0, 0, 0, 4609, 4599, 1, 0, 0, 0, 4609, 4600, 1, 0, 0, 0, 4609, 4601, 1, 0, 0, 0, 4609, 4602, 1, 0, 0, 0, 4609, 4603, 1, 0, 0, 0, 4609, 4604, 1, 0, 0, 0, 4609, 4605, 1, 0, 0, 0, 4609, 4606, 1, 0, 0, 0, 4609, 4607, 1, 0, 0, 0, 4609, 4608, 1, 0, 0, 0, 4610, 669, 1, 0, 0, 0, 4611, 4612, 5, 58, 0, 0, 4612, 4613, 5, 280, 0, 0, 4613, 4615, 5, 243, 0, 0, 4614, 4616, 3, 32, 16, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4626, 1, 0, 0, 0, 4617, 4618, 3, 654, 327, 0, 4618, 4619, 5, 184, 0, 0, 4619, 4620, 3, 654, 327, 0, 4620, 4627, 1, 0, 0, 0, 4621, 4624, 3, 654, 327, 0, 4622, 4623, 5, 387, 0, 0, 4623, 4625, 3, 676, 338, 0, 4624, 4622, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4627, 1, 0, 0, 0, 4626, 4617, 1, 0, 0, 0, 4626, 4621, 1, 0, 0, 0, 4627, 4777, 1, 0, 0, 0, 4628, 4629, 5, 9, 0, 0, 4629, 4630, 5, 280, 0, 0, 4630, 4631, 5, 243, 0, 0, 4631, 4656, 3, 654, 327, 0, 4632, 4657, 5, 373, 0, 0, 4633, 4657, 3, 684, 342, 0, 4634, 4635, 5, 304, 0, 0, 4635, 4657, 3, 676, 338, 0, 4636, 4637, 5, 363, 0, 0, 4637, 4642, 3, 678, 339, 0, 4638, 4639, 5, 397, 0, 0, 4639, 4641, 3, 678, 339, 0, 4640, 4638, 1, 0, 0, 0, 4641, 4644, 1, 0, 0, 0, 4642, 4640, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4657, 1, 0, 0, 0, 4644, 4642, 1, 0, 0, 0, 4645, 4646, 5, 274, 0, 0, 4646, 4647, 5, 341, 0, 0, 4647, 4657, 3, 654, 327, 0, 4648, 4650, 3, 680, 340, 0, 4649, 4651, 3, 682, 341, 0, 4650, 4649, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4657, 1, 0, 0, 0, 4652, 4654, 3, 682, 341, 0, 4653, 4655, 3, 680, 340, 0, 4654, 4653, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4657, 1, 0, 0, 0, 4656, 4632, 1, 0, 0, 0, 4656, 4633, 1, 0, 0, 0, 4656, 4634, 1, 0, 0, 0, 4656, 4636, 1, 0, 0, 0, 4656, 4645, 1, 0, 0, 0, 4656, 4648, 1, 0, 0, 0, 4656, 4652, 1, 0, 0, 0, 4657, 4777, 1, 0, 0, 0, 4658, 4659, 5, 101, 0, 0, 4659, 4660, 5, 280, 0, 0, 4660, 4662, 5, 243, 0, 0, 4661, 4663, 3, 30, 15, 0, 4662, 4661, 1, 0, 0, 0, 4662, 4663, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 4777, 3, 654, 327, 0, 4665, 4668, 3, 682, 341, 0, 4666, 4668, 3, 684, 342, 0, 4667, 4665, 1, 0, 0, 0, 4667, 4666, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4670, 5, 390, 0, 0, 4670, 4671, 5, 197, 0, 0, 4671, 4777, 1, 0, 0, 0, 4672, 4684, 5, 278, 0, 0, 4673, 4674, 5, 3, 0, 0, 4674, 4675, 5, 280, 0, 0, 4675, 4676, 5, 243, 0, 0, 4676, 4677, 5, 387, 0, 0, 4677, 4685, 3, 654, 327, 0, 4678, 4679, 5, 280, 0, 0, 4679, 4680, 5, 243, 0, 0, 4680, 4681, 3, 654, 327, 0, 4681, 4682, 5, 387, 0, 0, 4682, 4683, 3, 654, 327, 0, 4683, 4685, 1, 0, 0, 0, 4684, 4673, 1, 0, 0, 0, 4684, 4678, 1, 0, 0, 0, 4685, 4777, 1, 0, 0, 0, 4686, 4687, 5, 58, 0, 0, 4687, 4688, 5, 348, 0, 0, 4688, 4689, 3, 654, 327, 0, 4689, 4690, 5, 395, 0, 0, 4690, 4691, 3, 654, 327, 0, 4691, 4692, 5, 383, 0, 0, 4692, 4693, 3, 708, 354, 0, 4693, 4694, 5, 99, 0, 0, 4694, 4695, 3, 710, 355, 0, 4695, 4777, 1, 0, 0, 0, 4696, 4697, 5, 9, 0, 0, 4697, 4698, 5, 348, 0, 0, 4698, 4699, 3, 654, 327, 0, 4699, 4700, 5, 395, 0, 0, 4700, 4717, 3, 654, 327, 0, 4701, 4702, 5, 383, 0, 0, 4702, 4703, 3, 708, 354, 0, 4703, 4704, 5, 99, 0, 0, 4704, 4705, 3, 710, 355, 0, 4705, 4718, 1, 0, 0, 0, 4706, 4707, 5, 4, 0, 0, 4707, 4711, 5, 341, 0, 0, 4708, 4709, 5, 101, 0, 0, 4709, 4711, 5, 139, 0, 0, 4710, 4706, 1, 0, 0, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4715, 1, 0, 0, 0, 4712, 4713, 5, 246, 0, 0, 4713, 4716, 3, 704, 352, 0, 4714, 4716, 5, 362, 0, 0, 4715, 4712, 1, 0, 0, 0, 4715, 4714, 1, 0, 0, 0, 4716, 4718, 1, 0, 0, 0, 4717, 4701, 1, 0, 0, 0, 4717, 4710, 1, 0, 0, 0, 4718, 4777, 1, 0, 0, 0, 4719, 4720, 5, 101, 0, 0, 4720, 4721, 5, 348, 0, 0, 4721, 4722, 3, 654, 327, 0, 4722, 4723, 5, 395, 0, 0, 4723, 4724, 3, 654, 327, 0, 4724, 4777, 1, 0, 0, 0, 4725, 4726, 5, 58, 0, 0, 4726, 4727, 5, 246, 0, 0, 4727, 4728, 3, 654, 327, 0, 4728, 4729, 5, 395, 0, 0, 4729, 4730, 3, 704, 352, 0, 4730, 4731, 5, 387, 0, 0, 4731, 4732, 3, 714, 357, 0, 4732, 4777, 1, 0, 0, 0, 4733, 4734, 5, 9, 0, 0, 4734, 4735, 5, 246, 0, 0, 4735, 4736, 3, 654, 327, 0, 4736, 4737, 5, 395, 0, 0, 4737, 4745, 3, 704, 352, 0, 4738, 4739, 5, 304, 0, 0, 4739, 4746, 3, 714, 357, 0, 4740, 4741, 5, 363, 0, 0, 4741, 4746, 5, 294, 0, 0, 4742, 4743, 7, 48, 0, 0, 4743, 4744, 5, 348, 0, 0, 4744, 4746, 3, 654, 327, 0, 4745, 4738, 1, 0, 0, 0, 4745, 4740, 1, 0, 0, 0, 4745, 4742, 1, 0, 0, 0, 4746, 4777, 1, 0, 0, 0, 4747, 4748, 5, 101, 0, 0, 4748, 4749, 5, 246, 0, 0, 4749, 4750, 3, 654, 327, 0, 4750, 4751, 5, 395, 0, 0, 4751, 4752, 3, 704, 352, 0, 4752, 4777, 1, 0, 0, 0, 4753, 4754, 7, 49, 0, 0, 4754, 4755, 3, 672, 336, 0, 4755, 4756, 5, 200, 0, 0, 4756, 4757, 5, 426, 0, 0, 4757, 4758, 5, 154, 0, 0, 4758, 4762, 3, 654, 327, 0, 4759, 4760, 5, 341, 0, 0, 4760, 4763, 3, 704, 352, 0, 4761, 4763, 5, 362, 0, 0, 4762, 4759, 1, 0, 0, 0, 4762, 4761, 1, 0, 0, 0, 4763, 4767, 1, 0, 0, 0, 4764, 4765, 5, 387, 0, 0, 4765, 4766, 5, 229, 0, 0, 4766, 4768, 5, 431, 0, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4777, 1, 0, 0, 0, 4769, 4770, 5, 101, 0, 0, 4770, 4771, 3, 672, 336, 0, 4771, 4772, 5, 200, 0, 0, 4772, 4773, 5, 426, 0, 0, 4773, 4774, 5, 154, 0, 0, 4774, 4775, 3, 654, 327, 0, 4775, 4777, 1, 0, 0, 0, 4776, 4611, 1, 0, 0, 0, 4776, 4628, 1, 0, 0, 0, 4776, 4658, 1, 0, 0, 0, 4776, 4667, 1, 0, 0, 0, 4776, 4672, 1, 0, 0, 0, 4776, 4686, 1, 0, 0, 0, 4776, 4696, 1, 0, 0, 0, 4776, 4719, 1, 0, 0, 0, 4776, 4725, 1, 0, 0, 0, 4776, 4733, 1, 0, 0, 0, 4776, 4747, 1, 0, 0, 0, 4776, 4753, 1, 0, 0, 0, 4776, 4769, 1, 0, 0, 0, 4777, 671, 1, 0, 0, 0, 4778, 4779, 7, 50, 0, 0, 4779, 673, 1, 0, 0, 0, 4780, 4781, 5, 259, 0, 0, 4781, 4782, 5, 405, 0, 0, 4782, 4788, 5, 431, 0, 0, 4783, 4784, 5, 83, 0, 0, 4784, 4785, 5, 246, 0, 0, 4785, 4786, 5, 405, 0, 0, 4786, 4788, 3, 704, 352, 0, 4787, 4780, 1, 0, 0, 0, 4787, 4783, 1, 0, 0, 0, 4788, 675, 1, 0, 0, 0, 4789, 4794, 3, 674, 337, 0, 4790, 4791, 5, 397, 0, 0, 4791, 4793, 3, 674, 337, 0, 4792, 4790, 1, 0, 0, 0, 4793, 4796, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 677, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4797, 4801, 5, 259, 0, 0, 4798, 4799, 5, 83, 0, 0, 4799, 4801, 5, 246, 0, 0, 4800, 4797, 1, 0, 0, 0, 4800, 4798, 1, 0, 0, 0, 4801, 679, 1, 0, 0, 0, 4802, 4805, 5, 2, 0, 0, 4803, 4804, 5, 387, 0, 0, 4804, 4806, 5, 278, 0, 0, 4805, 4803, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 681, 1, 0, 0, 0, 4807, 4808, 7, 51, 0, 0, 4808, 683, 1, 0, 0, 0, 4809, 4810, 7, 52, 0, 0, 4810, 685, 1, 0, 0, 0, 4811, 4812, 7, 53, 0, 0, 4812, 687, 1, 0, 0, 0, 4813, 4814, 7, 54, 0, 0, 4814, 689, 1, 0, 0, 0, 4815, 4816, 7, 55, 0, 0, 4816, 691, 1, 0, 0, 0, 4817, 4818, 7, 56, 0, 0, 4818, 693, 1, 0, 0, 0, 4819, 4820, 7, 57, 0, 0, 4820, 695, 1, 0, 0, 0, 4821, 4822, 7, 58, 0, 0, 4822, 697, 1, 0, 0, 0, 4823, 4824, 7, 59, 0, 0, 4824, 699, 1, 0, 0, 0, 4825, 4826, 7, 60, 0, 0, 4826, 701, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 703, 1, 0, 0, 0, 4829, 4834, 3, 654, 327, 0, 4830, 4831, 5, 395, 0, 0, 4831, 4833, 3, 654, 327, 0, 4832, 4830, 1, 0, 0, 0, 4833, 4836, 1, 0, 0, 0, 4834, 4832, 1, 0, 0, 0, 4834, 4835, 1, 0, 0, 0, 4835, 705, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4837, 4842, 3, 654, 327, 0, 4838, 4839, 5, 395, 0, 0, 4839, 4841, 3, 654, 327, 0, 4840, 4838, 1, 0, 0, 0, 4841, 4844, 1, 0, 0, 0, 4842, 4840, 1, 0, 0, 0, 4842, 4843, 1, 0, 0, 0, 4843, 4855, 1, 0, 0, 0, 4844, 4842, 1, 0, 0, 0, 4845, 4846, 4, 353, 5, 0, 4846, 4851, 3, 654, 327, 0, 4847, 4848, 5, 395, 0, 0, 4848, 4850, 3, 702, 351, 0, 4849, 4847, 1, 0, 0, 0, 4850, 4853, 1, 0, 0, 0, 4851, 4849, 1, 0, 0, 0, 4851, 4852, 1, 0, 0, 0, 4852, 4855, 1, 0, 0, 0, 4853, 4851, 1, 0, 0, 0, 4854, 4837, 1, 0, 0, 0, 4854, 4845, 1, 0, 0, 0, 4855, 707, 1, 0, 0, 0, 4856, 4857, 3, 654, 327, 0, 4857, 4858, 5, 411, 0, 0, 4858, 4859, 7, 26, 0, 0, 4859, 709, 1, 0, 0, 0, 4860, 4865, 5, 176, 0, 0, 4861, 4862, 5, 211, 0, 0, 4862, 4863, 5, 341, 0, 0, 4863, 4865, 3, 704, 352, 0, 4864, 4860, 1, 0, 0, 0, 4864, 4861, 1, 0, 0, 0, 4865, 711, 1, 0, 0, 0, 4866, 4867, 5, 8, 0, 0, 4867, 4868, 5, 405, 0, 0, 4868, 4879, 5, 431, 0, 0, 4869, 4870, 5, 259, 0, 0, 4870, 4871, 5, 405, 0, 0, 4871, 4879, 5, 431, 0, 0, 4872, 4873, 5, 294, 0, 0, 4873, 4874, 5, 405, 0, 0, 4874, 4879, 5, 426, 0, 0, 4875, 4876, 5, 240, 0, 0, 4876, 4877, 5, 405, 0, 0, 4877, 4879, 3, 704, 352, 0, 4878, 4866, 1, 0, 0, 0, 4878, 4869, 1, 0, 0, 0, 4878, 4872, 1, 0, 0, 0, 4878, 4875, 1, 0, 0, 0, 4879, 713, 1, 0, 0, 0, 4880, 4885, 3, 712, 356, 0, 4881, 4882, 5, 397, 0, 0, 4882, 4884, 3, 712, 356, 0, 4883, 4881, 1, 0, 0, 0, 4884, 4887, 1, 0, 0, 0, 4885, 4883, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 715, 1, 0, 0, 0, 4887, 4885, 1, 0, 0, 0, 630, 719, 726, 729, 735, 741, 748, 758, 761, 765, 780, 787, 793, 798, 803, 806, 830, 833, 838, 843, 849, 853, 866, 870, 874, 879, 886, 890, 895, 902, 906, 911, 959, 966, 971, 994, 998, 1002, 1005, 1009, 1014, 1020, 1024, 1030, 1032, 1043, 1047, 1054, 1062, 1065, 1070, 1074, 1077, 1087, 1095, 1099, 1102, 1106, 1110, 1113, 1118, 1124, 1129, 1134, 1138, 1149, 1151, 1155, 1165, 1169, 1175, 1178, 1185, 1190, 1198, 1203, 1207, 1215, 1220, 1226, 1232, 1235, 1238, 1241, 1250, 1258, 1263, 1271, 1278, 1281, 1284, 1286, 1297, 1299, 1302, 1305, 1308, 1311, 1314, 1316, 1328, 1334, 1342, 1344, 1354, 1387, 1392, 1396, 1400, 1407, 1414, 1420, 1424, 1427, 1434, 1457, 1462, 1466, 1474, 1483, 1490, 1496, 1503, 1506, 1512, 1519, 1527, 1536, 1545, 1552, 1572, 1579, 1581, 1588, 1598, 1606, 1610, 1614, 1627, 1636, 1652, 1656, 1661, 1666, 1669, 1672, 1675, 1678, 1681, 1686, 1695, 1699, 1706, 1709, 1712, 1715, 1727, 1733, 1759, 1767, 1771, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1801, 1811, 1814, 1834, 1840, 1846, 1849, 1851, 1858, 1865, 1878, 1883, 1892, 1900, 1908, 1921, 1934, 1950, 1954, 1969, 1975, 1978, 1981, 1984, 1987, 1991, 2006, 2009, 2020, 2034, 2068, 2076, 2081, 2089, 2094, 2099, 2106, 2114, 2122, 2130, 2136, 2143, 2153, 2157, 2165, 2174, 2177, 2181, 2188, 2194, 2198, 2204, 2208, 2220, 2229, 2240, 2244, 2251, 2263, 2273, 2276, 2283, 2289, 2293, 2296, 2299, 2305, 2309, 2313, 2318, 2322, 2326, 2330, 2338, 2342, 2346, 2350, 2354, 2362, 2366, 2370, 2378, 2383, 2388, 2392, 2396, 2403, 2412, 2420, 2432, 2450, 2453, 2459, 2485, 2488, 2494, 2502, 2510, 2523, 2530, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2565, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2597, 2603, 2607, 2610, 2613, 2616, 2619, 2622, 2629, 2633, 2636, 2639, 2642, 2645, 2648, 2655, 2658, 2666, 2670, 2677, 2679, 2682, 2687, 2690, 2694, 2699, 2705, 2713, 2721, 2731, 2734, 2738, 2742, 2747, 2754, 2758, 2760, 2764, 2771, 2776, 2789, 2797, 2816, 2826, 2839, 2849, 2853, 2857, 2863, 2870, 2877, 2886, 2893, 2913, 2916, 2930, 2945, 2949, 2969, 2981, 2987, 2990, 2993, 2999, 3005, 3012, 3020, 3026, 3030, 3035, 3038, 3042, 3049, 3054, 3059, 3062, 3064, 3072, 3080, 3084, 3088, 3092, 3109, 3126, 3133, 3142, 3147, 3150, 3153, 3157, 3172, 3186, 3189, 3200, 3204, 3207, 3210, 3214, 3219, 3222, 3225, 3228, 3231, 3234, 3240, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3271, 3273, 3279, 3284, 3287, 3290, 3293, 3296, 3302, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3333, 3335, 3337, 3342, 3347, 3351, 3355, 3360, 3365, 3374, 3384, 3392, 3404, 3407, 3413, 3420, 3427, 3434, 3441, 3451, 3453, 3457, 3461, 3468, 3473, 3477, 3481, 3484, 3487, 3498, 3502, 3504, 3507, 3520, 3523, 3526, 3538, 3541, 3548, 3557, 3562, 3564, 3566, 3583, 3586, 3594, 3597, 3601, 3604, 3607, 3610, 3613, 3625, 3633, 3640, 3643, 3650, 3653, 3658, 3665, 3673, 3679, 3684, 3688, 3693, 3697, 3704, 3718, 3721, 3728, 3736, 3746, 3749, 3758, 3767, 3770, 3776, 3779, 3784, 3787, 3800, 3806, 3808, 3818, 3824, 3827, 3837, 3842, 3846, 3862, 3868, 3870, 3877, 3884, 3898, 3904, 3907, 3910, 3913, 3922, 3929, 3935, 3944, 3948, 3956, 3966, 3976, 3981, 3985, 3991, 3996, 4001, 4008, 4012, 4015, 4020, 4023, 4027, 4032, 4043, 4045, 4054, 4077, 4087, 4090, 4097, 4100, 4110, 4117, 4120, 4122, 4133, 4143, 4145, 4154, 4159, 4168, 4181, 4185, 4197, 4201, 4210, 4229, 4247, 4259, 4274, 4278, 4294, 4301, 4315, 4320, 4330, 4332, 4340, 4348, 4356, 4364, 4372, 4380, 4391, 4395, 4403, 4419, 4423, 4428, 4441, 4450, 4452, 4461, 4466, 4472, 4479, 4484, 4493, 4501, 4509, 4517, 4527, 4532, 4545, 4555, 4609, 4615, 4624, 4626, 4642, 4650, 4654, 4656, 4662, 4667, 4684, 4710, 4715, 4717, 4745, 4762, 4767, 4776, 4787, 4794, 4800, 4805, 4834, 4842, 4851, 4854, 4864, 4878, 4885] \ No newline at end of file +[4, 1, 438, 4701, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 1, 0, 5, 0, 638, 8, 0, 10, 0, 12, 0, 641, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 647, 8, 1, 1, 1, 3, 1, 650, 8, 1, 1, 2, 1, 2, 5, 2, 654, 8, 2, 10, 2, 12, 2, 657, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 662, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 669, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 679, 8, 3, 1, 3, 3, 3, 682, 8, 3, 1, 3, 1, 3, 3, 3, 686, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 701, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 708, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 714, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 719, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 724, 8, 5, 1, 5, 3, 5, 727, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 749, 8, 5, 10, 5, 12, 5, 752, 9, 5, 3, 5, 754, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 759, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 764, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 773, 8, 6, 1, 7, 1, 7, 3, 7, 777, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 790, 8, 8, 1, 9, 1, 9, 3, 9, 794, 8, 9, 1, 9, 1, 9, 3, 9, 798, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 803, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 810, 8, 10, 1, 10, 1, 10, 3, 10, 814, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 819, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 826, 8, 12, 1, 12, 1, 12, 3, 12, 830, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 835, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 877, 8, 14, 11, 14, 12, 14, 878, 1, 14, 1, 14, 1, 14, 4, 14, 884, 8, 14, 11, 14, 12, 14, 885, 1, 14, 1, 14, 1, 14, 3, 14, 891, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 914, 8, 21, 1, 21, 1, 21, 3, 21, 918, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 923, 8, 21, 1, 21, 3, 21, 926, 8, 21, 1, 21, 1, 21, 3, 21, 930, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 935, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 941, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 946, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 953, 8, 21, 3, 21, 955, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 963, 8, 23, 1, 23, 1, 23, 3, 23, 967, 8, 23, 1, 24, 1, 24, 3, 24, 971, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 979, 8, 24, 1, 24, 3, 24, 982, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 987, 8, 25, 1, 25, 1, 25, 3, 25, 991, 8, 25, 1, 25, 3, 25, 994, 8, 25, 1, 26, 1, 26, 1, 26, 3, 26, 999, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1007, 8, 26, 5, 26, 1009, 8, 26, 10, 26, 12, 26, 1012, 9, 26, 3, 26, 1014, 8, 26, 1, 27, 1, 27, 3, 27, 1018, 8, 27, 1, 28, 1, 28, 3, 28, 1022, 8, 28, 1, 28, 3, 28, 1025, 8, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1030, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1036, 8, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1041, 8, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1046, 8, 29, 1, 29, 1, 29, 3, 29, 1050, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1061, 8, 30, 3, 30, 1063, 8, 30, 1, 30, 1, 30, 3, 30, 1067, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1077, 8, 33, 1, 33, 3, 33, 1080, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1086, 8, 33, 1, 33, 3, 33, 1089, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1095, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1100, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1107, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1112, 8, 33, 1, 33, 3, 33, 1115, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1123, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1128, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1133, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1138, 8, 33, 1, 33, 3, 33, 1141, 8, 33, 1, 33, 3, 33, 1144, 8, 33, 1, 33, 3, 33, 1147, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1155, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1162, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1167, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1174, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1180, 8, 33, 1, 33, 3, 33, 1183, 8, 33, 1, 33, 3, 33, 1186, 8, 33, 3, 33, 1188, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1198, 8, 33, 3, 33, 1200, 8, 33, 1, 33, 1, 33, 3, 33, 1204, 8, 33, 1, 33, 1, 33, 3, 33, 1208, 8, 33, 1, 33, 1, 33, 3, 33, 1212, 8, 33, 1, 33, 3, 33, 1215, 8, 33, 1, 33, 3, 33, 1218, 8, 33, 3, 33, 1220, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1229, 8, 33, 1, 33, 1, 33, 3, 33, 1233, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1241, 8, 33, 3, 33, 1243, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1253, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1263, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1274, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1283, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1290, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1296, 8, 39, 1, 39, 1, 39, 3, 39, 1300, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 3, 40, 1307, 8, 40, 1, 40, 1, 40, 1, 40, 5, 40, 1312, 8, 40, 10, 40, 12, 40, 1315, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1322, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1328, 8, 41, 1, 41, 3, 41, 1331, 8, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1336, 8, 41, 10, 41, 12, 41, 1339, 9, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1361, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1366, 8, 46, 1, 46, 1, 46, 3, 46, 1370, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 1378, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1387, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1394, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1400, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1407, 8, 51, 1, 51, 3, 51, 1410, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1416, 8, 51, 1, 52, 1, 52, 1, 52, 5, 52, 1421, 8, 52, 10, 52, 12, 52, 1424, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1431, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 5, 55, 1438, 8, 55, 10, 55, 12, 55, 1441, 9, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1449, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1456, 8, 57, 1, 58, 1, 58, 3, 58, 1460, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1467, 8, 58, 3, 58, 1469, 8, 58, 1, 59, 1, 59, 1, 60, 1, 60, 3, 60, 1475, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1488, 8, 60, 10, 60, 12, 60, 1491, 9, 60, 3, 60, 1493, 8, 60, 1, 61, 1, 61, 3, 61, 1497, 8, 61, 1, 61, 1, 61, 3, 61, 1501, 8, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1514, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1523, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1539, 8, 65, 1, 65, 1, 65, 3, 65, 1543, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1548, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1553, 8, 65, 1, 65, 3, 65, 1556, 8, 65, 1, 65, 3, 65, 1559, 8, 65, 1, 65, 3, 65, 1562, 8, 65, 1, 65, 3, 65, 1565, 8, 65, 1, 65, 3, 65, 1568, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1573, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1582, 8, 67, 1, 67, 1, 67, 3, 67, 1586, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1593, 8, 67, 1, 67, 3, 67, 1596, 8, 67, 1, 67, 3, 67, 1599, 8, 67, 1, 67, 3, 67, 1602, 8, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1614, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1620, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 1646, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1653, 8, 74, 1, 74, 3, 74, 1656, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1662, 8, 75, 1, 75, 1, 75, 3, 75, 1666, 8, 75, 1, 75, 3, 75, 1669, 8, 75, 1, 75, 3, 75, 1672, 8, 75, 1, 75, 3, 75, 1675, 8, 75, 1, 75, 3, 75, 1678, 8, 75, 1, 75, 3, 75, 1681, 8, 75, 1, 75, 3, 75, 1684, 8, 75, 1, 75, 3, 75, 1687, 8, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1698, 8, 76, 1, 76, 3, 76, 1701, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1721, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1727, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1733, 8, 80, 1, 80, 3, 80, 1736, 8, 80, 3, 80, 1738, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 3, 82, 1745, 8, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1752, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1765, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1770, 8, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 5, 87, 1777, 8, 87, 10, 87, 12, 87, 1780, 9, 87, 1, 88, 1, 88, 1, 88, 5, 88, 1785, 8, 88, 10, 88, 12, 88, 1788, 9, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1803, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1816, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1832, 8, 91, 1, 92, 1, 92, 3, 92, 1836, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1845, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1851, 8, 94, 1, 94, 3, 94, 1854, 8, 94, 1, 94, 3, 94, 1857, 8, 94, 1, 94, 3, 94, 1860, 8, 94, 1, 94, 3, 94, 1863, 8, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1876, 8, 97, 10, 97, 12, 97, 1879, 9, 97, 3, 97, 1881, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1890, 8, 99, 10, 99, 12, 99, 1893, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1906, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1940, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1948, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1953, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1961, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1966, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1971, 8, 106, 1, 107, 1, 107, 1, 107, 5, 107, 1976, 8, 107, 10, 107, 12, 107, 1979, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 1984, 8, 108, 10, 108, 12, 108, 1987, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 1992, 8, 109, 10, 109, 12, 109, 1995, 9, 109, 1, 110, 1, 110, 1, 110, 5, 110, 2000, 8, 110, 10, 110, 12, 110, 2003, 9, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2008, 8, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2015, 8, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2025, 8, 115, 5, 115, 2027, 8, 115, 10, 115, 12, 115, 2030, 9, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2035, 8, 116, 10, 116, 12, 116, 2038, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2046, 8, 118, 1, 118, 3, 118, 2049, 8, 118, 1, 119, 1, 119, 3, 119, 2053, 8, 119, 1, 120, 1, 120, 1, 120, 3, 120, 2058, 8, 120, 1, 121, 1, 121, 3, 121, 2062, 8, 121, 1, 121, 1, 121, 3, 121, 2066, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 2072, 8, 122, 1, 123, 1, 123, 3, 123, 2076, 8, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 3, 126, 2088, 8, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 2097, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 2108, 8, 127, 1, 128, 1, 128, 3, 128, 2112, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 2117, 8, 129, 10, 129, 12, 129, 2120, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 5, 131, 2129, 8, 131, 10, 131, 12, 131, 2132, 9, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 3, 134, 2141, 8, 134, 1, 134, 3, 134, 2144, 8, 134, 1, 135, 1, 135, 1, 135, 5, 135, 2149, 8, 135, 10, 135, 12, 135, 2152, 9, 135, 1, 136, 1, 136, 1, 136, 3, 136, 2157, 8, 136, 1, 137, 1, 137, 3, 137, 2161, 8, 137, 1, 137, 3, 137, 2164, 8, 137, 1, 137, 3, 137, 2167, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2173, 8, 138, 1, 139, 1, 139, 3, 139, 2177, 8, 139, 1, 140, 1, 140, 3, 140, 2181, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2186, 8, 141, 1, 141, 1, 141, 3, 141, 2190, 8, 141, 1, 142, 1, 142, 3, 142, 2194, 8, 142, 1, 143, 1, 143, 3, 143, 2198, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2206, 8, 143, 1, 144, 1, 144, 3, 144, 2210, 8, 144, 1, 144, 1, 144, 3, 144, 2214, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2222, 8, 145, 1, 145, 1, 145, 3, 145, 2226, 8, 145, 1, 146, 1, 146, 1, 146, 3, 146, 2231, 8, 146, 1, 147, 1, 147, 3, 147, 2235, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2242, 8, 148, 1, 149, 1, 149, 1, 149, 5, 149, 2247, 8, 149, 10, 149, 12, 149, 2250, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2257, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2269, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2287, 8, 151, 1, 151, 3, 151, 2290, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2296, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2322, 8, 156, 1, 157, 3, 157, 2325, 8, 157, 1, 157, 1, 157, 1, 158, 1, 158, 3, 158, 2331, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 2337, 8, 159, 10, 159, 12, 159, 2340, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2347, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2358, 8, 161, 10, 161, 12, 161, 2361, 9, 161, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2367, 8, 162, 1, 162, 3, 162, 2370, 8, 162, 1, 162, 3, 162, 2373, 8, 162, 1, 162, 3, 162, 2376, 8, 162, 1, 162, 3, 162, 2379, 8, 162, 1, 162, 3, 162, 2382, 8, 162, 1, 162, 3, 162, 2385, 8, 162, 1, 162, 3, 162, 2388, 8, 162, 1, 162, 3, 162, 2391, 8, 162, 1, 162, 3, 162, 2394, 8, 162, 1, 162, 3, 162, 2397, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2402, 8, 162, 1, 162, 3, 162, 2405, 8, 162, 1, 162, 3, 162, 2408, 8, 162, 1, 162, 3, 162, 2411, 8, 162, 1, 162, 3, 162, 2414, 8, 162, 1, 162, 3, 162, 2417, 8, 162, 1, 162, 3, 162, 2420, 8, 162, 1, 162, 3, 162, 2423, 8, 162, 1, 162, 3, 162, 2426, 8, 162, 1, 162, 3, 162, 2429, 8, 162, 1, 162, 3, 162, 2432, 8, 162, 3, 162, 2434, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2440, 8, 163, 1, 164, 1, 164, 3, 164, 2444, 8, 164, 1, 164, 3, 164, 2447, 8, 164, 1, 164, 3, 164, 2450, 8, 164, 1, 164, 3, 164, 2453, 8, 164, 1, 164, 3, 164, 2456, 8, 164, 1, 164, 3, 164, 2459, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2466, 8, 164, 1, 165, 1, 165, 3, 165, 2470, 8, 165, 1, 165, 3, 165, 2473, 8, 165, 1, 165, 3, 165, 2476, 8, 165, 1, 165, 3, 165, 2479, 8, 165, 1, 165, 3, 165, 2482, 8, 165, 1, 165, 3, 165, 2485, 8, 165, 1, 166, 1, 166, 1, 166, 4, 166, 2490, 8, 166, 11, 166, 12, 166, 2491, 1, 167, 3, 167, 2495, 8, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2503, 8, 168, 1, 168, 1, 168, 3, 168, 2507, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2514, 8, 168, 3, 168, 2516, 8, 168, 1, 169, 3, 169, 2519, 8, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2524, 8, 169, 1, 169, 3, 169, 2527, 8, 169, 1, 169, 1, 169, 3, 169, 2531, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2536, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2542, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 3, 172, 2550, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 2556, 8, 173, 10, 173, 12, 173, 2559, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 2566, 8, 174, 10, 174, 12, 174, 2569, 9, 174, 3, 174, 2571, 8, 174, 1, 174, 1, 174, 3, 174, 2575, 8, 174, 1, 174, 1, 174, 3, 174, 2579, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2584, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2591, 8, 175, 1, 176, 1, 176, 5, 176, 2595, 8, 176, 10, 176, 12, 176, 2598, 9, 176, 1, 176, 3, 176, 2601, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2608, 8, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2613, 8, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2626, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2634, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2644, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2654, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2667, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2677, 8, 181, 1, 181, 1, 181, 3, 181, 2681, 8, 181, 4, 181, 2683, 8, 181, 11, 181, 12, 181, 2684, 1, 181, 1, 181, 5, 181, 2689, 8, 181, 10, 181, 12, 181, 2692, 9, 181, 1, 181, 1, 181, 5, 181, 2696, 8, 181, 10, 181, 12, 181, 2699, 9, 181, 1, 181, 1, 181, 5, 181, 2703, 8, 181, 10, 181, 12, 181, 2706, 9, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2714, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2721, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2741, 8, 181, 1, 181, 3, 181, 2744, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2758, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2773, 8, 182, 1, 182, 1, 182, 3, 182, 2777, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 2795, 8, 182, 10, 182, 12, 182, 2798, 9, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2809, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2815, 8, 182, 1, 182, 3, 182, 2818, 8, 182, 1, 182, 1, 182, 3, 182, 2822, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2828, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2834, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2841, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2849, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2855, 8, 182, 1, 182, 1, 182, 3, 182, 2859, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2864, 8, 182, 1, 182, 3, 182, 2867, 8, 182, 1, 182, 1, 182, 3, 182, 2871, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2878, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2883, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2888, 8, 182, 1, 182, 3, 182, 2891, 8, 182, 3, 182, 2893, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2901, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2909, 8, 183, 1, 183, 1, 183, 3, 183, 2913, 8, 183, 4, 183, 2915, 8, 183, 11, 183, 12, 183, 2916, 1, 183, 1, 183, 3, 183, 2921, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2938, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2955, 8, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 3, 187, 2962, 8, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 2969, 8, 187, 10, 187, 12, 187, 2972, 9, 187, 1, 187, 1, 187, 3, 187, 2976, 8, 187, 1, 187, 3, 187, 2979, 8, 187, 1, 187, 3, 187, 2982, 8, 187, 1, 188, 1, 188, 3, 188, 2986, 8, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3001, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 3015, 8, 190, 1, 190, 3, 190, 3018, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 3029, 8, 191, 1, 192, 1, 192, 3, 192, 3033, 8, 192, 1, 192, 3, 192, 3036, 8, 192, 1, 192, 3, 192, 3039, 8, 192, 1, 192, 1, 192, 3, 192, 3043, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3048, 8, 192, 1, 192, 3, 192, 3051, 8, 192, 1, 192, 3, 192, 3054, 8, 192, 1, 192, 3, 192, 3057, 8, 192, 1, 192, 3, 192, 3060, 8, 192, 1, 192, 3, 192, 3063, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3069, 8, 192, 1, 192, 3, 192, 3072, 8, 192, 1, 192, 3, 192, 3075, 8, 192, 1, 192, 3, 192, 3078, 8, 192, 1, 192, 3, 192, 3081, 8, 192, 1, 192, 3, 192, 3084, 8, 192, 1, 192, 3, 192, 3087, 8, 192, 1, 192, 3, 192, 3090, 8, 192, 1, 192, 3, 192, 3093, 8, 192, 1, 192, 3, 192, 3096, 8, 192, 1, 192, 1, 192, 3, 192, 3100, 8, 192, 3, 192, 3102, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3107, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3112, 8, 192, 1, 192, 3, 192, 3115, 8, 192, 1, 192, 3, 192, 3118, 8, 192, 1, 192, 3, 192, 3121, 8, 192, 1, 192, 3, 192, 3124, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3130, 8, 192, 1, 192, 3, 192, 3133, 8, 192, 1, 192, 3, 192, 3136, 8, 192, 1, 192, 3, 192, 3139, 8, 192, 1, 192, 3, 192, 3142, 8, 192, 1, 192, 3, 192, 3145, 8, 192, 1, 192, 3, 192, 3148, 8, 192, 1, 192, 3, 192, 3151, 8, 192, 1, 192, 3, 192, 3154, 8, 192, 1, 192, 3, 192, 3157, 8, 192, 1, 192, 1, 192, 3, 192, 3161, 8, 192, 3, 192, 3163, 8, 192, 3, 192, 3165, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 3170, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3175, 8, 193, 1, 193, 1, 193, 3, 193, 3179, 8, 193, 1, 193, 1, 193, 3, 193, 3183, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3188, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 3193, 8, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 5, 195, 3200, 8, 195, 10, 195, 12, 195, 3203, 9, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 5, 196, 3210, 8, 196, 10, 196, 12, 196, 3213, 9, 196, 1, 197, 1, 197, 1, 197, 5, 197, 3218, 8, 197, 10, 197, 12, 197, 3221, 9, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 4, 199, 3230, 8, 199, 11, 199, 12, 199, 3231, 1, 199, 3, 199, 3235, 8, 199, 1, 200, 1, 200, 5, 200, 3239, 8, 200, 10, 200, 12, 200, 3242, 9, 200, 1, 200, 1, 200, 5, 200, 3246, 8, 200, 10, 200, 12, 200, 3249, 9, 200, 1, 200, 1, 200, 5, 200, 3253, 8, 200, 10, 200, 12, 200, 3256, 9, 200, 1, 200, 1, 200, 5, 200, 3260, 8, 200, 10, 200, 12, 200, 3263, 9, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 3269, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 3279, 8, 201, 3, 201, 3281, 8, 201, 1, 201, 1, 201, 3, 201, 3285, 8, 201, 5, 201, 3287, 8, 201, 10, 201, 12, 201, 3290, 9, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 3296, 8, 202, 1, 202, 5, 202, 3299, 8, 202, 10, 202, 12, 202, 3302, 9, 202, 1, 203, 3, 203, 3305, 8, 203, 1, 203, 1, 203, 3, 203, 3309, 8, 203, 1, 203, 3, 203, 3312, 8, 203, 1, 203, 3, 203, 3315, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 3326, 8, 204, 1, 204, 1, 204, 3, 204, 3330, 8, 204, 3, 204, 3332, 8, 204, 1, 204, 3, 204, 3335, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3346, 8, 205, 10, 205, 12, 205, 3349, 9, 205, 3, 205, 3351, 8, 205, 1, 205, 3, 205, 3354, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3364, 8, 205, 10, 205, 12, 205, 3367, 9, 205, 3, 205, 3369, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3376, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3383, 8, 205, 10, 205, 12, 205, 3386, 9, 205, 1, 205, 1, 205, 3, 205, 3390, 8, 205, 3, 205, 3392, 8, 205, 3, 205, 3394, 8, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 3409, 8, 207, 10, 207, 12, 207, 3412, 9, 207, 3, 207, 3414, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 3422, 8, 207, 1, 207, 3, 207, 3425, 8, 207, 1, 208, 1, 208, 3, 208, 3429, 8, 208, 1, 208, 3, 208, 3432, 8, 208, 1, 208, 3, 208, 3435, 8, 208, 1, 208, 3, 208, 3438, 8, 208, 1, 208, 3, 208, 3441, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3453, 8, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 3461, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3468, 8, 213, 1, 213, 3, 213, 3471, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 3478, 8, 214, 1, 214, 3, 214, 3481, 8, 214, 1, 215, 1, 215, 1, 215, 3, 215, 3486, 8, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 3, 216, 3493, 8, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3501, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 3, 218, 3507, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3512, 8, 218, 1, 218, 1, 218, 3, 218, 3516, 8, 218, 1, 219, 1, 219, 1, 219, 3, 219, 3521, 8, 219, 1, 220, 1, 220, 3, 220, 3525, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3532, 8, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 5, 221, 3544, 8, 221, 10, 221, 12, 221, 3547, 9, 221, 3, 221, 3549, 8, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3556, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 3562, 8, 223, 10, 223, 12, 223, 3565, 9, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 3572, 8, 223, 10, 223, 12, 223, 3575, 9, 223, 3, 223, 3577, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 3, 225, 3586, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 3593, 8, 225, 10, 225, 12, 225, 3596, 9, 225, 3, 225, 3598, 8, 225, 1, 225, 1, 225, 1, 226, 1, 226, 3, 226, 3604, 8, 226, 1, 226, 3, 226, 3607, 8, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3612, 8, 226, 1, 226, 3, 226, 3615, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3629, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3635, 8, 227, 3, 227, 3637, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 5, 228, 3646, 8, 228, 10, 228, 12, 228, 3649, 9, 228, 1, 229, 1, 229, 1, 229, 3, 229, 3654, 8, 229, 1, 229, 3, 229, 3657, 8, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 5, 229, 3665, 8, 229, 10, 229, 12, 229, 3668, 9, 229, 1, 229, 1, 229, 3, 229, 3672, 8, 229, 1, 229, 1, 229, 3, 229, 3676, 8, 229, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3693, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3699, 8, 232, 3, 232, 3701, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 3, 233, 3709, 8, 233, 1, 234, 1, 234, 1, 234, 5, 234, 3714, 8, 234, 10, 234, 12, 234, 3717, 9, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3728, 8, 235, 10, 235, 12, 235, 3731, 9, 235, 1, 236, 1, 236, 1, 236, 3, 236, 3736, 8, 236, 1, 236, 3, 236, 3739, 8, 236, 1, 236, 3, 236, 3742, 8, 236, 1, 236, 3, 236, 3745, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3754, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3761, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3767, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3776, 8, 239, 1, 240, 1, 240, 3, 240, 3780, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 3786, 8, 240, 10, 240, 12, 240, 3789, 9, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3798, 8, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 5, 241, 3806, 8, 241, 10, 241, 12, 241, 3809, 9, 241, 1, 241, 1, 241, 3, 241, 3813, 8, 241, 1, 242, 1, 242, 3, 242, 3817, 8, 242, 1, 242, 1, 242, 5, 242, 3821, 8, 242, 10, 242, 12, 242, 3824, 9, 242, 1, 242, 1, 242, 3, 242, 3828, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3833, 8, 243, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 3840, 8, 245, 1, 245, 3, 245, 3843, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3848, 8, 245, 1, 245, 3, 245, 3851, 8, 245, 5, 245, 3853, 8, 245, 10, 245, 12, 245, 3856, 9, 245, 1, 246, 1, 246, 3, 246, 3860, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 3868, 8, 248, 1, 248, 1, 248, 1, 248, 3, 248, 3873, 8, 248, 4, 248, 3875, 8, 248, 11, 248, 12, 248, 3876, 3, 248, 3879, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3886, 8, 249, 10, 249, 12, 249, 3889, 9, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3909, 8, 253, 10, 253, 12, 253, 3912, 9, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3919, 8, 253, 10, 253, 12, 253, 3922, 9, 253, 3, 253, 3924, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3931, 8, 254, 1, 254, 3, 254, 3934, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3944, 8, 254, 1, 254, 1, 254, 1, 254, 5, 254, 3949, 8, 254, 10, 254, 12, 254, 3952, 9, 254, 3, 254, 3954, 8, 254, 3, 254, 3956, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3968, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3979, 8, 254, 3, 254, 3981, 8, 254, 1, 255, 1, 255, 1, 256, 1, 256, 3, 256, 3987, 8, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3992, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 4001, 8, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 4, 259, 4012, 8, 259, 11, 259, 12, 259, 4013, 1, 259, 1, 259, 3, 259, 4018, 8, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 4, 260, 4028, 8, 260, 11, 260, 12, 260, 4029, 1, 260, 1, 260, 3, 260, 4034, 8, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 4043, 8, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 4062, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 4078, 8, 264, 10, 264, 12, 264, 4081, 9, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4092, 8, 264, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 4107, 8, 266, 1, 266, 1, 266, 3, 266, 4111, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4125, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 4130, 8, 268, 10, 268, 12, 268, 4133, 9, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4146, 8, 269, 1, 270, 5, 270, 4149, 8, 270, 10, 270, 12, 270, 4152, 9, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 4161, 8, 270, 10, 270, 12, 270, 4164, 9, 270, 1, 271, 1, 271, 1, 271, 5, 271, 4169, 8, 271, 10, 271, 12, 271, 4172, 9, 271, 1, 272, 1, 272, 1, 272, 5, 272, 4177, 8, 272, 10, 272, 12, 272, 4180, 9, 272, 1, 273, 1, 273, 1, 273, 5, 273, 4185, 8, 273, 10, 273, 12, 273, 4188, 9, 273, 1, 274, 1, 274, 1, 274, 5, 274, 4193, 8, 274, 10, 274, 12, 274, 4196, 9, 274, 1, 275, 1, 275, 1, 275, 5, 275, 4201, 8, 275, 10, 275, 12, 275, 4204, 9, 275, 1, 276, 1, 276, 1, 276, 5, 276, 4209, 8, 276, 10, 276, 12, 276, 4212, 9, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 279, 1, 279, 3, 279, 4222, 8, 279, 1, 279, 1, 279, 3, 279, 4226, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4236, 8, 280, 3, 280, 4238, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 4243, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 4257, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4270, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 4279, 8, 284, 10, 284, 12, 284, 4282, 9, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 4290, 8, 285, 1, 286, 5, 286, 4293, 8, 286, 10, 286, 12, 286, 4296, 9, 286, 1, 286, 1, 286, 1, 286, 3, 286, 4301, 8, 286, 1, 287, 1, 287, 1, 287, 5, 287, 4306, 8, 287, 10, 287, 12, 287, 4309, 9, 287, 1, 288, 1, 288, 3, 288, 4313, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 5, 289, 4320, 8, 289, 10, 289, 12, 289, 4323, 9, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 3, 290, 4330, 8, 290, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 4336, 8, 291, 10, 291, 12, 291, 4339, 9, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 3, 292, 4346, 8, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 295, 1, 295, 3, 295, 4356, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 4361, 8, 296, 1, 297, 1, 297, 1, 298, 1, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 5, 300, 4372, 8, 300, 10, 300, 12, 300, 4375, 9, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 4382, 8, 301, 10, 301, 12, 301, 4385, 9, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 4438, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4444, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4453, 8, 303, 3, 303, 4455, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 5, 303, 4469, 8, 303, 10, 303, 12, 303, 4472, 9, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4479, 8, 303, 1, 303, 1, 303, 3, 303, 4483, 8, 303, 3, 303, 4485, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4491, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4496, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4513, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4539, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4544, 8, 303, 3, 303, 4546, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4574, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4591, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4596, 8, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4605, 8, 303, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 4616, 8, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4621, 8, 306, 10, 306, 12, 306, 4624, 9, 306, 1, 307, 1, 307, 1, 307, 3, 307, 4629, 8, 307, 1, 308, 1, 308, 1, 308, 3, 308, 4634, 8, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 5, 312, 4645, 8, 312, 10, 312, 12, 312, 4648, 9, 312, 1, 313, 1, 313, 1, 313, 5, 313, 4653, 8, 313, 10, 313, 12, 313, 4656, 9, 313, 1, 313, 1, 313, 1, 313, 1, 313, 5, 313, 4662, 8, 313, 10, 313, 12, 313, 4665, 9, 313, 3, 313, 4667, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4677, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 4691, 8, 316, 1, 317, 1, 317, 1, 317, 5, 317, 4696, 8, 317, 10, 317, 12, 317, 4699, 9, 317, 1, 317, 1, 750, 0, 318, 0, 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, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 0, 63, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 2, 0, 58, 58, 101, 101, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 4, 0, 73, 74, 148, 149, 208, 209, 392, 393, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 214, 214, 272, 272, 1, 0, 80, 82, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 3, 0, 184, 184, 270, 270, 286, 286, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 1, 0, 395, 396, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 5320, 0, 639, 1, 0, 0, 0, 2, 646, 1, 0, 0, 0, 4, 651, 1, 0, 0, 0, 6, 685, 1, 0, 0, 0, 8, 687, 1, 0, 0, 0, 10, 753, 1, 0, 0, 0, 12, 755, 1, 0, 0, 0, 14, 774, 1, 0, 0, 0, 16, 783, 1, 0, 0, 0, 18, 791, 1, 0, 0, 0, 20, 804, 1, 0, 0, 0, 22, 815, 1, 0, 0, 0, 24, 820, 1, 0, 0, 0, 26, 831, 1, 0, 0, 0, 28, 890, 1, 0, 0, 0, 30, 892, 1, 0, 0, 0, 32, 895, 1, 0, 0, 0, 34, 899, 1, 0, 0, 0, 36, 901, 1, 0, 0, 0, 38, 905, 1, 0, 0, 0, 40, 908, 1, 0, 0, 0, 42, 954, 1, 0, 0, 0, 44, 956, 1, 0, 0, 0, 46, 959, 1, 0, 0, 0, 48, 968, 1, 0, 0, 0, 50, 983, 1, 0, 0, 0, 52, 995, 1, 0, 0, 0, 54, 1015, 1, 0, 0, 0, 56, 1019, 1, 0, 0, 0, 58, 1026, 1, 0, 0, 0, 60, 1051, 1, 0, 0, 0, 62, 1068, 1, 0, 0, 0, 64, 1070, 1, 0, 0, 0, 66, 1072, 1, 0, 0, 0, 68, 1252, 1, 0, 0, 0, 70, 1262, 1, 0, 0, 0, 72, 1273, 1, 0, 0, 0, 74, 1275, 1, 0, 0, 0, 76, 1279, 1, 0, 0, 0, 78, 1291, 1, 0, 0, 0, 80, 1304, 1, 0, 0, 0, 82, 1323, 1, 0, 0, 0, 84, 1343, 1, 0, 0, 0, 86, 1348, 1, 0, 0, 0, 88, 1351, 1, 0, 0, 0, 90, 1355, 1, 0, 0, 0, 92, 1362, 1, 0, 0, 0, 94, 1371, 1, 0, 0, 0, 96, 1377, 1, 0, 0, 0, 98, 1379, 1, 0, 0, 0, 100, 1393, 1, 0, 0, 0, 102, 1415, 1, 0, 0, 0, 104, 1417, 1, 0, 0, 0, 106, 1425, 1, 0, 0, 0, 108, 1432, 1, 0, 0, 0, 110, 1434, 1, 0, 0, 0, 112, 1448, 1, 0, 0, 0, 114, 1455, 1, 0, 0, 0, 116, 1457, 1, 0, 0, 0, 118, 1470, 1, 0, 0, 0, 120, 1472, 1, 0, 0, 0, 122, 1494, 1, 0, 0, 0, 124, 1504, 1, 0, 0, 0, 126, 1507, 1, 0, 0, 0, 128, 1518, 1, 0, 0, 0, 130, 1526, 1, 0, 0, 0, 132, 1569, 1, 0, 0, 0, 134, 1578, 1, 0, 0, 0, 136, 1606, 1, 0, 0, 0, 138, 1619, 1, 0, 0, 0, 140, 1621, 1, 0, 0, 0, 142, 1627, 1, 0, 0, 0, 144, 1630, 1, 0, 0, 0, 146, 1636, 1, 0, 0, 0, 148, 1655, 1, 0, 0, 0, 150, 1657, 1, 0, 0, 0, 152, 1691, 1, 0, 0, 0, 154, 1704, 1, 0, 0, 0, 156, 1709, 1, 0, 0, 0, 158, 1720, 1, 0, 0, 0, 160, 1737, 1, 0, 0, 0, 162, 1739, 1, 0, 0, 0, 164, 1744, 1, 0, 0, 0, 166, 1751, 1, 0, 0, 0, 168, 1753, 1, 0, 0, 0, 170, 1756, 1, 0, 0, 0, 172, 1759, 1, 0, 0, 0, 174, 1773, 1, 0, 0, 0, 176, 1781, 1, 0, 0, 0, 178, 1802, 1, 0, 0, 0, 180, 1804, 1, 0, 0, 0, 182, 1821, 1, 0, 0, 0, 184, 1835, 1, 0, 0, 0, 186, 1837, 1, 0, 0, 0, 188, 1846, 1, 0, 0, 0, 190, 1864, 1, 0, 0, 0, 192, 1867, 1, 0, 0, 0, 194, 1880, 1, 0, 0, 0, 196, 1882, 1, 0, 0, 0, 198, 1886, 1, 0, 0, 0, 200, 1894, 1, 0, 0, 0, 202, 1898, 1, 0, 0, 0, 204, 1907, 1, 0, 0, 0, 206, 1913, 1, 0, 0, 0, 208, 1919, 1, 0, 0, 0, 210, 1924, 1, 0, 0, 0, 212, 1970, 1, 0, 0, 0, 214, 1972, 1, 0, 0, 0, 216, 1980, 1, 0, 0, 0, 218, 1988, 1, 0, 0, 0, 220, 1996, 1, 0, 0, 0, 222, 2007, 1, 0, 0, 0, 224, 2009, 1, 0, 0, 0, 226, 2014, 1, 0, 0, 0, 228, 2016, 1, 0, 0, 0, 230, 2018, 1, 0, 0, 0, 232, 2031, 1, 0, 0, 0, 234, 2039, 1, 0, 0, 0, 236, 2048, 1, 0, 0, 0, 238, 2052, 1, 0, 0, 0, 240, 2057, 1, 0, 0, 0, 242, 2061, 1, 0, 0, 0, 244, 2067, 1, 0, 0, 0, 246, 2075, 1, 0, 0, 0, 248, 2077, 1, 0, 0, 0, 250, 2080, 1, 0, 0, 0, 252, 2087, 1, 0, 0, 0, 254, 2098, 1, 0, 0, 0, 256, 2111, 1, 0, 0, 0, 258, 2113, 1, 0, 0, 0, 260, 2121, 1, 0, 0, 0, 262, 2125, 1, 0, 0, 0, 264, 2133, 1, 0, 0, 0, 266, 2135, 1, 0, 0, 0, 268, 2138, 1, 0, 0, 0, 270, 2145, 1, 0, 0, 0, 272, 2153, 1, 0, 0, 0, 274, 2160, 1, 0, 0, 0, 276, 2168, 1, 0, 0, 0, 278, 2176, 1, 0, 0, 0, 280, 2180, 1, 0, 0, 0, 282, 2182, 1, 0, 0, 0, 284, 2193, 1, 0, 0, 0, 286, 2197, 1, 0, 0, 0, 288, 2209, 1, 0, 0, 0, 290, 2225, 1, 0, 0, 0, 292, 2230, 1, 0, 0, 0, 294, 2232, 1, 0, 0, 0, 296, 2236, 1, 0, 0, 0, 298, 2243, 1, 0, 0, 0, 300, 2256, 1, 0, 0, 0, 302, 2295, 1, 0, 0, 0, 304, 2297, 1, 0, 0, 0, 306, 2302, 1, 0, 0, 0, 308, 2307, 1, 0, 0, 0, 310, 2314, 1, 0, 0, 0, 312, 2319, 1, 0, 0, 0, 314, 2324, 1, 0, 0, 0, 316, 2330, 1, 0, 0, 0, 318, 2332, 1, 0, 0, 0, 320, 2341, 1, 0, 0, 0, 322, 2353, 1, 0, 0, 0, 324, 2433, 1, 0, 0, 0, 326, 2439, 1, 0, 0, 0, 328, 2465, 1, 0, 0, 0, 330, 2467, 1, 0, 0, 0, 332, 2489, 1, 0, 0, 0, 334, 2494, 1, 0, 0, 0, 336, 2498, 1, 0, 0, 0, 338, 2530, 1, 0, 0, 0, 340, 2532, 1, 0, 0, 0, 342, 2543, 1, 0, 0, 0, 344, 2549, 1, 0, 0, 0, 346, 2551, 1, 0, 0, 0, 348, 2583, 1, 0, 0, 0, 350, 2590, 1, 0, 0, 0, 352, 2596, 1, 0, 0, 0, 354, 2602, 1, 0, 0, 0, 356, 2617, 1, 0, 0, 0, 358, 2627, 1, 0, 0, 0, 360, 2635, 1, 0, 0, 0, 362, 2757, 1, 0, 0, 0, 364, 2892, 1, 0, 0, 0, 366, 2920, 1, 0, 0, 0, 368, 2937, 1, 0, 0, 0, 370, 2954, 1, 0, 0, 0, 372, 2956, 1, 0, 0, 0, 374, 2959, 1, 0, 0, 0, 376, 2985, 1, 0, 0, 0, 378, 2990, 1, 0, 0, 0, 380, 3017, 1, 0, 0, 0, 382, 3028, 1, 0, 0, 0, 384, 3030, 1, 0, 0, 0, 386, 3166, 1, 0, 0, 0, 388, 3189, 1, 0, 0, 0, 390, 3201, 1, 0, 0, 0, 392, 3206, 1, 0, 0, 0, 394, 3214, 1, 0, 0, 0, 396, 3222, 1, 0, 0, 0, 398, 3234, 1, 0, 0, 0, 400, 3268, 1, 0, 0, 0, 402, 3270, 1, 0, 0, 0, 404, 3295, 1, 0, 0, 0, 406, 3304, 1, 0, 0, 0, 408, 3334, 1, 0, 0, 0, 410, 3393, 1, 0, 0, 0, 412, 3395, 1, 0, 0, 0, 414, 3424, 1, 0, 0, 0, 416, 3426, 1, 0, 0, 0, 418, 3442, 1, 0, 0, 0, 420, 3454, 1, 0, 0, 0, 422, 3456, 1, 0, 0, 0, 424, 3460, 1, 0, 0, 0, 426, 3470, 1, 0, 0, 0, 428, 3480, 1, 0, 0, 0, 430, 3485, 1, 0, 0, 0, 432, 3492, 1, 0, 0, 0, 434, 3496, 1, 0, 0, 0, 436, 3515, 1, 0, 0, 0, 438, 3520, 1, 0, 0, 0, 440, 3522, 1, 0, 0, 0, 442, 3526, 1, 0, 0, 0, 444, 3552, 1, 0, 0, 0, 446, 3557, 1, 0, 0, 0, 448, 3578, 1, 0, 0, 0, 450, 3583, 1, 0, 0, 0, 452, 3614, 1, 0, 0, 0, 454, 3616, 1, 0, 0, 0, 456, 3642, 1, 0, 0, 0, 458, 3675, 1, 0, 0, 0, 460, 3677, 1, 0, 0, 0, 462, 3679, 1, 0, 0, 0, 464, 3681, 1, 0, 0, 0, 466, 3708, 1, 0, 0, 0, 468, 3710, 1, 0, 0, 0, 470, 3718, 1, 0, 0, 0, 472, 3744, 1, 0, 0, 0, 474, 3746, 1, 0, 0, 0, 476, 3766, 1, 0, 0, 0, 478, 3768, 1, 0, 0, 0, 480, 3779, 1, 0, 0, 0, 482, 3792, 1, 0, 0, 0, 484, 3827, 1, 0, 0, 0, 486, 3829, 1, 0, 0, 0, 488, 3834, 1, 0, 0, 0, 490, 3837, 1, 0, 0, 0, 492, 3859, 1, 0, 0, 0, 494, 3861, 1, 0, 0, 0, 496, 3867, 1, 0, 0, 0, 498, 3880, 1, 0, 0, 0, 500, 3890, 1, 0, 0, 0, 502, 3894, 1, 0, 0, 0, 504, 3898, 1, 0, 0, 0, 506, 3902, 1, 0, 0, 0, 508, 3980, 1, 0, 0, 0, 510, 3982, 1, 0, 0, 0, 512, 3986, 1, 0, 0, 0, 514, 3991, 1, 0, 0, 0, 516, 3993, 1, 0, 0, 0, 518, 4004, 1, 0, 0, 0, 520, 4021, 1, 0, 0, 0, 522, 4037, 1, 0, 0, 0, 524, 4046, 1, 0, 0, 0, 526, 4061, 1, 0, 0, 0, 528, 4091, 1, 0, 0, 0, 530, 4093, 1, 0, 0, 0, 532, 4110, 1, 0, 0, 0, 534, 4124, 1, 0, 0, 0, 536, 4126, 1, 0, 0, 0, 538, 4145, 1, 0, 0, 0, 540, 4150, 1, 0, 0, 0, 542, 4165, 1, 0, 0, 0, 544, 4173, 1, 0, 0, 0, 546, 4181, 1, 0, 0, 0, 548, 4189, 1, 0, 0, 0, 550, 4197, 1, 0, 0, 0, 552, 4205, 1, 0, 0, 0, 554, 4213, 1, 0, 0, 0, 556, 4217, 1, 0, 0, 0, 558, 4225, 1, 0, 0, 0, 560, 4237, 1, 0, 0, 0, 562, 4256, 1, 0, 0, 0, 564, 4258, 1, 0, 0, 0, 566, 4269, 1, 0, 0, 0, 568, 4271, 1, 0, 0, 0, 570, 4289, 1, 0, 0, 0, 572, 4294, 1, 0, 0, 0, 574, 4302, 1, 0, 0, 0, 576, 4310, 1, 0, 0, 0, 578, 4314, 1, 0, 0, 0, 580, 4326, 1, 0, 0, 0, 582, 4331, 1, 0, 0, 0, 584, 4342, 1, 0, 0, 0, 586, 4349, 1, 0, 0, 0, 588, 4351, 1, 0, 0, 0, 590, 4355, 1, 0, 0, 0, 592, 4357, 1, 0, 0, 0, 594, 4362, 1, 0, 0, 0, 596, 4364, 1, 0, 0, 0, 598, 4366, 1, 0, 0, 0, 600, 4368, 1, 0, 0, 0, 602, 4376, 1, 0, 0, 0, 604, 4437, 1, 0, 0, 0, 606, 4604, 1, 0, 0, 0, 608, 4606, 1, 0, 0, 0, 610, 4615, 1, 0, 0, 0, 612, 4617, 1, 0, 0, 0, 614, 4628, 1, 0, 0, 0, 616, 4630, 1, 0, 0, 0, 618, 4635, 1, 0, 0, 0, 620, 4637, 1, 0, 0, 0, 622, 4639, 1, 0, 0, 0, 624, 4641, 1, 0, 0, 0, 626, 4666, 1, 0, 0, 0, 628, 4668, 1, 0, 0, 0, 630, 4676, 1, 0, 0, 0, 632, 4690, 1, 0, 0, 0, 634, 4692, 1, 0, 0, 0, 636, 638, 3, 2, 1, 0, 637, 636, 1, 0, 0, 0, 638, 641, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 642, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 642, 643, 5, 0, 0, 1, 643, 1, 1, 0, 0, 0, 644, 647, 3, 4, 2, 0, 645, 647, 3, 10, 5, 0, 646, 644, 1, 0, 0, 0, 646, 645, 1, 0, 0, 0, 647, 649, 1, 0, 0, 0, 648, 650, 5, 398, 0, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 3, 1, 0, 0, 0, 651, 661, 5, 119, 0, 0, 652, 654, 3, 6, 3, 0, 653, 652, 1, 0, 0, 0, 654, 657, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 658, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 658, 662, 3, 10, 5, 0, 659, 660, 5, 284, 0, 0, 660, 662, 3, 314, 157, 0, 661, 655, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 5, 1, 0, 0, 0, 663, 686, 5, 122, 0, 0, 664, 686, 5, 138, 0, 0, 665, 686, 5, 88, 0, 0, 666, 668, 5, 37, 0, 0, 667, 669, 7, 0, 0, 0, 668, 667, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 686, 1, 0, 0, 0, 670, 686, 5, 192, 0, 0, 671, 686, 5, 21, 0, 0, 672, 686, 5, 10, 0, 0, 673, 686, 5, 275, 0, 0, 674, 686, 5, 191, 0, 0, 675, 686, 5, 19, 0, 0, 676, 678, 5, 377, 0, 0, 677, 679, 5, 225, 0, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 681, 1, 0, 0, 0, 680, 682, 3, 8, 4, 0, 681, 680, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 686, 1, 0, 0, 0, 683, 686, 5, 79, 0, 0, 684, 686, 5, 78, 0, 0, 685, 663, 1, 0, 0, 0, 685, 664, 1, 0, 0, 0, 685, 665, 1, 0, 0, 0, 685, 666, 1, 0, 0, 0, 685, 670, 1, 0, 0, 0, 685, 671, 1, 0, 0, 0, 685, 672, 1, 0, 0, 0, 685, 673, 1, 0, 0, 0, 685, 674, 1, 0, 0, 0, 685, 675, 1, 0, 0, 0, 685, 676, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 7, 1, 0, 0, 0, 687, 688, 7, 1, 0, 0, 688, 9, 1, 0, 0, 0, 689, 754, 3, 314, 157, 0, 690, 754, 3, 12, 6, 0, 691, 754, 3, 16, 8, 0, 692, 754, 3, 18, 9, 0, 693, 754, 3, 20, 10, 0, 694, 754, 3, 24, 12, 0, 695, 696, 5, 277, 0, 0, 696, 697, 5, 320, 0, 0, 697, 700, 3, 420, 210, 0, 698, 699, 5, 387, 0, 0, 699, 701, 3, 196, 98, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 754, 1, 0, 0, 0, 702, 754, 3, 28, 14, 0, 703, 704, 5, 86, 0, 0, 704, 705, 5, 139, 0, 0, 705, 707, 3, 426, 213, 0, 706, 708, 3, 444, 222, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 754, 1, 0, 0, 0, 709, 710, 5, 365, 0, 0, 710, 711, 3, 426, 213, 0, 711, 713, 3, 346, 173, 0, 712, 714, 3, 444, 222, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 754, 1, 0, 0, 0, 715, 754, 3, 348, 174, 0, 716, 718, 5, 203, 0, 0, 717, 719, 5, 436, 0, 0, 718, 717, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 5, 166, 0, 0, 721, 726, 3, 426, 213, 0, 722, 724, 5, 17, 0, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 727, 3, 590, 295, 0, 726, 723, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 370, 0, 0, 729, 730, 3, 404, 202, 0, 730, 731, 5, 224, 0, 0, 731, 732, 3, 536, 268, 0, 732, 733, 3, 352, 176, 0, 733, 754, 1, 0, 0, 0, 734, 735, 5, 249, 0, 0, 735, 736, 3, 590, 295, 0, 736, 737, 5, 139, 0, 0, 737, 738, 3, 314, 157, 0, 738, 754, 1, 0, 0, 0, 739, 740, 5, 115, 0, 0, 740, 741, 3, 590, 295, 0, 741, 742, 5, 370, 0, 0, 742, 743, 3, 262, 131, 0, 743, 754, 1, 0, 0, 0, 744, 745, 5, 304, 0, 0, 745, 746, 3, 600, 300, 0, 746, 750, 5, 405, 0, 0, 747, 749, 9, 0, 0, 0, 748, 747, 1, 0, 0, 0, 749, 752, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 753, 689, 1, 0, 0, 0, 753, 690, 1, 0, 0, 0, 753, 691, 1, 0, 0, 0, 753, 692, 1, 0, 0, 0, 753, 693, 1, 0, 0, 0, 753, 694, 1, 0, 0, 0, 753, 695, 1, 0, 0, 0, 753, 702, 1, 0, 0, 0, 753, 703, 1, 0, 0, 0, 753, 709, 1, 0, 0, 0, 753, 715, 1, 0, 0, 0, 753, 716, 1, 0, 0, 0, 753, 734, 1, 0, 0, 0, 753, 739, 1, 0, 0, 0, 753, 744, 1, 0, 0, 0, 754, 11, 1, 0, 0, 0, 755, 756, 5, 187, 0, 0, 756, 758, 5, 66, 0, 0, 757, 759, 5, 188, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 158, 0, 0, 761, 763, 5, 426, 0, 0, 762, 764, 5, 235, 0, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 5, 166, 0, 0, 766, 767, 5, 329, 0, 0, 767, 772, 3, 576, 288, 0, 768, 769, 5, 160, 0, 0, 769, 770, 5, 426, 0, 0, 770, 771, 5, 301, 0, 0, 771, 773, 5, 426, 0, 0, 772, 768, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 13, 1, 0, 0, 0, 774, 776, 5, 134, 0, 0, 775, 777, 5, 204, 0, 0, 776, 775, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 279, 0, 0, 779, 780, 5, 399, 0, 0, 780, 781, 5, 426, 0, 0, 781, 782, 5, 400, 0, 0, 782, 15, 1, 0, 0, 0, 783, 784, 5, 120, 0, 0, 784, 785, 5, 329, 0, 0, 785, 786, 3, 576, 288, 0, 786, 787, 5, 341, 0, 0, 787, 789, 5, 426, 0, 0, 788, 790, 3, 14, 7, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 17, 1, 0, 0, 0, 791, 797, 5, 153, 0, 0, 792, 794, 5, 123, 0, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 5, 329, 0, 0, 796, 798, 3, 576, 288, 0, 797, 793, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 5, 139, 0, 0, 800, 802, 5, 426, 0, 0, 801, 803, 3, 372, 186, 0, 802, 801, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 19, 1, 0, 0, 0, 804, 805, 5, 277, 0, 0, 805, 806, 5, 103, 0, 0, 806, 809, 3, 22, 11, 0, 807, 808, 5, 278, 0, 0, 808, 810, 3, 22, 11, 0, 809, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 812, 5, 387, 0, 0, 812, 814, 3, 196, 98, 0, 813, 811, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 21, 1, 0, 0, 0, 815, 818, 3, 420, 210, 0, 816, 817, 5, 395, 0, 0, 817, 819, 3, 26, 13, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 23, 1, 0, 0, 0, 820, 821, 5, 277, 0, 0, 821, 822, 5, 187, 0, 0, 822, 825, 3, 22, 11, 0, 823, 824, 5, 166, 0, 0, 824, 826, 3, 420, 210, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 828, 5, 387, 0, 0, 828, 830, 3, 196, 98, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 25, 1, 0, 0, 0, 831, 834, 5, 426, 0, 0, 832, 833, 5, 395, 0, 0, 833, 835, 5, 426, 0, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 27, 1, 0, 0, 0, 836, 891, 3, 42, 21, 0, 837, 891, 3, 44, 22, 0, 838, 891, 3, 46, 23, 0, 839, 891, 3, 384, 192, 0, 840, 891, 3, 50, 25, 0, 841, 891, 3, 48, 24, 0, 842, 891, 3, 360, 180, 0, 843, 891, 3, 58, 29, 0, 844, 891, 3, 66, 33, 0, 845, 891, 3, 116, 58, 0, 846, 891, 3, 134, 67, 0, 847, 891, 3, 150, 75, 0, 848, 891, 3, 152, 76, 0, 849, 891, 3, 156, 78, 0, 850, 891, 3, 154, 77, 0, 851, 891, 3, 148, 74, 0, 852, 891, 3, 120, 60, 0, 853, 891, 3, 126, 63, 0, 854, 891, 3, 122, 61, 0, 855, 891, 3, 124, 62, 0, 856, 891, 3, 128, 64, 0, 857, 891, 3, 130, 65, 0, 858, 891, 3, 132, 66, 0, 859, 891, 3, 60, 30, 0, 860, 891, 3, 70, 35, 0, 861, 891, 3, 72, 36, 0, 862, 891, 3, 74, 37, 0, 863, 891, 3, 76, 38, 0, 864, 891, 3, 78, 39, 0, 865, 891, 3, 92, 46, 0, 866, 891, 3, 84, 42, 0, 867, 891, 3, 94, 47, 0, 868, 891, 3, 86, 43, 0, 869, 891, 3, 80, 40, 0, 870, 891, 3, 82, 41, 0, 871, 891, 3, 90, 45, 0, 872, 891, 3, 88, 44, 0, 873, 874, 5, 1, 0, 0, 874, 876, 7, 2, 0, 0, 875, 877, 5, 431, 0, 0, 876, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 891, 1, 0, 0, 0, 880, 881, 5, 176, 0, 0, 881, 883, 5, 258, 0, 0, 882, 884, 5, 426, 0, 0, 883, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 891, 1, 0, 0, 0, 887, 891, 3, 606, 303, 0, 888, 891, 3, 386, 193, 0, 889, 891, 3, 388, 194, 0, 890, 836, 1, 0, 0, 0, 890, 837, 1, 0, 0, 0, 890, 838, 1, 0, 0, 0, 890, 839, 1, 0, 0, 0, 890, 840, 1, 0, 0, 0, 890, 841, 1, 0, 0, 0, 890, 842, 1, 0, 0, 0, 890, 843, 1, 0, 0, 0, 890, 844, 1, 0, 0, 0, 890, 845, 1, 0, 0, 0, 890, 846, 1, 0, 0, 0, 890, 847, 1, 0, 0, 0, 890, 848, 1, 0, 0, 0, 890, 849, 1, 0, 0, 0, 890, 850, 1, 0, 0, 0, 890, 851, 1, 0, 0, 0, 890, 852, 1, 0, 0, 0, 890, 853, 1, 0, 0, 0, 890, 854, 1, 0, 0, 0, 890, 855, 1, 0, 0, 0, 890, 856, 1, 0, 0, 0, 890, 857, 1, 0, 0, 0, 890, 858, 1, 0, 0, 0, 890, 859, 1, 0, 0, 0, 890, 860, 1, 0, 0, 0, 890, 861, 1, 0, 0, 0, 890, 862, 1, 0, 0, 0, 890, 863, 1, 0, 0, 0, 890, 864, 1, 0, 0, 0, 890, 865, 1, 0, 0, 0, 890, 866, 1, 0, 0, 0, 890, 867, 1, 0, 0, 0, 890, 868, 1, 0, 0, 0, 890, 869, 1, 0, 0, 0, 890, 870, 1, 0, 0, 0, 890, 871, 1, 0, 0, 0, 890, 872, 1, 0, 0, 0, 890, 873, 1, 0, 0, 0, 890, 880, 1, 0, 0, 0, 890, 887, 1, 0, 0, 0, 890, 888, 1, 0, 0, 0, 890, 889, 1, 0, 0, 0, 891, 29, 1, 0, 0, 0, 892, 893, 5, 151, 0, 0, 893, 894, 5, 117, 0, 0, 894, 31, 1, 0, 0, 0, 895, 896, 5, 151, 0, 0, 896, 897, 5, 216, 0, 0, 897, 898, 5, 117, 0, 0, 898, 33, 1, 0, 0, 0, 899, 900, 7, 3, 0, 0, 900, 35, 1, 0, 0, 0, 901, 902, 5, 321, 0, 0, 902, 903, 5, 17, 0, 0, 903, 904, 5, 92, 0, 0, 904, 37, 1, 0, 0, 0, 905, 906, 3, 618, 309, 0, 906, 907, 5, 284, 0, 0, 907, 39, 1, 0, 0, 0, 908, 909, 3, 620, 310, 0, 909, 910, 5, 284, 0, 0, 910, 41, 1, 0, 0, 0, 911, 913, 5, 58, 0, 0, 912, 914, 5, 273, 0, 0, 913, 912, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 3, 64, 32, 0, 916, 918, 3, 32, 16, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 922, 3, 422, 211, 0, 920, 921, 5, 47, 0, 0, 921, 923, 5, 426, 0, 0, 922, 920, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 925, 1, 0, 0, 0, 924, 926, 3, 372, 186, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 928, 5, 196, 0, 0, 928, 930, 5, 426, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 934, 1, 0, 0, 0, 931, 932, 5, 387, 0, 0, 932, 933, 5, 76, 0, 0, 933, 935, 3, 196, 98, 0, 934, 931, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 955, 1, 0, 0, 0, 936, 937, 5, 58, 0, 0, 937, 938, 5, 273, 0, 0, 938, 940, 3, 64, 32, 0, 939, 941, 3, 32, 16, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 945, 3, 422, 211, 0, 943, 944, 5, 47, 0, 0, 944, 946, 5, 426, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 948, 5, 370, 0, 0, 948, 952, 3, 420, 210, 0, 949, 950, 5, 387, 0, 0, 950, 951, 5, 76, 0, 0, 951, 953, 3, 196, 98, 0, 952, 949, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 955, 1, 0, 0, 0, 954, 911, 1, 0, 0, 0, 954, 936, 1, 0, 0, 0, 955, 43, 1, 0, 0, 0, 956, 957, 5, 368, 0, 0, 957, 958, 3, 420, 210, 0, 958, 45, 1, 0, 0, 0, 959, 960, 5, 101, 0, 0, 960, 962, 3, 64, 32, 0, 961, 963, 3, 30, 15, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 3, 420, 210, 0, 965, 967, 3, 34, 17, 0, 966, 965, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 47, 1, 0, 0, 0, 968, 970, 5, 351, 0, 0, 969, 971, 5, 329, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 978, 3, 576, 288, 0, 973, 974, 5, 46, 0, 0, 974, 975, 5, 399, 0, 0, 975, 976, 3, 220, 110, 0, 976, 977, 5, 400, 0, 0, 977, 979, 1, 0, 0, 0, 978, 973, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 981, 1, 0, 0, 0, 980, 982, 5, 135, 0, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 49, 1, 0, 0, 0, 983, 984, 5, 101, 0, 0, 984, 986, 5, 329, 0, 0, 985, 987, 3, 30, 15, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 990, 3, 426, 213, 0, 989, 991, 5, 255, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 993, 1, 0, 0, 0, 992, 994, 3, 14, 7, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 51, 1, 0, 0, 0, 995, 998, 3, 590, 295, 0, 996, 997, 5, 395, 0, 0, 997, 999, 3, 590, 295, 0, 998, 996, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1013, 1, 0, 0, 0, 1000, 1010, 3, 590, 295, 0, 1001, 1006, 5, 395, 0, 0, 1002, 1007, 5, 104, 0, 0, 1003, 1007, 5, 175, 0, 0, 1004, 1007, 5, 375, 0, 0, 1005, 1007, 3, 590, 295, 0, 1006, 1002, 1, 0, 0, 0, 1006, 1003, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1005, 1, 0, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1001, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1014, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1013, 1000, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 53, 1, 0, 0, 0, 1015, 1017, 3, 52, 26, 0, 1016, 1018, 3, 578, 289, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 55, 1, 0, 0, 0, 1019, 1021, 3, 424, 212, 0, 1020, 1022, 3, 578, 289, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 1, 0, 0, 0, 1023, 1025, 3, 230, 115, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 57, 1, 0, 0, 0, 1026, 1049, 7, 4, 0, 0, 1027, 1029, 3, 64, 32, 0, 1028, 1030, 5, 122, 0, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 3, 420, 210, 0, 1032, 1050, 1, 0, 0, 0, 1033, 1035, 5, 69, 0, 0, 1034, 1036, 5, 122, 0, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1050, 3, 420, 210, 0, 1038, 1040, 5, 141, 0, 0, 1039, 1041, 5, 122, 0, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1050, 3, 512, 256, 0, 1043, 1046, 5, 138, 0, 0, 1044, 1046, 5, 122, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1050, 3, 56, 28, 0, 1048, 1050, 3, 56, 28, 0, 1049, 1027, 1, 0, 0, 0, 1049, 1033, 1, 0, 0, 0, 1049, 1038, 1, 0, 0, 0, 1049, 1045, 1, 0, 0, 0, 1049, 1048, 1, 0, 0, 0, 1050, 59, 1, 0, 0, 0, 1051, 1052, 5, 10, 0, 0, 1052, 1053, 5, 329, 0, 0, 1053, 1066, 3, 576, 288, 0, 1054, 1055, 5, 52, 0, 0, 1055, 1062, 5, 319, 0, 0, 1056, 1063, 5, 215, 0, 0, 1057, 1058, 5, 134, 0, 0, 1058, 1060, 5, 46, 0, 0, 1059, 1061, 3, 220, 110, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1067, 1, 0, 0, 0, 1064, 1065, 5, 33, 0, 0, 1065, 1067, 5, 204, 0, 0, 1066, 1054, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1067, 61, 1, 0, 0, 0, 1068, 1069, 7, 5, 0, 0, 1069, 63, 1, 0, 0, 0, 1070, 1071, 7, 6, 0, 0, 1071, 65, 1, 0, 0, 0, 1072, 1242, 5, 308, 0, 0, 1073, 1076, 7, 7, 0, 0, 1074, 1075, 5, 184, 0, 0, 1075, 1077, 3, 166, 83, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1243, 1, 0, 0, 0, 1078, 1080, 5, 122, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1085, 5, 330, 0, 0, 1082, 1083, 3, 62, 31, 0, 1083, 1084, 3, 420, 210, 0, 1084, 1086, 1, 0, 0, 0, 1085, 1082, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1088, 1, 0, 0, 0, 1087, 1089, 3, 68, 34, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1243, 1, 0, 0, 0, 1090, 1094, 5, 379, 0, 0, 1091, 1092, 3, 62, 31, 0, 1092, 1093, 3, 420, 210, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1091, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1099, 1, 0, 0, 0, 1096, 1097, 5, 184, 0, 0, 1097, 1100, 3, 166, 83, 0, 1098, 1100, 3, 166, 83, 0, 1099, 1096, 1, 0, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1243, 1, 0, 0, 0, 1101, 1102, 5, 202, 0, 0, 1102, 1106, 5, 379, 0, 0, 1103, 1104, 3, 62, 31, 0, 1104, 1105, 3, 420, 210, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1103, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1111, 1, 0, 0, 0, 1108, 1109, 5, 184, 0, 0, 1109, 1112, 3, 166, 83, 0, 1110, 1112, 3, 166, 83, 0, 1111, 1108, 1, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1243, 1, 0, 0, 0, 1113, 1115, 5, 315, 0, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 5, 46, 0, 0, 1117, 1118, 3, 62, 31, 0, 1118, 1122, 3, 424, 212, 0, 1119, 1120, 3, 62, 31, 0, 1120, 1121, 3, 420, 210, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1119, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1127, 1, 0, 0, 0, 1124, 1125, 5, 184, 0, 0, 1125, 1128, 3, 166, 83, 0, 1126, 1128, 3, 166, 83, 0, 1127, 1124, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1243, 1, 0, 0, 0, 1129, 1132, 5, 142, 0, 0, 1130, 1131, 5, 184, 0, 0, 1131, 1133, 3, 512, 256, 0, 1132, 1130, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1243, 1, 0, 0, 0, 1134, 1135, 5, 239, 0, 0, 1135, 1137, 3, 424, 212, 0, 1136, 1138, 3, 578, 289, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1140, 1, 0, 0, 0, 1139, 1141, 3, 444, 222, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1143, 1, 0, 0, 0, 1142, 1144, 3, 498, 249, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 1, 0, 0, 0, 1145, 1147, 3, 340, 170, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1243, 1, 0, 0, 0, 1148, 1154, 5, 58, 0, 0, 1149, 1150, 3, 64, 32, 0, 1150, 1151, 3, 420, 210, 0, 1151, 1155, 1, 0, 0, 0, 1152, 1153, 5, 329, 0, 0, 1153, 1155, 3, 426, 213, 0, 1154, 1149, 1, 0, 0, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1243, 1, 0, 0, 0, 1156, 1157, 5, 329, 0, 0, 1157, 1161, 5, 122, 0, 0, 1158, 1159, 3, 62, 31, 0, 1159, 1160, 3, 420, 210, 0, 1160, 1162, 1, 0, 0, 0, 1161, 1158, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 5, 184, 0, 0, 1164, 1166, 3, 166, 83, 0, 1165, 1167, 3, 578, 289, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1243, 1, 0, 0, 0, 1168, 1169, 5, 332, 0, 0, 1169, 1173, 3, 426, 213, 0, 1170, 1171, 5, 399, 0, 0, 1171, 1172, 5, 426, 0, 0, 1172, 1174, 5, 400, 0, 0, 1173, 1170, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1243, 1, 0, 0, 0, 1175, 1187, 5, 191, 0, 0, 1176, 1177, 3, 64, 32, 0, 1177, 1179, 3, 420, 210, 0, 1178, 1180, 5, 122, 0, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1188, 1, 0, 0, 0, 1181, 1183, 3, 54, 27, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1, 0, 0, 0, 1184, 1186, 5, 122, 0, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1176, 1, 0, 0, 0, 1187, 1182, 1, 0, 0, 0, 1188, 1243, 1, 0, 0, 0, 1189, 1219, 5, 50, 0, 0, 1190, 1191, 5, 51, 0, 0, 1191, 1192, 5, 405, 0, 0, 1192, 1220, 5, 431, 0, 0, 1193, 1194, 3, 64, 32, 0, 1194, 1195, 3, 420, 210, 0, 1195, 1200, 1, 0, 0, 0, 1196, 1198, 3, 54, 27, 0, 1197, 1196, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1200, 1, 0, 0, 0, 1199, 1193, 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1202, 5, 246, 0, 0, 1202, 1204, 5, 426, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1207, 1, 0, 0, 0, 1205, 1206, 5, 352, 0, 0, 1206, 1208, 5, 426, 0, 0, 1207, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1210, 5, 320, 0, 0, 1210, 1212, 5, 426, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1214, 1, 0, 0, 0, 1213, 1215, 3, 498, 249, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1217, 1, 0, 0, 0, 1216, 1218, 3, 340, 170, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 1, 0, 0, 0, 1219, 1190, 1, 0, 0, 0, 1219, 1199, 1, 0, 0, 0, 1220, 1243, 1, 0, 0, 0, 1221, 1243, 5, 346, 0, 0, 1222, 1223, 5, 54, 0, 0, 1223, 1243, 5, 426, 0, 0, 1224, 1228, 5, 280, 0, 0, 1225, 1226, 5, 243, 0, 0, 1226, 1229, 3, 590, 295, 0, 1227, 1229, 5, 244, 0, 0, 1228, 1225, 1, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1243, 1, 0, 0, 0, 1230, 1243, 5, 70, 0, 0, 1231, 1233, 5, 138, 0, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 7, 8, 0, 0, 1235, 1236, 5, 224, 0, 0, 1236, 1240, 3, 426, 213, 0, 1237, 1238, 3, 62, 31, 0, 1238, 1239, 3, 420, 210, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1237, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1073, 1, 0, 0, 0, 1242, 1079, 1, 0, 0, 0, 1242, 1090, 1, 0, 0, 0, 1242, 1101, 1, 0, 0, 0, 1242, 1114, 1, 0, 0, 0, 1242, 1129, 1, 0, 0, 0, 1242, 1134, 1, 0, 0, 0, 1242, 1148, 1, 0, 0, 0, 1242, 1156, 1, 0, 0, 0, 1242, 1168, 1, 0, 0, 0, 1242, 1175, 1, 0, 0, 0, 1242, 1189, 1, 0, 0, 0, 1242, 1221, 1, 0, 0, 0, 1242, 1222, 1, 0, 0, 0, 1242, 1224, 1, 0, 0, 0, 1242, 1230, 1, 0, 0, 0, 1242, 1232, 1, 0, 0, 0, 1243, 67, 1, 0, 0, 0, 1244, 1245, 5, 384, 0, 0, 1245, 1246, 3, 590, 295, 0, 1246, 1247, 5, 405, 0, 0, 1247, 1248, 5, 426, 0, 0, 1248, 1253, 1, 0, 0, 0, 1249, 1250, 5, 184, 0, 0, 1250, 1253, 3, 166, 83, 0, 1251, 1253, 3, 166, 83, 0, 1252, 1244, 1, 0, 0, 0, 1252, 1249, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 69, 1, 0, 0, 0, 1254, 1255, 5, 190, 0, 0, 1255, 1256, 5, 329, 0, 0, 1256, 1257, 3, 576, 288, 0, 1257, 1258, 7, 9, 0, 0, 1258, 1263, 1, 0, 0, 0, 1259, 1260, 5, 361, 0, 0, 1260, 1261, 5, 329, 0, 0, 1261, 1263, 3, 576, 288, 0, 1262, 1254, 1, 0, 0, 0, 1262, 1259, 1, 0, 0, 0, 1263, 71, 1, 0, 0, 0, 1264, 1265, 5, 190, 0, 0, 1265, 1266, 3, 64, 32, 0, 1266, 1267, 3, 420, 210, 0, 1267, 1268, 7, 9, 0, 0, 1268, 1274, 1, 0, 0, 0, 1269, 1270, 5, 361, 0, 0, 1270, 1271, 3, 64, 32, 0, 1271, 1272, 3, 420, 210, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1264, 1, 0, 0, 0, 1273, 1269, 1, 0, 0, 0, 1274, 73, 1, 0, 0, 0, 1275, 1276, 7, 10, 0, 0, 1276, 1277, 5, 287, 0, 0, 1277, 1278, 3, 590, 295, 0, 1278, 75, 1, 0, 0, 0, 1279, 1280, 5, 143, 0, 0, 1280, 1282, 3, 104, 52, 0, 1281, 1283, 3, 98, 49, 0, 1282, 1281, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 5, 341, 0, 0, 1285, 1289, 3, 110, 55, 0, 1286, 1287, 5, 387, 0, 0, 1287, 1288, 5, 143, 0, 0, 1288, 1290, 5, 227, 0, 0, 1289, 1286, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 77, 1, 0, 0, 0, 1291, 1295, 5, 283, 0, 0, 1292, 1293, 5, 143, 0, 0, 1293, 1294, 5, 227, 0, 0, 1294, 1296, 5, 134, 0, 0, 1295, 1292, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 3, 104, 52, 0, 1298, 1300, 3, 98, 49, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 5, 139, 0, 0, 1302, 1303, 3, 110, 55, 0, 1303, 79, 1, 0, 0, 0, 1304, 1306, 5, 143, 0, 0, 1305, 1307, 5, 287, 0, 0, 1306, 1305, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1313, 3, 590, 295, 0, 1309, 1310, 5, 397, 0, 0, 1310, 1312, 3, 590, 295, 0, 1311, 1309, 1, 0, 0, 0, 1312, 1315, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1313, 1, 0, 0, 0, 1316, 1317, 5, 341, 0, 0, 1317, 1321, 3, 110, 55, 0, 1318, 1319, 5, 387, 0, 0, 1319, 1320, 5, 5, 0, 0, 1320, 1322, 5, 227, 0, 0, 1321, 1318, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 81, 1, 0, 0, 0, 1323, 1327, 5, 283, 0, 0, 1324, 1325, 5, 5, 0, 0, 1325, 1326, 5, 227, 0, 0, 1326, 1328, 5, 134, 0, 0, 1327, 1324, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1331, 5, 287, 0, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1337, 3, 590, 295, 0, 1333, 1334, 5, 397, 0, 0, 1334, 1336, 3, 590, 295, 0, 1335, 1333, 1, 0, 0, 0, 1336, 1339, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1337, 1, 0, 0, 0, 1340, 1341, 5, 139, 0, 0, 1341, 1342, 3, 110, 55, 0, 1342, 83, 1, 0, 0, 0, 1343, 1344, 5, 308, 0, 0, 1344, 1345, 5, 287, 0, 0, 1345, 1346, 5, 143, 0, 0, 1346, 1347, 3, 112, 56, 0, 1347, 85, 1, 0, 0, 0, 1348, 1349, 5, 308, 0, 0, 1349, 1350, 5, 288, 0, 0, 1350, 87, 1, 0, 0, 0, 1351, 1352, 5, 308, 0, 0, 1352, 1353, 5, 62, 0, 0, 1353, 1354, 5, 288, 0, 0, 1354, 89, 1, 0, 0, 0, 1355, 1356, 5, 304, 0, 0, 1356, 1360, 5, 287, 0, 0, 1357, 1361, 5, 7, 0, 0, 1358, 1361, 5, 213, 0, 0, 1359, 1361, 3, 590, 295, 0, 1360, 1357, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1359, 1, 0, 0, 0, 1361, 91, 1, 0, 0, 0, 1362, 1363, 5, 308, 0, 0, 1363, 1365, 5, 143, 0, 0, 1364, 1366, 3, 112, 56, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1369, 1, 0, 0, 0, 1367, 1368, 5, 224, 0, 0, 1368, 1370, 3, 96, 48, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 93, 1, 0, 0, 0, 1371, 1372, 5, 308, 0, 0, 1372, 1373, 5, 252, 0, 0, 1373, 1374, 3, 590, 295, 0, 1374, 95, 1, 0, 0, 0, 1375, 1378, 5, 7, 0, 0, 1376, 1378, 3, 102, 51, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1376, 1, 0, 0, 0, 1378, 97, 1, 0, 0, 0, 1379, 1380, 5, 224, 0, 0, 1380, 1381, 3, 100, 50, 0, 1381, 99, 1, 0, 0, 0, 1382, 1383, 3, 64, 32, 0, 1383, 1384, 3, 420, 210, 0, 1384, 1394, 1, 0, 0, 0, 1385, 1387, 5, 329, 0, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1394, 3, 576, 288, 0, 1389, 1390, 5, 366, 0, 0, 1390, 1394, 5, 426, 0, 0, 1391, 1392, 5, 303, 0, 0, 1392, 1394, 3, 590, 295, 0, 1393, 1382, 1, 0, 0, 0, 1393, 1386, 1, 0, 0, 0, 1393, 1389, 1, 0, 0, 0, 1393, 1391, 1, 0, 0, 0, 1394, 101, 1, 0, 0, 0, 1395, 1396, 3, 64, 32, 0, 1396, 1397, 3, 420, 210, 0, 1397, 1416, 1, 0, 0, 0, 1398, 1400, 5, 329, 0, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1406, 3, 426, 213, 0, 1402, 1403, 5, 399, 0, 0, 1403, 1404, 3, 220, 110, 0, 1404, 1405, 5, 400, 0, 0, 1405, 1407, 1, 0, 0, 0, 1406, 1402, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1409, 1, 0, 0, 0, 1408, 1410, 3, 578, 289, 0, 1409, 1408, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1416, 1, 0, 0, 0, 1411, 1412, 5, 366, 0, 0, 1412, 1416, 5, 426, 0, 0, 1413, 1414, 5, 303, 0, 0, 1414, 1416, 3, 590, 295, 0, 1415, 1395, 1, 0, 0, 0, 1415, 1399, 1, 0, 0, 0, 1415, 1411, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 103, 1, 0, 0, 0, 1417, 1422, 3, 106, 53, 0, 1418, 1419, 5, 397, 0, 0, 1419, 1421, 3, 106, 53, 0, 1420, 1418, 1, 0, 0, 0, 1421, 1424, 1, 0, 0, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 105, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1425, 1430, 3, 108, 54, 0, 1426, 1427, 5, 399, 0, 0, 1427, 1428, 3, 220, 110, 0, 1428, 1429, 5, 400, 0, 0, 1429, 1431, 1, 0, 0, 0, 1430, 1426, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 107, 1, 0, 0, 0, 1432, 1433, 7, 11, 0, 0, 1433, 109, 1, 0, 0, 0, 1434, 1439, 3, 112, 56, 0, 1435, 1436, 5, 397, 0, 0, 1436, 1438, 3, 112, 56, 0, 1437, 1435, 1, 0, 0, 0, 1438, 1441, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 111, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1443, 5, 369, 0, 0, 1443, 1449, 3, 594, 297, 0, 1444, 1445, 5, 144, 0, 0, 1445, 1449, 3, 594, 297, 0, 1446, 1447, 5, 287, 0, 0, 1447, 1449, 3, 590, 295, 0, 1448, 1442, 1, 0, 0, 0, 1448, 1444, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 113, 1, 0, 0, 0, 1450, 1451, 5, 369, 0, 0, 1451, 1456, 3, 594, 297, 0, 1452, 1453, 5, 287, 0, 0, 1453, 1456, 3, 590, 295, 0, 1454, 1456, 3, 590, 295, 0, 1455, 1450, 1, 0, 0, 0, 1455, 1452, 1, 0, 0, 0, 1455, 1454, 1, 0, 0, 0, 1456, 115, 1, 0, 0, 0, 1457, 1459, 5, 212, 0, 0, 1458, 1460, 5, 276, 0, 0, 1459, 1458, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 5, 329, 0, 0, 1462, 1468, 3, 426, 213, 0, 1463, 1464, 7, 12, 0, 0, 1464, 1466, 5, 239, 0, 0, 1465, 1467, 3, 582, 291, 0, 1466, 1465, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1469, 1, 0, 0, 0, 1468, 1463, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 117, 1, 0, 0, 0, 1470, 1471, 7, 13, 0, 0, 1471, 119, 1, 0, 0, 0, 1472, 1474, 5, 58, 0, 0, 1473, 1475, 5, 333, 0, 0, 1474, 1473, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1477, 5, 141, 0, 0, 1477, 1478, 3, 510, 255, 0, 1478, 1479, 5, 17, 0, 0, 1479, 1492, 5, 426, 0, 0, 1480, 1481, 5, 370, 0, 0, 1481, 1482, 3, 118, 59, 0, 1482, 1489, 5, 426, 0, 0, 1483, 1484, 5, 397, 0, 0, 1484, 1485, 3, 118, 59, 0, 1485, 1486, 5, 426, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1483, 1, 0, 0, 0, 1488, 1491, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1480, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 121, 1, 0, 0, 0, 1494, 1496, 5, 101, 0, 0, 1495, 1497, 5, 333, 0, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 5, 141, 0, 0, 1499, 1501, 3, 30, 15, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 3, 512, 256, 0, 1503, 123, 1, 0, 0, 0, 1504, 1505, 5, 271, 0, 0, 1505, 1506, 7, 14, 0, 0, 1506, 125, 1, 0, 0, 0, 1507, 1508, 5, 58, 0, 0, 1508, 1509, 5, 333, 0, 0, 1509, 1510, 5, 194, 0, 0, 1510, 1511, 5, 432, 0, 0, 1511, 1513, 5, 399, 0, 0, 1512, 1514, 3, 214, 107, 0, 1513, 1512, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1516, 5, 400, 0, 0, 1516, 1517, 3, 536, 268, 0, 1517, 127, 1, 0, 0, 0, 1518, 1519, 5, 101, 0, 0, 1519, 1520, 5, 333, 0, 0, 1520, 1522, 5, 194, 0, 0, 1521, 1523, 3, 30, 15, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 5, 432, 0, 0, 1525, 129, 1, 0, 0, 0, 1526, 1527, 5, 58, 0, 0, 1527, 1528, 5, 155, 0, 0, 1528, 1529, 3, 590, 295, 0, 1529, 1530, 5, 224, 0, 0, 1530, 1531, 5, 329, 0, 0, 1531, 1532, 3, 426, 213, 0, 1532, 1533, 3, 234, 117, 0, 1533, 1534, 5, 17, 0, 0, 1534, 1538, 5, 426, 0, 0, 1535, 1536, 5, 387, 0, 0, 1536, 1537, 5, 84, 0, 0, 1537, 1539, 5, 265, 0, 0, 1538, 1535, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1541, 5, 150, 0, 0, 1541, 1543, 3, 192, 96, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1547, 1, 0, 0, 0, 1544, 1545, 5, 154, 0, 0, 1545, 1546, 5, 329, 0, 0, 1546, 1548, 3, 426, 213, 0, 1547, 1544, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1552, 1, 0, 0, 0, 1549, 1550, 5, 238, 0, 0, 1550, 1551, 5, 32, 0, 0, 1551, 1553, 3, 234, 117, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1558, 1, 0, 0, 0, 1554, 1556, 3, 184, 92, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1559, 3, 212, 106, 0, 1558, 1555, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1562, 3, 372, 186, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1564, 1, 0, 0, 0, 1563, 1565, 3, 190, 95, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1568, 3, 168, 84, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 131, 1, 0, 0, 0, 1569, 1570, 5, 101, 0, 0, 1570, 1572, 5, 155, 0, 0, 1571, 1573, 3, 30, 15, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1575, 3, 590, 295, 0, 1575, 1576, 5, 224, 0, 0, 1576, 1577, 3, 426, 213, 0, 1577, 133, 1, 0, 0, 0, 1578, 1581, 5, 58, 0, 0, 1579, 1580, 5, 228, 0, 0, 1580, 1582, 5, 278, 0, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 5, 378, 0, 0, 1584, 1586, 3, 32, 16, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1592, 3, 432, 216, 0, 1588, 1589, 5, 399, 0, 0, 1589, 1590, 3, 270, 135, 0, 1590, 1591, 5, 400, 0, 0, 1591, 1593, 1, 0, 0, 0, 1592, 1588, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1595, 1, 0, 0, 0, 1594, 1596, 3, 168, 84, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 1, 0, 0, 0, 1597, 1599, 3, 136, 68, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1601, 1, 0, 0, 0, 1600, 1602, 3, 190, 95, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 5, 17, 0, 0, 1604, 1605, 3, 334, 167, 0, 1605, 135, 1, 0, 0, 0, 1606, 1607, 5, 238, 0, 0, 1607, 1613, 5, 224, 0, 0, 1608, 1609, 5, 399, 0, 0, 1609, 1614, 3, 220, 110, 0, 1610, 1611, 5, 316, 0, 0, 1611, 1612, 5, 399, 0, 0, 1612, 1614, 3, 176, 88, 0, 1613, 1608, 1, 0, 0, 0, 1613, 1610, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 5, 400, 0, 0, 1616, 137, 1, 0, 0, 0, 1617, 1620, 3, 140, 70, 0, 1618, 1620, 3, 142, 71, 0, 1619, 1617, 1, 0, 0, 0, 1619, 1618, 1, 0, 0, 0, 1620, 139, 1, 0, 0, 0, 1621, 1622, 5, 42, 0, 0, 1622, 1623, 5, 224, 0, 0, 1623, 1624, 5, 399, 0, 0, 1624, 1625, 3, 220, 110, 0, 1625, 1626, 5, 400, 0, 0, 1626, 141, 1, 0, 0, 0, 1627, 1628, 3, 144, 72, 0, 1628, 1629, 3, 146, 73, 0, 1629, 143, 1, 0, 0, 0, 1630, 1631, 5, 98, 0, 0, 1631, 1632, 5, 224, 0, 0, 1632, 1633, 5, 399, 0, 0, 1633, 1634, 3, 220, 110, 0, 1634, 1635, 5, 400, 0, 0, 1635, 145, 1, 0, 0, 0, 1636, 1637, 5, 315, 0, 0, 1637, 1638, 5, 224, 0, 0, 1638, 1639, 5, 399, 0, 0, 1639, 1640, 3, 220, 110, 0, 1640, 1641, 5, 400, 0, 0, 1641, 147, 1, 0, 0, 0, 1642, 1643, 5, 101, 0, 0, 1643, 1645, 5, 378, 0, 0, 1644, 1646, 3, 30, 15, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1656, 3, 430, 215, 0, 1648, 1649, 5, 101, 0, 0, 1649, 1650, 5, 202, 0, 0, 1650, 1652, 5, 378, 0, 0, 1651, 1653, 3, 30, 15, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 3, 430, 215, 0, 1655, 1642, 1, 0, 0, 0, 1655, 1648, 1, 0, 0, 0, 1656, 149, 1, 0, 0, 0, 1657, 1658, 5, 58, 0, 0, 1658, 1659, 5, 202, 0, 0, 1659, 1661, 5, 378, 0, 0, 1660, 1662, 3, 32, 16, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 3, 432, 216, 0, 1664, 1666, 3, 40, 20, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1668, 1, 0, 0, 0, 1667, 1669, 3, 168, 84, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 3, 136, 68, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1675, 3, 138, 69, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1677, 1, 0, 0, 0, 1676, 1678, 3, 184, 92, 0, 1677, 1676, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1680, 1, 0, 0, 0, 1679, 1681, 3, 212, 106, 0, 1680, 1679, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1683, 1, 0, 0, 0, 1682, 1684, 3, 372, 186, 0, 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1686, 1, 0, 0, 0, 1685, 1687, 3, 190, 95, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 5, 17, 0, 0, 1689, 1690, 3, 334, 167, 0, 1690, 151, 1, 0, 0, 0, 1691, 1692, 5, 58, 0, 0, 1692, 1693, 5, 293, 0, 0, 1693, 1694, 5, 258, 0, 0, 1694, 1695, 3, 590, 295, 0, 1695, 1697, 3, 160, 80, 0, 1696, 1698, 3, 162, 81, 0, 1697, 1696, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1700, 1, 0, 0, 0, 1699, 1701, 3, 238, 119, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 3, 164, 82, 0, 1703, 153, 1, 0, 0, 0, 1704, 1705, 5, 101, 0, 0, 1705, 1706, 5, 293, 0, 0, 1706, 1707, 5, 258, 0, 0, 1707, 1708, 3, 590, 295, 0, 1708, 155, 1, 0, 0, 0, 1709, 1710, 5, 9, 0, 0, 1710, 1711, 5, 293, 0, 0, 1711, 1712, 5, 258, 0, 0, 1712, 1713, 3, 590, 295, 0, 1713, 1714, 3, 158, 79, 0, 1714, 157, 1, 0, 0, 0, 1715, 1721, 3, 160, 80, 0, 1716, 1721, 3, 162, 81, 0, 1717, 1721, 3, 238, 119, 0, 1718, 1721, 3, 164, 82, 0, 1719, 1721, 5, 115, 0, 0, 1720, 1715, 1, 0, 0, 0, 1720, 1716, 1, 0, 0, 0, 1720, 1717, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1719, 1, 0, 0, 0, 1721, 159, 1, 0, 0, 0, 1722, 1723, 5, 59, 0, 0, 1723, 1738, 5, 426, 0, 0, 1724, 1726, 5, 111, 0, 0, 1725, 1727, 5, 431, 0, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1735, 3, 534, 267, 0, 1729, 1733, 5, 20, 0, 0, 1730, 1731, 5, 223, 0, 0, 1731, 1733, 5, 32, 0, 0, 1732, 1729, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1736, 5, 426, 0, 0, 1735, 1732, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1738, 1, 0, 0, 0, 1737, 1722, 1, 0, 0, 0, 1737, 1724, 1, 0, 0, 0, 1738, 161, 1, 0, 0, 0, 1739, 1740, 5, 116, 0, 0, 1740, 1741, 5, 17, 0, 0, 1741, 1742, 5, 426, 0, 0, 1742, 163, 1, 0, 0, 0, 1743, 1745, 5, 85, 0, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 5, 17, 0, 0, 1747, 1748, 3, 2, 1, 0, 1748, 165, 1, 0, 0, 0, 1749, 1752, 3, 590, 295, 0, 1750, 1752, 5, 426, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1750, 1, 0, 0, 0, 1752, 167, 1, 0, 0, 0, 1753, 1754, 5, 47, 0, 0, 1754, 1755, 5, 426, 0, 0, 1755, 169, 1, 0, 0, 0, 1756, 1757, 5, 183, 0, 0, 1757, 1758, 5, 431, 0, 0, 1758, 171, 1, 0, 0, 0, 1759, 1760, 5, 238, 0, 0, 1760, 1769, 5, 32, 0, 0, 1761, 1764, 5, 399, 0, 0, 1762, 1765, 3, 174, 87, 0, 1763, 1765, 3, 220, 110, 0, 1764, 1762, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 1770, 1, 0, 0, 0, 1766, 1767, 5, 316, 0, 0, 1767, 1768, 5, 399, 0, 0, 1768, 1770, 3, 176, 88, 0, 1769, 1761, 1, 0, 0, 0, 1769, 1766, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 5, 400, 0, 0, 1772, 173, 1, 0, 0, 0, 1773, 1778, 3, 282, 141, 0, 1774, 1775, 5, 397, 0, 0, 1775, 1777, 3, 282, 141, 0, 1776, 1774, 1, 0, 0, 0, 1777, 1780, 1, 0, 0, 0, 1778, 1776, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 175, 1, 0, 0, 0, 1780, 1778, 1, 0, 0, 0, 1781, 1786, 3, 178, 89, 0, 1782, 1783, 5, 397, 0, 0, 1783, 1785, 3, 178, 89, 0, 1784, 1782, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 177, 1, 0, 0, 0, 1788, 1786, 1, 0, 0, 0, 1789, 1803, 3, 222, 111, 0, 1790, 1791, 7, 15, 0, 0, 1791, 1792, 5, 399, 0, 0, 1792, 1793, 3, 222, 111, 0, 1793, 1794, 5, 400, 0, 0, 1794, 1803, 1, 0, 0, 0, 1795, 1796, 7, 16, 0, 0, 1796, 1797, 5, 399, 0, 0, 1797, 1798, 5, 431, 0, 0, 1798, 1799, 5, 397, 0, 0, 1799, 1800, 3, 222, 111, 0, 1800, 1801, 5, 400, 0, 0, 1801, 1803, 1, 0, 0, 0, 1802, 1789, 1, 0, 0, 0, 1802, 1790, 1, 0, 0, 0, 1802, 1795, 1, 0, 0, 0, 1803, 179, 1, 0, 0, 0, 1804, 1805, 5, 42, 0, 0, 1805, 1806, 5, 32, 0, 0, 1806, 1807, 5, 399, 0, 0, 1807, 1808, 3, 220, 110, 0, 1808, 1815, 5, 400, 0, 0, 1809, 1810, 5, 315, 0, 0, 1810, 1811, 5, 32, 0, 0, 1811, 1812, 5, 399, 0, 0, 1812, 1813, 3, 232, 116, 0, 1813, 1814, 5, 400, 0, 0, 1814, 1816, 1, 0, 0, 0, 1815, 1809, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 5, 166, 0, 0, 1818, 1819, 5, 431, 0, 0, 1819, 1820, 5, 31, 0, 0, 1820, 181, 1, 0, 0, 0, 1821, 1822, 5, 310, 0, 0, 1822, 1823, 5, 32, 0, 0, 1823, 1824, 5, 399, 0, 0, 1824, 1825, 3, 220, 110, 0, 1825, 1826, 5, 400, 0, 0, 1826, 1827, 5, 224, 0, 0, 1827, 1828, 5, 399, 0, 0, 1828, 1829, 3, 256, 128, 0, 1829, 1831, 5, 400, 0, 0, 1830, 1832, 3, 36, 18, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 183, 1, 0, 0, 0, 1833, 1836, 3, 186, 93, 0, 1834, 1836, 3, 188, 94, 0, 1835, 1833, 1, 0, 0, 0, 1835, 1834, 1, 0, 0, 0, 1836, 185, 1, 0, 0, 0, 1837, 1838, 5, 291, 0, 0, 1838, 1839, 5, 137, 0, 0, 1839, 1840, 5, 301, 0, 0, 1840, 1844, 5, 426, 0, 0, 1841, 1842, 5, 387, 0, 0, 1842, 1843, 5, 302, 0, 0, 1843, 1845, 3, 192, 96, 0, 1844, 1841, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 187, 1, 0, 0, 0, 1846, 1847, 5, 291, 0, 0, 1847, 1848, 5, 137, 0, 0, 1848, 1850, 5, 87, 0, 0, 1849, 1851, 3, 202, 101, 0, 1850, 1849, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1854, 3, 204, 102, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1857, 3, 206, 103, 0, 1856, 1855, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1859, 1, 0, 0, 0, 1858, 1860, 3, 208, 104, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 1, 0, 0, 0, 1861, 1863, 3, 210, 105, 0, 1862, 1861, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 189, 1, 0, 0, 0, 1864, 1865, 5, 332, 0, 0, 1865, 1866, 3, 192, 96, 0, 1866, 191, 1, 0, 0, 0, 1867, 1868, 5, 399, 0, 0, 1868, 1869, 3, 194, 97, 0, 1869, 1870, 5, 400, 0, 0, 1870, 193, 1, 0, 0, 0, 1871, 1881, 3, 198, 99, 0, 1872, 1877, 5, 426, 0, 0, 1873, 1874, 5, 397, 0, 0, 1874, 1876, 5, 426, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1879, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1871, 1, 0, 0, 0, 1880, 1872, 1, 0, 0, 0, 1881, 195, 1, 0, 0, 0, 1882, 1883, 5, 399, 0, 0, 1883, 1884, 3, 198, 99, 0, 1884, 1885, 5, 400, 0, 0, 1885, 197, 1, 0, 0, 0, 1886, 1891, 3, 200, 100, 0, 1887, 1888, 5, 397, 0, 0, 1888, 1890, 3, 200, 100, 0, 1889, 1887, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 199, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1895, 5, 426, 0, 0, 1895, 1896, 5, 405, 0, 0, 1896, 1897, 5, 426, 0, 0, 1897, 201, 1, 0, 0, 0, 1898, 1899, 5, 127, 0, 0, 1899, 1900, 5, 334, 0, 0, 1900, 1901, 5, 32, 0, 0, 1901, 1905, 5, 426, 0, 0, 1902, 1903, 5, 110, 0, 0, 1903, 1904, 5, 32, 0, 0, 1904, 1906, 5, 426, 0, 0, 1905, 1902, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 203, 1, 0, 0, 0, 1907, 1908, 5, 44, 0, 0, 1908, 1909, 5, 169, 0, 0, 1909, 1910, 5, 334, 0, 0, 1910, 1911, 5, 32, 0, 0, 1911, 1912, 5, 426, 0, 0, 1912, 205, 1, 0, 0, 0, 1913, 1914, 5, 198, 0, 0, 1914, 1915, 5, 174, 0, 0, 1915, 1916, 5, 334, 0, 0, 1916, 1917, 5, 32, 0, 0, 1917, 1918, 5, 426, 0, 0, 1918, 207, 1, 0, 0, 0, 1919, 1920, 5, 186, 0, 0, 1920, 1921, 5, 334, 0, 0, 1921, 1922, 5, 32, 0, 0, 1922, 1923, 5, 426, 0, 0, 1923, 209, 1, 0, 0, 0, 1924, 1925, 5, 219, 0, 0, 1925, 1926, 5, 85, 0, 0, 1926, 1927, 5, 17, 0, 0, 1927, 1928, 5, 426, 0, 0, 1928, 211, 1, 0, 0, 0, 1929, 1930, 5, 321, 0, 0, 1930, 1931, 5, 17, 0, 0, 1931, 1932, 5, 160, 0, 0, 1932, 1933, 5, 426, 0, 0, 1933, 1934, 5, 233, 0, 0, 1934, 1939, 5, 426, 0, 0, 1935, 1936, 5, 159, 0, 0, 1936, 1937, 5, 426, 0, 0, 1937, 1938, 5, 232, 0, 0, 1938, 1940, 5, 426, 0, 0, 1939, 1935, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1971, 1, 0, 0, 0, 1941, 1942, 5, 321, 0, 0, 1942, 1943, 5, 32, 0, 0, 1943, 1947, 5, 426, 0, 0, 1944, 1945, 5, 387, 0, 0, 1945, 1946, 5, 302, 0, 0, 1946, 1948, 3, 192, 96, 0, 1947, 1944, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1952, 1, 0, 0, 0, 1949, 1950, 5, 321, 0, 0, 1950, 1951, 5, 17, 0, 0, 1951, 1953, 3, 590, 295, 0, 1952, 1949, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1971, 1, 0, 0, 0, 1954, 1955, 5, 321, 0, 0, 1955, 1956, 5, 32, 0, 0, 1956, 1960, 3, 590, 295, 0, 1957, 1958, 5, 387, 0, 0, 1958, 1959, 5, 302, 0, 0, 1959, 1961, 3, 192, 96, 0, 1960, 1957, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1965, 1, 0, 0, 0, 1962, 1963, 5, 321, 0, 0, 1963, 1964, 5, 17, 0, 0, 1964, 1966, 3, 590, 295, 0, 1965, 1962, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1971, 1, 0, 0, 0, 1967, 1968, 5, 321, 0, 0, 1968, 1969, 5, 17, 0, 0, 1969, 1971, 3, 590, 295, 0, 1970, 1929, 1, 0, 0, 0, 1970, 1941, 1, 0, 0, 0, 1970, 1954, 1, 0, 0, 0, 1970, 1967, 1, 0, 0, 0, 1971, 213, 1, 0, 0, 0, 1972, 1977, 3, 276, 138, 0, 1973, 1974, 5, 397, 0, 0, 1974, 1976, 3, 276, 138, 0, 1975, 1973, 1, 0, 0, 0, 1976, 1979, 1, 0, 0, 0, 1977, 1975, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 215, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1985, 3, 278, 139, 0, 1981, 1982, 5, 397, 0, 0, 1982, 1984, 3, 278, 139, 0, 1983, 1981, 1, 0, 0, 0, 1984, 1987, 1, 0, 0, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 217, 1, 0, 0, 0, 1987, 1985, 1, 0, 0, 0, 1988, 1993, 3, 296, 148, 0, 1989, 1990, 5, 397, 0, 0, 1990, 1992, 3, 296, 148, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 219, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1996, 2001, 3, 222, 111, 0, 1997, 1998, 5, 397, 0, 0, 1998, 2000, 3, 222, 111, 0, 1999, 1997, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 221, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2004, 2008, 3, 626, 313, 0, 2005, 2006, 4, 111, 0, 0, 2006, 2008, 3, 622, 311, 0, 2007, 2004, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 223, 1, 0, 0, 0, 2009, 2010, 3, 624, 312, 0, 2010, 225, 1, 0, 0, 0, 2011, 2015, 3, 626, 313, 0, 2012, 2013, 4, 113, 1, 0, 2013, 2015, 3, 622, 311, 0, 2014, 2011, 1, 0, 0, 0, 2014, 2012, 1, 0, 0, 0, 2015, 227, 1, 0, 0, 0, 2016, 2017, 3, 590, 295, 0, 2017, 229, 1, 0, 0, 0, 2018, 2028, 3, 222, 111, 0, 2019, 2024, 5, 395, 0, 0, 2020, 2025, 5, 104, 0, 0, 2021, 2025, 5, 175, 0, 0, 2022, 2025, 5, 375, 0, 0, 2023, 2025, 3, 590, 295, 0, 2024, 2020, 1, 0, 0, 0, 2024, 2021, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2023, 1, 0, 0, 0, 2025, 2027, 1, 0, 0, 0, 2026, 2019, 1, 0, 0, 0, 2027, 2030, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 231, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2036, 3, 268, 134, 0, 2032, 2033, 5, 397, 0, 0, 2033, 2035, 3, 268, 134, 0, 2034, 2032, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 233, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2040, 5, 399, 0, 0, 2040, 2041, 3, 220, 110, 0, 2041, 2042, 5, 400, 0, 0, 2042, 235, 1, 0, 0, 0, 2043, 2045, 3, 238, 119, 0, 2044, 2046, 7, 17, 0, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2049, 1, 0, 0, 0, 2047, 2049, 3, 240, 120, 0, 2048, 2043, 1, 0, 0, 0, 2048, 2047, 1, 0, 0, 0, 2049, 237, 1, 0, 0, 0, 2050, 2053, 3, 618, 309, 0, 2051, 2053, 3, 620, 310, 0, 2052, 2050, 1, 0, 0, 0, 2052, 2051, 1, 0, 0, 0, 2053, 239, 1, 0, 0, 0, 2054, 2058, 5, 109, 0, 0, 2055, 2056, 5, 216, 0, 0, 2056, 2058, 5, 109, 0, 0, 2057, 2054, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2058, 241, 1, 0, 0, 0, 2059, 2060, 5, 55, 0, 0, 2060, 2062, 3, 590, 295, 0, 2061, 2059, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2065, 3, 246, 123, 0, 2064, 2066, 3, 294, 147, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 243, 1, 0, 0, 0, 2067, 2068, 5, 55, 0, 0, 2068, 2069, 3, 590, 295, 0, 2069, 2071, 3, 246, 123, 0, 2070, 2072, 3, 294, 147, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 245, 1, 0, 0, 0, 2073, 2076, 3, 248, 124, 0, 2074, 2076, 3, 250, 125, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2074, 1, 0, 0, 0, 2076, 247, 1, 0, 0, 0, 2077, 2078, 3, 292, 146, 0, 2078, 2079, 3, 234, 117, 0, 2079, 249, 1, 0, 0, 0, 2080, 2081, 5, 40, 0, 0, 2081, 2082, 5, 399, 0, 0, 2082, 2083, 3, 536, 268, 0, 2083, 2084, 5, 400, 0, 0, 2084, 251, 1, 0, 0, 0, 2085, 2086, 5, 55, 0, 0, 2086, 2088, 3, 590, 295, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 5, 136, 0, 0, 2090, 2091, 5, 173, 0, 0, 2091, 2092, 3, 234, 117, 0, 2092, 2093, 5, 269, 0, 0, 2093, 2094, 3, 426, 213, 0, 2094, 2096, 3, 234, 117, 0, 2095, 2097, 3, 294, 147, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 253, 1, 0, 0, 0, 2098, 2099, 5, 55, 0, 0, 2099, 2100, 3, 590, 295, 0, 2100, 2101, 5, 136, 0, 0, 2101, 2102, 5, 173, 0, 0, 2102, 2103, 3, 234, 117, 0, 2103, 2104, 5, 269, 0, 0, 2104, 2105, 3, 426, 213, 0, 2105, 2107, 3, 234, 117, 0, 2106, 2108, 3, 294, 147, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 255, 1, 0, 0, 0, 2109, 2112, 3, 262, 131, 0, 2110, 2112, 3, 258, 129, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 257, 1, 0, 0, 0, 2113, 2118, 3, 260, 130, 0, 2114, 2115, 5, 397, 0, 0, 2115, 2117, 3, 260, 130, 0, 2116, 2114, 1, 0, 0, 0, 2117, 2120, 1, 0, 0, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 259, 1, 0, 0, 0, 2120, 2118, 1, 0, 0, 0, 2121, 2122, 5, 399, 0, 0, 2122, 2123, 3, 262, 131, 0, 2123, 2124, 5, 400, 0, 0, 2124, 261, 1, 0, 0, 0, 2125, 2130, 3, 528, 264, 0, 2126, 2127, 5, 397, 0, 0, 2127, 2129, 3, 528, 264, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2132, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 263, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2134, 7, 18, 0, 0, 2134, 265, 1, 0, 0, 0, 2135, 2136, 5, 220, 0, 0, 2136, 2137, 7, 19, 0, 0, 2137, 267, 1, 0, 0, 0, 2138, 2140, 3, 222, 111, 0, 2139, 2141, 3, 264, 132, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2143, 1, 0, 0, 0, 2142, 2144, 3, 266, 133, 0, 2143, 2142, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 269, 1, 0, 0, 0, 2145, 2150, 3, 272, 136, 0, 2146, 2147, 5, 397, 0, 0, 2147, 2149, 3, 272, 136, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2152, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 271, 1, 0, 0, 0, 2152, 2150, 1, 0, 0, 0, 2153, 2156, 3, 228, 114, 0, 2154, 2155, 5, 47, 0, 0, 2155, 2157, 5, 426, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 273, 1, 0, 0, 0, 2158, 2161, 3, 222, 111, 0, 2159, 2161, 3, 536, 268, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2159, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2164, 3, 264, 132, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2167, 3, 266, 133, 0, 2166, 2165, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 275, 1, 0, 0, 0, 2168, 2169, 3, 228, 114, 0, 2169, 2172, 3, 300, 150, 0, 2170, 2171, 5, 47, 0, 0, 2171, 2173, 5, 426, 0, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 277, 1, 0, 0, 0, 2174, 2177, 3, 280, 140, 0, 2175, 2177, 3, 282, 141, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2175, 1, 0, 0, 0, 2177, 279, 1, 0, 0, 0, 2178, 2181, 3, 252, 126, 0, 2179, 2181, 3, 242, 121, 0, 2180, 2178, 1, 0, 0, 0, 2180, 2179, 1, 0, 0, 0, 2181, 281, 1, 0, 0, 0, 2182, 2183, 3, 228, 114, 0, 2183, 2185, 3, 300, 150, 0, 2184, 2186, 3, 284, 142, 0, 2185, 2184, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2189, 1, 0, 0, 0, 2187, 2188, 5, 47, 0, 0, 2188, 2190, 5, 426, 0, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 283, 1, 0, 0, 0, 2191, 2194, 3, 286, 143, 0, 2192, 2194, 3, 288, 144, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2192, 1, 0, 0, 0, 2194, 285, 1, 0, 0, 0, 2195, 2196, 5, 55, 0, 0, 2196, 2198, 3, 590, 295, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2200, 5, 269, 0, 0, 2200, 2201, 3, 426, 213, 0, 2201, 2202, 5, 399, 0, 0, 2202, 2203, 3, 222, 111, 0, 2203, 2205, 5, 400, 0, 0, 2204, 2206, 3, 294, 147, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 287, 1, 0, 0, 0, 2207, 2208, 5, 55, 0, 0, 2208, 2210, 3, 590, 295, 0, 2209, 2207, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2213, 3, 290, 145, 0, 2212, 2214, 3, 294, 147, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 289, 1, 0, 0, 0, 2215, 2216, 5, 216, 0, 0, 2216, 2226, 5, 219, 0, 0, 2217, 2221, 5, 83, 0, 0, 2218, 2222, 3, 528, 264, 0, 2219, 2222, 3, 508, 254, 0, 2220, 2222, 3, 516, 258, 0, 2221, 2218, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2221, 2220, 1, 0, 0, 0, 2222, 2226, 1, 0, 0, 0, 2223, 2226, 3, 250, 125, 0, 2224, 2226, 3, 292, 146, 0, 2225, 2215, 1, 0, 0, 0, 2225, 2217, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2224, 1, 0, 0, 0, 2226, 291, 1, 0, 0, 0, 2227, 2228, 5, 251, 0, 0, 2228, 2231, 5, 173, 0, 0, 2229, 2231, 5, 358, 0, 0, 2230, 2227, 1, 0, 0, 0, 2230, 2229, 1, 0, 0, 0, 2231, 293, 1, 0, 0, 0, 2232, 2234, 3, 236, 118, 0, 2233, 2235, 7, 20, 0, 0, 2234, 2233, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 295, 1, 0, 0, 0, 2236, 2237, 3, 228, 114, 0, 2237, 2238, 5, 396, 0, 0, 2238, 2241, 3, 300, 150, 0, 2239, 2240, 5, 47, 0, 0, 2240, 2242, 5, 426, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 297, 1, 0, 0, 0, 2243, 2248, 3, 300, 150, 0, 2244, 2245, 5, 397, 0, 0, 2245, 2247, 3, 300, 150, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2250, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 299, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2257, 3, 302, 151, 0, 2252, 2257, 3, 304, 152, 0, 2253, 2257, 3, 306, 153, 0, 2254, 2257, 3, 308, 154, 0, 2255, 2257, 3, 310, 155, 0, 2256, 2251, 1, 0, 0, 0, 2256, 2252, 1, 0, 0, 0, 2256, 2253, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2255, 1, 0, 0, 0, 2257, 301, 1, 0, 0, 0, 2258, 2296, 5, 340, 0, 0, 2259, 2296, 5, 311, 0, 0, 2260, 2296, 5, 162, 0, 0, 2261, 2296, 5, 163, 0, 0, 2262, 2296, 5, 26, 0, 0, 2263, 2296, 5, 28, 0, 0, 2264, 2296, 5, 131, 0, 0, 2265, 2296, 5, 264, 0, 0, 2266, 2268, 5, 100, 0, 0, 2267, 2269, 5, 248, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2296, 1, 0, 0, 0, 2270, 2296, 5, 71, 0, 0, 2271, 2296, 5, 72, 0, 0, 2272, 2296, 5, 337, 0, 0, 2273, 2296, 5, 338, 0, 0, 2274, 2275, 5, 337, 0, 0, 2275, 2276, 5, 387, 0, 0, 2276, 2277, 5, 188, 0, 0, 2277, 2278, 5, 336, 0, 0, 2278, 2296, 5, 394, 0, 0, 2279, 2296, 5, 323, 0, 0, 2280, 2296, 5, 27, 0, 0, 2281, 2289, 7, 21, 0, 0, 2282, 2283, 5, 399, 0, 0, 2283, 2286, 5, 431, 0, 0, 2284, 2285, 5, 397, 0, 0, 2285, 2287, 5, 431, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 5, 400, 0, 0, 2289, 2282, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2296, 1, 0, 0, 0, 2291, 2292, 7, 22, 0, 0, 2292, 2293, 5, 399, 0, 0, 2293, 2294, 5, 431, 0, 0, 2294, 2296, 5, 400, 0, 0, 2295, 2258, 1, 0, 0, 0, 2295, 2259, 1, 0, 0, 0, 2295, 2260, 1, 0, 0, 0, 2295, 2261, 1, 0, 0, 0, 2295, 2262, 1, 0, 0, 0, 2295, 2263, 1, 0, 0, 0, 2295, 2264, 1, 0, 0, 0, 2295, 2265, 1, 0, 0, 0, 2295, 2266, 1, 0, 0, 0, 2295, 2270, 1, 0, 0, 0, 2295, 2271, 1, 0, 0, 0, 2295, 2272, 1, 0, 0, 0, 2295, 2273, 1, 0, 0, 0, 2295, 2274, 1, 0, 0, 0, 2295, 2279, 1, 0, 0, 0, 2295, 2280, 1, 0, 0, 0, 2295, 2281, 1, 0, 0, 0, 2295, 2291, 1, 0, 0, 0, 2296, 303, 1, 0, 0, 0, 2297, 2298, 5, 16, 0, 0, 2298, 2299, 5, 409, 0, 0, 2299, 2300, 3, 300, 150, 0, 2300, 2301, 5, 411, 0, 0, 2301, 305, 1, 0, 0, 0, 2302, 2303, 5, 324, 0, 0, 2303, 2304, 5, 409, 0, 0, 2304, 2305, 3, 218, 109, 0, 2305, 2306, 5, 411, 0, 0, 2306, 307, 1, 0, 0, 0, 2307, 2308, 5, 198, 0, 0, 2308, 2309, 5, 409, 0, 0, 2309, 2310, 3, 302, 151, 0, 2310, 2311, 5, 397, 0, 0, 2311, 2312, 3, 300, 150, 0, 2312, 2313, 5, 411, 0, 0, 2313, 309, 1, 0, 0, 0, 2314, 2315, 5, 357, 0, 0, 2315, 2316, 5, 409, 0, 0, 2316, 2317, 3, 298, 149, 0, 2317, 2318, 5, 411, 0, 0, 2318, 311, 1, 0, 0, 0, 2319, 2321, 7, 23, 0, 0, 2320, 2322, 7, 24, 0, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 313, 1, 0, 0, 0, 2323, 2325, 3, 318, 159, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2327, 3, 316, 158, 0, 2327, 315, 1, 0, 0, 0, 2328, 2331, 3, 322, 161, 0, 2329, 2331, 3, 326, 163, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2329, 1, 0, 0, 0, 2331, 317, 1, 0, 0, 0, 2332, 2333, 5, 387, 0, 0, 2333, 2338, 3, 320, 160, 0, 2334, 2335, 5, 397, 0, 0, 2335, 2337, 3, 320, 160, 0, 2336, 2334, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 319, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 2346, 3, 590, 295, 0, 2342, 2343, 5, 399, 0, 0, 2343, 2344, 3, 220, 110, 0, 2344, 2345, 5, 400, 0, 0, 2345, 2347, 1, 0, 0, 0, 2346, 2342, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2349, 5, 17, 0, 0, 2349, 2350, 5, 399, 0, 0, 2350, 2351, 3, 314, 157, 0, 2351, 2352, 5, 400, 0, 0, 2352, 321, 1, 0, 0, 0, 2353, 2359, 3, 324, 162, 0, 2354, 2355, 3, 312, 156, 0, 2355, 2356, 3, 324, 162, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2354, 1, 0, 0, 0, 2358, 2361, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 323, 1, 0, 0, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2363, 3, 396, 198, 0, 2363, 2364, 3, 336, 168, 0, 2364, 2366, 3, 452, 226, 0, 2365, 2367, 3, 410, 205, 0, 2366, 2365, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2370, 3, 444, 222, 0, 2369, 2368, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2372, 1, 0, 0, 0, 2371, 2373, 3, 478, 239, 0, 2372, 2371, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2375, 1, 0, 0, 0, 2374, 2376, 3, 486, 243, 0, 2375, 2374, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2379, 3, 470, 235, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2381, 1, 0, 0, 0, 2380, 2382, 3, 488, 244, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2384, 1, 0, 0, 0, 2383, 2385, 3, 498, 249, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 1, 0, 0, 0, 2386, 2388, 3, 502, 251, 0, 2387, 2386, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2391, 3, 504, 252, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2394, 3, 506, 253, 0, 2393, 2392, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2396, 1, 0, 0, 0, 2395, 2397, 3, 340, 170, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2434, 1, 0, 0, 0, 2398, 2399, 3, 396, 198, 0, 2399, 2401, 3, 452, 226, 0, 2400, 2402, 3, 410, 205, 0, 2401, 2400, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2404, 1, 0, 0, 0, 2403, 2405, 3, 444, 222, 0, 2404, 2403, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2408, 3, 478, 239, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2410, 1, 0, 0, 0, 2409, 2411, 3, 486, 243, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2414, 3, 470, 235, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2417, 3, 488, 244, 0, 2416, 2415, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2420, 3, 498, 249, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2422, 1, 0, 0, 0, 2421, 2423, 3, 502, 251, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2425, 1, 0, 0, 0, 2424, 2426, 3, 504, 252, 0, 2425, 2424, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2428, 1, 0, 0, 0, 2427, 2429, 3, 506, 253, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2431, 1, 0, 0, 0, 2430, 2432, 3, 340, 170, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2362, 1, 0, 0, 0, 2433, 2398, 1, 0, 0, 0, 2434, 325, 1, 0, 0, 0, 2435, 2436, 3, 336, 168, 0, 2436, 2437, 3, 330, 165, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2440, 3, 330, 165, 0, 2439, 2435, 1, 0, 0, 0, 2439, 2438, 1, 0, 0, 0, 2440, 327, 1, 0, 0, 0, 2441, 2443, 3, 452, 226, 0, 2442, 2444, 3, 396, 198, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2446, 1, 0, 0, 0, 2445, 2447, 3, 444, 222, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 1, 0, 0, 0, 2448, 2450, 3, 478, 239, 0, 2449, 2448, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2452, 1, 0, 0, 0, 2451, 2453, 3, 486, 243, 0, 2452, 2451, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 1, 0, 0, 0, 2454, 2456, 3, 470, 235, 0, 2455, 2454, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2458, 1, 0, 0, 0, 2457, 2459, 3, 488, 244, 0, 2458, 2457, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2466, 1, 0, 0, 0, 2460, 2461, 5, 399, 0, 0, 2461, 2462, 3, 330, 165, 0, 2462, 2463, 5, 400, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2466, 3, 446, 223, 0, 2465, 2441, 1, 0, 0, 0, 2465, 2460, 1, 0, 0, 0, 2465, 2464, 1, 0, 0, 0, 2466, 329, 1, 0, 0, 0, 2467, 2469, 3, 328, 164, 0, 2468, 2470, 3, 332, 166, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 1, 0, 0, 0, 2471, 2473, 3, 498, 249, 0, 2472, 2471, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2475, 1, 0, 0, 0, 2474, 2476, 3, 502, 251, 0, 2475, 2474, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2479, 3, 504, 252, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2482, 3, 506, 253, 0, 2481, 2480, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2484, 1, 0, 0, 0, 2483, 2485, 3, 340, 170, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 331, 1, 0, 0, 0, 2486, 2487, 3, 312, 156, 0, 2487, 2488, 3, 328, 164, 0, 2488, 2490, 1, 0, 0, 0, 2489, 2486, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 333, 1, 0, 0, 0, 2493, 2495, 3, 318, 159, 0, 2494, 2493, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 3, 330, 165, 0, 2497, 335, 1, 0, 0, 0, 2498, 2515, 5, 161, 0, 0, 2499, 2500, 5, 235, 0, 0, 2500, 2502, 3, 338, 169, 0, 2501, 2503, 3, 32, 16, 0, 2502, 2501, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2516, 1, 0, 0, 0, 2504, 2506, 5, 166, 0, 0, 2505, 2507, 5, 329, 0, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2513, 3, 576, 288, 0, 2509, 2510, 5, 399, 0, 0, 2510, 2511, 3, 220, 110, 0, 2511, 2512, 5, 400, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2509, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2516, 1, 0, 0, 0, 2515, 2499, 1, 0, 0, 0, 2515, 2504, 1, 0, 0, 0, 2516, 337, 1, 0, 0, 0, 2517, 2519, 5, 188, 0, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2521, 5, 93, 0, 0, 2521, 2523, 5, 426, 0, 0, 2522, 2524, 3, 184, 92, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2527, 3, 212, 106, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2531, 1, 0, 0, 0, 2528, 2529, 5, 329, 0, 0, 2529, 2531, 3, 576, 288, 0, 2530, 2518, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2531, 339, 1, 0, 0, 0, 2532, 2541, 5, 185, 0, 0, 2533, 2534, 5, 431, 0, 0, 2534, 2536, 5, 397, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2542, 5, 431, 0, 0, 2538, 2539, 5, 431, 0, 0, 2539, 2540, 5, 223, 0, 0, 2540, 2542, 5, 431, 0, 0, 2541, 2535, 1, 0, 0, 0, 2541, 2538, 1, 0, 0, 0, 2542, 341, 1, 0, 0, 0, 2543, 2544, 3, 222, 111, 0, 2544, 2545, 5, 405, 0, 0, 2545, 2546, 3, 344, 172, 0, 2546, 343, 1, 0, 0, 0, 2547, 2550, 5, 83, 0, 0, 2548, 2550, 3, 546, 273, 0, 2549, 2547, 1, 0, 0, 0, 2549, 2548, 1, 0, 0, 0, 2550, 345, 1, 0, 0, 0, 2551, 2552, 5, 304, 0, 0, 2552, 2557, 3, 342, 171, 0, 2553, 2554, 5, 397, 0, 0, 2554, 2556, 3, 342, 171, 0, 2555, 2553, 1, 0, 0, 0, 2556, 2559, 1, 0, 0, 0, 2557, 2555, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 347, 1, 0, 0, 0, 2559, 2557, 1, 0, 0, 0, 2560, 2561, 5, 318, 0, 0, 2561, 2570, 5, 344, 0, 0, 2562, 2567, 3, 350, 175, 0, 2563, 2564, 5, 397, 0, 0, 2564, 2566, 3, 350, 175, 0, 2565, 2563, 1, 0, 0, 0, 2566, 2569, 1, 0, 0, 0, 2567, 2565, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2571, 1, 0, 0, 0, 2569, 2567, 1, 0, 0, 0, 2570, 2562, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2584, 1, 0, 0, 0, 2572, 2574, 5, 48, 0, 0, 2573, 2575, 5, 389, 0, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2584, 1, 0, 0, 0, 2576, 2578, 5, 289, 0, 0, 2577, 2579, 5, 389, 0, 0, 2578, 2577, 1, 0, 0, 0, 2578, 2579, 1, 0, 0, 0, 2579, 2584, 1, 0, 0, 0, 2580, 2581, 5, 304, 0, 0, 2581, 2582, 5, 22, 0, 0, 2582, 2584, 7, 25, 0, 0, 2583, 2560, 1, 0, 0, 0, 2583, 2572, 1, 0, 0, 0, 2583, 2576, 1, 0, 0, 0, 2583, 2580, 1, 0, 0, 0, 2584, 349, 1, 0, 0, 0, 2585, 2586, 5, 168, 0, 0, 2586, 2587, 5, 182, 0, 0, 2587, 2591, 5, 312, 0, 0, 2588, 2589, 5, 261, 0, 0, 2589, 2591, 7, 26, 0, 0, 2590, 2585, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 351, 1, 0, 0, 0, 2592, 2595, 3, 356, 178, 0, 2593, 2595, 3, 358, 179, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2593, 1, 0, 0, 0, 2595, 2598, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2600, 1, 0, 0, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2601, 3, 354, 177, 0, 2600, 2599, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 353, 1, 0, 0, 0, 2602, 2603, 5, 383, 0, 0, 2603, 2604, 5, 216, 0, 0, 2604, 2607, 5, 201, 0, 0, 2605, 2606, 5, 11, 0, 0, 2606, 2608, 3, 536, 268, 0, 2607, 2605, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 5, 335, 0, 0, 2610, 2612, 5, 161, 0, 0, 2611, 2613, 3, 234, 117, 0, 2612, 2611, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 5, 374, 0, 0, 2615, 2616, 3, 494, 247, 0, 2616, 355, 1, 0, 0, 0, 2617, 2618, 5, 383, 0, 0, 2618, 2619, 5, 201, 0, 0, 2619, 2620, 5, 11, 0, 0, 2620, 2621, 3, 536, 268, 0, 2621, 2625, 5, 335, 0, 0, 2622, 2623, 5, 365, 0, 0, 2623, 2626, 3, 346, 173, 0, 2624, 2626, 5, 86, 0, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 357, 1, 0, 0, 0, 2627, 2628, 5, 383, 0, 0, 2628, 2629, 5, 201, 0, 0, 2629, 2633, 5, 335, 0, 0, 2630, 2631, 5, 365, 0, 0, 2631, 2634, 3, 346, 173, 0, 2632, 2634, 5, 86, 0, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 359, 1, 0, 0, 0, 2635, 2666, 5, 9, 0, 0, 2636, 2637, 5, 329, 0, 0, 2637, 2638, 3, 426, 213, 0, 2638, 2639, 3, 362, 181, 0, 2639, 2667, 1, 0, 0, 0, 2640, 2641, 5, 378, 0, 0, 2641, 2643, 3, 430, 215, 0, 2642, 2644, 5, 17, 0, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2646, 3, 366, 183, 0, 2646, 2667, 1, 0, 0, 0, 2647, 2648, 5, 202, 0, 0, 2648, 2649, 5, 378, 0, 0, 2649, 2653, 3, 430, 215, 0, 2650, 2654, 3, 38, 19, 0, 2651, 2654, 3, 40, 20, 0, 2652, 2654, 5, 265, 0, 0, 2653, 2650, 1, 0, 0, 0, 2653, 2651, 1, 0, 0, 0, 2653, 2652, 1, 0, 0, 0, 2654, 2667, 1, 0, 0, 0, 2655, 2656, 3, 64, 32, 0, 2656, 2657, 3, 368, 184, 0, 2657, 2667, 1, 0, 0, 0, 2658, 2659, 5, 69, 0, 0, 2659, 2667, 3, 370, 185, 0, 2660, 2661, 5, 155, 0, 0, 2661, 2662, 3, 590, 295, 0, 2662, 2663, 5, 224, 0, 0, 2663, 2664, 3, 576, 288, 0, 2664, 2665, 5, 265, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2636, 1, 0, 0, 0, 2666, 2640, 1, 0, 0, 0, 2666, 2647, 1, 0, 0, 0, 2666, 2655, 1, 0, 0, 0, 2666, 2658, 1, 0, 0, 0, 2666, 2660, 1, 0, 0, 0, 2667, 361, 1, 0, 0, 0, 2668, 2669, 5, 274, 0, 0, 2669, 2670, 5, 341, 0, 0, 2670, 2758, 3, 428, 214, 0, 2671, 2672, 5, 102, 0, 0, 2672, 2758, 5, 239, 0, 0, 2673, 2758, 3, 374, 187, 0, 2674, 2676, 5, 4, 0, 0, 2675, 2677, 3, 32, 16, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2682, 1, 0, 0, 0, 2678, 2680, 3, 578, 289, 0, 2679, 2681, 3, 372, 186, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2678, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 2758, 1, 0, 0, 0, 2686, 2690, 5, 342, 0, 0, 2687, 2689, 3, 578, 289, 0, 2688, 2687, 1, 0, 0, 0, 2689, 2692, 1, 0, 0, 0, 2690, 2688, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2758, 1, 0, 0, 0, 2692, 2690, 1, 0, 0, 0, 2693, 2697, 5, 15, 0, 0, 2694, 2696, 3, 578, 289, 0, 2695, 2694, 1, 0, 0, 0, 2696, 2699, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2758, 1, 0, 0, 0, 2699, 2697, 1, 0, 0, 0, 2700, 2704, 5, 353, 0, 0, 2701, 2703, 3, 578, 289, 0, 2702, 2701, 1, 0, 0, 0, 2703, 2706, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2758, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2708, 5, 304, 0, 0, 2708, 2709, 5, 332, 0, 0, 2709, 2758, 3, 192, 96, 0, 2710, 2711, 5, 363, 0, 0, 2711, 2713, 5, 332, 0, 0, 2712, 2714, 3, 30, 15, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2758, 3, 192, 96, 0, 2716, 2758, 3, 182, 91, 0, 2717, 2720, 5, 216, 0, 0, 2718, 2721, 5, 310, 0, 0, 2719, 2721, 3, 36, 18, 0, 2720, 2718, 1, 0, 0, 0, 2720, 2719, 1, 0, 0, 0, 2721, 2758, 1, 0, 0, 0, 2722, 2723, 5, 113, 0, 0, 2723, 2724, 3, 578, 289, 0, 2724, 2725, 5, 387, 0, 0, 2725, 2726, 5, 329, 0, 0, 2726, 2727, 3, 426, 213, 0, 2727, 2758, 1, 0, 0, 0, 2728, 2729, 5, 237, 0, 0, 2729, 2730, 5, 45, 0, 0, 2730, 2731, 5, 399, 0, 0, 2731, 2732, 3, 276, 138, 0, 2732, 2733, 5, 400, 0, 0, 2733, 2758, 1, 0, 0, 0, 2734, 2735, 5, 101, 0, 0, 2735, 2736, 5, 55, 0, 0, 2736, 2758, 3, 590, 295, 0, 2737, 2740, 5, 4, 0, 0, 2738, 2741, 3, 254, 127, 0, 2739, 2741, 3, 244, 122, 0, 2740, 2738, 1, 0, 0, 0, 2740, 2739, 1, 0, 0, 0, 2741, 2758, 1, 0, 0, 0, 2742, 2744, 3, 578, 289, 0, 2743, 2742, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2758, 3, 364, 182, 0, 2746, 2747, 5, 304, 0, 0, 2747, 2748, 5, 236, 0, 0, 2748, 2758, 3, 112, 56, 0, 2749, 2750, 5, 304, 0, 0, 2750, 2751, 5, 237, 0, 0, 2751, 2752, 5, 316, 0, 0, 2752, 2753, 5, 399, 0, 0, 2753, 2754, 3, 176, 88, 0, 2754, 2755, 5, 400, 0, 0, 2755, 2758, 1, 0, 0, 0, 2756, 2758, 3, 378, 189, 0, 2757, 2668, 1, 0, 0, 0, 2757, 2671, 1, 0, 0, 0, 2757, 2673, 1, 0, 0, 0, 2757, 2674, 1, 0, 0, 0, 2757, 2686, 1, 0, 0, 0, 2757, 2693, 1, 0, 0, 0, 2757, 2700, 1, 0, 0, 0, 2757, 2707, 1, 0, 0, 0, 2757, 2710, 1, 0, 0, 0, 2757, 2716, 1, 0, 0, 0, 2757, 2717, 1, 0, 0, 0, 2757, 2722, 1, 0, 0, 0, 2757, 2728, 1, 0, 0, 0, 2757, 2734, 1, 0, 0, 0, 2757, 2737, 1, 0, 0, 0, 2757, 2743, 1, 0, 0, 0, 2757, 2746, 1, 0, 0, 0, 2757, 2749, 1, 0, 0, 0, 2757, 2756, 1, 0, 0, 0, 2758, 363, 1, 0, 0, 0, 2759, 2760, 5, 304, 0, 0, 2760, 2761, 5, 129, 0, 0, 2761, 2893, 3, 380, 190, 0, 2762, 2763, 5, 304, 0, 0, 2763, 2764, 5, 189, 0, 0, 2764, 2893, 5, 426, 0, 0, 2765, 2893, 5, 53, 0, 0, 2766, 2776, 5, 304, 0, 0, 2767, 2768, 5, 301, 0, 0, 2768, 2772, 5, 426, 0, 0, 2769, 2770, 5, 387, 0, 0, 2770, 2771, 5, 302, 0, 0, 2771, 2773, 3, 192, 96, 0, 2772, 2769, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2777, 1, 0, 0, 0, 2774, 2775, 5, 302, 0, 0, 2775, 2777, 3, 192, 96, 0, 2776, 2767, 1, 0, 0, 0, 2776, 2774, 1, 0, 0, 0, 2777, 2893, 1, 0, 0, 0, 2778, 2779, 5, 363, 0, 0, 2779, 2780, 5, 302, 0, 0, 2780, 2893, 3, 192, 96, 0, 2781, 2782, 5, 274, 0, 0, 2782, 2783, 5, 341, 0, 0, 2783, 2893, 3, 578, 289, 0, 2784, 2785, 5, 166, 0, 0, 2785, 2786, 5, 431, 0, 0, 2786, 2893, 5, 31, 0, 0, 2787, 2788, 5, 304, 0, 0, 2788, 2789, 5, 310, 0, 0, 2789, 2790, 5, 189, 0, 0, 2790, 2791, 5, 399, 0, 0, 2791, 2796, 3, 376, 188, 0, 2792, 2793, 5, 397, 0, 0, 2793, 2795, 3, 376, 188, 0, 2794, 2792, 1, 0, 0, 0, 2795, 2798, 1, 0, 0, 0, 2796, 2794, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2799, 2800, 5, 400, 0, 0, 2800, 2893, 1, 0, 0, 0, 2801, 2802, 5, 216, 0, 0, 2802, 2893, 7, 27, 0, 0, 2803, 2893, 3, 180, 90, 0, 2804, 2805, 5, 49, 0, 0, 2805, 2808, 5, 426, 0, 0, 2806, 2807, 5, 11, 0, 0, 2807, 2809, 5, 380, 0, 0, 2808, 2806, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2814, 1, 0, 0, 0, 2810, 2811, 5, 42, 0, 0, 2811, 2812, 5, 166, 0, 0, 2812, 2813, 5, 431, 0, 0, 2813, 2815, 5, 31, 0, 0, 2814, 2810, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2817, 1, 0, 0, 0, 2816, 2818, 3, 498, 249, 0, 2817, 2816, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2821, 1, 0, 0, 0, 2819, 2820, 5, 246, 0, 0, 2820, 2822, 5, 426, 0, 0, 2821, 2819, 1, 0, 0, 0, 2821, 2822, 1, 0, 0, 0, 2822, 2827, 1, 0, 0, 0, 2823, 2824, 5, 387, 0, 0, 2824, 2825, 5, 235, 0, 0, 2825, 2826, 5, 332, 0, 0, 2826, 2828, 3, 192, 96, 0, 2827, 2823, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2893, 1, 0, 0, 0, 2829, 2830, 5, 365, 0, 0, 2830, 2831, 5, 319, 0, 0, 2831, 2833, 5, 134, 0, 0, 2832, 2834, 5, 45, 0, 0, 2833, 2832, 1, 0, 0, 0, 2833, 2834, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 3, 222, 111, 0, 2836, 2837, 5, 304, 0, 0, 2837, 2840, 3, 192, 96, 0, 2838, 2839, 5, 47, 0, 0, 2839, 2841, 5, 426, 0, 0, 2840, 2838, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2893, 1, 0, 0, 0, 2842, 2843, 5, 365, 0, 0, 2843, 2844, 5, 319, 0, 0, 2844, 2845, 5, 304, 0, 0, 2845, 2893, 3, 192, 96, 0, 2846, 2848, 5, 38, 0, 0, 2847, 2849, 5, 45, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 3, 222, 111, 0, 2851, 2852, 3, 228, 114, 0, 2852, 2854, 3, 300, 150, 0, 2853, 2855, 3, 284, 142, 0, 2854, 2853, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2858, 1, 0, 0, 0, 2856, 2857, 5, 47, 0, 0, 2857, 2859, 5, 426, 0, 0, 2858, 2856, 1, 0, 0, 0, 2858, 2859, 1, 0, 0, 0, 2859, 2863, 1, 0, 0, 0, 2860, 2864, 5, 130, 0, 0, 2861, 2862, 5, 6, 0, 0, 2862, 2864, 3, 590, 295, 0, 2863, 2860, 1, 0, 0, 0, 2863, 2861, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 2866, 1, 0, 0, 0, 2865, 2867, 3, 34, 17, 0, 2866, 2865, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2893, 1, 0, 0, 0, 2868, 2871, 5, 4, 0, 0, 2869, 2871, 5, 278, 0, 0, 2870, 2868, 1, 0, 0, 0, 2870, 2869, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2873, 5, 46, 0, 0, 2873, 2874, 5, 399, 0, 0, 2874, 2875, 3, 214, 107, 0, 2875, 2877, 5, 400, 0, 0, 2876, 2878, 3, 34, 17, 0, 2877, 2876, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2893, 1, 0, 0, 0, 2879, 2880, 5, 365, 0, 0, 2880, 2882, 5, 46, 0, 0, 2881, 2883, 3, 34, 17, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2893, 1, 0, 0, 0, 2884, 2890, 3, 238, 119, 0, 2885, 2887, 5, 218, 0, 0, 2886, 2888, 5, 34, 0, 0, 2887, 2886, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2891, 5, 222, 0, 0, 2890, 2885, 1, 0, 0, 0, 2890, 2889, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2759, 1, 0, 0, 0, 2892, 2762, 1, 0, 0, 0, 2892, 2765, 1, 0, 0, 0, 2892, 2766, 1, 0, 0, 0, 2892, 2778, 1, 0, 0, 0, 2892, 2781, 1, 0, 0, 0, 2892, 2784, 1, 0, 0, 0, 2892, 2787, 1, 0, 0, 0, 2892, 2801, 1, 0, 0, 0, 2892, 2803, 1, 0, 0, 0, 2892, 2804, 1, 0, 0, 0, 2892, 2829, 1, 0, 0, 0, 2892, 2842, 1, 0, 0, 0, 2892, 2846, 1, 0, 0, 0, 2892, 2870, 1, 0, 0, 0, 2892, 2879, 1, 0, 0, 0, 2892, 2884, 1, 0, 0, 0, 2893, 365, 1, 0, 0, 0, 2894, 2895, 5, 304, 0, 0, 2895, 2896, 5, 332, 0, 0, 2896, 2921, 3, 192, 96, 0, 2897, 2898, 5, 363, 0, 0, 2898, 2900, 5, 332, 0, 0, 2899, 2901, 3, 30, 15, 0, 2900, 2899, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2921, 3, 192, 96, 0, 2903, 2904, 5, 274, 0, 0, 2904, 2905, 5, 341, 0, 0, 2905, 2921, 3, 428, 214, 0, 2906, 2908, 5, 4, 0, 0, 2907, 2909, 3, 32, 16, 0, 2908, 2907, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2914, 1, 0, 0, 0, 2910, 2912, 3, 578, 289, 0, 2911, 2913, 3, 372, 186, 0, 2912, 2911, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2915, 1, 0, 0, 0, 2914, 2910, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2921, 1, 0, 0, 0, 2918, 2921, 3, 374, 187, 0, 2919, 2921, 3, 334, 167, 0, 2920, 2894, 1, 0, 0, 0, 2920, 2897, 1, 0, 0, 0, 2920, 2903, 1, 0, 0, 0, 2920, 2906, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2919, 1, 0, 0, 0, 2921, 367, 1, 0, 0, 0, 2922, 2923, 3, 420, 210, 0, 2923, 2924, 5, 304, 0, 0, 2924, 2925, 5, 76, 0, 0, 2925, 2926, 3, 196, 98, 0, 2926, 2938, 1, 0, 0, 0, 2927, 2928, 3, 420, 210, 0, 2928, 2929, 5, 304, 0, 0, 2929, 2930, 5, 236, 0, 0, 2930, 2931, 3, 114, 57, 0, 2931, 2938, 1, 0, 0, 0, 2932, 2933, 3, 420, 210, 0, 2933, 2934, 5, 304, 0, 0, 2934, 2935, 7, 28, 0, 0, 2935, 2936, 5, 426, 0, 0, 2936, 2938, 1, 0, 0, 0, 2937, 2922, 1, 0, 0, 0, 2937, 2927, 1, 0, 0, 0, 2937, 2932, 1, 0, 0, 0, 2938, 369, 1, 0, 0, 0, 2939, 2940, 3, 420, 210, 0, 2940, 2941, 5, 304, 0, 0, 2941, 2942, 5, 77, 0, 0, 2942, 2943, 3, 196, 98, 0, 2943, 2955, 1, 0, 0, 0, 2944, 2945, 3, 420, 210, 0, 2945, 2946, 5, 304, 0, 0, 2946, 2947, 5, 236, 0, 0, 2947, 2948, 3, 114, 57, 0, 2948, 2955, 1, 0, 0, 0, 2949, 2950, 3, 420, 210, 0, 2950, 2951, 5, 304, 0, 0, 2951, 2952, 5, 367, 0, 0, 2952, 2953, 5, 426, 0, 0, 2953, 2955, 1, 0, 0, 0, 2954, 2939, 1, 0, 0, 0, 2954, 2944, 1, 0, 0, 0, 2954, 2949, 1, 0, 0, 0, 2955, 371, 1, 0, 0, 0, 2956, 2957, 5, 189, 0, 0, 2957, 2958, 5, 426, 0, 0, 2958, 373, 1, 0, 0, 0, 2959, 2961, 5, 101, 0, 0, 2960, 2962, 3, 30, 15, 0, 2961, 2960, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2964, 5, 237, 0, 0, 2964, 2970, 3, 582, 291, 0, 2965, 2966, 5, 397, 0, 0, 2966, 2967, 5, 237, 0, 0, 2967, 2969, 3, 582, 291, 0, 2968, 2965, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 2975, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2974, 5, 152, 0, 0, 2974, 2976, 5, 254, 0, 0, 2975, 2973, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2978, 1, 0, 0, 0, 2977, 2979, 5, 255, 0, 0, 2978, 2977, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2981, 1, 0, 0, 0, 2980, 2982, 3, 14, 7, 0, 2981, 2980, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 375, 1, 0, 0, 0, 2983, 2986, 3, 528, 264, 0, 2984, 2986, 3, 260, 130, 0, 2985, 2983, 1, 0, 0, 0, 2985, 2984, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2988, 5, 405, 0, 0, 2988, 2989, 5, 426, 0, 0, 2989, 377, 1, 0, 0, 0, 2990, 3000, 5, 115, 0, 0, 2991, 2992, 5, 289, 0, 0, 2992, 2993, 5, 399, 0, 0, 2993, 3001, 7, 29, 0, 0, 2994, 2995, 5, 118, 0, 0, 2995, 2996, 5, 399, 0, 0, 2996, 3001, 5, 426, 0, 0, 2997, 2998, 5, 306, 0, 0, 2998, 2999, 5, 399, 0, 0, 2999, 3001, 5, 431, 0, 0, 3000, 2991, 1, 0, 0, 0, 3000, 2994, 1, 0, 0, 0, 3000, 2997, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 5, 400, 0, 0, 3003, 379, 1, 0, 0, 0, 3004, 3005, 5, 160, 0, 0, 3005, 3006, 5, 426, 0, 0, 3006, 3007, 5, 233, 0, 0, 3007, 3008, 5, 426, 0, 0, 3008, 3009, 5, 301, 0, 0, 3009, 3014, 5, 426, 0, 0, 3010, 3011, 5, 159, 0, 0, 3011, 3012, 5, 426, 0, 0, 3012, 3013, 5, 232, 0, 0, 3013, 3015, 5, 426, 0, 0, 3014, 3010, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3018, 1, 0, 0, 0, 3016, 3018, 3, 590, 295, 0, 3017, 3004, 1, 0, 0, 0, 3017, 3016, 1, 0, 0, 0, 3018, 381, 1, 0, 0, 0, 3019, 3020, 5, 184, 0, 0, 3020, 3029, 5, 128, 0, 0, 3021, 3022, 5, 184, 0, 0, 3022, 3023, 5, 128, 0, 0, 3023, 3024, 3, 590, 295, 0, 3024, 3025, 5, 426, 0, 0, 3025, 3029, 1, 0, 0, 0, 3026, 3027, 5, 184, 0, 0, 3027, 3029, 3, 426, 213, 0, 3028, 3019, 1, 0, 0, 0, 3028, 3021, 1, 0, 0, 0, 3028, 3026, 1, 0, 0, 0, 3029, 383, 1, 0, 0, 0, 3030, 3164, 5, 58, 0, 0, 3031, 3033, 5, 333, 0, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3036, 5, 345, 0, 0, 3035, 3034, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3039, 5, 123, 0, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3042, 5, 329, 0, 0, 3041, 3043, 3, 32, 16, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3101, 3, 428, 214, 0, 3045, 3047, 3, 382, 191, 0, 3046, 3048, 3, 172, 86, 0, 3047, 3046, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3051, 3, 184, 92, 0, 3050, 3049, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3053, 1, 0, 0, 0, 3052, 3054, 3, 212, 106, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3056, 1, 0, 0, 0, 3055, 3057, 3, 372, 186, 0, 3056, 3055, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3059, 1, 0, 0, 0, 3058, 3060, 3, 190, 95, 0, 3059, 3058, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3062, 1, 0, 0, 0, 3061, 3063, 3, 170, 85, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3102, 1, 0, 0, 0, 3064, 3065, 5, 399, 0, 0, 3065, 3066, 3, 216, 108, 0, 3066, 3067, 5, 400, 0, 0, 3067, 3069, 1, 0, 0, 0, 3068, 3064, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3071, 1, 0, 0, 0, 3070, 3072, 3, 168, 84, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, 0, 0, 0, 3073, 3075, 3, 172, 86, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3077, 1, 0, 0, 0, 3076, 3078, 3, 180, 90, 0, 3077, 3076, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3081, 3, 182, 91, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3084, 3, 184, 92, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3087, 3, 212, 106, 0, 3086, 3085, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3089, 1, 0, 0, 0, 3088, 3090, 3, 372, 186, 0, 3089, 3088, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3092, 1, 0, 0, 0, 3091, 3093, 3, 190, 95, 0, 3092, 3091, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3096, 3, 170, 85, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3099, 1, 0, 0, 0, 3097, 3098, 5, 17, 0, 0, 3098, 3100, 3, 334, 167, 0, 3099, 3097, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3102, 1, 0, 0, 0, 3101, 3045, 1, 0, 0, 0, 3101, 3068, 1, 0, 0, 0, 3102, 3165, 1, 0, 0, 0, 3103, 3104, 5, 195, 0, 0, 3104, 3106, 5, 329, 0, 0, 3105, 3107, 3, 32, 16, 0, 3106, 3105, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3162, 3, 428, 214, 0, 3109, 3111, 3, 382, 191, 0, 3110, 3112, 3, 184, 92, 0, 3111, 3110, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3114, 1, 0, 0, 0, 3113, 3115, 3, 212, 106, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3117, 1, 0, 0, 0, 3116, 3118, 3, 372, 186, 0, 3117, 3116, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3120, 1, 0, 0, 0, 3119, 3121, 3, 190, 95, 0, 3120, 3119, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 3123, 1, 0, 0, 0, 3122, 3124, 3, 170, 85, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3163, 1, 0, 0, 0, 3125, 3126, 5, 399, 0, 0, 3126, 3127, 3, 216, 108, 0, 3127, 3128, 5, 400, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3125, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3132, 1, 0, 0, 0, 3131, 3133, 3, 168, 84, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3135, 1, 0, 0, 0, 3134, 3136, 3, 172, 86, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3139, 3, 180, 90, 0, 3138, 3137, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3142, 3, 182, 91, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3144, 1, 0, 0, 0, 3143, 3145, 3, 184, 92, 0, 3144, 3143, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3147, 1, 0, 0, 0, 3146, 3148, 3, 212, 106, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3151, 3, 372, 186, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 3, 190, 95, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 170, 85, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3160, 1, 0, 0, 0, 3158, 3159, 5, 17, 0, 0, 3159, 3161, 3, 334, 167, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 3163, 1, 0, 0, 0, 3162, 3109, 1, 0, 0, 0, 3162, 3129, 1, 0, 0, 0, 3163, 3165, 1, 0, 0, 0, 3164, 3032, 1, 0, 0, 0, 3164, 3103, 1, 0, 0, 0, 3165, 385, 1, 0, 0, 0, 3166, 3167, 5, 58, 0, 0, 3167, 3169, 5, 69, 0, 0, 3168, 3170, 3, 32, 16, 0, 3169, 3168, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3174, 3, 590, 295, 0, 3172, 3173, 5, 352, 0, 0, 3173, 3175, 5, 426, 0, 0, 3174, 3172, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3178, 1, 0, 0, 0, 3176, 3177, 5, 367, 0, 0, 3177, 3179, 5, 426, 0, 0, 3178, 3176, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3182, 1, 0, 0, 0, 3180, 3181, 5, 47, 0, 0, 3181, 3183, 5, 426, 0, 0, 3182, 3180, 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 3187, 1, 0, 0, 0, 3184, 3185, 5, 387, 0, 0, 3185, 3186, 5, 77, 0, 0, 3186, 3188, 3, 196, 98, 0, 3187, 3184, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 387, 1, 0, 0, 0, 3189, 3190, 5, 101, 0, 0, 3190, 3192, 5, 69, 0, 0, 3191, 3193, 3, 30, 15, 0, 3192, 3191, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3195, 3, 590, 295, 0, 3195, 389, 1, 0, 0, 0, 3196, 3197, 3, 590, 295, 0, 3197, 3198, 5, 395, 0, 0, 3198, 3200, 1, 0, 0, 0, 3199, 3196, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3199, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3204, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 3205, 5, 415, 0, 0, 3205, 391, 1, 0, 0, 0, 3206, 3211, 3, 536, 268, 0, 3207, 3208, 5, 397, 0, 0, 3208, 3210, 3, 536, 268, 0, 3209, 3207, 1, 0, 0, 0, 3210, 3213, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 393, 1, 0, 0, 0, 3213, 3211, 1, 0, 0, 0, 3214, 3219, 3, 590, 295, 0, 3215, 3216, 5, 397, 0, 0, 3216, 3218, 3, 590, 295, 0, 3217, 3215, 1, 0, 0, 0, 3218, 3221, 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 395, 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3222, 3223, 5, 139, 0, 0, 3223, 3224, 3, 398, 199, 0, 3224, 397, 1, 0, 0, 0, 3225, 3226, 5, 359, 0, 0, 3226, 3229, 3, 406, 203, 0, 3227, 3228, 5, 397, 0, 0, 3228, 3230, 3, 406, 203, 0, 3229, 3227, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3229, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3235, 1, 0, 0, 0, 3233, 3235, 3, 402, 201, 0, 3234, 3225, 1, 0, 0, 0, 3234, 3233, 1, 0, 0, 0, 3235, 399, 1, 0, 0, 0, 3236, 3240, 3, 416, 208, 0, 3237, 3239, 3, 410, 205, 0, 3238, 3237, 1, 0, 0, 0, 3239, 3242, 1, 0, 0, 0, 3240, 3238, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3269, 1, 0, 0, 0, 3242, 3240, 1, 0, 0, 0, 3243, 3247, 3, 450, 225, 0, 3244, 3246, 3, 410, 205, 0, 3245, 3244, 1, 0, 0, 0, 3246, 3249, 1, 0, 0, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3269, 1, 0, 0, 0, 3249, 3247, 1, 0, 0, 0, 3250, 3254, 3, 434, 217, 0, 3251, 3253, 3, 410, 205, 0, 3252, 3251, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3269, 1, 0, 0, 0, 3256, 3254, 1, 0, 0, 0, 3257, 3261, 3, 440, 220, 0, 3258, 3260, 3, 410, 205, 0, 3259, 3258, 1, 0, 0, 0, 3260, 3263, 1, 0, 0, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3269, 1, 0, 0, 0, 3263, 3261, 1, 0, 0, 0, 3264, 3265, 5, 399, 0, 0, 3265, 3266, 3, 402, 201, 0, 3266, 3267, 5, 400, 0, 0, 3267, 3269, 1, 0, 0, 0, 3268, 3236, 1, 0, 0, 0, 3268, 3243, 1, 0, 0, 0, 3268, 3250, 1, 0, 0, 0, 3268, 3257, 1, 0, 0, 0, 3268, 3264, 1, 0, 0, 0, 3269, 401, 1, 0, 0, 0, 3270, 3288, 3, 400, 200, 0, 3271, 3272, 3, 408, 204, 0, 3272, 3284, 3, 404, 202, 0, 3273, 3280, 5, 224, 0, 0, 3274, 3281, 3, 536, 268, 0, 3275, 3278, 3, 226, 113, 0, 3276, 3277, 5, 405, 0, 0, 3277, 3279, 3, 226, 113, 0, 3278, 3276, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3281, 1, 0, 0, 0, 3280, 3274, 1, 0, 0, 0, 3280, 3275, 1, 0, 0, 0, 3281, 3285, 1, 0, 0, 0, 3282, 3283, 5, 370, 0, 0, 3283, 3285, 3, 234, 117, 0, 3284, 3273, 1, 0, 0, 0, 3284, 3282, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3271, 1, 0, 0, 0, 3287, 3290, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 403, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 3296, 3, 416, 208, 0, 3292, 3296, 3, 450, 225, 0, 3293, 3296, 3, 434, 217, 0, 3294, 3296, 3, 440, 220, 0, 3295, 3291, 1, 0, 0, 0, 3295, 3292, 1, 0, 0, 0, 3295, 3293, 1, 0, 0, 0, 3295, 3294, 1, 0, 0, 0, 3296, 3300, 1, 0, 0, 0, 3297, 3299, 3, 410, 205, 0, 3298, 3297, 1, 0, 0, 0, 3299, 3302, 1, 0, 0, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 405, 1, 0, 0, 0, 3302, 3300, 1, 0, 0, 0, 3303, 3305, 5, 250, 0, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 3, 424, 212, 0, 3307, 3309, 3, 414, 207, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3314, 1, 0, 0, 0, 3310, 3312, 5, 17, 0, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3313, 1, 0, 0, 0, 3313, 3315, 3, 590, 295, 0, 3314, 3311, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 3317, 5, 399, 0, 0, 3317, 3318, 3, 392, 196, 0, 3318, 3319, 5, 400, 0, 0, 3319, 407, 1, 0, 0, 0, 3320, 3335, 5, 397, 0, 0, 3321, 3332, 5, 157, 0, 0, 3322, 3332, 5, 60, 0, 0, 3323, 3325, 7, 30, 0, 0, 3324, 3326, 5, 231, 0, 0, 3325, 3324, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3332, 1, 0, 0, 0, 3327, 3329, 5, 180, 0, 0, 3328, 3330, 7, 31, 0, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3321, 1, 0, 0, 0, 3331, 3322, 1, 0, 0, 0, 3331, 3323, 1, 0, 0, 0, 3331, 3327, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3335, 5, 171, 0, 0, 3334, 3320, 1, 0, 0, 0, 3334, 3331, 1, 0, 0, 0, 3335, 409, 1, 0, 0, 0, 3336, 3337, 5, 178, 0, 0, 3337, 3338, 5, 378, 0, 0, 3338, 3339, 5, 231, 0, 0, 3339, 3340, 3, 508, 254, 0, 3340, 3350, 3, 412, 206, 0, 3341, 3342, 5, 17, 0, 0, 3342, 3347, 3, 590, 295, 0, 3343, 3344, 5, 397, 0, 0, 3344, 3346, 3, 590, 295, 0, 3345, 3343, 1, 0, 0, 0, 3346, 3349, 1, 0, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3350, 3341, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3394, 1, 0, 0, 0, 3352, 3354, 5, 397, 0, 0, 3353, 3352, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3391, 5, 178, 0, 0, 3356, 3357, 5, 378, 0, 0, 3357, 3358, 3, 508, 254, 0, 3358, 3368, 3, 412, 206, 0, 3359, 3360, 5, 17, 0, 0, 3360, 3365, 3, 590, 295, 0, 3361, 3362, 5, 397, 0, 0, 3362, 3364, 3, 590, 295, 0, 3363, 3361, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3369, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3359, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3392, 1, 0, 0, 0, 3370, 3371, 5, 329, 0, 0, 3371, 3372, 5, 399, 0, 0, 3372, 3373, 3, 446, 223, 0, 3373, 3375, 5, 400, 0, 0, 3374, 3376, 5, 17, 0, 0, 3375, 3374, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3389, 3, 412, 206, 0, 3378, 3379, 5, 399, 0, 0, 3379, 3384, 3, 590, 295, 0, 3380, 3381, 5, 397, 0, 0, 3381, 3383, 3, 590, 295, 0, 3382, 3380, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3387, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3388, 5, 400, 0, 0, 3388, 3390, 1, 0, 0, 0, 3389, 3378, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3392, 1, 0, 0, 0, 3391, 3356, 1, 0, 0, 0, 3391, 3370, 1, 0, 0, 0, 3392, 3394, 1, 0, 0, 0, 3393, 3336, 1, 0, 0, 0, 3393, 3353, 1, 0, 0, 0, 3394, 411, 1, 0, 0, 0, 3395, 3396, 3, 590, 295, 0, 3396, 413, 1, 0, 0, 0, 3397, 3398, 5, 331, 0, 0, 3398, 3399, 5, 399, 0, 0, 3399, 3400, 5, 30, 0, 0, 3400, 3401, 5, 431, 0, 0, 3401, 3402, 5, 230, 0, 0, 3402, 3403, 5, 221, 0, 0, 3403, 3413, 5, 431, 0, 0, 3404, 3405, 5, 224, 0, 0, 3405, 3410, 3, 536, 268, 0, 3406, 3407, 5, 397, 0, 0, 3407, 3409, 3, 536, 268, 0, 3408, 3406, 1, 0, 0, 0, 3409, 3412, 1, 0, 0, 0, 3410, 3408, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3414, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3413, 3404, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3425, 5, 400, 0, 0, 3416, 3417, 5, 331, 0, 0, 3417, 3421, 5, 399, 0, 0, 3418, 3419, 5, 431, 0, 0, 3419, 3422, 7, 32, 0, 0, 3420, 3422, 5, 430, 0, 0, 3421, 3418, 1, 0, 0, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3425, 5, 400, 0, 0, 3424, 3397, 1, 0, 0, 0, 3424, 3416, 1, 0, 0, 0, 3425, 415, 1, 0, 0, 0, 3426, 3428, 3, 424, 212, 0, 3427, 3429, 3, 192, 96, 0, 3428, 3427, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3431, 1, 0, 0, 0, 3430, 3432, 3, 414, 207, 0, 3431, 3430, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3434, 1, 0, 0, 0, 3433, 3435, 3, 418, 209, 0, 3434, 3433, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3440, 1, 0, 0, 0, 3436, 3438, 5, 17, 0, 0, 3437, 3436, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3441, 3, 590, 295, 0, 3440, 3437, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 417, 1, 0, 0, 0, 3442, 3452, 5, 134, 0, 0, 3443, 3444, 5, 327, 0, 0, 3444, 3445, 5, 17, 0, 0, 3445, 3446, 5, 221, 0, 0, 3446, 3453, 3, 536, 268, 0, 3447, 3448, 5, 134, 0, 0, 3448, 3449, 5, 328, 0, 0, 3449, 3450, 5, 17, 0, 0, 3450, 3451, 5, 221, 0, 0, 3451, 3453, 5, 431, 0, 0, 3452, 3443, 1, 0, 0, 0, 3452, 3447, 1, 0, 0, 0, 3453, 419, 1, 0, 0, 0, 3454, 3455, 3, 590, 295, 0, 3455, 421, 1, 0, 0, 0, 3456, 3457, 3, 590, 295, 0, 3457, 423, 1, 0, 0, 0, 3458, 3461, 3, 426, 213, 0, 3459, 3461, 3, 430, 215, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3459, 1, 0, 0, 0, 3461, 425, 1, 0, 0, 0, 3462, 3463, 3, 590, 295, 0, 3463, 3464, 5, 395, 0, 0, 3464, 3467, 3, 590, 295, 0, 3465, 3466, 5, 395, 0, 0, 3466, 3468, 3, 590, 295, 0, 3467, 3465, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3471, 1, 0, 0, 0, 3469, 3471, 3, 590, 295, 0, 3470, 3462, 1, 0, 0, 0, 3470, 3469, 1, 0, 0, 0, 3471, 427, 1, 0, 0, 0, 3472, 3473, 3, 590, 295, 0, 3473, 3474, 5, 395, 0, 0, 3474, 3477, 3, 590, 295, 0, 3475, 3476, 5, 395, 0, 0, 3476, 3478, 3, 590, 295, 0, 3477, 3475, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3481, 1, 0, 0, 0, 3479, 3481, 3, 590, 295, 0, 3480, 3472, 1, 0, 0, 0, 3480, 3479, 1, 0, 0, 0, 3481, 429, 1, 0, 0, 0, 3482, 3483, 3, 590, 295, 0, 3483, 3484, 5, 395, 0, 0, 3484, 3486, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3488, 3, 590, 295, 0, 3488, 431, 1, 0, 0, 0, 3489, 3490, 3, 590, 295, 0, 3490, 3491, 5, 395, 0, 0, 3491, 3493, 1, 0, 0, 0, 3492, 3489, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 3495, 3, 590, 295, 0, 3495, 433, 1, 0, 0, 0, 3496, 3497, 5, 399, 0, 0, 3497, 3498, 3, 314, 157, 0, 3498, 3500, 5, 400, 0, 0, 3499, 3501, 5, 17, 0, 0, 3500, 3499, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3503, 3, 590, 295, 0, 3503, 435, 1, 0, 0, 0, 3504, 3506, 3, 500, 250, 0, 3505, 3507, 3, 498, 249, 0, 3506, 3505, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3516, 1, 0, 0, 0, 3508, 3516, 3, 498, 249, 0, 3509, 3511, 3, 504, 252, 0, 3510, 3512, 3, 506, 253, 0, 3511, 3510, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3516, 1, 0, 0, 0, 3513, 3516, 3, 506, 253, 0, 3514, 3516, 3, 502, 251, 0, 3515, 3504, 1, 0, 0, 0, 3515, 3508, 1, 0, 0, 0, 3515, 3509, 1, 0, 0, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 437, 1, 0, 0, 0, 3517, 3521, 3, 434, 217, 0, 3518, 3521, 3, 416, 208, 0, 3519, 3521, 3, 440, 220, 0, 3520, 3517, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3519, 1, 0, 0, 0, 3521, 439, 1, 0, 0, 0, 3522, 3524, 3, 442, 221, 0, 3523, 3525, 3, 590, 295, 0, 3524, 3523, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 441, 1, 0, 0, 0, 3526, 3527, 3, 590, 295, 0, 3527, 3528, 5, 399, 0, 0, 3528, 3529, 5, 224, 0, 0, 3529, 3531, 3, 438, 219, 0, 3530, 3532, 3, 436, 218, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3548, 1, 0, 0, 0, 3533, 3534, 5, 432, 0, 0, 3534, 3535, 5, 399, 0, 0, 3535, 3536, 3, 536, 268, 0, 3536, 3545, 5, 400, 0, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3539, 5, 432, 0, 0, 3539, 3540, 5, 399, 0, 0, 3540, 3541, 3, 536, 268, 0, 3541, 3542, 5, 400, 0, 0, 3542, 3544, 1, 0, 0, 0, 3543, 3537, 1, 0, 0, 0, 3544, 3547, 1, 0, 0, 0, 3545, 3543, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3549, 1, 0, 0, 0, 3547, 3545, 1, 0, 0, 0, 3548, 3533, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3551, 5, 400, 0, 0, 3551, 443, 1, 0, 0, 0, 3552, 3555, 5, 384, 0, 0, 3553, 3556, 3, 536, 268, 0, 3554, 3556, 3, 226, 113, 0, 3555, 3553, 1, 0, 0, 0, 3555, 3554, 1, 0, 0, 0, 3556, 445, 1, 0, 0, 0, 3557, 3576, 5, 374, 0, 0, 3558, 3563, 3, 494, 247, 0, 3559, 3560, 5, 397, 0, 0, 3560, 3562, 3, 494, 247, 0, 3561, 3559, 1, 0, 0, 0, 3562, 3565, 1, 0, 0, 0, 3563, 3561, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3577, 1, 0, 0, 0, 3565, 3563, 1, 0, 0, 0, 3566, 3567, 5, 399, 0, 0, 3567, 3568, 3, 490, 245, 0, 3568, 3573, 5, 400, 0, 0, 3569, 3570, 5, 397, 0, 0, 3570, 3572, 3, 494, 247, 0, 3571, 3569, 1, 0, 0, 0, 3572, 3575, 1, 0, 0, 0, 3573, 3571, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3577, 1, 0, 0, 0, 3575, 3573, 1, 0, 0, 0, 3576, 3558, 1, 0, 0, 0, 3576, 3566, 1, 0, 0, 0, 3577, 447, 1, 0, 0, 0, 3578, 3579, 5, 329, 0, 0, 3579, 3580, 5, 399, 0, 0, 3580, 3581, 3, 446, 223, 0, 3581, 3582, 5, 400, 0, 0, 3582, 449, 1, 0, 0, 0, 3583, 3585, 3, 448, 224, 0, 3584, 3586, 5, 17, 0, 0, 3585, 3584, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3597, 3, 412, 206, 0, 3588, 3589, 5, 399, 0, 0, 3589, 3594, 3, 590, 295, 0, 3590, 3591, 5, 397, 0, 0, 3591, 3593, 3, 590, 295, 0, 3592, 3590, 1, 0, 0, 0, 3593, 3596, 1, 0, 0, 0, 3594, 3592, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3598, 1, 0, 0, 0, 3596, 3594, 1, 0, 0, 0, 3597, 3588, 1, 0, 0, 0, 3597, 3598, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3600, 5, 400, 0, 0, 3600, 451, 1, 0, 0, 0, 3601, 3603, 5, 299, 0, 0, 3602, 3604, 5, 436, 0, 0, 3603, 3602, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3611, 1, 0, 0, 0, 3605, 3607, 7, 24, 0, 0, 3606, 3605, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3612, 3, 456, 228, 0, 3609, 3610, 5, 347, 0, 0, 3610, 3612, 3, 454, 227, 0, 3611, 3606, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3615, 3, 464, 232, 0, 3614, 3601, 1, 0, 0, 0, 3614, 3613, 1, 0, 0, 0, 3615, 453, 1, 0, 0, 0, 3616, 3617, 5, 399, 0, 0, 3617, 3618, 3, 468, 234, 0, 3618, 3619, 5, 400, 0, 0, 3619, 3620, 3, 184, 92, 0, 3620, 3621, 5, 267, 0, 0, 3621, 3622, 5, 426, 0, 0, 3622, 3623, 5, 370, 0, 0, 3623, 3636, 5, 426, 0, 0, 3624, 3634, 5, 17, 0, 0, 3625, 3628, 5, 399, 0, 0, 3626, 3629, 3, 394, 197, 0, 3627, 3629, 3, 214, 107, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3627, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, 3630, 3631, 5, 400, 0, 0, 3631, 3635, 1, 0, 0, 0, 3632, 3635, 3, 394, 197, 0, 3633, 3635, 3, 214, 107, 0, 3634, 3625, 1, 0, 0, 0, 3634, 3632, 1, 0, 0, 0, 3634, 3633, 1, 0, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3624, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3639, 3, 184, 92, 0, 3639, 3640, 5, 266, 0, 0, 3640, 3641, 5, 426, 0, 0, 3641, 455, 1, 0, 0, 0, 3642, 3647, 3, 458, 229, 0, 3643, 3644, 5, 397, 0, 0, 3644, 3646, 3, 458, 229, 0, 3645, 3643, 1, 0, 0, 0, 3646, 3649, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 457, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3676, 3, 390, 195, 0, 3651, 3654, 3, 460, 230, 0, 3652, 3654, 3, 462, 231, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3652, 1, 0, 0, 0, 3654, 3671, 1, 0, 0, 0, 3655, 3657, 5, 17, 0, 0, 3656, 3655, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3672, 3, 590, 295, 0, 3659, 3660, 5, 17, 0, 0, 3660, 3661, 5, 399, 0, 0, 3661, 3666, 3, 590, 295, 0, 3662, 3663, 5, 397, 0, 0, 3663, 3665, 3, 590, 295, 0, 3664, 3662, 1, 0, 0, 0, 3665, 3668, 1, 0, 0, 0, 3666, 3664, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3666, 1, 0, 0, 0, 3669, 3670, 5, 400, 0, 0, 3670, 3672, 1, 0, 0, 0, 3671, 3656, 1, 0, 0, 0, 3671, 3659, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3676, 1, 0, 0, 0, 3673, 3674, 4, 229, 2, 0, 3674, 3676, 3, 622, 311, 0, 3675, 3650, 1, 0, 0, 0, 3675, 3653, 1, 0, 0, 0, 3675, 3673, 1, 0, 0, 0, 3676, 459, 1, 0, 0, 0, 3677, 3678, 3, 222, 111, 0, 3678, 461, 1, 0, 0, 0, 3679, 3680, 3, 536, 268, 0, 3680, 463, 1, 0, 0, 0, 3681, 3682, 7, 33, 0, 0, 3682, 3683, 3, 468, 234, 0, 3683, 3684, 3, 184, 92, 0, 3684, 3685, 5, 267, 0, 0, 3685, 3686, 5, 426, 0, 0, 3686, 3687, 5, 370, 0, 0, 3687, 3700, 5, 426, 0, 0, 3688, 3698, 5, 17, 0, 0, 3689, 3692, 5, 399, 0, 0, 3690, 3693, 3, 394, 197, 0, 3691, 3693, 3, 214, 107, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3691, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 5, 400, 0, 0, 3695, 3699, 1, 0, 0, 0, 3696, 3699, 3, 394, 197, 0, 3697, 3699, 3, 214, 107, 0, 3698, 3689, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3697, 1, 0, 0, 0, 3699, 3701, 1, 0, 0, 0, 3700, 3688, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3703, 3, 184, 92, 0, 3703, 3704, 5, 266, 0, 0, 3704, 3705, 5, 426, 0, 0, 3705, 465, 1, 0, 0, 0, 3706, 3709, 3, 390, 195, 0, 3707, 3709, 3, 536, 268, 0, 3708, 3706, 1, 0, 0, 0, 3708, 3707, 1, 0, 0, 0, 3709, 467, 1, 0, 0, 0, 3710, 3715, 3, 466, 233, 0, 3711, 3712, 5, 397, 0, 0, 3712, 3714, 3, 466, 233, 0, 3713, 3711, 1, 0, 0, 0, 3714, 3717, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 469, 1, 0, 0, 0, 3717, 3715, 1, 0, 0, 0, 3718, 3719, 5, 386, 0, 0, 3719, 3720, 3, 590, 295, 0, 3720, 3721, 5, 17, 0, 0, 3721, 3729, 3, 472, 236, 0, 3722, 3723, 5, 397, 0, 0, 3723, 3724, 3, 590, 295, 0, 3724, 3725, 5, 17, 0, 0, 3725, 3726, 3, 472, 236, 0, 3726, 3728, 1, 0, 0, 0, 3727, 3722, 1, 0, 0, 0, 3728, 3731, 1, 0, 0, 0, 3729, 3727, 1, 0, 0, 0, 3729, 3730, 1, 0, 0, 0, 3730, 471, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3732, 3745, 3, 590, 295, 0, 3733, 3735, 5, 399, 0, 0, 3734, 3736, 3, 590, 295, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 436, 218, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3741, 1, 0, 0, 0, 3740, 3742, 3, 474, 237, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 5, 400, 0, 0, 3744, 3732, 1, 0, 0, 0, 3744, 3733, 1, 0, 0, 0, 3745, 473, 1, 0, 0, 0, 3746, 3760, 7, 34, 0, 0, 3747, 3748, 5, 354, 0, 0, 3748, 3754, 5, 247, 0, 0, 3749, 3750, 5, 62, 0, 0, 3750, 3754, 5, 291, 0, 0, 3751, 3752, 5, 431, 0, 0, 3752, 3754, 5, 247, 0, 0, 3753, 3747, 1, 0, 0, 0, 3753, 3749, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3761, 1, 0, 0, 0, 3755, 3756, 5, 25, 0, 0, 3756, 3757, 3, 476, 238, 0, 3757, 3758, 5, 11, 0, 0, 3758, 3759, 3, 476, 238, 0, 3759, 3761, 1, 0, 0, 0, 3760, 3753, 1, 0, 0, 0, 3760, 3755, 1, 0, 0, 0, 3761, 475, 1, 0, 0, 0, 3762, 3763, 7, 35, 0, 0, 3763, 3767, 7, 36, 0, 0, 3764, 3765, 5, 62, 0, 0, 3765, 3767, 5, 291, 0, 0, 3766, 3762, 1, 0, 0, 0, 3766, 3764, 1, 0, 0, 0, 3767, 477, 1, 0, 0, 0, 3768, 3769, 5, 144, 0, 0, 3769, 3775, 5, 32, 0, 0, 3770, 3776, 3, 222, 111, 0, 3771, 3776, 3, 480, 240, 0, 3772, 3776, 3, 482, 241, 0, 3773, 3774, 5, 399, 0, 0, 3774, 3776, 5, 400, 0, 0, 3775, 3770, 1, 0, 0, 0, 3775, 3771, 1, 0, 0, 0, 3775, 3772, 1, 0, 0, 0, 3775, 3773, 1, 0, 0, 0, 3776, 479, 1, 0, 0, 0, 3777, 3780, 5, 290, 0, 0, 3778, 3780, 5, 61, 0, 0, 3779, 3777, 1, 0, 0, 0, 3779, 3778, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3782, 5, 399, 0, 0, 3782, 3787, 3, 536, 268, 0, 3783, 3784, 5, 397, 0, 0, 3784, 3786, 3, 536, 268, 0, 3785, 3783, 1, 0, 0, 0, 3786, 3789, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3790, 1, 0, 0, 0, 3789, 3787, 1, 0, 0, 0, 3790, 3791, 5, 400, 0, 0, 3791, 481, 1, 0, 0, 0, 3792, 3797, 3, 496, 248, 0, 3793, 3794, 5, 387, 0, 0, 3794, 3798, 5, 290, 0, 0, 3795, 3796, 5, 387, 0, 0, 3796, 3798, 5, 61, 0, 0, 3797, 3793, 1, 0, 0, 0, 3797, 3795, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3812, 1, 0, 0, 0, 3799, 3800, 5, 145, 0, 0, 3800, 3801, 5, 305, 0, 0, 3801, 3802, 5, 399, 0, 0, 3802, 3807, 3, 484, 242, 0, 3803, 3804, 5, 397, 0, 0, 3804, 3806, 3, 484, 242, 0, 3805, 3803, 1, 0, 0, 0, 3806, 3809, 1, 0, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3807, 1, 0, 0, 0, 3810, 3811, 5, 400, 0, 0, 3811, 3813, 1, 0, 0, 0, 3812, 3799, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 483, 1, 0, 0, 0, 3814, 3816, 5, 399, 0, 0, 3815, 3817, 3, 536, 268, 0, 3816, 3815, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3822, 1, 0, 0, 0, 3818, 3819, 5, 397, 0, 0, 3819, 3821, 3, 536, 268, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3824, 1, 0, 0, 0, 3822, 3820, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3825, 1, 0, 0, 0, 3824, 3822, 1, 0, 0, 0, 3825, 3828, 5, 400, 0, 0, 3826, 3828, 3, 536, 268, 0, 3827, 3814, 1, 0, 0, 0, 3827, 3826, 1, 0, 0, 0, 3828, 485, 1, 0, 0, 0, 3829, 3832, 5, 146, 0, 0, 3830, 3833, 3, 536, 268, 0, 3831, 3833, 3, 226, 113, 0, 3832, 3830, 1, 0, 0, 0, 3832, 3831, 1, 0, 0, 0, 3833, 487, 1, 0, 0, 0, 3834, 3835, 5, 256, 0, 0, 3835, 3836, 3, 536, 268, 0, 3836, 489, 1, 0, 0, 0, 3837, 3839, 3, 536, 268, 0, 3838, 3840, 5, 17, 0, 0, 3839, 3838, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3842, 1, 0, 0, 0, 3841, 3843, 3, 590, 295, 0, 3842, 3841, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3854, 1, 0, 0, 0, 3844, 3845, 5, 397, 0, 0, 3845, 3847, 3, 536, 268, 0, 3846, 3848, 5, 17, 0, 0, 3847, 3846, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3850, 1, 0, 0, 0, 3849, 3851, 3, 590, 295, 0, 3850, 3849, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3853, 1, 0, 0, 0, 3852, 3844, 1, 0, 0, 0, 3853, 3856, 1, 0, 0, 0, 3854, 3852, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 491, 1, 0, 0, 0, 3856, 3854, 1, 0, 0, 0, 3857, 3860, 3, 494, 247, 0, 3858, 3860, 3, 496, 248, 0, 3859, 3857, 1, 0, 0, 0, 3859, 3858, 1, 0, 0, 0, 3860, 493, 1, 0, 0, 0, 3861, 3862, 5, 399, 0, 0, 3862, 3863, 3, 496, 248, 0, 3863, 3864, 5, 400, 0, 0, 3864, 495, 1, 0, 0, 0, 3865, 3868, 5, 83, 0, 0, 3866, 3868, 3, 536, 268, 0, 3867, 3865, 1, 0, 0, 0, 3867, 3866, 1, 0, 0, 0, 3868, 3878, 1, 0, 0, 0, 3869, 3872, 5, 397, 0, 0, 3870, 3873, 5, 83, 0, 0, 3871, 3873, 3, 536, 268, 0, 3872, 3870, 1, 0, 0, 0, 3872, 3871, 1, 0, 0, 0, 3873, 3875, 1, 0, 0, 0, 3874, 3869, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3876, 3877, 1, 0, 0, 0, 3877, 3879, 1, 0, 0, 0, 3878, 3874, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 497, 1, 0, 0, 0, 3880, 3881, 5, 229, 0, 0, 3881, 3882, 5, 32, 0, 0, 3882, 3887, 3, 274, 137, 0, 3883, 3884, 5, 397, 0, 0, 3884, 3886, 3, 274, 137, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 499, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 237, 0, 0, 3891, 3892, 5, 32, 0, 0, 3892, 3893, 3, 492, 246, 0, 3893, 501, 1, 0, 0, 0, 3894, 3895, 5, 41, 0, 0, 3895, 3896, 5, 32, 0, 0, 3896, 3897, 3, 492, 246, 0, 3897, 503, 1, 0, 0, 0, 3898, 3899, 5, 97, 0, 0, 3899, 3900, 5, 32, 0, 0, 3900, 3901, 3, 492, 246, 0, 3901, 505, 1, 0, 0, 0, 3902, 3903, 5, 314, 0, 0, 3903, 3923, 5, 32, 0, 0, 3904, 3905, 5, 399, 0, 0, 3905, 3910, 3, 274, 137, 0, 3906, 3907, 5, 397, 0, 0, 3907, 3909, 3, 274, 137, 0, 3908, 3906, 1, 0, 0, 0, 3909, 3912, 1, 0, 0, 0, 3910, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3910, 1, 0, 0, 0, 3913, 3914, 5, 400, 0, 0, 3914, 3924, 1, 0, 0, 0, 3915, 3920, 3, 274, 137, 0, 3916, 3917, 5, 397, 0, 0, 3917, 3919, 3, 274, 137, 0, 3918, 3916, 1, 0, 0, 0, 3919, 3922, 1, 0, 0, 0, 3920, 3918, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3924, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3923, 3904, 1, 0, 0, 0, 3923, 3915, 1, 0, 0, 0, 3924, 507, 1, 0, 0, 0, 3925, 3926, 5, 349, 0, 0, 3926, 3930, 5, 399, 0, 0, 3927, 3931, 5, 179, 0, 0, 3928, 3931, 5, 343, 0, 0, 3929, 3931, 5, 29, 0, 0, 3930, 3927, 1, 0, 0, 0, 3930, 3928, 1, 0, 0, 0, 3930, 3929, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3933, 1, 0, 0, 0, 3932, 3934, 3, 466, 233, 0, 3933, 3932, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 3936, 5, 139, 0, 0, 3936, 3937, 3, 466, 233, 0, 3937, 3938, 5, 400, 0, 0, 3938, 3981, 1, 0, 0, 0, 3939, 3940, 3, 514, 257, 0, 3940, 3955, 5, 399, 0, 0, 3941, 3956, 5, 415, 0, 0, 3942, 3944, 7, 24, 0, 0, 3943, 3942, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3953, 1, 0, 0, 0, 3945, 3950, 3, 466, 233, 0, 3946, 3947, 5, 397, 0, 0, 3947, 3949, 3, 466, 233, 0, 3948, 3946, 1, 0, 0, 0, 3949, 3952, 1, 0, 0, 0, 3950, 3948, 1, 0, 0, 0, 3950, 3951, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3953, 3945, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3956, 1, 0, 0, 0, 3955, 3941, 1, 0, 0, 0, 3955, 3943, 1, 0, 0, 0, 3956, 3978, 1, 0, 0, 0, 3957, 3958, 5, 400, 0, 0, 3958, 3959, 5, 388, 0, 0, 3959, 3960, 5, 144, 0, 0, 3960, 3961, 5, 399, 0, 0, 3961, 3962, 3, 498, 249, 0, 3962, 3963, 5, 400, 0, 0, 3963, 3979, 1, 0, 0, 0, 3964, 3967, 5, 400, 0, 0, 3965, 3966, 7, 37, 0, 0, 3966, 3968, 5, 220, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3970, 5, 234, 0, 0, 3970, 3979, 3, 472, 236, 0, 3971, 3972, 7, 37, 0, 0, 3972, 3973, 5, 220, 0, 0, 3973, 3974, 1, 0, 0, 0, 3974, 3975, 5, 400, 0, 0, 3975, 3976, 5, 234, 0, 0, 3976, 3979, 3, 472, 236, 0, 3977, 3979, 5, 400, 0, 0, 3978, 3957, 1, 0, 0, 0, 3978, 3964, 1, 0, 0, 0, 3978, 3971, 1, 0, 0, 0, 3978, 3977, 1, 0, 0, 0, 3979, 3981, 1, 0, 0, 0, 3980, 3925, 1, 0, 0, 0, 3980, 3939, 1, 0, 0, 0, 3981, 509, 1, 0, 0, 0, 3982, 3983, 3, 592, 296, 0, 3983, 511, 1, 0, 0, 0, 3984, 3987, 3, 592, 296, 0, 3985, 3987, 5, 426, 0, 0, 3986, 3984, 1, 0, 0, 0, 3986, 3985, 1, 0, 0, 0, 3987, 513, 1, 0, 0, 0, 3988, 3992, 3, 592, 296, 0, 3989, 3992, 3, 598, 299, 0, 3990, 3992, 3, 588, 294, 0, 3991, 3988, 1, 0, 0, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3990, 1, 0, 0, 0, 3992, 515, 1, 0, 0, 0, 3993, 3994, 5, 36, 0, 0, 3994, 3995, 5, 399, 0, 0, 3995, 3996, 3, 536, 268, 0, 3996, 3997, 5, 17, 0, 0, 3997, 4000, 3, 302, 151, 0, 3998, 3999, 5, 137, 0, 0, 3999, 4001, 5, 426, 0, 0, 4000, 3998, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4003, 5, 400, 0, 0, 4003, 517, 1, 0, 0, 0, 4004, 4005, 5, 35, 0, 0, 4005, 4011, 3, 536, 268, 0, 4006, 4007, 5, 383, 0, 0, 4007, 4008, 3, 536, 268, 0, 4008, 4009, 5, 335, 0, 0, 4009, 4010, 3, 536, 268, 0, 4010, 4012, 1, 0, 0, 0, 4011, 4006, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4011, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4017, 1, 0, 0, 0, 4015, 4016, 5, 105, 0, 0, 4016, 4018, 3, 536, 268, 0, 4017, 4015, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4019, 1, 0, 0, 0, 4019, 4020, 5, 108, 0, 0, 4020, 519, 1, 0, 0, 0, 4021, 4027, 5, 35, 0, 0, 4022, 4023, 5, 383, 0, 0, 4023, 4024, 3, 536, 268, 0, 4024, 4025, 5, 335, 0, 0, 4025, 4026, 3, 536, 268, 0, 4026, 4028, 1, 0, 0, 0, 4027, 4022, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4033, 1, 0, 0, 0, 4031, 4032, 5, 105, 0, 0, 4032, 4034, 3, 536, 268, 0, 4033, 4031, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4035, 1, 0, 0, 0, 4035, 4036, 5, 108, 0, 0, 4036, 521, 1, 0, 0, 0, 4037, 4038, 5, 132, 0, 0, 4038, 4039, 5, 399, 0, 0, 4039, 4042, 3, 536, 268, 0, 4040, 4041, 5, 341, 0, 0, 4041, 4043, 3, 526, 263, 0, 4042, 4040, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4045, 5, 400, 0, 0, 4045, 523, 1, 0, 0, 0, 4046, 4047, 5, 124, 0, 0, 4047, 4048, 5, 399, 0, 0, 4048, 4049, 3, 526, 263, 0, 4049, 4050, 5, 139, 0, 0, 4050, 4051, 3, 536, 268, 0, 4051, 4052, 5, 400, 0, 0, 4052, 525, 1, 0, 0, 0, 4053, 4062, 7, 38, 0, 0, 4054, 4062, 5, 257, 0, 0, 4055, 4062, 7, 39, 0, 0, 4056, 4062, 7, 40, 0, 0, 4057, 4062, 7, 41, 0, 0, 4058, 4062, 7, 42, 0, 0, 4059, 4062, 7, 43, 0, 0, 4060, 4062, 7, 44, 0, 0, 4061, 4053, 1, 0, 0, 0, 4061, 4054, 1, 0, 0, 0, 4061, 4055, 1, 0, 0, 0, 4061, 4056, 1, 0, 0, 0, 4061, 4057, 1, 0, 0, 0, 4061, 4058, 1, 0, 0, 0, 4061, 4059, 1, 0, 0, 0, 4061, 4060, 1, 0, 0, 0, 4062, 527, 1, 0, 0, 0, 4063, 4064, 3, 530, 265, 0, 4064, 4065, 3, 534, 267, 0, 4065, 4092, 1, 0, 0, 0, 4066, 4092, 5, 431, 0, 0, 4067, 4068, 5, 71, 0, 0, 4068, 4092, 5, 426, 0, 0, 4069, 4092, 5, 63, 0, 0, 4070, 4071, 5, 337, 0, 0, 4071, 4092, 5, 426, 0, 0, 4072, 4092, 5, 64, 0, 0, 4073, 4074, 5, 338, 0, 0, 4074, 4092, 5, 426, 0, 0, 4075, 4079, 5, 426, 0, 0, 4076, 4078, 5, 426, 0, 0, 4077, 4076, 1, 0, 0, 0, 4078, 4081, 1, 0, 0, 0, 4079, 4077, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4092, 1, 0, 0, 0, 4081, 4079, 1, 0, 0, 0, 4082, 4092, 5, 428, 0, 0, 4083, 4092, 5, 429, 0, 0, 4084, 4085, 5, 433, 0, 0, 4085, 4092, 5, 427, 0, 0, 4086, 4092, 5, 350, 0, 0, 4087, 4092, 5, 125, 0, 0, 4088, 4092, 5, 219, 0, 0, 4089, 4092, 5, 424, 0, 0, 4090, 4092, 3, 224, 112, 0, 4091, 4063, 1, 0, 0, 0, 4091, 4066, 1, 0, 0, 0, 4091, 4067, 1, 0, 0, 0, 4091, 4069, 1, 0, 0, 0, 4091, 4070, 1, 0, 0, 0, 4091, 4072, 1, 0, 0, 0, 4091, 4073, 1, 0, 0, 0, 4091, 4075, 1, 0, 0, 0, 4091, 4082, 1, 0, 0, 0, 4091, 4083, 1, 0, 0, 0, 4091, 4084, 1, 0, 0, 0, 4091, 4086, 1, 0, 0, 0, 4091, 4087, 1, 0, 0, 0, 4091, 4088, 1, 0, 0, 0, 4091, 4089, 1, 0, 0, 0, 4091, 4090, 1, 0, 0, 0, 4092, 529, 1, 0, 0, 0, 4093, 4094, 7, 29, 0, 0, 4094, 531, 1, 0, 0, 0, 4095, 4096, 5, 399, 0, 0, 4096, 4097, 3, 530, 265, 0, 4097, 4098, 5, 400, 0, 0, 4098, 4099, 3, 534, 267, 0, 4099, 4111, 1, 0, 0, 0, 4100, 4106, 5, 165, 0, 0, 4101, 4107, 3, 530, 265, 0, 4102, 4103, 5, 399, 0, 0, 4103, 4104, 3, 536, 268, 0, 4104, 4105, 5, 400, 0, 0, 4105, 4107, 1, 0, 0, 0, 4106, 4101, 1, 0, 0, 0, 4106, 4102, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4109, 3, 534, 267, 0, 4109, 4111, 1, 0, 0, 0, 4110, 4095, 1, 0, 0, 0, 4110, 4100, 1, 0, 0, 0, 4111, 533, 1, 0, 0, 0, 4112, 4113, 7, 38, 0, 0, 4113, 4114, 5, 341, 0, 0, 4114, 4125, 7, 39, 0, 0, 4115, 4116, 7, 41, 0, 0, 4116, 4117, 5, 341, 0, 0, 4117, 4125, 7, 44, 0, 0, 4118, 4125, 7, 38, 0, 0, 4119, 4125, 7, 39, 0, 0, 4120, 4125, 7, 41, 0, 0, 4121, 4125, 7, 42, 0, 0, 4122, 4125, 7, 43, 0, 0, 4123, 4125, 7, 44, 0, 0, 4124, 4112, 1, 0, 0, 0, 4124, 4115, 1, 0, 0, 0, 4124, 4118, 1, 0, 0, 0, 4124, 4119, 1, 0, 0, 0, 4124, 4120, 1, 0, 0, 0, 4124, 4121, 1, 0, 0, 0, 4124, 4122, 1, 0, 0, 0, 4124, 4123, 1, 0, 0, 0, 4125, 535, 1, 0, 0, 0, 4126, 4131, 3, 574, 287, 0, 4127, 4128, 5, 228, 0, 0, 4128, 4130, 3, 574, 287, 0, 4129, 4127, 1, 0, 0, 0, 4130, 4133, 1, 0, 0, 0, 4131, 4129, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 537, 1, 0, 0, 0, 4133, 4131, 1, 0, 0, 0, 4134, 4146, 3, 528, 264, 0, 4135, 4146, 3, 532, 266, 0, 4136, 4146, 3, 516, 258, 0, 4137, 4146, 3, 524, 262, 0, 4138, 4146, 3, 522, 261, 0, 4139, 4146, 3, 518, 259, 0, 4140, 4146, 3, 520, 260, 0, 4141, 4146, 3, 554, 277, 0, 4142, 4146, 3, 508, 254, 0, 4143, 4146, 3, 494, 247, 0, 4144, 4146, 3, 590, 295, 0, 4145, 4134, 1, 0, 0, 0, 4145, 4135, 1, 0, 0, 0, 4145, 4136, 1, 0, 0, 0, 4145, 4137, 1, 0, 0, 0, 4145, 4138, 1, 0, 0, 0, 4145, 4139, 1, 0, 0, 0, 4145, 4140, 1, 0, 0, 0, 4145, 4141, 1, 0, 0, 0, 4145, 4142, 1, 0, 0, 0, 4145, 4143, 1, 0, 0, 0, 4145, 4144, 1, 0, 0, 0, 4146, 539, 1, 0, 0, 0, 4147, 4149, 7, 45, 0, 0, 4148, 4147, 1, 0, 0, 0, 4149, 4152, 1, 0, 0, 0, 4150, 4148, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4153, 1, 0, 0, 0, 4152, 4150, 1, 0, 0, 0, 4153, 4162, 3, 538, 269, 0, 4154, 4155, 5, 401, 0, 0, 4155, 4156, 3, 536, 268, 0, 4156, 4157, 5, 402, 0, 0, 4157, 4161, 1, 0, 0, 0, 4158, 4159, 5, 395, 0, 0, 4159, 4161, 3, 590, 295, 0, 4160, 4154, 1, 0, 0, 0, 4160, 4158, 1, 0, 0, 0, 4161, 4164, 1, 0, 0, 0, 4162, 4160, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 541, 1, 0, 0, 0, 4164, 4162, 1, 0, 0, 0, 4165, 4170, 3, 540, 270, 0, 4166, 4167, 5, 423, 0, 0, 4167, 4169, 3, 540, 270, 0, 4168, 4166, 1, 0, 0, 0, 4169, 4172, 1, 0, 0, 0, 4170, 4168, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 543, 1, 0, 0, 0, 4172, 4170, 1, 0, 0, 0, 4173, 4178, 3, 542, 271, 0, 4174, 4175, 7, 46, 0, 0, 4175, 4177, 3, 542, 271, 0, 4176, 4174, 1, 0, 0, 0, 4177, 4180, 1, 0, 0, 0, 4178, 4176, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 545, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, 0, 4181, 4186, 3, 544, 272, 0, 4182, 4183, 7, 47, 0, 0, 4183, 4185, 3, 544, 272, 0, 4184, 4182, 1, 0, 0, 0, 4185, 4188, 1, 0, 0, 0, 4186, 4184, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 547, 1, 0, 0, 0, 4188, 4186, 1, 0, 0, 0, 4189, 4194, 3, 546, 273, 0, 4190, 4191, 5, 422, 0, 0, 4191, 4193, 3, 546, 273, 0, 4192, 4190, 1, 0, 0, 0, 4193, 4196, 1, 0, 0, 0, 4194, 4192, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 549, 1, 0, 0, 0, 4196, 4194, 1, 0, 0, 0, 4197, 4202, 3, 548, 274, 0, 4198, 4199, 5, 419, 0, 0, 4199, 4201, 3, 548, 274, 0, 4200, 4198, 1, 0, 0, 0, 4201, 4204, 1, 0, 0, 0, 4202, 4200, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 551, 1, 0, 0, 0, 4204, 4202, 1, 0, 0, 0, 4205, 4210, 3, 550, 275, 0, 4206, 4207, 5, 421, 0, 0, 4207, 4209, 3, 550, 275, 0, 4208, 4206, 1, 0, 0, 0, 4209, 4212, 1, 0, 0, 0, 4210, 4208, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 553, 1, 0, 0, 0, 4212, 4210, 1, 0, 0, 0, 4213, 4214, 5, 399, 0, 0, 4214, 4215, 3, 330, 165, 0, 4215, 4216, 5, 400, 0, 0, 4216, 555, 1, 0, 0, 0, 4217, 4218, 7, 48, 0, 0, 4218, 557, 1, 0, 0, 0, 4219, 4221, 3, 552, 276, 0, 4220, 4222, 3, 560, 280, 0, 4221, 4220, 1, 0, 0, 0, 4221, 4222, 1, 0, 0, 0, 4222, 4226, 1, 0, 0, 0, 4223, 4224, 5, 117, 0, 0, 4224, 4226, 3, 554, 277, 0, 4225, 4219, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4226, 559, 1, 0, 0, 0, 4227, 4228, 3, 556, 278, 0, 4228, 4229, 3, 552, 276, 0, 4229, 4238, 1, 0, 0, 0, 4230, 4238, 3, 562, 281, 0, 4231, 4235, 5, 216, 0, 0, 4232, 4233, 7, 49, 0, 0, 4233, 4236, 3, 552, 276, 0, 4234, 4236, 3, 562, 281, 0, 4235, 4232, 1, 0, 0, 0, 4235, 4234, 1, 0, 0, 0, 4236, 4238, 1, 0, 0, 0, 4237, 4227, 1, 0, 0, 0, 4237, 4230, 1, 0, 0, 0, 4237, 4231, 1, 0, 0, 0, 4238, 561, 1, 0, 0, 0, 4239, 4242, 5, 154, 0, 0, 4240, 4243, 3, 554, 277, 0, 4241, 4243, 3, 494, 247, 0, 4242, 4240, 1, 0, 0, 0, 4242, 4241, 1, 0, 0, 0, 4243, 4257, 1, 0, 0, 0, 4244, 4245, 5, 25, 0, 0, 4245, 4246, 3, 552, 276, 0, 4246, 4247, 5, 11, 0, 0, 4247, 4248, 3, 552, 276, 0, 4248, 4257, 1, 0, 0, 0, 4249, 4250, 5, 184, 0, 0, 4250, 4251, 7, 50, 0, 0, 4251, 4257, 3, 494, 247, 0, 4252, 4253, 3, 586, 293, 0, 4253, 4254, 7, 51, 0, 0, 4254, 4255, 3, 554, 277, 0, 4255, 4257, 1, 0, 0, 0, 4256, 4239, 1, 0, 0, 0, 4256, 4244, 1, 0, 0, 0, 4256, 4249, 1, 0, 0, 0, 4256, 4252, 1, 0, 0, 0, 4257, 563, 1, 0, 0, 0, 4258, 4259, 5, 167, 0, 0, 4259, 4260, 5, 96, 0, 0, 4260, 4261, 5, 139, 0, 0, 4261, 565, 1, 0, 0, 0, 4262, 4270, 5, 405, 0, 0, 4263, 4270, 5, 406, 0, 0, 4264, 4270, 5, 407, 0, 0, 4265, 4266, 5, 167, 0, 0, 4266, 4267, 5, 216, 0, 0, 4267, 4268, 5, 96, 0, 0, 4268, 4270, 5, 139, 0, 0, 4269, 4262, 1, 0, 0, 0, 4269, 4263, 1, 0, 0, 0, 4269, 4264, 1, 0, 0, 0, 4269, 4265, 1, 0, 0, 0, 4270, 567, 1, 0, 0, 0, 4271, 4280, 3, 558, 279, 0, 4272, 4273, 3, 566, 283, 0, 4273, 4274, 3, 558, 279, 0, 4274, 4279, 1, 0, 0, 0, 4275, 4276, 3, 564, 282, 0, 4276, 4277, 3, 558, 279, 0, 4277, 4279, 1, 0, 0, 0, 4278, 4272, 1, 0, 0, 0, 4278, 4275, 1, 0, 0, 0, 4279, 4282, 1, 0, 0, 0, 4280, 4278, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 569, 1, 0, 0, 0, 4282, 4280, 1, 0, 0, 0, 4283, 4290, 5, 219, 0, 0, 4284, 4290, 5, 350, 0, 0, 4285, 4290, 5, 125, 0, 0, 4286, 4290, 5, 360, 0, 0, 4287, 4288, 5, 216, 0, 0, 4288, 4290, 7, 52, 0, 0, 4289, 4283, 1, 0, 0, 0, 4289, 4284, 1, 0, 0, 0, 4289, 4285, 1, 0, 0, 0, 4289, 4286, 1, 0, 0, 0, 4289, 4287, 1, 0, 0, 0, 4290, 571, 1, 0, 0, 0, 4291, 4293, 5, 216, 0, 0, 4292, 4291, 1, 0, 0, 0, 4293, 4296, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4294, 4295, 1, 0, 0, 0, 4295, 4297, 1, 0, 0, 0, 4296, 4294, 1, 0, 0, 0, 4297, 4300, 3, 568, 284, 0, 4298, 4299, 5, 167, 0, 0, 4299, 4301, 3, 570, 285, 0, 4300, 4298, 1, 0, 0, 0, 4300, 4301, 1, 0, 0, 0, 4301, 573, 1, 0, 0, 0, 4302, 4307, 3, 572, 286, 0, 4303, 4304, 5, 11, 0, 0, 4304, 4306, 3, 572, 286, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 575, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4312, 3, 426, 213, 0, 4311, 4313, 3, 578, 289, 0, 4312, 4311, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 577, 1, 0, 0, 0, 4314, 4315, 5, 237, 0, 0, 4315, 4316, 5, 399, 0, 0, 4316, 4321, 3, 580, 290, 0, 4317, 4318, 5, 397, 0, 0, 4318, 4320, 3, 580, 290, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4325, 5, 400, 0, 0, 4325, 579, 1, 0, 0, 0, 4326, 4329, 3, 590, 295, 0, 4327, 4328, 5, 405, 0, 0, 4328, 4330, 3, 528, 264, 0, 4329, 4327, 1, 0, 0, 0, 4329, 4330, 1, 0, 0, 0, 4330, 581, 1, 0, 0, 0, 4331, 4332, 5, 399, 0, 0, 4332, 4337, 3, 584, 292, 0, 4333, 4334, 5, 397, 0, 0, 4334, 4336, 3, 584, 292, 0, 4335, 4333, 1, 0, 0, 0, 4336, 4339, 1, 0, 0, 0, 4337, 4335, 1, 0, 0, 0, 4337, 4338, 1, 0, 0, 0, 4338, 4340, 1, 0, 0, 0, 4339, 4337, 1, 0, 0, 0, 4340, 4341, 5, 400, 0, 0, 4341, 583, 1, 0, 0, 0, 4342, 4345, 3, 590, 295, 0, 4343, 4346, 5, 184, 0, 0, 4344, 4346, 3, 586, 293, 0, 4345, 4343, 1, 0, 0, 0, 4345, 4344, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4348, 3, 528, 264, 0, 4348, 585, 1, 0, 0, 0, 4349, 4350, 7, 53, 0, 0, 4350, 587, 1, 0, 0, 0, 4351, 4352, 7, 54, 0, 0, 4352, 589, 1, 0, 0, 0, 4353, 4356, 5, 432, 0, 0, 4354, 4356, 3, 596, 298, 0, 4355, 4353, 1, 0, 0, 0, 4355, 4354, 1, 0, 0, 0, 4356, 591, 1, 0, 0, 0, 4357, 4360, 3, 590, 295, 0, 4358, 4359, 5, 395, 0, 0, 4359, 4361, 3, 590, 295, 0, 4360, 4358, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 593, 1, 0, 0, 0, 4362, 4363, 3, 590, 295, 0, 4363, 595, 1, 0, 0, 0, 4364, 4365, 7, 55, 0, 0, 4365, 597, 1, 0, 0, 0, 4366, 4367, 7, 56, 0, 0, 4367, 599, 1, 0, 0, 0, 4368, 4373, 3, 602, 301, 0, 4369, 4370, 7, 57, 0, 0, 4370, 4372, 3, 602, 301, 0, 4371, 4369, 1, 0, 0, 0, 4372, 4375, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 601, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4376, 4383, 3, 604, 302, 0, 4377, 4378, 4, 301, 3, 0, 4378, 4379, 5, 414, 0, 0, 4379, 4380, 4, 301, 4, 0, 4380, 4382, 3, 604, 302, 0, 4381, 4377, 1, 0, 0, 0, 4382, 4385, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4383, 4384, 1, 0, 0, 0, 4384, 603, 1, 0, 0, 0, 4385, 4383, 1, 0, 0, 0, 4386, 4438, 3, 590, 295, 0, 4387, 4438, 5, 299, 0, 0, 4388, 4438, 5, 171, 0, 0, 4389, 4438, 5, 237, 0, 0, 4390, 4438, 5, 198, 0, 0, 4391, 4438, 5, 268, 0, 0, 4392, 4438, 5, 369, 0, 0, 4393, 4438, 5, 241, 0, 0, 4394, 4438, 5, 165, 0, 0, 4395, 4438, 5, 292, 0, 0, 4396, 4438, 5, 356, 0, 0, 4397, 4438, 5, 144, 0, 0, 4398, 4438, 5, 203, 0, 0, 4399, 4438, 5, 219, 0, 0, 4400, 4438, 5, 126, 0, 0, 4401, 4438, 5, 188, 0, 0, 4402, 4438, 5, 101, 0, 0, 4403, 4438, 5, 329, 0, 0, 4404, 4438, 5, 224, 0, 0, 4405, 4438, 5, 291, 0, 0, 4406, 4438, 5, 145, 0, 0, 4407, 4438, 5, 304, 0, 0, 4408, 4438, 5, 135, 0, 0, 4409, 4438, 5, 318, 0, 0, 4410, 4438, 5, 161, 0, 0, 4411, 4438, 5, 54, 0, 0, 4412, 4438, 5, 166, 0, 0, 4413, 4438, 5, 358, 0, 0, 4414, 4438, 5, 45, 0, 0, 4415, 4438, 5, 347, 0, 0, 4416, 4438, 5, 96, 0, 0, 4417, 4438, 5, 154, 0, 0, 4418, 4438, 5, 269, 0, 0, 4419, 4438, 5, 337, 0, 0, 4420, 4438, 5, 225, 0, 0, 4421, 4438, 5, 108, 0, 0, 4422, 4438, 5, 141, 0, 0, 4423, 4438, 5, 365, 0, 0, 4424, 4438, 5, 21, 0, 0, 4425, 4438, 5, 78, 0, 0, 4426, 4438, 5, 374, 0, 0, 4427, 4438, 5, 336, 0, 0, 4428, 4438, 5, 167, 0, 0, 4429, 4438, 5, 134, 0, 0, 4430, 4438, 5, 216, 0, 0, 4431, 4438, 5, 27, 0, 0, 4432, 4438, 5, 370, 0, 0, 4433, 4438, 5, 263, 0, 0, 4434, 4438, 5, 25, 0, 0, 4435, 4438, 5, 62, 0, 0, 4436, 4438, 5, 17, 0, 0, 4437, 4386, 1, 0, 0, 0, 4437, 4387, 1, 0, 0, 0, 4437, 4388, 1, 0, 0, 0, 4437, 4389, 1, 0, 0, 0, 4437, 4390, 1, 0, 0, 0, 4437, 4391, 1, 0, 0, 0, 4437, 4392, 1, 0, 0, 0, 4437, 4393, 1, 0, 0, 0, 4437, 4394, 1, 0, 0, 0, 4437, 4395, 1, 0, 0, 0, 4437, 4396, 1, 0, 0, 0, 4437, 4397, 1, 0, 0, 0, 4437, 4398, 1, 0, 0, 0, 4437, 4399, 1, 0, 0, 0, 4437, 4400, 1, 0, 0, 0, 4437, 4401, 1, 0, 0, 0, 4437, 4402, 1, 0, 0, 0, 4437, 4403, 1, 0, 0, 0, 4437, 4404, 1, 0, 0, 0, 4437, 4405, 1, 0, 0, 0, 4437, 4406, 1, 0, 0, 0, 4437, 4407, 1, 0, 0, 0, 4437, 4408, 1, 0, 0, 0, 4437, 4409, 1, 0, 0, 0, 4437, 4410, 1, 0, 0, 0, 4437, 4411, 1, 0, 0, 0, 4437, 4412, 1, 0, 0, 0, 4437, 4413, 1, 0, 0, 0, 4437, 4414, 1, 0, 0, 0, 4437, 4415, 1, 0, 0, 0, 4437, 4416, 1, 0, 0, 0, 4437, 4417, 1, 0, 0, 0, 4437, 4418, 1, 0, 0, 0, 4437, 4419, 1, 0, 0, 0, 4437, 4420, 1, 0, 0, 0, 4437, 4421, 1, 0, 0, 0, 4437, 4422, 1, 0, 0, 0, 4437, 4423, 1, 0, 0, 0, 4437, 4424, 1, 0, 0, 0, 4437, 4425, 1, 0, 0, 0, 4437, 4426, 1, 0, 0, 0, 4437, 4427, 1, 0, 0, 0, 4437, 4428, 1, 0, 0, 0, 4437, 4429, 1, 0, 0, 0, 4437, 4430, 1, 0, 0, 0, 4437, 4431, 1, 0, 0, 0, 4437, 4432, 1, 0, 0, 0, 4437, 4433, 1, 0, 0, 0, 4437, 4434, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4437, 4436, 1, 0, 0, 0, 4438, 605, 1, 0, 0, 0, 4439, 4440, 5, 58, 0, 0, 4440, 4441, 5, 280, 0, 0, 4441, 4443, 5, 243, 0, 0, 4442, 4444, 3, 32, 16, 0, 4443, 4442, 1, 0, 0, 0, 4443, 4444, 1, 0, 0, 0, 4444, 4454, 1, 0, 0, 0, 4445, 4446, 3, 590, 295, 0, 4446, 4447, 5, 184, 0, 0, 4447, 4448, 3, 590, 295, 0, 4448, 4455, 1, 0, 0, 0, 4449, 4452, 3, 590, 295, 0, 4450, 4451, 5, 387, 0, 0, 4451, 4453, 3, 612, 306, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4455, 1, 0, 0, 0, 4454, 4445, 1, 0, 0, 0, 4454, 4449, 1, 0, 0, 0, 4455, 4605, 1, 0, 0, 0, 4456, 4457, 5, 9, 0, 0, 4457, 4458, 5, 280, 0, 0, 4458, 4459, 5, 243, 0, 0, 4459, 4484, 3, 590, 295, 0, 4460, 4485, 5, 373, 0, 0, 4461, 4485, 3, 620, 310, 0, 4462, 4463, 5, 304, 0, 0, 4463, 4485, 3, 612, 306, 0, 4464, 4465, 5, 363, 0, 0, 4465, 4470, 3, 614, 307, 0, 4466, 4467, 5, 397, 0, 0, 4467, 4469, 3, 614, 307, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4472, 1, 0, 0, 0, 4470, 4468, 1, 0, 0, 0, 4470, 4471, 1, 0, 0, 0, 4471, 4485, 1, 0, 0, 0, 4472, 4470, 1, 0, 0, 0, 4473, 4474, 5, 274, 0, 0, 4474, 4475, 5, 341, 0, 0, 4475, 4485, 3, 590, 295, 0, 4476, 4478, 3, 616, 308, 0, 4477, 4479, 3, 618, 309, 0, 4478, 4477, 1, 0, 0, 0, 4478, 4479, 1, 0, 0, 0, 4479, 4485, 1, 0, 0, 0, 4480, 4482, 3, 618, 309, 0, 4481, 4483, 3, 616, 308, 0, 4482, 4481, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4485, 1, 0, 0, 0, 4484, 4460, 1, 0, 0, 0, 4484, 4461, 1, 0, 0, 0, 4484, 4462, 1, 0, 0, 0, 4484, 4464, 1, 0, 0, 0, 4484, 4473, 1, 0, 0, 0, 4484, 4476, 1, 0, 0, 0, 4484, 4480, 1, 0, 0, 0, 4485, 4605, 1, 0, 0, 0, 4486, 4487, 5, 101, 0, 0, 4487, 4488, 5, 280, 0, 0, 4488, 4490, 5, 243, 0, 0, 4489, 4491, 3, 30, 15, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4605, 3, 590, 295, 0, 4493, 4496, 3, 618, 309, 0, 4494, 4496, 3, 620, 310, 0, 4495, 4493, 1, 0, 0, 0, 4495, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4498, 5, 390, 0, 0, 4498, 4499, 5, 197, 0, 0, 4499, 4605, 1, 0, 0, 0, 4500, 4512, 5, 278, 0, 0, 4501, 4502, 5, 3, 0, 0, 4502, 4503, 5, 280, 0, 0, 4503, 4504, 5, 243, 0, 0, 4504, 4505, 5, 387, 0, 0, 4505, 4513, 3, 590, 295, 0, 4506, 4507, 5, 280, 0, 0, 4507, 4508, 5, 243, 0, 0, 4508, 4509, 3, 590, 295, 0, 4509, 4510, 5, 387, 0, 0, 4510, 4511, 3, 590, 295, 0, 4511, 4513, 1, 0, 0, 0, 4512, 4501, 1, 0, 0, 0, 4512, 4506, 1, 0, 0, 0, 4513, 4605, 1, 0, 0, 0, 4514, 4515, 5, 58, 0, 0, 4515, 4516, 5, 348, 0, 0, 4516, 4517, 3, 590, 295, 0, 4517, 4518, 5, 395, 0, 0, 4518, 4519, 3, 590, 295, 0, 4519, 4520, 5, 383, 0, 0, 4520, 4521, 3, 628, 314, 0, 4521, 4522, 5, 99, 0, 0, 4522, 4523, 3, 630, 315, 0, 4523, 4605, 1, 0, 0, 0, 4524, 4525, 5, 9, 0, 0, 4525, 4526, 5, 348, 0, 0, 4526, 4527, 3, 590, 295, 0, 4527, 4528, 5, 395, 0, 0, 4528, 4545, 3, 590, 295, 0, 4529, 4530, 5, 383, 0, 0, 4530, 4531, 3, 628, 314, 0, 4531, 4532, 5, 99, 0, 0, 4532, 4533, 3, 630, 315, 0, 4533, 4546, 1, 0, 0, 0, 4534, 4535, 5, 4, 0, 0, 4535, 4539, 5, 341, 0, 0, 4536, 4537, 5, 101, 0, 0, 4537, 4539, 5, 139, 0, 0, 4538, 4534, 1, 0, 0, 0, 4538, 4536, 1, 0, 0, 0, 4539, 4543, 1, 0, 0, 0, 4540, 4541, 5, 246, 0, 0, 4541, 4544, 3, 624, 312, 0, 4542, 4544, 5, 362, 0, 0, 4543, 4540, 1, 0, 0, 0, 4543, 4542, 1, 0, 0, 0, 4544, 4546, 1, 0, 0, 0, 4545, 4529, 1, 0, 0, 0, 4545, 4538, 1, 0, 0, 0, 4546, 4605, 1, 0, 0, 0, 4547, 4548, 5, 101, 0, 0, 4548, 4549, 5, 348, 0, 0, 4549, 4550, 3, 590, 295, 0, 4550, 4551, 5, 395, 0, 0, 4551, 4552, 3, 590, 295, 0, 4552, 4605, 1, 0, 0, 0, 4553, 4554, 5, 58, 0, 0, 4554, 4555, 5, 246, 0, 0, 4555, 4556, 3, 590, 295, 0, 4556, 4557, 5, 395, 0, 0, 4557, 4558, 3, 624, 312, 0, 4558, 4559, 5, 387, 0, 0, 4559, 4560, 3, 634, 317, 0, 4560, 4605, 1, 0, 0, 0, 4561, 4562, 5, 9, 0, 0, 4562, 4563, 5, 246, 0, 0, 4563, 4564, 3, 590, 295, 0, 4564, 4565, 5, 395, 0, 0, 4565, 4573, 3, 624, 312, 0, 4566, 4567, 5, 304, 0, 0, 4567, 4574, 3, 634, 317, 0, 4568, 4569, 5, 363, 0, 0, 4569, 4574, 5, 294, 0, 0, 4570, 4571, 7, 58, 0, 0, 4571, 4572, 5, 348, 0, 0, 4572, 4574, 3, 590, 295, 0, 4573, 4566, 1, 0, 0, 0, 4573, 4568, 1, 0, 0, 0, 4573, 4570, 1, 0, 0, 0, 4574, 4605, 1, 0, 0, 0, 4575, 4576, 5, 101, 0, 0, 4576, 4577, 5, 246, 0, 0, 4577, 4578, 3, 590, 295, 0, 4578, 4579, 5, 395, 0, 0, 4579, 4580, 3, 624, 312, 0, 4580, 4605, 1, 0, 0, 0, 4581, 4582, 7, 59, 0, 0, 4582, 4583, 3, 608, 304, 0, 4583, 4584, 5, 200, 0, 0, 4584, 4585, 5, 426, 0, 0, 4585, 4586, 5, 154, 0, 0, 4586, 4590, 3, 590, 295, 0, 4587, 4588, 5, 341, 0, 0, 4588, 4591, 3, 624, 312, 0, 4589, 4591, 5, 362, 0, 0, 4590, 4587, 1, 0, 0, 0, 4590, 4589, 1, 0, 0, 0, 4591, 4595, 1, 0, 0, 0, 4592, 4593, 5, 387, 0, 0, 4593, 4594, 5, 229, 0, 0, 4594, 4596, 5, 431, 0, 0, 4595, 4592, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4605, 1, 0, 0, 0, 4597, 4598, 5, 101, 0, 0, 4598, 4599, 3, 608, 304, 0, 4599, 4600, 5, 200, 0, 0, 4600, 4601, 5, 426, 0, 0, 4601, 4602, 5, 154, 0, 0, 4602, 4603, 3, 590, 295, 0, 4603, 4605, 1, 0, 0, 0, 4604, 4439, 1, 0, 0, 0, 4604, 4456, 1, 0, 0, 0, 4604, 4486, 1, 0, 0, 0, 4604, 4495, 1, 0, 0, 0, 4604, 4500, 1, 0, 0, 0, 4604, 4514, 1, 0, 0, 0, 4604, 4524, 1, 0, 0, 0, 4604, 4547, 1, 0, 0, 0, 4604, 4553, 1, 0, 0, 0, 4604, 4561, 1, 0, 0, 0, 4604, 4575, 1, 0, 0, 0, 4604, 4581, 1, 0, 0, 0, 4604, 4597, 1, 0, 0, 0, 4605, 607, 1, 0, 0, 0, 4606, 4607, 7, 60, 0, 0, 4607, 609, 1, 0, 0, 0, 4608, 4609, 5, 259, 0, 0, 4609, 4610, 5, 405, 0, 0, 4610, 4616, 5, 431, 0, 0, 4611, 4612, 5, 83, 0, 0, 4612, 4613, 5, 246, 0, 0, 4613, 4614, 5, 405, 0, 0, 4614, 4616, 3, 624, 312, 0, 4615, 4608, 1, 0, 0, 0, 4615, 4611, 1, 0, 0, 0, 4616, 611, 1, 0, 0, 0, 4617, 4622, 3, 610, 305, 0, 4618, 4619, 5, 397, 0, 0, 4619, 4621, 3, 610, 305, 0, 4620, 4618, 1, 0, 0, 0, 4621, 4624, 1, 0, 0, 0, 4622, 4620, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 613, 1, 0, 0, 0, 4624, 4622, 1, 0, 0, 0, 4625, 4629, 5, 259, 0, 0, 4626, 4627, 5, 83, 0, 0, 4627, 4629, 5, 246, 0, 0, 4628, 4625, 1, 0, 0, 0, 4628, 4626, 1, 0, 0, 0, 4629, 615, 1, 0, 0, 0, 4630, 4633, 5, 2, 0, 0, 4631, 4632, 5, 387, 0, 0, 4632, 4634, 5, 278, 0, 0, 4633, 4631, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 617, 1, 0, 0, 0, 4635, 4636, 7, 61, 0, 0, 4636, 619, 1, 0, 0, 0, 4637, 4638, 7, 62, 0, 0, 4638, 621, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 623, 1, 0, 0, 0, 4641, 4646, 3, 590, 295, 0, 4642, 4643, 5, 395, 0, 0, 4643, 4645, 3, 590, 295, 0, 4644, 4642, 1, 0, 0, 0, 4645, 4648, 1, 0, 0, 0, 4646, 4644, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 625, 1, 0, 0, 0, 4648, 4646, 1, 0, 0, 0, 4649, 4654, 3, 590, 295, 0, 4650, 4651, 5, 395, 0, 0, 4651, 4653, 3, 590, 295, 0, 4652, 4650, 1, 0, 0, 0, 4653, 4656, 1, 0, 0, 0, 4654, 4652, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4667, 1, 0, 0, 0, 4656, 4654, 1, 0, 0, 0, 4657, 4658, 4, 313, 5, 0, 4658, 4663, 3, 590, 295, 0, 4659, 4660, 5, 395, 0, 0, 4660, 4662, 3, 622, 311, 0, 4661, 4659, 1, 0, 0, 0, 4662, 4665, 1, 0, 0, 0, 4663, 4661, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 4667, 1, 0, 0, 0, 4665, 4663, 1, 0, 0, 0, 4666, 4649, 1, 0, 0, 0, 4666, 4657, 1, 0, 0, 0, 4667, 627, 1, 0, 0, 0, 4668, 4669, 3, 590, 295, 0, 4669, 4670, 5, 411, 0, 0, 4670, 4671, 7, 29, 0, 0, 4671, 629, 1, 0, 0, 0, 4672, 4677, 5, 176, 0, 0, 4673, 4674, 5, 211, 0, 0, 4674, 4675, 5, 341, 0, 0, 4675, 4677, 3, 624, 312, 0, 4676, 4672, 1, 0, 0, 0, 4676, 4673, 1, 0, 0, 0, 4677, 631, 1, 0, 0, 0, 4678, 4679, 5, 8, 0, 0, 4679, 4680, 5, 405, 0, 0, 4680, 4691, 5, 431, 0, 0, 4681, 4682, 5, 259, 0, 0, 4682, 4683, 5, 405, 0, 0, 4683, 4691, 5, 431, 0, 0, 4684, 4685, 5, 294, 0, 0, 4685, 4686, 5, 405, 0, 0, 4686, 4691, 5, 426, 0, 0, 4687, 4688, 5, 240, 0, 0, 4688, 4689, 5, 405, 0, 0, 4689, 4691, 3, 624, 312, 0, 4690, 4678, 1, 0, 0, 0, 4690, 4681, 1, 0, 0, 0, 4690, 4684, 1, 0, 0, 0, 4690, 4687, 1, 0, 0, 0, 4691, 633, 1, 0, 0, 0, 4692, 4697, 3, 632, 316, 0, 4693, 4694, 5, 397, 0, 0, 4694, 4696, 3, 632, 316, 0, 4695, 4693, 1, 0, 0, 0, 4696, 4699, 1, 0, 0, 0, 4697, 4695, 1, 0, 0, 0, 4697, 4698, 1, 0, 0, 0, 4698, 635, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 626, 639, 646, 649, 655, 661, 668, 678, 681, 685, 700, 707, 713, 718, 723, 726, 750, 753, 758, 763, 772, 776, 789, 793, 797, 802, 809, 813, 818, 825, 829, 834, 878, 885, 890, 913, 917, 922, 925, 929, 934, 940, 945, 952, 954, 962, 966, 970, 978, 981, 986, 990, 993, 998, 1006, 1010, 1013, 1017, 1021, 1024, 1029, 1035, 1040, 1045, 1049, 1060, 1062, 1066, 1076, 1079, 1085, 1088, 1094, 1099, 1106, 1111, 1114, 1122, 1127, 1132, 1137, 1140, 1143, 1146, 1154, 1161, 1166, 1173, 1179, 1182, 1185, 1187, 1197, 1199, 1203, 1207, 1211, 1214, 1217, 1219, 1228, 1232, 1240, 1242, 1252, 1262, 1273, 1282, 1289, 1295, 1299, 1306, 1313, 1321, 1327, 1330, 1337, 1360, 1365, 1369, 1377, 1386, 1393, 1399, 1406, 1409, 1415, 1422, 1430, 1439, 1448, 1455, 1459, 1466, 1468, 1474, 1489, 1492, 1496, 1500, 1513, 1522, 1538, 1542, 1547, 1552, 1555, 1558, 1561, 1564, 1567, 1572, 1581, 1585, 1592, 1595, 1598, 1601, 1613, 1619, 1645, 1652, 1655, 1661, 1665, 1668, 1671, 1674, 1677, 1680, 1683, 1686, 1697, 1700, 1720, 1726, 1732, 1735, 1737, 1744, 1751, 1764, 1769, 1778, 1786, 1802, 1815, 1831, 1835, 1844, 1850, 1853, 1856, 1859, 1862, 1877, 1880, 1891, 1905, 1939, 1947, 1952, 1960, 1965, 1970, 1977, 1985, 1993, 2001, 2007, 2014, 2024, 2028, 2036, 2045, 2048, 2052, 2057, 2061, 2065, 2071, 2075, 2087, 2096, 2107, 2111, 2118, 2130, 2140, 2143, 2150, 2156, 2160, 2163, 2166, 2172, 2176, 2180, 2185, 2189, 2193, 2197, 2205, 2209, 2213, 2221, 2225, 2230, 2234, 2241, 2248, 2256, 2268, 2286, 2289, 2295, 2321, 2324, 2330, 2338, 2346, 2359, 2366, 2369, 2372, 2375, 2378, 2381, 2384, 2387, 2390, 2393, 2396, 2401, 2404, 2407, 2410, 2413, 2416, 2419, 2422, 2425, 2428, 2431, 2433, 2439, 2443, 2446, 2449, 2452, 2455, 2458, 2465, 2469, 2472, 2475, 2478, 2481, 2484, 2491, 2494, 2502, 2506, 2513, 2515, 2518, 2523, 2526, 2530, 2535, 2541, 2549, 2557, 2567, 2570, 2574, 2578, 2583, 2590, 2594, 2596, 2600, 2607, 2612, 2625, 2633, 2643, 2653, 2666, 2676, 2680, 2684, 2690, 2697, 2704, 2713, 2720, 2740, 2743, 2757, 2772, 2776, 2796, 2808, 2814, 2817, 2821, 2827, 2833, 2840, 2848, 2854, 2858, 2863, 2866, 2870, 2877, 2882, 2887, 2890, 2892, 2900, 2908, 2912, 2916, 2920, 2937, 2954, 2961, 2970, 2975, 2978, 2981, 2985, 3000, 3014, 3017, 3028, 3032, 3035, 3038, 3042, 3047, 3050, 3053, 3056, 3059, 3062, 3068, 3071, 3074, 3077, 3080, 3083, 3086, 3089, 3092, 3095, 3099, 3101, 3106, 3111, 3114, 3117, 3120, 3123, 3129, 3132, 3135, 3138, 3141, 3144, 3147, 3150, 3153, 3156, 3160, 3162, 3164, 3169, 3174, 3178, 3182, 3187, 3192, 3201, 3211, 3219, 3231, 3234, 3240, 3247, 3254, 3261, 3268, 3278, 3280, 3284, 3288, 3295, 3300, 3304, 3308, 3311, 3314, 3325, 3329, 3331, 3334, 3347, 3350, 3353, 3365, 3368, 3375, 3384, 3389, 3391, 3393, 3410, 3413, 3421, 3424, 3428, 3431, 3434, 3437, 3440, 3452, 3460, 3467, 3470, 3477, 3480, 3485, 3492, 3500, 3506, 3511, 3515, 3520, 3524, 3531, 3545, 3548, 3555, 3563, 3573, 3576, 3585, 3594, 3597, 3603, 3606, 3611, 3614, 3628, 3634, 3636, 3647, 3653, 3656, 3666, 3671, 3675, 3692, 3698, 3700, 3708, 3715, 3729, 3735, 3738, 3741, 3744, 3753, 3760, 3766, 3775, 3779, 3787, 3797, 3807, 3812, 3816, 3822, 3827, 3832, 3839, 3842, 3847, 3850, 3854, 3859, 3867, 3872, 3876, 3878, 3887, 3910, 3920, 3923, 3930, 3933, 3943, 3950, 3953, 3955, 3967, 3978, 3980, 3986, 3991, 4000, 4013, 4017, 4029, 4033, 4042, 4061, 4079, 4091, 4106, 4110, 4124, 4131, 4145, 4150, 4160, 4162, 4170, 4178, 4186, 4194, 4202, 4210, 4221, 4225, 4235, 4237, 4242, 4256, 4269, 4278, 4280, 4289, 4294, 4300, 4307, 4312, 4321, 4329, 4337, 4345, 4355, 4360, 4373, 4383, 4437, 4443, 4452, 4454, 4470, 4478, 4482, 4484, 4490, 4495, 4512, 4538, 4543, 4545, 4573, 4590, 4595, 4604, 4615, 4622, 4628, 4633, 4646, 4654, 4663, 4666, 4676, 4690, 4697] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index ab61ece9..37a1adfe 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -473,346 +473,306 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_ifExists = 15; public static readonly RULE_ifNotExists = 16; public static readonly RULE_restrictOrCascade = 17; - public static readonly RULE_rewriteEnabled = 18; - public static readonly RULE_rewriteDisabled = 19; - public static readonly RULE_storedAsDirs = 20; + public static readonly RULE_storedAsDirs = 18; + public static readonly RULE_rewriteEnabled = 19; + public static readonly RULE_rewriteDisabled = 20; public static readonly RULE_createDatabaseStatement = 21; - public static readonly RULE_dbConnectorName = 22; - public static readonly RULE_switchDatabaseStatement = 23; - public static readonly RULE_dropDatabaseStatement = 24; - public static readonly RULE_databaseComment = 25; - public static readonly RULE_truncateTableStatement = 26; - public static readonly RULE_dropTableStatement = 27; - public static readonly RULE_inputFileFormat = 28; - public static readonly RULE_tabTypeExpr = 29; - public static readonly RULE_partTypeExpr = 30; - public static readonly RULE_tabPartColTypeExpr = 31; - public static readonly RULE_descStatement = 32; - public static readonly RULE_analyzeStatement = 33; - public static readonly RULE_from_in = 34; - public static readonly RULE_db_schema = 35; - public static readonly RULE_showStatement = 36; - public static readonly RULE_showTablesFilterExpr = 37; - public static readonly RULE_lockStatement = 38; - public static readonly RULE_lockDatabase = 39; - public static readonly RULE_lockMode = 40; - public static readonly RULE_unlockStatement = 41; - public static readonly RULE_unlockDatabase = 42; - public static readonly RULE_createRoleStatement = 43; - public static readonly RULE_dropRoleStatement = 44; - public static readonly RULE_grantPrivileges = 45; - public static readonly RULE_revokePrivileges = 46; - public static readonly RULE_grantRole = 47; - public static readonly RULE_revokeRole = 48; - public static readonly RULE_showRoleGrants = 49; - public static readonly RULE_showRoles = 50; - public static readonly RULE_showCurrentRole = 51; - public static readonly RULE_setRole = 52; - public static readonly RULE_showGrants = 53; - public static readonly RULE_showRolePrincipals = 54; - public static readonly RULE_privilegeIncludeColObject = 55; - public static readonly RULE_privilegeObject = 56; - public static readonly RULE_privObject = 57; - public static readonly RULE_privObjectCols = 58; - public static readonly RULE_privilegeList = 59; - public static readonly RULE_privilegeDef = 60; - public static readonly RULE_privilegeType = 61; - public static readonly RULE_principalSpecification = 62; - public static readonly RULE_principalName = 63; - public static readonly RULE_principalAlterName = 64; - public static readonly RULE_withGrantOption = 65; - public static readonly RULE_grantOptionFor = 66; - public static readonly RULE_adminOptionFor = 67; - public static readonly RULE_withAdminOption = 68; - public static readonly RULE_metastoreCheck = 69; - public static readonly RULE_resourceList = 70; - public static readonly RULE_resource = 71; - public static readonly RULE_resourceType = 72; - public static readonly RULE_createFunctionStatement = 73; - public static readonly RULE_dropFunctionStatement = 74; - public static readonly RULE_reloadFunctionsStatement = 75; - public static readonly RULE_createMacroStatement = 76; - public static readonly RULE_dropMacroStatement = 77; - public static readonly RULE_createIndexStatement = 78; - public static readonly RULE_dropIndexStatement = 79; - public static readonly RULE_createViewStatement = 80; - public static readonly RULE_viewPartition = 81; - public static readonly RULE_viewOrganization = 82; - public static readonly RULE_viewClusterSpec = 83; - public static readonly RULE_viewComplexSpec = 84; - public static readonly RULE_viewDistSpec = 85; - public static readonly RULE_viewSortSpec = 86; - public static readonly RULE_dropViewStatement = 87; - public static readonly RULE_createMaterializedViewStatement = 88; - public static readonly RULE_dropMaterializedViewStatement = 89; - public static readonly RULE_createScheduledQueryStatement = 90; - public static readonly RULE_dropScheduledQueryStatement = 91; - public static readonly RULE_alterScheduledQueryStatement = 92; - public static readonly RULE_alterScheduledQueryChange = 93; - public static readonly RULE_scheduleSpec = 94; - public static readonly RULE_executedAsSpec = 95; - public static readonly RULE_definedAsSpec = 96; - public static readonly RULE_showStmtIdentifier = 97; - public static readonly RULE_tableComment = 98; - public static readonly RULE_tableLifecycle = 99; - public static readonly RULE_createTablePartitionSpec = 100; - public static readonly RULE_createTablePartitionColumnTypeSpec = 101; - public static readonly RULE_partitionTransformSpec = 102; - public static readonly RULE_partitionTransformType = 103; - public static readonly RULE_tableBuckets = 104; - public static readonly RULE_tableSkewed = 105; - public static readonly RULE_rowFormat = 106; - public static readonly RULE_recordReader = 107; - public static readonly RULE_recordWriter = 108; - public static readonly RULE_rowFormatSerde = 109; - public static readonly RULE_rowFormatDelimited = 110; - public static readonly RULE_tableRowFormat = 111; - public static readonly RULE_tablePropertiesPrefixed = 112; - public static readonly RULE_tableProperties = 113; - public static readonly RULE_tablePropertiesList = 114; - public static readonly RULE_keyValueProperties = 115; - public static readonly RULE_keyValuePropertyList = 116; - public static readonly RULE_keyValueProperty = 117; - public static readonly RULE_tableRowFormatFieldIdentifier = 118; - public static readonly RULE_tableRowFormatCollItemsIdentifier = 119; - public static readonly RULE_tableRowFormatMapKeysIdentifier = 120; - public static readonly RULE_tableRowFormatLinesIdentifier = 121; - public static readonly RULE_tableRowNullFormat = 122; - public static readonly RULE_tableFileFormat = 123; - public static readonly RULE_columnNameTypeList = 124; - public static readonly RULE_columnNameTypeOrConstraintList = 125; - public static readonly RULE_columnNameColonTypeList = 126; - public static readonly RULE_columnNameList = 127; - public static readonly RULE_columnName = 128; - public static readonly RULE_columnNamePath = 129; - public static readonly RULE_columnNamePathAllowEmpty = 130; - public static readonly RULE_columnNameCreate = 131; - public static readonly RULE_extColumnName = 132; - public static readonly RULE_columnNameOrderList = 133; - public static readonly RULE_columnParenthesesList = 134; - public static readonly RULE_enableValidateSpecification = 135; - public static readonly RULE_enableSpecification = 136; - public static readonly RULE_validateSpecification = 137; - public static readonly RULE_enforcedSpecification = 138; - public static readonly RULE_relySpecification = 139; - public static readonly RULE_createConstraint = 140; - public static readonly RULE_alterConstraintWithName = 141; - public static readonly RULE_tableLevelConstraint = 142; - public static readonly RULE_pkUkConstraint = 143; - public static readonly RULE_checkConstraint = 144; - public static readonly RULE_createForeignKey = 145; - public static readonly RULE_alterForeignKeyWithName = 146; - public static readonly RULE_skewedValueElement = 147; - public static readonly RULE_skewedColumnValuePairList = 148; - public static readonly RULE_skewedColumnValuePair = 149; - public static readonly RULE_constantList = 150; - public static readonly RULE_orderSpecification = 151; - public static readonly RULE_nullOrdering = 152; - public static readonly RULE_columnNameOrder = 153; - public static readonly RULE_columnNameCommentList = 154; - public static readonly RULE_columnNameComment = 155; - public static readonly RULE_columnRefOrder = 156; - public static readonly RULE_columnNameType = 157; - public static readonly RULE_columnNameTypeOrConstraint = 158; - public static readonly RULE_tableConstraint = 159; - public static readonly RULE_columnNameTypeConstraint = 160; - public static readonly RULE_columnConstraint = 161; - public static readonly RULE_foreignKeyConstraint = 162; - public static readonly RULE_colConstraint = 163; - public static readonly RULE_alterColumnConstraint = 164; - public static readonly RULE_alterForeignKeyConstraint = 165; - public static readonly RULE_alterColConstraint = 166; - public static readonly RULE_columnConstraintType = 167; - public static readonly RULE_defaultVal = 168; - public static readonly RULE_tableConstraintType = 169; - public static readonly RULE_constraintOptsCreate = 170; - public static readonly RULE_constraintOptsAlter = 171; - public static readonly RULE_columnNameColonType = 172; - public static readonly RULE_columnType = 173; - public static readonly RULE_columnTypeList = 174; - public static readonly RULE_type = 175; - public static readonly RULE_primitiveType = 176; - public static readonly RULE_listType = 177; - public static readonly RULE_structType = 178; - public static readonly RULE_mapType = 179; - public static readonly RULE_unionType = 180; - public static readonly RULE_setOperator = 181; - public static readonly RULE_queryStatementExpression = 182; - public static readonly RULE_queryStatementExpressionBody = 183; - public static readonly RULE_withClause = 184; - public static readonly RULE_cteStatement = 185; - public static readonly RULE_fromStatement = 186; - public static readonly RULE_singleFromStatement = 187; - public static readonly RULE_regularBody = 188; - public static readonly RULE_atomSelectStatement = 189; - public static readonly RULE_selectStatement = 190; - public static readonly RULE_setOpSelectStatement = 191; - public static readonly RULE_selectStatementWithCTE = 192; - public static readonly RULE_insertClause = 193; - public static readonly RULE_destination = 194; - public static readonly RULE_limitClause = 195; - public static readonly RULE_columnAssignmentClause = 196; - public static readonly RULE_precedencePlusExpressionOrDefault = 197; - public static readonly RULE_setColumnsClause = 198; - public static readonly RULE_sqlTransactionStatement = 199; - public static readonly RULE_transactionMode = 200; - public static readonly RULE_whenClauses = 201; - public static readonly RULE_whenNotMatchedClause = 202; - public static readonly RULE_whenMatchedAndClause = 203; - public static readonly RULE_whenMatchedThenClause = 204; - public static readonly RULE_compactionPool = 205; - public static readonly RULE_compactionType = 206; - public static readonly RULE_compactionStatus = 207; - public static readonly RULE_alterStatement = 208; - public static readonly RULE_alterTableStatementSuffix = 209; - public static readonly RULE_alterTblPartitionStatementSuffix = 210; - public static readonly RULE_alterViewStatementSuffix = 211; - public static readonly RULE_alterDatabaseStatementSuffix = 212; - public static readonly RULE_alterDataConnectorStatementSuffix = 213; - public static readonly RULE_locationPath = 214; - public static readonly RULE_alterStatementSuffixDropPartitions = 215; - public static readonly RULE_skewedLocationMap = 216; - public static readonly RULE_alterStatementSuffixExecute = 217; - public static readonly RULE_fileFormat = 218; - public static readonly RULE_likeTableOrFile = 219; - public static readonly RULE_createTableStatement = 220; - public static readonly RULE_createDataConnectorStatement = 221; - public static readonly RULE_dropDataConnectorStatement = 222; - public static readonly RULE_tableAllColumns = 223; - public static readonly RULE_expressionList = 224; - public static readonly RULE_aliasList = 225; - public static readonly RULE_fromClause = 226; - public static readonly RULE_fromSource = 227; - public static readonly RULE_atomjoinSource = 228; - public static readonly RULE_joinSource = 229; - public static readonly RULE_joinSourcePart = 230; - public static readonly RULE_uniqueJoinSource = 231; - public static readonly RULE_joinToken = 232; - public static readonly RULE_lateralView = 233; - public static readonly RULE_tableAlias = 234; - public static readonly RULE_tableSample = 235; - public static readonly RULE_tableSource = 236; - public static readonly RULE_asOfClause = 237; - public static readonly RULE_dbSchemaName = 238; - public static readonly RULE_dbSchemaNameCreate = 239; - public static readonly RULE_tableOrView = 240; - public static readonly RULE_tableName = 241; - public static readonly RULE_tableNameCreate = 242; - public static readonly RULE_viewName = 243; - public static readonly RULE_viewNameCreate = 244; - public static readonly RULE_subQuerySource = 245; - public static readonly RULE_partitioningSpec = 246; - public static readonly RULE_partitionTableFunctionSource = 247; - public static readonly RULE_partitionedTableFunction = 248; - public static readonly RULE_atomPartitionedTableFunction = 249; - public static readonly RULE_whereClause = 250; - public static readonly RULE_valuesClause = 251; - public static readonly RULE_atomValuesClause = 252; - public static readonly RULE_virtualTableSource = 253; - public static readonly RULE_selectClause = 254; - public static readonly RULE_selectTrfmClause = 255; - public static readonly RULE_selectList = 256; - public static readonly RULE_selectItem = 257; - public static readonly RULE_selectLiteralColumnName = 258; - public static readonly RULE_selectExpressionColumnName = 259; - public static readonly RULE_trfmClause = 260; - public static readonly RULE_selectExpression = 261; - public static readonly RULE_selectExpressionList = 262; - public static readonly RULE_window_clause = 263; - public static readonly RULE_window_specification = 264; - public static readonly RULE_window_frame = 265; - public static readonly RULE_window_frame_boundary = 266; - public static readonly RULE_groupByClause = 267; - public static readonly RULE_rollupStandard = 268; - public static readonly RULE_rollupOldSyntax = 269; - public static readonly RULE_groupingSetExpression = 270; - public static readonly RULE_havingClause = 271; - public static readonly RULE_qualifyClause = 272; - public static readonly RULE_expressionOrDefault = 273; - public static readonly RULE_firstExpressionsWithAlias = 274; - public static readonly RULE_expressions = 275; - public static readonly RULE_expressionsInParenthesis = 276; - public static readonly RULE_expressionsNotInParenthesis = 277; - public static readonly RULE_orderByClause = 278; - public static readonly RULE_partitionByClause = 279; - public static readonly RULE_clusterByClause = 280; - public static readonly RULE_distributeByClause = 281; - public static readonly RULE_sortByClause = 282; - public static readonly RULE_function_ = 283; - public static readonly RULE_null_treatment = 284; - public static readonly RULE_functionNameCreate = 285; - public static readonly RULE_functionNameForDDL = 286; - public static readonly RULE_functionNameForInvoke = 287; - public static readonly RULE_castExpression = 288; - public static readonly RULE_caseExpression = 289; - public static readonly RULE_whenExpression = 290; - public static readonly RULE_floorExpression = 291; - public static readonly RULE_extractExpression = 292; - public static readonly RULE_timeQualifiers = 293; - public static readonly RULE_constant = 294; - public static readonly RULE_intervalValue = 295; - public static readonly RULE_intervalExpression = 296; - public static readonly RULE_intervalQualifiers = 297; - public static readonly RULE_expression = 298; - public static readonly RULE_atomExpression = 299; - public static readonly RULE_precedenceUnaryPrefixExpression = 300; - public static readonly RULE_precedenceBitwiseXorExpression = 301; - public static readonly RULE_precedenceStarExpression = 302; - public static readonly RULE_precedencePlusExpression = 303; - public static readonly RULE_precedenceConcatenateExpression = 304; - public static readonly RULE_precedenceAmpersandExpression = 305; - public static readonly RULE_precedenceBitwiseOrExpression = 306; - public static readonly RULE_precedenceSimilarOperator = 307; - public static readonly RULE_subQueryExpression = 308; - public static readonly RULE_precedenceSimilarExpression = 309; - public static readonly RULE_precedenceSimilarExpressionPart = 310; - public static readonly RULE_precedenceSimilarExpressionAtom = 311; - public static readonly RULE_precedenceSimilarExpressionIn = 312; - public static readonly RULE_precedenceSimilarExpressionPartNot = 313; - public static readonly RULE_precedenceDistinctOperator = 314; - public static readonly RULE_precedenceEqualOperator = 315; - public static readonly RULE_precedenceEqualExpression = 316; - public static readonly RULE_isCondition = 317; - public static readonly RULE_precedenceNotExpression = 318; - public static readonly RULE_precedenceAndExpression = 319; - public static readonly RULE_tableOrPartition = 320; - public static readonly RULE_partitionSpec = 321; - public static readonly RULE_partitionVal = 322; - public static readonly RULE_partitionSelectorSpec = 323; - public static readonly RULE_partitionSelectorVal = 324; - public static readonly RULE_subQuerySelectorOperator = 325; - public static readonly RULE_sysFuncNames = 326; - public static readonly RULE_id_ = 327; - public static readonly RULE_functionIdentifier = 328; - public static readonly RULE_principalIdentifier = 329; - public static readonly RULE_nonReserved = 330; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 331; - public static readonly RULE_configProperty = 332; - public static readonly RULE_configPropertyPart = 333; - public static readonly RULE_configPropertiesItem = 334; - public static readonly RULE_resourcePlanDdlStatements = 335; - public static readonly RULE_mappingTypes = 336; - public static readonly RULE_rpAssign = 337; - public static readonly RULE_rpAssignList = 338; - public static readonly RULE_rpUnassign = 339; - public static readonly RULE_activate = 340; - public static readonly RULE_enable = 341; - public static readonly RULE_disable = 342; - public static readonly RULE_year = 343; - public static readonly RULE_month = 344; - public static readonly RULE_week = 345; - public static readonly RULE_day = 346; - public static readonly RULE_hour = 347; - public static readonly RULE_minute = 348; - public static readonly RULE_second = 349; - public static readonly RULE_decimal = 350; - public static readonly RULE_emptyColumn = 351; - public static readonly RULE_poolPath = 352; - public static readonly RULE_poolPathAllowEmpty = 353; - public static readonly RULE_triggerAtomExpression = 354; - public static readonly RULE_triggerActionExpression = 355; - public static readonly RULE_poolAssign = 356; - public static readonly RULE_poolAssignList = 357; + public static readonly RULE_switchDatabaseStatement = 22; + public static readonly RULE_dropDatabaseStatement = 23; + public static readonly RULE_truncateTableStatement = 24; + public static readonly RULE_dropTableStatement = 25; + public static readonly RULE_tabTypeExpr = 26; + public static readonly RULE_partTypeExpr = 27; + public static readonly RULE_tabPartColTypeExpr = 28; + public static readonly RULE_descStatement = 29; + public static readonly RULE_analyzeStatement = 30; + public static readonly RULE_from_in = 31; + public static readonly RULE_db_schema = 32; + public static readonly RULE_showStatement = 33; + public static readonly RULE_showTablesFilterExpr = 34; + public static readonly RULE_lockStatement = 35; + public static readonly RULE_lockDatabase = 36; + public static readonly RULE_createRoleStatement = 37; + public static readonly RULE_grantPrivileges = 38; + public static readonly RULE_revokePrivileges = 39; + public static readonly RULE_grantRole = 40; + public static readonly RULE_revokeRole = 41; + public static readonly RULE_showRoleGrants = 42; + public static readonly RULE_showRoles = 43; + public static readonly RULE_showCurrentRole = 44; + public static readonly RULE_setRole = 45; + public static readonly RULE_showGrants = 46; + public static readonly RULE_showRolePrincipals = 47; + public static readonly RULE_privilegeIncludeColObject = 48; + public static readonly RULE_privilegeObject = 49; + public static readonly RULE_privObject = 50; + public static readonly RULE_privObjectCols = 51; + public static readonly RULE_privilegeList = 52; + public static readonly RULE_privilegeDef = 53; + public static readonly RULE_privilegeType = 54; + public static readonly RULE_principalSpecification = 55; + public static readonly RULE_principalName = 56; + public static readonly RULE_principalAlterName = 57; + public static readonly RULE_metastoreCheck = 58; + public static readonly RULE_resourceType = 59; + public static readonly RULE_createFunctionStatement = 60; + public static readonly RULE_dropFunctionStatement = 61; + public static readonly RULE_reloadFunctionsStatement = 62; + public static readonly RULE_createMacroStatement = 63; + public static readonly RULE_dropMacroStatement = 64; + public static readonly RULE_createIndexStatement = 65; + public static readonly RULE_dropIndexStatement = 66; + public static readonly RULE_createViewStatement = 67; + public static readonly RULE_viewPartition = 68; + public static readonly RULE_viewOrganization = 69; + public static readonly RULE_viewClusterSpec = 70; + public static readonly RULE_viewComplexSpec = 71; + public static readonly RULE_viewDistSpec = 72; + public static readonly RULE_viewSortSpec = 73; + public static readonly RULE_dropViewStatement = 74; + public static readonly RULE_createMaterializedViewStatement = 75; + public static readonly RULE_createScheduledQueryStatement = 76; + public static readonly RULE_dropScheduledQueryStatement = 77; + public static readonly RULE_alterScheduledQueryStatement = 78; + public static readonly RULE_alterScheduledQueryChange = 79; + public static readonly RULE_scheduleSpec = 80; + public static readonly RULE_executedAsSpec = 81; + public static readonly RULE_definedAsSpec = 82; + public static readonly RULE_showStmtIdentifier = 83; + public static readonly RULE_tableComment = 84; + public static readonly RULE_tableLifecycle = 85; + public static readonly RULE_createTablePartitionSpec = 86; + public static readonly RULE_createTablePartitionColumnTypeSpec = 87; + public static readonly RULE_partitionTransformSpec = 88; + public static readonly RULE_partitionTransformType = 89; + public static readonly RULE_tableBuckets = 90; + public static readonly RULE_tableSkewed = 91; + public static readonly RULE_rowFormat = 92; + public static readonly RULE_rowFormatSerde = 93; + public static readonly RULE_rowFormatDelimited = 94; + public static readonly RULE_tablePropertiesPrefixed = 95; + public static readonly RULE_tableProperties = 96; + public static readonly RULE_tablePropertiesList = 97; + public static readonly RULE_keyValueProperties = 98; + public static readonly RULE_keyValuePropertyList = 99; + public static readonly RULE_keyValueProperty = 100; + public static readonly RULE_rowFormatFieldIdentifier = 101; + public static readonly RULE_rowFormatCollItemsIdentifier = 102; + public static readonly RULE_rowFormatMapKeysIdentifier = 103; + public static readonly RULE_rowFormatLinesIdentifier = 104; + public static readonly RULE_tableRowNullFormat = 105; + public static readonly RULE_tableFileFormat = 106; + public static readonly RULE_columnNameTypeList = 107; + public static readonly RULE_columnNameTypeOrConstraintList = 108; + public static readonly RULE_columnNameColonTypeList = 109; + public static readonly RULE_columnNameList = 110; + public static readonly RULE_columnName = 111; + public static readonly RULE_columnNamePath = 112; + public static readonly RULE_columnNamePathAllowEmpty = 113; + public static readonly RULE_columnNameCreate = 114; + public static readonly RULE_extColumnName = 115; + public static readonly RULE_columnNameOrderList = 116; + public static readonly RULE_columnParenthesesList = 117; + public static readonly RULE_enableValidateSpecification = 118; + public static readonly RULE_enableSpecification = 119; + public static readonly RULE_enforcedSpecification = 120; + public static readonly RULE_createConstraint = 121; + public static readonly RULE_alterConstraintWithName = 122; + public static readonly RULE_tableLevelConstraint = 123; + public static readonly RULE_pkUkConstraint = 124; + public static readonly RULE_checkConstraint = 125; + public static readonly RULE_createForeignKey = 126; + public static readonly RULE_alterForeignKeyWithName = 127; + public static readonly RULE_skewedValueElement = 128; + public static readonly RULE_skewedColumnValuePairList = 129; + public static readonly RULE_skewedColumnValuePair = 130; + public static readonly RULE_constantList = 131; + public static readonly RULE_orderSpecification = 132; + public static readonly RULE_nullOrdering = 133; + public static readonly RULE_columnNameOrder = 134; + public static readonly RULE_columnNameCommentList = 135; + public static readonly RULE_columnNameComment = 136; + public static readonly RULE_columnRefOrder = 137; + public static readonly RULE_columnNameType = 138; + public static readonly RULE_columnNameTypeOrConstraint = 139; + public static readonly RULE_tableConstraint = 140; + public static readonly RULE_columnNameTypeConstraint = 141; + public static readonly RULE_columnConstraint = 142; + public static readonly RULE_foreignKeyConstraint = 143; + public static readonly RULE_colConstraint = 144; + public static readonly RULE_columnConstraintType = 145; + public static readonly RULE_tableConstraintType = 146; + public static readonly RULE_constraintOpts = 147; + public static readonly RULE_columnNameColonType = 148; + public static readonly RULE_typeList = 149; + public static readonly RULE_type = 150; + public static readonly RULE_primitiveType = 151; + public static readonly RULE_listType = 152; + public static readonly RULE_structType = 153; + public static readonly RULE_mapType = 154; + public static readonly RULE_unionType = 155; + public static readonly RULE_setOperator = 156; + public static readonly RULE_queryStatementExpression = 157; + public static readonly RULE_queryStatementExpressionBody = 158; + public static readonly RULE_withClause = 159; + public static readonly RULE_cteStatement = 160; + public static readonly RULE_fromStatement = 161; + public static readonly RULE_singleFromStatement = 162; + public static readonly RULE_regularBody = 163; + public static readonly RULE_atomSelectStatement = 164; + public static readonly RULE_selectStatement = 165; + public static readonly RULE_setOpSelectStatement = 166; + public static readonly RULE_selectStatementWithCTE = 167; + public static readonly RULE_insertClause = 168; + public static readonly RULE_destination = 169; + public static readonly RULE_limitClause = 170; + public static readonly RULE_columnAssignmentClause = 171; + public static readonly RULE_precedencePlusExpressionOrDefault = 172; + public static readonly RULE_setColumnsClause = 173; + public static readonly RULE_sqlTransactionStatement = 174; + public static readonly RULE_transactionMode = 175; + public static readonly RULE_whenClauses = 176; + public static readonly RULE_whenNotMatchedClause = 177; + public static readonly RULE_whenMatchedAndClause = 178; + public static readonly RULE_whenMatchedThenClause = 179; + public static readonly RULE_alterStatement = 180; + public static readonly RULE_alterTableStatementSuffix = 181; + public static readonly RULE_alterTblPartitionStatementSuffix = 182; + public static readonly RULE_alterViewStatementSuffix = 183; + public static readonly RULE_alterDatabaseStatementSuffix = 184; + public static readonly RULE_alterDataConnectorStatementSuffix = 185; + public static readonly RULE_locationPath = 186; + public static readonly RULE_alterStatementSuffixDropPartitions = 187; + public static readonly RULE_skewedLocationMap = 188; + public static readonly RULE_alterStatementSuffixExecute = 189; + public static readonly RULE_fileFormat = 190; + public static readonly RULE_likeTableOrFile = 191; + public static readonly RULE_createTableStatement = 192; + public static readonly RULE_createDataConnectorStatement = 193; + public static readonly RULE_dropDataConnectorStatement = 194; + public static readonly RULE_tableAllColumns = 195; + public static readonly RULE_expressionList = 196; + public static readonly RULE_aliasList = 197; + public static readonly RULE_fromClause = 198; + public static readonly RULE_fromSource = 199; + public static readonly RULE_atomjoinSource = 200; + public static readonly RULE_joinSource = 201; + public static readonly RULE_joinSourcePart = 202; + public static readonly RULE_uniqueJoinSource = 203; + public static readonly RULE_joinToken = 204; + public static readonly RULE_lateralView = 205; + public static readonly RULE_tableAlias = 206; + public static readonly RULE_tableSample = 207; + public static readonly RULE_tableSource = 208; + public static readonly RULE_asOfClause = 209; + public static readonly RULE_dbSchemaName = 210; + public static readonly RULE_dbSchemaNameCreate = 211; + public static readonly RULE_tableOrView = 212; + public static readonly RULE_tableName = 213; + public static readonly RULE_tableNameCreate = 214; + public static readonly RULE_viewName = 215; + public static readonly RULE_viewNameCreate = 216; + public static readonly RULE_subQuerySource = 217; + public static readonly RULE_partitioningSpec = 218; + public static readonly RULE_partitionTableFunctionSource = 219; + public static readonly RULE_partitionedTableFunction = 220; + public static readonly RULE_atomPartitionedTableFunction = 221; + public static readonly RULE_whereClause = 222; + public static readonly RULE_valuesClause = 223; + public static readonly RULE_atomValuesClause = 224; + public static readonly RULE_virtualTableSource = 225; + public static readonly RULE_selectClause = 226; + public static readonly RULE_selectTrfmClause = 227; + public static readonly RULE_selectList = 228; + public static readonly RULE_selectItem = 229; + public static readonly RULE_selectLiteralColumnName = 230; + public static readonly RULE_selectExpressionColumnName = 231; + public static readonly RULE_trfmClause = 232; + public static readonly RULE_selectExpression = 233; + public static readonly RULE_selectExpressionList = 234; + public static readonly RULE_window_clause = 235; + public static readonly RULE_window_specification = 236; + public static readonly RULE_window_frame = 237; + public static readonly RULE_window_frame_boundary = 238; + public static readonly RULE_groupByClause = 239; + public static readonly RULE_rollupStandard = 240; + public static readonly RULE_rollupOldSyntax = 241; + public static readonly RULE_groupingSetExpression = 242; + public static readonly RULE_havingClause = 243; + public static readonly RULE_qualifyClause = 244; + public static readonly RULE_firstExpressionsWithAlias = 245; + public static readonly RULE_expressions = 246; + public static readonly RULE_expressionsInParenthesis = 247; + public static readonly RULE_expressionsNotInParenthesis = 248; + public static readonly RULE_orderByClause = 249; + public static readonly RULE_partitionByClause = 250; + public static readonly RULE_clusterByClause = 251; + public static readonly RULE_distributeByClause = 252; + public static readonly RULE_sortByClause = 253; + public static readonly RULE_function_ = 254; + public static readonly RULE_functionNameCreate = 255; + public static readonly RULE_functionNameForDDL = 256; + public static readonly RULE_functionNameForInvoke = 257; + public static readonly RULE_castExpression = 258; + public static readonly RULE_caseExpression = 259; + public static readonly RULE_whenExpression = 260; + public static readonly RULE_floorExpression = 261; + public static readonly RULE_extractExpression = 262; + public static readonly RULE_timeQualifiers = 263; + public static readonly RULE_constant = 264; + public static readonly RULE_intervalValue = 265; + public static readonly RULE_intervalExpression = 266; + public static readonly RULE_intervalQualifiers = 267; + public static readonly RULE_expression = 268; + public static readonly RULE_atomExpression = 269; + public static readonly RULE_precedenceUnaryPrefixExpression = 270; + public static readonly RULE_precedenceBitwiseXorExpression = 271; + public static readonly RULE_precedenceStarExpression = 272; + public static readonly RULE_precedencePlusExpression = 273; + public static readonly RULE_precedenceConcatenateExpression = 274; + public static readonly RULE_precedenceAmpersandExpression = 275; + public static readonly RULE_precedenceBitwiseOrExpression = 276; + public static readonly RULE_subQueryExpression = 277; + public static readonly RULE_precedenceSimilarOperator = 278; + public static readonly RULE_precedenceSimilarExpression = 279; + public static readonly RULE_precedenceSimilarExpressionPart = 280; + public static readonly RULE_precedenceSimilarExpressionAtom = 281; + public static readonly RULE_precedenceDistinctOperator = 282; + public static readonly RULE_precedenceEqualOperator = 283; + public static readonly RULE_precedenceEqualExpression = 284; + public static readonly RULE_isCondition = 285; + public static readonly RULE_precedenceNotExpression = 286; + public static readonly RULE_precedenceAndExpression = 287; + public static readonly RULE_tableOrPartition = 288; + public static readonly RULE_partitionSpec = 289; + public static readonly RULE_partitionVal = 290; + public static readonly RULE_partitionSelectorSpec = 291; + public static readonly RULE_partitionSelectorVal = 292; + public static readonly RULE_subQuerySelectorOperator = 293; + public static readonly RULE_sysFuncNames = 294; + public static readonly RULE_id_ = 295; + public static readonly RULE_functionIdentifier = 296; + public static readonly RULE_principalIdentifier = 297; + public static readonly RULE_nonReserved = 298; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 299; + public static readonly RULE_configProperty = 300; + public static readonly RULE_configPropertyPart = 301; + public static readonly RULE_configPropertiesItem = 302; + public static readonly RULE_resourcePlanDdlStatements = 303; + public static readonly RULE_mappingTypes = 304; + public static readonly RULE_rpAssign = 305; + public static readonly RULE_rpAssignList = 306; + public static readonly RULE_rpUnassign = 307; + public static readonly RULE_activate = 308; + public static readonly RULE_enable = 309; + public static readonly RULE_disable = 310; + public static readonly RULE_emptyColumn = 311; + public static readonly RULE_poolPath = 312; + public static readonly RULE_poolPathAllowEmpty = 313; + public static readonly RULE_triggerAtomExpression = 314; + public static readonly RULE_triggerActionExpression = 315; + public static readonly RULE_poolAssign = 316; + public static readonly RULE_poolAssignList = 317; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -983,60 +943,52 @@ export class HiveSqlParser extends SQLParserBase { "execStatement", "loadStatement", "replicationClause", "exportStatement", "importStatement", "replDumpStatement", "replDbPolicy", "replLoadStatement", "replTableLevelPolicy", "ddlStatement", "ifExists", "ifNotExists", - "restrictOrCascade", "rewriteEnabled", "rewriteDisabled", "storedAsDirs", - "createDatabaseStatement", "dbConnectorName", "switchDatabaseStatement", - "dropDatabaseStatement", "databaseComment", "truncateTableStatement", - "dropTableStatement", "inputFileFormat", "tabTypeExpr", "partTypeExpr", + "restrictOrCascade", "storedAsDirs", "rewriteEnabled", "rewriteDisabled", + "createDatabaseStatement", "switchDatabaseStatement", "dropDatabaseStatement", + "truncateTableStatement", "dropTableStatement", "tabTypeExpr", "partTypeExpr", "tabPartColTypeExpr", "descStatement", "analyzeStatement", "from_in", "db_schema", "showStatement", "showTablesFilterExpr", "lockStatement", - "lockDatabase", "lockMode", "unlockStatement", "unlockDatabase", - "createRoleStatement", "dropRoleStatement", "grantPrivileges", "revokePrivileges", + "lockDatabase", "createRoleStatement", "grantPrivileges", "revokePrivileges", "grantRole", "revokeRole", "showRoleGrants", "showRoles", "showCurrentRole", "setRole", "showGrants", "showRolePrincipals", "privilegeIncludeColObject", "privilegeObject", "privObject", "privObjectCols", "privilegeList", "privilegeDef", "privilegeType", "principalSpecification", "principalName", - "principalAlterName", "withGrantOption", "grantOptionFor", "adminOptionFor", - "withAdminOption", "metastoreCheck", "resourceList", "resource", - "resourceType", "createFunctionStatement", "dropFunctionStatement", - "reloadFunctionsStatement", "createMacroStatement", "dropMacroStatement", - "createIndexStatement", "dropIndexStatement", "createViewStatement", - "viewPartition", "viewOrganization", "viewClusterSpec", "viewComplexSpec", - "viewDistSpec", "viewSortSpec", "dropViewStatement", "createMaterializedViewStatement", - "dropMaterializedViewStatement", "createScheduledQueryStatement", + "principalAlterName", "metastoreCheck", "resourceType", "createFunctionStatement", + "dropFunctionStatement", "reloadFunctionsStatement", "createMacroStatement", + "dropMacroStatement", "createIndexStatement", "dropIndexStatement", + "createViewStatement", "viewPartition", "viewOrganization", "viewClusterSpec", + "viewComplexSpec", "viewDistSpec", "viewSortSpec", "dropViewStatement", + "createMaterializedViewStatement", "createScheduledQueryStatement", "dropScheduledQueryStatement", "alterScheduledQueryStatement", "alterScheduledQueryChange", "scheduleSpec", "executedAsSpec", "definedAsSpec", "showStmtIdentifier", "tableComment", "tableLifecycle", "createTablePartitionSpec", "createTablePartitionColumnTypeSpec", "partitionTransformSpec", "partitionTransformType", "tableBuckets", - "tableSkewed", "rowFormat", "recordReader", "recordWriter", "rowFormatSerde", - "rowFormatDelimited", "tableRowFormat", "tablePropertiesPrefixed", - "tableProperties", "tablePropertiesList", "keyValueProperties", - "keyValuePropertyList", "keyValueProperty", "tableRowFormatFieldIdentifier", - "tableRowFormatCollItemsIdentifier", "tableRowFormatMapKeysIdentifier", - "tableRowFormatLinesIdentifier", "tableRowNullFormat", "tableFileFormat", + "tableSkewed", "rowFormat", "rowFormatSerde", "rowFormatDelimited", + "tablePropertiesPrefixed", "tableProperties", "tablePropertiesList", + "keyValueProperties", "keyValuePropertyList", "keyValueProperty", + "rowFormatFieldIdentifier", "rowFormatCollItemsIdentifier", "rowFormatMapKeysIdentifier", + "rowFormatLinesIdentifier", "tableRowNullFormat", "tableFileFormat", "columnNameTypeList", "columnNameTypeOrConstraintList", "columnNameColonTypeList", "columnNameList", "columnName", "columnNamePath", "columnNamePathAllowEmpty", "columnNameCreate", "extColumnName", "columnNameOrderList", "columnParenthesesList", - "enableValidateSpecification", "enableSpecification", "validateSpecification", - "enforcedSpecification", "relySpecification", "createConstraint", - "alterConstraintWithName", "tableLevelConstraint", "pkUkConstraint", - "checkConstraint", "createForeignKey", "alterForeignKeyWithName", + "enableValidateSpecification", "enableSpecification", "enforcedSpecification", + "createConstraint", "alterConstraintWithName", "tableLevelConstraint", + "pkUkConstraint", "checkConstraint", "createForeignKey", "alterForeignKeyWithName", "skewedValueElement", "skewedColumnValuePairList", "skewedColumnValuePair", "constantList", "orderSpecification", "nullOrdering", "columnNameOrder", "columnNameCommentList", "columnNameComment", "columnRefOrder", "columnNameType", "columnNameTypeOrConstraint", "tableConstraint", "columnNameTypeConstraint", "columnConstraint", "foreignKeyConstraint", - "colConstraint", "alterColumnConstraint", "alterForeignKeyConstraint", - "alterColConstraint", "columnConstraintType", "defaultVal", "tableConstraintType", - "constraintOptsCreate", "constraintOptsAlter", "columnNameColonType", - "columnType", "columnTypeList", "type", "primitiveType", "listType", - "structType", "mapType", "unionType", "setOperator", "queryStatementExpression", - "queryStatementExpressionBody", "withClause", "cteStatement", "fromStatement", - "singleFromStatement", "regularBody", "atomSelectStatement", "selectStatement", - "setOpSelectStatement", "selectStatementWithCTE", "insertClause", - "destination", "limitClause", "columnAssignmentClause", "precedencePlusExpressionOrDefault", - "setColumnsClause", "sqlTransactionStatement", "transactionMode", - "whenClauses", "whenNotMatchedClause", "whenMatchedAndClause", "whenMatchedThenClause", - "compactionPool", "compactionType", "compactionStatus", "alterStatement", + "colConstraint", "columnConstraintType", "tableConstraintType", + "constraintOpts", "columnNameColonType", "typeList", "type", "primitiveType", + "listType", "structType", "mapType", "unionType", "setOperator", + "queryStatementExpression", "queryStatementExpressionBody", "withClause", + "cteStatement", "fromStatement", "singleFromStatement", "regularBody", + "atomSelectStatement", "selectStatement", "setOpSelectStatement", + "selectStatementWithCTE", "insertClause", "destination", "limitClause", + "columnAssignmentClause", "precedencePlusExpressionOrDefault", "setColumnsClause", + "sqlTransactionStatement", "transactionMode", "whenClauses", "whenNotMatchedClause", + "whenMatchedAndClause", "whenMatchedThenClause", "alterStatement", "alterTableStatementSuffix", "alterTblPartitionStatementSuffix", "alterViewStatementSuffix", "alterDatabaseStatementSuffix", "alterDataConnectorStatementSuffix", "locationPath", "alterStatementSuffixDropPartitions", "skewedLocationMap", @@ -1055,19 +1007,18 @@ export class HiveSqlParser extends SQLParserBase { "selectExpressionList", "window_clause", "window_specification", "window_frame", "window_frame_boundary", "groupByClause", "rollupStandard", "rollupOldSyntax", "groupingSetExpression", "havingClause", "qualifyClause", - "expressionOrDefault", "firstExpressionsWithAlias", "expressions", - "expressionsInParenthesis", "expressionsNotInParenthesis", "orderByClause", - "partitionByClause", "clusterByClause", "distributeByClause", "sortByClause", - "function_", "null_treatment", "functionNameCreate", "functionNameForDDL", - "functionNameForInvoke", "castExpression", "caseExpression", "whenExpression", - "floorExpression", "extractExpression", "timeQualifiers", "constant", - "intervalValue", "intervalExpression", "intervalQualifiers", "expression", - "atomExpression", "precedenceUnaryPrefixExpression", "precedenceBitwiseXorExpression", + "firstExpressionsWithAlias", "expressions", "expressionsInParenthesis", + "expressionsNotInParenthesis", "orderByClause", "partitionByClause", + "clusterByClause", "distributeByClause", "sortByClause", "function_", + "functionNameCreate", "functionNameForDDL", "functionNameForInvoke", + "castExpression", "caseExpression", "whenExpression", "floorExpression", + "extractExpression", "timeQualifiers", "constant", "intervalValue", + "intervalExpression", "intervalQualifiers", "expression", "atomExpression", + "precedenceUnaryPrefixExpression", "precedenceBitwiseXorExpression", "precedenceStarExpression", "precedencePlusExpression", "precedenceConcatenateExpression", "precedenceAmpersandExpression", "precedenceBitwiseOrExpression", - "precedenceSimilarOperator", "subQueryExpression", "precedenceSimilarExpression", + "subQueryExpression", "precedenceSimilarOperator", "precedenceSimilarExpression", "precedenceSimilarExpressionPart", "precedenceSimilarExpressionAtom", - "precedenceSimilarExpressionIn", "precedenceSimilarExpressionPartNot", "precedenceDistinctOperator", "precedenceEqualOperator", "precedenceEqualExpression", "isCondition", "precedenceNotExpression", "precedenceAndExpression", "tableOrPartition", "partitionSpec", "partitionVal", "partitionSelectorSpec", @@ -1076,8 +1027,7 @@ export class HiveSqlParser extends SQLParserBase { "sql11ReservedKeywordsUsedAsFunctionName", "configProperty", "configPropertyPart", "configPropertiesItem", "resourcePlanDdlStatements", "mappingTypes", "rpAssign", "rpAssignList", "rpUnassign", "activate", "enable", - "disable", "year", "month", "week", "day", "hour", "minute", "second", - "decimal", "emptyColumn", "poolPath", "poolPathAllowEmpty", "triggerAtomExpression", + "disable", "emptyColumn", "poolPath", "poolPathAllowEmpty", "triggerAtomExpression", "triggerActionExpression", "poolAssign", "poolAssignList", ]; @@ -1102,21 +1052,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 719; + this.state = 639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 716; + this.state = 636; this.statement(); } } - this.state = 721; + this.state = 641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 722; + this.state = 642; this.match(HiveSqlParser.EOF); } } @@ -1140,12 +1090,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 726; + this.state = 646; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 724; + this.state = 644; this.explainStatement(); } break; @@ -1193,19 +1143,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 725; + this.state = 645; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 729; + this.state = 649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 728; + this.state = 648; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1233,9 +1183,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 731; + this.state = 651; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 741; + this.state = 661; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1294,31 +1244,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 735; + this.state = 655; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 732; + this.state = 652; this.explainOption(); } } } - this.state = 737; + this.state = 657; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 738; + this.state = 658; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 739; + this.state = 659; this.match(HiveSqlParser.KW_REWRITE); - this.state = 740; + this.state = 660; this.queryStatementExpression(); } break; @@ -1346,41 +1296,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 765; + this.state = 685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 663; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 744; + this.state = 664; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 745; + this.state = 665; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 746; + this.state = 666; this.match(HiveSqlParser.KW_CBO); - this.state = 748; + this.state = 668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 747; + this.state = 667; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1397,66 +1347,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 750; + this.state = 670; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 751; + this.state = 671; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 752; + this.state = 672; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 753; + this.state = 673; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 754; + this.state = 674; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 755; + this.state = 675; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 756; + this.state = 676; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 758; + this.state = 678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 757; + this.state = 677; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 761; + this.state = 681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 760; + this.state = 680; this.vectorizationDetail(); } } @@ -1466,14 +1416,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 763; + this.state = 683; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 764; + this.state = 684; this.match(HiveSqlParser.KW_DDL); } break; @@ -1502,7 +1452,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 767; + this.state = 687; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1533,68 +1483,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 833; + this.state = 753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 769; + this.state = 689; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 770; + this.state = 690; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 771; + this.state = 691; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 772; + this.state = 692; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 773; + this.state = 693; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 774; + this.state = 694; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 775; + this.state = 695; this.match(HiveSqlParser.KW_REPL); - this.state = 776; + this.state = 696; this.match(HiveSqlParser.KW_STATUS); - this.state = 777; + this.state = 697; localContext._dbName = this.dbSchemaName(); - this.state = 780; + this.state = 700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 778; + this.state = 698; this.match(HiveSqlParser.KW_WITH); - this.state = 779; + this.state = 699; localContext._replConf = this.keyValueProperties(); } break; @@ -1604,25 +1554,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 782; + this.state = 702; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 783; + this.state = 703; this.match(HiveSqlParser.KW_DELETE); - this.state = 784; + this.state = 704; this.match(HiveSqlParser.KW_FROM); - this.state = 785; + this.state = 705; this.tableName(); - this.state = 787; + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 786; + this.state = 706; this.whereClause(); } } @@ -1632,18 +1582,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 789; + this.state = 709; this.match(HiveSqlParser.KW_UPDATE); - this.state = 790; + this.state = 710; this.tableName(); - this.state = 791; + this.state = 711; this.setColumnsClause(); - this.state = 793; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 792; + this.state = 712; this.whereClause(); } } @@ -1653,109 +1603,109 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 795; + this.state = 715; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 796; + this.state = 716; this.match(HiveSqlParser.KW_MERGE); - this.state = 798; + this.state = 718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 797; + this.state = 717; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 800; + this.state = 720; this.match(HiveSqlParser.KW_INTO); - this.state = 801; + this.state = 721; this.tableName(); - this.state = 806; + this.state = 726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 803; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 802; + this.state = 722; this.match(HiveSqlParser.KW_AS); } } - this.state = 805; + this.state = 725; this.id_(); } } - this.state = 808; + this.state = 728; this.match(HiveSqlParser.KW_USING); - this.state = 809; + this.state = 729; this.joinSourcePart(); - this.state = 810; + this.state = 730; this.match(HiveSqlParser.KW_ON); - this.state = 811; + this.state = 731; this.expression(); - this.state = 812; + this.state = 732; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 814; + this.state = 734; this.match(HiveSqlParser.KW_PREPARE); - this.state = 815; + this.state = 735; this.id_(); - this.state = 816; + this.state = 736; this.match(HiveSqlParser.KW_FROM); - this.state = 817; + this.state = 737; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 819; + this.state = 739; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 820; + this.state = 740; this.id_(); - this.state = 821; + this.state = 741; this.match(HiveSqlParser.KW_USING); - this.state = 822; + this.state = 742; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 824; + this.state = 744; this.match(HiveSqlParser.KW_SET); - this.state = 825; + this.state = 745; this.configProperty(); - this.state = 826; + this.state = 746; this.match(HiveSqlParser.EQUAL); - this.state = 830; + this.state = 750; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 827; + this.state = 747; this.matchWildcard(); } } } - this.state = 832; + this.state = 752; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } @@ -1784,47 +1734,53 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 755; this.match(HiveSqlParser.KW_LOAD); - this.state = 836; + this.state = 756; this.match(HiveSqlParser.KW_DATA); - this.state = 838; + this.state = 758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 837; + this.state = 757; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 840; + this.state = 760; this.match(HiveSqlParser.KW_INPATH); - this.state = 841; + this.state = 761; this.match(HiveSqlParser.StringLiteral); - this.state = 843; + this.state = 763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 842; + this.state = 762; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 845; + this.state = 765; this.match(HiveSqlParser.KW_INTO); - this.state = 846; + this.state = 766; this.match(HiveSqlParser.KW_TABLE); - this.state = 847; + this.state = 767; this.tableOrPartition(); - this.state = 849; + this.state = 772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 848; - this.inputFileFormat(); + this.state = 768; + this.match(HiveSqlParser.KW_INPUTFORMAT); + this.state = 769; + localContext._inFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 770; + this.match(HiveSqlParser.KW_SERDE); + this.state = 771; + localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -1851,25 +1807,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; + this.state = 774; this.match(HiveSqlParser.KW_FOR); - this.state = 853; + this.state = 776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 852; + this.state = 775; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 855; + this.state = 778; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 856; + this.state = 779; this.match(HiveSqlParser.LPAREN); - this.state = 857; + this.state = 780; this.match(HiveSqlParser.StringLiteral); - this.state = 858; + this.state = 781; this.match(HiveSqlParser.RPAREN); } } @@ -1894,22 +1850,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 860; + this.state = 783; this.match(HiveSqlParser.KW_EXPORT); - this.state = 861; + this.state = 784; this.match(HiveSqlParser.KW_TABLE); - this.state = 862; + this.state = 785; this.tableOrPartition(); - this.state = 863; + this.state = 786; this.match(HiveSqlParser.KW_TO); - this.state = 864; + this.state = 787; this.match(HiveSqlParser.StringLiteral); - this.state = 866; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 865; + this.state = 788; this.replicationClause(); } } @@ -1937,40 +1893,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 868; + this.state = 791; this.match(HiveSqlParser.KW_IMPORT); - this.state = 874; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 870; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 869; + this.state = 792; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 872; + this.state = 795; this.match(HiveSqlParser.KW_TABLE); - this.state = 873; + this.state = 796; this.tableOrPartition(); } } - this.state = 876; + this.state = 799; this.match(HiveSqlParser.KW_FROM); - this.state = 877; + this.state = 800; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 879; + this.state = 802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 878; + this.state = 801; this.locationPath(); } } @@ -1997,32 +1953,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 881; + this.state = 804; this.match(HiveSqlParser.KW_REPL); - this.state = 882; + this.state = 805; this.match(HiveSqlParser.KW_DUMP); - this.state = 883; + this.state = 806; localContext._dbPolicy = this.replDbPolicy(); - this.state = 886; + this.state = 809; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 884; + this.state = 807; this.match(HiveSqlParser.KW_REPLACE); - this.state = 885; + this.state = 808; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 890; + this.state = 813; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 888; + this.state = 811; this.match(HiveSqlParser.KW_WITH); - this.state = 889; + this.state = 812; localContext._replConf = this.keyValueProperties(); } break; @@ -2050,16 +2006,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 892; + this.state = 815; localContext._dbName = this.dbSchemaName(); - this.state = 895; + this.state = 818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 893; + this.state = 816; this.match(HiveSqlParser.DOT); - this.state = 894; + this.state = 817; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2087,32 +2043,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 897; + this.state = 820; this.match(HiveSqlParser.KW_REPL); - this.state = 898; + this.state = 821; this.match(HiveSqlParser.KW_LOAD); - this.state = 899; + this.state = 822; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 902; + this.state = 825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 900; + this.state = 823; this.match(HiveSqlParser.KW_INTO); - this.state = 901; + this.state = 824; localContext._dbName = this.dbSchemaName(); } } - this.state = 906; + this.state = 829; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 904; + this.state = 827; this.match(HiveSqlParser.KW_WITH); - this.state = 905; + this.state = 828; localContext._replConf = this.keyValueProperties(); } break; @@ -2140,16 +2096,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 908; + this.state = 831; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 911; + this.state = 834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 909; + this.state = 832; this.match(HiveSqlParser.DOT); - this.state = 910; + this.state = 833; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2175,302 +2131,274 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 971; + this.state = 890; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 913; + this.state = 836; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 914; + this.state = 837; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 915; + this.state = 838; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 916; + this.state = 839; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 917; + this.state = 840; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 918; + this.state = 841; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 919; + this.state = 842; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 920; + this.state = 843; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 921; + this.state = 844; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 922; + this.state = 845; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 923; + this.state = 846; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 924; + this.state = 847; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 925; + this.state = 848; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 926; + this.state = 849; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 927; + this.state = 850; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 928; + this.state = 851; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 929; - this.dropMaterializedViewStatement(); + this.state = 852; + this.createFunctionStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 930; - this.createFunctionStatement(); + this.state = 853; + this.createMacroStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 931; - this.createMacroStatement(); + this.state = 854; + this.dropFunctionStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 932; - this.dropFunctionStatement(); + this.state = 855; + this.reloadFunctionsStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 933; - this.reloadFunctionsStatement(); + this.state = 856; + this.dropMacroStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 934; - this.dropMacroStatement(); + this.state = 857; + this.createIndexStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 935; - this.createIndexStatement(); + this.state = 858; + this.dropIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 936; - this.dropIndexStatement(); + this.state = 859; + this.analyzeStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 937; - this.analyzeStatement(); + this.state = 860; + this.lockStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 938; - this.lockStatement(); + this.state = 861; + this.lockDatabase(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 939; - this.unlockStatement(); + this.state = 862; + this.createRoleStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 940; - this.lockDatabase(); + this.state = 863; + this.grantPrivileges(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 941; - this.unlockDatabase(); + this.state = 864; + this.revokePrivileges(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 942; - this.createRoleStatement(); + this.state = 865; + this.showGrants(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 943; - this.dropRoleStatement(); + this.state = 866; + this.showRoleGrants(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 944; - this.grantPrivileges(); + this.state = 867; + this.showRolePrincipals(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 945; - this.revokePrivileges(); + this.state = 868; + this.showRoles(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 946; - this.showGrants(); + this.state = 869; + this.grantRole(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 947; - this.showRoleGrants(); + this.state = 870; + this.revokeRole(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 948; - this.showRolePrincipals(); + this.state = 871; + this.setRole(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 949; - this.showRoles(); + this.state = 872; + this.showCurrentRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 950; - this.grantRole(); - } - break; - case 39: - this.enterOuterAlt(localContext, 39); - { - this.state = 951; - this.revokeRole(); - } - break; - case 40: - this.enterOuterAlt(localContext, 40); - { - this.state = 952; - this.setRole(); - } - break; - case 41: - this.enterOuterAlt(localContext, 41); - { - this.state = 953; - this.showCurrentRole(); - } - break; - case 42: - this.enterOuterAlt(localContext, 42); - { - this.state = 954; + this.state = 873; this.match(HiveSqlParser.KW_ABORT); - this.state = 955; + this.state = 874; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2479,63 +2407,63 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 957; + this.state = 876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 956; + this.state = 875; this.match(HiveSqlParser.Number); } } - this.state = 959; + this.state = 878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); } break; - case 43: - this.enterOuterAlt(localContext, 43); + case 39: + this.enterOuterAlt(localContext, 39); { - this.state = 961; + this.state = 880; this.match(HiveSqlParser.KW_KILL); - this.state = 962; + this.state = 881; this.match(HiveSqlParser.KW_QUERY); - this.state = 964; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 963; + this.state = 882; this.match(HiveSqlParser.StringLiteral); } } - this.state = 966; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); } break; - case 44: - this.enterOuterAlt(localContext, 44); + case 40: + this.enterOuterAlt(localContext, 40); { - this.state = 968; + this.state = 887; this.resourcePlanDdlStatements(); } break; - case 45: - this.enterOuterAlt(localContext, 45); + case 41: + this.enterOuterAlt(localContext, 41); { - this.state = 969; + this.state = 888; this.createDataConnectorStatement(); } break; - case 46: - this.enterOuterAlt(localContext, 46); + case 42: + this.enterOuterAlt(localContext, 42); { - this.state = 970; + this.state = 889; this.dropDataConnectorStatement(); } break; @@ -2561,9 +2489,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 973; + this.state = 892; this.match(HiveSqlParser.KW_IF); - this.state = 974; + this.state = 893; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2587,11 +2515,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 895; this.match(HiveSqlParser.KW_IF); - this.state = 977; + this.state = 896; this.match(HiveSqlParser.KW_NOT); - this.state = 978; + this.state = 897; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2616,7 +2544,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 980; + this.state = 899; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2641,16 +2569,18 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public rewriteEnabled(): RewriteEnabledContext { - let localContext = new RewriteEnabledContext(this.context, this.state); - this.enterRule(localContext, 36, HiveSqlParser.RULE_rewriteEnabled); + public storedAsDirs(): StoredAsDirsContext { + let localContext = new StoredAsDirsContext(this.context, this.state); + this.enterRule(localContext, 36, HiveSqlParser.RULE_storedAsDirs); try { this.enterOuterAlt(localContext, 1); { - this.state = 982; - this.enable(); - this.state = 983; - this.match(HiveSqlParser.KW_REWRITE); + this.state = 901; + this.match(HiveSqlParser.KW_STORED); + this.state = 902; + this.match(HiveSqlParser.KW_AS); + this.state = 903; + this.match(HiveSqlParser.KW_DIRECTORIES); } } catch (re) { @@ -2667,15 +2597,15 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public rewriteDisabled(): RewriteDisabledContext { - let localContext = new RewriteDisabledContext(this.context, this.state); - this.enterRule(localContext, 38, HiveSqlParser.RULE_rewriteDisabled); + public rewriteEnabled(): RewriteEnabledContext { + let localContext = new RewriteEnabledContext(this.context, this.state); + this.enterRule(localContext, 38, HiveSqlParser.RULE_rewriteEnabled); try { this.enterOuterAlt(localContext, 1); { - this.state = 985; - this.disable(); - this.state = 986; + this.state = 905; + this.enable(); + this.state = 906; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2693,18 +2623,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public storedAsDirs(): StoredAsDirsContext { - let localContext = new StoredAsDirsContext(this.context, this.state); - this.enterRule(localContext, 40, HiveSqlParser.RULE_storedAsDirs); + public rewriteDisabled(): RewriteDisabledContext { + let localContext = new RewriteDisabledContext(this.context, this.state); + this.enterRule(localContext, 40, HiveSqlParser.RULE_rewriteDisabled); try { this.enterOuterAlt(localContext, 1); { - this.state = 988; - this.match(HiveSqlParser.KW_STORED); - this.state = 989; - this.match(HiveSqlParser.KW_AS); - this.state = 990; - this.match(HiveSqlParser.KW_DIRECTORIES); + this.state = 908; + this.disable(); + this.state = 909; + this.match(HiveSqlParser.KW_REWRITE); } } catch (re) { @@ -2726,80 +2654,82 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1032; + this.state = 954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 992; + this.state = 911; this.match(HiveSqlParser.KW_CREATE); - this.state = 994; + this.state = 913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 993; + this.state = 912; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 996; + this.state = 915; this.db_schema(); - this.state = 998; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 997; + this.state = 916; this.ifNotExists(); } } - this.state = 1000; + this.state = 919; localContext._name = this.dbSchemaNameCreate(); - this.state = 1002; + this.state = 922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1001; - this.databaseComment(); + this.state = 920; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 921; + localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1005; + this.state = 925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1004; + this.state = 924; this.locationPath(); } } - this.state = 1009; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1007; + this.state = 927; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 1008; + this.state = 928; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1014; + this.state = 934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 1011; + this.state = 931; this.match(HiveSqlParser.KW_WITH); - this.state = 1012; + this.state = 932; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1013; + this.state = 933; localContext._dbprops = this.keyValueProperties(); } break; @@ -2809,46 +2739,50 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1016; + this.state = 936; this.match(HiveSqlParser.KW_CREATE); - this.state = 1017; + this.state = 937; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1018; + this.state = 938; this.db_schema(); - this.state = 1020; + this.state = 940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1019; + this.state = 939; this.ifNotExists(); } } - this.state = 1022; + this.state = 942; localContext._name = this.dbSchemaNameCreate(); - this.state = 1024; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1023; - this.databaseComment(); + this.state = 943; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 944; + localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1026; - this.dbConnectorName(); - this.state = 1030; + this.state = 947; + this.match(HiveSqlParser.KW_USING); + this.state = 948; + localContext._dcName = this.dbSchemaName(); + this.state = 952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 1027; + this.state = 949; this.match(HiveSqlParser.KW_WITH); - this.state = 1028; + this.state = 950; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1029; + this.state = 951; localContext._dbprops = this.keyValueProperties(); } break; @@ -2871,41 +2805,15 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public dbConnectorName(): DbConnectorNameContext { - let localContext = new DbConnectorNameContext(this.context, this.state); - this.enterRule(localContext, 44, HiveSqlParser.RULE_dbConnectorName); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1034; - this.match(HiveSqlParser.KW_USING); - this.state = 1035; - localContext._dcName = this.dbSchemaName(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public switchDatabaseStatement(): SwitchDatabaseStatementContext { let localContext = new SwitchDatabaseStatementContext(this.context, this.state); - this.enterRule(localContext, 46, HiveSqlParser.RULE_switchDatabaseStatement); + this.enterRule(localContext, 44, HiveSqlParser.RULE_switchDatabaseStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1037; + this.state = 956; this.match(HiveSqlParser.KW_USE); - this.state = 1038; + this.state = 957; this.dbSchemaName(); } } @@ -2925,33 +2833,33 @@ export class HiveSqlParser extends SQLParserBase { } public dropDatabaseStatement(): DropDatabaseStatementContext { let localContext = new DropDatabaseStatementContext(this.context, this.state); - this.enterRule(localContext, 48, HiveSqlParser.RULE_dropDatabaseStatement); + this.enterRule(localContext, 46, HiveSqlParser.RULE_dropDatabaseStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1040; + this.state = 959; this.match(HiveSqlParser.KW_DROP); - this.state = 1041; + this.state = 960; this.db_schema(); - this.state = 1043; + this.state = 962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1042; + this.state = 961; this.ifExists(); } } - this.state = 1045; + this.state = 964; this.dbSchemaName(); - this.state = 1047; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1046; + this.state = 965; this.restrictOrCascade(); } } @@ -2972,75 +2880,49 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public databaseComment(): DatabaseCommentContext { - let localContext = new DatabaseCommentContext(this.context, this.state); - this.enterRule(localContext, 50, HiveSqlParser.RULE_databaseComment); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1049; - this.match(HiveSqlParser.KW_COMMENT); - this.state = 1050; - localContext._comment = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public truncateTableStatement(): TruncateTableStatementContext { let localContext = new TruncateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 52, HiveSqlParser.RULE_truncateTableStatement); + this.enterRule(localContext, 48, HiveSqlParser.RULE_truncateTableStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1052; + this.state = 968; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1054; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1053; + this.state = 969; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1056; + this.state = 972; this.tableOrPartition(); - this.state = 1062; + this.state = 978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1057; + this.state = 973; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1058; + this.state = 974; this.match(HiveSqlParser.LPAREN); - this.state = 1059; + this.state = 975; this.columnNameList(); - this.state = 1060; + this.state = 976; this.match(HiveSqlParser.RPAREN); } } - this.state = 1065; + this.state = 981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1064; + this.state = 980; this.match(HiveSqlParser.KW_FORCE); } } @@ -3063,43 +2945,43 @@ export class HiveSqlParser extends SQLParserBase { } public dropTableStatement(): DropTableStatementContext { let localContext = new DropTableStatementContext(this.context, this.state); - this.enterRule(localContext, 54, HiveSqlParser.RULE_dropTableStatement); + this.enterRule(localContext, 50, HiveSqlParser.RULE_dropTableStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 983; this.match(HiveSqlParser.KW_DROP); - this.state = 1068; + this.state = 984; this.match(HiveSqlParser.KW_TABLE); - this.state = 1070; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1069; + this.state = 985; this.ifExists(); } } - this.state = 1072; + this.state = 988; this.tableName(); - this.state = 1074; + this.state = 990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1073; + this.state = 989; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1077; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1076; + this.state = 992; this.replicationClause(); } } @@ -3120,103 +3002,73 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public inputFileFormat(): InputFileFormatContext { - let localContext = new InputFileFormatContext(this.context, this.state); - this.enterRule(localContext, 56, HiveSqlParser.RULE_inputFileFormat); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1079; - this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1080; - localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1081; - this.match(HiveSqlParser.KW_SERDE); - this.state = 1082; - localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tabTypeExpr(): TabTypeExprContext { let localContext = new TabTypeExprContext(this.context, this.state); - this.enterRule(localContext, 58, HiveSqlParser.RULE_tabTypeExpr); + this.enterRule(localContext, 52, HiveSqlParser.RULE_tabTypeExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1084; + this.state = 995; this.id_(); - this.state = 1087; + this.state = 998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1085; + this.state = 996; this.match(HiveSqlParser.DOT); - this.state = 1086; + this.state = 997; this.id_(); } } - this.state = 1102; + this.state = 1013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 1089; + this.state = 1000; this.id_(); - this.state = 1099; + this.state = 1010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1090; + this.state = 1001; this.match(HiveSqlParser.DOT); - this.state = 1095; + this.state = 1006; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 1091; + this.state = 1002; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1092; + this.state = 1003; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1093; + this.state = 1004; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1094; + this.state = 1005; this.id_(); } break; } } } - this.state = 1101; + this.state = 1012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3241,19 +3093,19 @@ export class HiveSqlParser extends SQLParserBase { } public partTypeExpr(): PartTypeExprContext { let localContext = new PartTypeExprContext(this.context, this.state); - this.enterRule(localContext, 60, HiveSqlParser.RULE_partTypeExpr); + this.enterRule(localContext, 54, HiveSqlParser.RULE_partTypeExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1104; + this.state = 1015; this.tabTypeExpr(); - this.state = 1106; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1105; + this.state = 1016; this.partitionSpec(); } } @@ -3276,28 +3128,28 @@ export class HiveSqlParser extends SQLParserBase { } public tabPartColTypeExpr(): TabPartColTypeExprContext { let localContext = new TabPartColTypeExprContext(this.context, this.state); - this.enterRule(localContext, 62, HiveSqlParser.RULE_tabPartColTypeExpr); + this.enterRule(localContext, 56, HiveSqlParser.RULE_tabPartColTypeExpr); try { this.enterOuterAlt(localContext, 1); { - this.state = 1108; + this.state = 1019; this.tableOrView(); - this.state = 1110; + this.state = 1021; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1109; + this.state = 1020; this.partitionSpec(); } break; } - this.state = 1113; + this.state = 1024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1112; + this.state = 1023; this.extColumnName(); } break; @@ -3320,12 +3172,12 @@ export class HiveSqlParser extends SQLParserBase { } public descStatement(): DescStatementContext { let localContext = new DescStatementContext(this.context, this.state); - this.enterRule(localContext, 64, HiveSqlParser.RULE_descStatement); + this.enterRule(localContext, 58, HiveSqlParser.RULE_descStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1115; + this.state = 1026; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3334,90 +3186,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1138; + this.state = 1049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: { - this.state = 1116; + this.state = 1027; this.db_schema(); - this.state = 1118; + this.state = 1029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1117; + this.state = 1028; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1120; + this.state = 1031; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1122; + this.state = 1033; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1124; + this.state = 1035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1123; + this.state = 1034; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1126; + this.state = 1037; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1127; + this.state = 1038; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1129; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1128; + this.state = 1039; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1131; + this.state = 1042; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1134; + this.state = 1045; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1132; + this.state = 1043; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1133; + this.state = 1044; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1136; + this.state = 1047; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1137; + this.state = 1048; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3440,46 +3292,46 @@ export class HiveSqlParser extends SQLParserBase { } public analyzeStatement(): AnalyzeStatementContext { let localContext = new AnalyzeStatementContext(this.context, this.state); - this.enterRule(localContext, 66, HiveSqlParser.RULE_analyzeStatement); + this.enterRule(localContext, 60, HiveSqlParser.RULE_analyzeStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1140; + this.state = 1051; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1141; + this.state = 1052; this.match(HiveSqlParser.KW_TABLE); - this.state = 1142; + this.state = 1053; localContext._parttype = this.tableOrPartition(); - this.state = 1155; + this.state = 1066; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1143; + this.state = 1054; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1144; + this.state = 1055; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1151; + this.state = 1062; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1145; + this.state = 1056; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1146; + this.state = 1057; this.match(HiveSqlParser.KW_FOR); - this.state = 1147; + this.state = 1058; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1149; + this.state = 1060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1148; + this.state = 1059; localContext._statsColumnName = this.columnNameList(); } break; @@ -3540,9 +3392,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1153; + this.state = 1064; this.match(HiveSqlParser.KW_CACHE); - this.state = 1154; + this.state = 1065; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3567,12 +3419,12 @@ export class HiveSqlParser extends SQLParserBase { } public from_in(): From_inContext { let localContext = new From_inContext(this.context, this.state); - this.enterRule(localContext, 68, HiveSqlParser.RULE_from_in); + this.enterRule(localContext, 62, HiveSqlParser.RULE_from_in); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1157; + this.state = 1068; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3599,12 +3451,12 @@ export class HiveSqlParser extends SQLParserBase { } public db_schema(): Db_schemaContext { let localContext = new Db_schemaContext(this.context, this.state); - this.enterRule(localContext, 70, HiveSqlParser.RULE_db_schema); + this.enterRule(localContext, 64, HiveSqlParser.RULE_db_schema); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1159; + this.state = 1070; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3631,18 +3483,20 @@ export class HiveSqlParser extends SQLParserBase { } public showStatement(): ShowStatementContext { let localContext = new ShowStatementContext(this.context, this.state); - this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); + this.enterRule(localContext, 66, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1344; + this.enterOuterAlt(localContext, 1); + { + this.state = 1072; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_DATABASES: + case HiveSqlParser.KW_SCHEMAS: { - this.state = 1161; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1162; + this.state = 1073; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3651,290 +3505,271 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1165; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1163; + this.state = 1074; this.match(HiveSqlParser.KW_LIKE); - this.state = 1164; + this.state = 1075; this.showStmtIdentifier(); } } } break; - case 2: - this.enterOuterAlt(localContext, 2); + case HiveSqlParser.KW_EXTENDED: + case HiveSqlParser.KW_TABLES: { - this.state = 1167; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1169; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1168; + this.state = 1078; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1171; + this.state = 1081; this.match(HiveSqlParser.KW_TABLES); - this.state = 1175; + this.state = 1085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1172; + this.state = 1082; this.from_in(); - this.state = 1173; + this.state = 1083; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1178; + this.state = 1088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1177; + this.state = 1087; localContext._filter = this.showTablesFilterExpr(); } break; } } break; - case 3: - this.enterOuterAlt(localContext, 3); + case HiveSqlParser.KW_VIEWS: { - this.state = 1180; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1181; + this.state = 1090; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1185; + this.state = 1094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1182; + this.state = 1091; this.from_in(); - this.state = 1183; + this.state = 1092; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1190; + this.state = 1099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1187; + this.state = 1096; this.match(HiveSqlParser.KW_LIKE); - this.state = 1188; + this.state = 1097; this.showStmtIdentifier(); } break; case 2: { - this.state = 1189; + this.state = 1098; this.showStmtIdentifier(); } break; } } break; - case 4: - this.enterOuterAlt(localContext, 4); + case HiveSqlParser.KW_MATERIALIZED: { - this.state = 1192; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1193; + this.state = 1101; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1194; + this.state = 1102; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1198; + this.state = 1106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1195; + this.state = 1103; this.from_in(); - this.state = 1196; + this.state = 1104; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1203; + this.state = 1111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1200; + this.state = 1108; this.match(HiveSqlParser.KW_LIKE); - this.state = 1201; + this.state = 1109; this.showStmtIdentifier(); } break; case 2: { - this.state = 1202; + this.state = 1110; this.showStmtIdentifier(); } break; } } break; - case 5: - this.enterOuterAlt(localContext, 5); + case HiveSqlParser.KW_COLUMNS: + case HiveSqlParser.KW_SORTED: { - this.state = 1205; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1207; + this.state = 1114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1206; + this.state = 1113; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1209; + this.state = 1116; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1210; + this.state = 1117; this.from_in(); - this.state = 1211; + this.state = 1118; this.tableOrView(); - this.state = 1215; + this.state = 1122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 1212; + this.state = 1119; this.from_in(); - this.state = 1213; + this.state = 1120; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1220; + this.state = 1127; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1217; + this.state = 1124; this.match(HiveSqlParser.KW_LIKE); - this.state = 1218; + this.state = 1125; this.showStmtIdentifier(); } break; case 2: { - this.state = 1219; + this.state = 1126; this.showStmtIdentifier(); } break; } } break; - case 6: - this.enterOuterAlt(localContext, 6); + case HiveSqlParser.KW_FUNCTIONS: { - this.state = 1222; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1223; + this.state = 1129; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1226; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1224; + this.state = 1130; this.match(HiveSqlParser.KW_LIKE); - this.state = 1225; + this.state = 1131; this.functionNameForDDL(); } } } break; - case 7: - this.enterOuterAlt(localContext, 7); + case HiveSqlParser.KW_PARTITIONS: { - this.state = 1228; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1229; + this.state = 1134; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1230; + this.state = 1135; localContext._tabOrViewName = this.tableOrView(); - this.state = 1232; + this.state = 1137; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1231; + this.state = 1136; this.partitionSpec(); } } - this.state = 1235; + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1234; + this.state = 1139; this.whereClause(); } } - this.state = 1238; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1237; + this.state = 1142; this.orderByClause(); } } - this.state = 1241; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1240; + this.state = 1145; this.limitClause(); } } } break; - case 8: - this.enterOuterAlt(localContext, 8); + case HiveSqlParser.KW_CREATE: { - this.state = 1243; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1244; + this.state = 1148; this.match(HiveSqlParser.KW_CREATE); - this.state = 1250; + this.state = 1154; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1245; + this.state = 1149; this.db_schema(); - this.state = 1246; + this.state = 1150; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1248; + this.state = 1152; this.match(HiveSqlParser.KW_TABLE); - this.state = 1249; + this.state = 1153; localContext._tabName = this.tableName(); } break; @@ -3943,90 +3778,81 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 9: - this.enterOuterAlt(localContext, 9); + case HiveSqlParser.KW_TABLE: { - this.state = 1252; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1253; + this.state = 1156; this.match(HiveSqlParser.KW_TABLE); - this.state = 1254; + this.state = 1157; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1258; + this.state = 1161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1255; + this.state = 1158; this.from_in(); - this.state = 1256; + this.state = 1159; localContext._db_name = this.dbSchemaName(); } } - this.state = 1260; + this.state = 1163; this.match(HiveSqlParser.KW_LIKE); - this.state = 1261; + this.state = 1164; this.showStmtIdentifier(); - this.state = 1263; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1262; + this.state = 1165; this.partitionSpec(); } } } break; - case 10: - this.enterOuterAlt(localContext, 10); + case HiveSqlParser.KW_TBLPROPERTIES: { - this.state = 1265; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1266; + this.state = 1168; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1267; + this.state = 1169; this.tableName(); - this.state = 1271; + this.state = 1173; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 1268; + this.state = 1170; this.match(HiveSqlParser.LPAREN); - this.state = 1269; + this.state = 1171; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1270; + this.state = 1172; this.match(HiveSqlParser.RPAREN); } break; } } break; - case 11: - this.enterOuterAlt(localContext, 11); + case HiveSqlParser.KW_LOCKS: { - this.state = 1273; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1274; + this.state = 1175; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1286; + this.state = 1187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 1275; + this.state = 1176; this.db_schema(); - this.state = 1276; + this.state = 1177; localContext._dbName = this.dbSchemaName(); - this.state = 1278; + this.state = 1179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1277; + this.state = 1178; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4035,22 +3861,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1281; + this.state = 1182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1280; + this.state = 1181; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1284; + this.state = 1185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1283; + this.state = 1184; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4060,23 +3886,20 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 12: - this.enterOuterAlt(localContext, 12); + case HiveSqlParser.KW_COMPACTIONS: { - this.state = 1288; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1289; + this.state = 1189; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1316; + this.state = 1219; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1290; + this.state = 1190; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1291; + this.state = 1191; this.match(HiveSqlParser.EQUAL); - this.state = 1292; + this.state = 1192; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4349,27 +4172,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1299; + this.state = 1199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { { - this.state = 1293; + this.state = 1193; this.db_schema(); - this.state = 1294; + this.state = 1194; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1297; + this.state = 1197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1296; + this.state = 1196; localContext._parttype = this.partTypeExpr(); } break; @@ -4377,52 +4200,58 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1302; + this.state = 1203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1301; - this.compactionPool(); + this.state = 1201; + this.match(HiveSqlParser.KW_POOL); + this.state = 1202; + localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1305; + this.state = 1207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1304; - this.compactionType(); + this.state = 1205; + this.match(HiveSqlParser.KW_TYPE); + this.state = 1206; + localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1308; + this.state = 1211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1307; - this.compactionStatus(); + this.state = 1209; + this.match(HiveSqlParser.KW_STATUS); + this.state = 1210; + localContext._status = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1311; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1310; + this.state = 1213; this.orderByClause(); } } - this.state = 1314; + this.state = 1217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1313; + this.state = 1216; this.limitClause(); } } @@ -4434,47 +4263,38 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 13: - this.enterOuterAlt(localContext, 13); + case HiveSqlParser.KW_TRANSACTIONS: { - this.state = 1318; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1319; + this.state = 1221; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; - case 14: - this.enterOuterAlt(localContext, 14); + case HiveSqlParser.KW_CONF: { - this.state = 1320; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1321; + this.state = 1222; this.match(HiveSqlParser.KW_CONF); - this.state = 1322; + this.state = 1223; this.match(HiveSqlParser.StringLiteral); } break; - case 15: - this.enterOuterAlt(localContext, 15); + case HiveSqlParser.KW_RESOURCE: { - this.state = 1323; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1324; + this.state = 1224; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1328; + this.state = 1228; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1325; + this.state = 1225; this.match(HiveSqlParser.KW_PLAN); - this.state = 1326; + this.state = 1226; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1327; + this.state = 1227; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4483,31 +4303,27 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 16: - this.enterOuterAlt(localContext, 16); + case HiveSqlParser.KW_DATACONNECTORS: { - this.state = 1330; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1331; + this.state = 1230; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; - case 17: - this.enterOuterAlt(localContext, 17); + case HiveSqlParser.KW_FORMATTED: + case HiveSqlParser.KW_INDEX: + case HiveSqlParser.KW_INDEXES: { - this.state = 1332; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1334; + this.state = 1232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1333; + this.state = 1231; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1336; + this.state = 1234; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4516,24 +4332,27 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1337; + this.state = 1235; this.match(HiveSqlParser.KW_ON); - this.state = 1338; + this.state = 1236; this.tableName(); - this.state = 1342; + this.state = 1240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1339; + this.state = 1237; this.from_in(); - this.state = 1340; + this.state = 1238; this.dbSchemaName(); } break; } } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -4552,30 +4371,30 @@ export class HiveSqlParser extends SQLParserBase { } public showTablesFilterExpr(): ShowTablesFilterExprContext { let localContext = new ShowTablesFilterExprContext(this.context, this.state); - this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); + this.enterRule(localContext, 68, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1354; + this.state = 1252; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1346; + this.state = 1244; this.match(HiveSqlParser.KW_WHERE); - this.state = 1347; + this.state = 1245; this.id_(); - this.state = 1348; + this.state = 1246; this.match(HiveSqlParser.EQUAL); - this.state = 1349; + this.state = 1247; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1351; + this.state = 1249; this.match(HiveSqlParser.KW_LIKE); - this.state = 1352; + this.state = 1250; this.showStmtIdentifier(); } break; @@ -4822,7 +4641,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1353; + this.state = 1251; this.showStmtIdentifier(); } break; @@ -4846,18 +4665,45 @@ export class HiveSqlParser extends SQLParserBase { } public lockStatement(): LockStatementContext { let localContext = new LockStatementContext(this.context, this.state); - this.enterRule(localContext, 76, HiveSqlParser.RULE_lockStatement); + this.enterRule(localContext, 70, HiveSqlParser.RULE_lockStatement); + let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1356; - this.match(HiveSqlParser.KW_LOCK); - this.state = 1357; - this.match(HiveSqlParser.KW_TABLE); - this.state = 1358; - this.tableOrPartition(); - this.state = 1359; - this.lockMode(); + this.state = 1262; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_LOCK: + this.enterOuterAlt(localContext, 1); + { + this.state = 1254; + this.match(HiveSqlParser.KW_LOCK); + this.state = 1255; + this.match(HiveSqlParser.KW_TABLE); + this.state = 1256; + this.tableOrPartition(); + this.state = 1257; + _la = this.tokenStream.LA(1); + if(!(_la === 114 || _la === 307)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case HiveSqlParser.KW_UNLOCK: + this.enterOuterAlt(localContext, 2); + { + this.state = 1259; + this.match(HiveSqlParser.KW_UNLOCK); + this.state = 1260; + this.match(HiveSqlParser.KW_TABLE); + this.state = 1261; + this.tableOrPartition(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -4876,18 +4722,45 @@ export class HiveSqlParser extends SQLParserBase { } public lockDatabase(): LockDatabaseContext { let localContext = new LockDatabaseContext(this.context, this.state); - this.enterRule(localContext, 78, HiveSqlParser.RULE_lockDatabase); + this.enterRule(localContext, 72, HiveSqlParser.RULE_lockDatabase); + let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1361; - this.match(HiveSqlParser.KW_LOCK); - this.state = 1362; - this.db_schema(); - this.state = 1363; - localContext._dbName = this.dbSchemaName(); - this.state = 1364; - this.lockMode(); + this.state = 1273; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_LOCK: + this.enterOuterAlt(localContext, 1); + { + this.state = 1264; + this.match(HiveSqlParser.KW_LOCK); + this.state = 1265; + this.db_schema(); + this.state = 1266; + localContext._dbName = this.dbSchemaName(); + this.state = 1267; + _la = this.tokenStream.LA(1); + if(!(_la === 114 || _la === 307)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; + case HiveSqlParser.KW_UNLOCK: + this.enterOuterAlt(localContext, 2); + { + this.state = 1269; + this.match(HiveSqlParser.KW_UNLOCK); + this.state = 1270; + this.db_schema(); + this.state = 1271; + localContext._dbName = this.dbSchemaName(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -4904,133 +4777,25 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public lockMode(): LockModeContext { - let localContext = new LockModeContext(this.context, this.state); - this.enterRule(localContext, 80, HiveSqlParser.RULE_lockMode); + public createRoleStatement(): CreateRoleStatementContext { + let localContext = new CreateRoleStatementContext(this.context, this.state); + this.enterRule(localContext, 74, HiveSqlParser.RULE_createRoleStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1366; + this.state = 1275; _la = this.tokenStream.LA(1); - if(!(_la === 114 || _la === 307)) { + if(!(_la === 58 || _la === 101)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public unlockStatement(): UnlockStatementContext { - let localContext = new UnlockStatementContext(this.context, this.state); - this.enterRule(localContext, 82, HiveSqlParser.RULE_unlockStatement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1368; - this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1369; - this.match(HiveSqlParser.KW_TABLE); - this.state = 1370; - this.tableOrPartition(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public unlockDatabase(): UnlockDatabaseContext { - let localContext = new UnlockDatabaseContext(this.context, this.state); - this.enterRule(localContext, 84, HiveSqlParser.RULE_unlockDatabase); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1372; - this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1373; - this.db_schema(); - this.state = 1374; - localContext._dbName = this.dbSchemaName(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public createRoleStatement(): CreateRoleStatementContext { - let localContext = new CreateRoleStatementContext(this.context, this.state); - this.enterRule(localContext, 86, HiveSqlParser.RULE_createRoleStatement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1376; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1377; - this.match(HiveSqlParser.KW_ROLE); - this.state = 1378; - localContext._roleName = this.id_(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public dropRoleStatement(): DropRoleStatementContext { - let localContext = new DropRoleStatementContext(this.context, this.state); - this.enterRule(localContext, 88, HiveSqlParser.RULE_dropRoleStatement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1380; - this.match(HiveSqlParser.KW_DROP); - this.state = 1381; + this.state = 1276; this.match(HiveSqlParser.KW_ROLE); - this.state = 1382; + this.state = 1277; localContext._roleName = this.id_(); } } @@ -5050,36 +4815,40 @@ export class HiveSqlParser extends SQLParserBase { } public grantPrivileges(): GrantPrivilegesContext { let localContext = new GrantPrivilegesContext(this.context, this.state); - this.enterRule(localContext, 90, HiveSqlParser.RULE_grantPrivileges); + this.enterRule(localContext, 76, HiveSqlParser.RULE_grantPrivileges); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1279; this.match(HiveSqlParser.KW_GRANT); - this.state = 1385; + this.state = 1280; localContext._privList = this.privilegeList(); - this.state = 1387; + this.state = 1282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1386; + this.state = 1281; this.privilegeObject(); } } - this.state = 1389; + this.state = 1284; this.match(HiveSqlParser.KW_TO); - this.state = 1390; + this.state = 1285; this.principalSpecification(); - this.state = 1392; + this.state = 1289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1391; - this.withGrantOption(); + this.state = 1286; + this.match(HiveSqlParser.KW_WITH); + this.state = 1287; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1288; + this.match(HiveSqlParser.KW_OPTION); } break; } @@ -5101,38 +4870,42 @@ export class HiveSqlParser extends SQLParserBase { } public revokePrivileges(): RevokePrivilegesContext { let localContext = new RevokePrivilegesContext(this.context, this.state); - this.enterRule(localContext, 92, HiveSqlParser.RULE_revokePrivileges); + this.enterRule(localContext, 78, HiveSqlParser.RULE_revokePrivileges); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1394; + this.state = 1291; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1396; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1395; - this.grantOptionFor(); + this.state = 1292; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1293; + this.match(HiveSqlParser.KW_OPTION); + this.state = 1294; + this.match(HiveSqlParser.KW_FOR); } } - this.state = 1398; + this.state = 1297; this.privilegeList(); - this.state = 1400; + this.state = 1299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1399; + this.state = 1298; this.privilegeObject(); } } - this.state = 1402; + this.state = 1301; this.match(HiveSqlParser.KW_FROM); - this.state = 1403; + this.state = 1302; this.principalSpecification(); } } @@ -5152,52 +4925,56 @@ export class HiveSqlParser extends SQLParserBase { } public grantRole(): GrantRoleContext { let localContext = new GrantRoleContext(this.context, this.state); - this.enterRule(localContext, 94, HiveSqlParser.RULE_grantRole); + this.enterRule(localContext, 80, HiveSqlParser.RULE_grantRole); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1405; + this.state = 1304; this.match(HiveSqlParser.KW_GRANT); - this.state = 1407; + this.state = 1306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { case 1: { - this.state = 1406; + this.state = 1305; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1409; + this.state = 1308; this.id_(); - this.state = 1414; + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1410; + this.state = 1309; this.match(HiveSqlParser.COMMA); - this.state = 1411; + this.state = 1310; this.id_(); } } - this.state = 1416; + this.state = 1315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1417; + this.state = 1316; this.match(HiveSqlParser.KW_TO); - this.state = 1418; + this.state = 1317; this.principalSpecification(); - this.state = 1420; + this.state = 1321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1419; - this.withAdminOption(); + this.state = 1318; + this.match(HiveSqlParser.KW_WITH); + this.state = 1319; + this.match(HiveSqlParser.KW_ADMIN); + this.state = 1320; + this.match(HiveSqlParser.KW_OPTION); } break; } @@ -5219,54 +4996,58 @@ export class HiveSqlParser extends SQLParserBase { } public revokeRole(): RevokeRoleContext { let localContext = new RevokeRoleContext(this.context, this.state); - this.enterRule(localContext, 96, HiveSqlParser.RULE_revokeRole); + this.enterRule(localContext, 82, HiveSqlParser.RULE_revokeRole); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1422; + this.state = 1323; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1424; + this.state = 1327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1423; - this.adminOptionFor(); + this.state = 1324; + this.match(HiveSqlParser.KW_ADMIN); + this.state = 1325; + this.match(HiveSqlParser.KW_OPTION); + this.state = 1326; + this.match(HiveSqlParser.KW_FOR); } break; } - this.state = 1427; + this.state = 1330; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1426; + this.state = 1329; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1429; + this.state = 1332; this.id_(); - this.state = 1434; + this.state = 1337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1430; + this.state = 1333; this.match(HiveSqlParser.COMMA); - this.state = 1431; + this.state = 1334; this.id_(); } } - this.state = 1436; + this.state = 1339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1437; + this.state = 1340; this.match(HiveSqlParser.KW_FROM); - this.state = 1438; + this.state = 1341; this.principalSpecification(); } } @@ -5286,17 +5067,17 @@ export class HiveSqlParser extends SQLParserBase { } public showRoleGrants(): ShowRoleGrantsContext { let localContext = new ShowRoleGrantsContext(this.context, this.state); - this.enterRule(localContext, 98, HiveSqlParser.RULE_showRoleGrants); + this.enterRule(localContext, 84, HiveSqlParser.RULE_showRoleGrants); try { this.enterOuterAlt(localContext, 1); { - this.state = 1440; + this.state = 1343; this.match(HiveSqlParser.KW_SHOW); - this.state = 1441; + this.state = 1344; this.match(HiveSqlParser.KW_ROLE); - this.state = 1442; + this.state = 1345; this.match(HiveSqlParser.KW_GRANT); - this.state = 1443; + this.state = 1346; this.principalName(); } } @@ -5316,13 +5097,13 @@ export class HiveSqlParser extends SQLParserBase { } public showRoles(): ShowRolesContext { let localContext = new ShowRolesContext(this.context, this.state); - this.enterRule(localContext, 100, HiveSqlParser.RULE_showRoles); + this.enterRule(localContext, 86, HiveSqlParser.RULE_showRoles); try { this.enterOuterAlt(localContext, 1); { - this.state = 1445; + this.state = 1348; this.match(HiveSqlParser.KW_SHOW); - this.state = 1446; + this.state = 1349; this.match(HiveSqlParser.KW_ROLES); } } @@ -5342,15 +5123,15 @@ export class HiveSqlParser extends SQLParserBase { } public showCurrentRole(): ShowCurrentRoleContext { let localContext = new ShowCurrentRoleContext(this.context, this.state); - this.enterRule(localContext, 102, HiveSqlParser.RULE_showCurrentRole); + this.enterRule(localContext, 88, HiveSqlParser.RULE_showCurrentRole); try { this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1351; this.match(HiveSqlParser.KW_SHOW); - this.state = 1449; + this.state = 1352; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1450; + this.state = 1353; this.match(HiveSqlParser.KW_ROLES); } } @@ -5370,26 +5151,26 @@ export class HiveSqlParser extends SQLParserBase { } public setRole(): SetRoleContext { let localContext = new SetRoleContext(this.context, this.state); - this.enterRule(localContext, 104, HiveSqlParser.RULE_setRole); + this.enterRule(localContext, 90, HiveSqlParser.RULE_setRole); try { this.enterOuterAlt(localContext, 1); { - this.state = 1452; + this.state = 1355; this.match(HiveSqlParser.KW_SET); - this.state = 1453; + this.state = 1356; this.match(HiveSqlParser.KW_ROLE); - this.state = 1457; + this.state = 1360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1454; + this.state = 1357; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1455; + this.state = 1358; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5634,7 +5415,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1456; + this.state = 1359; this.id_(); } break; @@ -5659,33 +5440,33 @@ export class HiveSqlParser extends SQLParserBase { } public showGrants(): ShowGrantsContext { let localContext = new ShowGrantsContext(this.context, this.state); - this.enterRule(localContext, 106, HiveSqlParser.RULE_showGrants); + this.enterRule(localContext, 92, HiveSqlParser.RULE_showGrants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1362; this.match(HiveSqlParser.KW_SHOW); - this.state = 1460; + this.state = 1363; this.match(HiveSqlParser.KW_GRANT); - this.state = 1462; + this.state = 1365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1461; + this.state = 1364; this.principalName(); } } - this.state = 1466; + this.state = 1369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1464; + this.state = 1367; this.match(HiveSqlParser.KW_ON); - this.state = 1465; + this.state = 1368; this.privilegeIncludeColObject(); } } @@ -5708,15 +5489,15 @@ export class HiveSqlParser extends SQLParserBase { } public showRolePrincipals(): ShowRolePrincipalsContext { let localContext = new ShowRolePrincipalsContext(this.context, this.state); - this.enterRule(localContext, 108, HiveSqlParser.RULE_showRolePrincipals); + this.enterRule(localContext, 94, HiveSqlParser.RULE_showRolePrincipals); try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1371; this.match(HiveSqlParser.KW_SHOW); - this.state = 1469; + this.state = 1372; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1470; + this.state = 1373; localContext._roleName = this.id_(); } } @@ -5736,15 +5517,15 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeIncludeColObject(): PrivilegeIncludeColObjectContext { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); - this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); + this.enterRule(localContext, 96, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1474; + this.state = 1377; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1375; this.match(HiveSqlParser.KW_ALL); } break; @@ -5992,7 +5773,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1473; + this.state = 1376; this.privObjectCols(); } break; @@ -6016,13 +5797,13 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeObject(): PrivilegeObjectContext { let localContext = new PrivilegeObjectContext(this.context, this.state); - this.enterRule(localContext, 112, HiveSqlParser.RULE_privilegeObject); + this.enterRule(localContext, 98, HiveSqlParser.RULE_privilegeObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 1476; + this.state = 1379; this.match(HiveSqlParser.KW_ON); - this.state = 1477; + this.state = 1380; this.privObject(); } } @@ -6042,53 +5823,53 @@ export class HiveSqlParser extends SQLParserBase { } public privObject(): PrivObjectContext { let localContext = new PrivObjectContext(this.context, this.state); - this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); + this.enterRule(localContext, 100, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1490; + this.state = 1393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1479; + this.state = 1382; this.db_schema(); - this.state = 1480; + this.state = 1383; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1483; + this.state = 1386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1482; + this.state = 1385; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1485; + this.state = 1388; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1486; + this.state = 1389; this.match(HiveSqlParser.KW_URI); - this.state = 1487; + this.state = 1390; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1488; + this.state = 1391; this.match(HiveSqlParser.KW_SERVER); - this.state = 1489; + this.state = 1392; this.id_(); } break; @@ -6110,56 +5891,56 @@ export class HiveSqlParser extends SQLParserBase { } public privObjectCols(): PrivObjectColsContext { let localContext = new PrivObjectColsContext(this.context, this.state); - this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); + this.enterRule(localContext, 102, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1512; + this.state = 1415; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1492; + this.state = 1395; this.db_schema(); - this.state = 1493; + this.state = 1396; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1496; + this.state = 1399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1495; + this.state = 1398; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1498; + this.state = 1401; this.tableName(); - this.state = 1503; + this.state = 1406; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { case 1: { - this.state = 1499; + this.state = 1402; this.match(HiveSqlParser.LPAREN); - this.state = 1500; + this.state = 1403; localContext._cols = this.columnNameList(); - this.state = 1501; + this.state = 1404; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1506; + this.state = 1409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1505; + this.state = 1408; this.partitionSpec(); } } @@ -6169,18 +5950,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1508; + this.state = 1411; this.match(HiveSqlParser.KW_URI); - this.state = 1509; + this.state = 1412; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1510; + this.state = 1413; this.match(HiveSqlParser.KW_SERVER); - this.state = 1511; + this.state = 1414; this.id_(); } break; @@ -6202,26 +5983,26 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeList(): PrivilegeListContext { let localContext = new PrivilegeListContext(this.context, this.state); - this.enterRule(localContext, 118, HiveSqlParser.RULE_privilegeList); + this.enterRule(localContext, 104, HiveSqlParser.RULE_privilegeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1514; + this.state = 1417; this.privilegeDef(); - this.state = 1519; + this.state = 1422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1515; + this.state = 1418; this.match(HiveSqlParser.COMMA); - this.state = 1516; + this.state = 1419; this.privilegeDef(); } } - this.state = 1521; + this.state = 1424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6243,23 +6024,23 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeDef(): PrivilegeDefContext { let localContext = new PrivilegeDefContext(this.context, this.state); - this.enterRule(localContext, 120, HiveSqlParser.RULE_privilegeDef); + this.enterRule(localContext, 106, HiveSqlParser.RULE_privilegeDef); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1522; + this.state = 1425; this.privilegeType(); - this.state = 1527; + this.state = 1430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1523; + this.state = 1426; this.match(HiveSqlParser.LPAREN); - this.state = 1524; + this.state = 1427; localContext._cols = this.columnNameList(); - this.state = 1525; + this.state = 1428; this.match(HiveSqlParser.RPAREN); } } @@ -6282,12 +6063,12 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeType(): PrivilegeTypeContext { let localContext = new PrivilegeTypeContext(this.context, this.state); - this.enterRule(localContext, 122, HiveSqlParser.RULE_privilegeType); + this.enterRule(localContext, 108, HiveSqlParser.RULE_privilegeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1432; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6314,26 +6095,26 @@ export class HiveSqlParser extends SQLParserBase { } public principalSpecification(): PrincipalSpecificationContext { let localContext = new PrincipalSpecificationContext(this.context, this.state); - this.enterRule(localContext, 124, HiveSqlParser.RULE_principalSpecification); + this.enterRule(localContext, 110, HiveSqlParser.RULE_principalSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1531; + this.state = 1434; this.principalName(); - this.state = 1536; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1532; + this.state = 1435; this.match(HiveSqlParser.COMMA); - this.state = 1533; + this.state = 1436; this.principalName(); } } - this.state = 1538; + this.state = 1441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6355,35 +6136,35 @@ export class HiveSqlParser extends SQLParserBase { } public principalName(): PrincipalNameContext { let localContext = new PrincipalNameContext(this.context, this.state); - this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); + this.enterRule(localContext, 112, HiveSqlParser.RULE_principalName); try { - this.state = 1545; + this.state = 1448; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1539; + this.state = 1442; this.match(HiveSqlParser.KW_USER); - this.state = 1540; + this.state = 1443; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1541; + this.state = 1444; this.match(HiveSqlParser.KW_GROUP); - this.state = 1542; + this.state = 1445; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1543; + this.state = 1446; this.match(HiveSqlParser.KW_ROLE); - this.state = 1544; + this.state = 1447; this.id_(); } break; @@ -6407,33 +6188,33 @@ export class HiveSqlParser extends SQLParserBase { } public principalAlterName(): PrincipalAlterNameContext { let localContext = new PrincipalAlterNameContext(this.context, this.state); - this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); + this.enterRule(localContext, 114, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1552; + this.state = 1455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1547; + this.state = 1450; this.match(HiveSqlParser.KW_USER); - this.state = 1548; + this.state = 1451; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1549; + this.state = 1452; this.match(HiveSqlParser.KW_ROLE); - this.state = 1550; + this.state = 1453; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1551; + this.state = 1454; this.id_(); } break; @@ -6453,148 +6234,36 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public withGrantOption(): WithGrantOptionContext { - let localContext = new WithGrantOptionContext(this.context, this.state); - this.enterRule(localContext, 130, HiveSqlParser.RULE_withGrantOption); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1554; - this.match(HiveSqlParser.KW_WITH); - this.state = 1555; - this.match(HiveSqlParser.KW_GRANT); - this.state = 1556; - this.match(HiveSqlParser.KW_OPTION); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public grantOptionFor(): GrantOptionForContext { - let localContext = new GrantOptionForContext(this.context, this.state); - this.enterRule(localContext, 132, HiveSqlParser.RULE_grantOptionFor); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1558; - this.match(HiveSqlParser.KW_GRANT); - this.state = 1559; - this.match(HiveSqlParser.KW_OPTION); - this.state = 1560; - this.match(HiveSqlParser.KW_FOR); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public adminOptionFor(): AdminOptionForContext { - let localContext = new AdminOptionForContext(this.context, this.state); - this.enterRule(localContext, 134, HiveSqlParser.RULE_adminOptionFor); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1562; - this.match(HiveSqlParser.KW_ADMIN); - this.state = 1563; - this.match(HiveSqlParser.KW_OPTION); - this.state = 1564; - this.match(HiveSqlParser.KW_FOR); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public withAdminOption(): WithAdminOptionContext { - let localContext = new WithAdminOptionContext(this.context, this.state); - this.enterRule(localContext, 136, HiveSqlParser.RULE_withAdminOption); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1566; - this.match(HiveSqlParser.KW_WITH); - this.state = 1567; - this.match(HiveSqlParser.KW_ADMIN); - this.state = 1568; - this.match(HiveSqlParser.KW_OPTION); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public metastoreCheck(): MetastoreCheckContext { let localContext = new MetastoreCheckContext(this.context, this.state); - this.enterRule(localContext, 138, HiveSqlParser.RULE_metastoreCheck); + this.enterRule(localContext, 116, HiveSqlParser.RULE_metastoreCheck); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1457; this.match(HiveSqlParser.KW_MSCK); - this.state = 1572; + this.state = 1459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1571; + this.state = 1458; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1574; + this.state = 1461; this.match(HiveSqlParser.KW_TABLE); - this.state = 1575; + this.state = 1462; this.tableName(); - this.state = 1581; + this.state = 1468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1576; + this.state = 1463; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6604,14 +6273,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1577; + this.state = 1464; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1579; + this.state = 1466; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1578; + this.state = 1465; this.partitionSelectorSpec(); } break; @@ -6636,81 +6305,14 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public resourceList(): ResourceListContext { - let localContext = new ResourceListContext(this.context, this.state); - this.enterRule(localContext, 140, HiveSqlParser.RULE_resourceList); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1583; - this.resource(); - this.state = 1588; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 397) { - { - { - this.state = 1584; - this.match(HiveSqlParser.COMMA); - this.state = 1585; - this.resource(); - } - } - this.state = 1590; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public resource(): ResourceContext { - let localContext = new ResourceContext(this.context, this.state); - this.enterRule(localContext, 142, HiveSqlParser.RULE_resource); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1591; - localContext._resType = this.resourceType(); - this.state = 1592; - localContext._resPath = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public resourceType(): ResourceTypeContext { let localContext = new ResourceTypeContext(this.context, this.state); - this.enterRule(localContext, 144, HiveSqlParser.RULE_resourceType); + this.enterRule(localContext, 118, HiveSqlParser.RULE_resourceType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1470; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6737,40 +6339,60 @@ export class HiveSqlParser extends SQLParserBase { } public createFunctionStatement(): CreateFunctionStatementContext { let localContext = new CreateFunctionStatementContext(this.context, this.state); - this.enterRule(localContext, 146, HiveSqlParser.RULE_createFunctionStatement); + this.enterRule(localContext, 120, HiveSqlParser.RULE_createFunctionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1472; this.match(HiveSqlParser.KW_CREATE); - this.state = 1598; + this.state = 1474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1597; + this.state = 1473; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1600; + this.state = 1476; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1601; + this.state = 1477; this.functionNameCreate(); - this.state = 1602; + this.state = 1478; this.match(HiveSqlParser.KW_AS); - this.state = 1603; + this.state = 1479; this.match(HiveSqlParser.StringLiteral); - this.state = 1606; + this.state = 1492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 1604; + this.state = 1480; this.match(HiveSqlParser.KW_USING); - this.state = 1605; - localContext._rList = this.resourceList(); + this.state = 1481; + localContext._resType = this.resourceType(); + this.state = 1482; + localContext._resPath = this.match(HiveSqlParser.StringLiteral); + this.state = 1489; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 397) { + { + { + this.state = 1483; + this.match(HiveSqlParser.COMMA); + this.state = 1484; + localContext._resType = this.resourceType(); + this.state = 1485; + localContext._resPath = this.match(HiveSqlParser.StringLiteral); + } + } + this.state = 1491; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } @@ -6792,36 +6414,36 @@ export class HiveSqlParser extends SQLParserBase { } public dropFunctionStatement(): DropFunctionStatementContext { let localContext = new DropFunctionStatementContext(this.context, this.state); - this.enterRule(localContext, 148, HiveSqlParser.RULE_dropFunctionStatement); + this.enterRule(localContext, 122, HiveSqlParser.RULE_dropFunctionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1608; + this.state = 1494; this.match(HiveSqlParser.KW_DROP); - this.state = 1610; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1609; + this.state = 1495; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1612; + this.state = 1498; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1614; + this.state = 1500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1613; + this.state = 1499; this.ifExists(); } } - this.state = 1616; + this.state = 1502; this.functionNameForDDL(); } } @@ -6841,14 +6463,14 @@ export class HiveSqlParser extends SQLParserBase { } public reloadFunctionsStatement(): ReloadFunctionsStatementContext { let localContext = new ReloadFunctionsStatementContext(this.context, this.state); - this.enterRule(localContext, 150, HiveSqlParser.RULE_reloadFunctionsStatement); + this.enterRule(localContext, 124, HiveSqlParser.RULE_reloadFunctionsStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1618; + this.state = 1504; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1619; + this.state = 1505; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -6875,34 +6497,34 @@ export class HiveSqlParser extends SQLParserBase { } public createMacroStatement(): CreateMacroStatementContext { let localContext = new CreateMacroStatementContext(this.context, this.state); - this.enterRule(localContext, 152, HiveSqlParser.RULE_createMacroStatement); + this.enterRule(localContext, 126, HiveSqlParser.RULE_createMacroStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1621; + this.state = 1507; this.match(HiveSqlParser.KW_CREATE); - this.state = 1622; + this.state = 1508; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1623; + this.state = 1509; this.match(HiveSqlParser.KW_MACRO); - this.state = 1624; + this.state = 1510; this.match(HiveSqlParser.Identifier); - this.state = 1625; + this.state = 1511; this.match(HiveSqlParser.LPAREN); - this.state = 1627; + this.state = 1513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1626; + this.state = 1512; this.columnNameTypeList(); } } - this.state = 1629; + this.state = 1515; this.match(HiveSqlParser.RPAREN); - this.state = 1630; + this.state = 1516; this.expression(); } } @@ -6922,28 +6544,28 @@ export class HiveSqlParser extends SQLParserBase { } public dropMacroStatement(): DropMacroStatementContext { let localContext = new DropMacroStatementContext(this.context, this.state); - this.enterRule(localContext, 154, HiveSqlParser.RULE_dropMacroStatement); + this.enterRule(localContext, 128, HiveSqlParser.RULE_dropMacroStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1632; + this.state = 1518; this.match(HiveSqlParser.KW_DROP); - this.state = 1633; + this.state = 1519; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1634; + this.state = 1520; this.match(HiveSqlParser.KW_MACRO); - this.state = 1636; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1635; + this.state = 1521; this.ifExists(); } } - this.state = 1638; + this.state = 1524; this.match(HiveSqlParser.Identifier); } } @@ -6963,129 +6585,129 @@ export class HiveSqlParser extends SQLParserBase { } public createIndexStatement(): CreateIndexStatementContext { let localContext = new CreateIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 156, HiveSqlParser.RULE_createIndexStatement); + this.enterRule(localContext, 130, HiveSqlParser.RULE_createIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1640; + this.state = 1526; this.match(HiveSqlParser.KW_CREATE); - this.state = 1641; + this.state = 1527; this.match(HiveSqlParser.KW_INDEX); - this.state = 1642; + this.state = 1528; this.id_(); - this.state = 1643; + this.state = 1529; this.match(HiveSqlParser.KW_ON); - this.state = 1644; + this.state = 1530; this.match(HiveSqlParser.KW_TABLE); - this.state = 1645; + this.state = 1531; this.tableName(); - this.state = 1646; + this.state = 1532; this.columnParenthesesList(); - this.state = 1647; + this.state = 1533; this.match(HiveSqlParser.KW_AS); - this.state = 1648; + this.state = 1534; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1652; + this.state = 1538; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: { - this.state = 1649; + this.state = 1535; this.match(HiveSqlParser.KW_WITH); - this.state = 1650; + this.state = 1536; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1651; + this.state = 1537; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1656; + this.state = 1542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1654; + this.state = 1540; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1655; + this.state = 1541; this.tableProperties(); } } - this.state = 1661; + this.state = 1547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1658; + this.state = 1544; this.match(HiveSqlParser.KW_IN); - this.state = 1659; + this.state = 1545; this.match(HiveSqlParser.KW_TABLE); - this.state = 1660; + this.state = 1546; this.tableName(); } } - this.state = 1666; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1663; + this.state = 1549; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1664; + this.state = 1550; this.match(HiveSqlParser.KW_BY); - this.state = 1665; + this.state = 1551; this.columnParenthesesList(); } } - this.state = 1672; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1669; + this.state = 1555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1668; - this.tableRowFormat(); + this.state = 1554; + this.rowFormat(); } } - this.state = 1671; + this.state = 1557; this.tableFileFormat(); } } - this.state = 1675; + this.state = 1561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1674; + this.state = 1560; this.locationPath(); } } - this.state = 1678; + this.state = 1564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1677; + this.state = 1563; this.tablePropertiesPrefixed(); } } - this.state = 1681; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1680; + this.state = 1566; this.tableComment(); } } @@ -7108,30 +6730,30 @@ export class HiveSqlParser extends SQLParserBase { } public dropIndexStatement(): DropIndexStatementContext { let localContext = new DropIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 158, HiveSqlParser.RULE_dropIndexStatement); + this.enterRule(localContext, 132, HiveSqlParser.RULE_dropIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1683; + this.state = 1569; this.match(HiveSqlParser.KW_DROP); - this.state = 1684; + this.state = 1570; this.match(HiveSqlParser.KW_INDEX); - this.state = 1686; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1685; + this.state = 1571; this.ifExists(); } } - this.state = 1688; + this.state = 1574; this.id_(); - this.state = 1689; + this.state = 1575; this.match(HiveSqlParser.KW_ON); - this.state = 1690; + this.state = 1576; this.tableName(); } } @@ -7151,86 +6773,86 @@ export class HiveSqlParser extends SQLParserBase { } public createViewStatement(): CreateViewStatementContext { let localContext = new CreateViewStatementContext(this.context, this.state); - this.enterRule(localContext, 160, HiveSqlParser.RULE_createViewStatement); + this.enterRule(localContext, 134, HiveSqlParser.RULE_createViewStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1692; + this.state = 1578; this.match(HiveSqlParser.KW_CREATE); - this.state = 1695; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1693; + this.state = 1579; this.match(HiveSqlParser.KW_OR); - this.state = 1694; + this.state = 1580; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1697; + this.state = 1583; this.match(HiveSqlParser.KW_VIEW); - this.state = 1699; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1698; + this.state = 1584; this.ifNotExists(); } } - this.state = 1701; + this.state = 1587; localContext._name = this.viewNameCreate(); - this.state = 1706; + this.state = 1592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1702; + this.state = 1588; this.match(HiveSqlParser.LPAREN); - this.state = 1703; + this.state = 1589; this.columnNameCommentList(); - this.state = 1704; + this.state = 1590; this.match(HiveSqlParser.RPAREN); } } - this.state = 1709; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1708; + this.state = 1594; this.tableComment(); } } - this.state = 1712; + this.state = 1598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1711; + this.state = 1597; this.viewPartition(); } } - this.state = 1715; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1714; + this.state = 1600; this.tablePropertiesPrefixed(); } } - this.state = 1717; + this.state = 1603; this.match(HiveSqlParser.KW_AS); - this.state = 1718; + this.state = 1604; this.selectStatementWithCTE(); } } @@ -7250,39 +6872,39 @@ export class HiveSqlParser extends SQLParserBase { } public viewPartition(): ViewPartitionContext { let localContext = new ViewPartitionContext(this.context, this.state); - this.enterRule(localContext, 162, HiveSqlParser.RULE_viewPartition); + this.enterRule(localContext, 136, HiveSqlParser.RULE_viewPartition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1720; + this.state = 1606; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1721; + this.state = 1607; this.match(HiveSqlParser.KW_ON); - this.state = 1727; + this.state = 1613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1722; + this.state = 1608; this.match(HiveSqlParser.LPAREN); - this.state = 1723; + this.state = 1609; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1724; + this.state = 1610; this.match(HiveSqlParser.KW_SPEC); - this.state = 1725; + this.state = 1611; this.match(HiveSqlParser.LPAREN); - this.state = 1726; + this.state = 1612; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1729; + this.state = 1615; this.match(HiveSqlParser.RPAREN); } } @@ -7302,22 +6924,22 @@ export class HiveSqlParser extends SQLParserBase { } public viewOrganization(): ViewOrganizationContext { let localContext = new ViewOrganizationContext(this.context, this.state); - this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); + this.enterRule(localContext, 138, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1733; + this.state = 1619; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1731; + this.state = 1617; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1732; + this.state = 1618; this.viewComplexSpec(); } break; @@ -7341,19 +6963,19 @@ export class HiveSqlParser extends SQLParserBase { } public viewClusterSpec(): ViewClusterSpecContext { let localContext = new ViewClusterSpecContext(this.context, this.state); - this.enterRule(localContext, 166, HiveSqlParser.RULE_viewClusterSpec); + this.enterRule(localContext, 140, HiveSqlParser.RULE_viewClusterSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1735; + this.state = 1621; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1736; + this.state = 1622; this.match(HiveSqlParser.KW_ON); - this.state = 1737; + this.state = 1623; this.match(HiveSqlParser.LPAREN); - this.state = 1738; + this.state = 1624; this.columnNameList(); - this.state = 1739; + this.state = 1625; this.match(HiveSqlParser.RPAREN); } } @@ -7373,13 +6995,13 @@ export class HiveSqlParser extends SQLParserBase { } public viewComplexSpec(): ViewComplexSpecContext { let localContext = new ViewComplexSpecContext(this.context, this.state); - this.enterRule(localContext, 168, HiveSqlParser.RULE_viewComplexSpec); + this.enterRule(localContext, 142, HiveSqlParser.RULE_viewComplexSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1741; + this.state = 1627; this.viewDistSpec(); - this.state = 1742; + this.state = 1628; this.viewSortSpec(); } } @@ -7399,19 +7021,19 @@ export class HiveSqlParser extends SQLParserBase { } public viewDistSpec(): ViewDistSpecContext { let localContext = new ViewDistSpecContext(this.context, this.state); - this.enterRule(localContext, 170, HiveSqlParser.RULE_viewDistSpec); + this.enterRule(localContext, 144, HiveSqlParser.RULE_viewDistSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1630; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1745; + this.state = 1631; this.match(HiveSqlParser.KW_ON); - this.state = 1746; + this.state = 1632; this.match(HiveSqlParser.LPAREN); - this.state = 1747; + this.state = 1633; localContext._colList = this.columnNameList(); - this.state = 1748; + this.state = 1634; this.match(HiveSqlParser.RPAREN); } } @@ -7431,19 +7053,19 @@ export class HiveSqlParser extends SQLParserBase { } public viewSortSpec(): ViewSortSpecContext { let localContext = new ViewSortSpecContext(this.context, this.state); - this.enterRule(localContext, 172, HiveSqlParser.RULE_viewSortSpec); + this.enterRule(localContext, 146, HiveSqlParser.RULE_viewSortSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1750; + this.state = 1636; this.match(HiveSqlParser.KW_SORTED); - this.state = 1751; + this.state = 1637; this.match(HiveSqlParser.KW_ON); - this.state = 1752; + this.state = 1638; this.match(HiveSqlParser.LPAREN); - this.state = 1753; + this.state = 1639; localContext._colList = this.columnNameList(); - this.state = 1754; + this.state = 1640; this.match(HiveSqlParser.RPAREN); } } @@ -7463,27 +7085,56 @@ export class HiveSqlParser extends SQLParserBase { } public dropViewStatement(): DropViewStatementContext { let localContext = new DropViewStatementContext(this.context, this.state); - this.enterRule(localContext, 174, HiveSqlParser.RULE_dropViewStatement); + this.enterRule(localContext, 148, HiveSqlParser.RULE_dropViewStatement); let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1756; - this.match(HiveSqlParser.KW_DROP); - this.state = 1757; - this.match(HiveSqlParser.KW_VIEW); - this.state = 1759; + this.state = 1655; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 151) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 1758; - this.ifExists(); + this.state = 1642; + this.match(HiveSqlParser.KW_DROP); + this.state = 1643; + this.match(HiveSqlParser.KW_VIEW); + this.state = 1645; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 151) { + { + this.state = 1644; + this.ifExists(); + } + } + + this.state = 1647; + this.viewName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1648; + this.match(HiveSqlParser.KW_DROP); + this.state = 1649; + this.match(HiveSqlParser.KW_MATERIALIZED); + this.state = 1650; + this.match(HiveSqlParser.KW_VIEW); + this.state = 1652; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 151) { + { + this.state = 1651; + this.ifExists(); + } } - } - this.state = 1761; - this.viewName(); + this.state = 1654; + this.viewName(); + } + break; } } catch (re) { @@ -7502,112 +7153,112 @@ export class HiveSqlParser extends SQLParserBase { } public createMaterializedViewStatement(): CreateMaterializedViewStatementContext { let localContext = new CreateMaterializedViewStatementContext(this.context, this.state); - this.enterRule(localContext, 176, HiveSqlParser.RULE_createMaterializedViewStatement); + this.enterRule(localContext, 150, HiveSqlParser.RULE_createMaterializedViewStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1763; + this.state = 1657; this.match(HiveSqlParser.KW_CREATE); - this.state = 1764; + this.state = 1658; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1765; + this.state = 1659; this.match(HiveSqlParser.KW_VIEW); - this.state = 1767; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1766; + this.state = 1660; this.ifNotExists(); } } - this.state = 1769; + this.state = 1663; localContext._name = this.viewNameCreate(); - this.state = 1771; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1770; + this.state = 1664; this.rewriteDisabled(); } } - this.state = 1774; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1773; + this.state = 1667; this.tableComment(); } } - this.state = 1777; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1776; + this.state = 1670; this.viewPartition(); } } - this.state = 1780; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1779; + this.state = 1673; this.viewOrganization(); } } - this.state = 1783; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1782; - this.tableRowFormat(); + this.state = 1676; + this.rowFormat(); } } - this.state = 1786; + this.state = 1680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1785; + this.state = 1679; this.tableFileFormat(); } } - this.state = 1789; + this.state = 1683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1788; + this.state = 1682; this.locationPath(); } } - this.state = 1792; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1791; + this.state = 1685; this.tablePropertiesPrefixed(); } } - this.state = 1794; + this.state = 1688; this.match(HiveSqlParser.KW_AS); - this.state = 1795; + this.state = 1689; this.selectStatementWithCTE(); } } @@ -7625,85 +7276,44 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public dropMaterializedViewStatement(): DropMaterializedViewStatementContext { - let localContext = new DropMaterializedViewStatementContext(this.context, this.state); - this.enterRule(localContext, 178, HiveSqlParser.RULE_dropMaterializedViewStatement); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1797; - this.match(HiveSqlParser.KW_DROP); - this.state = 1798; - this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1799; - this.match(HiveSqlParser.KW_VIEW); - this.state = 1801; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 151) { - { - this.state = 1800; - this.ifExists(); - } - } - - this.state = 1803; - this.viewName(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public createScheduledQueryStatement(): CreateScheduledQueryStatementContext { let localContext = new CreateScheduledQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 180, HiveSqlParser.RULE_createScheduledQueryStatement); + this.enterRule(localContext, 152, HiveSqlParser.RULE_createScheduledQueryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1805; + this.state = 1691; this.match(HiveSqlParser.KW_CREATE); - this.state = 1806; + this.state = 1692; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1807; + this.state = 1693; this.match(HiveSqlParser.KW_QUERY); - this.state = 1808; + this.state = 1694; localContext._name = this.id_(); - this.state = 1809; + this.state = 1695; this.scheduleSpec(); - this.state = 1811; + this.state = 1697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1810; + this.state = 1696; this.executedAsSpec(); } } - this.state = 1814; + this.state = 1700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1813; + this.state = 1699; this.enableSpecification(); } } - this.state = 1816; + this.state = 1702; this.definedAsSpec(); } } @@ -7723,17 +7333,17 @@ export class HiveSqlParser extends SQLParserBase { } public dropScheduledQueryStatement(): DropScheduledQueryStatementContext { let localContext = new DropScheduledQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 182, HiveSqlParser.RULE_dropScheduledQueryStatement); + this.enterRule(localContext, 154, HiveSqlParser.RULE_dropScheduledQueryStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1818; + this.state = 1704; this.match(HiveSqlParser.KW_DROP); - this.state = 1819; + this.state = 1705; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1820; + this.state = 1706; this.match(HiveSqlParser.KW_QUERY); - this.state = 1821; + this.state = 1707; localContext._name = this.id_(); } } @@ -7753,19 +7363,19 @@ export class HiveSqlParser extends SQLParserBase { } public alterScheduledQueryStatement(): AlterScheduledQueryStatementContext { let localContext = new AlterScheduledQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 184, HiveSqlParser.RULE_alterScheduledQueryStatement); + this.enterRule(localContext, 156, HiveSqlParser.RULE_alterScheduledQueryStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1823; + this.state = 1709; this.match(HiveSqlParser.KW_ALTER); - this.state = 1824; + this.state = 1710; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1825; + this.state = 1711; this.match(HiveSqlParser.KW_QUERY); - this.state = 1826; + this.state = 1712; localContext._name = this.id_(); - this.state = 1827; + this.state = 1713; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7785,23 +7395,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterScheduledQueryChange(): AlterScheduledQueryChangeContext { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); - this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); + this.enterRule(localContext, 158, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1834; + this.state = 1720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1829; + this.state = 1715; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1830; + this.state = 1716; this.executedAsSpec(); } break; @@ -7811,7 +7421,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1831; + this.state = 1717; this.enableSpecification(); } break; @@ -7819,14 +7429,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1832; + this.state = 1718; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1833; + this.state = 1719; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7850,64 +7460,64 @@ export class HiveSqlParser extends SQLParserBase { } public scheduleSpec(): ScheduleSpecContext { let localContext = new ScheduleSpecContext(this.context, this.state); - this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); + this.enterRule(localContext, 160, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1851; + this.state = 1737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1836; + this.state = 1722; this.match(HiveSqlParser.KW_CRON); - this.state = 1837; + this.state = 1723; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1838; + this.state = 1724; this.match(HiveSqlParser.KW_EVERY); - this.state = 1840; + this.state = 1726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1839; + this.state = 1725; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1842; + this.state = 1728; localContext._qualifier = this.intervalQualifiers(); - this.state = 1849; + this.state = 1735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1846; + this.state = 1732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1843; + this.state = 1729; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1844; + this.state = 1730; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1845; + this.state = 1731; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1848; + this.state = 1734; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7934,15 +7544,15 @@ export class HiveSqlParser extends SQLParserBase { } public executedAsSpec(): ExecutedAsSpecContext { let localContext = new ExecutedAsSpecContext(this.context, this.state); - this.enterRule(localContext, 190, HiveSqlParser.RULE_executedAsSpec); + this.enterRule(localContext, 162, HiveSqlParser.RULE_executedAsSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1739; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1854; + this.state = 1740; this.match(HiveSqlParser.KW_AS); - this.state = 1855; + this.state = 1741; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7962,24 +7572,24 @@ export class HiveSqlParser extends SQLParserBase { } public definedAsSpec(): DefinedAsSpecContext { let localContext = new DefinedAsSpecContext(this.context, this.state); - this.enterRule(localContext, 192, HiveSqlParser.RULE_definedAsSpec); + this.enterRule(localContext, 164, HiveSqlParser.RULE_definedAsSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1858; + this.state = 1744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1857; + this.state = 1743; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1860; + this.state = 1746; this.match(HiveSqlParser.KW_AS); - this.state = 1861; + this.state = 1747; this.statement(); } } @@ -7999,9 +7609,9 @@ export class HiveSqlParser extends SQLParserBase { } public showStmtIdentifier(): ShowStmtIdentifierContext { let localContext = new ShowStmtIdentifierContext(this.context, this.state); - this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); + this.enterRule(localContext, 166, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1865; + this.state = 1751; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8246,14 +7856,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1863; + this.state = 1749; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1864; + this.state = 1750; this.match(HiveSqlParser.StringLiteral); } break; @@ -8277,13 +7887,13 @@ export class HiveSqlParser extends SQLParserBase { } public tableComment(): TableCommentContext { let localContext = new TableCommentContext(this.context, this.state); - this.enterRule(localContext, 196, HiveSqlParser.RULE_tableComment); + this.enterRule(localContext, 168, HiveSqlParser.RULE_tableComment); try { this.enterOuterAlt(localContext, 1); { - this.state = 1867; + this.state = 1753; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1868; + this.state = 1754; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8303,13 +7913,13 @@ export class HiveSqlParser extends SQLParserBase { } public tableLifecycle(): TableLifecycleContext { let localContext = new TableLifecycleContext(this.context, this.state); - this.enterRule(localContext, 198, HiveSqlParser.RULE_tableLifecycle); + this.enterRule(localContext, 170, HiveSqlParser.RULE_tableLifecycle); try { this.enterOuterAlt(localContext, 1); { - this.state = 1870; + this.state = 1756; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1871; + this.state = 1757; this.match(HiveSqlParser.Number); } } @@ -8329,33 +7939,33 @@ export class HiveSqlParser extends SQLParserBase { } public createTablePartitionSpec(): CreateTablePartitionSpecContext { let localContext = new CreateTablePartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 200, HiveSqlParser.RULE_createTablePartitionSpec); + this.enterRule(localContext, 172, HiveSqlParser.RULE_createTablePartitionSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1873; + this.state = 1759; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1874; + this.state = 1760; this.match(HiveSqlParser.KW_BY); - this.state = 1883; + this.state = 1769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1875; + this.state = 1761; this.match(HiveSqlParser.LPAREN); - this.state = 1878; + this.state = 1764; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { - this.state = 1876; + this.state = 1762; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1877; + this.state = 1763; localContext._opt2 = this.columnNameList(); } break; @@ -8364,18 +7974,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1880; + this.state = 1766; this.match(HiveSqlParser.KW_SPEC); - this.state = 1881; + this.state = 1767; this.match(HiveSqlParser.LPAREN); - this.state = 1882; + this.state = 1768; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1885; + this.state = 1771; this.match(HiveSqlParser.RPAREN); } } @@ -8395,26 +8005,26 @@ export class HiveSqlParser extends SQLParserBase { } public createTablePartitionColumnTypeSpec(): CreateTablePartitionColumnTypeSpecContext { let localContext = new CreateTablePartitionColumnTypeSpecContext(this.context, this.state); - this.enterRule(localContext, 202, HiveSqlParser.RULE_createTablePartitionColumnTypeSpec); + this.enterRule(localContext, 174, HiveSqlParser.RULE_createTablePartitionColumnTypeSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1887; + this.state = 1773; this.columnNameTypeConstraint(); - this.state = 1892; + this.state = 1778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1888; + this.state = 1774; this.match(HiveSqlParser.COMMA); - this.state = 1889; + this.state = 1775; this.columnNameTypeConstraint(); } } - this.state = 1894; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8436,26 +8046,26 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTransformSpec(): PartitionTransformSpecContext { let localContext = new PartitionTransformSpecContext(this.context, this.state); - this.enterRule(localContext, 204, HiveSqlParser.RULE_partitionTransformSpec); + this.enterRule(localContext, 176, HiveSqlParser.RULE_partitionTransformSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1895; + this.state = 1781; this.partitionTransformType(); - this.state = 1900; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1896; + this.state = 1782; this.match(HiveSqlParser.COMMA); - this.state = 1897; + this.state = 1783; this.partitionTransformType(); } } - this.state = 1902; + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8477,68 +8087,43 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTransformType(): PartitionTransformTypeContext { let localContext = new PartitionTransformTypeContext(this.context, this.state); - this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); + this.enterRule(localContext, 178, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1921; + this.state = 1802; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1903; + this.state = 1789; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1908; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_YEAR: - case HiveSqlParser.KW_YEARS: - { - this.state = 1904; - this.year(); - } - break; - case HiveSqlParser.KW_MONTH: - case HiveSqlParser.KW_MONTHS: - { - this.state = 1905; - this.month(); - } - break; - case HiveSqlParser.KW_DAY: - case HiveSqlParser.KW_DAYS: - { - this.state = 1906; - this.day(); - } - break; - case HiveSqlParser.KW_HOUR: - case HiveSqlParser.KW_HOURS: - { - this.state = 1907; - this.hour(); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 1790; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74 || _la === 148 || _la === 149 || _la === 208 || _la === 209 || _la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); } - this.state = 1910; + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1791; this.match(HiveSqlParser.LPAREN); - this.state = 1911; + this.state = 1792; this.columnName(); - this.state = 1912; + this.state = 1793; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1914; + this.state = 1795; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8547,15 +8132,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1915; + this.state = 1796; this.match(HiveSqlParser.LPAREN); - this.state = 1916; + this.state = 1797; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1917; + this.state = 1798; this.match(HiveSqlParser.COMMA); - this.state = 1918; + this.state = 1799; this.columnName(); - this.state = 1919; + this.state = 1800; this.match(HiveSqlParser.RPAREN); } break; @@ -8577,44 +8162,44 @@ export class HiveSqlParser extends SQLParserBase { } public tableBuckets(): TableBucketsContext { let localContext = new TableBucketsContext(this.context, this.state); - this.enterRule(localContext, 208, HiveSqlParser.RULE_tableBuckets); + this.enterRule(localContext, 180, HiveSqlParser.RULE_tableBuckets); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1923; + this.state = 1804; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1924; + this.state = 1805; this.match(HiveSqlParser.KW_BY); - this.state = 1925; + this.state = 1806; this.match(HiveSqlParser.LPAREN); - this.state = 1926; + this.state = 1807; localContext._bucketCols = this.columnNameList(); - this.state = 1927; + this.state = 1808; this.match(HiveSqlParser.RPAREN); - this.state = 1934; + this.state = 1815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1928; + this.state = 1809; this.match(HiveSqlParser.KW_SORTED); - this.state = 1929; + this.state = 1810; this.match(HiveSqlParser.KW_BY); - this.state = 1930; + this.state = 1811; this.match(HiveSqlParser.LPAREN); - this.state = 1931; + this.state = 1812; localContext._sortCols = this.columnNameOrderList(); - this.state = 1932; + this.state = 1813; this.match(HiveSqlParser.RPAREN); } } - this.state = 1936; + this.state = 1817; this.match(HiveSqlParser.KW_INTO); - this.state = 1937; + this.state = 1818; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1938; + this.state = 1819; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8634,34 +8219,34 @@ export class HiveSqlParser extends SQLParserBase { } public tableSkewed(): TableSkewedContext { let localContext = new TableSkewedContext(this.context, this.state); - this.enterRule(localContext, 210, HiveSqlParser.RULE_tableSkewed); + this.enterRule(localContext, 182, HiveSqlParser.RULE_tableSkewed); try { this.enterOuterAlt(localContext, 1); { - this.state = 1940; + this.state = 1821; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1941; + this.state = 1822; this.match(HiveSqlParser.KW_BY); - this.state = 1942; + this.state = 1823; this.match(HiveSqlParser.LPAREN); - this.state = 1943; + this.state = 1824; localContext._skewedCols = this.columnNameList(); - this.state = 1944; + this.state = 1825; this.match(HiveSqlParser.RPAREN); - this.state = 1945; + this.state = 1826; this.match(HiveSqlParser.KW_ON); - this.state = 1946; + this.state = 1827; this.match(HiveSqlParser.LPAREN); - this.state = 1947; + this.state = 1828; localContext._skewedValues = this.skewedValueElement(); - this.state = 1948; + this.state = 1829; this.match(HiveSqlParser.RPAREN); - this.state = 1950; + this.state = 1831; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1949; + this.state = 1830; this.storedAsDirs(); } break; @@ -8684,22 +8269,22 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); + this.enterRule(localContext, 184, HiveSqlParser.RULE_rowFormat); try { - this.state = 1954; + this.state = 1835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1952; + this.state = 1833; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1953; + this.state = 1834; this.rowFormatDelimited(); } break; @@ -8719,82 +8304,30 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public recordReader(): RecordReaderContext { - let localContext = new RecordReaderContext(this.context, this.state); - this.enterRule(localContext, 214, HiveSqlParser.RULE_recordReader); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1956; - this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1957; - this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public recordWriter(): RecordWriterContext { - let localContext = new RecordWriterContext(this.context, this.state); - this.enterRule(localContext, 216, HiveSqlParser.RULE_recordWriter); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1959; - this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1960; - this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public rowFormatSerde(): RowFormatSerdeContext { let localContext = new RowFormatSerdeContext(this.context, this.state); - this.enterRule(localContext, 218, HiveSqlParser.RULE_rowFormatSerde); + this.enterRule(localContext, 186, HiveSqlParser.RULE_rowFormatSerde); try { this.enterOuterAlt(localContext, 1); { - this.state = 1962; + this.state = 1837; this.match(HiveSqlParser.KW_ROW); - this.state = 1963; + this.state = 1838; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1964; + this.state = 1839; this.match(HiveSqlParser.KW_SERDE); - this.state = 1965; + this.state = 1840; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 1969; + this.state = 1844; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 1966; + this.state = 1841; this.match(HiveSqlParser.KW_WITH); - this.state = 1967; + this.state = 1842; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1968; + this.state = 1843; localContext._serderops = this.tableProperties(); } break; @@ -8817,63 +8350,63 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormatDelimited(): RowFormatDelimitedContext { let localContext = new RowFormatDelimitedContext(this.context, this.state); - this.enterRule(localContext, 220, HiveSqlParser.RULE_rowFormatDelimited); + this.enterRule(localContext, 188, HiveSqlParser.RULE_rowFormatDelimited); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1971; + this.state = 1846; this.match(HiveSqlParser.KW_ROW); - this.state = 1972; + this.state = 1847; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1973; + this.state = 1848; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1975; + this.state = 1850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1974; - this.tableRowFormatFieldIdentifier(); + this.state = 1849; + this.rowFormatFieldIdentifier(); } } - this.state = 1978; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1977; - this.tableRowFormatCollItemsIdentifier(); + this.state = 1852; + this.rowFormatCollItemsIdentifier(); } } - this.state = 1981; + this.state = 1856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1980; - this.tableRowFormatMapKeysIdentifier(); + this.state = 1855; + this.rowFormatMapKeysIdentifier(); } break; } - this.state = 1984; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1983; - this.tableRowFormatLinesIdentifier(); + this.state = 1858; + this.rowFormatLinesIdentifier(); } } - this.state = 1987; + this.state = 1862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1986; + this.state = 1861; this.tableRowNullFormat(); } } @@ -8894,52 +8427,15 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormat(): TableRowFormatContext { - let localContext = new TableRowFormatContext(this.context, this.state); - this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); - try { - this.state = 1991; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 1989; - this.rowFormatDelimited(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 1990; - this.rowFormatSerde(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tablePropertiesPrefixed(): TablePropertiesPrefixedContext { let localContext = new TablePropertiesPrefixedContext(this.context, this.state); - this.enterRule(localContext, 224, HiveSqlParser.RULE_tablePropertiesPrefixed); + this.enterRule(localContext, 190, HiveSqlParser.RULE_tablePropertiesPrefixed); try { this.enterOuterAlt(localContext, 1); { - this.state = 1993; + this.state = 1864; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1994; + this.state = 1865; this.tableProperties(); } } @@ -8959,15 +8455,15 @@ export class HiveSqlParser extends SQLParserBase { } public tableProperties(): TablePropertiesContext { let localContext = new TablePropertiesContext(this.context, this.state); - this.enterRule(localContext, 226, HiveSqlParser.RULE_tableProperties); + this.enterRule(localContext, 192, HiveSqlParser.RULE_tableProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 1996; + this.state = 1867; this.match(HiveSqlParser.LPAREN); - this.state = 1997; + this.state = 1868; this.tablePropertiesList(); - this.state = 1998; + this.state = 1869; this.match(HiveSqlParser.RPAREN); } } @@ -8987,37 +8483,37 @@ export class HiveSqlParser extends SQLParserBase { } public tablePropertiesList(): TablePropertiesListContext { let localContext = new TablePropertiesListContext(this.context, this.state); - this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); + this.enterRule(localContext, 194, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 2009; + this.state = 1880; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2000; + this.state = 1871; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2001; + this.state = 1872; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2006; + this.state = 1877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2002; + this.state = 1873; this.match(HiveSqlParser.COMMA); - this.state = 2003; + this.state = 1874; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2008; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9041,15 +8537,15 @@ export class HiveSqlParser extends SQLParserBase { } public keyValueProperties(): KeyValuePropertiesContext { let localContext = new KeyValuePropertiesContext(this.context, this.state); - this.enterRule(localContext, 230, HiveSqlParser.RULE_keyValueProperties); + this.enterRule(localContext, 196, HiveSqlParser.RULE_keyValueProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 2011; + this.state = 1882; this.match(HiveSqlParser.LPAREN); - this.state = 2012; + this.state = 1883; this.keyValuePropertyList(); - this.state = 2013; + this.state = 1884; this.match(HiveSqlParser.RPAREN); } } @@ -9069,26 +8565,26 @@ export class HiveSqlParser extends SQLParserBase { } public keyValuePropertyList(): KeyValuePropertyListContext { let localContext = new KeyValuePropertyListContext(this.context, this.state); - this.enterRule(localContext, 232, HiveSqlParser.RULE_keyValuePropertyList); + this.enterRule(localContext, 198, HiveSqlParser.RULE_keyValuePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2015; + this.state = 1886; this.keyValueProperty(); - this.state = 2020; + this.state = 1891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2016; + this.state = 1887; this.match(HiveSqlParser.COMMA); - this.state = 2017; + this.state = 1888; this.keyValueProperty(); } } - this.state = 2022; + this.state = 1893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9110,15 +8606,15 @@ export class HiveSqlParser extends SQLParserBase { } public keyValueProperty(): KeyValuePropertyContext { let localContext = new KeyValuePropertyContext(this.context, this.state); - this.enterRule(localContext, 234, HiveSqlParser.RULE_keyValueProperty); + this.enterRule(localContext, 200, HiveSqlParser.RULE_keyValueProperty); try { this.enterOuterAlt(localContext, 1); { - this.state = 2023; + this.state = 1894; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2024; + this.state = 1895; this.match(HiveSqlParser.EQUAL); - this.state = 2025; + this.state = 1896; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9136,31 +8632,31 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatFieldIdentifier(): TableRowFormatFieldIdentifierContext { - let localContext = new TableRowFormatFieldIdentifierContext(this.context, this.state); - this.enterRule(localContext, 236, HiveSqlParser.RULE_tableRowFormatFieldIdentifier); + public rowFormatFieldIdentifier(): RowFormatFieldIdentifierContext { + let localContext = new RowFormatFieldIdentifierContext(this.context, this.state); + this.enterRule(localContext, 202, HiveSqlParser.RULE_rowFormatFieldIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 1898; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2028; + this.state = 1899; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2029; + this.state = 1900; this.match(HiveSqlParser.KW_BY); - this.state = 2030; + this.state = 1901; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2034; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2031; + this.state = 1902; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2032; + this.state = 1903; this.match(HiveSqlParser.KW_BY); - this.state = 2033; + this.state = 1904; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9181,21 +8677,21 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatCollItemsIdentifier(): TableRowFormatCollItemsIdentifierContext { - let localContext = new TableRowFormatCollItemsIdentifierContext(this.context, this.state); - this.enterRule(localContext, 238, HiveSqlParser.RULE_tableRowFormatCollItemsIdentifier); + public rowFormatCollItemsIdentifier(): RowFormatCollItemsIdentifierContext { + let localContext = new RowFormatCollItemsIdentifierContext(this.context, this.state); + this.enterRule(localContext, 204, HiveSqlParser.RULE_rowFormatCollItemsIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2036; + this.state = 1907; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2037; + this.state = 1908; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2038; + this.state = 1909; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2039; + this.state = 1910; this.match(HiveSqlParser.KW_BY); - this.state = 2040; + this.state = 1911; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9213,21 +8709,21 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatMapKeysIdentifier(): TableRowFormatMapKeysIdentifierContext { - let localContext = new TableRowFormatMapKeysIdentifierContext(this.context, this.state); - this.enterRule(localContext, 240, HiveSqlParser.RULE_tableRowFormatMapKeysIdentifier); + public rowFormatMapKeysIdentifier(): RowFormatMapKeysIdentifierContext { + let localContext = new RowFormatMapKeysIdentifierContext(this.context, this.state); + this.enterRule(localContext, 206, HiveSqlParser.RULE_rowFormatMapKeysIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 1913; this.match(HiveSqlParser.KW_MAP); - this.state = 2043; + this.state = 1914; this.match(HiveSqlParser.KW_KEYS); - this.state = 2044; + this.state = 1915; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2045; + this.state = 1916; this.match(HiveSqlParser.KW_BY); - this.state = 2046; + this.state = 1917; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9245,19 +8741,19 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatLinesIdentifier(): TableRowFormatLinesIdentifierContext { - let localContext = new TableRowFormatLinesIdentifierContext(this.context, this.state); - this.enterRule(localContext, 242, HiveSqlParser.RULE_tableRowFormatLinesIdentifier); + public rowFormatLinesIdentifier(): RowFormatLinesIdentifierContext { + let localContext = new RowFormatLinesIdentifierContext(this.context, this.state); + this.enterRule(localContext, 208, HiveSqlParser.RULE_rowFormatLinesIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2048; + this.state = 1919; this.match(HiveSqlParser.KW_LINES); - this.state = 2049; + this.state = 1920; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2050; + this.state = 1921; this.match(HiveSqlParser.KW_BY); - this.state = 2051; + this.state = 1922; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9277,17 +8773,17 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowNullFormat(): TableRowNullFormatContext { let localContext = new TableRowNullFormatContext(this.context, this.state); - this.enterRule(localContext, 244, HiveSqlParser.RULE_tableRowNullFormat); + this.enterRule(localContext, 210, HiveSqlParser.RULE_tableRowNullFormat); try { this.enterOuterAlt(localContext, 1); { - this.state = 2053; + this.state = 1924; this.match(HiveSqlParser.KW_NULL); - this.state = 2054; + this.state = 1925; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2055; + this.state = 1926; this.match(HiveSqlParser.KW_AS); - this.state = 2056; + this.state = 1927; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9307,39 +8803,39 @@ export class HiveSqlParser extends SQLParserBase { } public tableFileFormat(): TableFileFormatContext { let localContext = new TableFileFormatContext(this.context, this.state); - this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); + this.enterRule(localContext, 212, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2099; + this.state = 1970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2058; + this.state = 1929; this.match(HiveSqlParser.KW_STORED); - this.state = 2059; + this.state = 1930; this.match(HiveSqlParser.KW_AS); - this.state = 2060; + this.state = 1931; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2061; + this.state = 1932; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2062; + this.state = 1933; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2063; + this.state = 1934; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2068; + this.state = 1939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2064; + this.state = 1935; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2065; + this.state = 1936; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2066; + this.state = 1937; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2067; + this.state = 1938; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9349,36 +8845,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2070; + this.state = 1941; this.match(HiveSqlParser.KW_STORED); - this.state = 2071; + this.state = 1942; this.match(HiveSqlParser.KW_BY); - this.state = 2072; + this.state = 1943; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2076; + this.state = 1947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2073; + this.state = 1944; this.match(HiveSqlParser.KW_WITH); - this.state = 2074; + this.state = 1945; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2075; + this.state = 1946; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2081; + this.state = 1952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2078; + this.state = 1949; this.match(HiveSqlParser.KW_STORED); - this.state = 2079; + this.state = 1950; this.match(HiveSqlParser.KW_AS); - this.state = 2080; + this.state = 1951; localContext._fileformat = this.id_(); } } @@ -9388,36 +8884,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2083; + this.state = 1954; this.match(HiveSqlParser.KW_STORED); - this.state = 2084; + this.state = 1955; this.match(HiveSqlParser.KW_BY); - this.state = 2085; + this.state = 1956; localContext._genericSpec = this.id_(); - this.state = 2089; + this.state = 1960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2086; + this.state = 1957; this.match(HiveSqlParser.KW_WITH); - this.state = 2087; + this.state = 1958; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2088; + this.state = 1959; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2094; + this.state = 1965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2091; + this.state = 1962; this.match(HiveSqlParser.KW_STORED); - this.state = 2092; + this.state = 1963; this.match(HiveSqlParser.KW_AS); - this.state = 2093; + this.state = 1964; localContext._fileformat = this.id_(); } } @@ -9427,11 +8923,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2096; + this.state = 1967; this.match(HiveSqlParser.KW_STORED); - this.state = 2097; + this.state = 1968; this.match(HiveSqlParser.KW_AS); - this.state = 2098; + this.state = 1969; localContext._genericSpec = this.id_(); } break; @@ -9453,26 +8949,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeList(): ColumnNameTypeListContext { let localContext = new ColumnNameTypeListContext(this.context, this.state); - this.enterRule(localContext, 248, HiveSqlParser.RULE_columnNameTypeList); + this.enterRule(localContext, 214, HiveSqlParser.RULE_columnNameTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 1972; this.columnNameType(); - this.state = 2106; + this.state = 1977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2102; + this.state = 1973; this.match(HiveSqlParser.COMMA); - this.state = 2103; + this.state = 1974; this.columnNameType(); } } - this.state = 2108; + this.state = 1979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9494,26 +8990,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraintList(): ColumnNameTypeOrConstraintListContext { let localContext = new ColumnNameTypeOrConstraintListContext(this.context, this.state); - this.enterRule(localContext, 250, HiveSqlParser.RULE_columnNameTypeOrConstraintList); + this.enterRule(localContext, 216, HiveSqlParser.RULE_columnNameTypeOrConstraintList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2109; + this.state = 1980; this.columnNameTypeOrConstraint(); - this.state = 2114; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2110; + this.state = 1981; this.match(HiveSqlParser.COMMA); - this.state = 2111; + this.state = 1982; this.columnNameTypeOrConstraint(); } } - this.state = 2116; + this.state = 1987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9535,26 +9031,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonTypeList(): ColumnNameColonTypeListContext { let localContext = new ColumnNameColonTypeListContext(this.context, this.state); - this.enterRule(localContext, 252, HiveSqlParser.RULE_columnNameColonTypeList); + this.enterRule(localContext, 218, HiveSqlParser.RULE_columnNameColonTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 1988; this.columnNameColonType(); - this.state = 2122; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2118; + this.state = 1989; this.match(HiveSqlParser.COMMA); - this.state = 2119; + this.state = 1990; this.columnNameColonType(); } } - this.state = 2124; + this.state = 1995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9576,26 +9072,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameList(): ColumnNameListContext { let localContext = new ColumnNameListContext(this.context, this.state); - this.enterRule(localContext, 254, HiveSqlParser.RULE_columnNameList); + this.enterRule(localContext, 220, HiveSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2125; + this.state = 1996; this.columnName(); - this.state = 2130; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2126; + this.state = 1997; this.match(HiveSqlParser.COMMA); - this.state = 2127; + this.state = 1998; this.columnName(); } } - this.state = 2132; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9617,26 +9113,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); + this.enterRule(localContext, 222, HiveSqlParser.RULE_columnName); try { - this.state = 2136; + this.state = 2007; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2133; + this.state = 2004; this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2134; + this.state = 2005; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2135; + this.state = 2006; this.emptyColumn(); } break; @@ -9658,11 +9154,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 258, HiveSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 224, HiveSqlParser.RULE_columnNamePath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2138; + this.state = 2009; this.poolPath(); } } @@ -9682,26 +9178,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 260, HiveSqlParser.RULE_columnNamePathAllowEmpty); + this.enterRule(localContext, 226, HiveSqlParser.RULE_columnNamePathAllowEmpty); try { - this.state = 2143; + this.state = 2014; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2140; + this.state = 2011; this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2141; + this.state = 2012; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2142; + this.state = 2013; this.emptyColumn(); } break; @@ -9723,11 +9219,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 262, HiveSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 228, HiveSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2016; this.id_(); } } @@ -9747,52 +9243,52 @@ export class HiveSqlParser extends SQLParserBase { } public extColumnName(): ExtColumnNameContext { let localContext = new ExtColumnNameContext(this.context, this.state); - this.enterRule(localContext, 264, HiveSqlParser.RULE_extColumnName); + this.enterRule(localContext, 230, HiveSqlParser.RULE_extColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2147; + this.state = 2018; this.columnName(); - this.state = 2157; + this.state = 2028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2148; + this.state = 2019; this.match(HiveSqlParser.DOT); - this.state = 2153; + this.state = 2024; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { - this.state = 2149; + this.state = 2020; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2150; + this.state = 2021; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2151; + this.state = 2022; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2152; + this.state = 2023; this.id_(); } break; } } } - this.state = 2159; + this.state = 2030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9814,26 +9310,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrderList(): ColumnNameOrderListContext { let localContext = new ColumnNameOrderListContext(this.context, this.state); - this.enterRule(localContext, 266, HiveSqlParser.RULE_columnNameOrderList); + this.enterRule(localContext, 232, HiveSqlParser.RULE_columnNameOrderList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2031; this.columnNameOrder(); - this.state = 2165; + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2161; + this.state = 2032; this.match(HiveSqlParser.COMMA); - this.state = 2162; + this.state = 2033; this.columnNameOrder(); } } - this.state = 2167; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9855,15 +9351,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnParenthesesList(): ColumnParenthesesListContext { let localContext = new ColumnParenthesesListContext(this.context, this.state); - this.enterRule(localContext, 268, HiveSqlParser.RULE_columnParenthesesList); + this.enterRule(localContext, 234, HiveSqlParser.RULE_columnParenthesesList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2039; this.match(HiveSqlParser.LPAREN); - this.state = 2169; + this.state = 2040; this.columnNameList(); - this.state = 2170; + this.state = 2041; this.match(HiveSqlParser.RPAREN); } } @@ -9883,10 +9379,10 @@ export class HiveSqlParser extends SQLParserBase { } public enableValidateSpecification(): EnableValidateSpecificationContext { let localContext = new EnableValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 270, HiveSqlParser.RULE_enableValidateSpecification); + this.enterRule(localContext, 236, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2177; + this.state = 2048; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9895,15 +9391,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2172; + this.state = 2043; this.enableSpecification(); - this.state = 2174; + this.state = 2045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2173; - this.validateSpecification(); + this.state = 2044; + _la = this.tokenStream.LA(1); + if(!(_la === 217 || _la === 373)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } @@ -9913,7 +9416,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2176; + this.state = 2047; this.enforcedSpecification(); } break; @@ -9937,16 +9440,16 @@ export class HiveSqlParser extends SQLParserBase { } public enableSpecification(): EnableSpecificationContext { let localContext = new EnableSpecificationContext(this.context, this.state); - this.enterRule(localContext, 272, HiveSqlParser.RULE_enableSpecification); + this.enterRule(localContext, 238, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2181; + this.state = 2052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2179; + this.state = 2050; this.enable(); } break; @@ -9954,7 +9457,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2180; + this.state = 2051; this.disable(); } break; @@ -9976,58 +9479,26 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public validateSpecification(): ValidateSpecificationContext { - let localContext = new ValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 274, HiveSqlParser.RULE_validateSpecification); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2183; - _la = this.tokenStream.LA(1); - if(!(_la === 217 || _la === 373)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public enforcedSpecification(): EnforcedSpecificationContext { let localContext = new EnforcedSpecificationContext(this.context, this.state); - this.enterRule(localContext, 276, HiveSqlParser.RULE_enforcedSpecification); + this.enterRule(localContext, 240, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2188; + this.state = 2057; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2185; + this.state = 2054; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2186; + this.state = 2055; this.match(HiveSqlParser.KW_NOT); - this.state = 2187; + this.state = 2056; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10049,66 +9520,34 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public relySpecification(): RelySpecificationContext { - let localContext = new RelySpecificationContext(this.context, this.state); - this.enterRule(localContext, 278, HiveSqlParser.RULE_relySpecification); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2190; - _la = this.tokenStream.LA(1); - if(!(_la === 214 || _la === 272)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public createConstraint(): CreateConstraintContext { let localContext = new CreateConstraintContext(this.context, this.state); - this.enterRule(localContext, 280, HiveSqlParser.RULE_createConstraint); + this.enterRule(localContext, 242, HiveSqlParser.RULE_createConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2194; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2192; + this.state = 2059; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2193; + this.state = 2060; localContext._constraintName = this.id_(); } } - this.state = 2196; + this.state = 2063; this.tableLevelConstraint(); - this.state = 2198; + this.state = 2065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2197; - this.constraintOptsCreate(); + this.state = 2064; + this.constraintOpts(); } } @@ -10130,23 +9569,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterConstraintWithName(): AlterConstraintWithNameContext { let localContext = new AlterConstraintWithNameContext(this.context, this.state); - this.enterRule(localContext, 282, HiveSqlParser.RULE_alterConstraintWithName); + this.enterRule(localContext, 244, HiveSqlParser.RULE_alterConstraintWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2200; + this.state = 2067; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2201; + this.state = 2068; localContext._constraintName = this.id_(); - this.state = 2202; + this.state = 2069; this.tableLevelConstraint(); - this.state = 2204; + this.state = 2071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2203; - this.constraintOptsAlter(); + this.state = 2070; + this.constraintOpts(); } break; } @@ -10168,23 +9607,23 @@ export class HiveSqlParser extends SQLParserBase { } public tableLevelConstraint(): TableLevelConstraintContext { let localContext = new TableLevelConstraintContext(this.context, this.state); - this.enterRule(localContext, 284, HiveSqlParser.RULE_tableLevelConstraint); + this.enterRule(localContext, 246, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2208; + this.state = 2075; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2206; + this.state = 2073; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2207; + this.state = 2074; this.checkConstraint(); } break; @@ -10208,13 +9647,13 @@ export class HiveSqlParser extends SQLParserBase { } public pkUkConstraint(): PkUkConstraintContext { let localContext = new PkUkConstraintContext(this.context, this.state); - this.enterRule(localContext, 286, HiveSqlParser.RULE_pkUkConstraint); + this.enterRule(localContext, 248, HiveSqlParser.RULE_pkUkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2210; + this.state = 2077; this.tableConstraintType(); - this.state = 2211; + this.state = 2078; localContext._pkCols = this.columnParenthesesList(); } } @@ -10234,17 +9673,17 @@ export class HiveSqlParser extends SQLParserBase { } public checkConstraint(): CheckConstraintContext { let localContext = new CheckConstraintContext(this.context, this.state); - this.enterRule(localContext, 288, HiveSqlParser.RULE_checkConstraint); + this.enterRule(localContext, 250, HiveSqlParser.RULE_checkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2080; this.match(HiveSqlParser.KW_CHECK); - this.state = 2214; + this.state = 2081; this.match(HiveSqlParser.LPAREN); - this.state = 2215; + this.state = 2082; this.expression(); - this.state = 2216; + this.state = 2083; this.match(HiveSqlParser.RPAREN); } } @@ -10264,42 +9703,42 @@ export class HiveSqlParser extends SQLParserBase { } public createForeignKey(): CreateForeignKeyContext { let localContext = new CreateForeignKeyContext(this.context, this.state); - this.enterRule(localContext, 290, HiveSqlParser.RULE_createForeignKey); + this.enterRule(localContext, 252, HiveSqlParser.RULE_createForeignKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2220; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2218; + this.state = 2085; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2219; + this.state = 2086; localContext._constraintName = this.id_(); } } - this.state = 2222; + this.state = 2089; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2223; + this.state = 2090; this.match(HiveSqlParser.KW_KEY); - this.state = 2224; + this.state = 2091; localContext._fkCols = this.columnParenthesesList(); - this.state = 2225; + this.state = 2092; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2226; + this.state = 2093; localContext._tabName = this.tableName(); - this.state = 2227; + this.state = 2094; localContext._parCols = this.columnParenthesesList(); - this.state = 2229; + this.state = 2096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2228; - this.constraintOptsCreate(); + this.state = 2095; + this.constraintOpts(); } } @@ -10321,33 +9760,33 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyWithName(): AlterForeignKeyWithNameContext { let localContext = new AlterForeignKeyWithNameContext(this.context, this.state); - this.enterRule(localContext, 292, HiveSqlParser.RULE_alterForeignKeyWithName); + this.enterRule(localContext, 254, HiveSqlParser.RULE_alterForeignKeyWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2098; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2232; + this.state = 2099; localContext._constraintName = this.id_(); - this.state = 2233; + this.state = 2100; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2234; + this.state = 2101; this.match(HiveSqlParser.KW_KEY); - this.state = 2235; + this.state = 2102; localContext._fkCols = this.columnParenthesesList(); - this.state = 2236; + this.state = 2103; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2237; + this.state = 2104; localContext._tabName = this.tableName(); - this.state = 2238; + this.state = 2105; localContext._parCols = this.columnParenthesesList(); - this.state = 2240; + this.state = 2107; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 2239; - this.constraintOptsAlter(); + this.state = 2106; + this.constraintOpts(); } break; } @@ -10369,9 +9808,9 @@ export class HiveSqlParser extends SQLParserBase { } public skewedValueElement(): SkewedValueElementContext { let localContext = new SkewedValueElementContext(this.context, this.state); - this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedValueElement); + this.enterRule(localContext, 256, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2244; + this.state = 2111; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -10630,14 +10069,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2242; + this.state = 2109; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2243; + this.state = 2110; this.skewedColumnValuePairList(); } break; @@ -10661,26 +10100,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePairList(): SkewedColumnValuePairListContext { let localContext = new SkewedColumnValuePairListContext(this.context, this.state); - this.enterRule(localContext, 296, HiveSqlParser.RULE_skewedColumnValuePairList); + this.enterRule(localContext, 258, HiveSqlParser.RULE_skewedColumnValuePairList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2113; this.skewedColumnValuePair(); - this.state = 2251; + this.state = 2118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2247; + this.state = 2114; this.match(HiveSqlParser.COMMA); - this.state = 2248; + this.state = 2115; this.skewedColumnValuePair(); } } - this.state = 2253; + this.state = 2120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10702,15 +10141,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePair(): SkewedColumnValuePairContext { let localContext = new SkewedColumnValuePairContext(this.context, this.state); - this.enterRule(localContext, 298, HiveSqlParser.RULE_skewedColumnValuePair); + this.enterRule(localContext, 260, HiveSqlParser.RULE_skewedColumnValuePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 2254; + this.state = 2121; this.match(HiveSqlParser.LPAREN); - this.state = 2255; + this.state = 2122; localContext._colValues = this.constantList(); - this.state = 2256; + this.state = 2123; this.match(HiveSqlParser.RPAREN); } } @@ -10730,26 +10169,26 @@ export class HiveSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 300, HiveSqlParser.RULE_constantList); + this.enterRule(localContext, 262, HiveSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2258; + this.state = 2125; this.constant(); - this.state = 2263; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2259; + this.state = 2126; this.match(HiveSqlParser.COMMA); - this.state = 2260; + this.state = 2127; this.constant(); } } - this.state = 2265; + this.state = 2132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10771,12 +10210,12 @@ export class HiveSqlParser extends SQLParserBase { } public orderSpecification(): OrderSpecificationContext { let localContext = new OrderSpecificationContext(this.context, this.state); - this.enterRule(localContext, 302, HiveSqlParser.RULE_orderSpecification); + this.enterRule(localContext, 264, HiveSqlParser.RULE_orderSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2266; + this.state = 2133; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10803,14 +10242,14 @@ export class HiveSqlParser extends SQLParserBase { } public nullOrdering(): NullOrderingContext { let localContext = new NullOrderingContext(this.context, this.state); - this.enterRule(localContext, 304, HiveSqlParser.RULE_nullOrdering); + this.enterRule(localContext, 266, HiveSqlParser.RULE_nullOrdering); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2268; + this.state = 2135; this.match(HiveSqlParser.KW_NULLS); - this.state = 2269; + this.state = 2136; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10837,29 +10276,29 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrder(): ColumnNameOrderContext { let localContext = new ColumnNameOrderContext(this.context, this.state); - this.enterRule(localContext, 306, HiveSqlParser.RULE_columnNameOrder); + this.enterRule(localContext, 268, HiveSqlParser.RULE_columnNameOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2138; this.columnName(); - this.state = 2273; + this.state = 2140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2272; + this.state = 2139; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2276; + this.state = 2143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2275; + this.state = 2142; localContext._nullSpec = this.nullOrdering(); } } @@ -10882,26 +10321,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCommentList(): ColumnNameCommentListContext { let localContext = new ColumnNameCommentListContext(this.context, this.state); - this.enterRule(localContext, 308, HiveSqlParser.RULE_columnNameCommentList); + this.enterRule(localContext, 270, HiveSqlParser.RULE_columnNameCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2278; + this.state = 2145; this.columnNameComment(); - this.state = 2283; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2279; + this.state = 2146; this.match(HiveSqlParser.COMMA); - this.state = 2280; + this.state = 2147; this.columnNameComment(); } } - this.state = 2285; + this.state = 2152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10923,21 +10362,21 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameComment(): ColumnNameCommentContext { let localContext = new ColumnNameCommentContext(this.context, this.state); - this.enterRule(localContext, 310, HiveSqlParser.RULE_columnNameComment); + this.enterRule(localContext, 272, HiveSqlParser.RULE_columnNameComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2286; + this.state = 2153; localContext._colName = this.columnNameCreate(); - this.state = 2289; + this.state = 2156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2287; + this.state = 2154; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2288; + this.state = 2155; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10960,43 +10399,43 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrder(): ColumnRefOrderContext { let localContext = new ColumnRefOrderContext(this.context, this.state); - this.enterRule(localContext, 312, HiveSqlParser.RULE_columnRefOrder); + this.enterRule(localContext, 274, HiveSqlParser.RULE_columnRefOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2160; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2291; + this.state = 2158; this.columnName(); } break; case 2: { - this.state = 2292; + this.state = 2159; this.expression(); } break; } - this.state = 2296; + this.state = 2163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2295; + this.state = 2162; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2299; + this.state = 2166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2298; + this.state = 2165; localContext._nullSpec = this.nullOrdering(); } } @@ -11019,146 +10458,23 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameType(): ColumnNameTypeContext { let localContext = new ColumnNameTypeContext(this.context, this.state); - this.enterRule(localContext, 314, HiveSqlParser.RULE_columnNameType); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2301; - localContext._colName = this.columnNameCreate(); - this.state = 2302; - this.columnType(); - this.state = 2305; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 47) { - { - this.state = 2303; - this.match(HiveSqlParser.KW_COMMENT); - this.state = 2304; - localContext._comment = this.match(HiveSqlParser.StringLiteral); - } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public columnNameTypeOrConstraint(): ColumnNameTypeOrConstraintContext { - let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); - this.enterRule(localContext, 316, HiveSqlParser.RULE_columnNameTypeOrConstraint); - try { - this.state = 2309; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2307; - this.tableConstraint(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2308; - this.columnNameTypeConstraint(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public tableConstraint(): TableConstraintContext { - let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 318, HiveSqlParser.RULE_tableConstraint); - try { - this.state = 2313; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2311; - this.createForeignKey(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2312; - this.createConstraint(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public columnNameTypeConstraint(): ColumnNameTypeConstraintContext { - let localContext = new ColumnNameTypeConstraintContext(this.context, this.state); - this.enterRule(localContext, 320, HiveSqlParser.RULE_columnNameTypeConstraint); + this.enterRule(localContext, 276, HiveSqlParser.RULE_columnNameType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2315; + this.state = 2168; localContext._colName = this.columnNameCreate(); - this.state = 2316; - localContext._colType = this.columnType(); - this.state = 2318; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { - { - this.state = 2317; - this.columnConstraint(); - } - } - - this.state = 2322; + this.state = 2169; + this.type_(); + this.state = 2172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2320; + this.state = 2170; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2321; + this.state = 2171; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11179,25 +10495,25 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public columnConstraint(): ColumnConstraintContext { - let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 322, HiveSqlParser.RULE_columnConstraint); + public columnNameTypeOrConstraint(): ColumnNameTypeOrConstraintContext { + let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); + this.enterRule(localContext, 278, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2326; + this.state = 2176; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2324; - this.foreignKeyConstraint(); + this.state = 2174; + this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2325; - this.colConstraint(); + this.state = 2175; + this.columnNameTypeConstraint(); } break; } @@ -11216,45 +10532,27 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public foreignKeyConstraint(): ForeignKeyConstraintContext { - let localContext = new ForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 324, HiveSqlParser.RULE_foreignKeyConstraint); - let _la: number; + public tableConstraint(): TableConstraintContext { + let localContext = new TableConstraintContext(this.context, this.state); + this.enterRule(localContext, 280, HiveSqlParser.RULE_tableConstraint); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2330; + this.state = 2180; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 55) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 2328; - this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2329; - localContext._constraintName = this.id_(); + this.state = 2178; + this.createForeignKey(); } - } - - this.state = 2332; - this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2333; - localContext._tabName = this.tableName(); - this.state = 2334; - this.match(HiveSqlParser.LPAREN); - this.state = 2335; - localContext._colName = this.columnName(); - this.state = 2336; - this.match(HiveSqlParser.RPAREN); - this.state = 2338; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { + break; + case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 2337; - this.constraintOptsCreate(); + this.state = 2179; + this.createConstraint(); } - } - + break; } } catch (re) { @@ -11271,34 +10569,36 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public colConstraint(): ColConstraintContext { - let localContext = new ColConstraintContext(this.context, this.state); - this.enterRule(localContext, 326, HiveSqlParser.RULE_colConstraint); + public columnNameTypeConstraint(): ColumnNameTypeConstraintContext { + let localContext = new ColumnNameTypeConstraintContext(this.context, this.state); + this.enterRule(localContext, 282, HiveSqlParser.RULE_columnNameTypeConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2342; + this.state = 2182; + localContext._colName = this.columnNameCreate(); + this.state = 2183; + localContext._colType = this.type_(); + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 55) { + if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2340; - this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2341; - localContext._constraintName = this.id_(); + this.state = 2184; + this.columnConstraint(); } } - this.state = 2344; - this.columnConstraintType(); - this.state = 2346; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { + if (_la === 47) { { - this.state = 2345; - this.constraintOptsCreate(); + this.state = 2187; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 2188; + localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11318,25 +10618,25 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public alterColumnConstraint(): AlterColumnConstraintContext { - let localContext = new AlterColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 328, HiveSqlParser.RULE_alterColumnConstraint); + public columnConstraint(): ColumnConstraintContext { + let localContext = new ColumnConstraintContext(this.context, this.state); + this.enterRule(localContext, 284, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2350; + this.state = 2193; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2348; - this.alterForeignKeyConstraint(); + this.state = 2191; + this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2349; - this.alterColConstraint(); + this.state = 2192; + this.colConstraint(); } break; } @@ -11355,42 +10655,42 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext { - let localContext = new AlterForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 330, HiveSqlParser.RULE_alterForeignKeyConstraint); + public foreignKeyConstraint(): ForeignKeyConstraintContext { + let localContext = new ForeignKeyConstraintContext(this.context, this.state); + this.enterRule(localContext, 286, HiveSqlParser.RULE_foreignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2354; + this.state = 2197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2352; + this.state = 2195; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2353; + this.state = 2196; localContext._constraintName = this.id_(); } } - this.state = 2356; + this.state = 2199; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2357; + this.state = 2200; localContext._tabName = this.tableName(); - this.state = 2358; + this.state = 2201; this.match(HiveSqlParser.LPAREN); - this.state = 2359; + this.state = 2202; localContext._colName = this.columnName(); - this.state = 2360; + this.state = 2203; this.match(HiveSqlParser.RPAREN); - this.state = 2362; + this.state = 2205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2361; - this.constraintOptsAlter(); + this.state = 2204; + this.constraintOpts(); } break; } @@ -11410,34 +10710,34 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public alterColConstraint(): AlterColConstraintContext { - let localContext = new AlterColConstraintContext(this.context, this.state); - this.enterRule(localContext, 332, HiveSqlParser.RULE_alterColConstraint); + public colConstraint(): ColConstraintContext { + let localContext = new ColConstraintContext(this.context, this.state); + this.enterRule(localContext, 288, HiveSqlParser.RULE_colConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2366; + this.state = 2209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2364; + this.state = 2207; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2365; + this.state = 2208; localContext._constraintName = this.id_(); } } - this.state = 2368; + this.state = 2211; this.columnConstraintType(); - this.state = 2370; + this.state = 2213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2369; - this.constraintOptsAlter(); + this.state = 2212; + this.constraintOpts(); } break; } @@ -11459,33 +10759,53 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraintType(): ColumnConstraintTypeContext { let localContext = new ColumnConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 334, HiveSqlParser.RULE_columnConstraintType); + this.enterRule(localContext, 290, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2378; + this.state = 2225; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2372; + this.state = 2215; this.match(HiveSqlParser.KW_NOT); - this.state = 2373; + this.state = 2216; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2374; + this.state = 2217; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2375; - this.defaultVal(); + this.state = 2221; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + case 1: + { + this.state = 2218; + this.constant(); + } + break; + case 2: + { + this.state = 2219; + this.function_(); + } + break; + case 3: + { + this.state = 2220; + this.castExpression(); + } + break; + } } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2376; + this.state = 2223; this.checkConstraint(); } break; @@ -11493,7 +10813,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2377; + this.state = 2224; this.tableConstraintType(); } break; @@ -11515,70 +10835,26 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public defaultVal(): DefaultValContext { - let localContext = new DefaultValContext(this.context, this.state); - this.enterRule(localContext, 336, HiveSqlParser.RULE_defaultVal); - try { - this.state = 2383; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2380; - this.constant(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2381; - this.function_(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 2382; - this.castExpression(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tableConstraintType(): TableConstraintTypeContext { let localContext = new TableConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 338, HiveSqlParser.RULE_tableConstraintType); + this.enterRule(localContext, 292, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2388; + this.state = 2230; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2385; + this.state = 2227; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2386; + this.state = 2228; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2387; + this.state = 2229; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11600,57 +10876,29 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public constraintOptsCreate(): ConstraintOptsCreateContext { - let localContext = new ConstraintOptsCreateContext(this.context, this.state); - this.enterRule(localContext, 340, HiveSqlParser.RULE_constraintOptsCreate); + public constraintOpts(): ConstraintOptsContext { + let localContext = new ConstraintOptsContext(this.context, this.state); + this.enterRule(localContext, 294, HiveSqlParser.RULE_constraintOpts); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2390; + this.state = 2232; this.enableValidateSpecification(); - this.state = 2392; + this.state = 2234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2391; - this.relySpecification(); + this.state = 2233; + _la = this.tokenStream.LA(1); + if(!(_la === 214 || _la === 272)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public constraintOptsAlter(): ConstraintOptsAlterContext { - let localContext = new ConstraintOptsAlterContext(this.context, this.state); - this.enterRule(localContext, 342, HiveSqlParser.RULE_constraintOptsAlter); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2394; - this.enableValidateSpecification(); - this.state = 2396; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 214 || _la === 272) { - { - this.state = 2395; - this.relySpecification(); } } @@ -11672,25 +10920,25 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonType(): ColumnNameColonTypeContext { let localContext = new ColumnNameColonTypeContext(this.context, this.state); - this.enterRule(localContext, 344, HiveSqlParser.RULE_columnNameColonType); + this.enterRule(localContext, 296, HiveSqlParser.RULE_columnNameColonType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2398; + this.state = 2236; localContext._colName = this.columnNameCreate(); - this.state = 2399; + this.state = 2237; this.match(HiveSqlParser.COLON); - this.state = 2400; - this.columnType(); - this.state = 2403; + this.state = 2238; + this.type_(); + this.state = 2241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2401; + this.state = 2239; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2402; + this.state = 2240; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11711,52 +10959,28 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public columnType(): ColumnTypeContext { - let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 346, HiveSqlParser.RULE_columnType); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2405; - this.type_(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public columnTypeList(): ColumnTypeListContext { - let localContext = new ColumnTypeListContext(this.context, this.state); - this.enterRule(localContext, 348, HiveSqlParser.RULE_columnTypeList); + public typeList(): TypeListContext { + let localContext = new TypeListContext(this.context, this.state); + this.enterRule(localContext, 298, HiveSqlParser.RULE_typeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2407; - this.columnType(); - this.state = 2412; + this.state = 2243; + this.type_(); + this.state = 2248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2408; + this.state = 2244; this.match(HiveSqlParser.COMMA); - this.state = 2409; - this.columnType(); + this.state = 2245; + this.type_(); } } - this.state = 2414; + this.state = 2250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11778,9 +11002,9 @@ export class HiveSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 350, HiveSqlParser.RULE_type); + this.enterRule(localContext, 300, HiveSqlParser.RULE_type); try { - this.state = 2420; + this.state = 2256; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11805,35 +11029,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2415; + this.state = 2251; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2416; + this.state = 2252; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2417; + this.state = 2253; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2418; + this.state = 2254; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2419; + this.state = 2255; this.unionType(); } break; @@ -11857,79 +11081,79 @@ export class HiveSqlParser extends SQLParserBase { } public primitiveType(): PrimitiveTypeContext { let localContext = new PrimitiveTypeContext(this.context, this.state); - this.enterRule(localContext, 352, HiveSqlParser.RULE_primitiveType); + this.enterRule(localContext, 302, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2459; + this.state = 2295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2422; + this.state = 2258; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2423; + this.state = 2259; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2424; + this.state = 2260; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2425; + this.state = 2261; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2426; + this.state = 2262; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2427; + this.state = 2263; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2428; + this.state = 2264; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2429; + this.state = 2265; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2430; + this.state = 2266; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2432; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2431; + this.state = 2267; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11939,87 +11163,94 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2434; + this.state = 2270; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2435; + this.state = 2271; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2436; + this.state = 2272; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2437; + this.state = 2273; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2438; + this.state = 2274; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2439; + this.state = 2275; this.match(HiveSqlParser.KW_WITH); - this.state = 2440; + this.state = 2276; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2441; + this.state = 2277; this.match(HiveSqlParser.KW_TIME); - this.state = 2442; + this.state = 2278; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2443; + this.state = 2279; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2444; + this.state = 2280; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2445; - this.decimal(); - this.state = 2453; + this.state = 2281; + _la = this.tokenStream.LA(1); + if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2446; + this.state = 2282; this.match(HiveSqlParser.LPAREN); - this.state = 2447; + this.state = 2283; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2450; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2448; + this.state = 2284; this.match(HiveSqlParser.COMMA); - this.state = 2449; + this.state = 2285; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2452; + this.state = 2288; this.match(HiveSqlParser.RPAREN); } break; @@ -12029,7 +11260,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2455; + this.state = 2291; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -12038,11 +11269,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2456; + this.state = 2292; this.match(HiveSqlParser.LPAREN); - this.state = 2457; + this.state = 2293; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2458; + this.state = 2294; this.match(HiveSqlParser.RPAREN); } break; @@ -12064,17 +11295,17 @@ export class HiveSqlParser extends SQLParserBase { } public listType(): ListTypeContext { let localContext = new ListTypeContext(this.context, this.state); - this.enterRule(localContext, 354, HiveSqlParser.RULE_listType); + this.enterRule(localContext, 304, HiveSqlParser.RULE_listType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2461; + this.state = 2297; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2462; + this.state = 2298; this.match(HiveSqlParser.LESSTHAN); - this.state = 2463; + this.state = 2299; this.type_(); - this.state = 2464; + this.state = 2300; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12094,17 +11325,17 @@ export class HiveSqlParser extends SQLParserBase { } public structType(): StructTypeContext { let localContext = new StructTypeContext(this.context, this.state); - this.enterRule(localContext, 356, HiveSqlParser.RULE_structType); + this.enterRule(localContext, 306, HiveSqlParser.RULE_structType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2466; + this.state = 2302; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2467; + this.state = 2303; this.match(HiveSqlParser.LESSTHAN); - this.state = 2468; + this.state = 2304; this.columnNameColonTypeList(); - this.state = 2469; + this.state = 2305; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12124,21 +11355,21 @@ export class HiveSqlParser extends SQLParserBase { } public mapType(): MapTypeContext { let localContext = new MapTypeContext(this.context, this.state); - this.enterRule(localContext, 358, HiveSqlParser.RULE_mapType); + this.enterRule(localContext, 308, HiveSqlParser.RULE_mapType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2307; this.match(HiveSqlParser.KW_MAP); - this.state = 2472; + this.state = 2308; this.match(HiveSqlParser.LESSTHAN); - this.state = 2473; + this.state = 2309; localContext._left = this.primitiveType(); - this.state = 2474; + this.state = 2310; this.match(HiveSqlParser.COMMA); - this.state = 2475; + this.state = 2311; localContext._right = this.type_(); - this.state = 2476; + this.state = 2312; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12158,17 +11389,17 @@ export class HiveSqlParser extends SQLParserBase { } public unionType(): UnionTypeContext { let localContext = new UnionTypeContext(this.context, this.state); - this.enterRule(localContext, 360, HiveSqlParser.RULE_unionType); + this.enterRule(localContext, 310, HiveSqlParser.RULE_unionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2478; + this.state = 2314; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2479; + this.state = 2315; this.match(HiveSqlParser.LESSTHAN); - this.state = 2480; - this.columnTypeList(); - this.state = 2481; + this.state = 2316; + this.typeList(); + this.state = 2317; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12188,12 +11419,12 @@ export class HiveSqlParser extends SQLParserBase { } public setOperator(): SetOperatorContext { let localContext = new SetOperatorContext(this.context, this.state); - this.enterRule(localContext, 362, HiveSqlParser.RULE_setOperator); + this.enterRule(localContext, 312, HiveSqlParser.RULE_setOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2483; + this.state = 2319; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -12202,12 +11433,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2485; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2484; + this.state = 2320; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12237,22 +11468,22 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpression(): QueryStatementExpressionContext { let localContext = new QueryStatementExpressionContext(this.context, this.state); - this.enterRule(localContext, 364, HiveSqlParser.RULE_queryStatementExpression); + this.enterRule(localContext, 314, HiveSqlParser.RULE_queryStatementExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2488; + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2487; + this.state = 2323; localContext._w = this.withClause(); } } - this.state = 2490; + this.state = 2326; this.queryStatementExpressionBody(); } } @@ -12272,15 +11503,15 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpressionBody(): QueryStatementExpressionBodyContext { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); - this.enterRule(localContext, 366, HiveSqlParser.RULE_queryStatementExpressionBody); + this.enterRule(localContext, 316, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2494; + this.state = 2330; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2492; + this.state = 2328; this.fromStatement(); } break; @@ -12292,7 +11523,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2493; + this.state = 2329; this.regularBody(); } break; @@ -12316,28 +11547,28 @@ export class HiveSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 368, HiveSqlParser.RULE_withClause); + this.enterRule(localContext, 318, HiveSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2496; + this.state = 2332; this.match(HiveSqlParser.KW_WITH); - this.state = 2497; + this.state = 2333; this.cteStatement(); - this.state = 2502; + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2498; + this.state = 2334; this.match(HiveSqlParser.COMMA); - this.state = 2499; + this.state = 2335; this.cteStatement(); } } - this.state = 2504; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12359,34 +11590,34 @@ export class HiveSqlParser extends SQLParserBase { } public cteStatement(): CteStatementContext { let localContext = new CteStatementContext(this.context, this.state); - this.enterRule(localContext, 370, HiveSqlParser.RULE_cteStatement); + this.enterRule(localContext, 320, HiveSqlParser.RULE_cteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2505; + this.state = 2341; this.id_(); - this.state = 2510; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2506; + this.state = 2342; this.match(HiveSqlParser.LPAREN); - this.state = 2507; + this.state = 2343; localContext._colAliases = this.columnNameList(); - this.state = 2508; + this.state = 2344; this.match(HiveSqlParser.RPAREN); } } - this.state = 2512; + this.state = 2348; this.match(HiveSqlParser.KW_AS); - this.state = 2513; + this.state = 2349; this.match(HiveSqlParser.LPAREN); - this.state = 2514; + this.state = 2350; this.queryStatementExpression(); - this.state = 2515; + this.state = 2351; this.match(HiveSqlParser.RPAREN); } } @@ -12406,26 +11637,26 @@ export class HiveSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 372, HiveSqlParser.RULE_fromStatement); + this.enterRule(localContext, 322, HiveSqlParser.RULE_fromStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2517; + this.state = 2353; this.singleFromStatement(); - this.state = 2523; + this.state = 2359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2518; + this.state = 2354; localContext._u = this.setOperator(); - this.state = 2519; + this.state = 2355; localContext._r = this.singleFromStatement(); } } - this.state = 2525; + this.state = 2361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12447,128 +11678,128 @@ export class HiveSqlParser extends SQLParserBase { } public singleFromStatement(): SingleFromStatementContext { let localContext = new SingleFromStatementContext(this.context, this.state); - this.enterRule(localContext, 374, HiveSqlParser.RULE_singleFromStatement); + this.enterRule(localContext, 324, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2597; + this.state = 2433; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2526; + this.state = 2362; this.fromClause(); - this.state = 2527; + this.state = 2363; this.insertClause(); - this.state = 2528; + this.state = 2364; this.selectClause(); - this.state = 2530; + this.state = 2366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2529; + this.state = 2365; this.lateralView(); } } - this.state = 2533; + this.state = 2369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2532; + this.state = 2368; this.whereClause(); } } - this.state = 2536; + this.state = 2372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2535; + this.state = 2371; this.groupByClause(); } } - this.state = 2539; + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2538; + this.state = 2374; this.havingClause(); } } - this.state = 2542; + this.state = 2378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2541; + this.state = 2377; this.window_clause(); } } - this.state = 2545; + this.state = 2381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2544; + this.state = 2380; this.qualifyClause(); } } - this.state = 2548; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2547; + this.state = 2383; this.orderByClause(); } } - this.state = 2551; + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2550; + this.state = 2386; this.clusterByClause(); } } - this.state = 2554; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2553; + this.state = 2389; this.distributeByClause(); } } - this.state = 2557; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2556; + this.state = 2392; this.sortByClause(); } } - this.state = 2560; + this.state = 2396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2559; + this.state = 2395; this.limitClause(); } } @@ -12579,116 +11810,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2562; + this.state = 2398; this.fromClause(); - this.state = 2563; + this.state = 2399; this.selectClause(); - this.state = 2565; + this.state = 2401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2564; + this.state = 2400; this.lateralView(); } } - this.state = 2568; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2567; + this.state = 2403; this.whereClause(); } } - this.state = 2571; + this.state = 2407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2570; + this.state = 2406; this.groupByClause(); } } - this.state = 2574; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2573; + this.state = 2409; this.havingClause(); } } - this.state = 2577; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2576; + this.state = 2412; this.window_clause(); } } - this.state = 2580; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2579; + this.state = 2415; this.qualifyClause(); } } - this.state = 2583; + this.state = 2419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2582; + this.state = 2418; this.orderByClause(); } } - this.state = 2586; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2585; + this.state = 2421; this.clusterByClause(); } } - this.state = 2589; + this.state = 2425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2588; + this.state = 2424; this.distributeByClause(); } } - this.state = 2592; + this.state = 2428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2591; + this.state = 2427; this.sortByClause(); } } - this.state = 2595; + this.state = 2431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2594; + this.state = 2430; this.limitClause(); } } @@ -12713,18 +11944,18 @@ export class HiveSqlParser extends SQLParserBase { } public regularBody(): RegularBodyContext { let localContext = new RegularBodyContext(this.context, this.state); - this.enterRule(localContext, 376, HiveSqlParser.RULE_regularBody); + this.enterRule(localContext, 326, HiveSqlParser.RULE_regularBody); try { - this.state = 2603; + this.state = 2439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2599; + this.state = 2435; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2600; + this.state = 2436; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12736,7 +11967,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2602; + this.state = 2438; this.selectStatement(); } break; @@ -12760,10 +11991,10 @@ export class HiveSqlParser extends SQLParserBase { } public atomSelectStatement(): AtomSelectStatementContext { let localContext = new AtomSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 378, HiveSqlParser.RULE_atomSelectStatement); + this.enterRule(localContext, 328, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2629; + this.state = 2465; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12771,64 +12002,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2605; + this.state = 2441; localContext._s = this.selectClause(); - this.state = 2607; + this.state = 2443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2606; + this.state = 2442; localContext._f = this.fromClause(); } break; } - this.state = 2610; + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2609; + this.state = 2445; localContext._w = this.whereClause(); } } - this.state = 2613; + this.state = 2449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2612; + this.state = 2448; localContext._g = this.groupByClause(); } } - this.state = 2616; + this.state = 2452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2615; + this.state = 2451; localContext._h = this.havingClause(); } } - this.state = 2619; + this.state = 2455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2618; + this.state = 2454; localContext._win = this.window_clause(); } } - this.state = 2622; + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2621; + this.state = 2457; localContext._q = this.qualifyClause(); } } @@ -12838,18 +12069,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2624; + this.state = 2460; this.match(HiveSqlParser.LPAREN); - this.state = 2625; + this.state = 2461; this.selectStatement(); - this.state = 2626; + this.state = 2462; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2628; + this.state = 2464; this.valuesClause(); } break; @@ -12873,69 +12104,69 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 380, HiveSqlParser.RULE_selectStatement); + this.enterRule(localContext, 330, HiveSqlParser.RULE_selectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2631; + this.state = 2467; localContext._a = this.atomSelectStatement(); - this.state = 2633; + this.state = 2469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2632; + this.state = 2468; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2636; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2635; + this.state = 2471; localContext._o = this.orderByClause(); } } - this.state = 2639; + this.state = 2475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2638; + this.state = 2474; localContext._c = this.clusterByClause(); } } - this.state = 2642; + this.state = 2478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2641; + this.state = 2477; localContext._d = this.distributeByClause(); } } - this.state = 2645; + this.state = 2481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2644; + this.state = 2480; localContext._sort = this.sortByClause(); } } - this.state = 2648; + this.state = 2484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2647; + this.state = 2483; localContext._l = this.limitClause(); } } @@ -12958,24 +12189,24 @@ export class HiveSqlParser extends SQLParserBase { } public setOpSelectStatement(): SetOpSelectStatementContext { let localContext = new SetOpSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 382, HiveSqlParser.RULE_setOpSelectStatement); + this.enterRule(localContext, 332, HiveSqlParser.RULE_setOpSelectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2653; + this.state = 2489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2650; + this.state = 2486; localContext._u = this.setOperator(); - this.state = 2651; + this.state = 2487; localContext._b = this.atomSelectStatement(); } } - this.state = 2655; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -12997,22 +12228,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatementWithCTE(): SelectStatementWithCTEContext { let localContext = new SelectStatementWithCTEContext(this.context, this.state); - this.enterRule(localContext, 384, HiveSqlParser.RULE_selectStatementWithCTE); + this.enterRule(localContext, 334, HiveSqlParser.RULE_selectStatementWithCTE); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2658; + this.state = 2494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2657; + this.state = 2493; localContext._w = this.withClause(); } } - this.state = 2660; + this.state = 2496; this.selectStatement(); } } @@ -13032,28 +12263,28 @@ export class HiveSqlParser extends SQLParserBase { } public insertClause(): InsertClauseContext { let localContext = new InsertClauseContext(this.context, this.state); - this.enterRule(localContext, 386, HiveSqlParser.RULE_insertClause); + this.enterRule(localContext, 336, HiveSqlParser.RULE_insertClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2662; + this.state = 2498; this.match(HiveSqlParser.KW_INSERT); - this.state = 2679; + this.state = 2515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2663; + this.state = 2499; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2664; + this.state = 2500; this.destination(); - this.state = 2666; + this.state = 2502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2665; + this.state = 2501; this.ifNotExists(); } } @@ -13062,30 +12293,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2668; + this.state = 2504; this.match(HiveSqlParser.KW_INTO); - this.state = 2670; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2669; + this.state = 2505; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2672; + this.state = 2508; this.tableOrPartition(); - this.state = 2677; + this.state = 2513; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2673; + this.state = 2509; this.match(HiveSqlParser.LPAREN); - this.state = 2674; + this.state = 2510; localContext._targetCols = this.columnNameList(); - this.state = 2675; + this.state = 2511; this.match(HiveSqlParser.RPAREN); } break; @@ -13113,46 +12344,46 @@ export class HiveSqlParser extends SQLParserBase { } public destination(): DestinationContext { let localContext = new DestinationContext(this.context, this.state); - this.enterRule(localContext, 388, HiveSqlParser.RULE_destination); + this.enterRule(localContext, 338, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2694; + this.state = 2530; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2682; + this.state = 2518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2681; + this.state = 2517; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2684; + this.state = 2520; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2685; + this.state = 2521; this.match(HiveSqlParser.StringLiteral); - this.state = 2687; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2686; - this.tableRowFormat(); + this.state = 2522; + this.rowFormat(); } } - this.state = 2690; + this.state = 2526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2689; + this.state = 2525; this.tableFileFormat(); } } @@ -13162,9 +12393,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2692; + this.state = 2528; this.match(HiveSqlParser.KW_TABLE); - this.state = 2693; + this.state = 2529; this.tableOrPartition(); } break; @@ -13188,40 +12419,40 @@ export class HiveSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 390, HiveSqlParser.RULE_limitClause); + this.enterRule(localContext, 340, HiveSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2696; + this.state = 2532; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2705; + this.state = 2541; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2699; + this.state = 2535; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2697; + this.state = 2533; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2698; + this.state = 2534; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2701; + this.state = 2537; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2702; + this.state = 2538; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2703; + this.state = 2539; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2704; + this.state = 2540; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13244,15 +12475,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnAssignmentClause(): ColumnAssignmentClauseContext { let localContext = new ColumnAssignmentClauseContext(this.context, this.state); - this.enterRule(localContext, 392, HiveSqlParser.RULE_columnAssignmentClause); + this.enterRule(localContext, 342, HiveSqlParser.RULE_columnAssignmentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2707; + this.state = 2543; this.columnName(); - this.state = 2708; + this.state = 2544; this.match(HiveSqlParser.EQUAL); - this.state = 2709; + this.state = 2545; this.precedencePlusExpressionOrDefault(); } } @@ -13272,22 +12503,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpressionOrDefault(): PrecedencePlusExpressionOrDefaultContext { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 394, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); + this.enterRule(localContext, 344, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2713; + this.state = 2549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2711; + this.state = 2547; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2712; + this.state = 2548; this.precedencePlusExpression(); } break; @@ -13309,28 +12540,28 @@ export class HiveSqlParser extends SQLParserBase { } public setColumnsClause(): SetColumnsClauseContext { let localContext = new SetColumnsClauseContext(this.context, this.state); - this.enterRule(localContext, 396, HiveSqlParser.RULE_setColumnsClause); + this.enterRule(localContext, 346, HiveSqlParser.RULE_setColumnsClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2715; + this.state = 2551; this.match(HiveSqlParser.KW_SET); - this.state = 2716; + this.state = 2552; this.columnAssignmentClause(); - this.state = 2721; + this.state = 2557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2717; + this.state = 2553; this.match(HiveSqlParser.COMMA); - this.state = 2718; + this.state = 2554; this.columnAssignmentClause(); } } - this.state = 2723; + this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13352,39 +12583,39 @@ export class HiveSqlParser extends SQLParserBase { } public sqlTransactionStatement(): SqlTransactionStatementContext { let localContext = new SqlTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 398, HiveSqlParser.RULE_sqlTransactionStatement); + this.enterRule(localContext, 348, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2747; + this.state = 2583; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2560; this.match(HiveSqlParser.KW_START); - this.state = 2725; + this.state = 2561; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2734; + this.state = 2570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2726; + this.state = 2562; this.transactionMode(); - this.state = 2731; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2727; + this.state = 2563; this.match(HiveSqlParser.COMMA); - this.state = 2728; + this.state = 2564; this.transactionMode(); } } - this.state = 2733; + this.state = 2569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13396,14 +12627,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2736; + this.state = 2572; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2738; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2737; + this.state = 2573; this.match(HiveSqlParser.KW_WORK); } } @@ -13413,14 +12644,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2740; + this.state = 2576; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2742; + this.state = 2578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2741; + this.state = 2577; this.match(HiveSqlParser.KW_WORK); } } @@ -13430,11 +12661,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2744; + this.state = 2580; this.match(HiveSqlParser.KW_SET); - this.state = 2745; + this.state = 2581; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2746; + this.state = 2582; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13465,29 +12696,29 @@ export class HiveSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 400, HiveSqlParser.RULE_transactionMode); + this.enterRule(localContext, 350, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2754; + this.state = 2590; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2749; + this.state = 2585; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2750; + this.state = 2586; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2751; + this.state = 2587; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2752; + this.state = 2588; this.match(HiveSqlParser.KW_READ); - this.state = 2753; + this.state = 2589; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13518,46 +12749,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenClauses(): WhenClausesContext { let localContext = new WhenClausesContext(this.context, this.state); - this.enterRule(localContext, 402, HiveSqlParser.RULE_whenClauses); + this.enterRule(localContext, 352, HiveSqlParser.RULE_whenClauses); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2760; + this.state = 2596; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2758; + this.state = 2594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2756; + this.state = 2592; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2757; + this.state = 2593; this.whenMatchedThenClause(); } break; } } } - this.state = 2762; + this.state = 2598; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); } - this.state = 2764; + this.state = 2600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2763; + this.state = 2599; this.whenNotMatchedClause(); } } @@ -13580,46 +12811,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenNotMatchedClause(): WhenNotMatchedClauseContext { let localContext = new WhenNotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 404, HiveSqlParser.RULE_whenNotMatchedClause); + this.enterRule(localContext, 354, HiveSqlParser.RULE_whenNotMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2766; + this.state = 2602; this.match(HiveSqlParser.KW_WHEN); - this.state = 2767; + this.state = 2603; this.match(HiveSqlParser.KW_NOT); - this.state = 2768; + this.state = 2604; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2771; + this.state = 2607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2769; + this.state = 2605; this.match(HiveSqlParser.KW_AND); - this.state = 2770; + this.state = 2606; this.expression(); } } - this.state = 2773; + this.state = 2609; this.match(HiveSqlParser.KW_THEN); - this.state = 2774; + this.state = 2610; this.match(HiveSqlParser.KW_INSERT); - this.state = 2776; + this.state = 2612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2775; + this.state = 2611; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2778; + this.state = 2614; this.match(HiveSqlParser.KW_VALUES); - this.state = 2779; + this.state = 2615; this.expressionsInParenthesis(); } } @@ -13639,34 +12870,34 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedAndClause(): WhenMatchedAndClauseContext { let localContext = new WhenMatchedAndClauseContext(this.context, this.state); - this.enterRule(localContext, 406, HiveSqlParser.RULE_whenMatchedAndClause); + this.enterRule(localContext, 356, HiveSqlParser.RULE_whenMatchedAndClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2781; + this.state = 2617; this.match(HiveSqlParser.KW_WHEN); - this.state = 2782; + this.state = 2618; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2783; + this.state = 2619; this.match(HiveSqlParser.KW_AND); - this.state = 2784; + this.state = 2620; this.expression(); - this.state = 2785; + this.state = 2621; this.match(HiveSqlParser.KW_THEN); - this.state = 2789; + this.state = 2625; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2786; + this.state = 2622; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2787; + this.state = 2623; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2788; + this.state = 2624; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13691,30 +12922,30 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedThenClause(): WhenMatchedThenClauseContext { let localContext = new WhenMatchedThenClauseContext(this.context, this.state); - this.enterRule(localContext, 408, HiveSqlParser.RULE_whenMatchedThenClause); + this.enterRule(localContext, 358, HiveSqlParser.RULE_whenMatchedThenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2791; + this.state = 2627; this.match(HiveSqlParser.KW_WHEN); - this.state = 2792; + this.state = 2628; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2793; + this.state = 2629; this.match(HiveSqlParser.KW_THEN); - this.state = 2797; + this.state = 2633; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2794; + this.state = 2630; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2795; + this.state = 2631; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2796; + this.state = 2632; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13737,154 +12968,76 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public compactionPool(): CompactionPoolContext { - let localContext = new CompactionPoolContext(this.context, this.state); - this.enterRule(localContext, 410, HiveSqlParser.RULE_compactionPool); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2799; - this.match(HiveSqlParser.KW_POOL); - this.state = 2800; - localContext._poolName = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public compactionType(): CompactionTypeContext { - let localContext = new CompactionTypeContext(this.context, this.state); - this.enterRule(localContext, 412, HiveSqlParser.RULE_compactionType); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2802; - this.match(HiveSqlParser.KW_TYPE); - this.state = 2803; - localContext._compactType = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public compactionStatus(): CompactionStatusContext { - let localContext = new CompactionStatusContext(this.context, this.state); - this.enterRule(localContext, 414, HiveSqlParser.RULE_compactionStatus); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2805; - this.match(HiveSqlParser.KW_STATUS); - this.state = 2806; - localContext._status = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public alterStatement(): AlterStatementContext { let localContext = new AlterStatementContext(this.context, this.state); - this.enterRule(localContext, 416, HiveSqlParser.RULE_alterStatement); + this.enterRule(localContext, 360, HiveSqlParser.RULE_alterStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2808; + this.state = 2635; this.match(HiveSqlParser.KW_ALTER); - this.state = 2839; + this.state = 2666; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2809; + this.state = 2636; this.match(HiveSqlParser.KW_TABLE); - this.state = 2810; + this.state = 2637; this.tableName(); - this.state = 2811; + this.state = 2638; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2813; + this.state = 2640; this.match(HiveSqlParser.KW_VIEW); - this.state = 2814; + this.state = 2641; this.viewName(); - this.state = 2816; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2815; + this.state = 2642; this.match(HiveSqlParser.KW_AS); } } - this.state = 2818; + this.state = 2645; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2820; + this.state = 2647; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2821; + this.state = 2648; this.match(HiveSqlParser.KW_VIEW); - this.state = 2822; + this.state = 2649; localContext._tableNameTree = this.viewName(); - this.state = 2826; + this.state = 2653; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2823; - localContext._mvRewriteFlag = this.rewriteEnabled(); + this.state = 2650; + this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2824; - localContext._mvRewriteFlag2 = this.rewriteDisabled(); + this.state = 2651; + this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2825; + this.state = 2652; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13896,31 +13049,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2828; + this.state = 2655; this.db_schema(); - this.state = 2829; + this.state = 2656; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2831; + this.state = 2658; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2832; + this.state = 2659; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2833; + this.state = 2660; this.match(HiveSqlParser.KW_INDEX); - this.state = 2834; + this.state = 2661; this.id_(); - this.state = 2835; + this.state = 2662; this.match(HiveSqlParser.KW_ON); - this.state = 2836; + this.state = 2663; this.tableOrPartition(); - this.state = 2837; + this.state = 2664; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13945,75 +13098,75 @@ export class HiveSqlParser extends SQLParserBase { } public alterTableStatementSuffix(): AlterTableStatementSuffixContext { let localContext = new AlterTableStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTableStatementSuffix); + this.enterRule(localContext, 362, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2930; + this.state = 2757; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2841; + this.state = 2668; this.match(HiveSqlParser.KW_RENAME); - this.state = 2842; + this.state = 2669; this.match(HiveSqlParser.KW_TO); - this.state = 2843; + this.state = 2670; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2844; + this.state = 2671; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2845; + this.state = 2672; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2846; + this.state = 2673; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2847; + this.state = 2674; this.match(HiveSqlParser.KW_ADD); - this.state = 2849; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2848; + this.state = 2675; this.ifNotExists(); } } - this.state = 2855; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2851; + this.state = 2678; this.partitionSpec(); - this.state = 2853; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2852; + this.state = 2679; this.locationPath(); } } } } - this.state = 2857; + this.state = 2684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14022,19 +13175,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2859; + this.state = 2686; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2863; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2860; + this.state = 2687; this.partitionSpec(); } } - this.state = 2865; + this.state = 2692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14043,19 +13196,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2866; + this.state = 2693; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2870; + this.state = 2697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2867; + this.state = 2694; this.partitionSpec(); } } - this.state = 2872; + this.state = 2699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14064,19 +13217,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2873; + this.state = 2700; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2877; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2874; + this.state = 2701; this.partitionSpec(); } } - this.state = 2879; + this.state = 2706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14085,59 +13238,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2880; + this.state = 2707; this.match(HiveSqlParser.KW_SET); - this.state = 2881; + this.state = 2708; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2882; + this.state = 2709; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2883; + this.state = 2710; this.match(HiveSqlParser.KW_UNSET); - this.state = 2884; + this.state = 2711; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2886; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2885; + this.state = 2712; this.ifExists(); } } - this.state = 2888; + this.state = 2715; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2889; + this.state = 2716; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2890; + this.state = 2717; this.match(HiveSqlParser.KW_NOT); - this.state = 2893; + this.state = 2720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2891; + this.state = 2718; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2892; + this.state = 2719; this.storedAsDirs(); } break; @@ -14149,61 +13302,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2895; + this.state = 2722; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2896; + this.state = 2723; this.partitionSpec(); - this.state = 2897; + this.state = 2724; this.match(HiveSqlParser.KW_WITH); - this.state = 2898; + this.state = 2725; this.match(HiveSqlParser.KW_TABLE); - this.state = 2899; + this.state = 2726; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2901; + this.state = 2728; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2902; + this.state = 2729; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2903; + this.state = 2730; this.match(HiveSqlParser.LPAREN); - this.state = 2904; + this.state = 2731; this.columnNameType(); - this.state = 2905; + this.state = 2732; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2907; + this.state = 2734; this.match(HiveSqlParser.KW_DROP); - this.state = 2908; + this.state = 2735; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2909; + this.state = 2736; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2910; + this.state = 2737; this.match(HiveSqlParser.KW_ADD); - this.state = 2913; + this.state = 2740; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2911; + this.state = 2738; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2912; + this.state = 2739; this.alterConstraintWithName(); } break; @@ -14213,52 +13366,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2916; + this.state = 2743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2915; + this.state = 2742; this.partitionSpec(); } } - this.state = 2918; + this.state = 2745; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2919; + this.state = 2746; this.match(HiveSqlParser.KW_SET); - this.state = 2920; + this.state = 2747; this.match(HiveSqlParser.KW_OWNER); - this.state = 2921; + this.state = 2748; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2922; + this.state = 2749; this.match(HiveSqlParser.KW_SET); - this.state = 2923; + this.state = 2750; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2924; + this.state = 2751; this.match(HiveSqlParser.KW_SPEC); - this.state = 2925; + this.state = 2752; this.match(HiveSqlParser.LPAREN); - this.state = 2926; + this.state = 2753; localContext._spec = this.partitionTransformSpec(); - this.state = 2927; + this.state = 2754; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2929; + this.state = 2756; this.alterStatementSuffixExecute(); } break; @@ -14280,65 +13433,65 @@ export class HiveSqlParser extends SQLParserBase { } public alterTblPartitionStatementSuffix(): AlterTblPartitionStatementSuffixContext { let localContext = new AlterTblPartitionStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 420, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); + this.enterRule(localContext, 364, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3064; + this.state = 2892; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2932; + this.state = 2759; this.match(HiveSqlParser.KW_SET); - this.state = 2933; + this.state = 2760; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2934; + this.state = 2761; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2935; + this.state = 2762; this.match(HiveSqlParser.KW_SET); - this.state = 2936; + this.state = 2763; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2937; + this.state = 2764; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2938; + this.state = 2765; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2939; + this.state = 2766; this.match(HiveSqlParser.KW_SET); - this.state = 2949; + this.state = 2776; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2940; + this.state = 2767; this.match(HiveSqlParser.KW_SERDE); - this.state = 2941; + this.state = 2768; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2945; + this.state = 2772; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: { - this.state = 2942; + this.state = 2769; this.match(HiveSqlParser.KW_WITH); - this.state = 2943; + this.state = 2770; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2944; + this.state = 2771; this.tableProperties(); } break; @@ -14347,9 +13500,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2947; + this.state = 2774; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2948; + this.state = 2775; this.tableProperties(); } break; @@ -14361,75 +13514,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2951; + this.state = 2778; this.match(HiveSqlParser.KW_UNSET); - this.state = 2952; + this.state = 2779; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2953; + this.state = 2780; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2954; + this.state = 2781; this.match(HiveSqlParser.KW_RENAME); - this.state = 2955; + this.state = 2782; this.match(HiveSqlParser.KW_TO); - this.state = 2956; + this.state = 2783; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2957; + this.state = 2784; this.match(HiveSqlParser.KW_INTO); - this.state = 2958; + this.state = 2785; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2959; + this.state = 2786; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2960; + this.state = 2787; this.match(HiveSqlParser.KW_SET); - this.state = 2961; + this.state = 2788; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2962; + this.state = 2789; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2963; + this.state = 2790; this.match(HiveSqlParser.LPAREN); - this.state = 2964; + this.state = 2791; this.skewedLocationMap(); - this.state = 2969; + this.state = 2796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2965; + this.state = 2792; this.match(HiveSqlParser.COMMA); - this.state = 2966; + this.state = 2793; this.skewedLocationMap(); } } - this.state = 2971; + this.state = 2798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2972; + this.state = 2799; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2974; + this.state = 2801; this.match(HiveSqlParser.KW_NOT); - this.state = 2975; + this.state = 2802; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14443,77 +13596,79 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2976; + this.state = 2803; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2977; + this.state = 2804; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2978; + this.state = 2805; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2981; + this.state = 2808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2979; + this.state = 2806; this.match(HiveSqlParser.KW_AND); - this.state = 2980; + this.state = 2807; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2987; + this.state = 2814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2983; + this.state = 2810; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2984; + this.state = 2811; this.match(HiveSqlParser.KW_INTO); - this.state = 2985; + this.state = 2812; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2986; + this.state = 2813; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2990; + this.state = 2817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2989; + this.state = 2816; this.orderByClause(); } } - this.state = 2993; + this.state = 2821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2992; - this.compactionPool(); + this.state = 2819; + this.match(HiveSqlParser.KW_POOL); + this.state = 2820; + localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2999; + this.state = 2827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2995; + this.state = 2823; this.match(HiveSqlParser.KW_WITH); - this.state = 2996; + this.state = 2824; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2997; + this.state = 2825; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2998; + this.state = 2826; this.tableProperties(); } break; @@ -14523,36 +13678,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3001; + this.state = 2829; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3002; + this.state = 2830; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3003; + this.state = 2831; this.match(HiveSqlParser.KW_FOR); - this.state = 3005; + this.state = 2833; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: { - this.state = 3004; + this.state = 2832; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3007; + this.state = 2835; localContext._colName = this.columnName(); - this.state = 3008; + this.state = 2836; this.match(HiveSqlParser.KW_SET); - this.state = 3009; + this.state = 2837; this.tableProperties(); - this.state = 3012; + this.state = 2840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3010; + this.state = 2838; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3011; + this.state = 2839; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14562,73 +13717,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3014; + this.state = 2842; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3015; + this.state = 2843; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3016; + this.state = 2844; this.match(HiveSqlParser.KW_SET); - this.state = 3017; + this.state = 2845; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3018; + this.state = 2846; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3020; + this.state = 2848; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: { - this.state = 3019; + this.state = 2847; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3022; + this.state = 2850; localContext._oldName = this.columnName(); - this.state = 3023; + this.state = 2851; localContext._newName = this.columnNameCreate(); - this.state = 3024; - this.columnType(); - this.state = 3026; + this.state = 2852; + this.type_(); + this.state = 2854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3025; - this.alterColumnConstraint(); + this.state = 2853; + this.columnConstraint(); } } - this.state = 3030; + this.state = 2858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3028; + this.state = 2856; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3029; + this.state = 2857; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3035; + this.state = 2863; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3032; + this.state = 2860; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3033; + this.state = 2861; this.match(HiveSqlParser.KW_AFTER); - this.state = 3034; + this.state = 2862; localContext._afterCol = this.id_(); } break; @@ -14684,12 +13839,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3038; + this.state = 2866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3037; + this.state = 2865; this.restrictOrCascade(); } } @@ -14699,38 +13854,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3042; + this.state = 2870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3040; + this.state = 2868; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3041; + this.state = 2869; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3044; + this.state = 2872; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3045; + this.state = 2873; this.match(HiveSqlParser.LPAREN); - this.state = 3046; + this.state = 2874; this.columnNameTypeList(); - this.state = 3047; + this.state = 2875; this.match(HiveSqlParser.RPAREN); - this.state = 3049; + this.state = 2877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3048; + this.state = 2876; this.restrictOrCascade(); } } @@ -14740,16 +13895,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3051; + this.state = 2879; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3052; + this.state = 2880; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3054; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3053; + this.state = 2881; this.restrictOrCascade(); } } @@ -14759,22 +13914,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3056; + this.state = 2884; this.enableSpecification(); - this.state = 3062; + this.state = 2890; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3057; + this.state = 2885; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3059; + this.state = 2887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3058; + this.state = 2886; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14784,7 +13939,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3061; + this.state = 2889; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14811,91 +13966,91 @@ export class HiveSqlParser extends SQLParserBase { } public alterViewStatementSuffix(): AlterViewStatementSuffixContext { let localContext = new AlterViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 422, HiveSqlParser.RULE_alterViewStatementSuffix); + this.enterRule(localContext, 366, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3092; + this.state = 2920; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3066; + this.state = 2894; this.match(HiveSqlParser.KW_SET); - this.state = 3067; + this.state = 2895; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3068; + this.state = 2896; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3069; + this.state = 2897; this.match(HiveSqlParser.KW_UNSET); - this.state = 3070; + this.state = 2898; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3072; + this.state = 2900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3071; + this.state = 2899; this.ifExists(); } } - this.state = 3074; + this.state = 2902; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3075; + this.state = 2903; this.match(HiveSqlParser.KW_RENAME); - this.state = 3076; + this.state = 2904; this.match(HiveSqlParser.KW_TO); - this.state = 3077; + this.state = 2905; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3078; + this.state = 2906; this.match(HiveSqlParser.KW_ADD); - this.state = 3080; + this.state = 2908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3079; + this.state = 2907; this.ifNotExists(); } } - this.state = 3086; + this.state = 2914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3082; + this.state = 2910; this.partitionSpec(); - this.state = 3084; + this.state = 2912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3083; + this.state = 2911; this.locationPath(); } } } } - this.state = 3088; + this.state = 2916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14904,7 +14059,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3090; + this.state = 2918; this.alterStatementSuffixDropPartitions(); } break; @@ -14916,7 +14071,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3091; + this.state = 2919; this.selectStatementWithCTE(); } break; @@ -14940,46 +14095,46 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseStatementSuffix(): AlterDatabaseStatementSuffixContext { let localContext = new AlterDatabaseStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDatabaseStatementSuffix); + this.enterRule(localContext, 368, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3109; + this.state = 2937; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3094; + this.state = 2922; localContext._name = this.dbSchemaName(); - this.state = 3095; + this.state = 2923; this.match(HiveSqlParser.KW_SET); - this.state = 3096; + this.state = 2924; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3097; + this.state = 2925; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3099; + this.state = 2927; localContext._dbName = this.dbSchemaName(); - this.state = 3100; + this.state = 2928; this.match(HiveSqlParser.KW_SET); - this.state = 3101; + this.state = 2929; this.match(HiveSqlParser.KW_OWNER); - this.state = 3102; + this.state = 2930; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3104; + this.state = 2932; localContext._dbName = this.dbSchemaName(); - this.state = 3105; + this.state = 2933; this.match(HiveSqlParser.KW_SET); - this.state = 3106; + this.state = 2934; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -14988,7 +14143,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3107; + this.state = 2935; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -15010,47 +14165,47 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorStatementSuffix(): AlterDataConnectorStatementSuffixContext { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 426, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); + this.enterRule(localContext, 370, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3126; + this.state = 2954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3111; + this.state = 2939; localContext._name = this.dbSchemaName(); - this.state = 3112; + this.state = 2940; this.match(HiveSqlParser.KW_SET); - this.state = 3113; + this.state = 2941; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3114; + this.state = 2942; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3116; + this.state = 2944; localContext._dcName = this.dbSchemaName(); - this.state = 3117; + this.state = 2945; this.match(HiveSqlParser.KW_SET); - this.state = 3118; + this.state = 2946; this.match(HiveSqlParser.KW_OWNER); - this.state = 3119; + this.state = 2947; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3121; + this.state = 2949; localContext._dcName = this.dbSchemaName(); - this.state = 3122; + this.state = 2950; this.match(HiveSqlParser.KW_SET); - this.state = 3123; + this.state = 2951; this.match(HiveSqlParser.KW_URL); - this.state = 3124; + this.state = 2952; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -15072,13 +14227,13 @@ export class HiveSqlParser extends SQLParserBase { } public locationPath(): LocationPathContext { let localContext = new LocationPathContext(this.context, this.state); - this.enterRule(localContext, 428, HiveSqlParser.RULE_locationPath); + this.enterRule(localContext, 372, HiveSqlParser.RULE_locationPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 3128; + this.state = 2956; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3129; + this.state = 2957; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15098,73 +14253,73 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixDropPartitions(): AlterStatementSuffixDropPartitionsContext { let localContext = new AlterStatementSuffixDropPartitionsContext(this.context, this.state); - this.enterRule(localContext, 430, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); + this.enterRule(localContext, 374, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3131; + this.state = 2959; this.match(HiveSqlParser.KW_DROP); - this.state = 3133; + this.state = 2961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3132; + this.state = 2960; this.ifExists(); } } - this.state = 3135; + this.state = 2963; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3136; + this.state = 2964; this.partitionSelectorSpec(); - this.state = 3142; + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3137; + this.state = 2965; this.match(HiveSqlParser.COMMA); - this.state = 3138; + this.state = 2966; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3139; + this.state = 2967; this.partitionSelectorSpec(); } } - this.state = 3144; + this.state = 2972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3147; + this.state = 2975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3145; + this.state = 2973; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3146; + this.state = 2974; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3150; + this.state = 2978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3149; + this.state = 2977; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3153; + this.state = 2981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3152; + this.state = 2980; this.replicationClause(); } } @@ -15187,11 +14342,11 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocationMap(): SkewedLocationMapContext { let localContext = new SkewedLocationMapContext(this.context, this.state); - this.enterRule(localContext, 432, HiveSqlParser.RULE_skewedLocationMap); + this.enterRule(localContext, 376, HiveSqlParser.RULE_skewedLocationMap); try { this.enterOuterAlt(localContext, 1); { - this.state = 3157; + this.state = 2985; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -15449,22 +14604,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3155; + this.state = 2983; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3156; + this.state = 2984; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3159; + this.state = 2987; this.match(HiveSqlParser.EQUAL); - this.state = 3160; + this.state = 2988; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -15484,23 +14639,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixExecute(): AlterStatementSuffixExecuteContext { let localContext = new AlterStatementSuffixExecuteContext(this.context, this.state); - this.enterRule(localContext, 434, HiveSqlParser.RULE_alterStatementSuffixExecute); + this.enterRule(localContext, 378, HiveSqlParser.RULE_alterStatementSuffixExecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3162; + this.state = 2990; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3172; + this.state = 3000; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3163; + this.state = 2991; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3164; + this.state = 2992; this.match(HiveSqlParser.LPAREN); - this.state = 3165; + this.state = 2993; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -15514,28 +14669,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3166; + this.state = 2994; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3167; + this.state = 2995; this.match(HiveSqlParser.LPAREN); - this.state = 3168; + this.state = 2996; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3169; + this.state = 2997; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3170; + this.state = 2998; this.match(HiveSqlParser.LPAREN); - this.state = 3171; + this.state = 2999; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3174; + this.state = 3002; this.match(HiveSqlParser.RPAREN); } } @@ -15555,39 +14710,39 @@ export class HiveSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 436, HiveSqlParser.RULE_fileFormat); + this.enterRule(localContext, 380, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3189; + this.state = 3017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3176; + this.state = 3004; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3177; + this.state = 3005; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3178; + this.state = 3006; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3179; + this.state = 3007; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3180; + this.state = 3008; this.match(HiveSqlParser.KW_SERDE); - this.state = 3181; + this.state = 3009; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3186; + this.state = 3014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3182; + this.state = 3010; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3183; + this.state = 3011; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3184; + this.state = 3012; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3185; + this.state = 3013; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15597,7 +14752,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3188; + this.state = 3016; localContext._genericSpec = this.id_(); } break; @@ -15619,39 +14774,39 @@ export class HiveSqlParser extends SQLParserBase { } public likeTableOrFile(): LikeTableOrFileContext { let localContext = new LikeTableOrFileContext(this.context, this.state); - this.enterRule(localContext, 438, HiveSqlParser.RULE_likeTableOrFile); + this.enterRule(localContext, 382, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3200; + this.state = 3028; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3191; + this.state = 3019; this.match(HiveSqlParser.KW_LIKE); - this.state = 3192; + this.state = 3020; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3193; + this.state = 3021; this.match(HiveSqlParser.KW_LIKE); - this.state = 3194; + this.state = 3022; this.match(HiveSqlParser.KW_FILE); - this.state = 3195; + this.state = 3023; localContext._format = this.id_(); - this.state = 3196; + this.state = 3024; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3198; + this.state = 3026; this.match(HiveSqlParser.KW_LIKE); - this.state = 3199; + this.state = 3027; localContext._likeName = this.tableName(); } break; @@ -15673,124 +14828,128 @@ export class HiveSqlParser extends SQLParserBase { } public createTableStatement(): CreateTableStatementContext { let localContext = new CreateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 440, HiveSqlParser.RULE_createTableStatement); + this.enterRule(localContext, 384, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3337; + this.enterOuterAlt(localContext, 1); + { + this.state = 3030; + this.match(HiveSqlParser.KW_CREATE); + this.state = 3164; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_EXTERNAL: + case HiveSqlParser.KW_TABLE: + case HiveSqlParser.KW_TEMPORARY: + case HiveSqlParser.KW_TRANSACTIONAL: { - this.state = 3202; - this.match(HiveSqlParser.KW_CREATE); - this.state = 3204; + this.state = 3032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 3203; + this.state = 3031; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3207; + this.state = 3035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3206; + this.state = 3034; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3210; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3209; + this.state = 3037; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3212; + this.state = 3040; this.match(HiveSqlParser.KW_TABLE); - this.state = 3214; + this.state = 3042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3213; + this.state = 3041; this.ifNotExists(); } } - this.state = 3216; + this.state = 3044; localContext._name = this.tableNameCreate(); - this.state = 3273; + this.state = 3101; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3217; + this.state = 3045; this.likeTableOrFile(); - this.state = 3219; + this.state = 3047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3218; + this.state = 3046; this.createTablePartitionSpec(); } } - this.state = 3222; + this.state = 3050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3221; - this.tableRowFormat(); + this.state = 3049; + this.rowFormat(); } } - this.state = 3225; + this.state = 3053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3224; + this.state = 3052; this.tableFileFormat(); } } - this.state = 3228; + this.state = 3056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3227; + this.state = 3055; this.locationPath(); } } - this.state = 3231; + this.state = 3059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3230; + this.state = 3058; this.tablePropertiesPrefixed(); } } - this.state = 3234; + this.state = 3062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3233; + this.state = 3061; this.tableLifecycle(); } } @@ -15854,118 +15013,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3240; + this.state = 3068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { - this.state = 3236; + this.state = 3064; this.match(HiveSqlParser.LPAREN); - this.state = 3237; + this.state = 3065; this.columnNameTypeOrConstraintList(); - this.state = 3238; + this.state = 3066; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3243; + this.state = 3071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3242; + this.state = 3070; this.tableComment(); } } - this.state = 3246; + this.state = 3074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3245; + this.state = 3073; this.createTablePartitionSpec(); } } - this.state = 3249; + this.state = 3077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3248; + this.state = 3076; this.tableBuckets(); } } - this.state = 3252; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3251; + this.state = 3079; this.tableSkewed(); } } - this.state = 3255; + this.state = 3083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3254; - this.tableRowFormat(); + this.state = 3082; + this.rowFormat(); } } - this.state = 3258; + this.state = 3086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3257; + this.state = 3085; this.tableFileFormat(); } } - this.state = 3261; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3260; + this.state = 3088; this.locationPath(); } } - this.state = 3264; + this.state = 3092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3263; + this.state = 3091; this.tablePropertiesPrefixed(); } } - this.state = 3267; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3266; + this.state = 3094; this.tableLifecycle(); } } - this.state = 3271; + this.state = 3099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3269; + this.state = 3097; this.match(HiveSqlParser.KW_AS); - this.state = 3270; + this.state = 3098; this.selectStatementWithCTE(); } } @@ -15977,80 +15136,77 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 2: - this.enterOuterAlt(localContext, 2); + case HiveSqlParser.KW_MANAGED: { - this.state = 3275; - this.match(HiveSqlParser.KW_CREATE); - this.state = 3276; + this.state = 3103; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3277; + this.state = 3104; this.match(HiveSqlParser.KW_TABLE); - this.state = 3279; + this.state = 3106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3278; + this.state = 3105; this.ifNotExists(); } } - this.state = 3281; + this.state = 3108; localContext._name = this.tableNameCreate(); - this.state = 3335; + this.state = 3162; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3282; + this.state = 3109; this.likeTableOrFile(); - this.state = 3284; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3283; - this.tableRowFormat(); + this.state = 3110; + this.rowFormat(); } } - this.state = 3287; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3286; + this.state = 3113; this.tableFileFormat(); } } - this.state = 3290; + this.state = 3117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3289; + this.state = 3116; this.locationPath(); } } - this.state = 3293; + this.state = 3120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3292; + this.state = 3119; this.tablePropertiesPrefixed(); } } - this.state = 3296; + this.state = 3123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3295; + this.state = 3122; this.tableLifecycle(); } } @@ -16114,118 +15270,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3302; + this.state = 3129; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { - this.state = 3298; + this.state = 3125; this.match(HiveSqlParser.LPAREN); - this.state = 3299; + this.state = 3126; this.columnNameTypeOrConstraintList(); - this.state = 3300; + this.state = 3127; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3305; + this.state = 3132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3304; + this.state = 3131; this.tableComment(); } } - this.state = 3308; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3307; + this.state = 3134; this.createTablePartitionSpec(); } } - this.state = 3311; + this.state = 3138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3310; + this.state = 3137; this.tableBuckets(); } } - this.state = 3314; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3313; + this.state = 3140; this.tableSkewed(); } } - this.state = 3317; + this.state = 3144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3316; - this.tableRowFormat(); + this.state = 3143; + this.rowFormat(); } } - this.state = 3320; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3319; + this.state = 3146; this.tableFileFormat(); } } - this.state = 3323; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3322; + this.state = 3149; this.locationPath(); } } - this.state = 3326; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3325; + this.state = 3152; this.tablePropertiesPrefixed(); } } - this.state = 3329; + this.state = 3156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3328; + this.state = 3155; this.tableLifecycle(); } } - this.state = 3333; + this.state = 3160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3331; + this.state = 3158; this.match(HiveSqlParser.KW_AS); - this.state = 3332; + this.state = 3159; this.selectStatementWithCTE(); } } @@ -16237,6 +15393,9 @@ export class HiveSqlParser extends SQLParserBase { } } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -16255,73 +15414,73 @@ export class HiveSqlParser extends SQLParserBase { } public createDataConnectorStatement(): CreateDataConnectorStatementContext { let localContext = new CreateDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 442, HiveSqlParser.RULE_createDataConnectorStatement); + this.enterRule(localContext, 386, HiveSqlParser.RULE_createDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3339; + this.state = 3166; this.match(HiveSqlParser.KW_CREATE); - this.state = 3340; + this.state = 3167; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3342; + this.state = 3169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3341; + this.state = 3168; this.ifNotExists(); } } - this.state = 3344; + this.state = 3171; localContext._name = this.id_(); - this.state = 3347; + this.state = 3174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3345; + this.state = 3172; this.match(HiveSqlParser.KW_TYPE); - this.state = 3346; + this.state = 3173; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3351; + this.state = 3178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3349; + this.state = 3176; this.match(HiveSqlParser.KW_URL); - this.state = 3350; + this.state = 3177; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3355; + this.state = 3182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3353; + this.state = 3180; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3354; + this.state = 3181; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3360; + this.state = 3187; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3357; + this.state = 3184; this.match(HiveSqlParser.KW_WITH); - this.state = 3358; + this.state = 3185; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3359; + this.state = 3186; localContext._dcprops = this.keyValueProperties(); } break; @@ -16344,26 +15503,26 @@ export class HiveSqlParser extends SQLParserBase { } public dropDataConnectorStatement(): DropDataConnectorStatementContext { let localContext = new DropDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 444, HiveSqlParser.RULE_dropDataConnectorStatement); + this.enterRule(localContext, 388, HiveSqlParser.RULE_dropDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3362; + this.state = 3189; this.match(HiveSqlParser.KW_DROP); - this.state = 3363; + this.state = 3190; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3365; + this.state = 3192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3364; + this.state = 3191; this.ifExists(); } } - this.state = 3367; + this.state = 3194; this.id_(); } } @@ -16383,28 +15542,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 446, HiveSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 390, HiveSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3374; + this.state = 3201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3369; + this.state = 3196; this.id_(); - this.state = 3370; + this.state = 3197; this.match(HiveSqlParser.DOT); } } - this.state = 3376; + this.state = 3203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3377; + this.state = 3204; this.match(HiveSqlParser.STAR); } } @@ -16424,26 +15583,26 @@ export class HiveSqlParser extends SQLParserBase { } public expressionList(): ExpressionListContext { let localContext = new ExpressionListContext(this.context, this.state); - this.enterRule(localContext, 448, HiveSqlParser.RULE_expressionList); + this.enterRule(localContext, 392, HiveSqlParser.RULE_expressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3379; + this.state = 3206; this.expression(); - this.state = 3384; + this.state = 3211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3380; + this.state = 3207; this.match(HiveSqlParser.COMMA); - this.state = 3381; + this.state = 3208; this.expression(); } } - this.state = 3386; + this.state = 3213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16465,26 +15624,26 @@ export class HiveSqlParser extends SQLParserBase { } public aliasList(): AliasListContext { let localContext = new AliasListContext(this.context, this.state); - this.enterRule(localContext, 450, HiveSqlParser.RULE_aliasList); + this.enterRule(localContext, 394, HiveSqlParser.RULE_aliasList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3387; + this.state = 3214; this.id_(); - this.state = 3392; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3388; + this.state = 3215; this.match(HiveSqlParser.COMMA); - this.state = 3389; + this.state = 3216; this.id_(); } } - this.state = 3394; + this.state = 3221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16506,13 +15665,13 @@ export class HiveSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 452, HiveSqlParser.RULE_fromClause); + this.enterRule(localContext, 396, HiveSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3395; + this.state = 3222; this.match(HiveSqlParser.KW_FROM); - this.state = 3396; + this.state = 3223; this.fromSource(); } } @@ -16532,32 +15691,32 @@ export class HiveSqlParser extends SQLParserBase { } public fromSource(): FromSourceContext { let localContext = new FromSourceContext(this.context, this.state); - this.enterRule(localContext, 454, HiveSqlParser.RULE_fromSource); + this.enterRule(localContext, 398, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3407; + this.state = 3234; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3398; + this.state = 3225; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3399; + this.state = 3226; this.uniqueJoinSource(); - this.state = 3402; + this.state = 3229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3400; + this.state = 3227; this.match(HiveSqlParser.COMMA); - this.state = 3401; + this.state = 3228; this.uniqueJoinSource(); } } - this.state = 3404; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16807,7 +15966,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3406; + this.state = 3233; this.joinSource(); } break; @@ -16831,112 +15990,112 @@ export class HiveSqlParser extends SQLParserBase { } public atomjoinSource(): AtomjoinSourceContext { let localContext = new AtomjoinSourceContext(this.context, this.state); - this.enterRule(localContext, 456, HiveSqlParser.RULE_atomjoinSource); + this.enterRule(localContext, 400, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3441; + this.state = 3268; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3409; + this.state = 3236; this.tableSource(); - this.state = 3413; + this.state = 3240; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 429, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3410; + this.state = 3237; this.lateralView(); } } } - this.state = 3415; + this.state = 3242; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 429, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3416; + this.state = 3243; this.virtualTableSource(); - this.state = 3420; + this.state = 3247; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 430, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3417; + this.state = 3244; this.lateralView(); } } } - this.state = 3422; + this.state = 3249; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 430, this.context); } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3423; + this.state = 3250; this.subQuerySource(); - this.state = 3427; + this.state = 3254; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 431, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3424; + this.state = 3251; this.lateralView(); } } } - this.state = 3429; + this.state = 3256; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 431, this.context); } } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3430; + this.state = 3257; this.partitionedTableFunction(); - this.state = 3434; + this.state = 3261; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 432, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3431; + this.state = 3258; this.lateralView(); } } } - this.state = 3436; + this.state = 3263; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 432, this.context); } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3437; + this.state = 3264; this.match(HiveSqlParser.LPAREN); - this.state = 3438; + this.state = 3265; this.joinSource(); - this.state = 3439; + this.state = 3266; this.match(HiveSqlParser.RPAREN); } break; @@ -16958,51 +16117,51 @@ export class HiveSqlParser extends SQLParserBase { } public joinSource(): JoinSourceContext { let localContext = new JoinSourceContext(this.context, this.state); - this.enterRule(localContext, 458, HiveSqlParser.RULE_joinSource); + this.enterRule(localContext, 402, HiveSqlParser.RULE_joinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3443; + this.state = 3270; this.atomjoinSource(); - this.state = 3461; + this.state = 3288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3444; + this.state = 3271; this.joinToken(); - this.state = 3445; + this.state = 3272; this.joinSourcePart(); - this.state = 3457; + this.state = 3284; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3446; + this.state = 3273; this.match(HiveSqlParser.KW_ON); - this.state = 3453; + this.state = 3280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3447; + this.state = 3274; this.expression(); } break; case 2: { - this.state = 3448; + this.state = 3275; this.columnNamePathAllowEmpty(); - this.state = 3451; + this.state = 3278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 3449; + this.state = 3276; this.match(HiveSqlParser.EQUAL); - this.state = 3450; + this.state = 3277; this.columnNamePathAllowEmpty(); } } @@ -17014,9 +16173,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_USING: { - this.state = 3455; + this.state = 3282; this.match(HiveSqlParser.KW_USING); - this.state = 3456; + this.state = 3283; this.columnParenthesesList(); } break; @@ -17094,7 +16253,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3463; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17116,54 +16275,54 @@ export class HiveSqlParser extends SQLParserBase { } public joinSourcePart(): JoinSourcePartContext { let localContext = new JoinSourcePartContext(this.context, this.state); - this.enterRule(localContext, 460, HiveSqlParser.RULE_joinSourcePart); + this.enterRule(localContext, 404, HiveSqlParser.RULE_joinSourcePart); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3468; + this.state = 3295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3464; + this.state = 3291; this.tableSource(); } break; case 2: { - this.state = 3465; + this.state = 3292; this.virtualTableSource(); } break; case 3: { - this.state = 3466; + this.state = 3293; this.subQuerySource(); } break; case 4: { - this.state = 3467; + this.state = 3294; this.partitionedTableFunction(); } break; } - this.state = 3473; + this.state = 3300; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 444, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 439, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3470; + this.state = 3297; this.lateralView(); } } } - this.state = 3475; + this.state = 3302; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 444, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 439, this.context); } } } @@ -17183,58 +16342,58 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinSource(): UniqueJoinSourceContext { let localContext = new UniqueJoinSourceContext(this.context, this.state); - this.enterRule(localContext, 462, HiveSqlParser.RULE_uniqueJoinSource); + this.enterRule(localContext, 406, HiveSqlParser.RULE_uniqueJoinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3477; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3476; + this.state = 3303; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3479; + this.state = 3306; localContext._tabname = this.tableOrView(); - this.state = 3481; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3480; + this.state = 3307; localContext._ts = this.tableSample(); } } - this.state = 3487; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3484; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3483; + this.state = 3310; this.match(HiveSqlParser.KW_AS); } } - this.state = 3486; + this.state = 3313; localContext._alias = this.id_(); } } - this.state = 3489; + this.state = 3316; this.match(HiveSqlParser.LPAREN); - this.state = 3490; + this.state = 3317; this.expressionList(); - this.state = 3491; + this.state = 3318; this.match(HiveSqlParser.RPAREN); } } @@ -17254,16 +16413,16 @@ export class HiveSqlParser extends SQLParserBase { } public joinToken(): JoinTokenContext { let localContext = new JoinTokenContext(this.context, this.state); - this.enterRule(localContext, 464, HiveSqlParser.RULE_joinToken); + this.enterRule(localContext, 408, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3507; + this.state = 3334; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3493; + this.state = 3320; this.match(HiveSqlParser.COMMA); } break; @@ -17275,25 +16434,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3504; + this.state = 3331; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3494; + this.state = 3321; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3495; + this.state = 3322; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3496; + this.state = 3323; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -17302,12 +16461,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3498; + this.state = 3325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3497; + this.state = 3324; this.match(HiveSqlParser.KW_OUTER); } } @@ -17316,14 +16475,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3500; + this.state = 3327; this.match(HiveSqlParser.KW_LEFT); - this.state = 3502; + this.state = 3329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3501; + this.state = 3328; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -17342,7 +16501,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3506; + this.state = 3333; this.match(HiveSqlParser.KW_JOIN); } break; @@ -17366,52 +16525,52 @@ export class HiveSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 466, HiveSqlParser.RULE_lateralView); + this.enterRule(localContext, 410, HiveSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; - this.state = 3566; + this.state = 3393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3509; + this.state = 3336; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3510; + this.state = 3337; this.match(HiveSqlParser.KW_VIEW); - this.state = 3511; + this.state = 3338; this.match(HiveSqlParser.KW_OUTER); - this.state = 3512; + this.state = 3339; this.function_(); - this.state = 3513; + this.state = 3340; localContext._alias = this.tableAlias(); - this.state = 3523; + this.state = 3350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3514; + this.state = 3341; this.match(HiveSqlParser.KW_AS); - this.state = 3515; + this.state = 3342; this.id_(); - this.state = 3520; + this.state = 3347; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3516; + this.state = 3343; this.match(HiveSqlParser.COMMA); - this.state = 3517; + this.state = 3344; this.id_(); } } } - this.state = 3522; + this.state = 3349; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); } } } @@ -17421,55 +16580,55 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3526; + this.state = 3353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3525; + this.state = 3352; this.match(HiveSqlParser.COMMA); } } - this.state = 3528; + this.state = 3355; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3564; + this.state = 3391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3529; + this.state = 3356; this.match(HiveSqlParser.KW_VIEW); - this.state = 3530; + this.state = 3357; this.function_(); - this.state = 3531; + this.state = 3358; localContext._alias = this.tableAlias(); - this.state = 3541; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3532; + this.state = 3359; this.match(HiveSqlParser.KW_AS); - this.state = 3533; + this.state = 3360; this.id_(); - this.state = 3538; + this.state = 3365; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3534; + this.state = 3361; this.match(HiveSqlParser.COMMA); - this.state = 3535; + this.state = 3362; this.id_(); } } } - this.state = 3540; + this.state = 3367; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } } } @@ -17478,52 +16637,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3543; + this.state = 3370; this.match(HiveSqlParser.KW_TABLE); - this.state = 3544; + this.state = 3371; this.match(HiveSqlParser.LPAREN); - this.state = 3545; + this.state = 3372; this.valuesClause(); - this.state = 3546; + this.state = 3373; this.match(HiveSqlParser.RPAREN); - this.state = 3548; + this.state = 3375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3547; + this.state = 3374; this.match(HiveSqlParser.KW_AS); } } - this.state = 3550; + this.state = 3377; localContext._alias = this.tableAlias(); - this.state = 3562; + this.state = 3389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3551; + this.state = 3378; this.match(HiveSqlParser.LPAREN); - this.state = 3552; + this.state = 3379; this.id_(); - this.state = 3557; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3553; + this.state = 3380; this.match(HiveSqlParser.COMMA); - this.state = 3554; + this.state = 3381; this.id_(); } } - this.state = 3559; + this.state = 3386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3560; + this.state = 3387; this.match(HiveSqlParser.RPAREN); } break; @@ -17553,11 +16712,11 @@ export class HiveSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 468, HiveSqlParser.RULE_tableAlias); + this.enterRule(localContext, 412, HiveSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 3568; + this.state = 3395; this.id_(); } } @@ -17577,78 +16736,78 @@ export class HiveSqlParser extends SQLParserBase { } public tableSample(): TableSampleContext { let localContext = new TableSampleContext(this.context, this.state); - this.enterRule(localContext, 470, HiveSqlParser.RULE_tableSample); + this.enterRule(localContext, 414, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3597; + this.state = 3424; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3570; + this.state = 3397; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3571; + this.state = 3398; this.match(HiveSqlParser.LPAREN); - this.state = 3572; + this.state = 3399; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3573; + this.state = 3400; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3574; + this.state = 3401; this.match(HiveSqlParser.KW_OUT); - this.state = 3575; + this.state = 3402; this.match(HiveSqlParser.KW_OF); - this.state = 3576; + this.state = 3403; localContext._denominator = this.match(HiveSqlParser.Number); - this.state = 3586; + this.state = 3413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3577; + this.state = 3404; this.match(HiveSqlParser.KW_ON); - this.state = 3578; + this.state = 3405; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3583; + this.state = 3410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3579; + this.state = 3406; this.match(HiveSqlParser.COMMA); - this.state = 3580; + this.state = 3407; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3585; + this.state = 3412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3588; + this.state = 3415; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3589; + this.state = 3416; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3590; + this.state = 3417; this.match(HiveSqlParser.LPAREN); - this.state = 3594; + this.state = 3421; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3591; + this.state = 3418; this.match(HiveSqlParser.Number); - this.state = 3592; + this.state = 3419; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17661,14 +16820,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3593; + this.state = 3420; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3596; + this.state = 3423; this.match(HiveSqlParser.RPAREN); } break; @@ -17690,59 +16849,59 @@ export class HiveSqlParser extends SQLParserBase { } public tableSource(): TableSourceContext { let localContext = new TableSourceContext(this.context, this.state); - this.enterRule(localContext, 472, HiveSqlParser.RULE_tableSource); + this.enterRule(localContext, 416, HiveSqlParser.RULE_tableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3599; + this.state = 3426; localContext._tabname = this.tableOrView(); - this.state = 3601; + this.state = 3428; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3600; + this.state = 3427; localContext._props = this.tableProperties(); } break; } - this.state = 3604; + this.state = 3431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3603; + this.state = 3430; localContext._ts = this.tableSample(); } } - this.state = 3607; + this.state = 3434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3606; + this.state = 3433; localContext._asOf = this.asOfClause(); } } - this.state = 3613; + this.state = 3440; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3610; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3609; + this.state = 3436; this.match(HiveSqlParser.KW_AS); } } - this.state = 3612; + this.state = 3439; localContext._alias = this.id_(); } break; @@ -17765,38 +16924,38 @@ export class HiveSqlParser extends SQLParserBase { } public asOfClause(): AsOfClauseContext { let localContext = new AsOfClauseContext(this.context, this.state); - this.enterRule(localContext, 474, HiveSqlParser.RULE_asOfClause); + this.enterRule(localContext, 418, HiveSqlParser.RULE_asOfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3615; + this.state = 3442; this.match(HiveSqlParser.KW_FOR); - this.state = 3625; + this.state = 3452; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3616; + this.state = 3443; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3617; + this.state = 3444; this.match(HiveSqlParser.KW_AS); - this.state = 3618; + this.state = 3445; this.match(HiveSqlParser.KW_OF); - this.state = 3619; + this.state = 3446; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3620; + this.state = 3447; this.match(HiveSqlParser.KW_FOR); - this.state = 3621; + this.state = 3448; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3622; + this.state = 3449; this.match(HiveSqlParser.KW_AS); - this.state = 3623; + this.state = 3450; this.match(HiveSqlParser.KW_OF); - this.state = 3624; + this.state = 3451; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17821,11 +16980,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaName(): DbSchemaNameContext { let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 476, HiveSqlParser.RULE_dbSchemaName); + this.enterRule(localContext, 420, HiveSqlParser.RULE_dbSchemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3627; + this.state = 3454; this.id_(); } } @@ -17845,11 +17004,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaNameCreate(): DbSchemaNameCreateContext { let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 478, HiveSqlParser.RULE_dbSchemaNameCreate); + this.enterRule(localContext, 422, HiveSqlParser.RULE_dbSchemaNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3629; + this.state = 3456; this.id_(); } } @@ -17869,22 +17028,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrView(): TableOrViewContext { let localContext = new TableOrViewContext(this.context, this.state); - this.enterRule(localContext, 480, HiveSqlParser.RULE_tableOrView); + this.enterRule(localContext, 424, HiveSqlParser.RULE_tableOrView); try { - this.state = 3633; + this.state = 3460; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3631; + this.state = 3458; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3632; + this.state = 3459; this.viewName(); } break; @@ -17906,28 +17065,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 482, HiveSqlParser.RULE_tableName); + this.enterRule(localContext, 426, HiveSqlParser.RULE_tableName); try { - this.state = 3643; + this.state = 3470; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3462; localContext._db = this.id_(); - this.state = 3636; + this.state = 3463; this.match(HiveSqlParser.DOT); - this.state = 3637; + this.state = 3464; localContext._tab = this.id_(); - this.state = 3640; + this.state = 3467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3638; + this.state = 3465; this.match(HiveSqlParser.DOT); - this.state = 3639; + this.state = 3466; localContext._meta = this.id_(); } break; @@ -17937,7 +17096,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3642; + this.state = 3469; localContext._tab = this.id_(); } break; @@ -17959,29 +17118,29 @@ export class HiveSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 484, HiveSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 428, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3653; + this.state = 3480; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3645; + this.state = 3472; localContext._db = this.id_(); - this.state = 3646; + this.state = 3473; this.match(HiveSqlParser.DOT); - this.state = 3647; + this.state = 3474; localContext._tab = this.id_(); - this.state = 3650; + this.state = 3477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3648; + this.state = 3475; this.match(HiveSqlParser.DOT); - this.state = 3649; + this.state = 3476; localContext._meta = this.id_(); } } @@ -17991,7 +17150,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3652; + this.state = 3479; localContext._tab = this.id_(); } break; @@ -18013,23 +17172,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 486, HiveSqlParser.RULE_viewName); + this.enterRule(localContext, 430, HiveSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3658; + this.state = 3485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 3655; + this.state = 3482; localContext._db = this.id_(); - this.state = 3656; + this.state = 3483; this.match(HiveSqlParser.DOT); } break; } - this.state = 3660; + this.state = 3487; localContext._view = this.id_(); } } @@ -18049,23 +17208,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 488, HiveSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 432, HiveSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3665; + this.state = 3492; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: { - this.state = 3662; + this.state = 3489; localContext._db = this.id_(); - this.state = 3663; + this.state = 3490; this.match(HiveSqlParser.DOT); } break; } - this.state = 3667; + this.state = 3494; localContext._view = this.id_(); } } @@ -18085,28 +17244,28 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySource(): SubQuerySourceContext { let localContext = new SubQuerySourceContext(this.context, this.state); - this.enterRule(localContext, 490, HiveSqlParser.RULE_subQuerySource); + this.enterRule(localContext, 434, HiveSqlParser.RULE_subQuerySource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3669; + this.state = 3496; this.match(HiveSqlParser.LPAREN); - this.state = 3670; + this.state = 3497; this.queryStatementExpression(); - this.state = 3671; + this.state = 3498; this.match(HiveSqlParser.RPAREN); - this.state = 3673; + this.state = 3500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3672; + this.state = 3499; this.match(HiveSqlParser.KW_AS); } } - this.state = 3675; + this.state = 3502; localContext._alias = this.id_(); } } @@ -18126,23 +17285,23 @@ export class HiveSqlParser extends SQLParserBase { } public partitioningSpec(): PartitioningSpecContext { let localContext = new PartitioningSpecContext(this.context, this.state); - this.enterRule(localContext, 492, HiveSqlParser.RULE_partitioningSpec); + this.enterRule(localContext, 436, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3688; + this.state = 3515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3677; + this.state = 3504; this.partitionByClause(); - this.state = 3679; + this.state = 3506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3678; + this.state = 3505; this.orderByClause(); } } @@ -18152,21 +17311,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3681; + this.state = 3508; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3682; + this.state = 3509; this.distributeByClause(); - this.state = 3684; + this.state = 3511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3683; + this.state = 3510; this.sortByClause(); } } @@ -18176,14 +17335,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3686; + this.state = 3513; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3687; + this.state = 3514; this.clusterByClause(); } break; @@ -18207,29 +17366,29 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionTableFunctionSource); + this.enterRule(localContext, 438, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3693; + this.state = 3520; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3690; + this.state = 3517; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3691; + this.state = 3518; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3692; + this.state = 3519; this.partitionedTableFunction(); } break; @@ -18251,18 +17410,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_partitionedTableFunction); + this.enterRule(localContext, 440, HiveSqlParser.RULE_partitionedTableFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 3695; + this.state = 3522; this.atomPartitionedTableFunction(); - this.state = 3697; + this.state = 3524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { case 1: { - this.state = 3696; + this.state = 3523; localContext._alias = this.id_(); } break; @@ -18285,68 +17444,68 @@ export class HiveSqlParser extends SQLParserBase { } public atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { let localContext = new AtomPartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_atomPartitionedTableFunction); + this.enterRule(localContext, 442, HiveSqlParser.RULE_atomPartitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3699; + this.state = 3526; localContext._n = this.id_(); - this.state = 3700; + this.state = 3527; this.match(HiveSqlParser.LPAREN); - this.state = 3701; + this.state = 3528; this.match(HiveSqlParser.KW_ON); - this.state = 3702; + this.state = 3529; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3704; + this.state = 3531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3703; + this.state = 3530; localContext._spec = this.partitioningSpec(); } } - this.state = 3721; + this.state = 3548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 432) { { - this.state = 3706; + this.state = 3533; this.match(HiveSqlParser.Identifier); - this.state = 3707; + this.state = 3534; this.match(HiveSqlParser.LPAREN); - this.state = 3708; + this.state = 3535; this.expression(); - this.state = 3709; + this.state = 3536; this.match(HiveSqlParser.RPAREN); - this.state = 3718; + this.state = 3545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3710; + this.state = 3537; this.match(HiveSqlParser.COMMA); - this.state = 3711; + this.state = 3538; this.match(HiveSqlParser.Identifier); - this.state = 3712; + this.state = 3539; this.match(HiveSqlParser.LPAREN); - this.state = 3713; + this.state = 3540; this.expression(); - this.state = 3714; + this.state = 3541; this.match(HiveSqlParser.RPAREN); } } - this.state = 3720; + this.state = 3547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3723; + this.state = 3550; this.match(HiveSqlParser.RPAREN); } } @@ -18366,24 +17525,24 @@ export class HiveSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 444, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3725; + this.state = 3552; this.match(HiveSqlParser.KW_WHERE); - this.state = 3728; + this.state = 3555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { case 1: { - this.state = 3726; + this.state = 3553; this.expression(); } break; case 2: { - this.state = 3727; + this.state = 3554; this.columnNamePathAllowEmpty(); } break; @@ -18406,33 +17565,33 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 446, HiveSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3730; + this.state = 3557; this.match(HiveSqlParser.KW_VALUES); - this.state = 3749; + this.state = 3576; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: { - this.state = 3731; + this.state = 3558; this.expressionsInParenthesis(); - this.state = 3736; + this.state = 3563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3732; + this.state = 3559; this.match(HiveSqlParser.COMMA); - this.state = 3733; + this.state = 3560; this.expressionsInParenthesis(); } } - this.state = 3738; + this.state = 3565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18440,25 +17599,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3739; + this.state = 3566; this.match(HiveSqlParser.LPAREN); - this.state = 3740; + this.state = 3567; this.firstExpressionsWithAlias(); - this.state = 3741; + this.state = 3568; this.match(HiveSqlParser.RPAREN); - this.state = 3746; + this.state = 3573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3742; + this.state = 3569; this.match(HiveSqlParser.COMMA); - this.state = 3743; + this.state = 3570; this.expressionsInParenthesis(); } } - this.state = 3748; + this.state = 3575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18483,17 +17642,17 @@ export class HiveSqlParser extends SQLParserBase { } public atomValuesClause(): AtomValuesClauseContext { let localContext = new AtomValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_atomValuesClause); + this.enterRule(localContext, 448, HiveSqlParser.RULE_atomValuesClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3751; + this.state = 3578; this.match(HiveSqlParser.KW_TABLE); - this.state = 3752; + this.state = 3579; this.match(HiveSqlParser.LPAREN); - this.state = 3753; + this.state = 3580; this.valuesClause(); - this.state = 3754; + this.state = 3581; this.match(HiveSqlParser.RPAREN); } } @@ -18513,54 +17672,54 @@ export class HiveSqlParser extends SQLParserBase { } public virtualTableSource(): VirtualTableSourceContext { let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_virtualTableSource); + this.enterRule(localContext, 450, HiveSqlParser.RULE_virtualTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3756; + this.state = 3583; this.atomValuesClause(); - this.state = 3758; + this.state = 3585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3757; + this.state = 3584; this.match(HiveSqlParser.KW_AS); } } - this.state = 3760; + this.state = 3587; localContext._alias = this.tableAlias(); - this.state = 3770; + this.state = 3597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3761; + this.state = 3588; this.match(HiveSqlParser.LPAREN); - this.state = 3762; + this.state = 3589; this.id_(); - this.state = 3767; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3763; + this.state = 3590; this.match(HiveSqlParser.COMMA); - this.state = 3764; + this.state = 3591; this.id_(); } } - this.state = 3769; + this.state = 3596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3772; + this.state = 3599; this.match(HiveSqlParser.RPAREN); } } @@ -18580,38 +17739,38 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 452, HiveSqlParser.RULE_selectClause); let _la: number; try { - this.state = 3787; + this.state = 3614; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3774; + this.state = 3601; this.match(HiveSqlParser.KW_SELECT); - this.state = 3776; + this.state = 3603; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 3775; + this.state = 3602; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3784; + this.state = 3611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: { - this.state = 3779; + this.state = 3606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3778; + this.state = 3605; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18623,15 +17782,15 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3781; + this.state = 3608; this.selectList(); } break; case 2: { - this.state = 3782; + this.state = 3609; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3783; + this.state = 3610; this.selectTrfmClause(); } break; @@ -18642,7 +17801,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3786; + this.state = 3613; this.trfmClause(); } break; @@ -18666,68 +17825,70 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 454, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3789; + this.state = 3616; this.match(HiveSqlParser.LPAREN); - this.state = 3790; + this.state = 3617; this.selectExpressionList(); - this.state = 3791; + this.state = 3618; this.match(HiveSqlParser.RPAREN); - this.state = 3792; + this.state = 3619; this.rowFormat(); - this.state = 3793; - this.recordWriter(); - this.state = 3794; + this.state = 3620; + this.match(HiveSqlParser.KW_RECORDWRITER); + this.state = 3621; + this.match(HiveSqlParser.StringLiteral); + this.state = 3622; this.match(HiveSqlParser.KW_USING); - this.state = 3795; + this.state = 3623; this.match(HiveSqlParser.StringLiteral); - this.state = 3808; + this.state = 3636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3796; + this.state = 3624; this.match(HiveSqlParser.KW_AS); - this.state = 3806; + this.state = 3634; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: { - this.state = 3797; + this.state = 3625; this.match(HiveSqlParser.LPAREN); - this.state = 3800; + this.state = 3628; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: { - this.state = 3798; + this.state = 3626; this.aliasList(); } break; case 2: { - this.state = 3799; + this.state = 3627; this.columnNameTypeList(); } break; } - this.state = 3802; + this.state = 3630; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3804; + this.state = 3632; this.aliasList(); } break; case 3: { - this.state = 3805; + this.state = 3633; this.columnNameTypeList(); } break; @@ -18735,10 +17896,12 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3810; + this.state = 3638; this.rowFormat(); - this.state = 3811; - this.recordReader(); + this.state = 3639; + this.match(HiveSqlParser.KW_RECORDREADER); + this.state = 3640; + this.match(HiveSqlParser.StringLiteral); } } catch (re) { @@ -18757,30 +17920,30 @@ export class HiveSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_selectList); + this.enterRule(localContext, 456, HiveSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3813; + this.state = 3642; this.selectItem(); - this.state = 3818; + this.state = 3647; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3814; + this.state = 3643; this.match(HiveSqlParser.COMMA); - this.state = 3815; + this.state = 3644; this.selectItem(); } } } - this.state = 3820; + this.state = 3649; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); } } } @@ -18800,16 +17963,16 @@ export class HiveSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 458, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3846; + this.state = 3675; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3821; + this.state = 3650; this.tableAllColumns(); } break; @@ -18817,66 +17980,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3824; + this.state = 3653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 3822; + this.state = 3651; this.selectLiteralColumnName(); } break; case 2: { - this.state = 3823; + this.state = 3652; this.selectExpressionColumnName(); } break; } - this.state = 3842; + this.state = 3671; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: { - this.state = 3827; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3826; + this.state = 3655; this.match(HiveSqlParser.KW_AS); } } - this.state = 3829; + this.state = 3658; localContext._alias = this.id_(); } break; case 2: { - this.state = 3830; + this.state = 3659; this.match(HiveSqlParser.KW_AS); - this.state = 3831; + this.state = 3660; this.match(HiveSqlParser.LPAREN); - this.state = 3832; + this.state = 3661; localContext._alias = this.id_(); - this.state = 3837; + this.state = 3666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3833; + this.state = 3662; this.match(HiveSqlParser.COMMA); - this.state = 3834; + this.state = 3663; localContext._alias = this.id_(); } } - this.state = 3839; + this.state = 3668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3840; + this.state = 3669; this.match(HiveSqlParser.RPAREN); } break; @@ -18887,11 +18050,11 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3844; + this.state = 3673; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 3845; + this.state = 3674; this.emptyColumn(); } break; @@ -18913,11 +18076,11 @@ export class HiveSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 460, HiveSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3848; + this.state = 3677; this.columnName(); } } @@ -18937,11 +18100,11 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 462, HiveSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3850; + this.state = 3679; this.expression(); } } @@ -18961,12 +18124,12 @@ export class HiveSqlParser extends SQLParserBase { } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 464, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3681; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18975,59 +18138,61 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3853; + this.state = 3682; this.selectExpressionList(); - this.state = 3854; + this.state = 3683; this.rowFormat(); - this.state = 3855; - this.recordWriter(); - this.state = 3856; + this.state = 3684; + this.match(HiveSqlParser.KW_RECORDWRITER); + this.state = 3685; + this.match(HiveSqlParser.StringLiteral); + this.state = 3686; this.match(HiveSqlParser.KW_USING); - this.state = 3857; + this.state = 3687; this.match(HiveSqlParser.StringLiteral); - this.state = 3870; + this.state = 3700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3858; + this.state = 3688; this.match(HiveSqlParser.KW_AS); - this.state = 3868; + this.state = 3698; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: { - this.state = 3859; + this.state = 3689; this.match(HiveSqlParser.LPAREN); - this.state = 3862; + this.state = 3692; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: { - this.state = 3860; + this.state = 3690; this.aliasList(); } break; case 2: { - this.state = 3861; + this.state = 3691; this.columnNameTypeList(); } break; } - this.state = 3864; + this.state = 3694; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3866; + this.state = 3696; this.aliasList(); } break; case 3: { - this.state = 3867; + this.state = 3697; this.columnNameTypeList(); } break; @@ -19035,10 +18200,12 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3872; + this.state = 3702; this.rowFormat(); - this.state = 3873; - this.recordReader(); + this.state = 3703; + this.match(HiveSqlParser.KW_RECORDREADER); + this.state = 3704; + this.match(HiveSqlParser.StringLiteral); } } catch (re) { @@ -19057,22 +18224,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 466, HiveSqlParser.RULE_selectExpression); try { - this.state = 3877; + this.state = 3708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3875; + this.state = 3706; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3876; + this.state = 3707; this.expression(); } break; @@ -19094,26 +18261,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 468, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3879; + this.state = 3710; this.selectExpression(); - this.state = 3884; + this.state = 3715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3880; + this.state = 3711; this.match(HiveSqlParser.COMMA); - this.state = 3881; + this.state = 3712; this.selectExpression(); } } - this.state = 3886; + this.state = 3717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19135,36 +18302,36 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 470, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3887; + this.state = 3718; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3888; + this.state = 3719; this.id_(); - this.state = 3889; + this.state = 3720; this.match(HiveSqlParser.KW_AS); - this.state = 3890; + this.state = 3721; this.window_specification(); - this.state = 3898; + this.state = 3729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3891; + this.state = 3722; this.match(HiveSqlParser.COMMA); - this.state = 3892; + this.state = 3723; this.id_(); - this.state = 3893; + this.state = 3724; this.match(HiveSqlParser.KW_AS); - this.state = 3894; + this.state = 3725; this.window_specification(); } } - this.state = 3900; + this.state = 3731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19186,10 +18353,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 472, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3913; + this.state = 3744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -19434,46 +18601,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3901; + this.state = 3732; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3902; + this.state = 3733; this.match(HiveSqlParser.LPAREN); - this.state = 3904; + this.state = 3735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 515, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 3903; + this.state = 3734; this.id_(); } break; } - this.state = 3907; + this.state = 3738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3906; + this.state = 3737; this.partitioningSpec(); } } - this.state = 3910; + this.state = 3741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3909; + this.state = 3740; this.window_frame(); } } - this.state = 3912; + this.state = 3743; this.match(HiveSqlParser.RPAREN); } break; @@ -19497,12 +18664,12 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 474, HiveSqlParser.RULE_window_frame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3915; + this.state = 3746; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -19511,22 +18678,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3929; + this.state = 3760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3922; + this.state = 3753; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3916; + this.state = 3747; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3917; + this.state = 3748; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19534,9 +18701,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3918; + this.state = 3749; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3919; + this.state = 3750; this.match(HiveSqlParser.KW_ROW); } } @@ -19544,9 +18711,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3920; + this.state = 3751; this.match(HiveSqlParser.Number); - this.state = 3921; + this.state = 3752; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19558,13 +18725,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3924; + this.state = 3755; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3925; + this.state = 3756; this.window_frame_boundary(); - this.state = 3926; + this.state = 3757; this.match(HiveSqlParser.KW_AND); - this.state = 3927; + this.state = 3758; this.window_frame_boundary(); } break; @@ -19589,17 +18756,17 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 476, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3935; + this.state = 3766; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3931; + this.state = 3762; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -19608,7 +18775,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3932; + this.state = 3763; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -19622,9 +18789,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3933; + this.state = 3764; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3934; + this.state = 3765; this.match(HiveSqlParser.KW_ROW); } break; @@ -19648,41 +18815,41 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 478, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3937; + this.state = 3768; this.match(HiveSqlParser.KW_GROUP); - this.state = 3938; + this.state = 3769; this.match(HiveSqlParser.KW_BY); - this.state = 3944; + this.state = 3775; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 517, this.context) ) { case 1: { - this.state = 3939; + this.state = 3770; this.columnName(); } break; case 2: { - this.state = 3940; + this.state = 3771; this.rollupStandard(); } break; case 3: { - this.state = 3941; + this.state = 3772; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3942; + this.state = 3773; this.match(HiveSqlParser.LPAREN); - this.state = 3943; + this.state = 3774; this.match(HiveSqlParser.RPAREN); } } @@ -19706,50 +18873,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 480, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3948; + this.state = 3779; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3946; + this.state = 3777; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3947; + this.state = 3778; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3950; + this.state = 3781; this.match(HiveSqlParser.LPAREN); - this.state = 3951; + this.state = 3782; this.expression(); - this.state = 3956; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3952; + this.state = 3783; this.match(HiveSqlParser.COMMA); - this.state = 3953; + this.state = 3784; this.expression(); } } - this.state = 3958; + this.state = 3789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3959; + this.state = 3790; this.match(HiveSqlParser.RPAREN); } } @@ -19769,63 +18936,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 482, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3961; + this.state = 3792; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3966; + this.state = 3797; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 520, this.context) ) { case 1: { - this.state = 3962; + this.state = 3793; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3963; + this.state = 3794; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3964; + this.state = 3795; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3965; + this.state = 3796; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3981; + this.state = 3812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3968; + this.state = 3799; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3969; + this.state = 3800; this.match(HiveSqlParser.KW_SETS); - this.state = 3970; + this.state = 3801; this.match(HiveSqlParser.LPAREN); - this.state = 3971; + this.state = 3802; this.groupingSetExpression(); - this.state = 3976; + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3972; + this.state = 3803; this.match(HiveSqlParser.COMMA); - this.state = 3973; + this.state = 3804; this.groupingSetExpression(); } } - this.state = 3978; + this.state = 3809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3979; + this.state = 3810; this.match(HiveSqlParser.RPAREN); } } @@ -19848,51 +19015,51 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 484, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3996; + this.state = 3827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3983; + this.state = 3814; this.match(HiveSqlParser.LPAREN); - this.state = 3985; + this.state = 3816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3984; + this.state = 3815; this.expression(); } } - this.state = 3991; + this.state = 3822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3987; + this.state = 3818; this.match(HiveSqlParser.COMMA); - this.state = 3988; + this.state = 3819; this.expression(); } } - this.state = 3993; + this.state = 3824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3994; + this.state = 3825; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3995; + this.state = 3826; this.expression(); } break; @@ -19914,24 +19081,24 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 486, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3998; + this.state = 3829; this.match(HiveSqlParser.KW_HAVING); - this.state = 4001; + this.state = 3832; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { case 1: { - this.state = 3999; + this.state = 3830; this.expression(); } break; case 2: { - this.state = 4000; + this.state = 3831; this.columnNamePathAllowEmpty(); } break; @@ -19954,13 +19121,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 488, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4003; + this.state = 3834; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 4004; + this.state = 3835; this.expression(); } } @@ -19978,105 +19145,68 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public expressionOrDefault(): ExpressionOrDefaultContext { - let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_expressionOrDefault); - try { - this.state = 4008; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4006; - this.match(HiveSqlParser.KW_DEFAULT); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4007; - this.expression(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 490, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4010; + this.state = 3837; localContext._first = this.expression(); - this.state = 4012; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4011; + this.state = 3838; this.match(HiveSqlParser.KW_AS); } } - this.state = 4015; + this.state = 3842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4014; + this.state = 3841; localContext._colAlias = this.id_(); } } - this.state = 4027; + this.state = 3854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4017; + this.state = 3844; this.match(HiveSqlParser.COMMA); - this.state = 4018; + this.state = 3845; this.expression(); - this.state = 4020; + this.state = 3847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4019; + this.state = 3846; this.match(HiveSqlParser.KW_AS); } } - this.state = 4023; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4022; + this.state = 3849; localContext._alias = this.id_(); } } } } - this.state = 4029; + this.state = 3856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20098,22 +19228,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 492, HiveSqlParser.RULE_expressions); try { - this.state = 4032; + this.state = 3859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4030; + this.state = 3857; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4031; + this.state = 3858; this.expressionsNotInParenthesis(); } break; @@ -20135,15 +19265,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 494, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 4034; + this.state = 3861; this.match(HiveSqlParser.LPAREN); - this.state = 4035; + this.state = 3862; this.expressionsNotInParenthesis(); - this.state = 4036; + this.state = 3863; this.match(HiveSqlParser.RPAREN); } } @@ -20163,31 +19293,59 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 496, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4038; - localContext._first = this.expressionOrDefault(); - this.state = 4045; + this.state = 3867; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { + case 1: + { + this.state = 3865; + this.match(HiveSqlParser.KW_DEFAULT); + } + break; + case 2: + { + this.state = 3866; + this.expression(); + } + break; + } + this.state = 3878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 4041; + this.state = 3874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4039; + this.state = 3869; this.match(HiveSqlParser.COMMA); - this.state = 4040; - this.expressionOrDefault(); + this.state = 3872; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { + case 1: + { + this.state = 3870; + this.match(HiveSqlParser.KW_DEFAULT); + } + break; + case 2: + { + this.state = 3871; + this.expression(); + } + break; } } - this.state = 4043; + } + this.state = 3876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -20212,30 +19370,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 498, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4047; + this.state = 3880; this.match(HiveSqlParser.KW_ORDER); - this.state = 4048; + this.state = 3881; this.match(HiveSqlParser.KW_BY); - this.state = 4049; + this.state = 3882; this.columnRefOrder(); - this.state = 4054; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4050; + this.state = 3883; this.match(HiveSqlParser.COMMA); - this.state = 4051; + this.state = 3884; this.columnRefOrder(); } } - this.state = 4056; + this.state = 3889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20257,15 +19415,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 500, HiveSqlParser.RULE_partitionByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4057; + this.state = 3890; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4058; + this.state = 3891; this.match(HiveSqlParser.KW_BY); - this.state = 4059; + this.state = 3892; this.expressions(); } } @@ -20285,15 +19443,15 @@ export class HiveSqlParser extends SQLParserBase { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 502, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4061; + this.state = 3894; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4062; + this.state = 3895; this.match(HiveSqlParser.KW_BY); - this.state = 4063; + this.state = 3896; this.expressions(); } } @@ -20313,15 +19471,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 504, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4065; + this.state = 3898; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4066; + this.state = 3899; this.match(HiveSqlParser.KW_BY); - this.state = 4067; + this.state = 3900; this.expressions(); } } @@ -20341,42 +19499,42 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 506, HiveSqlParser.RULE_sortByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4069; + this.state = 3902; this.match(HiveSqlParser.KW_SORT); - this.state = 4070; + this.state = 3903; this.match(HiveSqlParser.KW_BY); - this.state = 4090; + this.state = 3923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { case 1: { { - this.state = 4071; + this.state = 3904; this.match(HiveSqlParser.LPAREN); - this.state = 4072; + this.state = 3905; this.columnRefOrder(); - this.state = 4077; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4073; + this.state = 3906; this.match(HiveSqlParser.COMMA); - this.state = 4074; + this.state = 3907; this.columnRefOrder(); } } - this.state = 4079; + this.state = 3912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4080; + this.state = 3913; this.match(HiveSqlParser.RPAREN); } } @@ -20384,21 +19542,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4082; + this.state = 3915; this.columnRefOrder(); - this.state = 4087; + this.state = 3920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4083; + this.state = 3916; this.match(HiveSqlParser.COMMA); - this.state = 4084; + this.state = 3917; this.columnRefOrder(); } } - this.state = 4089; + this.state = 3922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20424,37 +19582,37 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 508, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4145; + this.state = 3980; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4092; + this.state = 3925; this.match(HiveSqlParser.KW_TRIM); - this.state = 4093; + this.state = 3926; this.match(HiveSqlParser.LPAREN); - this.state = 4097; + this.state = 3930; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4094; + this.state = 3927; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4095; + this.state = 3928; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4096; + this.state = 3929; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20764,48 +19922,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4100; + this.state = 3933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4099; + this.state = 3932; localContext._trim_characters = this.selectExpression(); } } - this.state = 4102; + this.state = 3935; this.match(HiveSqlParser.KW_FROM); - this.state = 4103; + this.state = 3936; localContext._str = this.selectExpression(); - this.state = 4104; + this.state = 3937; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4106; + this.state = 3939; this.functionNameForInvoke(); - this.state = 4107; + this.state = 3940; this.match(HiveSqlParser.LPAREN); - this.state = 4122; + this.state = 3955; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4108; + this.state = 3941; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4110; + this.state = 3943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4109; + this.state = 3942; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20818,26 +19976,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4120; + this.state = 3953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 4112; + this.state = 3945; this.selectExpression(); - this.state = 4117; + this.state = 3950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4113; + this.state = 3946; this.match(HiveSqlParser.COMMA); - this.state = 4114; + this.state = 3947; this.selectExpression(); } } - this.state = 4119; + this.state = 3952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20847,60 +20005,80 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4143; + this.state = 3978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: { - this.state = 4124; + this.state = 3957; this.match(HiveSqlParser.RPAREN); - this.state = 4125; + this.state = 3958; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4126; + this.state = 3959; this.match(HiveSqlParser.KW_GROUP); - this.state = 4127; + this.state = 3960; this.match(HiveSqlParser.LPAREN); - this.state = 4128; + this.state = 3961; localContext._ordBy = this.orderByClause(); - this.state = 4129; + this.state = 3962; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4131; + this.state = 3964; this.match(HiveSqlParser.RPAREN); - this.state = 4133; + this.state = 3967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4132; - localContext._nt = this.null_treatment(); + this.state = 3965; + _la = this.tokenStream.LA(1); + if(!(_la === 152 || _la === 281)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3966; + this.match(HiveSqlParser.KW_NULLS); } } - this.state = 4135; + this.state = 3969; this.match(HiveSqlParser.KW_OVER); - this.state = 4136; + this.state = 3970; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4137; - localContext._nt = this.null_treatment(); - this.state = 4138; + { + this.state = 3971; + _la = this.tokenStream.LA(1); + if(!(_la === 152 || _la === 281)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3972; + this.match(HiveSqlParser.KW_NULLS); + } + this.state = 3974; this.match(HiveSqlParser.RPAREN); - this.state = 4139; + this.state = 3975; this.match(HiveSqlParser.KW_OVER); - this.state = 4140; + this.state = 3976; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4142; + this.state = 3977; this.match(HiveSqlParser.RPAREN); } break; @@ -20923,47 +20101,13 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public null_treatment(): Null_treatmentContext { - let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_null_treatment); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4147; - _la = this.tokenStream.LA(1); - if(!(_la === 152 || _la === 281)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 4148; - this.match(HiveSqlParser.KW_NULLS); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 510, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4150; + this.state = 3982; this.functionIdentifier(); } } @@ -20983,9 +20127,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 512, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4154; + this.state = 3986; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -21230,14 +20374,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4152; + this.state = 3984; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4153; + this.state = 3985; this.match(HiveSqlParser.StringLiteral); } break; @@ -21261,29 +20405,29 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 514, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4159; + this.state = 3991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4156; + this.state = 3988; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4157; + this.state = 3989; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4158; + this.state = 3990; this.sysFuncNames(); } break; @@ -21305,34 +20449,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 516, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4161; + this.state = 3993; this.match(HiveSqlParser.KW_CAST); - this.state = 4162; + this.state = 3994; this.match(HiveSqlParser.LPAREN); - this.state = 4163; + this.state = 3995; this.expression(); - this.state = 4164; + this.state = 3996; this.match(HiveSqlParser.KW_AS); - this.state = 4165; + this.state = 3997; localContext._toType = this.primitiveType(); - this.state = 4168; + this.state = 4000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4166; + this.state = 3998; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4167; + this.state = 3999; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4170; + this.state = 4002; this.match(HiveSqlParser.RPAREN); } } @@ -21352,48 +20496,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 518, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4172; + this.state = 4004; this.match(HiveSqlParser.KW_CASE); - this.state = 4173; + this.state = 4005; this.expression(); - this.state = 4179; + this.state = 4011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4174; + this.state = 4006; this.match(HiveSqlParser.KW_WHEN); - this.state = 4175; + this.state = 4007; this.expression(); - this.state = 4176; + this.state = 4008; this.match(HiveSqlParser.KW_THEN); - this.state = 4177; + this.state = 4009; this.expression(); } } - this.state = 4181; + this.state = 4013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4185; + this.state = 4017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4183; + this.state = 4015; this.match(HiveSqlParser.KW_ELSE); - this.state = 4184; + this.state = 4016; this.expression(); } } - this.state = 4187; + this.state = 4019; this.match(HiveSqlParser.KW_END); } } @@ -21413,46 +20557,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 520, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4189; + this.state = 4021; this.match(HiveSqlParser.KW_CASE); - this.state = 4195; + this.state = 4027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4190; + this.state = 4022; this.match(HiveSqlParser.KW_WHEN); - this.state = 4191; + this.state = 4023; this.expression(); - this.state = 4192; + this.state = 4024; this.match(HiveSqlParser.KW_THEN); - this.state = 4193; + this.state = 4025; this.expression(); } } - this.state = 4197; + this.state = 4029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4201; + this.state = 4033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4199; + this.state = 4031; this.match(HiveSqlParser.KW_ELSE); - this.state = 4200; + this.state = 4032; this.expression(); } } - this.state = 4203; + this.state = 4035; this.match(HiveSqlParser.KW_END); } } @@ -21472,30 +20616,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 522, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4205; + this.state = 4037; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4206; + this.state = 4038; this.match(HiveSqlParser.LPAREN); - this.state = 4207; + this.state = 4039; this.expression(); - this.state = 4210; + this.state = 4042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4208; + this.state = 4040; this.match(HiveSqlParser.KW_TO); - this.state = 4209; + this.state = 4041; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4212; + this.state = 4044; this.match(HiveSqlParser.RPAREN); } } @@ -21515,21 +20659,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 524, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4214; + this.state = 4046; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4215; + this.state = 4047; this.match(HiveSqlParser.LPAREN); - this.state = 4216; + this.state = 4048; localContext._timeUnit = this.timeQualifiers(); - this.state = 4217; + this.state = 4049; this.match(HiveSqlParser.KW_FROM); - this.state = 4218; + this.state = 4050; this.expression(); - this.state = 4219; + this.state = 4051; this.match(HiveSqlParser.RPAREN); } } @@ -21549,23 +20693,31 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 526, HiveSqlParser.RULE_timeQualifiers); + let _la: number; try { - this.state = 4229; + this.state = 4061; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4221; - this.year(); + this.state = 4053; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4222; + this.state = 4054; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -21573,48 +20725,90 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4223; - this.month(); + this.state = 4055; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_WEEK: case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4224; - this.week(); + this.state = 4056; + _la = this.tokenStream.LA(1); + if(!(_la === 381 || _la === 382)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4225; - this.day(); + this.state = 4057; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4226; - this.hour(); + this.state = 4058; + _la = this.tokenStream.LA(1); + if(!(_la === 148 || _la === 149)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_MINUTE: case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4227; - this.minute(); + this.state = 4059; + _la = this.tokenStream.LA(1); + if(!(_la === 206 || _la === 207)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_SECOND: case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4228; - this.second(); + this.state = 4060; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 298)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; default: @@ -21637,85 +20831,85 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 528, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4259; + this.state = 4091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4231; + this.state = 4063; localContext._value = this.intervalValue(); - this.state = 4232; + this.state = 4064; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4234; + this.state = 4066; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4235; + this.state = 4067; this.match(HiveSqlParser.KW_DATE); - this.state = 4236; + this.state = 4068; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4237; + this.state = 4069; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4238; + this.state = 4070; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4239; + this.state = 4071; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4240; + this.state = 4072; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4241; + this.state = 4073; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4242; + this.state = 4074; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4243; + this.state = 4075; this.match(HiveSqlParser.StringLiteral); - this.state = 4247; + this.state = 4079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4244; + this.state = 4076; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4249; + this.state = 4081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21724,58 +20918,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4250; + this.state = 4082; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4251; + this.state = 4083; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4252; + this.state = 4084; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4253; + this.state = 4085; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4254; + this.state = 4086; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4255; + this.state = 4087; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4256; + this.state = 4088; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4257; + this.state = 4089; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4258; + this.state = 4090; this.columnNamePath(); } break; @@ -21797,12 +20991,12 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 530, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4261; + this.state = 4093; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21829,53 +21023,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 532, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4278; + this.state = 4110; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4263; + this.state = 4095; this.match(HiveSqlParser.LPAREN); - this.state = 4264; + this.state = 4096; localContext._value = this.intervalValue(); - this.state = 4265; + this.state = 4097; this.match(HiveSqlParser.RPAREN); - this.state = 4266; + this.state = 4098; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4268; + this.state = 4100; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4274; + this.state = 4106; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4269; + this.state = 4101; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4270; + this.state = 4102; this.match(HiveSqlParser.LPAREN); - this.state = 4271; + this.state = 4103; localContext._expr = this.expression(); - this.state = 4272; + this.state = 4104; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4276; + this.state = 4108; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21899,73 +21093,144 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 534, HiveSqlParser.RULE_intervalQualifiers); + let _la: number; try { - this.state = 4294; + this.state = 4124; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4280; - this.year(); - this.state = 4281; + this.state = 4112; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4113; this.match(HiveSqlParser.KW_TO); - this.state = 4282; - this.month(); + this.state = 4114; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4284; - this.day(); - this.state = 4285; + this.state = 4115; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4116; this.match(HiveSqlParser.KW_TO); - this.state = 4286; - this.second(); + this.state = 4117; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 298)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4288; - this.year(); + this.state = 4118; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4289; - this.month(); + this.state = 4119; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4290; - this.day(); + this.state = 4120; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4291; - this.hour(); + this.state = 4121; + _la = this.tokenStream.LA(1); + if(!(_la === 148 || _la === 149)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4292; - this.minute(); + this.state = 4122; + _la = this.tokenStream.LA(1); + if(!(_la === 206 || _la === 207)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4293; - this.second(); + this.state = 4123; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 298)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; } @@ -21986,26 +21251,26 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 536, HiveSqlParser.RULE_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4296; + this.state = 4126; this.precedenceAndExpression(); - this.state = 4301; + this.state = 4131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4297; + this.state = 4127; this.match(HiveSqlParser.KW_OR); - this.state = 4298; + this.state = 4128; this.precedenceAndExpression(); } } - this.state = 4303; + this.state = 4133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22027,85 +21292,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 538, HiveSqlParser.RULE_atomExpression); try { - this.state = 4315; + this.state = 4145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4304; + this.state = 4134; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4305; + this.state = 4135; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4306; + this.state = 4136; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4307; + this.state = 4137; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4308; + this.state = 4138; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4309; + this.state = 4139; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4310; + this.state = 4140; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4311; + this.state = 4141; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4312; + this.state = 4142; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4313; + this.state = 4143; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4314; + this.state = 4144; this.id_(); } break; @@ -22127,20 +21392,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 540, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4320; + this.state = 4150; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 570, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4317; + this.state = 4147; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -22152,35 +21417,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4322; + this.state = 4152; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 570, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); } - this.state = 4323; + this.state = 4153; this.atomExpression(); - this.state = 4332; + this.state = 4162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4330; + this.state = 4160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4324; + this.state = 4154; this.match(HiveSqlParser.LSQUARE); - this.state = 4325; + this.state = 4155; this.expression(); - this.state = 4326; + this.state = 4156; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4328; + this.state = 4158; this.match(HiveSqlParser.DOT); - this.state = 4329; + this.state = 4159; this.id_(); } break; @@ -22188,7 +21453,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4334; + this.state = 4164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22210,26 +21475,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 542, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4335; + this.state = 4165; this.precedenceUnaryPrefixExpression(); - this.state = 4340; + this.state = 4170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4336; + this.state = 4166; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4337; + this.state = 4167; this.precedenceUnaryPrefixExpression(); } } - this.state = 4342; + this.state = 4172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22251,20 +21516,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 544, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4343; + this.state = 4173; this.precedenceBitwiseXorExpression(); - this.state = 4348; + this.state = 4178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4344; + this.state = 4174; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -22273,11 +21538,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4345; + this.state = 4175; this.precedenceBitwiseXorExpression(); } } - this.state = 4350; + this.state = 4180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22299,20 +21564,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 546, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4351; + this.state = 4181; this.precedenceStarExpression(); - this.state = 4356; + this.state = 4186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4352; + this.state = 4182; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -22321,11 +21586,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4353; + this.state = 4183; this.precedenceStarExpression(); } } - this.state = 4358; + this.state = 4188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22347,26 +21612,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 548, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4359; + this.state = 4189; this.precedencePlusExpression(); - this.state = 4364; + this.state = 4194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4360; + this.state = 4190; this.match(HiveSqlParser.CONCATENATE); - this.state = 4361; + this.state = 4191; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4366; + this.state = 4196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22388,26 +21653,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 550, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4367; + this.state = 4197; this.precedenceConcatenateExpression(); - this.state = 4372; + this.state = 4202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4368; + this.state = 4198; this.match(HiveSqlParser.AMPERSAND); - this.state = 4369; + this.state = 4199; this.precedenceConcatenateExpression(); } } - this.state = 4374; + this.state = 4204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22429,26 +21694,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 552, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4375; + this.state = 4205; this.precedenceAmpersandExpression(); - this.state = 4380; + this.state = 4210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4376; + this.state = 4206; this.match(HiveSqlParser.BITWISEOR); - this.state = 4377; + this.state = 4207; this.precedenceAmpersandExpression(); } } - this.state = 4382; + this.state = 4212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22468,22 +21733,18 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { - let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceSimilarOperator); - let _la: number; + public subQueryExpression(): SubQueryExpressionContext { + let localContext = new SubQueryExpressionContext(this.context, this.state); + this.enterRule(localContext, 554, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4383; - _la = this.tokenStream.LA(1); - if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 4213; + this.match(HiveSqlParser.LPAREN); + this.state = 4214; + this.selectStatement(); + this.state = 4215; + this.match(HiveSqlParser.RPAREN); } } catch (re) { @@ -22500,18 +21761,22 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public subQueryExpression(): SubQueryExpressionContext { - let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_subQueryExpression); + public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { + let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); + this.enterRule(localContext, 556, HiveSqlParser.RULE_precedenceSimilarOperator); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4385; - this.match(HiveSqlParser.LPAREN); - this.state = 4386; - this.selectStatement(); - this.state = 4387; - this.match(HiveSqlParser.RPAREN); + this.state = 4217; + _la = this.tokenStream.LA(1); + if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -22530,9 +21795,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 558, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4395; + this.state = 4225; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22837,14 +22102,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4389; + this.state = 4219; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4391; + this.state = 4221; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4390; + this.state = 4220; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22854,9 +22119,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4393; + this.state = 4223; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4394; + this.state = 4224; this.subQueryExpression(); } break; @@ -22880,34 +22145,58 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 560, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + let _la: number; try { - this.state = 4403; + this.state = 4237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4397; + this.state = 4227; this.precedenceSimilarOperator(); - this.state = 4398; + this.state = 4228; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4400; + this.state = 4230; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4401; + this.state = 4231; this.match(HiveSqlParser.KW_NOT); - this.state = 4402; - this.precedenceSimilarExpressionPartNot(); + this.state = 4235; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + case 1: + { + this.state = 4232; + _la = this.tokenStream.LA(1); + if(!(_la === 184 || _la === 270 || _la === 286)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4233; + localContext._notExpr = this.precedenceBitwiseOrExpression(); + } + break; + case 2: + { + this.state = 4234; + this.precedenceSimilarExpressionAtom(); + } + break; + } } break; } @@ -22928,40 +22217,54 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 562, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4419; + this.state = 4256; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4405; + this.state = 4239; this.match(HiveSqlParser.KW_IN); - this.state = 4406; - this.precedenceSimilarExpressionIn(); + this.state = 4242; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { + case 1: + { + this.state = 4240; + this.subQueryExpression(); + } + break; + case 2: + { + this.state = 4241; + localContext._expr = this.expressionsInParenthesis(); + } + break; + } } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4407; + this.state = 4244; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4408; + this.state = 4245; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4409; + this.state = 4246; this.match(HiveSqlParser.KW_AND); - this.state = 4410; + this.state = 4247; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4412; + this.state = 4249; this.match(HiveSqlParser.KW_LIKE); - this.state = 4413; + this.state = 4250; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22970,7 +22273,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4414; + this.state = 4251; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22982,9 +22285,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4415; + this.state = 4252; this.subQuerySelectorOperator(); - this.state = 4416; + this.state = 4253; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -22993,7 +22296,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4417; + this.state = 4254; this.subQueryExpression(); } break; @@ -23015,101 +22318,17 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { - let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionIn); - try { - this.state = 4423; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4421; - this.subQueryExpression(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4422; - localContext._expr = this.expressionsInParenthesis(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { - let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); - let _la: number; - try { - this.state = 4428; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4425; - _la = this.tokenStream.LA(1); - if(!(_la === 184 || _la === 270 || _la === 286)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 4426; - localContext._notExpr = this.precedenceBitwiseOrExpression(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4427; - this.precedenceSimilarExpressionAtom(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 564, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4430; + this.state = 4258; this.match(HiveSqlParser.KW_IS); - this.state = 4431; + this.state = 4259; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4432; + this.state = 4260; this.match(HiveSqlParser.KW_FROM); } } @@ -23129,42 +22348,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 566, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4441; + this.state = 4269; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4434; + this.state = 4262; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4435; + this.state = 4263; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4436; + this.state = 4264; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4437; + this.state = 4265; this.match(HiveSqlParser.KW_IS); - this.state = 4438; + this.state = 4266; this.match(HiveSqlParser.KW_NOT); - this.state = 4439; + this.state = 4267; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4440; + this.state = 4268; this.match(HiveSqlParser.KW_FROM); } break; @@ -23188,38 +22407,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 568, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4443; + this.state = 4271; this.precedenceSimilarExpression(); - this.state = 4452; + this.state = 4280; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 587, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4450; + this.state = 4278; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4444; + this.state = 4272; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4445; + this.state = 4273; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4447; + this.state = 4275; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4448; + this.state = 4276; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -23227,9 +22446,9 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4454; + this.state = 4282; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 587, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); } } } @@ -23249,46 +22468,46 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 570, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4461; + this.state = 4289; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4455; + this.state = 4283; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4456; + this.state = 4284; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4457; + this.state = 4285; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4458; + this.state = 4286; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4459; + this.state = 4287; this.match(HiveSqlParser.KW_NOT); - this.state = 4460; + this.state = 4288; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23319,38 +22538,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 572, HiveSqlParser.RULE_precedenceNotExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4466; + this.state = 4294; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 589, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4463; + this.state = 4291; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4468; + this.state = 4296; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 589, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); } - this.state = 4469; + this.state = 4297; this.precedenceEqualExpression(); - this.state = 4472; + this.state = 4300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4470; + this.state = 4298; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4471; + this.state = 4299; this.isCondition(); } } @@ -23373,26 +22592,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 574, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4474; + this.state = 4302; this.precedenceNotExpression(); - this.state = 4479; + this.state = 4307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4475; + this.state = 4303; this.match(HiveSqlParser.KW_AND); - this.state = 4476; + this.state = 4304; this.precedenceNotExpression(); } } - this.state = 4481; + this.state = 4309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23414,19 +22633,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 576, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4482; + this.state = 4310; this.tableName(); - this.state = 4484; + this.state = 4312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4483; + this.state = 4311; this.partitionSpec(); } } @@ -23449,34 +22668,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 578, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4486; + this.state = 4314; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4487; + this.state = 4315; this.match(HiveSqlParser.LPAREN); - this.state = 4488; + this.state = 4316; this.partitionVal(); - this.state = 4493; + this.state = 4321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4489; + this.state = 4317; this.match(HiveSqlParser.COMMA); - this.state = 4490; + this.state = 4318; this.partitionVal(); } } - this.state = 4495; + this.state = 4323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4496; + this.state = 4324; this.match(HiveSqlParser.RPAREN); } } @@ -23496,21 +22715,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 580, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4498; + this.state = 4326; this.id_(); - this.state = 4501; + this.state = 4329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4499; + this.state = 4327; this.match(HiveSqlParser.EQUAL); - this.state = 4500; + this.state = 4328; this.constant(); } } @@ -23533,32 +22752,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 582, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4503; + this.state = 4331; this.match(HiveSqlParser.LPAREN); - this.state = 4504; + this.state = 4332; this.partitionSelectorVal(); - this.state = 4509; + this.state = 4337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4505; + this.state = 4333; this.match(HiveSqlParser.COMMA); - this.state = 4506; + this.state = 4334; this.partitionSelectorVal(); } } - this.state = 4511; + this.state = 4339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4512; + this.state = 4340; this.match(HiveSqlParser.RPAREN); } } @@ -23578,18 +22797,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 584, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4342; this.id_(); - this.state = 4517; + this.state = 4345; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4515; + this.state = 4343; this.match(HiveSqlParser.KW_LIKE); } break; @@ -23600,14 +22819,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4516; + this.state = 4344; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4519; + this.state = 4347; this.constant(); } } @@ -23627,12 +22846,12 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 586, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4521; + this.state = 4349; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -23659,12 +22878,12 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 588, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4523; + this.state = 4351; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -23691,15 +22910,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 590, HiveSqlParser.RULE_id_); try { - this.state = 4527; + this.state = 4355; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4525; + this.state = 4353; this.match(HiveSqlParser.Identifier); } break; @@ -23944,7 +23163,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4526; + this.state = 4354; this.nonReserved(); } break; @@ -23968,21 +23187,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 592, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4529; + this.state = 4357; this.id_(); - this.state = 4532; + this.state = 4360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4530; + this.state = 4358; this.match(HiveSqlParser.DOT); - this.state = 4531; + this.state = 4359; localContext._fn = this.id_(); } } @@ -24005,11 +23224,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 594, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 4534; + this.state = 4362; this.id_(); } } @@ -24029,12 +23248,12 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 596, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4536; + this.state = 4364; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -24061,12 +23280,12 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 598, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4538; + this.state = 4366; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -24093,20 +23312,20 @@ export class HiveSqlParser extends SQLParserBase { } public configProperty(): ConfigPropertyContext { let localContext = new ConfigPropertyContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_configProperty); + this.enterRule(localContext, 600, HiveSqlParser.RULE_configProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4540; + this.state = 4368; this.configPropertyPart(); - this.state = 4545; + this.state = 4373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 396) { { { - this.state = 4541; + this.state = 4369; _la = this.tokenStream.LA(1); if(!(_la === 395 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -24115,11 +23334,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4542; + this.state = 4370; this.configPropertyPart(); } } - this.state = 4547; + this.state = 4375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24141,38 +23360,38 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertyPart(): ConfigPropertyPartContext { let localContext = new ConfigPropertyPartContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_configPropertyPart); + this.enterRule(localContext, 602, HiveSqlParser.RULE_configPropertyPart); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4548; + this.state = 4376; this.configPropertiesItem(); - this.state = 4555; + this.state = 4383; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 596, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4549; + this.state = 4377; if (!(this.isNextTokenAdjacent())) { throw this.createFailedPredicateException("this.isNextTokenAdjacent()"); } - this.state = 4550; + this.state = 4378; this.match(HiveSqlParser.MINUS); - this.state = 4551; + this.state = 4379; if (!(this.isNextTokenAdjacent())) { throw this.createFailedPredicateException("this.isNextTokenAdjacent()"); } - this.state = 4552; + this.state = 4380; this.configPropertiesItem(); } } } - this.state = 4557; + this.state = 4385; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 596, this.context); } } } @@ -24192,9 +23411,9 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 604, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4609; + this.state = 4437; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -24439,357 +23658,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4558; + this.state = 4386; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4559; + this.state = 4387; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4560; + this.state = 4388; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4561; + this.state = 4389; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4562; + this.state = 4390; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4563; + this.state = 4391; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4564; + this.state = 4392; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4565; + this.state = 4393; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4566; + this.state = 4394; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4567; + this.state = 4395; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4568; + this.state = 4396; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4569; + this.state = 4397; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4570; + this.state = 4398; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4571; + this.state = 4399; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4572; + this.state = 4400; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4573; + this.state = 4401; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4574; + this.state = 4402; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4575; + this.state = 4403; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4576; + this.state = 4404; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4577; + this.state = 4405; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4578; + this.state = 4406; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4579; + this.state = 4407; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4580; + this.state = 4408; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4581; + this.state = 4409; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4582; + this.state = 4410; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4583; + this.state = 4411; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4584; + this.state = 4412; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4585; + this.state = 4413; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4586; + this.state = 4414; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4587; + this.state = 4415; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4588; + this.state = 4416; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4589; + this.state = 4417; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4590; + this.state = 4418; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4591; + this.state = 4419; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4592; + this.state = 4420; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4593; + this.state = 4421; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4594; + this.state = 4422; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4595; + this.state = 4423; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4596; + this.state = 4424; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4597; + this.state = 4425; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4598; + this.state = 4426; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4599; + this.state = 4427; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4600; + this.state = 4428; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4601; + this.state = 4429; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4602; + this.state = 4430; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4603; + this.state = 4431; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4604; + this.state = 4432; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4605; + this.state = 4433; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4606; + this.state = 4434; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4607; + this.state = 4435; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4608; + this.state = 4436; this.match(HiveSqlParser.KW_AS); } break; @@ -24813,56 +24032,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 606, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4776; + this.state = 4604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4611; + this.state = 4439; this.match(HiveSqlParser.KW_CREATE); - this.state = 4612; + this.state = 4440; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4613; + this.state = 4441; this.match(HiveSqlParser.KW_PLAN); - this.state = 4615; + this.state = 4443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4614; + this.state = 4442; this.ifNotExists(); } } - this.state = 4626; + this.state = 4454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: { - this.state = 4617; + this.state = 4445; localContext._name = this.id_(); - this.state = 4618; + this.state = 4446; this.match(HiveSqlParser.KW_LIKE); - this.state = 4619; + this.state = 4447; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4621; + this.state = 4449; localContext._name = this.id_(); - this.state = 4624; + this.state = 4452; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: { - this.state = 4622; + this.state = 4450; this.match(HiveSqlParser.KW_WITH); - this.state = 4623; + this.state = 4451; this.rpAssignList(); } break; @@ -24875,57 +24094,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4628; + this.state = 4456; this.match(HiveSqlParser.KW_ALTER); - this.state = 4629; + this.state = 4457; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4630; + this.state = 4458; this.match(HiveSqlParser.KW_PLAN); - this.state = 4631; + this.state = 4459; localContext._name = this.id_(); - this.state = 4656; + this.state = 4484; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4632; + this.state = 4460; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4633; + this.state = 4461; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4634; + this.state = 4462; this.match(HiveSqlParser.KW_SET); - this.state = 4635; + this.state = 4463; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4636; + this.state = 4464; this.match(HiveSqlParser.KW_UNSET); - this.state = 4637; + this.state = 4465; this.rpUnassign(); - this.state = 4642; + this.state = 4470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4638; + this.state = 4466; this.match(HiveSqlParser.COMMA); - this.state = 4639; + this.state = 4467; this.rpUnassign(); } } - this.state = 4644; + this.state = 4472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24933,24 +24152,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4645; + this.state = 4473; this.match(HiveSqlParser.KW_RENAME); - this.state = 4646; + this.state = 4474; this.match(HiveSqlParser.KW_TO); - this.state = 4647; + this.state = 4475; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4648; + this.state = 4476; this.activate(); - this.state = 4650; + this.state = 4478; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: { - this.state = 4649; + this.state = 4477; this.enable(); } break; @@ -24960,14 +24179,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4652; + this.state = 4480; this.enable(); - this.state = 4654; + this.state = 4482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4653; + this.state = 4481; this.activate(); } } @@ -24982,88 +24201,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4658; + this.state = 4486; this.match(HiveSqlParser.KW_DROP); - this.state = 4659; + this.state = 4487; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4660; + this.state = 4488; this.match(HiveSqlParser.KW_PLAN); - this.state = 4662; + this.state = 4490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4661; + this.state = 4489; this.ifExists(); } } - this.state = 4664; + this.state = 4492; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4667; + this.state = 4495; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4665; + this.state = 4493; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4666; + this.state = 4494; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4669; + this.state = 4497; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4670; + this.state = 4498; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4672; + this.state = 4500; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4684; + this.state = 4512; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4673; + this.state = 4501; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4674; + this.state = 4502; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4675; + this.state = 4503; this.match(HiveSqlParser.KW_PLAN); - this.state = 4676; + this.state = 4504; this.match(HiveSqlParser.KW_WITH); - this.state = 4677; + this.state = 4505; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4678; + this.state = 4506; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4679; + this.state = 4507; this.match(HiveSqlParser.KW_PLAN); - this.state = 4680; + this.state = 4508; localContext._dest = this.id_(); - this.state = 4681; + this.state = 4509; this.match(HiveSqlParser.KW_WITH); - this.state = 4682; + this.state = 4510; localContext._src = this.id_(); } break; @@ -25075,93 +24294,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4686; + this.state = 4514; this.match(HiveSqlParser.KW_CREATE); - this.state = 4687; + this.state = 4515; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4688; + this.state = 4516; localContext._rpName = this.id_(); - this.state = 4689; + this.state = 4517; this.match(HiveSqlParser.DOT); - this.state = 4690; + this.state = 4518; localContext._triggerName = this.id_(); - this.state = 4691; + this.state = 4519; this.match(HiveSqlParser.KW_WHEN); - this.state = 4692; + this.state = 4520; this.triggerAtomExpression(); - this.state = 4693; + this.state = 4521; this.match(HiveSqlParser.KW_DO); - this.state = 4694; + this.state = 4522; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4696; + this.state = 4524; this.match(HiveSqlParser.KW_ALTER); - this.state = 4697; + this.state = 4525; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4698; + this.state = 4526; localContext._rpName = this.id_(); - this.state = 4699; + this.state = 4527; this.match(HiveSqlParser.DOT); - this.state = 4700; + this.state = 4528; localContext._triggerName = this.id_(); - this.state = 4717; + this.state = 4545; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4701; + this.state = 4529; this.match(HiveSqlParser.KW_WHEN); - this.state = 4702; + this.state = 4530; this.triggerAtomExpression(); - this.state = 4703; + this.state = 4531; this.match(HiveSqlParser.KW_DO); - this.state = 4704; + this.state = 4532; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4710; + this.state = 4538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4706; + this.state = 4534; this.match(HiveSqlParser.KW_ADD); - this.state = 4707; + this.state = 4535; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4708; + this.state = 4536; this.match(HiveSqlParser.KW_DROP); - this.state = 4709; + this.state = 4537; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4715; + this.state = 4543; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4712; + this.state = 4540; this.match(HiveSqlParser.KW_POOL); - this.state = 4713; + this.state = 4541; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4714; + this.state = 4542; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -25178,73 +24397,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4719; + this.state = 4547; this.match(HiveSqlParser.KW_DROP); - this.state = 4720; + this.state = 4548; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4721; + this.state = 4549; localContext._rpName = this.id_(); - this.state = 4722; + this.state = 4550; this.match(HiveSqlParser.DOT); - this.state = 4723; + this.state = 4551; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4725; + this.state = 4553; this.match(HiveSqlParser.KW_CREATE); - this.state = 4726; + this.state = 4554; this.match(HiveSqlParser.KW_POOL); - this.state = 4727; + this.state = 4555; localContext._rpName = this.id_(); - this.state = 4728; + this.state = 4556; this.match(HiveSqlParser.DOT); - this.state = 4729; + this.state = 4557; this.poolPath(); - this.state = 4730; + this.state = 4558; this.match(HiveSqlParser.KW_WITH); - this.state = 4731; + this.state = 4559; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4733; + this.state = 4561; this.match(HiveSqlParser.KW_ALTER); - this.state = 4734; + this.state = 4562; this.match(HiveSqlParser.KW_POOL); - this.state = 4735; + this.state = 4563; localContext._rpName = this.id_(); - this.state = 4736; + this.state = 4564; this.match(HiveSqlParser.DOT); - this.state = 4737; + this.state = 4565; this.poolPath(); - this.state = 4745; + this.state = 4573; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4738; + this.state = 4566; this.match(HiveSqlParser.KW_SET); - this.state = 4739; + this.state = 4567; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4740; + this.state = 4568; this.match(HiveSqlParser.KW_UNSET); - this.state = 4741; + this.state = 4569; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4742; + this.state = 4570; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -25253,9 +24472,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4743; + this.state = 4571; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4744; + this.state = 4572; localContext._triggerName = this.id_(); } break; @@ -25267,22 +24486,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4747; + this.state = 4575; this.match(HiveSqlParser.KW_DROP); - this.state = 4748; + this.state = 4576; this.match(HiveSqlParser.KW_POOL); - this.state = 4749; + this.state = 4577; localContext._rpName = this.id_(); - this.state = 4750; + this.state = 4578; this.match(HiveSqlParser.DOT); - this.state = 4751; + this.state = 4579; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4753; + this.state = 4581; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -25291,46 +24510,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4754; + this.state = 4582; localContext._mappingType = this.mappingTypes(); - this.state = 4755; + this.state = 4583; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4756; + this.state = 4584; this.match(HiveSqlParser.StringLiteral); - this.state = 4757; + this.state = 4585; this.match(HiveSqlParser.KW_IN); - this.state = 4758; + this.state = 4586; localContext._rpName = this.id_(); - this.state = 4762; + this.state = 4590; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4759; + this.state = 4587; this.match(HiveSqlParser.KW_TO); - this.state = 4760; + this.state = 4588; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4761; + this.state = 4589; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4767; + this.state = 4595; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 4764; + this.state = 4592; this.match(HiveSqlParser.KW_WITH); - this.state = 4765; + this.state = 4593; this.match(HiveSqlParser.KW_ORDER); - this.state = 4766; + this.state = 4594; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -25340,17 +24559,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4769; + this.state = 4597; this.match(HiveSqlParser.KW_DROP); - this.state = 4770; + this.state = 4598; localContext._mappingType = this.mappingTypes(); - this.state = 4771; + this.state = 4599; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4772; + this.state = 4600; this.match(HiveSqlParser.StringLiteral); - this.state = 4773; + this.state = 4601; this.match(HiveSqlParser.KW_IN); - this.state = 4774; + this.state = 4602; localContext._rpName = this.id_(); } break; @@ -25372,12 +24591,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 608, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4778; + this.state = 4606; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -25404,32 +24623,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 610, HiveSqlParser.RULE_rpAssign); try { - this.state = 4787; + this.state = 4615; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4780; + this.state = 4608; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4781; + this.state = 4609; this.match(HiveSqlParser.EQUAL); - this.state = 4782; + this.state = 4610; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4783; + this.state = 4611; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4784; + this.state = 4612; this.match(HiveSqlParser.KW_POOL); - this.state = 4785; + this.state = 4613; this.match(HiveSqlParser.EQUAL); - this.state = 4786; + this.state = 4614; this.poolPath(); } break; @@ -25453,26 +24672,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 612, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4789; + this.state = 4617; this.rpAssign(); - this.state = 4794; + this.state = 4622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4790; + this.state = 4618; this.match(HiveSqlParser.COMMA); - this.state = 4791; + this.state = 4619; this.rpAssign(); } } - this.state = 4796; + this.state = 4624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25494,24 +24713,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 614, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4800; + this.state = 4628; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4797; + this.state = 4625; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4798; + this.state = 4626; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4799; + this.state = 4627; this.match(HiveSqlParser.KW_POOL); } break; @@ -25535,20 +24754,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 616, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4802; + this.state = 4630; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4805; + this.state = 4633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4803; + this.state = 4631; this.match(HiveSqlParser.KW_WITH); - this.state = 4804; + this.state = 4632; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -25571,12 +24790,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 618, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4807; + this.state = 4635; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -25603,12 +24822,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 620, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4809; + this.state = 4637; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -25633,265 +24852,9 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public year(): YearContext { - let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_year); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4811; - _la = this.tokenStream.LA(1); - if(!(_la === 392 || _la === 393)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public month(): MonthContext { - let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_month); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4813; - _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 209)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public week(): WeekContext { - let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_week); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4815; - _la = this.tokenStream.LA(1); - if(!(_la === 381 || _la === 382)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public day(): DayContext { - let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_day); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4817; - _la = this.tokenStream.LA(1); - if(!(_la === 73 || _la === 74)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public hour(): HourContext { - let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_hour); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4819; - _la = this.tokenStream.LA(1); - if(!(_la === 148 || _la === 149)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public minute(): MinuteContext { - let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 696, HiveSqlParser.RULE_minute); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4821; - _la = this.tokenStream.LA(1); - if(!(_la === 206 || _la === 207)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public second(): SecondContext { - let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 698, HiveSqlParser.RULE_second); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4823; - _la = this.tokenStream.LA(1); - if(!(_la === 297 || _la === 298)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public decimal(): DecimalContext { - let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 700, HiveSqlParser.RULE_decimal); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4825; - _la = this.tokenStream.LA(1); - if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public emptyColumn(): EmptyColumnContext { let localContext = new EmptyColumnContext(this.context, this.state); - this.enterRule(localContext, 702, HiveSqlParser.RULE_emptyColumn); + this.enterRule(localContext, 622, HiveSqlParser.RULE_emptyColumn); try { this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -25914,30 +24877,30 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 704, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 624, HiveSqlParser.RULE_poolPath); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4829; + this.state = 4641; this.id_(); - this.state = 4834; + this.state = 4646; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 619, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4830; + this.state = 4642; this.match(HiveSqlParser.DOT); - this.state = 4831; + this.state = 4643; this.id_(); } } } - this.state = 4836; + this.state = 4648; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 619, this.context); } } } @@ -25957,63 +24920,63 @@ export class HiveSqlParser extends SQLParserBase { } public poolPathAllowEmpty(): PoolPathAllowEmptyContext { let localContext = new PoolPathAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 706, HiveSqlParser.RULE_poolPathAllowEmpty); + this.enterRule(localContext, 626, HiveSqlParser.RULE_poolPathAllowEmpty); try { let alternative: number; - this.state = 4854; + this.state = 4666; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4837; + this.state = 4649; this.id_(); - this.state = 4842; + this.state = 4654; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 620, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4838; + this.state = 4650; this.match(HiveSqlParser.DOT); - this.state = 4839; + this.state = 4651; this.id_(); } } } - this.state = 4844; + this.state = 4656; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 620, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4845; + this.state = 4657; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 4846; + this.state = 4658; this.id_(); - this.state = 4851; + this.state = 4663; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 621, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4847; + this.state = 4659; this.match(HiveSqlParser.DOT); - this.state = 4848; + this.state = 4660; this.emptyColumn(); } } } - this.state = 4853; + this.state = 4665; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 621, this.context); } } break; @@ -26035,16 +24998,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 708, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 628, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4856; + this.state = 4668; this.id_(); - this.state = 4857; + this.state = 4669; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4858; + this.state = 4670; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -26071,26 +25034,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 710, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 630, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4864; + this.state = 4676; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4860; + this.state = 4672; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4861; + this.state = 4673; this.match(HiveSqlParser.KW_MOVE); - this.state = 4862; + this.state = 4674; this.match(HiveSqlParser.KW_TO); - this.state = 4863; + this.state = 4675; this.poolPath(); } break; @@ -26114,50 +25077,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 712, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 632, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4878; + this.state = 4690; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4866; + this.state = 4678; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4867; + this.state = 4679; this.match(HiveSqlParser.EQUAL); - this.state = 4868; + this.state = 4680; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4869; + this.state = 4681; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4870; + this.state = 4682; this.match(HiveSqlParser.EQUAL); - this.state = 4871; + this.state = 4683; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4872; + this.state = 4684; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4873; + this.state = 4685; this.match(HiveSqlParser.EQUAL); - this.state = 4874; + this.state = 4686; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4875; + this.state = 4687; this.match(HiveSqlParser.KW_PATH); - this.state = 4876; + this.state = 4688; this.match(HiveSqlParser.EQUAL); - this.state = 4877; + this.state = 4689; localContext._path = this.poolPath(); } break; @@ -26182,26 +25145,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 714, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 634, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4880; + this.state = 4692; this.poolAssign(); - this.state = 4885; + this.state = 4697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4881; + this.state = 4693; this.match(HiveSqlParser.COMMA); - this.state = 4882; + this.state = 4694; this.poolAssign(); } } - this.state = 4887; + this.state = 4699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26224,15 +25187,15 @@ export class HiveSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 128: + case 111: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 130: + case 113: return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); - case 257: + case 229: return this.selectItem_sempred(localContext as SelectItemContext, predIndex); - case 333: + case 301: return this.configPropertyPart_sempred(localContext as ConfigPropertyPartContext, predIndex); - case 353: + case 313: return this.poolPathAllowEmpty_sempred(localContext as PoolPathAllowEmptyContext, predIndex); } return true; @@ -26276,7 +25239,7 @@ export class HiveSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,438,4889,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,438,4701,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -26330,2118 +25293,2046 @@ export class HiveSqlParser extends SQLParserBase { 7,296,2,297,7,297,2,298,7,298,2,299,7,299,2,300,7,300,2,301,7,301, 2,302,7,302,2,303,7,303,2,304,7,304,2,305,7,305,2,306,7,306,2,307, 7,307,2,308,7,308,2,309,7,309,2,310,7,310,2,311,7,311,2,312,7,312, - 2,313,7,313,2,314,7,314,2,315,7,315,2,316,7,316,2,317,7,317,2,318, - 7,318,2,319,7,319,2,320,7,320,2,321,7,321,2,322,7,322,2,323,7,323, - 2,324,7,324,2,325,7,325,2,326,7,326,2,327,7,327,2,328,7,328,2,329, - 7,329,2,330,7,330,2,331,7,331,2,332,7,332,2,333,7,333,2,334,7,334, - 2,335,7,335,2,336,7,336,2,337,7,337,2,338,7,338,2,339,7,339,2,340, - 7,340,2,341,7,341,2,342,7,342,2,343,7,343,2,344,7,344,2,345,7,345, - 2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350,2,351, - 7,351,2,352,7,352,2,353,7,353,2,354,7,354,2,355,7,355,2,356,7,356, - 2,357,7,357,1,0,5,0,718,8,0,10,0,12,0,721,9,0,1,0,1,0,1,1,1,1,3, - 1,727,8,1,1,1,3,1,730,8,1,1,2,1,2,5,2,734,8,2,10,2,12,2,737,9,2, - 1,2,1,2,1,2,3,2,742,8,2,1,3,1,3,1,3,1,3,1,3,3,3,749,8,3,1,3,1,3, - 1,3,1,3,1,3,1,3,1,3,1,3,3,3,759,8,3,1,3,3,3,762,8,3,1,3,1,3,3,3, - 766,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5, - 781,8,5,1,5,1,5,1,5,1,5,1,5,3,5,788,8,5,1,5,1,5,1,5,1,5,3,5,794, - 8,5,1,5,1,5,1,5,3,5,799,8,5,1,5,1,5,1,5,3,5,804,8,5,1,5,3,5,807, - 8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,5,5,829,8,5,10,5,12,5,832,9,5,3,5,834,8,5,1, - 6,1,6,1,6,3,6,839,8,6,1,6,1,6,1,6,3,6,844,8,6,1,6,1,6,1,6,1,6,3, - 6,850,8,6,1,7,1,7,3,7,854,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1, - 8,1,8,1,8,3,8,867,8,8,1,9,1,9,3,9,871,8,9,1,9,1,9,3,9,875,8,9,1, - 9,1,9,1,9,3,9,880,8,9,1,10,1,10,1,10,1,10,1,10,3,10,887,8,10,1,10, - 1,10,3,10,891,8,10,1,11,1,11,1,11,3,11,896,8,11,1,12,1,12,1,12,1, - 12,1,12,3,12,903,8,12,1,12,1,12,3,12,907,8,12,1,13,1,13,1,13,3,13, - 912,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 2,313,7,313,2,314,7,314,2,315,7,315,2,316,7,316,2,317,7,317,1,0, + 5,0,638,8,0,10,0,12,0,641,9,0,1,0,1,0,1,1,1,1,3,1,647,8,1,1,1,3, + 1,650,8,1,1,2,1,2,5,2,654,8,2,10,2,12,2,657,9,2,1,2,1,2,1,2,3,2, + 662,8,2,1,3,1,3,1,3,1,3,1,3,3,3,669,8,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,3,3,679,8,3,1,3,3,3,682,8,3,1,3,1,3,3,3,686,8,3,1,4,1,4, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,701,8,5,1,5,1,5, + 1,5,1,5,1,5,3,5,708,8,5,1,5,1,5,1,5,1,5,3,5,714,8,5,1,5,1,5,1,5, + 3,5,719,8,5,1,5,1,5,1,5,3,5,724,8,5,1,5,3,5,727,8,5,1,5,1,5,1,5, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 1,5,5,5,749,8,5,10,5,12,5,752,9,5,3,5,754,8,5,1,6,1,6,1,6,3,6,759, + 8,6,1,6,1,6,1,6,3,6,764,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,773, + 8,6,1,7,1,7,3,7,777,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,790,8,8,1,9,1,9,3,9,794,8,9,1,9,1,9,3,9,798,8,9,1,9,1,9, + 1,9,3,9,803,8,9,1,10,1,10,1,10,1,10,1,10,3,10,810,8,10,1,10,1,10, + 3,10,814,8,10,1,11,1,11,1,11,3,11,819,8,11,1,12,1,12,1,12,1,12,1, + 12,3,12,826,8,12,1,12,1,12,3,12,830,8,12,1,13,1,13,1,13,3,13,835, + 8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,958,8,14,11,14,12,14,959, - 1,14,1,14,1,14,4,14,965,8,14,11,14,12,14,966,1,14,1,14,1,14,3,14, - 972,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18, - 1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21,3,21,995,8,21, - 1,21,1,21,3,21,999,8,21,1,21,1,21,3,21,1003,8,21,1,21,3,21,1006, - 8,21,1,21,1,21,3,21,1010,8,21,1,21,1,21,1,21,3,21,1015,8,21,1,21, - 1,21,1,21,1,21,3,21,1021,8,21,1,21,1,21,3,21,1025,8,21,1,21,1,21, - 1,21,1,21,3,21,1031,8,21,3,21,1033,8,21,1,22,1,22,1,22,1,23,1,23, - 1,23,1,24,1,24,1,24,3,24,1044,8,24,1,24,1,24,3,24,1048,8,24,1,25, - 1,25,1,25,1,26,1,26,3,26,1055,8,26,1,26,1,26,1,26,1,26,1,26,1,26, - 3,26,1063,8,26,1,26,3,26,1066,8,26,1,27,1,27,1,27,3,27,1071,8,27, - 1,27,1,27,3,27,1075,8,27,1,27,3,27,1078,8,27,1,28,1,28,1,28,1,28, - 1,28,1,29,1,29,1,29,3,29,1088,8,29,1,29,1,29,1,29,1,29,1,29,1,29, - 3,29,1096,8,29,5,29,1098,8,29,10,29,12,29,1101,9,29,3,29,1103,8, - 29,1,30,1,30,3,30,1107,8,30,1,31,1,31,3,31,1111,8,31,1,31,3,31,1114, - 8,31,1,32,1,32,1,32,3,32,1119,8,32,1,32,1,32,1,32,1,32,3,32,1125, - 8,32,1,32,1,32,1,32,3,32,1130,8,32,1,32,1,32,1,32,3,32,1135,8,32, - 1,32,1,32,3,32,1139,8,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33, - 1,33,3,33,1150,8,33,3,33,1152,8,33,1,33,1,33,3,33,1156,8,33,1,34, - 1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1166,8,36,1,36,1,36,3,36, - 1170,8,36,1,36,1,36,1,36,1,36,3,36,1176,8,36,1,36,3,36,1179,8,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1186,8,36,1,36,1,36,1,36,3,36,1191, - 8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1199,8,36,1,36,1,36,1,36, - 3,36,1204,8,36,1,36,1,36,3,36,1208,8,36,1,36,1,36,1,36,1,36,1,36, - 1,36,3,36,1216,8,36,1,36,1,36,1,36,3,36,1221,8,36,1,36,1,36,1,36, - 1,36,3,36,1227,8,36,1,36,1,36,1,36,1,36,3,36,1233,8,36,1,36,3,36, - 1236,8,36,1,36,3,36,1239,8,36,1,36,3,36,1242,8,36,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1251,8,36,1,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1259,8,36,1,36,1,36,1,36,3,36,1264,8,36,1,36,1,36,1,36,1,36, - 1,36,1,36,3,36,1272,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1279,8,36, - 1,36,3,36,1282,8,36,1,36,3,36,1285,8,36,3,36,1287,8,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1298,8,36,3,36,1300,8,36, - 1,36,3,36,1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36, - 3,36,1312,8,36,1,36,3,36,1315,8,36,3,36,1317,8,36,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1329,8,36,1,36,1,36,1,36, - 1,36,3,36,1335,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1343,8,36, - 3,36,1345,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,1355, - 8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40, - 1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,44, - 1,44,1,44,1,44,1,45,1,45,1,45,3,45,1388,8,45,1,45,1,45,1,45,3,45, - 1393,8,45,1,46,1,46,3,46,1397,8,46,1,46,1,46,3,46,1401,8,46,1,46, - 1,46,1,46,1,47,1,47,3,47,1408,8,47,1,47,1,47,1,47,5,47,1413,8,47, - 10,47,12,47,1416,9,47,1,47,1,47,1,47,3,47,1421,8,47,1,48,1,48,3, - 48,1425,8,48,1,48,3,48,1428,8,48,1,48,1,48,1,48,5,48,1433,8,48,10, - 48,12,48,1436,9,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,50, - 1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,3,52,1458, - 8,52,1,53,1,53,1,53,3,53,1463,8,53,1,53,1,53,3,53,1467,8,53,1,54, - 1,54,1,54,1,54,1,55,1,55,3,55,1475,8,55,1,56,1,56,1,56,1,57,1,57, - 1,57,1,57,3,57,1484,8,57,1,57,1,57,1,57,1,57,1,57,3,57,1491,8,57, - 1,58,1,58,1,58,1,58,3,58,1497,8,58,1,58,1,58,1,58,1,58,1,58,3,58, - 1504,8,58,1,58,3,58,1507,8,58,1,58,1,58,1,58,1,58,3,58,1513,8,58, - 1,59,1,59,1,59,5,59,1518,8,59,10,59,12,59,1521,9,59,1,60,1,60,1, - 60,1,60,1,60,3,60,1528,8,60,1,61,1,61,1,62,1,62,1,62,5,62,1535,8, - 62,10,62,12,62,1538,9,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1546, - 8,63,1,64,1,64,1,64,1,64,1,64,3,64,1553,8,64,1,65,1,65,1,65,1,65, - 1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,69, - 1,69,3,69,1573,8,69,1,69,1,69,1,69,1,69,1,69,3,69,1580,8,69,3,69, - 1582,8,69,1,70,1,70,1,70,5,70,1587,8,70,10,70,12,70,1590,9,70,1, - 71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1599,8,73,1,73,1,73,1,73,1, - 73,1,73,1,73,3,73,1607,8,73,1,74,1,74,3,74,1611,8,74,1,74,1,74,3, - 74,1615,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1, - 76,3,76,1628,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,3,77,1637,8, - 77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, - 78,1,78,3,78,1653,8,78,1,78,1,78,3,78,1657,8,78,1,78,1,78,1,78,3, - 78,1662,8,78,1,78,1,78,1,78,3,78,1667,8,78,1,78,3,78,1670,8,78,1, - 78,3,78,1673,8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,78,3, - 78,1682,8,78,1,79,1,79,1,79,3,79,1687,8,79,1,79,1,79,1,79,1,79,1, - 80,1,80,1,80,3,80,1696,8,80,1,80,1,80,3,80,1700,8,80,1,80,1,80,1, - 80,1,80,1,80,3,80,1707,8,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8, - 80,1,80,3,80,1716,8,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, - 81,1,81,3,81,1728,8,81,1,81,1,81,1,82,1,82,3,82,1734,8,82,1,83,1, - 83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1, - 85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87,1760,8,87,1, - 87,1,87,1,88,1,88,1,88,1,88,3,88,1768,8,88,1,88,1,88,3,88,1772,8, - 88,1,88,3,88,1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1, - 88,3,88,1784,8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,3, - 88,1793,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89,1802,8,89,1, - 89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1812,8,90,1,90,3,90,1815, - 8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92, - 1,92,1,93,1,93,1,93,1,93,1,93,3,93,1835,8,93,1,94,1,94,1,94,1,94, - 3,94,1841,8,94,1,94,1,94,1,94,1,94,3,94,1847,8,94,1,94,3,94,1850, - 8,94,3,94,1852,8,94,1,95,1,95,1,95,1,95,1,96,3,96,1859,8,96,1,96, - 1,96,1,96,1,97,1,97,3,97,1866,8,97,1,98,1,98,1,98,1,99,1,99,1,99, - 1,100,1,100,1,100,1,100,1,100,3,100,1879,8,100,1,100,1,100,1,100, - 3,100,1884,8,100,1,100,1,100,1,101,1,101,1,101,5,101,1891,8,101, - 10,101,12,101,1894,9,101,1,102,1,102,1,102,5,102,1899,8,102,10,102, - 12,102,1902,9,102,1,103,1,103,1,103,1,103,1,103,3,103,1909,8,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 3,103,1922,8,103,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,3,104,1935,8,104,1,104,1,104,1,104,1,104,1,105, - 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,3,105,1951, - 8,105,1,106,1,106,3,106,1955,8,106,1,107,1,107,1,107,1,108,1,108, - 1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,3,109,1970,8,109, - 1,110,1,110,1,110,1,110,3,110,1976,8,110,1,110,3,110,1979,8,110, - 1,110,3,110,1982,8,110,1,110,3,110,1985,8,110,1,110,3,110,1988,8, - 110,1,111,1,111,3,111,1992,8,111,1,112,1,112,1,112,1,113,1,113,1, - 113,1,113,1,114,1,114,1,114,1,114,5,114,2005,8,114,10,114,12,114, - 2008,9,114,3,114,2010,8,114,1,115,1,115,1,115,1,115,1,116,1,116, - 1,116,5,116,2019,8,116,10,116,12,116,2022,9,116,1,117,1,117,1,117, - 1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,2035,8,118, - 1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120, - 1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, - 2069,8,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,2077,8,123, - 1,123,1,123,1,123,3,123,2082,8,123,1,123,1,123,1,123,1,123,1,123, - 1,123,3,123,2090,8,123,1,123,1,123,1,123,3,123,2095,8,123,1,123, - 1,123,1,123,3,123,2100,8,123,1,124,1,124,1,124,5,124,2105,8,124, - 10,124,12,124,2108,9,124,1,125,1,125,1,125,5,125,2113,8,125,10,125, - 12,125,2116,9,125,1,126,1,126,1,126,5,126,2121,8,126,10,126,12,126, - 2124,9,126,1,127,1,127,1,127,5,127,2129,8,127,10,127,12,127,2132, - 9,127,1,128,1,128,1,128,3,128,2137,8,128,1,129,1,129,1,130,1,130, - 1,130,3,130,2144,8,130,1,131,1,131,1,132,1,132,1,132,1,132,1,132, - 1,132,3,132,2154,8,132,5,132,2156,8,132,10,132,12,132,2159,9,132, - 1,133,1,133,1,133,5,133,2164,8,133,10,133,12,133,2167,9,133,1,134, - 1,134,1,134,1,134,1,135,1,135,3,135,2175,8,135,1,135,3,135,2178, - 8,135,1,136,1,136,3,136,2182,8,136,1,137,1,137,1,138,1,138,1,138, - 3,138,2189,8,138,1,139,1,139,1,140,1,140,3,140,2195,8,140,1,140, - 1,140,3,140,2199,8,140,1,141,1,141,1,141,1,141,3,141,2205,8,141, - 1,142,1,142,3,142,2209,8,142,1,143,1,143,1,143,1,144,1,144,1,144, - 1,144,1,144,1,145,1,145,3,145,2221,8,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,3,145,2230,8,145,1,146,1,146,1,146,1,146,1,146, - 1,146,1,146,1,146,1,146,3,146,2241,8,146,1,147,1,147,3,147,2245, - 8,147,1,148,1,148,1,148,5,148,2250,8,148,10,148,12,148,2253,9,148, - 1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150,2262,8,150,10,150, - 12,150,2265,9,150,1,151,1,151,1,152,1,152,1,152,1,153,1,153,3,153, - 2274,8,153,1,153,3,153,2277,8,153,1,154,1,154,1,154,5,154,2282,8, - 154,10,154,12,154,2285,9,154,1,155,1,155,1,155,3,155,2290,8,155, - 1,156,1,156,3,156,2294,8,156,1,156,3,156,2297,8,156,1,156,3,156, - 2300,8,156,1,157,1,157,1,157,1,157,3,157,2306,8,157,1,158,1,158, - 3,158,2310,8,158,1,159,1,159,3,159,2314,8,159,1,160,1,160,1,160, - 3,160,2319,8,160,1,160,1,160,3,160,2323,8,160,1,161,1,161,3,161, - 2327,8,161,1,162,1,162,3,162,2331,8,162,1,162,1,162,1,162,1,162, - 1,162,1,162,3,162,2339,8,162,1,163,1,163,3,163,2343,8,163,1,163, - 1,163,3,163,2347,8,163,1,164,1,164,3,164,2351,8,164,1,165,1,165, - 3,165,2355,8,165,1,165,1,165,1,165,1,165,1,165,1,165,3,165,2363, - 8,165,1,166,1,166,3,166,2367,8,166,1,166,1,166,3,166,2371,8,166, - 1,167,1,167,1,167,1,167,1,167,1,167,3,167,2379,8,167,1,168,1,168, - 1,168,3,168,2384,8,168,1,169,1,169,1,169,3,169,2389,8,169,1,170, - 1,170,3,170,2393,8,170,1,171,1,171,3,171,2397,8,171,1,172,1,172, - 1,172,1,172,1,172,3,172,2404,8,172,1,173,1,173,1,174,1,174,1,174, - 5,174,2411,8,174,10,174,12,174,2414,9,174,1,175,1,175,1,175,1,175, - 1,175,3,175,2421,8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,1,176,3,176,2433,8,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 3,176,2451,8,176,1,176,3,176,2454,8,176,1,176,1,176,1,176,1,176, - 3,176,2460,8,176,1,177,1,177,1,177,1,177,1,177,1,178,1,178,1,178, - 1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,180,1,180, - 1,180,1,180,1,180,1,181,1,181,3,181,2486,8,181,1,182,3,182,2489, - 8,182,1,182,1,182,1,183,1,183,3,183,2495,8,183,1,184,1,184,1,184, - 1,184,5,184,2501,8,184,10,184,12,184,2504,9,184,1,185,1,185,1,185, - 1,185,1,185,3,185,2511,8,185,1,185,1,185,1,185,1,185,1,185,1,186, - 1,186,1,186,1,186,5,186,2522,8,186,10,186,12,186,2525,9,186,1,187, - 1,187,1,187,1,187,3,187,2531,8,187,1,187,3,187,2534,8,187,1,187, - 3,187,2537,8,187,1,187,3,187,2540,8,187,1,187,3,187,2543,8,187,1, - 187,3,187,2546,8,187,1,187,3,187,2549,8,187,1,187,3,187,2552,8,187, - 1,187,3,187,2555,8,187,1,187,3,187,2558,8,187,1,187,3,187,2561,8, - 187,1,187,1,187,1,187,3,187,2566,8,187,1,187,3,187,2569,8,187,1, - 187,3,187,2572,8,187,1,187,3,187,2575,8,187,1,187,3,187,2578,8,187, - 1,187,3,187,2581,8,187,1,187,3,187,2584,8,187,1,187,3,187,2587,8, - 187,1,187,3,187,2590,8,187,1,187,3,187,2593,8,187,1,187,3,187,2596, - 8,187,3,187,2598,8,187,1,188,1,188,1,188,1,188,3,188,2604,8,188, - 1,189,1,189,3,189,2608,8,189,1,189,3,189,2611,8,189,1,189,3,189, - 2614,8,189,1,189,3,189,2617,8,189,1,189,3,189,2620,8,189,1,189,3, - 189,2623,8,189,1,189,1,189,1,189,1,189,1,189,3,189,2630,8,189,1, - 190,1,190,3,190,2634,8,190,1,190,3,190,2637,8,190,1,190,3,190,2640, - 8,190,1,190,3,190,2643,8,190,1,190,3,190,2646,8,190,1,190,3,190, - 2649,8,190,1,191,1,191,1,191,4,191,2654,8,191,11,191,12,191,2655, - 1,192,3,192,2659,8,192,1,192,1,192,1,193,1,193,1,193,1,193,3,193, - 2667,8,193,1,193,1,193,3,193,2671,8,193,1,193,1,193,1,193,1,193, - 1,193,3,193,2678,8,193,3,193,2680,8,193,1,194,3,194,2683,8,194,1, - 194,1,194,1,194,3,194,2688,8,194,1,194,3,194,2691,8,194,1,194,1, - 194,3,194,2695,8,194,1,195,1,195,1,195,3,195,2700,8,195,1,195,1, - 195,1,195,1,195,3,195,2706,8,195,1,196,1,196,1,196,1,196,1,197,1, - 197,3,197,2714,8,197,1,198,1,198,1,198,1,198,5,198,2720,8,198,10, - 198,12,198,2723,9,198,1,199,1,199,1,199,1,199,1,199,5,199,2730,8, - 199,10,199,12,199,2733,9,199,3,199,2735,8,199,1,199,1,199,3,199, - 2739,8,199,1,199,1,199,3,199,2743,8,199,1,199,1,199,1,199,3,199, - 2748,8,199,1,200,1,200,1,200,1,200,1,200,3,200,2755,8,200,1,201, - 1,201,5,201,2759,8,201,10,201,12,201,2762,9,201,1,201,3,201,2765, - 8,201,1,202,1,202,1,202,1,202,1,202,3,202,2772,8,202,1,202,1,202, - 1,202,3,202,2777,8,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203, - 1,203,1,203,1,203,1,203,3,203,2790,8,203,1,204,1,204,1,204,1,204, - 1,204,1,204,3,204,2798,8,204,1,205,1,205,1,205,1,206,1,206,1,206, - 1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 3,208,2817,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 3,208,2827,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,3,208,2840,8,208,1,209,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,3,209,2850,8,209,1,209,1,209,3,209,2854,8,209, - 4,209,2856,8,209,11,209,12,209,2857,1,209,1,209,5,209,2862,8,209, - 10,209,12,209,2865,9,209,1,209,1,209,5,209,2869,8,209,10,209,12, - 209,2872,9,209,1,209,1,209,5,209,2876,8,209,10,209,12,209,2879,9, - 209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,2887,8,209,1,209,1, - 209,1,209,1,209,1,209,3,209,2894,8,209,1,209,1,209,1,209,1,209,1, - 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,3,209,2914,8,209,1,209,3,209,2917,8,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 3,209,2931,8,209,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,3,210,2946,8,210,1,210,1,210,3,210, - 2950,8,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,1,210,1,210,5,210,2968,8,210,10,210, - 12,210,2971,9,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,3,210,2982,8,210,1,210,1,210,1,210,1,210,3,210,2988,8,210, - 1,210,3,210,2991,8,210,1,210,3,210,2994,8,210,1,210,1,210,1,210, - 1,210,3,210,3000,8,210,1,210,1,210,1,210,1,210,3,210,3006,8,210, - 1,210,1,210,1,210,1,210,1,210,3,210,3013,8,210,1,210,1,210,1,210, - 1,210,1,210,1,210,3,210,3021,8,210,1,210,1,210,1,210,1,210,3,210, - 3027,8,210,1,210,1,210,3,210,3031,8,210,1,210,1,210,1,210,3,210, - 3036,8,210,1,210,3,210,3039,8,210,1,210,1,210,3,210,3043,8,210,1, - 210,1,210,1,210,1,210,1,210,3,210,3050,8,210,1,210,1,210,1,210,3, - 210,3055,8,210,1,210,1,210,1,210,3,210,3060,8,210,1,210,3,210,3063, - 8,210,3,210,3065,8,210,1,211,1,211,1,211,1,211,1,211,1,211,3,211, - 3073,8,211,1,211,1,211,1,211,1,211,1,211,1,211,3,211,3081,8,211, - 1,211,1,211,3,211,3085,8,211,4,211,3087,8,211,11,211,12,211,3088, - 1,211,1,211,3,211,3093,8,211,1,212,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,3,212,3110, - 8,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,3,213,3127,8,213,1,214,1,214,1,214, - 1,215,1,215,3,215,3134,8,215,1,215,1,215,1,215,1,215,1,215,5,215, - 3141,8,215,10,215,12,215,3144,9,215,1,215,1,215,3,215,3148,8,215, - 1,215,3,215,3151,8,215,1,215,3,215,3154,8,215,1,216,1,216,3,216, - 3158,8,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,3,217,3173,8,217,1,217,1,217,1,218,1,218, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3187,8,218, - 1,218,3,218,3190,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219, - 1,219,1,219,3,219,3201,8,219,1,220,1,220,3,220,3205,8,220,1,220, - 3,220,3208,8,220,1,220,3,220,3211,8,220,1,220,1,220,3,220,3215,8, - 220,1,220,1,220,1,220,3,220,3220,8,220,1,220,3,220,3223,8,220,1, - 220,3,220,3226,8,220,1,220,3,220,3229,8,220,1,220,3,220,3232,8,220, - 1,220,3,220,3235,8,220,1,220,1,220,1,220,1,220,3,220,3241,8,220, - 1,220,3,220,3244,8,220,1,220,3,220,3247,8,220,1,220,3,220,3250,8, - 220,1,220,3,220,3253,8,220,1,220,3,220,3256,8,220,1,220,3,220,3259, - 8,220,1,220,3,220,3262,8,220,1,220,3,220,3265,8,220,1,220,3,220, - 3268,8,220,1,220,1,220,3,220,3272,8,220,3,220,3274,8,220,1,220,1, - 220,1,220,1,220,3,220,3280,8,220,1,220,1,220,1,220,3,220,3285,8, - 220,1,220,3,220,3288,8,220,1,220,3,220,3291,8,220,1,220,3,220,3294, - 8,220,1,220,3,220,3297,8,220,1,220,1,220,1,220,1,220,3,220,3303, - 8,220,1,220,3,220,3306,8,220,1,220,3,220,3309,8,220,1,220,3,220, - 3312,8,220,1,220,3,220,3315,8,220,1,220,3,220,3318,8,220,1,220,3, - 220,3321,8,220,1,220,3,220,3324,8,220,1,220,3,220,3327,8,220,1,220, - 3,220,3330,8,220,1,220,1,220,3,220,3334,8,220,3,220,3336,8,220,3, - 220,3338,8,220,1,221,1,221,1,221,3,221,3343,8,221,1,221,1,221,1, - 221,3,221,3348,8,221,1,221,1,221,3,221,3352,8,221,1,221,1,221,3, - 221,3356,8,221,1,221,1,221,1,221,3,221,3361,8,221,1,222,1,222,1, - 222,3,222,3366,8,222,1,222,1,222,1,223,1,223,1,223,5,223,3373,8, - 223,10,223,12,223,3376,9,223,1,223,1,223,1,224,1,224,1,224,5,224, - 3383,8,224,10,224,12,224,3386,9,224,1,225,1,225,1,225,5,225,3391, - 8,225,10,225,12,225,3394,9,225,1,226,1,226,1,226,1,227,1,227,1,227, - 1,227,4,227,3403,8,227,11,227,12,227,3404,1,227,3,227,3408,8,227, - 1,228,1,228,5,228,3412,8,228,10,228,12,228,3415,9,228,1,228,1,228, - 5,228,3419,8,228,10,228,12,228,3422,9,228,1,228,1,228,5,228,3426, - 8,228,10,228,12,228,3429,9,228,1,228,1,228,5,228,3433,8,228,10,228, - 12,228,3436,9,228,1,228,1,228,1,228,1,228,3,228,3442,8,228,1,229, - 1,229,1,229,1,229,1,229,1,229,1,229,1,229,3,229,3452,8,229,3,229, - 3454,8,229,1,229,1,229,3,229,3458,8,229,5,229,3460,8,229,10,229, - 12,229,3463,9,229,1,230,1,230,1,230,1,230,3,230,3469,8,230,1,230, - 5,230,3472,8,230,10,230,12,230,3475,9,230,1,231,3,231,3478,8,231, - 1,231,1,231,3,231,3482,8,231,1,231,3,231,3485,8,231,1,231,3,231, - 3488,8,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232, - 3,232,3499,8,232,1,232,1,232,3,232,3503,8,232,3,232,3505,8,232,1, - 232,3,232,3508,8,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1, - 233,1,233,5,233,3519,8,233,10,233,12,233,3522,9,233,3,233,3524,8, - 233,1,233,3,233,3527,8,233,1,233,1,233,1,233,1,233,1,233,1,233,1, - 233,1,233,5,233,3537,8,233,10,233,12,233,3540,9,233,3,233,3542,8, - 233,1,233,1,233,1,233,1,233,1,233,3,233,3549,8,233,1,233,1,233,1, - 233,1,233,1,233,5,233,3556,8,233,10,233,12,233,3559,9,233,1,233, - 1,233,3,233,3563,8,233,3,233,3565,8,233,3,233,3567,8,233,1,234,1, - 234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235, - 1,235,5,235,3582,8,235,10,235,12,235,3585,9,235,3,235,3587,8,235, - 1,235,1,235,1,235,1,235,1,235,1,235,3,235,3595,8,235,1,235,3,235, - 3598,8,235,1,236,1,236,3,236,3602,8,236,1,236,3,236,3605,8,236,1, - 236,3,236,3608,8,236,1,236,3,236,3611,8,236,1,236,3,236,3614,8,236, - 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237, - 3626,8,237,1,238,1,238,1,239,1,239,1,240,1,240,3,240,3634,8,240, - 1,241,1,241,1,241,1,241,1,241,3,241,3641,8,241,1,241,3,241,3644, - 8,241,1,242,1,242,1,242,1,242,1,242,3,242,3651,8,242,1,242,3,242, - 3654,8,242,1,243,1,243,1,243,3,243,3659,8,243,1,243,1,243,1,244, - 1,244,1,244,3,244,3666,8,244,1,244,1,244,1,245,1,245,1,245,1,245, - 3,245,3674,8,245,1,245,1,245,1,246,1,246,3,246,3680,8,246,1,246, - 1,246,1,246,3,246,3685,8,246,1,246,1,246,3,246,3689,8,246,1,247, - 1,247,1,247,3,247,3694,8,247,1,248,1,248,3,248,3698,8,248,1,249, - 1,249,1,249,1,249,1,249,3,249,3705,8,249,1,249,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,1,249,1,249,5,249,3717,8,249,10,249,12,249, - 3720,9,249,3,249,3722,8,249,1,249,1,249,1,250,1,250,1,250,3,250, - 3729,8,250,1,251,1,251,1,251,1,251,5,251,3735,8,251,10,251,12,251, - 3738,9,251,1,251,1,251,1,251,1,251,1,251,5,251,3745,8,251,10,251, - 12,251,3748,9,251,3,251,3750,8,251,1,252,1,252,1,252,1,252,1,252, - 1,253,1,253,3,253,3759,8,253,1,253,1,253,1,253,1,253,1,253,5,253, - 3766,8,253,10,253,12,253,3769,9,253,3,253,3771,8,253,1,253,1,253, - 1,254,1,254,3,254,3777,8,254,1,254,3,254,3780,8,254,1,254,1,254, - 1,254,3,254,3785,8,254,1,254,3,254,3788,8,254,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,3801,8,255, - 1,255,1,255,1,255,1,255,3,255,3807,8,255,3,255,3809,8,255,1,255, - 1,255,1,255,1,256,1,256,1,256,5,256,3817,8,256,10,256,12,256,3820, - 9,256,1,257,1,257,1,257,3,257,3825,8,257,1,257,3,257,3828,8,257, - 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3836,8,257,10,257,12,257, - 3839,9,257,1,257,1,257,3,257,3843,8,257,1,257,1,257,3,257,3847,8, - 257,1,258,1,258,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,1,260,1,260,1,260,3,260,3863,8,260,1,260,1,260,1,260,1,260, - 3,260,3869,8,260,3,260,3871,8,260,1,260,1,260,1,260,1,261,1,261, - 3,261,3878,8,261,1,262,1,262,1,262,5,262,3883,8,262,10,262,12,262, - 3886,9,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 5,263,3897,8,263,10,263,12,263,3900,9,263,1,264,1,264,1,264,3,264, - 3905,8,264,1,264,3,264,3908,8,264,1,264,3,264,3911,8,264,1,264,3, - 264,3914,8,264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3923, - 8,265,1,265,1,265,1,265,1,265,1,265,3,265,3930,8,265,1,266,1,266, - 1,266,1,266,3,266,3936,8,266,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,3,267,3945,8,267,1,268,1,268,3,268,3949,8,268,1,268,1,268, - 1,268,1,268,5,268,3955,8,268,10,268,12,268,3958,9,268,1,268,1,268, - 1,269,1,269,1,269,1,269,1,269,3,269,3967,8,269,1,269,1,269,1,269, - 1,269,1,269,1,269,5,269,3975,8,269,10,269,12,269,3978,9,269,1,269, - 1,269,3,269,3982,8,269,1,270,1,270,3,270,3986,8,270,1,270,1,270, - 5,270,3990,8,270,10,270,12,270,3993,9,270,1,270,1,270,3,270,3997, - 8,270,1,271,1,271,1,271,3,271,4002,8,271,1,272,1,272,1,272,1,273, - 1,273,3,273,4009,8,273,1,274,1,274,3,274,4013,8,274,1,274,3,274, - 4016,8,274,1,274,1,274,1,274,3,274,4021,8,274,1,274,3,274,4024,8, - 274,5,274,4026,8,274,10,274,12,274,4029,9,274,1,275,1,275,3,275, - 4033,8,275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4042, - 8,277,11,277,12,277,4043,3,277,4046,8,277,1,278,1,278,1,278,1,278, - 1,278,5,278,4053,8,278,10,278,12,278,4056,9,278,1,279,1,279,1,279, - 1,279,1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,282,1,282, - 1,282,1,282,1,282,1,282,5,282,4076,8,282,10,282,12,282,4079,9,282, - 1,282,1,282,1,282,1,282,1,282,5,282,4086,8,282,10,282,12,282,4089, - 9,282,3,282,4091,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4098, - 8,283,1,283,3,283,4101,8,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,3,283,4111,8,283,1,283,1,283,1,283,5,283,4116,8,283, - 10,283,12,283,4119,9,283,3,283,4121,8,283,3,283,4123,8,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4134,8,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4144,8,283, - 3,283,4146,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286, - 4155,8,286,1,287,1,287,1,287,3,287,4160,8,287,1,288,1,288,1,288, - 1,288,1,288,1,288,1,288,3,288,4169,8,288,1,288,1,288,1,289,1,289, - 1,289,1,289,1,289,1,289,1,289,4,289,4180,8,289,11,289,12,289,4181, - 1,289,1,289,3,289,4186,8,289,1,289,1,289,1,290,1,290,1,290,1,290, - 1,290,1,290,4,290,4196,8,290,11,290,12,290,4197,1,290,1,290,3,290, - 4202,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4211, - 8,291,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4230,8,293,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, - 1,294,1,294,5,294,4246,8,294,10,294,12,294,4249,9,294,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,4260,8,294,1,295, - 1,295,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, - 1,296,3,296,4275,8,296,1,296,1,296,3,296,4279,8,296,1,297,1,297, - 1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297, - 1,297,3,297,4295,8,297,1,298,1,298,1,298,5,298,4300,8,298,10,298, - 12,298,4303,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,3,299,4316,8,299,1,300,5,300,4319,8,300,10,300, - 12,300,4322,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300, - 4331,8,300,10,300,12,300,4334,9,300,1,301,1,301,1,301,5,301,4339, - 8,301,10,301,12,301,4342,9,301,1,302,1,302,1,302,5,302,4347,8,302, - 10,302,12,302,4350,9,302,1,303,1,303,1,303,5,303,4355,8,303,10,303, - 12,303,4358,9,303,1,304,1,304,1,304,5,304,4363,8,304,10,304,12,304, - 4366,9,304,1,305,1,305,1,305,5,305,4371,8,305,10,305,12,305,4374, - 9,305,1,306,1,306,1,306,5,306,4379,8,306,10,306,12,306,4382,9,306, - 1,307,1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4392,8,309, - 1,309,1,309,3,309,4396,8,309,1,310,1,310,1,310,1,310,1,310,1,310, - 3,310,4404,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 1,311,1,311,1,311,1,311,1,311,1,311,3,311,4420,8,311,1,312,1,312, - 3,312,4424,8,312,1,313,1,313,1,313,3,313,4429,8,313,1,314,1,314, - 1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4442, - 8,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4451,8,316, - 10,316,12,316,4454,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317, - 4462,8,317,1,318,5,318,4465,8,318,10,318,12,318,4468,9,318,1,318, - 1,318,1,318,3,318,4473,8,318,1,319,1,319,1,319,5,319,4478,8,319, - 10,319,12,319,4481,9,319,1,320,1,320,3,320,4485,8,320,1,321,1,321, - 1,321,1,321,1,321,5,321,4492,8,321,10,321,12,321,4495,9,321,1,321, - 1,321,1,322,1,322,1,322,3,322,4502,8,322,1,323,1,323,1,323,1,323, - 5,323,4508,8,323,10,323,12,323,4511,9,323,1,323,1,323,1,324,1,324, - 1,324,3,324,4518,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327, - 1,327,3,327,4528,8,327,1,328,1,328,1,328,3,328,4533,8,328,1,329, - 1,329,1,330,1,330,1,331,1,331,1,332,1,332,1,332,5,332,4544,8,332, - 10,332,12,332,4547,9,332,1,333,1,333,1,333,1,333,1,333,5,333,4554, - 8,333,10,333,12,333,4557,9,333,1,334,1,334,1,334,1,334,1,334,1,334, - 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, - 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, - 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, - 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, - 1,334,3,334,4610,8,334,1,335,1,335,1,335,1,335,3,335,4616,8,335, - 1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335,4625,8,335,3,335, - 4627,8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,5,335,4641,8,335,10,335,12,335,4644,9,335,1,335, - 1,335,1,335,1,335,1,335,3,335,4651,8,335,1,335,1,335,3,335,4655, - 8,335,3,335,4657,8,335,1,335,1,335,1,335,1,335,3,335,4663,8,335, - 1,335,1,335,1,335,3,335,4668,8,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335, - 4685,8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,1,335,3,335,4711,8,335,1,335,1,335,1,335,3,335, - 4716,8,335,3,335,4718,8,335,1,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335,4746, - 8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 1,335,1,335,1,335,1,335,1,335,3,335,4763,8,335,1,335,1,335,1,335, - 3,335,4768,8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335, - 4777,8,335,1,336,1,336,1,337,1,337,1,337,1,337,1,337,1,337,1,337, - 3,337,4788,8,337,1,338,1,338,1,338,5,338,4793,8,338,10,338,12,338, - 4796,9,338,1,339,1,339,1,339,3,339,4801,8,339,1,340,1,340,1,340, - 3,340,4806,8,340,1,341,1,341,1,342,1,342,1,343,1,343,1,344,1,344, - 1,345,1,345,1,346,1,346,1,347,1,347,1,348,1,348,1,349,1,349,1,350, - 1,350,1,351,1,351,1,352,1,352,1,352,5,352,4833,8,352,10,352,12,352, - 4836,9,352,1,353,1,353,1,353,5,353,4841,8,353,10,353,12,353,4844, - 9,353,1,353,1,353,1,353,1,353,5,353,4850,8,353,10,353,12,353,4853, - 9,353,3,353,4855,8,353,1,354,1,354,1,354,1,354,1,355,1,355,1,355, - 1,355,3,355,4865,8,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356, - 1,356,1,356,1,356,1,356,1,356,3,356,4879,8,356,1,357,1,357,1,357, - 5,357,4884,8,357,10,357,12,357,4887,9,357,1,357,1,830,0,358,0,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,218,220,222, - 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, - 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, - 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, - 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, - 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, - 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, - 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, - 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, - 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, - 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, - 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, - 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, - 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, - 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, - 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, - 704,706,708,710,712,714,0,61,2,0,57,57,172,172,4,0,91,91,121,121, - 226,226,325,325,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2, - 0,139,139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156, - 2,0,114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161, + 1,14,1,14,4,14,877,8,14,11,14,12,14,878,1,14,1,14,1,14,4,14,884, + 8,14,11,14,12,14,885,1,14,1,14,1,14,3,14,891,8,14,1,15,1,15,1,15, + 1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,18,1,18,1,19,1,19,1,19, + 1,20,1,20,1,20,1,21,1,21,3,21,914,8,21,1,21,1,21,3,21,918,8,21,1, + 21,1,21,1,21,3,21,923,8,21,1,21,3,21,926,8,21,1,21,1,21,3,21,930, + 8,21,1,21,1,21,1,21,3,21,935,8,21,1,21,1,21,1,21,1,21,3,21,941,8, + 21,1,21,1,21,1,21,3,21,946,8,21,1,21,1,21,1,21,1,21,1,21,3,21,953, + 8,21,3,21,955,8,21,1,22,1,22,1,22,1,23,1,23,1,23,3,23,963,8,23,1, + 23,1,23,3,23,967,8,23,1,24,1,24,3,24,971,8,24,1,24,1,24,1,24,1,24, + 1,24,1,24,3,24,979,8,24,1,24,3,24,982,8,24,1,25,1,25,1,25,3,25,987, + 8,25,1,25,1,25,3,25,991,8,25,1,25,3,25,994,8,25,1,26,1,26,1,26,3, + 26,999,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1007,8,26,5,26,1009, + 8,26,10,26,12,26,1012,9,26,3,26,1014,8,26,1,27,1,27,3,27,1018,8, + 27,1,28,1,28,3,28,1022,8,28,1,28,3,28,1025,8,28,1,29,1,29,1,29,3, + 29,1030,8,29,1,29,1,29,1,29,1,29,3,29,1036,8,29,1,29,1,29,1,29,3, + 29,1041,8,29,1,29,1,29,1,29,3,29,1046,8,29,1,29,1,29,3,29,1050,8, + 29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,3,30,1061,8,30,3, + 30,1063,8,30,1,30,1,30,3,30,1067,8,30,1,31,1,31,1,32,1,32,1,33,1, + 33,1,33,1,33,3,33,1077,8,33,1,33,3,33,1080,8,33,1,33,1,33,1,33,1, + 33,3,33,1086,8,33,1,33,3,33,1089,8,33,1,33,1,33,1,33,1,33,3,33,1095, + 8,33,1,33,1,33,1,33,3,33,1100,8,33,1,33,1,33,1,33,1,33,1,33,3,33, + 1107,8,33,1,33,1,33,1,33,3,33,1112,8,33,1,33,3,33,1115,8,33,1,33, + 1,33,1,33,1,33,1,33,1,33,3,33,1123,8,33,1,33,1,33,1,33,3,33,1128, + 8,33,1,33,1,33,1,33,3,33,1133,8,33,1,33,1,33,1,33,3,33,1138,8,33, + 1,33,3,33,1141,8,33,1,33,3,33,1144,8,33,1,33,3,33,1147,8,33,1,33, + 1,33,1,33,1,33,1,33,1,33,3,33,1155,8,33,1,33,1,33,1,33,1,33,1,33, + 3,33,1162,8,33,1,33,1,33,1,33,3,33,1167,8,33,1,33,1,33,1,33,1,33, + 1,33,3,33,1174,8,33,1,33,1,33,1,33,1,33,3,33,1180,8,33,1,33,3,33, + 1183,8,33,1,33,3,33,1186,8,33,3,33,1188,8,33,1,33,1,33,1,33,1,33, + 1,33,1,33,1,33,1,33,3,33,1198,8,33,3,33,1200,8,33,1,33,1,33,3,33, + 1204,8,33,1,33,1,33,3,33,1208,8,33,1,33,1,33,3,33,1212,8,33,1,33, + 3,33,1215,8,33,1,33,3,33,1218,8,33,3,33,1220,8,33,1,33,1,33,1,33, + 1,33,1,33,1,33,1,33,3,33,1229,8,33,1,33,1,33,3,33,1233,8,33,1,33, + 1,33,1,33,1,33,1,33,1,33,3,33,1241,8,33,3,33,1243,8,33,1,34,1,34, + 1,34,1,34,1,34,1,34,1,34,1,34,3,34,1253,8,34,1,35,1,35,1,35,1,35, + 1,35,1,35,1,35,1,35,3,35,1263,8,35,1,36,1,36,1,36,1,36,1,36,1,36, + 1,36,1,36,1,36,3,36,1274,8,36,1,37,1,37,1,37,1,37,1,38,1,38,1,38, + 3,38,1283,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1290,8,38,1,39,1,39, + 1,39,1,39,3,39,1296,8,39,1,39,1,39,3,39,1300,8,39,1,39,1,39,1,39, + 1,40,1,40,3,40,1307,8,40,1,40,1,40,1,40,5,40,1312,8,40,10,40,12, + 40,1315,9,40,1,40,1,40,1,40,1,40,1,40,3,40,1322,8,40,1,41,1,41,1, + 41,1,41,3,41,1328,8,41,1,41,3,41,1331,8,41,1,41,1,41,1,41,5,41,1336, + 8,41,10,41,12,41,1339,9,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1, + 42,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,3, + 45,1361,8,45,1,46,1,46,1,46,3,46,1366,8,46,1,46,1,46,3,46,1370,8, + 46,1,47,1,47,1,47,1,47,1,48,1,48,3,48,1378,8,48,1,49,1,49,1,49,1, + 50,1,50,1,50,1,50,3,50,1387,8,50,1,50,1,50,1,50,1,50,1,50,3,50,1394, + 8,50,1,51,1,51,1,51,1,51,3,51,1400,8,51,1,51,1,51,1,51,1,51,1,51, + 3,51,1407,8,51,1,51,3,51,1410,8,51,1,51,1,51,1,51,1,51,3,51,1416, + 8,51,1,52,1,52,1,52,5,52,1421,8,52,10,52,12,52,1424,9,52,1,53,1, + 53,1,53,1,53,1,53,3,53,1431,8,53,1,54,1,54,1,55,1,55,1,55,5,55,1438, + 8,55,10,55,12,55,1441,9,55,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1449, + 8,56,1,57,1,57,1,57,1,57,1,57,3,57,1456,8,57,1,58,1,58,3,58,1460, + 8,58,1,58,1,58,1,58,1,58,1,58,3,58,1467,8,58,3,58,1469,8,58,1,59, + 1,59,1,60,1,60,3,60,1475,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,5,60,1488,8,60,10,60,12,60,1491,9,60,3,60,1493, + 8,60,1,61,1,61,3,61,1497,8,61,1,61,1,61,3,61,1501,8,61,1,61,1,61, + 1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1514,8,63,1,63, + 1,63,1,63,1,64,1,64,1,64,1,64,3,64,1523,8,64,1,64,1,64,1,65,1,65, + 1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1539,8,65, + 1,65,1,65,3,65,1543,8,65,1,65,1,65,1,65,3,65,1548,8,65,1,65,1,65, + 1,65,3,65,1553,8,65,1,65,3,65,1556,8,65,1,65,3,65,1559,8,65,1,65, + 3,65,1562,8,65,1,65,3,65,1565,8,65,1,65,3,65,1568,8,65,1,66,1,66, + 1,66,3,66,1573,8,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,3,67,1582, + 8,67,1,67,1,67,3,67,1586,8,67,1,67,1,67,1,67,1,67,1,67,3,67,1593, + 8,67,1,67,3,67,1596,8,67,1,67,3,67,1599,8,67,1,67,3,67,1602,8,67, + 1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,1614,8,68, + 1,68,1,68,1,69,1,69,3,69,1620,8,69,1,70,1,70,1,70,1,70,1,70,1,70, + 1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73, + 1,73,1,73,1,74,1,74,1,74,3,74,1646,8,74,1,74,1,74,1,74,1,74,1,74, + 3,74,1653,8,74,1,74,3,74,1656,8,74,1,75,1,75,1,75,1,75,3,75,1662, + 8,75,1,75,1,75,3,75,1666,8,75,1,75,3,75,1669,8,75,1,75,3,75,1672, + 8,75,1,75,3,75,1675,8,75,1,75,3,75,1678,8,75,1,75,3,75,1681,8,75, + 1,75,3,75,1684,8,75,1,75,3,75,1687,8,75,1,75,1,75,1,75,1,76,1,76, + 1,76,1,76,1,76,1,76,3,76,1698,8,76,1,76,3,76,1701,8,76,1,76,1,76, + 1,77,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79, + 1,79,1,79,1,79,3,79,1721,8,79,1,80,1,80,1,80,1,80,3,80,1727,8,80, + 1,80,1,80,1,80,1,80,3,80,1733,8,80,1,80,3,80,1736,8,80,3,80,1738, + 8,80,1,81,1,81,1,81,1,81,1,82,3,82,1745,8,82,1,82,1,82,1,82,1,83, + 1,83,3,83,1752,8,83,1,84,1,84,1,84,1,85,1,85,1,85,1,86,1,86,1,86, + 1,86,1,86,3,86,1765,8,86,1,86,1,86,1,86,3,86,1770,8,86,1,86,1,86, + 1,87,1,87,1,87,5,87,1777,8,87,10,87,12,87,1780,9,87,1,88,1,88,1, + 88,5,88,1785,8,88,10,88,12,88,1788,9,88,1,89,1,89,1,89,1,89,1,89, + 1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,3,89,1803,8,89,1,90,1,90, + 1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1816,8,90,1,90, + 1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91,1,91, + 3,91,1832,8,91,1,92,1,92,3,92,1836,8,92,1,93,1,93,1,93,1,93,1,93, + 1,93,1,93,3,93,1845,8,93,1,94,1,94,1,94,1,94,3,94,1851,8,94,1,94, + 3,94,1854,8,94,1,94,3,94,1857,8,94,1,94,3,94,1860,8,94,1,94,3,94, + 1863,8,94,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97, + 5,97,1876,8,97,10,97,12,97,1879,9,97,3,97,1881,8,97,1,98,1,98,1, + 98,1,98,1,99,1,99,1,99,5,99,1890,8,99,10,99,12,99,1893,9,99,1,100, + 1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101, + 1906,8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103, + 1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105, + 1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,3,106,1940,8,106,1,106,1,106,1,106,1,106,1,106,1,106,3,106, + 1948,8,106,1,106,1,106,1,106,3,106,1953,8,106,1,106,1,106,1,106, + 1,106,1,106,1,106,3,106,1961,8,106,1,106,1,106,1,106,3,106,1966, + 8,106,1,106,1,106,1,106,3,106,1971,8,106,1,107,1,107,1,107,5,107, + 1976,8,107,10,107,12,107,1979,9,107,1,108,1,108,1,108,5,108,1984, + 8,108,10,108,12,108,1987,9,108,1,109,1,109,1,109,5,109,1992,8,109, + 10,109,12,109,1995,9,109,1,110,1,110,1,110,5,110,2000,8,110,10,110, + 12,110,2003,9,110,1,111,1,111,1,111,3,111,2008,8,111,1,112,1,112, + 1,113,1,113,1,113,3,113,2015,8,113,1,114,1,114,1,115,1,115,1,115, + 1,115,1,115,1,115,3,115,2025,8,115,5,115,2027,8,115,10,115,12,115, + 2030,9,115,1,116,1,116,1,116,5,116,2035,8,116,10,116,12,116,2038, + 9,116,1,117,1,117,1,117,1,117,1,118,1,118,3,118,2046,8,118,1,118, + 3,118,2049,8,118,1,119,1,119,3,119,2053,8,119,1,120,1,120,1,120, + 3,120,2058,8,120,1,121,1,121,3,121,2062,8,121,1,121,1,121,3,121, + 2066,8,121,1,122,1,122,1,122,1,122,3,122,2072,8,122,1,123,1,123, + 3,123,2076,8,123,1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,125, + 1,126,1,126,3,126,2088,8,126,1,126,1,126,1,126,1,126,1,126,1,126, + 1,126,3,126,2097,8,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,3,127,2108,8,127,1,128,1,128,3,128,2112,8,128,1,129, + 1,129,1,129,5,129,2117,8,129,10,129,12,129,2120,9,129,1,130,1,130, + 1,130,1,130,1,131,1,131,1,131,5,131,2129,8,131,10,131,12,131,2132, + 9,131,1,132,1,132,1,133,1,133,1,133,1,134,1,134,3,134,2141,8,134, + 1,134,3,134,2144,8,134,1,135,1,135,1,135,5,135,2149,8,135,10,135, + 12,135,2152,9,135,1,136,1,136,1,136,3,136,2157,8,136,1,137,1,137, + 3,137,2161,8,137,1,137,3,137,2164,8,137,1,137,3,137,2167,8,137,1, + 138,1,138,1,138,1,138,3,138,2173,8,138,1,139,1,139,3,139,2177,8, + 139,1,140,1,140,3,140,2181,8,140,1,141,1,141,1,141,3,141,2186,8, + 141,1,141,1,141,3,141,2190,8,141,1,142,1,142,3,142,2194,8,142,1, + 143,1,143,3,143,2198,8,143,1,143,1,143,1,143,1,143,1,143,1,143,3, + 143,2206,8,143,1,144,1,144,3,144,2210,8,144,1,144,1,144,3,144,2214, + 8,144,1,145,1,145,1,145,1,145,1,145,1,145,3,145,2222,8,145,1,145, + 1,145,3,145,2226,8,145,1,146,1,146,1,146,3,146,2231,8,146,1,147, + 1,147,3,147,2235,8,147,1,148,1,148,1,148,1,148,1,148,3,148,2242, + 8,148,1,149,1,149,1,149,5,149,2247,8,149,10,149,12,149,2250,9,149, + 1,150,1,150,1,150,1,150,1,150,3,150,2257,8,150,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,2269,8,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,3,151,2287,8,151,1,151,3,151,2290,8,151, + 1,151,1,151,1,151,1,151,3,151,2296,8,151,1,152,1,152,1,152,1,152, + 1,152,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154,1,154,1,154, + 1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,156,1,156,3,156,2322, + 8,156,1,157,3,157,2325,8,157,1,157,1,157,1,158,1,158,3,158,2331, + 8,158,1,159,1,159,1,159,1,159,5,159,2337,8,159,10,159,12,159,2340, + 9,159,1,160,1,160,1,160,1,160,1,160,3,160,2347,8,160,1,160,1,160, + 1,160,1,160,1,160,1,161,1,161,1,161,1,161,5,161,2358,8,161,10,161, + 12,161,2361,9,161,1,162,1,162,1,162,1,162,3,162,2367,8,162,1,162, + 3,162,2370,8,162,1,162,3,162,2373,8,162,1,162,3,162,2376,8,162,1, + 162,3,162,2379,8,162,1,162,3,162,2382,8,162,1,162,3,162,2385,8,162, + 1,162,3,162,2388,8,162,1,162,3,162,2391,8,162,1,162,3,162,2394,8, + 162,1,162,3,162,2397,8,162,1,162,1,162,1,162,3,162,2402,8,162,1, + 162,3,162,2405,8,162,1,162,3,162,2408,8,162,1,162,3,162,2411,8,162, + 1,162,3,162,2414,8,162,1,162,3,162,2417,8,162,1,162,3,162,2420,8, + 162,1,162,3,162,2423,8,162,1,162,3,162,2426,8,162,1,162,3,162,2429, + 8,162,1,162,3,162,2432,8,162,3,162,2434,8,162,1,163,1,163,1,163, + 1,163,3,163,2440,8,163,1,164,1,164,3,164,2444,8,164,1,164,3,164, + 2447,8,164,1,164,3,164,2450,8,164,1,164,3,164,2453,8,164,1,164,3, + 164,2456,8,164,1,164,3,164,2459,8,164,1,164,1,164,1,164,1,164,1, + 164,3,164,2466,8,164,1,165,1,165,3,165,2470,8,165,1,165,3,165,2473, + 8,165,1,165,3,165,2476,8,165,1,165,3,165,2479,8,165,1,165,3,165, + 2482,8,165,1,165,3,165,2485,8,165,1,166,1,166,1,166,4,166,2490,8, + 166,11,166,12,166,2491,1,167,3,167,2495,8,167,1,167,1,167,1,168, + 1,168,1,168,1,168,3,168,2503,8,168,1,168,1,168,3,168,2507,8,168, + 1,168,1,168,1,168,1,168,1,168,3,168,2514,8,168,3,168,2516,8,168, + 1,169,3,169,2519,8,169,1,169,1,169,1,169,3,169,2524,8,169,1,169, + 3,169,2527,8,169,1,169,1,169,3,169,2531,8,169,1,170,1,170,1,170, + 3,170,2536,8,170,1,170,1,170,1,170,1,170,3,170,2542,8,170,1,171, + 1,171,1,171,1,171,1,172,1,172,3,172,2550,8,172,1,173,1,173,1,173, + 1,173,5,173,2556,8,173,10,173,12,173,2559,9,173,1,174,1,174,1,174, + 1,174,1,174,5,174,2566,8,174,10,174,12,174,2569,9,174,3,174,2571, + 8,174,1,174,1,174,3,174,2575,8,174,1,174,1,174,3,174,2579,8,174, + 1,174,1,174,1,174,3,174,2584,8,174,1,175,1,175,1,175,1,175,1,175, + 3,175,2591,8,175,1,176,1,176,5,176,2595,8,176,10,176,12,176,2598, + 9,176,1,176,3,176,2601,8,176,1,177,1,177,1,177,1,177,1,177,3,177, + 2608,8,177,1,177,1,177,1,177,3,177,2613,8,177,1,177,1,177,1,177, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,3,178,2626,8,178, + 1,179,1,179,1,179,1,179,1,179,1,179,3,179,2634,8,179,1,180,1,180, + 1,180,1,180,1,180,1,180,1,180,1,180,3,180,2644,8,180,1,180,1,180, + 1,180,1,180,1,180,1,180,1,180,1,180,3,180,2654,8,180,1,180,1,180, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,2667, + 8,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2677, + 8,181,1,181,1,181,3,181,2681,8,181,4,181,2683,8,181,11,181,12,181, + 2684,1,181,1,181,5,181,2689,8,181,10,181,12,181,2692,9,181,1,181, + 1,181,5,181,2696,8,181,10,181,12,181,2699,9,181,1,181,1,181,5,181, + 2703,8,181,10,181,12,181,2706,9,181,1,181,1,181,1,181,1,181,1,181, + 1,181,3,181,2714,8,181,1,181,1,181,1,181,1,181,1,181,3,181,2721, + 8,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2741,8,181, + 1,181,3,181,2744,8,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,181,3,181,2758,8,181,1,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,3,182, + 2773,8,182,1,182,1,182,3,182,2777,8,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,5,182,2795,8,182,10,182,12,182,2798,9,182,1,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,3,182,2809,8,182,1,182,1,182, + 1,182,1,182,3,182,2815,8,182,1,182,3,182,2818,8,182,1,182,1,182, + 3,182,2822,8,182,1,182,1,182,1,182,1,182,3,182,2828,8,182,1,182, + 1,182,1,182,1,182,3,182,2834,8,182,1,182,1,182,1,182,1,182,1,182, + 3,182,2841,8,182,1,182,1,182,1,182,1,182,1,182,1,182,3,182,2849, + 8,182,1,182,1,182,1,182,1,182,3,182,2855,8,182,1,182,1,182,3,182, + 2859,8,182,1,182,1,182,1,182,3,182,2864,8,182,1,182,3,182,2867,8, + 182,1,182,1,182,3,182,2871,8,182,1,182,1,182,1,182,1,182,1,182,3, + 182,2878,8,182,1,182,1,182,1,182,3,182,2883,8,182,1,182,1,182,1, + 182,3,182,2888,8,182,1,182,3,182,2891,8,182,3,182,2893,8,182,1,183, + 1,183,1,183,1,183,1,183,1,183,3,183,2901,8,183,1,183,1,183,1,183, + 1,183,1,183,1,183,3,183,2909,8,183,1,183,1,183,3,183,2913,8,183, + 4,183,2915,8,183,11,183,12,183,2916,1,183,1,183,3,183,2921,8,183, + 1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184, + 1,184,1,184,1,184,1,184,3,184,2938,8,184,1,185,1,185,1,185,1,185, + 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, + 3,185,2955,8,185,1,186,1,186,1,186,1,187,1,187,3,187,2962,8,187, + 1,187,1,187,1,187,1,187,1,187,5,187,2969,8,187,10,187,12,187,2972, + 9,187,1,187,1,187,3,187,2976,8,187,1,187,3,187,2979,8,187,1,187, + 3,187,2982,8,187,1,188,1,188,3,188,2986,8,188,1,188,1,188,1,188, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,3,189, + 3001,8,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190, + 1,190,1,190,1,190,3,190,3015,8,190,1,190,3,190,3018,8,190,1,191, + 1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,3,191,3029,8,191, + 1,192,1,192,3,192,3033,8,192,1,192,3,192,3036,8,192,1,192,3,192, + 3039,8,192,1,192,1,192,3,192,3043,8,192,1,192,1,192,1,192,3,192, + 3048,8,192,1,192,3,192,3051,8,192,1,192,3,192,3054,8,192,1,192,3, + 192,3057,8,192,1,192,3,192,3060,8,192,1,192,3,192,3063,8,192,1,192, + 1,192,1,192,1,192,3,192,3069,8,192,1,192,3,192,3072,8,192,1,192, + 3,192,3075,8,192,1,192,3,192,3078,8,192,1,192,3,192,3081,8,192,1, + 192,3,192,3084,8,192,1,192,3,192,3087,8,192,1,192,3,192,3090,8,192, + 1,192,3,192,3093,8,192,1,192,3,192,3096,8,192,1,192,1,192,3,192, + 3100,8,192,3,192,3102,8,192,1,192,1,192,1,192,3,192,3107,8,192,1, + 192,1,192,1,192,3,192,3112,8,192,1,192,3,192,3115,8,192,1,192,3, + 192,3118,8,192,1,192,3,192,3121,8,192,1,192,3,192,3124,8,192,1,192, + 1,192,1,192,1,192,3,192,3130,8,192,1,192,3,192,3133,8,192,1,192, + 3,192,3136,8,192,1,192,3,192,3139,8,192,1,192,3,192,3142,8,192,1, + 192,3,192,3145,8,192,1,192,3,192,3148,8,192,1,192,3,192,3151,8,192, + 1,192,3,192,3154,8,192,1,192,3,192,3157,8,192,1,192,1,192,3,192, + 3161,8,192,3,192,3163,8,192,3,192,3165,8,192,1,193,1,193,1,193,3, + 193,3170,8,193,1,193,1,193,1,193,3,193,3175,8,193,1,193,1,193,3, + 193,3179,8,193,1,193,1,193,3,193,3183,8,193,1,193,1,193,1,193,3, + 193,3188,8,193,1,194,1,194,1,194,3,194,3193,8,194,1,194,1,194,1, + 195,1,195,1,195,5,195,3200,8,195,10,195,12,195,3203,9,195,1,195, + 1,195,1,196,1,196,1,196,5,196,3210,8,196,10,196,12,196,3213,9,196, + 1,197,1,197,1,197,5,197,3218,8,197,10,197,12,197,3221,9,197,1,198, + 1,198,1,198,1,199,1,199,1,199,1,199,4,199,3230,8,199,11,199,12,199, + 3231,1,199,3,199,3235,8,199,1,200,1,200,5,200,3239,8,200,10,200, + 12,200,3242,9,200,1,200,1,200,5,200,3246,8,200,10,200,12,200,3249, + 9,200,1,200,1,200,5,200,3253,8,200,10,200,12,200,3256,9,200,1,200, + 1,200,5,200,3260,8,200,10,200,12,200,3263,9,200,1,200,1,200,1,200, + 1,200,3,200,3269,8,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,201,3,201,3279,8,201,3,201,3281,8,201,1,201,1,201,3,201,3285,8, + 201,5,201,3287,8,201,10,201,12,201,3290,9,201,1,202,1,202,1,202, + 1,202,3,202,3296,8,202,1,202,5,202,3299,8,202,10,202,12,202,3302, + 9,202,1,203,3,203,3305,8,203,1,203,1,203,3,203,3309,8,203,1,203, + 3,203,3312,8,203,1,203,3,203,3315,8,203,1,203,1,203,1,203,1,203, + 1,204,1,204,1,204,1,204,1,204,3,204,3326,8,204,1,204,1,204,3,204, + 3330,8,204,3,204,3332,8,204,1,204,3,204,3335,8,204,1,205,1,205,1, + 205,1,205,1,205,1,205,1,205,1,205,1,205,5,205,3346,8,205,10,205, + 12,205,3349,9,205,3,205,3351,8,205,1,205,3,205,3354,8,205,1,205, + 1,205,1,205,1,205,1,205,1,205,1,205,1,205,5,205,3364,8,205,10,205, + 12,205,3367,9,205,3,205,3369,8,205,1,205,1,205,1,205,1,205,1,205, + 3,205,3376,8,205,1,205,1,205,1,205,1,205,1,205,5,205,3383,8,205, + 10,205,12,205,3386,9,205,1,205,1,205,3,205,3390,8,205,3,205,3392, + 8,205,3,205,3394,8,205,1,206,1,206,1,207,1,207,1,207,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,5,207,3409,8,207,10,207,12,207, + 3412,9,207,3,207,3414,8,207,1,207,1,207,1,207,1,207,1,207,1,207, + 3,207,3422,8,207,1,207,3,207,3425,8,207,1,208,1,208,3,208,3429,8, + 208,1,208,3,208,3432,8,208,1,208,3,208,3435,8,208,1,208,3,208,3438, + 8,208,1,208,3,208,3441,8,208,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,1,209,3,209,3453,8,209,1,210,1,210,1,211,1,211, + 1,212,1,212,3,212,3461,8,212,1,213,1,213,1,213,1,213,1,213,3,213, + 3468,8,213,1,213,3,213,3471,8,213,1,214,1,214,1,214,1,214,1,214, + 3,214,3478,8,214,1,214,3,214,3481,8,214,1,215,1,215,1,215,3,215, + 3486,8,215,1,215,1,215,1,216,1,216,1,216,3,216,3493,8,216,1,216, + 1,216,1,217,1,217,1,217,1,217,3,217,3501,8,217,1,217,1,217,1,218, + 1,218,3,218,3507,8,218,1,218,1,218,1,218,3,218,3512,8,218,1,218, + 1,218,3,218,3516,8,218,1,219,1,219,1,219,3,219,3521,8,219,1,220, + 1,220,3,220,3525,8,220,1,221,1,221,1,221,1,221,1,221,3,221,3532, + 8,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, + 5,221,3544,8,221,10,221,12,221,3547,9,221,3,221,3549,8,221,1,221, + 1,221,1,222,1,222,1,222,3,222,3556,8,222,1,223,1,223,1,223,1,223, + 5,223,3562,8,223,10,223,12,223,3565,9,223,1,223,1,223,1,223,1,223, + 1,223,5,223,3572,8,223,10,223,12,223,3575,9,223,3,223,3577,8,223, + 1,224,1,224,1,224,1,224,1,224,1,225,1,225,3,225,3586,8,225,1,225, + 1,225,1,225,1,225,1,225,5,225,3593,8,225,10,225,12,225,3596,9,225, + 3,225,3598,8,225,1,225,1,225,1,226,1,226,3,226,3604,8,226,1,226, + 3,226,3607,8,226,1,226,1,226,1,226,3,226,3612,8,226,1,226,3,226, + 3615,8,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227, + 1,227,1,227,1,227,3,227,3629,8,227,1,227,1,227,1,227,1,227,3,227, + 3635,8,227,3,227,3637,8,227,1,227,1,227,1,227,1,227,1,228,1,228, + 1,228,5,228,3646,8,228,10,228,12,228,3649,9,228,1,229,1,229,1,229, + 3,229,3654,8,229,1,229,3,229,3657,8,229,1,229,1,229,1,229,1,229, + 1,229,1,229,5,229,3665,8,229,10,229,12,229,3668,9,229,1,229,1,229, + 3,229,3672,8,229,1,229,1,229,3,229,3676,8,229,1,230,1,230,1,231, + 1,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,232, + 1,232,3,232,3693,8,232,1,232,1,232,1,232,1,232,3,232,3699,8,232, + 3,232,3701,8,232,1,232,1,232,1,232,1,232,1,233,1,233,3,233,3709, + 8,233,1,234,1,234,1,234,5,234,3714,8,234,10,234,12,234,3717,9,234, + 1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,5,235,3728, + 8,235,10,235,12,235,3731,9,235,1,236,1,236,1,236,3,236,3736,8,236, + 1,236,3,236,3739,8,236,1,236,3,236,3742,8,236,1,236,3,236,3745,8, + 236,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237,3754,8,237,1, + 237,1,237,1,237,1,237,1,237,3,237,3761,8,237,1,238,1,238,1,238,1, + 238,3,238,3767,8,238,1,239,1,239,1,239,1,239,1,239,1,239,1,239,3, + 239,3776,8,239,1,240,1,240,3,240,3780,8,240,1,240,1,240,1,240,1, + 240,5,240,3786,8,240,10,240,12,240,3789,9,240,1,240,1,240,1,241, + 1,241,1,241,1,241,1,241,3,241,3798,8,241,1,241,1,241,1,241,1,241, + 1,241,1,241,5,241,3806,8,241,10,241,12,241,3809,9,241,1,241,1,241, + 3,241,3813,8,241,1,242,1,242,3,242,3817,8,242,1,242,1,242,5,242, + 3821,8,242,10,242,12,242,3824,9,242,1,242,1,242,3,242,3828,8,242, + 1,243,1,243,1,243,3,243,3833,8,243,1,244,1,244,1,244,1,245,1,245, + 3,245,3840,8,245,1,245,3,245,3843,8,245,1,245,1,245,1,245,3,245, + 3848,8,245,1,245,3,245,3851,8,245,5,245,3853,8,245,10,245,12,245, + 3856,9,245,1,246,1,246,3,246,3860,8,246,1,247,1,247,1,247,1,247, + 1,248,1,248,3,248,3868,8,248,1,248,1,248,1,248,3,248,3873,8,248, + 4,248,3875,8,248,11,248,12,248,3876,3,248,3879,8,248,1,249,1,249, + 1,249,1,249,1,249,5,249,3886,8,249,10,249,12,249,3889,9,249,1,250, + 1,250,1,250,1,250,1,251,1,251,1,251,1,251,1,252,1,252,1,252,1,252, + 1,253,1,253,1,253,1,253,1,253,1,253,5,253,3909,8,253,10,253,12,253, + 3912,9,253,1,253,1,253,1,253,1,253,1,253,5,253,3919,8,253,10,253, + 12,253,3922,9,253,3,253,3924,8,253,1,254,1,254,1,254,1,254,1,254, + 3,254,3931,8,254,1,254,3,254,3934,8,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,3,254,3944,8,254,1,254,1,254,1,254,5,254, + 3949,8,254,10,254,12,254,3952,9,254,3,254,3954,8,254,3,254,3956, + 8,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254, + 3,254,3968,8,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254, + 1,254,3,254,3979,8,254,3,254,3981,8,254,1,255,1,255,1,256,1,256, + 3,256,3987,8,256,1,257,1,257,1,257,3,257,3992,8,257,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,3,258,4001,8,258,1,258,1,258,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,4,259,4012,8,259,11,259,12,259, + 4013,1,259,1,259,3,259,4018,8,259,1,259,1,259,1,260,1,260,1,260, + 1,260,1,260,1,260,4,260,4028,8,260,11,260,12,260,4029,1,260,1,260, + 3,260,4034,8,260,1,260,1,260,1,261,1,261,1,261,1,261,1,261,3,261, + 4043,8,261,1,261,1,261,1,262,1,262,1,262,1,262,1,262,1,262,1,262, + 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,3,263,4062,8,263, + 1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264, + 1,264,1,264,1,264,5,264,4078,8,264,10,264,12,264,4081,9,264,1,264, + 1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,3,264,4092,8,264, + 1,265,1,265,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,3,266,4107,8,266,1,266,1,266,3,266,4111,8,266,1,267, + 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 3,267,4125,8,267,1,268,1,268,1,268,5,268,4130,8,268,10,268,12,268, + 4133,9,268,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,3,269,4146,8,269,1,270,5,270,4149,8,270,10,270,12,270, + 4152,9,270,1,270,1,270,1,270,1,270,1,270,1,270,1,270,5,270,4161, + 8,270,10,270,12,270,4164,9,270,1,271,1,271,1,271,5,271,4169,8,271, + 10,271,12,271,4172,9,271,1,272,1,272,1,272,5,272,4177,8,272,10,272, + 12,272,4180,9,272,1,273,1,273,1,273,5,273,4185,8,273,10,273,12,273, + 4188,9,273,1,274,1,274,1,274,5,274,4193,8,274,10,274,12,274,4196, + 9,274,1,275,1,275,1,275,5,275,4201,8,275,10,275,12,275,4204,9,275, + 1,276,1,276,1,276,5,276,4209,8,276,10,276,12,276,4212,9,276,1,277, + 1,277,1,277,1,277,1,278,1,278,1,279,1,279,3,279,4222,8,279,1,279, + 1,279,3,279,4226,8,279,1,280,1,280,1,280,1,280,1,280,1,280,1,280, + 1,280,3,280,4236,8,280,3,280,4238,8,280,1,281,1,281,1,281,3,281, + 4243,8,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281, + 1,281,1,281,1,281,3,281,4257,8,281,1,282,1,282,1,282,1,282,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,3,283,4270,8,283,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,5,284,4279,8,284,10,284,12,284,4282, + 9,284,1,285,1,285,1,285,1,285,1,285,1,285,3,285,4290,8,285,1,286, + 5,286,4293,8,286,10,286,12,286,4296,9,286,1,286,1,286,1,286,3,286, + 4301,8,286,1,287,1,287,1,287,5,287,4306,8,287,10,287,12,287,4309, + 9,287,1,288,1,288,3,288,4313,8,288,1,289,1,289,1,289,1,289,1,289, + 5,289,4320,8,289,10,289,12,289,4323,9,289,1,289,1,289,1,290,1,290, + 1,290,3,290,4330,8,290,1,291,1,291,1,291,1,291,5,291,4336,8,291, + 10,291,12,291,4339,9,291,1,291,1,291,1,292,1,292,1,292,3,292,4346, + 8,292,1,292,1,292,1,293,1,293,1,294,1,294,1,295,1,295,3,295,4356, + 8,295,1,296,1,296,1,296,3,296,4361,8,296,1,297,1,297,1,298,1,298, + 1,299,1,299,1,300,1,300,1,300,5,300,4372,8,300,10,300,12,300,4375, + 9,300,1,301,1,301,1,301,1,301,1,301,5,301,4382,8,301,10,301,12,301, + 4385,9,301,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,4438, + 8,302,1,303,1,303,1,303,1,303,3,303,4444,8,303,1,303,1,303,1,303, + 1,303,1,303,1,303,1,303,3,303,4453,8,303,3,303,4455,8,303,1,303, + 1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 5,303,4469,8,303,10,303,12,303,4472,9,303,1,303,1,303,1,303,1,303, + 1,303,3,303,4479,8,303,1,303,1,303,3,303,4483,8,303,3,303,4485,8, + 303,1,303,1,303,1,303,1,303,3,303,4491,8,303,1,303,1,303,1,303,3, + 303,4496,8,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1, + 303,1,303,1,303,1,303,1,303,1,303,1,303,3,303,4513,8,303,1,303,1, + 303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,3,303,4539,8,303,1,303,1,303,1,303,3,303,4544,8,303,3,303, + 4546,8,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,1,303,1,303,1,303,1,303,1,303,3,303,4574,8,303,1,303,1,303, + 1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,1,303,3,303,4591,8,303,1,303,1,303,1,303,3,303,4596,8,303, + 1,303,1,303,1,303,1,303,1,303,1,303,1,303,3,303,4605,8,303,1,304, + 1,304,1,305,1,305,1,305,1,305,1,305,1,305,1,305,3,305,4616,8,305, + 1,306,1,306,1,306,5,306,4621,8,306,10,306,12,306,4624,9,306,1,307, + 1,307,1,307,3,307,4629,8,307,1,308,1,308,1,308,3,308,4634,8,308, + 1,309,1,309,1,310,1,310,1,311,1,311,1,312,1,312,1,312,5,312,4645, + 8,312,10,312,12,312,4648,9,312,1,313,1,313,1,313,5,313,4653,8,313, + 10,313,12,313,4656,9,313,1,313,1,313,1,313,1,313,5,313,4662,8,313, + 10,313,12,313,4665,9,313,3,313,4667,8,313,1,314,1,314,1,314,1,314, + 1,315,1,315,1,315,1,315,3,315,4677,8,315,1,316,1,316,1,316,1,316, + 1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316,3,316,4691,8,316, + 1,317,1,317,1,317,5,317,4696,8,317,10,317,12,317,4699,9,317,1,317, + 1,750,0,318,0,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,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246, + 248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278, + 280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310, + 312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342, + 344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374, + 376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406, + 408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438, + 440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470, + 472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502, + 504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534, + 536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566, + 568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598, + 600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630, + 632,634,0,63,2,0,57,57,172,172,4,0,91,91,121,121,226,226,325,325, + 2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139,139,154,154, + 2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0,114,114,307, + 307,2,0,58,58,101,101,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161, 161,190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0, - 15,15,128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217, - 373,373,2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177, - 2,0,39,39,376,376,4,0,112,112,164,164,205,205,356,356,2,0,7,7,96, - 96,2,0,125,125,350,350,2,0,225,225,391,391,2,0,42,42,315,315,2,0, - 189,189,196,196,2,0,426,426,431,431,2,0,140,140,285,285,3,0,12,12, - 231,231,300,300,2,0,241,241,292,292,2,0,198,198,268,268,2,0,260, - 260,292,292,2,0,354,354,431,431,2,0,133,133,247,247,2,0,152,152, - 281,281,3,0,413,414,418,418,420,420,2,0,412,412,415,417,1,0,413, - 414,4,0,184,184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7,7,13, - 13,313,313,3,0,184,184,270,270,286,286,4,0,125,125,219,219,350,350, - 360,360,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100,100, - 131,132,151,151,154,154,162,163,184,184,198,198,216,216,228,228, - 264,264,270,270,286,286,311,311,323,324,340,340,357,357,383,383, - 405,417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30, - 31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72, - 77,79,79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116, - 118,121,127,130,137,138,142,142,147,150,152,152,155,156,158,160, - 168,170,172,177,182,183,185,187,189,193,195,197,199,202,204,204, - 206,209,211,212,214,215,217,218,220,220,222,223,226,227,232,233, - 235,236,238,240,243,246,252,252,254,255,257,259,261,262,265,267, - 271,282,284,284,287,288,293,298,300,303,305,310,312,312,314,317, - 319,325,327,328,330,330,332,334,339,340,342,342,344,346,349,349, - 352,353,355,355,357,357,360,364,366,368,371,373,375,375,377,382, - 385,385,388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145, - 145,151,151,162,163,198,198,264,264,311,311,337,337,1,0,395,396, - 2,0,4,4,101,101,2,0,9,9,58,58,3,0,14,14,144,144,369,369,1,0,106, - 107,1,0,94,95,1,0,392,393,1,0,208,209,1,0,381,382,1,0,73,74,1,0, - 148,149,1,0,206,207,1,0,297,298,1,0,80,82,5478,0,719,1,0,0,0,2,726, - 1,0,0,0,4,731,1,0,0,0,6,765,1,0,0,0,8,767,1,0,0,0,10,833,1,0,0,0, - 12,835,1,0,0,0,14,851,1,0,0,0,16,860,1,0,0,0,18,868,1,0,0,0,20,881, - 1,0,0,0,22,892,1,0,0,0,24,897,1,0,0,0,26,908,1,0,0,0,28,971,1,0, - 0,0,30,973,1,0,0,0,32,976,1,0,0,0,34,980,1,0,0,0,36,982,1,0,0,0, - 38,985,1,0,0,0,40,988,1,0,0,0,42,1032,1,0,0,0,44,1034,1,0,0,0,46, - 1037,1,0,0,0,48,1040,1,0,0,0,50,1049,1,0,0,0,52,1052,1,0,0,0,54, - 1067,1,0,0,0,56,1079,1,0,0,0,58,1084,1,0,0,0,60,1104,1,0,0,0,62, - 1108,1,0,0,0,64,1115,1,0,0,0,66,1140,1,0,0,0,68,1157,1,0,0,0,70, - 1159,1,0,0,0,72,1344,1,0,0,0,74,1354,1,0,0,0,76,1356,1,0,0,0,78, - 1361,1,0,0,0,80,1366,1,0,0,0,82,1368,1,0,0,0,84,1372,1,0,0,0,86, - 1376,1,0,0,0,88,1380,1,0,0,0,90,1384,1,0,0,0,92,1394,1,0,0,0,94, - 1405,1,0,0,0,96,1422,1,0,0,0,98,1440,1,0,0,0,100,1445,1,0,0,0,102, - 1448,1,0,0,0,104,1452,1,0,0,0,106,1459,1,0,0,0,108,1468,1,0,0,0, - 110,1474,1,0,0,0,112,1476,1,0,0,0,114,1490,1,0,0,0,116,1512,1,0, - 0,0,118,1514,1,0,0,0,120,1522,1,0,0,0,122,1529,1,0,0,0,124,1531, - 1,0,0,0,126,1545,1,0,0,0,128,1552,1,0,0,0,130,1554,1,0,0,0,132,1558, - 1,0,0,0,134,1562,1,0,0,0,136,1566,1,0,0,0,138,1570,1,0,0,0,140,1583, - 1,0,0,0,142,1591,1,0,0,0,144,1594,1,0,0,0,146,1596,1,0,0,0,148,1608, - 1,0,0,0,150,1618,1,0,0,0,152,1621,1,0,0,0,154,1632,1,0,0,0,156,1640, - 1,0,0,0,158,1683,1,0,0,0,160,1692,1,0,0,0,162,1720,1,0,0,0,164,1733, - 1,0,0,0,166,1735,1,0,0,0,168,1741,1,0,0,0,170,1744,1,0,0,0,172,1750, - 1,0,0,0,174,1756,1,0,0,0,176,1763,1,0,0,0,178,1797,1,0,0,0,180,1805, - 1,0,0,0,182,1818,1,0,0,0,184,1823,1,0,0,0,186,1834,1,0,0,0,188,1851, - 1,0,0,0,190,1853,1,0,0,0,192,1858,1,0,0,0,194,1865,1,0,0,0,196,1867, - 1,0,0,0,198,1870,1,0,0,0,200,1873,1,0,0,0,202,1887,1,0,0,0,204,1895, - 1,0,0,0,206,1921,1,0,0,0,208,1923,1,0,0,0,210,1940,1,0,0,0,212,1954, - 1,0,0,0,214,1956,1,0,0,0,216,1959,1,0,0,0,218,1962,1,0,0,0,220,1971, - 1,0,0,0,222,1991,1,0,0,0,224,1993,1,0,0,0,226,1996,1,0,0,0,228,2009, - 1,0,0,0,230,2011,1,0,0,0,232,2015,1,0,0,0,234,2023,1,0,0,0,236,2027, - 1,0,0,0,238,2036,1,0,0,0,240,2042,1,0,0,0,242,2048,1,0,0,0,244,2053, - 1,0,0,0,246,2099,1,0,0,0,248,2101,1,0,0,0,250,2109,1,0,0,0,252,2117, - 1,0,0,0,254,2125,1,0,0,0,256,2136,1,0,0,0,258,2138,1,0,0,0,260,2143, - 1,0,0,0,262,2145,1,0,0,0,264,2147,1,0,0,0,266,2160,1,0,0,0,268,2168, - 1,0,0,0,270,2177,1,0,0,0,272,2181,1,0,0,0,274,2183,1,0,0,0,276,2188, - 1,0,0,0,278,2190,1,0,0,0,280,2194,1,0,0,0,282,2200,1,0,0,0,284,2208, - 1,0,0,0,286,2210,1,0,0,0,288,2213,1,0,0,0,290,2220,1,0,0,0,292,2231, - 1,0,0,0,294,2244,1,0,0,0,296,2246,1,0,0,0,298,2254,1,0,0,0,300,2258, - 1,0,0,0,302,2266,1,0,0,0,304,2268,1,0,0,0,306,2271,1,0,0,0,308,2278, - 1,0,0,0,310,2286,1,0,0,0,312,2293,1,0,0,0,314,2301,1,0,0,0,316,2309, - 1,0,0,0,318,2313,1,0,0,0,320,2315,1,0,0,0,322,2326,1,0,0,0,324,2330, - 1,0,0,0,326,2342,1,0,0,0,328,2350,1,0,0,0,330,2354,1,0,0,0,332,2366, - 1,0,0,0,334,2378,1,0,0,0,336,2383,1,0,0,0,338,2388,1,0,0,0,340,2390, - 1,0,0,0,342,2394,1,0,0,0,344,2398,1,0,0,0,346,2405,1,0,0,0,348,2407, - 1,0,0,0,350,2420,1,0,0,0,352,2459,1,0,0,0,354,2461,1,0,0,0,356,2466, - 1,0,0,0,358,2471,1,0,0,0,360,2478,1,0,0,0,362,2483,1,0,0,0,364,2488, - 1,0,0,0,366,2494,1,0,0,0,368,2496,1,0,0,0,370,2505,1,0,0,0,372,2517, - 1,0,0,0,374,2597,1,0,0,0,376,2603,1,0,0,0,378,2629,1,0,0,0,380,2631, - 1,0,0,0,382,2653,1,0,0,0,384,2658,1,0,0,0,386,2662,1,0,0,0,388,2694, - 1,0,0,0,390,2696,1,0,0,0,392,2707,1,0,0,0,394,2713,1,0,0,0,396,2715, - 1,0,0,0,398,2747,1,0,0,0,400,2754,1,0,0,0,402,2760,1,0,0,0,404,2766, - 1,0,0,0,406,2781,1,0,0,0,408,2791,1,0,0,0,410,2799,1,0,0,0,412,2802, - 1,0,0,0,414,2805,1,0,0,0,416,2808,1,0,0,0,418,2930,1,0,0,0,420,3064, - 1,0,0,0,422,3092,1,0,0,0,424,3109,1,0,0,0,426,3126,1,0,0,0,428,3128, - 1,0,0,0,430,3131,1,0,0,0,432,3157,1,0,0,0,434,3162,1,0,0,0,436,3189, - 1,0,0,0,438,3200,1,0,0,0,440,3337,1,0,0,0,442,3339,1,0,0,0,444,3362, - 1,0,0,0,446,3374,1,0,0,0,448,3379,1,0,0,0,450,3387,1,0,0,0,452,3395, - 1,0,0,0,454,3407,1,0,0,0,456,3441,1,0,0,0,458,3443,1,0,0,0,460,3468, - 1,0,0,0,462,3477,1,0,0,0,464,3507,1,0,0,0,466,3566,1,0,0,0,468,3568, - 1,0,0,0,470,3597,1,0,0,0,472,3599,1,0,0,0,474,3615,1,0,0,0,476,3627, - 1,0,0,0,478,3629,1,0,0,0,480,3633,1,0,0,0,482,3643,1,0,0,0,484,3653, - 1,0,0,0,486,3658,1,0,0,0,488,3665,1,0,0,0,490,3669,1,0,0,0,492,3688, - 1,0,0,0,494,3693,1,0,0,0,496,3695,1,0,0,0,498,3699,1,0,0,0,500,3725, - 1,0,0,0,502,3730,1,0,0,0,504,3751,1,0,0,0,506,3756,1,0,0,0,508,3787, - 1,0,0,0,510,3789,1,0,0,0,512,3813,1,0,0,0,514,3846,1,0,0,0,516,3848, - 1,0,0,0,518,3850,1,0,0,0,520,3852,1,0,0,0,522,3877,1,0,0,0,524,3879, - 1,0,0,0,526,3887,1,0,0,0,528,3913,1,0,0,0,530,3915,1,0,0,0,532,3935, - 1,0,0,0,534,3937,1,0,0,0,536,3948,1,0,0,0,538,3961,1,0,0,0,540,3996, - 1,0,0,0,542,3998,1,0,0,0,544,4003,1,0,0,0,546,4008,1,0,0,0,548,4010, - 1,0,0,0,550,4032,1,0,0,0,552,4034,1,0,0,0,554,4038,1,0,0,0,556,4047, - 1,0,0,0,558,4057,1,0,0,0,560,4061,1,0,0,0,562,4065,1,0,0,0,564,4069, - 1,0,0,0,566,4145,1,0,0,0,568,4147,1,0,0,0,570,4150,1,0,0,0,572,4154, - 1,0,0,0,574,4159,1,0,0,0,576,4161,1,0,0,0,578,4172,1,0,0,0,580,4189, - 1,0,0,0,582,4205,1,0,0,0,584,4214,1,0,0,0,586,4229,1,0,0,0,588,4259, - 1,0,0,0,590,4261,1,0,0,0,592,4278,1,0,0,0,594,4294,1,0,0,0,596,4296, - 1,0,0,0,598,4315,1,0,0,0,600,4320,1,0,0,0,602,4335,1,0,0,0,604,4343, - 1,0,0,0,606,4351,1,0,0,0,608,4359,1,0,0,0,610,4367,1,0,0,0,612,4375, - 1,0,0,0,614,4383,1,0,0,0,616,4385,1,0,0,0,618,4395,1,0,0,0,620,4403, - 1,0,0,0,622,4419,1,0,0,0,624,4423,1,0,0,0,626,4428,1,0,0,0,628,4430, - 1,0,0,0,630,4441,1,0,0,0,632,4443,1,0,0,0,634,4461,1,0,0,0,636,4466, - 1,0,0,0,638,4474,1,0,0,0,640,4482,1,0,0,0,642,4486,1,0,0,0,644,4498, - 1,0,0,0,646,4503,1,0,0,0,648,4514,1,0,0,0,650,4521,1,0,0,0,652,4523, - 1,0,0,0,654,4527,1,0,0,0,656,4529,1,0,0,0,658,4534,1,0,0,0,660,4536, - 1,0,0,0,662,4538,1,0,0,0,664,4540,1,0,0,0,666,4548,1,0,0,0,668,4609, - 1,0,0,0,670,4776,1,0,0,0,672,4778,1,0,0,0,674,4787,1,0,0,0,676,4789, - 1,0,0,0,678,4800,1,0,0,0,680,4802,1,0,0,0,682,4807,1,0,0,0,684,4809, - 1,0,0,0,686,4811,1,0,0,0,688,4813,1,0,0,0,690,4815,1,0,0,0,692,4817, - 1,0,0,0,694,4819,1,0,0,0,696,4821,1,0,0,0,698,4823,1,0,0,0,700,4825, - 1,0,0,0,702,4827,1,0,0,0,704,4829,1,0,0,0,706,4854,1,0,0,0,708,4856, - 1,0,0,0,710,4864,1,0,0,0,712,4878,1,0,0,0,714,4880,1,0,0,0,716,718, - 3,2,1,0,717,716,1,0,0,0,718,721,1,0,0,0,719,717,1,0,0,0,719,720, - 1,0,0,0,720,722,1,0,0,0,721,719,1,0,0,0,722,723,5,0,0,1,723,1,1, - 0,0,0,724,727,3,4,2,0,725,727,3,10,5,0,726,724,1,0,0,0,726,725,1, - 0,0,0,727,729,1,0,0,0,728,730,5,398,0,0,729,728,1,0,0,0,729,730, - 1,0,0,0,730,3,1,0,0,0,731,741,5,119,0,0,732,734,3,6,3,0,733,732, - 1,0,0,0,734,737,1,0,0,0,735,733,1,0,0,0,735,736,1,0,0,0,736,738, - 1,0,0,0,737,735,1,0,0,0,738,742,3,10,5,0,739,740,5,284,0,0,740,742, - 3,364,182,0,741,735,1,0,0,0,741,739,1,0,0,0,742,5,1,0,0,0,743,766, - 5,122,0,0,744,766,5,138,0,0,745,766,5,88,0,0,746,748,5,37,0,0,747, - 749,7,0,0,0,748,747,1,0,0,0,748,749,1,0,0,0,749,766,1,0,0,0,750, - 766,5,192,0,0,751,766,5,21,0,0,752,766,5,10,0,0,753,766,5,275,0, - 0,754,766,5,191,0,0,755,766,5,19,0,0,756,758,5,377,0,0,757,759,5, - 225,0,0,758,757,1,0,0,0,758,759,1,0,0,0,759,761,1,0,0,0,760,762, - 3,8,4,0,761,760,1,0,0,0,761,762,1,0,0,0,762,766,1,0,0,0,763,766, - 5,79,0,0,764,766,5,78,0,0,765,743,1,0,0,0,765,744,1,0,0,0,765,745, - 1,0,0,0,765,746,1,0,0,0,765,750,1,0,0,0,765,751,1,0,0,0,765,752, - 1,0,0,0,765,753,1,0,0,0,765,754,1,0,0,0,765,755,1,0,0,0,765,756, - 1,0,0,0,765,763,1,0,0,0,765,764,1,0,0,0,766,7,1,0,0,0,767,768,7, - 1,0,0,768,9,1,0,0,0,769,834,3,364,182,0,770,834,3,12,6,0,771,834, - 3,16,8,0,772,834,3,18,9,0,773,834,3,20,10,0,774,834,3,24,12,0,775, - 776,5,277,0,0,776,777,5,320,0,0,777,780,3,476,238,0,778,779,5,387, - 0,0,779,781,3,230,115,0,780,778,1,0,0,0,780,781,1,0,0,0,781,834, - 1,0,0,0,782,834,3,28,14,0,783,784,5,86,0,0,784,785,5,139,0,0,785, - 787,3,482,241,0,786,788,3,500,250,0,787,786,1,0,0,0,787,788,1,0, - 0,0,788,834,1,0,0,0,789,790,5,365,0,0,790,791,3,482,241,0,791,793, - 3,396,198,0,792,794,3,500,250,0,793,792,1,0,0,0,793,794,1,0,0,0, - 794,834,1,0,0,0,795,834,3,398,199,0,796,798,5,203,0,0,797,799,5, - 436,0,0,798,797,1,0,0,0,798,799,1,0,0,0,799,800,1,0,0,0,800,801, - 5,166,0,0,801,806,3,482,241,0,802,804,5,17,0,0,803,802,1,0,0,0,803, - 804,1,0,0,0,804,805,1,0,0,0,805,807,3,654,327,0,806,803,1,0,0,0, - 806,807,1,0,0,0,807,808,1,0,0,0,808,809,5,370,0,0,809,810,3,460, - 230,0,810,811,5,224,0,0,811,812,3,596,298,0,812,813,3,402,201,0, - 813,834,1,0,0,0,814,815,5,249,0,0,815,816,3,654,327,0,816,817,5, - 139,0,0,817,818,3,364,182,0,818,834,1,0,0,0,819,820,5,115,0,0,820, - 821,3,654,327,0,821,822,5,370,0,0,822,823,3,300,150,0,823,834,1, - 0,0,0,824,825,5,304,0,0,825,826,3,664,332,0,826,830,5,405,0,0,827, - 829,9,0,0,0,828,827,1,0,0,0,829,832,1,0,0,0,830,831,1,0,0,0,830, - 828,1,0,0,0,831,834,1,0,0,0,832,830,1,0,0,0,833,769,1,0,0,0,833, - 770,1,0,0,0,833,771,1,0,0,0,833,772,1,0,0,0,833,773,1,0,0,0,833, - 774,1,0,0,0,833,775,1,0,0,0,833,782,1,0,0,0,833,783,1,0,0,0,833, - 789,1,0,0,0,833,795,1,0,0,0,833,796,1,0,0,0,833,814,1,0,0,0,833, - 819,1,0,0,0,833,824,1,0,0,0,834,11,1,0,0,0,835,836,5,187,0,0,836, - 838,5,66,0,0,837,839,5,188,0,0,838,837,1,0,0,0,838,839,1,0,0,0,839, - 840,1,0,0,0,840,841,5,158,0,0,841,843,5,426,0,0,842,844,5,235,0, - 0,843,842,1,0,0,0,843,844,1,0,0,0,844,845,1,0,0,0,845,846,5,166, - 0,0,846,847,5,329,0,0,847,849,3,640,320,0,848,850,3,56,28,0,849, - 848,1,0,0,0,849,850,1,0,0,0,850,13,1,0,0,0,851,853,5,134,0,0,852, - 854,5,204,0,0,853,852,1,0,0,0,853,854,1,0,0,0,854,855,1,0,0,0,855, - 856,5,279,0,0,856,857,5,399,0,0,857,858,5,426,0,0,858,859,5,400, - 0,0,859,15,1,0,0,0,860,861,5,120,0,0,861,862,5,329,0,0,862,863,3, - 640,320,0,863,864,5,341,0,0,864,866,5,426,0,0,865,867,3,14,7,0,866, - 865,1,0,0,0,866,867,1,0,0,0,867,17,1,0,0,0,868,874,5,153,0,0,869, - 871,5,123,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872, - 873,5,329,0,0,873,875,3,640,320,0,874,870,1,0,0,0,874,875,1,0,0, - 0,875,876,1,0,0,0,876,877,5,139,0,0,877,879,5,426,0,0,878,880,3, - 428,214,0,879,878,1,0,0,0,879,880,1,0,0,0,880,19,1,0,0,0,881,882, - 5,277,0,0,882,883,5,103,0,0,883,886,3,22,11,0,884,885,5,278,0,0, - 885,887,3,22,11,0,886,884,1,0,0,0,886,887,1,0,0,0,887,890,1,0,0, - 0,888,889,5,387,0,0,889,891,3,230,115,0,890,888,1,0,0,0,890,891, - 1,0,0,0,891,21,1,0,0,0,892,895,3,476,238,0,893,894,5,395,0,0,894, - 896,3,26,13,0,895,893,1,0,0,0,895,896,1,0,0,0,896,23,1,0,0,0,897, - 898,5,277,0,0,898,899,5,187,0,0,899,902,3,22,11,0,900,901,5,166, - 0,0,901,903,3,476,238,0,902,900,1,0,0,0,902,903,1,0,0,0,903,906, - 1,0,0,0,904,905,5,387,0,0,905,907,3,230,115,0,906,904,1,0,0,0,906, - 907,1,0,0,0,907,25,1,0,0,0,908,911,5,426,0,0,909,910,5,395,0,0,910, - 912,5,426,0,0,911,909,1,0,0,0,911,912,1,0,0,0,912,27,1,0,0,0,913, - 972,3,42,21,0,914,972,3,46,23,0,915,972,3,48,24,0,916,972,3,440, - 220,0,917,972,3,54,27,0,918,972,3,52,26,0,919,972,3,416,208,0,920, - 972,3,64,32,0,921,972,3,72,36,0,922,972,3,138,69,0,923,972,3,160, - 80,0,924,972,3,176,88,0,925,972,3,180,90,0,926,972,3,184,92,0,927, - 972,3,182,91,0,928,972,3,174,87,0,929,972,3,178,89,0,930,972,3,146, - 73,0,931,972,3,152,76,0,932,972,3,148,74,0,933,972,3,150,75,0,934, - 972,3,154,77,0,935,972,3,156,78,0,936,972,3,158,79,0,937,972,3,66, - 33,0,938,972,3,76,38,0,939,972,3,82,41,0,940,972,3,78,39,0,941,972, - 3,84,42,0,942,972,3,86,43,0,943,972,3,88,44,0,944,972,3,90,45,0, - 945,972,3,92,46,0,946,972,3,106,53,0,947,972,3,98,49,0,948,972,3, - 108,54,0,949,972,3,100,50,0,950,972,3,94,47,0,951,972,3,96,48,0, - 952,972,3,104,52,0,953,972,3,102,51,0,954,955,5,1,0,0,955,957,7, - 2,0,0,956,958,5,431,0,0,957,956,1,0,0,0,958,959,1,0,0,0,959,957, - 1,0,0,0,959,960,1,0,0,0,960,972,1,0,0,0,961,962,5,176,0,0,962,964, - 5,258,0,0,963,965,5,426,0,0,964,963,1,0,0,0,965,966,1,0,0,0,966, - 964,1,0,0,0,966,967,1,0,0,0,967,972,1,0,0,0,968,972,3,670,335,0, - 969,972,3,442,221,0,970,972,3,444,222,0,971,913,1,0,0,0,971,914, - 1,0,0,0,971,915,1,0,0,0,971,916,1,0,0,0,971,917,1,0,0,0,971,918, - 1,0,0,0,971,919,1,0,0,0,971,920,1,0,0,0,971,921,1,0,0,0,971,922, - 1,0,0,0,971,923,1,0,0,0,971,924,1,0,0,0,971,925,1,0,0,0,971,926, - 1,0,0,0,971,927,1,0,0,0,971,928,1,0,0,0,971,929,1,0,0,0,971,930, - 1,0,0,0,971,931,1,0,0,0,971,932,1,0,0,0,971,933,1,0,0,0,971,934, - 1,0,0,0,971,935,1,0,0,0,971,936,1,0,0,0,971,937,1,0,0,0,971,938, - 1,0,0,0,971,939,1,0,0,0,971,940,1,0,0,0,971,941,1,0,0,0,971,942, - 1,0,0,0,971,943,1,0,0,0,971,944,1,0,0,0,971,945,1,0,0,0,971,946, - 1,0,0,0,971,947,1,0,0,0,971,948,1,0,0,0,971,949,1,0,0,0,971,950, - 1,0,0,0,971,951,1,0,0,0,971,952,1,0,0,0,971,953,1,0,0,0,971,954, - 1,0,0,0,971,961,1,0,0,0,971,968,1,0,0,0,971,969,1,0,0,0,971,970, - 1,0,0,0,972,29,1,0,0,0,973,974,5,151,0,0,974,975,5,117,0,0,975,31, - 1,0,0,0,976,977,5,151,0,0,977,978,5,216,0,0,978,979,5,117,0,0,979, - 33,1,0,0,0,980,981,7,3,0,0,981,35,1,0,0,0,982,983,3,682,341,0,983, - 984,5,284,0,0,984,37,1,0,0,0,985,986,3,684,342,0,986,987,5,284,0, - 0,987,39,1,0,0,0,988,989,5,321,0,0,989,990,5,17,0,0,990,991,5,92, - 0,0,991,41,1,0,0,0,992,994,5,58,0,0,993,995,5,273,0,0,994,993,1, - 0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,998,3,70,35,0,997,999, - 3,32,16,0,998,997,1,0,0,0,998,999,1,0,0,0,999,1000,1,0,0,0,1000, - 1002,3,478,239,0,1001,1003,3,50,25,0,1002,1001,1,0,0,0,1002,1003, - 1,0,0,0,1003,1005,1,0,0,0,1004,1006,3,428,214,0,1005,1004,1,0,0, - 0,1005,1006,1,0,0,0,1006,1009,1,0,0,0,1007,1008,5,196,0,0,1008,1010, - 5,426,0,0,1009,1007,1,0,0,0,1009,1010,1,0,0,0,1010,1014,1,0,0,0, - 1011,1012,5,387,0,0,1012,1013,5,76,0,0,1013,1015,3,230,115,0,1014, - 1011,1,0,0,0,1014,1015,1,0,0,0,1015,1033,1,0,0,0,1016,1017,5,58, - 0,0,1017,1018,5,273,0,0,1018,1020,3,70,35,0,1019,1021,3,32,16,0, - 1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1022,1,0,0,0,1022,1024, - 3,478,239,0,1023,1025,3,50,25,0,1024,1023,1,0,0,0,1024,1025,1,0, - 0,0,1025,1026,1,0,0,0,1026,1030,3,44,22,0,1027,1028,5,387,0,0,1028, - 1029,5,76,0,0,1029,1031,3,230,115,0,1030,1027,1,0,0,0,1030,1031, - 1,0,0,0,1031,1033,1,0,0,0,1032,992,1,0,0,0,1032,1016,1,0,0,0,1033, - 43,1,0,0,0,1034,1035,5,370,0,0,1035,1036,3,476,238,0,1036,45,1,0, - 0,0,1037,1038,5,368,0,0,1038,1039,3,476,238,0,1039,47,1,0,0,0,1040, - 1041,5,101,0,0,1041,1043,3,70,35,0,1042,1044,3,30,15,0,1043,1042, - 1,0,0,0,1043,1044,1,0,0,0,1044,1045,1,0,0,0,1045,1047,3,476,238, - 0,1046,1048,3,34,17,0,1047,1046,1,0,0,0,1047,1048,1,0,0,0,1048,49, - 1,0,0,0,1049,1050,5,47,0,0,1050,1051,5,426,0,0,1051,51,1,0,0,0,1052, - 1054,5,351,0,0,1053,1055,5,329,0,0,1054,1053,1,0,0,0,1054,1055,1, - 0,0,0,1055,1056,1,0,0,0,1056,1062,3,640,320,0,1057,1058,5,46,0,0, - 1058,1059,5,399,0,0,1059,1060,3,254,127,0,1060,1061,5,400,0,0,1061, - 1063,1,0,0,0,1062,1057,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0, - 0,1064,1066,5,135,0,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066,53, - 1,0,0,0,1067,1068,5,101,0,0,1068,1070,5,329,0,0,1069,1071,3,30,15, - 0,1070,1069,1,0,0,0,1070,1071,1,0,0,0,1071,1072,1,0,0,0,1072,1074, - 3,482,241,0,1073,1075,5,255,0,0,1074,1073,1,0,0,0,1074,1075,1,0, - 0,0,1075,1077,1,0,0,0,1076,1078,3,14,7,0,1077,1076,1,0,0,0,1077, - 1078,1,0,0,0,1078,55,1,0,0,0,1079,1080,5,160,0,0,1080,1081,5,426, - 0,0,1081,1082,5,301,0,0,1082,1083,5,426,0,0,1083,57,1,0,0,0,1084, - 1087,3,654,327,0,1085,1086,5,395,0,0,1086,1088,3,654,327,0,1087, - 1085,1,0,0,0,1087,1088,1,0,0,0,1088,1102,1,0,0,0,1089,1099,3,654, - 327,0,1090,1095,5,395,0,0,1091,1096,5,104,0,0,1092,1096,5,175,0, - 0,1093,1096,5,375,0,0,1094,1096,3,654,327,0,1095,1091,1,0,0,0,1095, - 1092,1,0,0,0,1095,1093,1,0,0,0,1095,1094,1,0,0,0,1096,1098,1,0,0, - 0,1097,1090,1,0,0,0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100, - 1,0,0,0,1100,1103,1,0,0,0,1101,1099,1,0,0,0,1102,1089,1,0,0,0,1102, - 1103,1,0,0,0,1103,59,1,0,0,0,1104,1106,3,58,29,0,1105,1107,3,642, - 321,0,1106,1105,1,0,0,0,1106,1107,1,0,0,0,1107,61,1,0,0,0,1108,1110, - 3,480,240,0,1109,1111,3,642,321,0,1110,1109,1,0,0,0,1110,1111,1, - 0,0,0,1111,1113,1,0,0,0,1112,1114,3,264,132,0,1113,1112,1,0,0,0, - 1113,1114,1,0,0,0,1114,63,1,0,0,0,1115,1138,7,4,0,0,1116,1118,3, - 70,35,0,1117,1119,5,122,0,0,1118,1117,1,0,0,0,1118,1119,1,0,0,0, - 1119,1120,1,0,0,0,1120,1121,3,476,238,0,1121,1139,1,0,0,0,1122,1124, - 5,69,0,0,1123,1125,5,122,0,0,1124,1123,1,0,0,0,1124,1125,1,0,0,0, - 1125,1126,1,0,0,0,1126,1139,3,476,238,0,1127,1129,5,141,0,0,1128, - 1130,5,122,0,0,1129,1128,1,0,0,0,1129,1130,1,0,0,0,1130,1131,1,0, - 0,0,1131,1139,3,572,286,0,1132,1135,5,138,0,0,1133,1135,5,122,0, - 0,1134,1132,1,0,0,0,1134,1133,1,0,0,0,1135,1136,1,0,0,0,1136,1139, - 3,62,31,0,1137,1139,3,62,31,0,1138,1116,1,0,0,0,1138,1122,1,0,0, - 0,1138,1127,1,0,0,0,1138,1134,1,0,0,0,1138,1137,1,0,0,0,1139,65, - 1,0,0,0,1140,1141,5,10,0,0,1141,1142,5,329,0,0,1142,1155,3,640,320, - 0,1143,1144,5,52,0,0,1144,1151,5,319,0,0,1145,1152,5,215,0,0,1146, - 1147,5,134,0,0,1147,1149,5,46,0,0,1148,1150,3,254,127,0,1149,1148, - 1,0,0,0,1149,1150,1,0,0,0,1150,1152,1,0,0,0,1151,1145,1,0,0,0,1151, - 1146,1,0,0,0,1151,1152,1,0,0,0,1152,1156,1,0,0,0,1153,1154,5,33, - 0,0,1154,1156,5,204,0,0,1155,1143,1,0,0,0,1155,1153,1,0,0,0,1156, - 67,1,0,0,0,1157,1158,7,5,0,0,1158,69,1,0,0,0,1159,1160,7,6,0,0,1160, - 71,1,0,0,0,1161,1162,5,308,0,0,1162,1165,7,7,0,0,1163,1164,5,184, - 0,0,1164,1166,3,194,97,0,1165,1163,1,0,0,0,1165,1166,1,0,0,0,1166, - 1345,1,0,0,0,1167,1169,5,308,0,0,1168,1170,5,122,0,0,1169,1168,1, - 0,0,0,1169,1170,1,0,0,0,1170,1171,1,0,0,0,1171,1175,5,330,0,0,1172, - 1173,3,68,34,0,1173,1174,3,476,238,0,1174,1176,1,0,0,0,1175,1172, - 1,0,0,0,1175,1176,1,0,0,0,1176,1178,1,0,0,0,1177,1179,3,74,37,0, - 1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1345,1,0,0,0,1180,1181, - 5,308,0,0,1181,1185,5,379,0,0,1182,1183,3,68,34,0,1183,1184,3,476, - 238,0,1184,1186,1,0,0,0,1185,1182,1,0,0,0,1185,1186,1,0,0,0,1186, - 1190,1,0,0,0,1187,1188,5,184,0,0,1188,1191,3,194,97,0,1189,1191, - 3,194,97,0,1190,1187,1,0,0,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0, - 1191,1345,1,0,0,0,1192,1193,5,308,0,0,1193,1194,5,202,0,0,1194,1198, - 5,379,0,0,1195,1196,3,68,34,0,1196,1197,3,476,238,0,1197,1199,1, - 0,0,0,1198,1195,1,0,0,0,1198,1199,1,0,0,0,1199,1203,1,0,0,0,1200, - 1201,5,184,0,0,1201,1204,3,194,97,0,1202,1204,3,194,97,0,1203,1200, - 1,0,0,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0,1204,1345,1,0,0,0,1205, - 1207,5,308,0,0,1206,1208,5,315,0,0,1207,1206,1,0,0,0,1207,1208,1, - 0,0,0,1208,1209,1,0,0,0,1209,1210,5,46,0,0,1210,1211,3,68,34,0,1211, - 1215,3,480,240,0,1212,1213,3,68,34,0,1213,1214,3,476,238,0,1214, - 1216,1,0,0,0,1215,1212,1,0,0,0,1215,1216,1,0,0,0,1216,1220,1,0,0, - 0,1217,1218,5,184,0,0,1218,1221,3,194,97,0,1219,1221,3,194,97,0, - 1220,1217,1,0,0,0,1220,1219,1,0,0,0,1220,1221,1,0,0,0,1221,1345, - 1,0,0,0,1222,1223,5,308,0,0,1223,1226,5,142,0,0,1224,1225,5,184, - 0,0,1225,1227,3,572,286,0,1226,1224,1,0,0,0,1226,1227,1,0,0,0,1227, - 1345,1,0,0,0,1228,1229,5,308,0,0,1229,1230,5,239,0,0,1230,1232,3, - 480,240,0,1231,1233,3,642,321,0,1232,1231,1,0,0,0,1232,1233,1,0, - 0,0,1233,1235,1,0,0,0,1234,1236,3,500,250,0,1235,1234,1,0,0,0,1235, - 1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,556,278,0,1238,1237,1, - 0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242,3,390,195,0, - 1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1345,1,0,0,0,1243,1244, - 5,308,0,0,1244,1250,5,58,0,0,1245,1246,3,70,35,0,1246,1247,3,476, - 238,0,1247,1251,1,0,0,0,1248,1249,5,329,0,0,1249,1251,3,482,241, - 0,1250,1245,1,0,0,0,1250,1248,1,0,0,0,1251,1345,1,0,0,0,1252,1253, - 5,308,0,0,1253,1254,5,329,0,0,1254,1258,5,122,0,0,1255,1256,3,68, - 34,0,1256,1257,3,476,238,0,1257,1259,1,0,0,0,1258,1255,1,0,0,0,1258, - 1259,1,0,0,0,1259,1260,1,0,0,0,1260,1261,5,184,0,0,1261,1263,3,194, - 97,0,1262,1264,3,642,321,0,1263,1262,1,0,0,0,1263,1264,1,0,0,0,1264, - 1345,1,0,0,0,1265,1266,5,308,0,0,1266,1267,5,332,0,0,1267,1271,3, - 482,241,0,1268,1269,5,399,0,0,1269,1270,5,426,0,0,1270,1272,5,400, - 0,0,1271,1268,1,0,0,0,1271,1272,1,0,0,0,1272,1345,1,0,0,0,1273,1274, - 5,308,0,0,1274,1286,5,191,0,0,1275,1276,3,70,35,0,1276,1278,3,476, - 238,0,1277,1279,5,122,0,0,1278,1277,1,0,0,0,1278,1279,1,0,0,0,1279, - 1287,1,0,0,0,1280,1282,3,60,30,0,1281,1280,1,0,0,0,1281,1282,1,0, - 0,0,1282,1284,1,0,0,0,1283,1285,5,122,0,0,1284,1283,1,0,0,0,1284, - 1285,1,0,0,0,1285,1287,1,0,0,0,1286,1275,1,0,0,0,1286,1281,1,0,0, - 0,1287,1345,1,0,0,0,1288,1289,5,308,0,0,1289,1316,5,50,0,0,1290, - 1291,5,51,0,0,1291,1292,5,405,0,0,1292,1317,5,431,0,0,1293,1294, - 3,70,35,0,1294,1295,3,476,238,0,1295,1300,1,0,0,0,1296,1298,3,60, - 30,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1300,1,0,0,0,1299, - 1293,1,0,0,0,1299,1297,1,0,0,0,1300,1302,1,0,0,0,1301,1303,3,410, - 205,0,1302,1301,1,0,0,0,1302,1303,1,0,0,0,1303,1305,1,0,0,0,1304, - 1306,3,412,206,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306,1308,1, - 0,0,0,1307,1309,3,414,207,0,1308,1307,1,0,0,0,1308,1309,1,0,0,0, - 1309,1311,1,0,0,0,1310,1312,3,556,278,0,1311,1310,1,0,0,0,1311,1312, - 1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,390,195,0,1314,1313,1,0,0, - 0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1290,1,0,0,0,1316,1299, - 1,0,0,0,1317,1345,1,0,0,0,1318,1319,5,308,0,0,1319,1345,5,346,0, - 0,1320,1321,5,308,0,0,1321,1322,5,54,0,0,1322,1345,5,426,0,0,1323, - 1324,5,308,0,0,1324,1328,5,280,0,0,1325,1326,5,243,0,0,1326,1329, - 3,654,327,0,1327,1329,5,244,0,0,1328,1325,1,0,0,0,1328,1327,1,0, - 0,0,1329,1345,1,0,0,0,1330,1331,5,308,0,0,1331,1345,5,70,0,0,1332, - 1334,5,308,0,0,1333,1335,5,138,0,0,1334,1333,1,0,0,0,1334,1335,1, - 0,0,0,1335,1336,1,0,0,0,1336,1337,7,8,0,0,1337,1338,5,224,0,0,1338, - 1342,3,482,241,0,1339,1340,3,68,34,0,1340,1341,3,476,238,0,1341, - 1343,1,0,0,0,1342,1339,1,0,0,0,1342,1343,1,0,0,0,1343,1345,1,0,0, - 0,1344,1161,1,0,0,0,1344,1167,1,0,0,0,1344,1180,1,0,0,0,1344,1192, - 1,0,0,0,1344,1205,1,0,0,0,1344,1222,1,0,0,0,1344,1228,1,0,0,0,1344, - 1243,1,0,0,0,1344,1252,1,0,0,0,1344,1265,1,0,0,0,1344,1273,1,0,0, - 0,1344,1288,1,0,0,0,1344,1318,1,0,0,0,1344,1320,1,0,0,0,1344,1323, - 1,0,0,0,1344,1330,1,0,0,0,1344,1332,1,0,0,0,1345,73,1,0,0,0,1346, - 1347,5,384,0,0,1347,1348,3,654,327,0,1348,1349,5,405,0,0,1349,1350, - 5,426,0,0,1350,1355,1,0,0,0,1351,1352,5,184,0,0,1352,1355,3,194, - 97,0,1353,1355,3,194,97,0,1354,1346,1,0,0,0,1354,1351,1,0,0,0,1354, - 1353,1,0,0,0,1355,75,1,0,0,0,1356,1357,5,190,0,0,1357,1358,5,329, - 0,0,1358,1359,3,640,320,0,1359,1360,3,80,40,0,1360,77,1,0,0,0,1361, - 1362,5,190,0,0,1362,1363,3,70,35,0,1363,1364,3,476,238,0,1364,1365, - 3,80,40,0,1365,79,1,0,0,0,1366,1367,7,9,0,0,1367,81,1,0,0,0,1368, - 1369,5,361,0,0,1369,1370,5,329,0,0,1370,1371,3,640,320,0,1371,83, - 1,0,0,0,1372,1373,5,361,0,0,1373,1374,3,70,35,0,1374,1375,3,476, - 238,0,1375,85,1,0,0,0,1376,1377,5,58,0,0,1377,1378,5,287,0,0,1378, - 1379,3,654,327,0,1379,87,1,0,0,0,1380,1381,5,101,0,0,1381,1382,5, - 287,0,0,1382,1383,3,654,327,0,1383,89,1,0,0,0,1384,1385,5,143,0, - 0,1385,1387,3,118,59,0,1386,1388,3,112,56,0,1387,1386,1,0,0,0,1387, - 1388,1,0,0,0,1388,1389,1,0,0,0,1389,1390,5,341,0,0,1390,1392,3,124, - 62,0,1391,1393,3,130,65,0,1392,1391,1,0,0,0,1392,1393,1,0,0,0,1393, - 91,1,0,0,0,1394,1396,5,283,0,0,1395,1397,3,132,66,0,1396,1395,1, - 0,0,0,1396,1397,1,0,0,0,1397,1398,1,0,0,0,1398,1400,3,118,59,0,1399, - 1401,3,112,56,0,1400,1399,1,0,0,0,1400,1401,1,0,0,0,1401,1402,1, - 0,0,0,1402,1403,5,139,0,0,1403,1404,3,124,62,0,1404,93,1,0,0,0,1405, - 1407,5,143,0,0,1406,1408,5,287,0,0,1407,1406,1,0,0,0,1407,1408,1, - 0,0,0,1408,1409,1,0,0,0,1409,1414,3,654,327,0,1410,1411,5,397,0, - 0,1411,1413,3,654,327,0,1412,1410,1,0,0,0,1413,1416,1,0,0,0,1414, - 1412,1,0,0,0,1414,1415,1,0,0,0,1415,1417,1,0,0,0,1416,1414,1,0,0, - 0,1417,1418,5,341,0,0,1418,1420,3,124,62,0,1419,1421,3,136,68,0, - 1420,1419,1,0,0,0,1420,1421,1,0,0,0,1421,95,1,0,0,0,1422,1424,5, - 283,0,0,1423,1425,3,134,67,0,1424,1423,1,0,0,0,1424,1425,1,0,0,0, - 1425,1427,1,0,0,0,1426,1428,5,287,0,0,1427,1426,1,0,0,0,1427,1428, - 1,0,0,0,1428,1429,1,0,0,0,1429,1434,3,654,327,0,1430,1431,5,397, - 0,0,1431,1433,3,654,327,0,1432,1430,1,0,0,0,1433,1436,1,0,0,0,1434, - 1432,1,0,0,0,1434,1435,1,0,0,0,1435,1437,1,0,0,0,1436,1434,1,0,0, - 0,1437,1438,5,139,0,0,1438,1439,3,124,62,0,1439,97,1,0,0,0,1440, - 1441,5,308,0,0,1441,1442,5,287,0,0,1442,1443,5,143,0,0,1443,1444, - 3,126,63,0,1444,99,1,0,0,0,1445,1446,5,308,0,0,1446,1447,5,288,0, - 0,1447,101,1,0,0,0,1448,1449,5,308,0,0,1449,1450,5,62,0,0,1450,1451, - 5,288,0,0,1451,103,1,0,0,0,1452,1453,5,304,0,0,1453,1457,5,287,0, - 0,1454,1458,5,7,0,0,1455,1458,5,213,0,0,1456,1458,3,654,327,0,1457, - 1454,1,0,0,0,1457,1455,1,0,0,0,1457,1456,1,0,0,0,1458,105,1,0,0, - 0,1459,1460,5,308,0,0,1460,1462,5,143,0,0,1461,1463,3,126,63,0,1462, - 1461,1,0,0,0,1462,1463,1,0,0,0,1463,1466,1,0,0,0,1464,1465,5,224, - 0,0,1465,1467,3,110,55,0,1466,1464,1,0,0,0,1466,1467,1,0,0,0,1467, - 107,1,0,0,0,1468,1469,5,308,0,0,1469,1470,5,252,0,0,1470,1471,3, - 654,327,0,1471,109,1,0,0,0,1472,1475,5,7,0,0,1473,1475,3,116,58, - 0,1474,1472,1,0,0,0,1474,1473,1,0,0,0,1475,111,1,0,0,0,1476,1477, - 5,224,0,0,1477,1478,3,114,57,0,1478,113,1,0,0,0,1479,1480,3,70,35, - 0,1480,1481,3,476,238,0,1481,1491,1,0,0,0,1482,1484,5,329,0,0,1483, - 1482,1,0,0,0,1483,1484,1,0,0,0,1484,1485,1,0,0,0,1485,1491,3,640, - 320,0,1486,1487,5,366,0,0,1487,1491,5,426,0,0,1488,1489,5,303,0, - 0,1489,1491,3,654,327,0,1490,1479,1,0,0,0,1490,1483,1,0,0,0,1490, - 1486,1,0,0,0,1490,1488,1,0,0,0,1491,115,1,0,0,0,1492,1493,3,70,35, - 0,1493,1494,3,476,238,0,1494,1513,1,0,0,0,1495,1497,5,329,0,0,1496, - 1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1503,3,482, - 241,0,1499,1500,5,399,0,0,1500,1501,3,254,127,0,1501,1502,5,400, - 0,0,1502,1504,1,0,0,0,1503,1499,1,0,0,0,1503,1504,1,0,0,0,1504,1506, - 1,0,0,0,1505,1507,3,642,321,0,1506,1505,1,0,0,0,1506,1507,1,0,0, - 0,1507,1513,1,0,0,0,1508,1509,5,366,0,0,1509,1513,5,426,0,0,1510, - 1511,5,303,0,0,1511,1513,3,654,327,0,1512,1492,1,0,0,0,1512,1496, - 1,0,0,0,1512,1508,1,0,0,0,1512,1510,1,0,0,0,1513,117,1,0,0,0,1514, - 1519,3,120,60,0,1515,1516,5,397,0,0,1516,1518,3,120,60,0,1517,1515, - 1,0,0,0,1518,1521,1,0,0,0,1519,1517,1,0,0,0,1519,1520,1,0,0,0,1520, - 119,1,0,0,0,1521,1519,1,0,0,0,1522,1527,3,122,61,0,1523,1524,5,399, - 0,0,1524,1525,3,254,127,0,1525,1526,5,400,0,0,1526,1528,1,0,0,0, - 1527,1523,1,0,0,0,1527,1528,1,0,0,0,1528,121,1,0,0,0,1529,1530,7, - 10,0,0,1530,123,1,0,0,0,1531,1536,3,126,63,0,1532,1533,5,397,0,0, - 1533,1535,3,126,63,0,1534,1532,1,0,0,0,1535,1538,1,0,0,0,1536,1534, - 1,0,0,0,1536,1537,1,0,0,0,1537,125,1,0,0,0,1538,1536,1,0,0,0,1539, - 1540,5,369,0,0,1540,1546,3,658,329,0,1541,1542,5,144,0,0,1542,1546, - 3,658,329,0,1543,1544,5,287,0,0,1544,1546,3,654,327,0,1545,1539, - 1,0,0,0,1545,1541,1,0,0,0,1545,1543,1,0,0,0,1546,127,1,0,0,0,1547, - 1548,5,369,0,0,1548,1553,3,658,329,0,1549,1550,5,287,0,0,1550,1553, - 3,654,327,0,1551,1553,3,654,327,0,1552,1547,1,0,0,0,1552,1549,1, - 0,0,0,1552,1551,1,0,0,0,1553,129,1,0,0,0,1554,1555,5,387,0,0,1555, - 1556,5,143,0,0,1556,1557,5,227,0,0,1557,131,1,0,0,0,1558,1559,5, - 143,0,0,1559,1560,5,227,0,0,1560,1561,5,134,0,0,1561,133,1,0,0,0, - 1562,1563,5,5,0,0,1563,1564,5,227,0,0,1564,1565,5,134,0,0,1565,135, - 1,0,0,0,1566,1567,5,387,0,0,1567,1568,5,5,0,0,1568,1569,5,227,0, - 0,1569,137,1,0,0,0,1570,1572,5,212,0,0,1571,1573,5,276,0,0,1572, - 1571,1,0,0,0,1572,1573,1,0,0,0,1573,1574,1,0,0,0,1574,1575,5,329, - 0,0,1575,1581,3,482,241,0,1576,1577,7,11,0,0,1577,1579,5,239,0,0, - 1578,1580,3,646,323,0,1579,1578,1,0,0,0,1579,1580,1,0,0,0,1580,1582, - 1,0,0,0,1581,1576,1,0,0,0,1581,1582,1,0,0,0,1582,139,1,0,0,0,1583, - 1588,3,142,71,0,1584,1585,5,397,0,0,1585,1587,3,142,71,0,1586,1584, - 1,0,0,0,1587,1590,1,0,0,0,1588,1586,1,0,0,0,1588,1589,1,0,0,0,1589, - 141,1,0,0,0,1590,1588,1,0,0,0,1591,1592,3,144,72,0,1592,1593,5,426, - 0,0,1593,143,1,0,0,0,1594,1595,7,12,0,0,1595,145,1,0,0,0,1596,1598, - 5,58,0,0,1597,1599,5,333,0,0,1598,1597,1,0,0,0,1598,1599,1,0,0,0, - 1599,1600,1,0,0,0,1600,1601,5,141,0,0,1601,1602,3,570,285,0,1602, - 1603,5,17,0,0,1603,1606,5,426,0,0,1604,1605,5,370,0,0,1605,1607, - 3,140,70,0,1606,1604,1,0,0,0,1606,1607,1,0,0,0,1607,147,1,0,0,0, - 1608,1610,5,101,0,0,1609,1611,5,333,0,0,1610,1609,1,0,0,0,1610,1611, - 1,0,0,0,1611,1612,1,0,0,0,1612,1614,5,141,0,0,1613,1615,3,30,15, - 0,1614,1613,1,0,0,0,1614,1615,1,0,0,0,1615,1616,1,0,0,0,1616,1617, - 3,572,286,0,1617,149,1,0,0,0,1618,1619,5,271,0,0,1619,1620,7,13, - 0,0,1620,151,1,0,0,0,1621,1622,5,58,0,0,1622,1623,5,333,0,0,1623, - 1624,5,194,0,0,1624,1625,5,432,0,0,1625,1627,5,399,0,0,1626,1628, - 3,248,124,0,1627,1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0, - 0,1629,1630,5,400,0,0,1630,1631,3,596,298,0,1631,153,1,0,0,0,1632, - 1633,5,101,0,0,1633,1634,5,333,0,0,1634,1636,5,194,0,0,1635,1637, - 3,30,15,0,1636,1635,1,0,0,0,1636,1637,1,0,0,0,1637,1638,1,0,0,0, - 1638,1639,5,432,0,0,1639,155,1,0,0,0,1640,1641,5,58,0,0,1641,1642, - 5,155,0,0,1642,1643,3,654,327,0,1643,1644,5,224,0,0,1644,1645,5, - 329,0,0,1645,1646,3,482,241,0,1646,1647,3,268,134,0,1647,1648,5, - 17,0,0,1648,1652,5,426,0,0,1649,1650,5,387,0,0,1650,1651,5,84,0, - 0,1651,1653,5,265,0,0,1652,1649,1,0,0,0,1652,1653,1,0,0,0,1653,1656, - 1,0,0,0,1654,1655,5,150,0,0,1655,1657,3,226,113,0,1656,1654,1,0, - 0,0,1656,1657,1,0,0,0,1657,1661,1,0,0,0,1658,1659,5,154,0,0,1659, - 1660,5,329,0,0,1660,1662,3,482,241,0,1661,1658,1,0,0,0,1661,1662, - 1,0,0,0,1662,1666,1,0,0,0,1663,1664,5,238,0,0,1664,1665,5,32,0,0, - 1665,1667,3,268,134,0,1666,1663,1,0,0,0,1666,1667,1,0,0,0,1667,1672, - 1,0,0,0,1668,1670,3,222,111,0,1669,1668,1,0,0,0,1669,1670,1,0,0, - 0,1670,1671,1,0,0,0,1671,1673,3,246,123,0,1672,1669,1,0,0,0,1672, - 1673,1,0,0,0,1673,1675,1,0,0,0,1674,1676,3,428,214,0,1675,1674,1, - 0,0,0,1675,1676,1,0,0,0,1676,1678,1,0,0,0,1677,1679,3,224,112,0, - 1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679,1681,1,0,0,0,1680,1682, - 3,196,98,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682,157,1,0,0,0, - 1683,1684,5,101,0,0,1684,1686,5,155,0,0,1685,1687,3,30,15,0,1686, - 1685,1,0,0,0,1686,1687,1,0,0,0,1687,1688,1,0,0,0,1688,1689,3,654, - 327,0,1689,1690,5,224,0,0,1690,1691,3,482,241,0,1691,159,1,0,0,0, - 1692,1695,5,58,0,0,1693,1694,5,228,0,0,1694,1696,5,278,0,0,1695, - 1693,1,0,0,0,1695,1696,1,0,0,0,1696,1697,1,0,0,0,1697,1699,5,378, - 0,0,1698,1700,3,32,16,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700, - 1701,1,0,0,0,1701,1706,3,488,244,0,1702,1703,5,399,0,0,1703,1704, - 3,308,154,0,1704,1705,5,400,0,0,1705,1707,1,0,0,0,1706,1702,1,0, - 0,0,1706,1707,1,0,0,0,1707,1709,1,0,0,0,1708,1710,3,196,98,0,1709, - 1708,1,0,0,0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713,3,162, - 81,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0,1713,1715,1,0,0,0,1714, - 1716,3,224,112,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1717,1, - 0,0,0,1717,1718,5,17,0,0,1718,1719,3,384,192,0,1719,161,1,0,0,0, - 1720,1721,5,238,0,0,1721,1727,5,224,0,0,1722,1723,5,399,0,0,1723, - 1728,3,254,127,0,1724,1725,5,316,0,0,1725,1726,5,399,0,0,1726,1728, - 3,204,102,0,1727,1722,1,0,0,0,1727,1724,1,0,0,0,1728,1729,1,0,0, - 0,1729,1730,5,400,0,0,1730,163,1,0,0,0,1731,1734,3,166,83,0,1732, - 1734,3,168,84,0,1733,1731,1,0,0,0,1733,1732,1,0,0,0,1734,165,1,0, - 0,0,1735,1736,5,42,0,0,1736,1737,5,224,0,0,1737,1738,5,399,0,0,1738, - 1739,3,254,127,0,1739,1740,5,400,0,0,1740,167,1,0,0,0,1741,1742, - 3,170,85,0,1742,1743,3,172,86,0,1743,169,1,0,0,0,1744,1745,5,98, - 0,0,1745,1746,5,224,0,0,1746,1747,5,399,0,0,1747,1748,3,254,127, - 0,1748,1749,5,400,0,0,1749,171,1,0,0,0,1750,1751,5,315,0,0,1751, - 1752,5,224,0,0,1752,1753,5,399,0,0,1753,1754,3,254,127,0,1754,1755, - 5,400,0,0,1755,173,1,0,0,0,1756,1757,5,101,0,0,1757,1759,5,378,0, - 0,1758,1760,3,30,15,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0,1760,1761, - 1,0,0,0,1761,1762,3,486,243,0,1762,175,1,0,0,0,1763,1764,5,58,0, - 0,1764,1765,5,202,0,0,1765,1767,5,378,0,0,1766,1768,3,32,16,0,1767, - 1766,1,0,0,0,1767,1768,1,0,0,0,1768,1769,1,0,0,0,1769,1771,3,488, - 244,0,1770,1772,3,38,19,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, - 1774,1,0,0,0,1773,1775,3,196,98,0,1774,1773,1,0,0,0,1774,1775,1, - 0,0,0,1775,1777,1,0,0,0,1776,1778,3,162,81,0,1777,1776,1,0,0,0,1777, - 1778,1,0,0,0,1778,1780,1,0,0,0,1779,1781,3,164,82,0,1780,1779,1, - 0,0,0,1780,1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784,3,222,111,0, - 1783,1782,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0,0,1785,1787, - 3,246,123,0,1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787,1789,1,0,0, - 0,1788,1790,3,428,214,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790, - 1792,1,0,0,0,1791,1793,3,224,112,0,1792,1791,1,0,0,0,1792,1793,1, - 0,0,0,1793,1794,1,0,0,0,1794,1795,5,17,0,0,1795,1796,3,384,192,0, - 1796,177,1,0,0,0,1797,1798,5,101,0,0,1798,1799,5,202,0,0,1799,1801, - 5,378,0,0,1800,1802,3,30,15,0,1801,1800,1,0,0,0,1801,1802,1,0,0, - 0,1802,1803,1,0,0,0,1803,1804,3,486,243,0,1804,179,1,0,0,0,1805, - 1806,5,58,0,0,1806,1807,5,293,0,0,1807,1808,5,258,0,0,1808,1809, - 3,654,327,0,1809,1811,3,188,94,0,1810,1812,3,190,95,0,1811,1810, - 1,0,0,0,1811,1812,1,0,0,0,1812,1814,1,0,0,0,1813,1815,3,272,136, - 0,1814,1813,1,0,0,0,1814,1815,1,0,0,0,1815,1816,1,0,0,0,1816,1817, - 3,192,96,0,1817,181,1,0,0,0,1818,1819,5,101,0,0,1819,1820,5,293, - 0,0,1820,1821,5,258,0,0,1821,1822,3,654,327,0,1822,183,1,0,0,0,1823, - 1824,5,9,0,0,1824,1825,5,293,0,0,1825,1826,5,258,0,0,1826,1827,3, - 654,327,0,1827,1828,3,186,93,0,1828,185,1,0,0,0,1829,1835,3,188, - 94,0,1830,1835,3,190,95,0,1831,1835,3,272,136,0,1832,1835,3,192, - 96,0,1833,1835,5,115,0,0,1834,1829,1,0,0,0,1834,1830,1,0,0,0,1834, - 1831,1,0,0,0,1834,1832,1,0,0,0,1834,1833,1,0,0,0,1835,187,1,0,0, - 0,1836,1837,5,59,0,0,1837,1852,5,426,0,0,1838,1840,5,111,0,0,1839, - 1841,5,431,0,0,1840,1839,1,0,0,0,1840,1841,1,0,0,0,1841,1842,1,0, - 0,0,1842,1849,3,594,297,0,1843,1847,5,20,0,0,1844,1845,5,223,0,0, - 1845,1847,5,32,0,0,1846,1843,1,0,0,0,1846,1844,1,0,0,0,1847,1848, - 1,0,0,0,1848,1850,5,426,0,0,1849,1846,1,0,0,0,1849,1850,1,0,0,0, - 1850,1852,1,0,0,0,1851,1836,1,0,0,0,1851,1838,1,0,0,0,1852,189,1, - 0,0,0,1853,1854,5,116,0,0,1854,1855,5,17,0,0,1855,1856,5,426,0,0, - 1856,191,1,0,0,0,1857,1859,5,85,0,0,1858,1857,1,0,0,0,1858,1859, - 1,0,0,0,1859,1860,1,0,0,0,1860,1861,5,17,0,0,1861,1862,3,2,1,0,1862, - 193,1,0,0,0,1863,1866,3,654,327,0,1864,1866,5,426,0,0,1865,1863, - 1,0,0,0,1865,1864,1,0,0,0,1866,195,1,0,0,0,1867,1868,5,47,0,0,1868, - 1869,5,426,0,0,1869,197,1,0,0,0,1870,1871,5,183,0,0,1871,1872,5, - 431,0,0,1872,199,1,0,0,0,1873,1874,5,238,0,0,1874,1883,5,32,0,0, - 1875,1878,5,399,0,0,1876,1879,3,202,101,0,1877,1879,3,254,127,0, - 1878,1876,1,0,0,0,1878,1877,1,0,0,0,1879,1884,1,0,0,0,1880,1881, - 5,316,0,0,1881,1882,5,399,0,0,1882,1884,3,204,102,0,1883,1875,1, - 0,0,0,1883,1880,1,0,0,0,1884,1885,1,0,0,0,1885,1886,5,400,0,0,1886, - 201,1,0,0,0,1887,1892,3,320,160,0,1888,1889,5,397,0,0,1889,1891, - 3,320,160,0,1890,1888,1,0,0,0,1891,1894,1,0,0,0,1892,1890,1,0,0, - 0,1892,1893,1,0,0,0,1893,203,1,0,0,0,1894,1892,1,0,0,0,1895,1900, - 3,206,103,0,1896,1897,5,397,0,0,1897,1899,3,206,103,0,1898,1896, - 1,0,0,0,1899,1902,1,0,0,0,1900,1898,1,0,0,0,1900,1901,1,0,0,0,1901, - 205,1,0,0,0,1902,1900,1,0,0,0,1903,1922,3,256,128,0,1904,1909,3, - 686,343,0,1905,1909,3,688,344,0,1906,1909,3,692,346,0,1907,1909, - 3,694,347,0,1908,1904,1,0,0,0,1908,1905,1,0,0,0,1908,1906,1,0,0, - 0,1908,1907,1,0,0,0,1909,1910,1,0,0,0,1910,1911,5,399,0,0,1911,1912, - 3,256,128,0,1912,1913,5,400,0,0,1913,1922,1,0,0,0,1914,1915,7,14, - 0,0,1915,1916,5,399,0,0,1916,1917,5,431,0,0,1917,1918,5,397,0,0, - 1918,1919,3,256,128,0,1919,1920,5,400,0,0,1920,1922,1,0,0,0,1921, - 1903,1,0,0,0,1921,1908,1,0,0,0,1921,1914,1,0,0,0,1922,207,1,0,0, - 0,1923,1924,5,42,0,0,1924,1925,5,32,0,0,1925,1926,5,399,0,0,1926, - 1927,3,254,127,0,1927,1934,5,400,0,0,1928,1929,5,315,0,0,1929,1930, - 5,32,0,0,1930,1931,5,399,0,0,1931,1932,3,266,133,0,1932,1933,5,400, - 0,0,1933,1935,1,0,0,0,1934,1928,1,0,0,0,1934,1935,1,0,0,0,1935,1936, - 1,0,0,0,1936,1937,5,166,0,0,1937,1938,5,431,0,0,1938,1939,5,31,0, - 0,1939,209,1,0,0,0,1940,1941,5,310,0,0,1941,1942,5,32,0,0,1942,1943, - 5,399,0,0,1943,1944,3,254,127,0,1944,1945,5,400,0,0,1945,1946,5, - 224,0,0,1946,1947,5,399,0,0,1947,1948,3,294,147,0,1948,1950,5,400, - 0,0,1949,1951,3,40,20,0,1950,1949,1,0,0,0,1950,1951,1,0,0,0,1951, - 211,1,0,0,0,1952,1955,3,218,109,0,1953,1955,3,220,110,0,1954,1952, - 1,0,0,0,1954,1953,1,0,0,0,1955,213,1,0,0,0,1956,1957,5,266,0,0,1957, - 1958,5,426,0,0,1958,215,1,0,0,0,1959,1960,5,267,0,0,1960,1961,5, - 426,0,0,1961,217,1,0,0,0,1962,1963,5,291,0,0,1963,1964,5,137,0,0, - 1964,1965,5,301,0,0,1965,1969,5,426,0,0,1966,1967,5,387,0,0,1967, - 1968,5,302,0,0,1968,1970,3,226,113,0,1969,1966,1,0,0,0,1969,1970, - 1,0,0,0,1970,219,1,0,0,0,1971,1972,5,291,0,0,1972,1973,5,137,0,0, - 1973,1975,5,87,0,0,1974,1976,3,236,118,0,1975,1974,1,0,0,0,1975, - 1976,1,0,0,0,1976,1978,1,0,0,0,1977,1979,3,238,119,0,1978,1977,1, - 0,0,0,1978,1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982,3,240,120,0, - 1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0,0,1983,1985, - 3,242,121,0,1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1987,1,0,0, - 0,1986,1988,3,244,122,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988, - 221,1,0,0,0,1989,1992,3,220,110,0,1990,1992,3,218,109,0,1991,1989, - 1,0,0,0,1991,1990,1,0,0,0,1992,223,1,0,0,0,1993,1994,5,332,0,0,1994, - 1995,3,226,113,0,1995,225,1,0,0,0,1996,1997,5,399,0,0,1997,1998, - 3,228,114,0,1998,1999,5,400,0,0,1999,227,1,0,0,0,2000,2010,3,232, - 116,0,2001,2006,5,426,0,0,2002,2003,5,397,0,0,2003,2005,5,426,0, - 0,2004,2002,1,0,0,0,2005,2008,1,0,0,0,2006,2004,1,0,0,0,2006,2007, - 1,0,0,0,2007,2010,1,0,0,0,2008,2006,1,0,0,0,2009,2000,1,0,0,0,2009, - 2001,1,0,0,0,2010,229,1,0,0,0,2011,2012,5,399,0,0,2012,2013,3,232, - 116,0,2013,2014,5,400,0,0,2014,231,1,0,0,0,2015,2020,3,234,117,0, - 2016,2017,5,397,0,0,2017,2019,3,234,117,0,2018,2016,1,0,0,0,2019, - 2022,1,0,0,0,2020,2018,1,0,0,0,2020,2021,1,0,0,0,2021,233,1,0,0, - 0,2022,2020,1,0,0,0,2023,2024,5,426,0,0,2024,2025,5,405,0,0,2025, - 2026,5,426,0,0,2026,235,1,0,0,0,2027,2028,5,127,0,0,2028,2029,5, - 334,0,0,2029,2030,5,32,0,0,2030,2034,5,426,0,0,2031,2032,5,110,0, - 0,2032,2033,5,32,0,0,2033,2035,5,426,0,0,2034,2031,1,0,0,0,2034, - 2035,1,0,0,0,2035,237,1,0,0,0,2036,2037,5,44,0,0,2037,2038,5,169, - 0,0,2038,2039,5,334,0,0,2039,2040,5,32,0,0,2040,2041,5,426,0,0,2041, - 239,1,0,0,0,2042,2043,5,198,0,0,2043,2044,5,174,0,0,2044,2045,5, - 334,0,0,2045,2046,5,32,0,0,2046,2047,5,426,0,0,2047,241,1,0,0,0, - 2048,2049,5,186,0,0,2049,2050,5,334,0,0,2050,2051,5,32,0,0,2051, - 2052,5,426,0,0,2052,243,1,0,0,0,2053,2054,5,219,0,0,2054,2055,5, - 85,0,0,2055,2056,5,17,0,0,2056,2057,5,426,0,0,2057,245,1,0,0,0,2058, - 2059,5,321,0,0,2059,2060,5,17,0,0,2060,2061,5,160,0,0,2061,2062, - 5,426,0,0,2062,2063,5,233,0,0,2063,2068,5,426,0,0,2064,2065,5,159, - 0,0,2065,2066,5,426,0,0,2066,2067,5,232,0,0,2067,2069,5,426,0,0, - 2068,2064,1,0,0,0,2068,2069,1,0,0,0,2069,2100,1,0,0,0,2070,2071, - 5,321,0,0,2071,2072,5,32,0,0,2072,2076,5,426,0,0,2073,2074,5,387, - 0,0,2074,2075,5,302,0,0,2075,2077,3,226,113,0,2076,2073,1,0,0,0, - 2076,2077,1,0,0,0,2077,2081,1,0,0,0,2078,2079,5,321,0,0,2079,2080, - 5,17,0,0,2080,2082,3,654,327,0,2081,2078,1,0,0,0,2081,2082,1,0,0, - 0,2082,2100,1,0,0,0,2083,2084,5,321,0,0,2084,2085,5,32,0,0,2085, - 2089,3,654,327,0,2086,2087,5,387,0,0,2087,2088,5,302,0,0,2088,2090, - 3,226,113,0,2089,2086,1,0,0,0,2089,2090,1,0,0,0,2090,2094,1,0,0, - 0,2091,2092,5,321,0,0,2092,2093,5,17,0,0,2093,2095,3,654,327,0,2094, - 2091,1,0,0,0,2094,2095,1,0,0,0,2095,2100,1,0,0,0,2096,2097,5,321, - 0,0,2097,2098,5,17,0,0,2098,2100,3,654,327,0,2099,2058,1,0,0,0,2099, - 2070,1,0,0,0,2099,2083,1,0,0,0,2099,2096,1,0,0,0,2100,247,1,0,0, - 0,2101,2106,3,314,157,0,2102,2103,5,397,0,0,2103,2105,3,314,157, - 0,2104,2102,1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107, - 1,0,0,0,2107,249,1,0,0,0,2108,2106,1,0,0,0,2109,2114,3,316,158,0, - 2110,2111,5,397,0,0,2111,2113,3,316,158,0,2112,2110,1,0,0,0,2113, - 2116,1,0,0,0,2114,2112,1,0,0,0,2114,2115,1,0,0,0,2115,251,1,0,0, - 0,2116,2114,1,0,0,0,2117,2122,3,344,172,0,2118,2119,5,397,0,0,2119, - 2121,3,344,172,0,2120,2118,1,0,0,0,2121,2124,1,0,0,0,2122,2120,1, - 0,0,0,2122,2123,1,0,0,0,2123,253,1,0,0,0,2124,2122,1,0,0,0,2125, - 2130,3,256,128,0,2126,2127,5,397,0,0,2127,2129,3,256,128,0,2128, - 2126,1,0,0,0,2129,2132,1,0,0,0,2130,2128,1,0,0,0,2130,2131,1,0,0, - 0,2131,255,1,0,0,0,2132,2130,1,0,0,0,2133,2137,3,706,353,0,2134, - 2135,4,128,0,0,2135,2137,3,702,351,0,2136,2133,1,0,0,0,2136,2134, - 1,0,0,0,2137,257,1,0,0,0,2138,2139,3,704,352,0,2139,259,1,0,0,0, - 2140,2144,3,706,353,0,2141,2142,4,130,1,0,2142,2144,3,702,351,0, - 2143,2140,1,0,0,0,2143,2141,1,0,0,0,2144,261,1,0,0,0,2145,2146,3, - 654,327,0,2146,263,1,0,0,0,2147,2157,3,256,128,0,2148,2153,5,395, - 0,0,2149,2154,5,104,0,0,2150,2154,5,175,0,0,2151,2154,5,375,0,0, - 2152,2154,3,654,327,0,2153,2149,1,0,0,0,2153,2150,1,0,0,0,2153,2151, - 1,0,0,0,2153,2152,1,0,0,0,2154,2156,1,0,0,0,2155,2148,1,0,0,0,2156, - 2159,1,0,0,0,2157,2155,1,0,0,0,2157,2158,1,0,0,0,2158,265,1,0,0, - 0,2159,2157,1,0,0,0,2160,2165,3,306,153,0,2161,2162,5,397,0,0,2162, - 2164,3,306,153,0,2163,2161,1,0,0,0,2164,2167,1,0,0,0,2165,2163,1, - 0,0,0,2165,2166,1,0,0,0,2166,267,1,0,0,0,2167,2165,1,0,0,0,2168, - 2169,5,399,0,0,2169,2170,3,254,127,0,2170,2171,5,400,0,0,2171,269, - 1,0,0,0,2172,2174,3,272,136,0,2173,2175,3,274,137,0,2174,2173,1, - 0,0,0,2174,2175,1,0,0,0,2175,2178,1,0,0,0,2176,2178,3,276,138,0, - 2177,2172,1,0,0,0,2177,2176,1,0,0,0,2178,271,1,0,0,0,2179,2182,3, - 682,341,0,2180,2182,3,684,342,0,2181,2179,1,0,0,0,2181,2180,1,0, - 0,0,2182,273,1,0,0,0,2183,2184,7,15,0,0,2184,275,1,0,0,0,2185,2189, - 5,109,0,0,2186,2187,5,216,0,0,2187,2189,5,109,0,0,2188,2185,1,0, - 0,0,2188,2186,1,0,0,0,2189,277,1,0,0,0,2190,2191,7,16,0,0,2191,279, - 1,0,0,0,2192,2193,5,55,0,0,2193,2195,3,654,327,0,2194,2192,1,0,0, - 0,2194,2195,1,0,0,0,2195,2196,1,0,0,0,2196,2198,3,284,142,0,2197, - 2199,3,340,170,0,2198,2197,1,0,0,0,2198,2199,1,0,0,0,2199,281,1, - 0,0,0,2200,2201,5,55,0,0,2201,2202,3,654,327,0,2202,2204,3,284,142, - 0,2203,2205,3,342,171,0,2204,2203,1,0,0,0,2204,2205,1,0,0,0,2205, - 283,1,0,0,0,2206,2209,3,286,143,0,2207,2209,3,288,144,0,2208,2206, - 1,0,0,0,2208,2207,1,0,0,0,2209,285,1,0,0,0,2210,2211,3,338,169,0, - 2211,2212,3,268,134,0,2212,287,1,0,0,0,2213,2214,5,40,0,0,2214,2215, - 5,399,0,0,2215,2216,3,596,298,0,2216,2217,5,400,0,0,2217,289,1,0, - 0,0,2218,2219,5,55,0,0,2219,2221,3,654,327,0,2220,2218,1,0,0,0,2220, - 2221,1,0,0,0,2221,2222,1,0,0,0,2222,2223,5,136,0,0,2223,2224,5,173, - 0,0,2224,2225,3,268,134,0,2225,2226,5,269,0,0,2226,2227,3,482,241, - 0,2227,2229,3,268,134,0,2228,2230,3,340,170,0,2229,2228,1,0,0,0, - 2229,2230,1,0,0,0,2230,291,1,0,0,0,2231,2232,5,55,0,0,2232,2233, - 3,654,327,0,2233,2234,5,136,0,0,2234,2235,5,173,0,0,2235,2236,3, - 268,134,0,2236,2237,5,269,0,0,2237,2238,3,482,241,0,2238,2240,3, - 268,134,0,2239,2241,3,342,171,0,2240,2239,1,0,0,0,2240,2241,1,0, - 0,0,2241,293,1,0,0,0,2242,2245,3,300,150,0,2243,2245,3,296,148,0, - 2244,2242,1,0,0,0,2244,2243,1,0,0,0,2245,295,1,0,0,0,2246,2251,3, - 298,149,0,2247,2248,5,397,0,0,2248,2250,3,298,149,0,2249,2247,1, - 0,0,0,2250,2253,1,0,0,0,2251,2249,1,0,0,0,2251,2252,1,0,0,0,2252, - 297,1,0,0,0,2253,2251,1,0,0,0,2254,2255,5,399,0,0,2255,2256,3,300, - 150,0,2256,2257,5,400,0,0,2257,299,1,0,0,0,2258,2263,3,588,294,0, - 2259,2260,5,397,0,0,2260,2262,3,588,294,0,2261,2259,1,0,0,0,2262, - 2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264,1,0,0,0,2264,301,1,0,0, - 0,2265,2263,1,0,0,0,2266,2267,7,17,0,0,2267,303,1,0,0,0,2268,2269, - 5,220,0,0,2269,2270,7,18,0,0,2270,305,1,0,0,0,2271,2273,3,256,128, - 0,2272,2274,3,302,151,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274, - 2276,1,0,0,0,2275,2277,3,304,152,0,2276,2275,1,0,0,0,2276,2277,1, - 0,0,0,2277,307,1,0,0,0,2278,2283,3,310,155,0,2279,2280,5,397,0,0, - 2280,2282,3,310,155,0,2281,2279,1,0,0,0,2282,2285,1,0,0,0,2283,2281, - 1,0,0,0,2283,2284,1,0,0,0,2284,309,1,0,0,0,2285,2283,1,0,0,0,2286, - 2289,3,262,131,0,2287,2288,5,47,0,0,2288,2290,5,426,0,0,2289,2287, - 1,0,0,0,2289,2290,1,0,0,0,2290,311,1,0,0,0,2291,2294,3,256,128,0, - 2292,2294,3,596,298,0,2293,2291,1,0,0,0,2293,2292,1,0,0,0,2294,2296, - 1,0,0,0,2295,2297,3,302,151,0,2296,2295,1,0,0,0,2296,2297,1,0,0, - 0,2297,2299,1,0,0,0,2298,2300,3,304,152,0,2299,2298,1,0,0,0,2299, - 2300,1,0,0,0,2300,313,1,0,0,0,2301,2302,3,262,131,0,2302,2305,3, - 346,173,0,2303,2304,5,47,0,0,2304,2306,5,426,0,0,2305,2303,1,0,0, - 0,2305,2306,1,0,0,0,2306,315,1,0,0,0,2307,2310,3,318,159,0,2308, - 2310,3,320,160,0,2309,2307,1,0,0,0,2309,2308,1,0,0,0,2310,317,1, - 0,0,0,2311,2314,3,290,145,0,2312,2314,3,280,140,0,2313,2311,1,0, - 0,0,2313,2312,1,0,0,0,2314,319,1,0,0,0,2315,2316,3,262,131,0,2316, - 2318,3,346,173,0,2317,2319,3,322,161,0,2318,2317,1,0,0,0,2318,2319, - 1,0,0,0,2319,2322,1,0,0,0,2320,2321,5,47,0,0,2321,2323,5,426,0,0, - 2322,2320,1,0,0,0,2322,2323,1,0,0,0,2323,321,1,0,0,0,2324,2327,3, - 324,162,0,2325,2327,3,326,163,0,2326,2324,1,0,0,0,2326,2325,1,0, - 0,0,2327,323,1,0,0,0,2328,2329,5,55,0,0,2329,2331,3,654,327,0,2330, - 2328,1,0,0,0,2330,2331,1,0,0,0,2331,2332,1,0,0,0,2332,2333,5,269, - 0,0,2333,2334,3,482,241,0,2334,2335,5,399,0,0,2335,2336,3,256,128, - 0,2336,2338,5,400,0,0,2337,2339,3,340,170,0,2338,2337,1,0,0,0,2338, - 2339,1,0,0,0,2339,325,1,0,0,0,2340,2341,5,55,0,0,2341,2343,3,654, - 327,0,2342,2340,1,0,0,0,2342,2343,1,0,0,0,2343,2344,1,0,0,0,2344, - 2346,3,334,167,0,2345,2347,3,340,170,0,2346,2345,1,0,0,0,2346,2347, - 1,0,0,0,2347,327,1,0,0,0,2348,2351,3,330,165,0,2349,2351,3,332,166, - 0,2350,2348,1,0,0,0,2350,2349,1,0,0,0,2351,329,1,0,0,0,2352,2353, - 5,55,0,0,2353,2355,3,654,327,0,2354,2352,1,0,0,0,2354,2355,1,0,0, - 0,2355,2356,1,0,0,0,2356,2357,5,269,0,0,2357,2358,3,482,241,0,2358, - 2359,5,399,0,0,2359,2360,3,256,128,0,2360,2362,5,400,0,0,2361,2363, - 3,342,171,0,2362,2361,1,0,0,0,2362,2363,1,0,0,0,2363,331,1,0,0,0, - 2364,2365,5,55,0,0,2365,2367,3,654,327,0,2366,2364,1,0,0,0,2366, - 2367,1,0,0,0,2367,2368,1,0,0,0,2368,2370,3,334,167,0,2369,2371,3, - 342,171,0,2370,2369,1,0,0,0,2370,2371,1,0,0,0,2371,333,1,0,0,0,2372, - 2373,5,216,0,0,2373,2379,5,219,0,0,2374,2375,5,83,0,0,2375,2379, - 3,336,168,0,2376,2379,3,288,144,0,2377,2379,3,338,169,0,2378,2372, - 1,0,0,0,2378,2374,1,0,0,0,2378,2376,1,0,0,0,2378,2377,1,0,0,0,2379, - 335,1,0,0,0,2380,2384,3,588,294,0,2381,2384,3,566,283,0,2382,2384, - 3,576,288,0,2383,2380,1,0,0,0,2383,2381,1,0,0,0,2383,2382,1,0,0, - 0,2384,337,1,0,0,0,2385,2386,5,251,0,0,2386,2389,5,173,0,0,2387, - 2389,5,358,0,0,2388,2385,1,0,0,0,2388,2387,1,0,0,0,2389,339,1,0, - 0,0,2390,2392,3,270,135,0,2391,2393,3,278,139,0,2392,2391,1,0,0, - 0,2392,2393,1,0,0,0,2393,341,1,0,0,0,2394,2396,3,270,135,0,2395, - 2397,3,278,139,0,2396,2395,1,0,0,0,2396,2397,1,0,0,0,2397,343,1, - 0,0,0,2398,2399,3,262,131,0,2399,2400,5,396,0,0,2400,2403,3,346, - 173,0,2401,2402,5,47,0,0,2402,2404,5,426,0,0,2403,2401,1,0,0,0,2403, - 2404,1,0,0,0,2404,345,1,0,0,0,2405,2406,3,350,175,0,2406,347,1,0, - 0,0,2407,2412,3,346,173,0,2408,2409,5,397,0,0,2409,2411,3,346,173, - 0,2410,2408,1,0,0,0,2411,2414,1,0,0,0,2412,2410,1,0,0,0,2412,2413, - 1,0,0,0,2413,349,1,0,0,0,2414,2412,1,0,0,0,2415,2421,3,352,176,0, - 2416,2421,3,354,177,0,2417,2421,3,356,178,0,2418,2421,3,358,179, - 0,2419,2421,3,360,180,0,2420,2415,1,0,0,0,2420,2416,1,0,0,0,2420, - 2417,1,0,0,0,2420,2418,1,0,0,0,2420,2419,1,0,0,0,2421,351,1,0,0, - 0,2422,2460,5,340,0,0,2423,2460,5,311,0,0,2424,2460,5,162,0,0,2425, - 2460,5,163,0,0,2426,2460,5,26,0,0,2427,2460,5,28,0,0,2428,2460,5, - 131,0,0,2429,2460,5,264,0,0,2430,2432,5,100,0,0,2431,2433,5,248, - 0,0,2432,2431,1,0,0,0,2432,2433,1,0,0,0,2433,2460,1,0,0,0,2434,2460, - 5,71,0,0,2435,2460,5,72,0,0,2436,2460,5,337,0,0,2437,2460,5,338, - 0,0,2438,2439,5,337,0,0,2439,2440,5,387,0,0,2440,2441,5,188,0,0, - 2441,2442,5,336,0,0,2442,2460,5,394,0,0,2443,2460,5,323,0,0,2444, - 2460,5,27,0,0,2445,2453,3,700,350,0,2446,2447,5,399,0,0,2447,2450, - 5,431,0,0,2448,2449,5,397,0,0,2449,2451,5,431,0,0,2450,2448,1,0, - 0,0,2450,2451,1,0,0,0,2451,2452,1,0,0,0,2452,2454,5,400,0,0,2453, - 2446,1,0,0,0,2453,2454,1,0,0,0,2454,2460,1,0,0,0,2455,2456,7,19, - 0,0,2456,2457,5,399,0,0,2457,2458,5,431,0,0,2458,2460,5,400,0,0, - 2459,2422,1,0,0,0,2459,2423,1,0,0,0,2459,2424,1,0,0,0,2459,2425, - 1,0,0,0,2459,2426,1,0,0,0,2459,2427,1,0,0,0,2459,2428,1,0,0,0,2459, - 2429,1,0,0,0,2459,2430,1,0,0,0,2459,2434,1,0,0,0,2459,2435,1,0,0, - 0,2459,2436,1,0,0,0,2459,2437,1,0,0,0,2459,2438,1,0,0,0,2459,2443, - 1,0,0,0,2459,2444,1,0,0,0,2459,2445,1,0,0,0,2459,2455,1,0,0,0,2460, - 353,1,0,0,0,2461,2462,5,16,0,0,2462,2463,5,409,0,0,2463,2464,3,350, - 175,0,2464,2465,5,411,0,0,2465,355,1,0,0,0,2466,2467,5,324,0,0,2467, - 2468,5,409,0,0,2468,2469,3,252,126,0,2469,2470,5,411,0,0,2470,357, - 1,0,0,0,2471,2472,5,198,0,0,2472,2473,5,409,0,0,2473,2474,3,352, - 176,0,2474,2475,5,397,0,0,2475,2476,3,350,175,0,2476,2477,5,411, - 0,0,2477,359,1,0,0,0,2478,2479,5,357,0,0,2479,2480,5,409,0,0,2480, - 2481,3,348,174,0,2481,2482,5,411,0,0,2482,361,1,0,0,0,2483,2485, - 7,20,0,0,2484,2486,7,21,0,0,2485,2484,1,0,0,0,2485,2486,1,0,0,0, - 2486,363,1,0,0,0,2487,2489,3,368,184,0,2488,2487,1,0,0,0,2488,2489, - 1,0,0,0,2489,2490,1,0,0,0,2490,2491,3,366,183,0,2491,365,1,0,0,0, - 2492,2495,3,372,186,0,2493,2495,3,376,188,0,2494,2492,1,0,0,0,2494, - 2493,1,0,0,0,2495,367,1,0,0,0,2496,2497,5,387,0,0,2497,2502,3,370, - 185,0,2498,2499,5,397,0,0,2499,2501,3,370,185,0,2500,2498,1,0,0, - 0,2501,2504,1,0,0,0,2502,2500,1,0,0,0,2502,2503,1,0,0,0,2503,369, - 1,0,0,0,2504,2502,1,0,0,0,2505,2510,3,654,327,0,2506,2507,5,399, - 0,0,2507,2508,3,254,127,0,2508,2509,5,400,0,0,2509,2511,1,0,0,0, - 2510,2506,1,0,0,0,2510,2511,1,0,0,0,2511,2512,1,0,0,0,2512,2513, - 5,17,0,0,2513,2514,5,399,0,0,2514,2515,3,364,182,0,2515,2516,5,400, - 0,0,2516,371,1,0,0,0,2517,2523,3,374,187,0,2518,2519,3,362,181,0, - 2519,2520,3,374,187,0,2520,2522,1,0,0,0,2521,2518,1,0,0,0,2522,2525, - 1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,373,1,0,0,0,2525, - 2523,1,0,0,0,2526,2527,3,452,226,0,2527,2528,3,386,193,0,2528,2530, - 3,508,254,0,2529,2531,3,466,233,0,2530,2529,1,0,0,0,2530,2531,1, - 0,0,0,2531,2533,1,0,0,0,2532,2534,3,500,250,0,2533,2532,1,0,0,0, - 2533,2534,1,0,0,0,2534,2536,1,0,0,0,2535,2537,3,534,267,0,2536,2535, - 1,0,0,0,2536,2537,1,0,0,0,2537,2539,1,0,0,0,2538,2540,3,542,271, - 0,2539,2538,1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541,2543, - 3,526,263,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0, - 0,2544,2546,3,544,272,0,2545,2544,1,0,0,0,2545,2546,1,0,0,0,2546, - 2548,1,0,0,0,2547,2549,3,556,278,0,2548,2547,1,0,0,0,2548,2549,1, - 0,0,0,2549,2551,1,0,0,0,2550,2552,3,560,280,0,2551,2550,1,0,0,0, - 2551,2552,1,0,0,0,2552,2554,1,0,0,0,2553,2555,3,562,281,0,2554,2553, - 1,0,0,0,2554,2555,1,0,0,0,2555,2557,1,0,0,0,2556,2558,3,564,282, - 0,2557,2556,1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559,2561, - 3,390,195,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2598,1,0,0, - 0,2562,2563,3,452,226,0,2563,2565,3,508,254,0,2564,2566,3,466,233, - 0,2565,2564,1,0,0,0,2565,2566,1,0,0,0,2566,2568,1,0,0,0,2567,2569, - 3,500,250,0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0, - 0,2570,2572,3,534,267,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572, - 2574,1,0,0,0,2573,2575,3,542,271,0,2574,2573,1,0,0,0,2574,2575,1, - 0,0,0,2575,2577,1,0,0,0,2576,2578,3,526,263,0,2577,2576,1,0,0,0, - 2577,2578,1,0,0,0,2578,2580,1,0,0,0,2579,2581,3,544,272,0,2580,2579, - 1,0,0,0,2580,2581,1,0,0,0,2581,2583,1,0,0,0,2582,2584,3,556,278, - 0,2583,2582,1,0,0,0,2583,2584,1,0,0,0,2584,2586,1,0,0,0,2585,2587, - 3,560,280,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2589,1,0,0, - 0,2588,2590,3,562,281,0,2589,2588,1,0,0,0,2589,2590,1,0,0,0,2590, - 2592,1,0,0,0,2591,2593,3,564,282,0,2592,2591,1,0,0,0,2592,2593,1, - 0,0,0,2593,2595,1,0,0,0,2594,2596,3,390,195,0,2595,2594,1,0,0,0, - 2595,2596,1,0,0,0,2596,2598,1,0,0,0,2597,2526,1,0,0,0,2597,2562, - 1,0,0,0,2598,375,1,0,0,0,2599,2600,3,386,193,0,2600,2601,3,380,190, - 0,2601,2604,1,0,0,0,2602,2604,3,380,190,0,2603,2599,1,0,0,0,2603, - 2602,1,0,0,0,2604,377,1,0,0,0,2605,2607,3,508,254,0,2606,2608,3, - 452,226,0,2607,2606,1,0,0,0,2607,2608,1,0,0,0,2608,2610,1,0,0,0, - 2609,2611,3,500,250,0,2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2613, - 1,0,0,0,2612,2614,3,534,267,0,2613,2612,1,0,0,0,2613,2614,1,0,0, - 0,2614,2616,1,0,0,0,2615,2617,3,542,271,0,2616,2615,1,0,0,0,2616, - 2617,1,0,0,0,2617,2619,1,0,0,0,2618,2620,3,526,263,0,2619,2618,1, - 0,0,0,2619,2620,1,0,0,0,2620,2622,1,0,0,0,2621,2623,3,544,272,0, - 2622,2621,1,0,0,0,2622,2623,1,0,0,0,2623,2630,1,0,0,0,2624,2625, - 5,399,0,0,2625,2626,3,380,190,0,2626,2627,5,400,0,0,2627,2630,1, - 0,0,0,2628,2630,3,502,251,0,2629,2605,1,0,0,0,2629,2624,1,0,0,0, - 2629,2628,1,0,0,0,2630,379,1,0,0,0,2631,2633,3,378,189,0,2632,2634, - 3,382,191,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,2636,1,0,0, - 0,2635,2637,3,556,278,0,2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637, - 2639,1,0,0,0,2638,2640,3,560,280,0,2639,2638,1,0,0,0,2639,2640,1, - 0,0,0,2640,2642,1,0,0,0,2641,2643,3,562,281,0,2642,2641,1,0,0,0, - 2642,2643,1,0,0,0,2643,2645,1,0,0,0,2644,2646,3,564,282,0,2645,2644, - 1,0,0,0,2645,2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,390,195, - 0,2648,2647,1,0,0,0,2648,2649,1,0,0,0,2649,381,1,0,0,0,2650,2651, - 3,362,181,0,2651,2652,3,378,189,0,2652,2654,1,0,0,0,2653,2650,1, - 0,0,0,2654,2655,1,0,0,0,2655,2653,1,0,0,0,2655,2656,1,0,0,0,2656, - 383,1,0,0,0,2657,2659,3,368,184,0,2658,2657,1,0,0,0,2658,2659,1, - 0,0,0,2659,2660,1,0,0,0,2660,2661,3,380,190,0,2661,385,1,0,0,0,2662, - 2679,5,161,0,0,2663,2664,5,235,0,0,2664,2666,3,388,194,0,2665,2667, - 3,32,16,0,2666,2665,1,0,0,0,2666,2667,1,0,0,0,2667,2680,1,0,0,0, - 2668,2670,5,166,0,0,2669,2671,5,329,0,0,2670,2669,1,0,0,0,2670,2671, - 1,0,0,0,2671,2672,1,0,0,0,2672,2677,3,640,320,0,2673,2674,5,399, - 0,0,2674,2675,3,254,127,0,2675,2676,5,400,0,0,2676,2678,1,0,0,0, - 2677,2673,1,0,0,0,2677,2678,1,0,0,0,2678,2680,1,0,0,0,2679,2663, - 1,0,0,0,2679,2668,1,0,0,0,2680,387,1,0,0,0,2681,2683,5,188,0,0,2682, - 2681,1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2685,5,93, - 0,0,2685,2687,5,426,0,0,2686,2688,3,222,111,0,2687,2686,1,0,0,0, - 2687,2688,1,0,0,0,2688,2690,1,0,0,0,2689,2691,3,246,123,0,2690,2689, - 1,0,0,0,2690,2691,1,0,0,0,2691,2695,1,0,0,0,2692,2693,5,329,0,0, - 2693,2695,3,640,320,0,2694,2682,1,0,0,0,2694,2692,1,0,0,0,2695,389, - 1,0,0,0,2696,2705,5,185,0,0,2697,2698,5,431,0,0,2698,2700,5,397, - 0,0,2699,2697,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0,0,0,2701,2706, - 5,431,0,0,2702,2703,5,431,0,0,2703,2704,5,223,0,0,2704,2706,5,431, - 0,0,2705,2699,1,0,0,0,2705,2702,1,0,0,0,2706,391,1,0,0,0,2707,2708, - 3,256,128,0,2708,2709,5,405,0,0,2709,2710,3,394,197,0,2710,393,1, - 0,0,0,2711,2714,5,83,0,0,2712,2714,3,606,303,0,2713,2711,1,0,0,0, - 2713,2712,1,0,0,0,2714,395,1,0,0,0,2715,2716,5,304,0,0,2716,2721, - 3,392,196,0,2717,2718,5,397,0,0,2718,2720,3,392,196,0,2719,2717, - 1,0,0,0,2720,2723,1,0,0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722, - 397,1,0,0,0,2723,2721,1,0,0,0,2724,2725,5,318,0,0,2725,2734,5,344, - 0,0,2726,2731,3,400,200,0,2727,2728,5,397,0,0,2728,2730,3,400,200, - 0,2729,2727,1,0,0,0,2730,2733,1,0,0,0,2731,2729,1,0,0,0,2731,2732, - 1,0,0,0,2732,2735,1,0,0,0,2733,2731,1,0,0,0,2734,2726,1,0,0,0,2734, - 2735,1,0,0,0,2735,2748,1,0,0,0,2736,2738,5,48,0,0,2737,2739,5,389, - 0,0,2738,2737,1,0,0,0,2738,2739,1,0,0,0,2739,2748,1,0,0,0,2740,2742, - 5,289,0,0,2741,2743,5,389,0,0,2742,2741,1,0,0,0,2742,2743,1,0,0, - 0,2743,2748,1,0,0,0,2744,2745,5,304,0,0,2745,2746,5,22,0,0,2746, - 2748,7,22,0,0,2747,2724,1,0,0,0,2747,2736,1,0,0,0,2747,2740,1,0, - 0,0,2747,2744,1,0,0,0,2748,399,1,0,0,0,2749,2750,5,168,0,0,2750, - 2751,5,182,0,0,2751,2755,5,312,0,0,2752,2753,5,261,0,0,2753,2755, - 7,23,0,0,2754,2749,1,0,0,0,2754,2752,1,0,0,0,2755,401,1,0,0,0,2756, - 2759,3,406,203,0,2757,2759,3,408,204,0,2758,2756,1,0,0,0,2758,2757, - 1,0,0,0,2759,2762,1,0,0,0,2760,2758,1,0,0,0,2760,2761,1,0,0,0,2761, - 2764,1,0,0,0,2762,2760,1,0,0,0,2763,2765,3,404,202,0,2764,2763,1, - 0,0,0,2764,2765,1,0,0,0,2765,403,1,0,0,0,2766,2767,5,383,0,0,2767, - 2768,5,216,0,0,2768,2771,5,201,0,0,2769,2770,5,11,0,0,2770,2772, - 3,596,298,0,2771,2769,1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0, - 0,2773,2774,5,335,0,0,2774,2776,5,161,0,0,2775,2777,3,268,134,0, - 2776,2775,1,0,0,0,2776,2777,1,0,0,0,2777,2778,1,0,0,0,2778,2779, - 5,374,0,0,2779,2780,3,552,276,0,2780,405,1,0,0,0,2781,2782,5,383, - 0,0,2782,2783,5,201,0,0,2783,2784,5,11,0,0,2784,2785,3,596,298,0, - 2785,2789,5,335,0,0,2786,2787,5,365,0,0,2787,2790,3,396,198,0,2788, - 2790,5,86,0,0,2789,2786,1,0,0,0,2789,2788,1,0,0,0,2790,407,1,0,0, - 0,2791,2792,5,383,0,0,2792,2793,5,201,0,0,2793,2797,5,335,0,0,2794, - 2795,5,365,0,0,2795,2798,3,396,198,0,2796,2798,5,86,0,0,2797,2794, - 1,0,0,0,2797,2796,1,0,0,0,2798,409,1,0,0,0,2799,2800,5,246,0,0,2800, - 2801,5,426,0,0,2801,411,1,0,0,0,2802,2803,5,352,0,0,2803,2804,5, - 426,0,0,2804,413,1,0,0,0,2805,2806,5,320,0,0,2806,2807,5,426,0,0, - 2807,415,1,0,0,0,2808,2839,5,9,0,0,2809,2810,5,329,0,0,2810,2811, - 3,482,241,0,2811,2812,3,418,209,0,2812,2840,1,0,0,0,2813,2814,5, - 378,0,0,2814,2816,3,486,243,0,2815,2817,5,17,0,0,2816,2815,1,0,0, - 0,2816,2817,1,0,0,0,2817,2818,1,0,0,0,2818,2819,3,422,211,0,2819, - 2840,1,0,0,0,2820,2821,5,202,0,0,2821,2822,5,378,0,0,2822,2826,3, - 486,243,0,2823,2827,3,36,18,0,2824,2827,3,38,19,0,2825,2827,5,265, - 0,0,2826,2823,1,0,0,0,2826,2824,1,0,0,0,2826,2825,1,0,0,0,2827,2840, - 1,0,0,0,2828,2829,3,70,35,0,2829,2830,3,424,212,0,2830,2840,1,0, - 0,0,2831,2832,5,69,0,0,2832,2840,3,426,213,0,2833,2834,5,155,0,0, - 2834,2835,3,654,327,0,2835,2836,5,224,0,0,2836,2837,3,640,320,0, - 2837,2838,5,265,0,0,2838,2840,1,0,0,0,2839,2809,1,0,0,0,2839,2813, - 1,0,0,0,2839,2820,1,0,0,0,2839,2828,1,0,0,0,2839,2831,1,0,0,0,2839, - 2833,1,0,0,0,2840,417,1,0,0,0,2841,2842,5,274,0,0,2842,2843,5,341, - 0,0,2843,2931,3,484,242,0,2844,2845,5,102,0,0,2845,2931,5,239,0, - 0,2846,2931,3,430,215,0,2847,2849,5,4,0,0,2848,2850,3,32,16,0,2849, - 2848,1,0,0,0,2849,2850,1,0,0,0,2850,2855,1,0,0,0,2851,2853,3,642, - 321,0,2852,2854,3,428,214,0,2853,2852,1,0,0,0,2853,2854,1,0,0,0, - 2854,2856,1,0,0,0,2855,2851,1,0,0,0,2856,2857,1,0,0,0,2857,2855, - 1,0,0,0,2857,2858,1,0,0,0,2858,2931,1,0,0,0,2859,2863,5,342,0,0, - 2860,2862,3,642,321,0,2861,2860,1,0,0,0,2862,2865,1,0,0,0,2863,2861, - 1,0,0,0,2863,2864,1,0,0,0,2864,2931,1,0,0,0,2865,2863,1,0,0,0,2866, - 2870,5,15,0,0,2867,2869,3,642,321,0,2868,2867,1,0,0,0,2869,2872, - 1,0,0,0,2870,2868,1,0,0,0,2870,2871,1,0,0,0,2871,2931,1,0,0,0,2872, - 2870,1,0,0,0,2873,2877,5,353,0,0,2874,2876,3,642,321,0,2875,2874, - 1,0,0,0,2876,2879,1,0,0,0,2877,2875,1,0,0,0,2877,2878,1,0,0,0,2878, - 2931,1,0,0,0,2879,2877,1,0,0,0,2880,2881,5,304,0,0,2881,2882,5,332, - 0,0,2882,2931,3,226,113,0,2883,2884,5,363,0,0,2884,2886,5,332,0, - 0,2885,2887,3,30,15,0,2886,2885,1,0,0,0,2886,2887,1,0,0,0,2887,2888, - 1,0,0,0,2888,2931,3,226,113,0,2889,2931,3,210,105,0,2890,2893,5, - 216,0,0,2891,2894,5,310,0,0,2892,2894,3,40,20,0,2893,2891,1,0,0, - 0,2893,2892,1,0,0,0,2894,2931,1,0,0,0,2895,2896,5,113,0,0,2896,2897, - 3,642,321,0,2897,2898,5,387,0,0,2898,2899,5,329,0,0,2899,2900,3, - 482,241,0,2900,2931,1,0,0,0,2901,2902,5,237,0,0,2902,2903,5,45,0, - 0,2903,2904,5,399,0,0,2904,2905,3,314,157,0,2905,2906,5,400,0,0, - 2906,2931,1,0,0,0,2907,2908,5,101,0,0,2908,2909,5,55,0,0,2909,2931, - 3,654,327,0,2910,2913,5,4,0,0,2911,2914,3,292,146,0,2912,2914,3, - 282,141,0,2913,2911,1,0,0,0,2913,2912,1,0,0,0,2914,2931,1,0,0,0, - 2915,2917,3,642,321,0,2916,2915,1,0,0,0,2916,2917,1,0,0,0,2917,2918, - 1,0,0,0,2918,2931,3,420,210,0,2919,2920,5,304,0,0,2920,2921,5,236, - 0,0,2921,2931,3,126,63,0,2922,2923,5,304,0,0,2923,2924,5,237,0,0, - 2924,2925,5,316,0,0,2925,2926,5,399,0,0,2926,2927,3,204,102,0,2927, - 2928,5,400,0,0,2928,2931,1,0,0,0,2929,2931,3,434,217,0,2930,2841, - 1,0,0,0,2930,2844,1,0,0,0,2930,2846,1,0,0,0,2930,2847,1,0,0,0,2930, - 2859,1,0,0,0,2930,2866,1,0,0,0,2930,2873,1,0,0,0,2930,2880,1,0,0, - 0,2930,2883,1,0,0,0,2930,2889,1,0,0,0,2930,2890,1,0,0,0,2930,2895, - 1,0,0,0,2930,2901,1,0,0,0,2930,2907,1,0,0,0,2930,2910,1,0,0,0,2930, - 2916,1,0,0,0,2930,2919,1,0,0,0,2930,2922,1,0,0,0,2930,2929,1,0,0, - 0,2931,419,1,0,0,0,2932,2933,5,304,0,0,2933,2934,5,129,0,0,2934, - 3065,3,436,218,0,2935,2936,5,304,0,0,2936,2937,5,189,0,0,2937,3065, - 5,426,0,0,2938,3065,5,53,0,0,2939,2949,5,304,0,0,2940,2941,5,301, - 0,0,2941,2945,5,426,0,0,2942,2943,5,387,0,0,2943,2944,5,302,0,0, - 2944,2946,3,226,113,0,2945,2942,1,0,0,0,2945,2946,1,0,0,0,2946,2950, - 1,0,0,0,2947,2948,5,302,0,0,2948,2950,3,226,113,0,2949,2940,1,0, - 0,0,2949,2947,1,0,0,0,2950,3065,1,0,0,0,2951,2952,5,363,0,0,2952, - 2953,5,302,0,0,2953,3065,3,226,113,0,2954,2955,5,274,0,0,2955,2956, - 5,341,0,0,2956,3065,3,642,321,0,2957,2958,5,166,0,0,2958,2959,5, - 431,0,0,2959,3065,5,31,0,0,2960,2961,5,304,0,0,2961,2962,5,310,0, - 0,2962,2963,5,189,0,0,2963,2964,5,399,0,0,2964,2969,3,432,216,0, - 2965,2966,5,397,0,0,2966,2968,3,432,216,0,2967,2965,1,0,0,0,2968, - 2971,1,0,0,0,2969,2967,1,0,0,0,2969,2970,1,0,0,0,2970,2972,1,0,0, - 0,2971,2969,1,0,0,0,2972,2973,5,400,0,0,2973,3065,1,0,0,0,2974,2975, - 5,216,0,0,2975,3065,7,24,0,0,2976,3065,3,208,104,0,2977,2978,5,49, - 0,0,2978,2981,5,426,0,0,2979,2980,5,11,0,0,2980,2982,5,380,0,0,2981, - 2979,1,0,0,0,2981,2982,1,0,0,0,2982,2987,1,0,0,0,2983,2984,5,42, - 0,0,2984,2985,5,166,0,0,2985,2986,5,431,0,0,2986,2988,5,31,0,0,2987, - 2983,1,0,0,0,2987,2988,1,0,0,0,2988,2990,1,0,0,0,2989,2991,3,556, - 278,0,2990,2989,1,0,0,0,2990,2991,1,0,0,0,2991,2993,1,0,0,0,2992, - 2994,3,410,205,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2999,1, - 0,0,0,2995,2996,5,387,0,0,2996,2997,5,235,0,0,2997,2998,5,332,0, - 0,2998,3000,3,226,113,0,2999,2995,1,0,0,0,2999,3000,1,0,0,0,3000, - 3065,1,0,0,0,3001,3002,5,365,0,0,3002,3003,5,319,0,0,3003,3005,5, - 134,0,0,3004,3006,5,45,0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006, - 3007,1,0,0,0,3007,3008,3,256,128,0,3008,3009,5,304,0,0,3009,3012, - 3,226,113,0,3010,3011,5,47,0,0,3011,3013,5,426,0,0,3012,3010,1,0, - 0,0,3012,3013,1,0,0,0,3013,3065,1,0,0,0,3014,3015,5,365,0,0,3015, - 3016,5,319,0,0,3016,3017,5,304,0,0,3017,3065,3,226,113,0,3018,3020, - 5,38,0,0,3019,3021,5,45,0,0,3020,3019,1,0,0,0,3020,3021,1,0,0,0, - 3021,3022,1,0,0,0,3022,3023,3,256,128,0,3023,3024,3,262,131,0,3024, - 3026,3,346,173,0,3025,3027,3,328,164,0,3026,3025,1,0,0,0,3026,3027, - 1,0,0,0,3027,3030,1,0,0,0,3028,3029,5,47,0,0,3029,3031,5,426,0,0, - 3030,3028,1,0,0,0,3030,3031,1,0,0,0,3031,3035,1,0,0,0,3032,3036, - 5,130,0,0,3033,3034,5,6,0,0,3034,3036,3,654,327,0,3035,3032,1,0, - 0,0,3035,3033,1,0,0,0,3035,3036,1,0,0,0,3036,3038,1,0,0,0,3037,3039, - 3,34,17,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,3065,1,0,0,0, - 3040,3043,5,4,0,0,3041,3043,5,278,0,0,3042,3040,1,0,0,0,3042,3041, - 1,0,0,0,3043,3044,1,0,0,0,3044,3045,5,46,0,0,3045,3046,5,399,0,0, - 3046,3047,3,248,124,0,3047,3049,5,400,0,0,3048,3050,3,34,17,0,3049, - 3048,1,0,0,0,3049,3050,1,0,0,0,3050,3065,1,0,0,0,3051,3052,5,365, - 0,0,3052,3054,5,46,0,0,3053,3055,3,34,17,0,3054,3053,1,0,0,0,3054, - 3055,1,0,0,0,3055,3065,1,0,0,0,3056,3062,3,272,136,0,3057,3059,5, - 218,0,0,3058,3060,5,34,0,0,3059,3058,1,0,0,0,3059,3060,1,0,0,0,3060, - 3063,1,0,0,0,3061,3063,5,222,0,0,3062,3057,1,0,0,0,3062,3061,1,0, - 0,0,3063,3065,1,0,0,0,3064,2932,1,0,0,0,3064,2935,1,0,0,0,3064,2938, - 1,0,0,0,3064,2939,1,0,0,0,3064,2951,1,0,0,0,3064,2954,1,0,0,0,3064, - 2957,1,0,0,0,3064,2960,1,0,0,0,3064,2974,1,0,0,0,3064,2976,1,0,0, - 0,3064,2977,1,0,0,0,3064,3001,1,0,0,0,3064,3014,1,0,0,0,3064,3018, - 1,0,0,0,3064,3042,1,0,0,0,3064,3051,1,0,0,0,3064,3056,1,0,0,0,3065, - 421,1,0,0,0,3066,3067,5,304,0,0,3067,3068,5,332,0,0,3068,3093,3, - 226,113,0,3069,3070,5,363,0,0,3070,3072,5,332,0,0,3071,3073,3,30, - 15,0,3072,3071,1,0,0,0,3072,3073,1,0,0,0,3073,3074,1,0,0,0,3074, - 3093,3,226,113,0,3075,3076,5,274,0,0,3076,3077,5,341,0,0,3077,3093, - 3,484,242,0,3078,3080,5,4,0,0,3079,3081,3,32,16,0,3080,3079,1,0, - 0,0,3080,3081,1,0,0,0,3081,3086,1,0,0,0,3082,3084,3,642,321,0,3083, - 3085,3,428,214,0,3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3087,1, - 0,0,0,3086,3082,1,0,0,0,3087,3088,1,0,0,0,3088,3086,1,0,0,0,3088, - 3089,1,0,0,0,3089,3093,1,0,0,0,3090,3093,3,430,215,0,3091,3093,3, - 384,192,0,3092,3066,1,0,0,0,3092,3069,1,0,0,0,3092,3075,1,0,0,0, - 3092,3078,1,0,0,0,3092,3090,1,0,0,0,3092,3091,1,0,0,0,3093,423,1, - 0,0,0,3094,3095,3,476,238,0,3095,3096,5,304,0,0,3096,3097,5,76,0, - 0,3097,3098,3,230,115,0,3098,3110,1,0,0,0,3099,3100,3,476,238,0, - 3100,3101,5,304,0,0,3101,3102,5,236,0,0,3102,3103,3,128,64,0,3103, - 3110,1,0,0,0,3104,3105,3,476,238,0,3105,3106,5,304,0,0,3106,3107, - 7,25,0,0,3107,3108,5,426,0,0,3108,3110,1,0,0,0,3109,3094,1,0,0,0, - 3109,3099,1,0,0,0,3109,3104,1,0,0,0,3110,425,1,0,0,0,3111,3112,3, - 476,238,0,3112,3113,5,304,0,0,3113,3114,5,77,0,0,3114,3115,3,230, - 115,0,3115,3127,1,0,0,0,3116,3117,3,476,238,0,3117,3118,5,304,0, - 0,3118,3119,5,236,0,0,3119,3120,3,128,64,0,3120,3127,1,0,0,0,3121, - 3122,3,476,238,0,3122,3123,5,304,0,0,3123,3124,5,367,0,0,3124,3125, - 5,426,0,0,3125,3127,1,0,0,0,3126,3111,1,0,0,0,3126,3116,1,0,0,0, - 3126,3121,1,0,0,0,3127,427,1,0,0,0,3128,3129,5,189,0,0,3129,3130, - 5,426,0,0,3130,429,1,0,0,0,3131,3133,5,101,0,0,3132,3134,3,30,15, - 0,3133,3132,1,0,0,0,3133,3134,1,0,0,0,3134,3135,1,0,0,0,3135,3136, - 5,237,0,0,3136,3142,3,646,323,0,3137,3138,5,397,0,0,3138,3139,5, - 237,0,0,3139,3141,3,646,323,0,3140,3137,1,0,0,0,3141,3144,1,0,0, - 0,3142,3140,1,0,0,0,3142,3143,1,0,0,0,3143,3147,1,0,0,0,3144,3142, - 1,0,0,0,3145,3146,5,152,0,0,3146,3148,5,254,0,0,3147,3145,1,0,0, - 0,3147,3148,1,0,0,0,3148,3150,1,0,0,0,3149,3151,5,255,0,0,3150,3149, - 1,0,0,0,3150,3151,1,0,0,0,3151,3153,1,0,0,0,3152,3154,3,14,7,0,3153, - 3152,1,0,0,0,3153,3154,1,0,0,0,3154,431,1,0,0,0,3155,3158,3,588, - 294,0,3156,3158,3,298,149,0,3157,3155,1,0,0,0,3157,3156,1,0,0,0, - 3158,3159,1,0,0,0,3159,3160,5,405,0,0,3160,3161,5,426,0,0,3161,433, - 1,0,0,0,3162,3172,5,115,0,0,3163,3164,5,289,0,0,3164,3165,5,399, - 0,0,3165,3173,7,26,0,0,3166,3167,5,118,0,0,3167,3168,5,399,0,0,3168, - 3173,5,426,0,0,3169,3170,5,306,0,0,3170,3171,5,399,0,0,3171,3173, - 5,431,0,0,3172,3163,1,0,0,0,3172,3166,1,0,0,0,3172,3169,1,0,0,0, - 3173,3174,1,0,0,0,3174,3175,5,400,0,0,3175,435,1,0,0,0,3176,3177, - 5,160,0,0,3177,3178,5,426,0,0,3178,3179,5,233,0,0,3179,3180,5,426, - 0,0,3180,3181,5,301,0,0,3181,3186,5,426,0,0,3182,3183,5,159,0,0, - 3183,3184,5,426,0,0,3184,3185,5,232,0,0,3185,3187,5,426,0,0,3186, - 3182,1,0,0,0,3186,3187,1,0,0,0,3187,3190,1,0,0,0,3188,3190,3,654, - 327,0,3189,3176,1,0,0,0,3189,3188,1,0,0,0,3190,437,1,0,0,0,3191, - 3192,5,184,0,0,3192,3201,5,128,0,0,3193,3194,5,184,0,0,3194,3195, - 5,128,0,0,3195,3196,3,654,327,0,3196,3197,5,426,0,0,3197,3201,1, - 0,0,0,3198,3199,5,184,0,0,3199,3201,3,482,241,0,3200,3191,1,0,0, - 0,3200,3193,1,0,0,0,3200,3198,1,0,0,0,3201,439,1,0,0,0,3202,3204, - 5,58,0,0,3203,3205,5,333,0,0,3204,3203,1,0,0,0,3204,3205,1,0,0,0, - 3205,3207,1,0,0,0,3206,3208,5,345,0,0,3207,3206,1,0,0,0,3207,3208, - 1,0,0,0,3208,3210,1,0,0,0,3209,3211,5,123,0,0,3210,3209,1,0,0,0, - 3210,3211,1,0,0,0,3211,3212,1,0,0,0,3212,3214,5,329,0,0,3213,3215, - 3,32,16,0,3214,3213,1,0,0,0,3214,3215,1,0,0,0,3215,3216,1,0,0,0, - 3216,3273,3,484,242,0,3217,3219,3,438,219,0,3218,3220,3,200,100, - 0,3219,3218,1,0,0,0,3219,3220,1,0,0,0,3220,3222,1,0,0,0,3221,3223, - 3,222,111,0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3225,1,0,0, - 0,3224,3226,3,246,123,0,3225,3224,1,0,0,0,3225,3226,1,0,0,0,3226, - 3228,1,0,0,0,3227,3229,3,428,214,0,3228,3227,1,0,0,0,3228,3229,1, - 0,0,0,3229,3231,1,0,0,0,3230,3232,3,224,112,0,3231,3230,1,0,0,0, - 3231,3232,1,0,0,0,3232,3234,1,0,0,0,3233,3235,3,198,99,0,3234,3233, - 1,0,0,0,3234,3235,1,0,0,0,3235,3274,1,0,0,0,3236,3237,5,399,0,0, - 3237,3238,3,250,125,0,3238,3239,5,400,0,0,3239,3241,1,0,0,0,3240, - 3236,1,0,0,0,3240,3241,1,0,0,0,3241,3243,1,0,0,0,3242,3244,3,196, - 98,0,3243,3242,1,0,0,0,3243,3244,1,0,0,0,3244,3246,1,0,0,0,3245, - 3247,3,200,100,0,3246,3245,1,0,0,0,3246,3247,1,0,0,0,3247,3249,1, - 0,0,0,3248,3250,3,208,104,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0, - 3250,3252,1,0,0,0,3251,3253,3,210,105,0,3252,3251,1,0,0,0,3252,3253, - 1,0,0,0,3253,3255,1,0,0,0,3254,3256,3,222,111,0,3255,3254,1,0,0, - 0,3255,3256,1,0,0,0,3256,3258,1,0,0,0,3257,3259,3,246,123,0,3258, - 3257,1,0,0,0,3258,3259,1,0,0,0,3259,3261,1,0,0,0,3260,3262,3,428, - 214,0,3261,3260,1,0,0,0,3261,3262,1,0,0,0,3262,3264,1,0,0,0,3263, - 3265,3,224,112,0,3264,3263,1,0,0,0,3264,3265,1,0,0,0,3265,3267,1, - 0,0,0,3266,3268,3,198,99,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268, - 3271,1,0,0,0,3269,3270,5,17,0,0,3270,3272,3,384,192,0,3271,3269, - 1,0,0,0,3271,3272,1,0,0,0,3272,3274,1,0,0,0,3273,3217,1,0,0,0,3273, - 3240,1,0,0,0,3274,3338,1,0,0,0,3275,3276,5,58,0,0,3276,3277,5,195, - 0,0,3277,3279,5,329,0,0,3278,3280,3,32,16,0,3279,3278,1,0,0,0,3279, - 3280,1,0,0,0,3280,3281,1,0,0,0,3281,3335,3,484,242,0,3282,3284,3, - 438,219,0,3283,3285,3,222,111,0,3284,3283,1,0,0,0,3284,3285,1,0, - 0,0,3285,3287,1,0,0,0,3286,3288,3,246,123,0,3287,3286,1,0,0,0,3287, - 3288,1,0,0,0,3288,3290,1,0,0,0,3289,3291,3,428,214,0,3290,3289,1, - 0,0,0,3290,3291,1,0,0,0,3291,3293,1,0,0,0,3292,3294,3,224,112,0, - 3293,3292,1,0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3297, - 3,198,99,0,3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297,3336,1,0,0,0, - 3298,3299,5,399,0,0,3299,3300,3,250,125,0,3300,3301,5,400,0,0,3301, - 3303,1,0,0,0,3302,3298,1,0,0,0,3302,3303,1,0,0,0,3303,3305,1,0,0, - 0,3304,3306,3,196,98,0,3305,3304,1,0,0,0,3305,3306,1,0,0,0,3306, - 3308,1,0,0,0,3307,3309,3,200,100,0,3308,3307,1,0,0,0,3308,3309,1, - 0,0,0,3309,3311,1,0,0,0,3310,3312,3,208,104,0,3311,3310,1,0,0,0, - 3311,3312,1,0,0,0,3312,3314,1,0,0,0,3313,3315,3,210,105,0,3314,3313, - 1,0,0,0,3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316,3318,3,222,111, - 0,3317,3316,1,0,0,0,3317,3318,1,0,0,0,3318,3320,1,0,0,0,3319,3321, - 3,246,123,0,3320,3319,1,0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0, - 0,3322,3324,3,428,214,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0,3324, - 3326,1,0,0,0,3325,3327,3,224,112,0,3326,3325,1,0,0,0,3326,3327,1, - 0,0,0,3327,3329,1,0,0,0,3328,3330,3,198,99,0,3329,3328,1,0,0,0,3329, - 3330,1,0,0,0,3330,3333,1,0,0,0,3331,3332,5,17,0,0,3332,3334,3,384, - 192,0,3333,3331,1,0,0,0,3333,3334,1,0,0,0,3334,3336,1,0,0,0,3335, - 3282,1,0,0,0,3335,3302,1,0,0,0,3336,3338,1,0,0,0,3337,3202,1,0,0, - 0,3337,3275,1,0,0,0,3338,441,1,0,0,0,3339,3340,5,58,0,0,3340,3342, - 5,69,0,0,3341,3343,3,32,16,0,3342,3341,1,0,0,0,3342,3343,1,0,0,0, - 3343,3344,1,0,0,0,3344,3347,3,654,327,0,3345,3346,5,352,0,0,3346, - 3348,5,426,0,0,3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3351,1,0, - 0,0,3349,3350,5,367,0,0,3350,3352,5,426,0,0,3351,3349,1,0,0,0,3351, - 3352,1,0,0,0,3352,3355,1,0,0,0,3353,3354,5,47,0,0,3354,3356,5,426, - 0,0,3355,3353,1,0,0,0,3355,3356,1,0,0,0,3356,3360,1,0,0,0,3357,3358, - 5,387,0,0,3358,3359,5,77,0,0,3359,3361,3,230,115,0,3360,3357,1,0, - 0,0,3360,3361,1,0,0,0,3361,443,1,0,0,0,3362,3363,5,101,0,0,3363, - 3365,5,69,0,0,3364,3366,3,30,15,0,3365,3364,1,0,0,0,3365,3366,1, - 0,0,0,3366,3367,1,0,0,0,3367,3368,3,654,327,0,3368,445,1,0,0,0,3369, - 3370,3,654,327,0,3370,3371,5,395,0,0,3371,3373,1,0,0,0,3372,3369, - 1,0,0,0,3373,3376,1,0,0,0,3374,3372,1,0,0,0,3374,3375,1,0,0,0,3375, - 3377,1,0,0,0,3376,3374,1,0,0,0,3377,3378,5,415,0,0,3378,447,1,0, - 0,0,3379,3384,3,596,298,0,3380,3381,5,397,0,0,3381,3383,3,596,298, - 0,3382,3380,1,0,0,0,3383,3386,1,0,0,0,3384,3382,1,0,0,0,3384,3385, - 1,0,0,0,3385,449,1,0,0,0,3386,3384,1,0,0,0,3387,3392,3,654,327,0, - 3388,3389,5,397,0,0,3389,3391,3,654,327,0,3390,3388,1,0,0,0,3391, - 3394,1,0,0,0,3392,3390,1,0,0,0,3392,3393,1,0,0,0,3393,451,1,0,0, - 0,3394,3392,1,0,0,0,3395,3396,5,139,0,0,3396,3397,3,454,227,0,3397, - 453,1,0,0,0,3398,3399,5,359,0,0,3399,3402,3,462,231,0,3400,3401, - 5,397,0,0,3401,3403,3,462,231,0,3402,3400,1,0,0,0,3403,3404,1,0, - 0,0,3404,3402,1,0,0,0,3404,3405,1,0,0,0,3405,3408,1,0,0,0,3406,3408, - 3,458,229,0,3407,3398,1,0,0,0,3407,3406,1,0,0,0,3408,455,1,0,0,0, - 3409,3413,3,472,236,0,3410,3412,3,466,233,0,3411,3410,1,0,0,0,3412, - 3415,1,0,0,0,3413,3411,1,0,0,0,3413,3414,1,0,0,0,3414,3442,1,0,0, - 0,3415,3413,1,0,0,0,3416,3420,3,506,253,0,3417,3419,3,466,233,0, - 3418,3417,1,0,0,0,3419,3422,1,0,0,0,3420,3418,1,0,0,0,3420,3421, - 1,0,0,0,3421,3442,1,0,0,0,3422,3420,1,0,0,0,3423,3427,3,490,245, - 0,3424,3426,3,466,233,0,3425,3424,1,0,0,0,3426,3429,1,0,0,0,3427, - 3425,1,0,0,0,3427,3428,1,0,0,0,3428,3442,1,0,0,0,3429,3427,1,0,0, - 0,3430,3434,3,496,248,0,3431,3433,3,466,233,0,3432,3431,1,0,0,0, - 3433,3436,1,0,0,0,3434,3432,1,0,0,0,3434,3435,1,0,0,0,3435,3442, - 1,0,0,0,3436,3434,1,0,0,0,3437,3438,5,399,0,0,3438,3439,3,458,229, - 0,3439,3440,5,400,0,0,3440,3442,1,0,0,0,3441,3409,1,0,0,0,3441,3416, - 1,0,0,0,3441,3423,1,0,0,0,3441,3430,1,0,0,0,3441,3437,1,0,0,0,3442, - 457,1,0,0,0,3443,3461,3,456,228,0,3444,3445,3,464,232,0,3445,3457, - 3,460,230,0,3446,3453,5,224,0,0,3447,3454,3,596,298,0,3448,3451, - 3,260,130,0,3449,3450,5,405,0,0,3450,3452,3,260,130,0,3451,3449, - 1,0,0,0,3451,3452,1,0,0,0,3452,3454,1,0,0,0,3453,3447,1,0,0,0,3453, - 3448,1,0,0,0,3454,3458,1,0,0,0,3455,3456,5,370,0,0,3456,3458,3,268, - 134,0,3457,3446,1,0,0,0,3457,3455,1,0,0,0,3457,3458,1,0,0,0,3458, - 3460,1,0,0,0,3459,3444,1,0,0,0,3460,3463,1,0,0,0,3461,3459,1,0,0, - 0,3461,3462,1,0,0,0,3462,459,1,0,0,0,3463,3461,1,0,0,0,3464,3469, - 3,472,236,0,3465,3469,3,506,253,0,3466,3469,3,490,245,0,3467,3469, - 3,496,248,0,3468,3464,1,0,0,0,3468,3465,1,0,0,0,3468,3466,1,0,0, - 0,3468,3467,1,0,0,0,3469,3473,1,0,0,0,3470,3472,3,466,233,0,3471, - 3470,1,0,0,0,3472,3475,1,0,0,0,3473,3471,1,0,0,0,3473,3474,1,0,0, - 0,3474,461,1,0,0,0,3475,3473,1,0,0,0,3476,3478,5,250,0,0,3477,3476, - 1,0,0,0,3477,3478,1,0,0,0,3478,3479,1,0,0,0,3479,3481,3,480,240, - 0,3480,3482,3,470,235,0,3481,3480,1,0,0,0,3481,3482,1,0,0,0,3482, - 3487,1,0,0,0,3483,3485,5,17,0,0,3484,3483,1,0,0,0,3484,3485,1,0, - 0,0,3485,3486,1,0,0,0,3486,3488,3,654,327,0,3487,3484,1,0,0,0,3487, - 3488,1,0,0,0,3488,3489,1,0,0,0,3489,3490,5,399,0,0,3490,3491,3,448, - 224,0,3491,3492,5,400,0,0,3492,463,1,0,0,0,3493,3508,5,397,0,0,3494, - 3505,5,157,0,0,3495,3505,5,60,0,0,3496,3498,7,27,0,0,3497,3499,5, - 231,0,0,3498,3497,1,0,0,0,3498,3499,1,0,0,0,3499,3505,1,0,0,0,3500, - 3502,5,180,0,0,3501,3503,7,28,0,0,3502,3501,1,0,0,0,3502,3503,1, - 0,0,0,3503,3505,1,0,0,0,3504,3494,1,0,0,0,3504,3495,1,0,0,0,3504, - 3496,1,0,0,0,3504,3500,1,0,0,0,3504,3505,1,0,0,0,3505,3506,1,0,0, - 0,3506,3508,5,171,0,0,3507,3493,1,0,0,0,3507,3504,1,0,0,0,3508,465, - 1,0,0,0,3509,3510,5,178,0,0,3510,3511,5,378,0,0,3511,3512,5,231, - 0,0,3512,3513,3,566,283,0,3513,3523,3,468,234,0,3514,3515,5,17,0, - 0,3515,3520,3,654,327,0,3516,3517,5,397,0,0,3517,3519,3,654,327, - 0,3518,3516,1,0,0,0,3519,3522,1,0,0,0,3520,3518,1,0,0,0,3520,3521, - 1,0,0,0,3521,3524,1,0,0,0,3522,3520,1,0,0,0,3523,3514,1,0,0,0,3523, - 3524,1,0,0,0,3524,3567,1,0,0,0,3525,3527,5,397,0,0,3526,3525,1,0, - 0,0,3526,3527,1,0,0,0,3527,3528,1,0,0,0,3528,3564,5,178,0,0,3529, - 3530,5,378,0,0,3530,3531,3,566,283,0,3531,3541,3,468,234,0,3532, - 3533,5,17,0,0,3533,3538,3,654,327,0,3534,3535,5,397,0,0,3535,3537, - 3,654,327,0,3536,3534,1,0,0,0,3537,3540,1,0,0,0,3538,3536,1,0,0, - 0,3538,3539,1,0,0,0,3539,3542,1,0,0,0,3540,3538,1,0,0,0,3541,3532, - 1,0,0,0,3541,3542,1,0,0,0,3542,3565,1,0,0,0,3543,3544,5,329,0,0, - 3544,3545,5,399,0,0,3545,3546,3,502,251,0,3546,3548,5,400,0,0,3547, - 3549,5,17,0,0,3548,3547,1,0,0,0,3548,3549,1,0,0,0,3549,3550,1,0, - 0,0,3550,3562,3,468,234,0,3551,3552,5,399,0,0,3552,3557,3,654,327, - 0,3553,3554,5,397,0,0,3554,3556,3,654,327,0,3555,3553,1,0,0,0,3556, - 3559,1,0,0,0,3557,3555,1,0,0,0,3557,3558,1,0,0,0,3558,3560,1,0,0, - 0,3559,3557,1,0,0,0,3560,3561,5,400,0,0,3561,3563,1,0,0,0,3562,3551, - 1,0,0,0,3562,3563,1,0,0,0,3563,3565,1,0,0,0,3564,3529,1,0,0,0,3564, - 3543,1,0,0,0,3565,3567,1,0,0,0,3566,3509,1,0,0,0,3566,3526,1,0,0, - 0,3567,467,1,0,0,0,3568,3569,3,654,327,0,3569,469,1,0,0,0,3570,3571, - 5,331,0,0,3571,3572,5,399,0,0,3572,3573,5,30,0,0,3573,3574,5,431, - 0,0,3574,3575,5,230,0,0,3575,3576,5,221,0,0,3576,3586,5,431,0,0, - 3577,3578,5,224,0,0,3578,3583,3,596,298,0,3579,3580,5,397,0,0,3580, - 3582,3,596,298,0,3581,3579,1,0,0,0,3582,3585,1,0,0,0,3583,3581,1, - 0,0,0,3583,3584,1,0,0,0,3584,3587,1,0,0,0,3585,3583,1,0,0,0,3586, - 3577,1,0,0,0,3586,3587,1,0,0,0,3587,3588,1,0,0,0,3588,3598,5,400, - 0,0,3589,3590,5,331,0,0,3590,3594,5,399,0,0,3591,3592,5,431,0,0, - 3592,3595,7,29,0,0,3593,3595,5,430,0,0,3594,3591,1,0,0,0,3594,3593, - 1,0,0,0,3595,3596,1,0,0,0,3596,3598,5,400,0,0,3597,3570,1,0,0,0, - 3597,3589,1,0,0,0,3598,471,1,0,0,0,3599,3601,3,480,240,0,3600,3602, - 3,226,113,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602,3604,1,0,0, - 0,3603,3605,3,470,235,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605, - 3607,1,0,0,0,3606,3608,3,474,237,0,3607,3606,1,0,0,0,3607,3608,1, - 0,0,0,3608,3613,1,0,0,0,3609,3611,5,17,0,0,3610,3609,1,0,0,0,3610, - 3611,1,0,0,0,3611,3612,1,0,0,0,3612,3614,3,654,327,0,3613,3610,1, - 0,0,0,3613,3614,1,0,0,0,3614,473,1,0,0,0,3615,3625,5,134,0,0,3616, - 3617,5,327,0,0,3617,3618,5,17,0,0,3618,3619,5,221,0,0,3619,3626, - 3,596,298,0,3620,3621,5,134,0,0,3621,3622,5,328,0,0,3622,3623,5, - 17,0,0,3623,3624,5,221,0,0,3624,3626,5,431,0,0,3625,3616,1,0,0,0, - 3625,3620,1,0,0,0,3626,475,1,0,0,0,3627,3628,3,654,327,0,3628,477, - 1,0,0,0,3629,3630,3,654,327,0,3630,479,1,0,0,0,3631,3634,3,482,241, - 0,3632,3634,3,486,243,0,3633,3631,1,0,0,0,3633,3632,1,0,0,0,3634, - 481,1,0,0,0,3635,3636,3,654,327,0,3636,3637,5,395,0,0,3637,3640, - 3,654,327,0,3638,3639,5,395,0,0,3639,3641,3,654,327,0,3640,3638, - 1,0,0,0,3640,3641,1,0,0,0,3641,3644,1,0,0,0,3642,3644,3,654,327, - 0,3643,3635,1,0,0,0,3643,3642,1,0,0,0,3644,483,1,0,0,0,3645,3646, - 3,654,327,0,3646,3647,5,395,0,0,3647,3650,3,654,327,0,3648,3649, - 5,395,0,0,3649,3651,3,654,327,0,3650,3648,1,0,0,0,3650,3651,1,0, - 0,0,3651,3654,1,0,0,0,3652,3654,3,654,327,0,3653,3645,1,0,0,0,3653, - 3652,1,0,0,0,3654,485,1,0,0,0,3655,3656,3,654,327,0,3656,3657,5, - 395,0,0,3657,3659,1,0,0,0,3658,3655,1,0,0,0,3658,3659,1,0,0,0,3659, - 3660,1,0,0,0,3660,3661,3,654,327,0,3661,487,1,0,0,0,3662,3663,3, - 654,327,0,3663,3664,5,395,0,0,3664,3666,1,0,0,0,3665,3662,1,0,0, - 0,3665,3666,1,0,0,0,3666,3667,1,0,0,0,3667,3668,3,654,327,0,3668, - 489,1,0,0,0,3669,3670,5,399,0,0,3670,3671,3,364,182,0,3671,3673, - 5,400,0,0,3672,3674,5,17,0,0,3673,3672,1,0,0,0,3673,3674,1,0,0,0, - 3674,3675,1,0,0,0,3675,3676,3,654,327,0,3676,491,1,0,0,0,3677,3679, - 3,558,279,0,3678,3680,3,556,278,0,3679,3678,1,0,0,0,3679,3680,1, - 0,0,0,3680,3689,1,0,0,0,3681,3689,3,556,278,0,3682,3684,3,562,281, - 0,3683,3685,3,564,282,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685, - 3689,1,0,0,0,3686,3689,3,564,282,0,3687,3689,3,560,280,0,3688,3677, - 1,0,0,0,3688,3681,1,0,0,0,3688,3682,1,0,0,0,3688,3686,1,0,0,0,3688, - 3687,1,0,0,0,3689,493,1,0,0,0,3690,3694,3,490,245,0,3691,3694,3, - 472,236,0,3692,3694,3,496,248,0,3693,3690,1,0,0,0,3693,3691,1,0, - 0,0,3693,3692,1,0,0,0,3694,495,1,0,0,0,3695,3697,3,498,249,0,3696, - 3698,3,654,327,0,3697,3696,1,0,0,0,3697,3698,1,0,0,0,3698,497,1, - 0,0,0,3699,3700,3,654,327,0,3700,3701,5,399,0,0,3701,3702,5,224, - 0,0,3702,3704,3,494,247,0,3703,3705,3,492,246,0,3704,3703,1,0,0, - 0,3704,3705,1,0,0,0,3705,3721,1,0,0,0,3706,3707,5,432,0,0,3707,3708, - 5,399,0,0,3708,3709,3,596,298,0,3709,3718,5,400,0,0,3710,3711,5, - 397,0,0,3711,3712,5,432,0,0,3712,3713,5,399,0,0,3713,3714,3,596, - 298,0,3714,3715,5,400,0,0,3715,3717,1,0,0,0,3716,3710,1,0,0,0,3717, - 3720,1,0,0,0,3718,3716,1,0,0,0,3718,3719,1,0,0,0,3719,3722,1,0,0, - 0,3720,3718,1,0,0,0,3721,3706,1,0,0,0,3721,3722,1,0,0,0,3722,3723, - 1,0,0,0,3723,3724,5,400,0,0,3724,499,1,0,0,0,3725,3728,5,384,0,0, - 3726,3729,3,596,298,0,3727,3729,3,260,130,0,3728,3726,1,0,0,0,3728, - 3727,1,0,0,0,3729,501,1,0,0,0,3730,3749,5,374,0,0,3731,3736,3,552, - 276,0,3732,3733,5,397,0,0,3733,3735,3,552,276,0,3734,3732,1,0,0, - 0,3735,3738,1,0,0,0,3736,3734,1,0,0,0,3736,3737,1,0,0,0,3737,3750, - 1,0,0,0,3738,3736,1,0,0,0,3739,3740,5,399,0,0,3740,3741,3,548,274, - 0,3741,3746,5,400,0,0,3742,3743,5,397,0,0,3743,3745,3,552,276,0, - 3744,3742,1,0,0,0,3745,3748,1,0,0,0,3746,3744,1,0,0,0,3746,3747, - 1,0,0,0,3747,3750,1,0,0,0,3748,3746,1,0,0,0,3749,3731,1,0,0,0,3749, - 3739,1,0,0,0,3750,503,1,0,0,0,3751,3752,5,329,0,0,3752,3753,5,399, - 0,0,3753,3754,3,502,251,0,3754,3755,5,400,0,0,3755,505,1,0,0,0,3756, - 3758,3,504,252,0,3757,3759,5,17,0,0,3758,3757,1,0,0,0,3758,3759, - 1,0,0,0,3759,3760,1,0,0,0,3760,3770,3,468,234,0,3761,3762,5,399, - 0,0,3762,3767,3,654,327,0,3763,3764,5,397,0,0,3764,3766,3,654,327, - 0,3765,3763,1,0,0,0,3766,3769,1,0,0,0,3767,3765,1,0,0,0,3767,3768, - 1,0,0,0,3768,3771,1,0,0,0,3769,3767,1,0,0,0,3770,3761,1,0,0,0,3770, - 3771,1,0,0,0,3771,3772,1,0,0,0,3772,3773,5,400,0,0,3773,507,1,0, - 0,0,3774,3776,5,299,0,0,3775,3777,5,436,0,0,3776,3775,1,0,0,0,3776, - 3777,1,0,0,0,3777,3784,1,0,0,0,3778,3780,7,21,0,0,3779,3778,1,0, - 0,0,3779,3780,1,0,0,0,3780,3781,1,0,0,0,3781,3785,3,512,256,0,3782, - 3783,5,347,0,0,3783,3785,3,510,255,0,3784,3779,1,0,0,0,3784,3782, - 1,0,0,0,3785,3788,1,0,0,0,3786,3788,3,520,260,0,3787,3774,1,0,0, - 0,3787,3786,1,0,0,0,3788,509,1,0,0,0,3789,3790,5,399,0,0,3790,3791, - 3,524,262,0,3791,3792,5,400,0,0,3792,3793,3,212,106,0,3793,3794, - 3,216,108,0,3794,3795,5,370,0,0,3795,3808,5,426,0,0,3796,3806,5, - 17,0,0,3797,3800,5,399,0,0,3798,3801,3,450,225,0,3799,3801,3,248, - 124,0,3800,3798,1,0,0,0,3800,3799,1,0,0,0,3801,3802,1,0,0,0,3802, - 3803,5,400,0,0,3803,3807,1,0,0,0,3804,3807,3,450,225,0,3805,3807, - 3,248,124,0,3806,3797,1,0,0,0,3806,3804,1,0,0,0,3806,3805,1,0,0, - 0,3807,3809,1,0,0,0,3808,3796,1,0,0,0,3808,3809,1,0,0,0,3809,3810, - 1,0,0,0,3810,3811,3,212,106,0,3811,3812,3,214,107,0,3812,511,1,0, - 0,0,3813,3818,3,514,257,0,3814,3815,5,397,0,0,3815,3817,3,514,257, - 0,3816,3814,1,0,0,0,3817,3820,1,0,0,0,3818,3816,1,0,0,0,3818,3819, - 1,0,0,0,3819,513,1,0,0,0,3820,3818,1,0,0,0,3821,3847,3,446,223,0, - 3822,3825,3,516,258,0,3823,3825,3,518,259,0,3824,3822,1,0,0,0,3824, - 3823,1,0,0,0,3825,3842,1,0,0,0,3826,3828,5,17,0,0,3827,3826,1,0, - 0,0,3827,3828,1,0,0,0,3828,3829,1,0,0,0,3829,3843,3,654,327,0,3830, - 3831,5,17,0,0,3831,3832,5,399,0,0,3832,3837,3,654,327,0,3833,3834, - 5,397,0,0,3834,3836,3,654,327,0,3835,3833,1,0,0,0,3836,3839,1,0, - 0,0,3837,3835,1,0,0,0,3837,3838,1,0,0,0,3838,3840,1,0,0,0,3839,3837, - 1,0,0,0,3840,3841,5,400,0,0,3841,3843,1,0,0,0,3842,3827,1,0,0,0, - 3842,3830,1,0,0,0,3842,3843,1,0,0,0,3843,3847,1,0,0,0,3844,3845, - 4,257,2,0,3845,3847,3,702,351,0,3846,3821,1,0,0,0,3846,3824,1,0, - 0,0,3846,3844,1,0,0,0,3847,515,1,0,0,0,3848,3849,3,256,128,0,3849, - 517,1,0,0,0,3850,3851,3,596,298,0,3851,519,1,0,0,0,3852,3853,7,30, - 0,0,3853,3854,3,524,262,0,3854,3855,3,212,106,0,3855,3856,3,216, - 108,0,3856,3857,5,370,0,0,3857,3870,5,426,0,0,3858,3868,5,17,0,0, - 3859,3862,5,399,0,0,3860,3863,3,450,225,0,3861,3863,3,248,124,0, - 3862,3860,1,0,0,0,3862,3861,1,0,0,0,3863,3864,1,0,0,0,3864,3865, - 5,400,0,0,3865,3869,1,0,0,0,3866,3869,3,450,225,0,3867,3869,3,248, - 124,0,3868,3859,1,0,0,0,3868,3866,1,0,0,0,3868,3867,1,0,0,0,3869, - 3871,1,0,0,0,3870,3858,1,0,0,0,3870,3871,1,0,0,0,3871,3872,1,0,0, - 0,3872,3873,3,212,106,0,3873,3874,3,214,107,0,3874,521,1,0,0,0,3875, - 3878,3,446,223,0,3876,3878,3,596,298,0,3877,3875,1,0,0,0,3877,3876, - 1,0,0,0,3878,523,1,0,0,0,3879,3884,3,522,261,0,3880,3881,5,397,0, - 0,3881,3883,3,522,261,0,3882,3880,1,0,0,0,3883,3886,1,0,0,0,3884, - 3882,1,0,0,0,3884,3885,1,0,0,0,3885,525,1,0,0,0,3886,3884,1,0,0, - 0,3887,3888,5,386,0,0,3888,3889,3,654,327,0,3889,3890,5,17,0,0,3890, - 3898,3,528,264,0,3891,3892,5,397,0,0,3892,3893,3,654,327,0,3893, - 3894,5,17,0,0,3894,3895,3,528,264,0,3895,3897,1,0,0,0,3896,3891, - 1,0,0,0,3897,3900,1,0,0,0,3898,3896,1,0,0,0,3898,3899,1,0,0,0,3899, - 527,1,0,0,0,3900,3898,1,0,0,0,3901,3914,3,654,327,0,3902,3904,5, - 399,0,0,3903,3905,3,654,327,0,3904,3903,1,0,0,0,3904,3905,1,0,0, - 0,3905,3907,1,0,0,0,3906,3908,3,492,246,0,3907,3906,1,0,0,0,3907, - 3908,1,0,0,0,3908,3910,1,0,0,0,3909,3911,3,530,265,0,3910,3909,1, - 0,0,0,3910,3911,1,0,0,0,3911,3912,1,0,0,0,3912,3914,5,400,0,0,3913, - 3901,1,0,0,0,3913,3902,1,0,0,0,3914,529,1,0,0,0,3915,3929,7,31,0, - 0,3916,3917,5,354,0,0,3917,3923,5,247,0,0,3918,3919,5,62,0,0,3919, - 3923,5,291,0,0,3920,3921,5,431,0,0,3921,3923,5,247,0,0,3922,3916, - 1,0,0,0,3922,3918,1,0,0,0,3922,3920,1,0,0,0,3923,3930,1,0,0,0,3924, - 3925,5,25,0,0,3925,3926,3,532,266,0,3926,3927,5,11,0,0,3927,3928, - 3,532,266,0,3928,3930,1,0,0,0,3929,3922,1,0,0,0,3929,3924,1,0,0, - 0,3930,531,1,0,0,0,3931,3932,7,32,0,0,3932,3936,7,33,0,0,3933,3934, - 5,62,0,0,3934,3936,5,291,0,0,3935,3931,1,0,0,0,3935,3933,1,0,0,0, - 3936,533,1,0,0,0,3937,3938,5,144,0,0,3938,3944,5,32,0,0,3939,3945, - 3,256,128,0,3940,3945,3,536,268,0,3941,3945,3,538,269,0,3942,3943, - 5,399,0,0,3943,3945,5,400,0,0,3944,3939,1,0,0,0,3944,3940,1,0,0, - 0,3944,3941,1,0,0,0,3944,3942,1,0,0,0,3945,535,1,0,0,0,3946,3949, - 5,290,0,0,3947,3949,5,61,0,0,3948,3946,1,0,0,0,3948,3947,1,0,0,0, - 3949,3950,1,0,0,0,3950,3951,5,399,0,0,3951,3956,3,596,298,0,3952, - 3953,5,397,0,0,3953,3955,3,596,298,0,3954,3952,1,0,0,0,3955,3958, - 1,0,0,0,3956,3954,1,0,0,0,3956,3957,1,0,0,0,3957,3959,1,0,0,0,3958, - 3956,1,0,0,0,3959,3960,5,400,0,0,3960,537,1,0,0,0,3961,3966,3,554, - 277,0,3962,3963,5,387,0,0,3963,3967,5,290,0,0,3964,3965,5,387,0, - 0,3965,3967,5,61,0,0,3966,3962,1,0,0,0,3966,3964,1,0,0,0,3966,3967, - 1,0,0,0,3967,3981,1,0,0,0,3968,3969,5,145,0,0,3969,3970,5,305,0, - 0,3970,3971,5,399,0,0,3971,3976,3,540,270,0,3972,3973,5,397,0,0, - 3973,3975,3,540,270,0,3974,3972,1,0,0,0,3975,3978,1,0,0,0,3976,3974, - 1,0,0,0,3976,3977,1,0,0,0,3977,3979,1,0,0,0,3978,3976,1,0,0,0,3979, - 3980,5,400,0,0,3980,3982,1,0,0,0,3981,3968,1,0,0,0,3981,3982,1,0, - 0,0,3982,539,1,0,0,0,3983,3985,5,399,0,0,3984,3986,3,596,298,0,3985, - 3984,1,0,0,0,3985,3986,1,0,0,0,3986,3991,1,0,0,0,3987,3988,5,397, - 0,0,3988,3990,3,596,298,0,3989,3987,1,0,0,0,3990,3993,1,0,0,0,3991, - 3989,1,0,0,0,3991,3992,1,0,0,0,3992,3994,1,0,0,0,3993,3991,1,0,0, - 0,3994,3997,5,400,0,0,3995,3997,3,596,298,0,3996,3983,1,0,0,0,3996, - 3995,1,0,0,0,3997,541,1,0,0,0,3998,4001,5,146,0,0,3999,4002,3,596, - 298,0,4000,4002,3,260,130,0,4001,3999,1,0,0,0,4001,4000,1,0,0,0, - 4002,543,1,0,0,0,4003,4004,5,256,0,0,4004,4005,3,596,298,0,4005, - 545,1,0,0,0,4006,4009,5,83,0,0,4007,4009,3,596,298,0,4008,4006,1, - 0,0,0,4008,4007,1,0,0,0,4009,547,1,0,0,0,4010,4012,3,596,298,0,4011, - 4013,5,17,0,0,4012,4011,1,0,0,0,4012,4013,1,0,0,0,4013,4015,1,0, - 0,0,4014,4016,3,654,327,0,4015,4014,1,0,0,0,4015,4016,1,0,0,0,4016, - 4027,1,0,0,0,4017,4018,5,397,0,0,4018,4020,3,596,298,0,4019,4021, - 5,17,0,0,4020,4019,1,0,0,0,4020,4021,1,0,0,0,4021,4023,1,0,0,0,4022, - 4024,3,654,327,0,4023,4022,1,0,0,0,4023,4024,1,0,0,0,4024,4026,1, - 0,0,0,4025,4017,1,0,0,0,4026,4029,1,0,0,0,4027,4025,1,0,0,0,4027, - 4028,1,0,0,0,4028,549,1,0,0,0,4029,4027,1,0,0,0,4030,4033,3,552, - 276,0,4031,4033,3,554,277,0,4032,4030,1,0,0,0,4032,4031,1,0,0,0, - 4033,551,1,0,0,0,4034,4035,5,399,0,0,4035,4036,3,554,277,0,4036, - 4037,5,400,0,0,4037,553,1,0,0,0,4038,4045,3,546,273,0,4039,4040, - 5,397,0,0,4040,4042,3,546,273,0,4041,4039,1,0,0,0,4042,4043,1,0, - 0,0,4043,4041,1,0,0,0,4043,4044,1,0,0,0,4044,4046,1,0,0,0,4045,4041, - 1,0,0,0,4045,4046,1,0,0,0,4046,555,1,0,0,0,4047,4048,5,229,0,0,4048, - 4049,5,32,0,0,4049,4054,3,312,156,0,4050,4051,5,397,0,0,4051,4053, - 3,312,156,0,4052,4050,1,0,0,0,4053,4056,1,0,0,0,4054,4052,1,0,0, - 0,4054,4055,1,0,0,0,4055,557,1,0,0,0,4056,4054,1,0,0,0,4057,4058, - 5,237,0,0,4058,4059,5,32,0,0,4059,4060,3,550,275,0,4060,559,1,0, - 0,0,4061,4062,5,41,0,0,4062,4063,5,32,0,0,4063,4064,3,550,275,0, - 4064,561,1,0,0,0,4065,4066,5,97,0,0,4066,4067,5,32,0,0,4067,4068, - 3,550,275,0,4068,563,1,0,0,0,4069,4070,5,314,0,0,4070,4090,5,32, - 0,0,4071,4072,5,399,0,0,4072,4077,3,312,156,0,4073,4074,5,397,0, - 0,4074,4076,3,312,156,0,4075,4073,1,0,0,0,4076,4079,1,0,0,0,4077, - 4075,1,0,0,0,4077,4078,1,0,0,0,4078,4080,1,0,0,0,4079,4077,1,0,0, - 0,4080,4081,5,400,0,0,4081,4091,1,0,0,0,4082,4087,3,312,156,0,4083, - 4084,5,397,0,0,4084,4086,3,312,156,0,4085,4083,1,0,0,0,4086,4089, - 1,0,0,0,4087,4085,1,0,0,0,4087,4088,1,0,0,0,4088,4091,1,0,0,0,4089, - 4087,1,0,0,0,4090,4071,1,0,0,0,4090,4082,1,0,0,0,4091,565,1,0,0, - 0,4092,4093,5,349,0,0,4093,4097,5,399,0,0,4094,4098,5,179,0,0,4095, - 4098,5,343,0,0,4096,4098,5,29,0,0,4097,4094,1,0,0,0,4097,4095,1, - 0,0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4100,1,0,0,0,4099, - 4101,3,522,261,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4102,1, - 0,0,0,4102,4103,5,139,0,0,4103,4104,3,522,261,0,4104,4105,5,400, - 0,0,4105,4146,1,0,0,0,4106,4107,3,574,287,0,4107,4122,5,399,0,0, - 4108,4123,5,415,0,0,4109,4111,7,21,0,0,4110,4109,1,0,0,0,4110,4111, - 1,0,0,0,4111,4120,1,0,0,0,4112,4117,3,522,261,0,4113,4114,5,397, - 0,0,4114,4116,3,522,261,0,4115,4113,1,0,0,0,4116,4119,1,0,0,0,4117, - 4115,1,0,0,0,4117,4118,1,0,0,0,4118,4121,1,0,0,0,4119,4117,1,0,0, - 0,4120,4112,1,0,0,0,4120,4121,1,0,0,0,4121,4123,1,0,0,0,4122,4108, - 1,0,0,0,4122,4110,1,0,0,0,4123,4143,1,0,0,0,4124,4125,5,400,0,0, - 4125,4126,5,388,0,0,4126,4127,5,144,0,0,4127,4128,5,399,0,0,4128, - 4129,3,556,278,0,4129,4130,5,400,0,0,4130,4144,1,0,0,0,4131,4133, - 5,400,0,0,4132,4134,3,568,284,0,4133,4132,1,0,0,0,4133,4134,1,0, - 0,0,4134,4135,1,0,0,0,4135,4136,5,234,0,0,4136,4144,3,528,264,0, - 4137,4138,3,568,284,0,4138,4139,5,400,0,0,4139,4140,5,234,0,0,4140, - 4141,3,528,264,0,4141,4144,1,0,0,0,4142,4144,5,400,0,0,4143,4124, - 1,0,0,0,4143,4131,1,0,0,0,4143,4137,1,0,0,0,4143,4142,1,0,0,0,4144, - 4146,1,0,0,0,4145,4092,1,0,0,0,4145,4106,1,0,0,0,4146,567,1,0,0, - 0,4147,4148,7,34,0,0,4148,4149,5,220,0,0,4149,569,1,0,0,0,4150,4151, - 3,656,328,0,4151,571,1,0,0,0,4152,4155,3,656,328,0,4153,4155,5,426, - 0,0,4154,4152,1,0,0,0,4154,4153,1,0,0,0,4155,573,1,0,0,0,4156,4160, - 3,656,328,0,4157,4160,3,662,331,0,4158,4160,3,652,326,0,4159,4156, - 1,0,0,0,4159,4157,1,0,0,0,4159,4158,1,0,0,0,4160,575,1,0,0,0,4161, - 4162,5,36,0,0,4162,4163,5,399,0,0,4163,4164,3,596,298,0,4164,4165, - 5,17,0,0,4165,4168,3,352,176,0,4166,4167,5,137,0,0,4167,4169,5,426, - 0,0,4168,4166,1,0,0,0,4168,4169,1,0,0,0,4169,4170,1,0,0,0,4170,4171, - 5,400,0,0,4171,577,1,0,0,0,4172,4173,5,35,0,0,4173,4179,3,596,298, - 0,4174,4175,5,383,0,0,4175,4176,3,596,298,0,4176,4177,5,335,0,0, - 4177,4178,3,596,298,0,4178,4180,1,0,0,0,4179,4174,1,0,0,0,4180,4181, - 1,0,0,0,4181,4179,1,0,0,0,4181,4182,1,0,0,0,4182,4185,1,0,0,0,4183, - 4184,5,105,0,0,4184,4186,3,596,298,0,4185,4183,1,0,0,0,4185,4186, - 1,0,0,0,4186,4187,1,0,0,0,4187,4188,5,108,0,0,4188,579,1,0,0,0,4189, - 4195,5,35,0,0,4190,4191,5,383,0,0,4191,4192,3,596,298,0,4192,4193, - 5,335,0,0,4193,4194,3,596,298,0,4194,4196,1,0,0,0,4195,4190,1,0, - 0,0,4196,4197,1,0,0,0,4197,4195,1,0,0,0,4197,4198,1,0,0,0,4198,4201, - 1,0,0,0,4199,4200,5,105,0,0,4200,4202,3,596,298,0,4201,4199,1,0, - 0,0,4201,4202,1,0,0,0,4202,4203,1,0,0,0,4203,4204,5,108,0,0,4204, - 581,1,0,0,0,4205,4206,5,132,0,0,4206,4207,5,399,0,0,4207,4210,3, - 596,298,0,4208,4209,5,341,0,0,4209,4211,3,586,293,0,4210,4208,1, - 0,0,0,4210,4211,1,0,0,0,4211,4212,1,0,0,0,4212,4213,5,400,0,0,4213, - 583,1,0,0,0,4214,4215,5,124,0,0,4215,4216,5,399,0,0,4216,4217,3, - 586,293,0,4217,4218,5,139,0,0,4218,4219,3,596,298,0,4219,4220,5, - 400,0,0,4220,585,1,0,0,0,4221,4230,3,686,343,0,4222,4230,5,257,0, - 0,4223,4230,3,688,344,0,4224,4230,3,690,345,0,4225,4230,3,692,346, - 0,4226,4230,3,694,347,0,4227,4230,3,696,348,0,4228,4230,3,698,349, - 0,4229,4221,1,0,0,0,4229,4222,1,0,0,0,4229,4223,1,0,0,0,4229,4224, - 1,0,0,0,4229,4225,1,0,0,0,4229,4226,1,0,0,0,4229,4227,1,0,0,0,4229, - 4228,1,0,0,0,4230,587,1,0,0,0,4231,4232,3,590,295,0,4232,4233,3, - 594,297,0,4233,4260,1,0,0,0,4234,4260,5,431,0,0,4235,4236,5,71,0, - 0,4236,4260,5,426,0,0,4237,4260,5,63,0,0,4238,4239,5,337,0,0,4239, - 4260,5,426,0,0,4240,4260,5,64,0,0,4241,4242,5,338,0,0,4242,4260, - 5,426,0,0,4243,4247,5,426,0,0,4244,4246,5,426,0,0,4245,4244,1,0, - 0,0,4246,4249,1,0,0,0,4247,4245,1,0,0,0,4247,4248,1,0,0,0,4248,4260, - 1,0,0,0,4249,4247,1,0,0,0,4250,4260,5,428,0,0,4251,4260,5,429,0, - 0,4252,4253,5,433,0,0,4253,4260,5,427,0,0,4254,4260,5,350,0,0,4255, - 4260,5,125,0,0,4256,4260,5,219,0,0,4257,4260,5,424,0,0,4258,4260, - 3,258,129,0,4259,4231,1,0,0,0,4259,4234,1,0,0,0,4259,4235,1,0,0, - 0,4259,4237,1,0,0,0,4259,4238,1,0,0,0,4259,4240,1,0,0,0,4259,4241, - 1,0,0,0,4259,4243,1,0,0,0,4259,4250,1,0,0,0,4259,4251,1,0,0,0,4259, - 4252,1,0,0,0,4259,4254,1,0,0,0,4259,4255,1,0,0,0,4259,4256,1,0,0, - 0,4259,4257,1,0,0,0,4259,4258,1,0,0,0,4260,589,1,0,0,0,4261,4262, - 7,26,0,0,4262,591,1,0,0,0,4263,4264,5,399,0,0,4264,4265,3,590,295, - 0,4265,4266,5,400,0,0,4266,4267,3,594,297,0,4267,4279,1,0,0,0,4268, - 4274,5,165,0,0,4269,4275,3,590,295,0,4270,4271,5,399,0,0,4271,4272, - 3,596,298,0,4272,4273,5,400,0,0,4273,4275,1,0,0,0,4274,4269,1,0, - 0,0,4274,4270,1,0,0,0,4275,4276,1,0,0,0,4276,4277,3,594,297,0,4277, - 4279,1,0,0,0,4278,4263,1,0,0,0,4278,4268,1,0,0,0,4279,593,1,0,0, - 0,4280,4281,3,686,343,0,4281,4282,5,341,0,0,4282,4283,3,688,344, - 0,4283,4295,1,0,0,0,4284,4285,3,692,346,0,4285,4286,5,341,0,0,4286, - 4287,3,698,349,0,4287,4295,1,0,0,0,4288,4295,3,686,343,0,4289,4295, - 3,688,344,0,4290,4295,3,692,346,0,4291,4295,3,694,347,0,4292,4295, - 3,696,348,0,4293,4295,3,698,349,0,4294,4280,1,0,0,0,4294,4284,1, - 0,0,0,4294,4288,1,0,0,0,4294,4289,1,0,0,0,4294,4290,1,0,0,0,4294, - 4291,1,0,0,0,4294,4292,1,0,0,0,4294,4293,1,0,0,0,4295,595,1,0,0, - 0,4296,4301,3,638,319,0,4297,4298,5,228,0,0,4298,4300,3,638,319, - 0,4299,4297,1,0,0,0,4300,4303,1,0,0,0,4301,4299,1,0,0,0,4301,4302, - 1,0,0,0,4302,597,1,0,0,0,4303,4301,1,0,0,0,4304,4316,3,588,294,0, - 4305,4316,3,592,296,0,4306,4316,3,576,288,0,4307,4316,3,584,292, - 0,4308,4316,3,582,291,0,4309,4316,3,578,289,0,4310,4316,3,580,290, - 0,4311,4316,3,616,308,0,4312,4316,3,566,283,0,4313,4316,3,552,276, - 0,4314,4316,3,654,327,0,4315,4304,1,0,0,0,4315,4305,1,0,0,0,4315, - 4306,1,0,0,0,4315,4307,1,0,0,0,4315,4308,1,0,0,0,4315,4309,1,0,0, - 0,4315,4310,1,0,0,0,4315,4311,1,0,0,0,4315,4312,1,0,0,0,4315,4313, - 1,0,0,0,4315,4314,1,0,0,0,4316,599,1,0,0,0,4317,4319,7,35,0,0,4318, - 4317,1,0,0,0,4319,4322,1,0,0,0,4320,4318,1,0,0,0,4320,4321,1,0,0, - 0,4321,4323,1,0,0,0,4322,4320,1,0,0,0,4323,4332,3,598,299,0,4324, - 4325,5,401,0,0,4325,4326,3,596,298,0,4326,4327,5,402,0,0,4327,4331, - 1,0,0,0,4328,4329,5,395,0,0,4329,4331,3,654,327,0,4330,4324,1,0, - 0,0,4330,4328,1,0,0,0,4331,4334,1,0,0,0,4332,4330,1,0,0,0,4332,4333, - 1,0,0,0,4333,601,1,0,0,0,4334,4332,1,0,0,0,4335,4340,3,600,300,0, - 4336,4337,5,423,0,0,4337,4339,3,600,300,0,4338,4336,1,0,0,0,4339, - 4342,1,0,0,0,4340,4338,1,0,0,0,4340,4341,1,0,0,0,4341,603,1,0,0, - 0,4342,4340,1,0,0,0,4343,4348,3,602,301,0,4344,4345,7,36,0,0,4345, - 4347,3,602,301,0,4346,4344,1,0,0,0,4347,4350,1,0,0,0,4348,4346,1, - 0,0,0,4348,4349,1,0,0,0,4349,605,1,0,0,0,4350,4348,1,0,0,0,4351, - 4356,3,604,302,0,4352,4353,7,37,0,0,4353,4355,3,604,302,0,4354,4352, - 1,0,0,0,4355,4358,1,0,0,0,4356,4354,1,0,0,0,4356,4357,1,0,0,0,4357, - 607,1,0,0,0,4358,4356,1,0,0,0,4359,4364,3,606,303,0,4360,4361,5, - 422,0,0,4361,4363,3,606,303,0,4362,4360,1,0,0,0,4363,4366,1,0,0, - 0,4364,4362,1,0,0,0,4364,4365,1,0,0,0,4365,609,1,0,0,0,4366,4364, - 1,0,0,0,4367,4372,3,608,304,0,4368,4369,5,419,0,0,4369,4371,3,608, - 304,0,4370,4368,1,0,0,0,4371,4374,1,0,0,0,4372,4370,1,0,0,0,4372, - 4373,1,0,0,0,4373,611,1,0,0,0,4374,4372,1,0,0,0,4375,4380,3,610, - 305,0,4376,4377,5,421,0,0,4377,4379,3,610,305,0,4378,4376,1,0,0, - 0,4379,4382,1,0,0,0,4380,4378,1,0,0,0,4380,4381,1,0,0,0,4381,613, - 1,0,0,0,4382,4380,1,0,0,0,4383,4384,7,38,0,0,4384,615,1,0,0,0,4385, - 4386,5,399,0,0,4386,4387,3,380,190,0,4387,4388,5,400,0,0,4388,617, - 1,0,0,0,4389,4391,3,612,306,0,4390,4392,3,620,310,0,4391,4390,1, - 0,0,0,4391,4392,1,0,0,0,4392,4396,1,0,0,0,4393,4394,5,117,0,0,4394, - 4396,3,616,308,0,4395,4389,1,0,0,0,4395,4393,1,0,0,0,4396,619,1, - 0,0,0,4397,4398,3,614,307,0,4398,4399,3,612,306,0,4399,4404,1,0, - 0,0,4400,4404,3,622,311,0,4401,4402,5,216,0,0,4402,4404,3,626,313, - 0,4403,4397,1,0,0,0,4403,4400,1,0,0,0,4403,4401,1,0,0,0,4404,621, - 1,0,0,0,4405,4406,5,154,0,0,4406,4420,3,624,312,0,4407,4408,5,25, - 0,0,4408,4409,3,612,306,0,4409,4410,5,11,0,0,4410,4411,3,612,306, - 0,4411,4420,1,0,0,0,4412,4413,5,184,0,0,4413,4414,7,39,0,0,4414, - 4420,3,552,276,0,4415,4416,3,650,325,0,4416,4417,7,40,0,0,4417,4418, - 3,616,308,0,4418,4420,1,0,0,0,4419,4405,1,0,0,0,4419,4407,1,0,0, - 0,4419,4412,1,0,0,0,4419,4415,1,0,0,0,4420,623,1,0,0,0,4421,4424, - 3,616,308,0,4422,4424,3,552,276,0,4423,4421,1,0,0,0,4423,4422,1, - 0,0,0,4424,625,1,0,0,0,4425,4426,7,41,0,0,4426,4429,3,612,306,0, - 4427,4429,3,622,311,0,4428,4425,1,0,0,0,4428,4427,1,0,0,0,4429,627, - 1,0,0,0,4430,4431,5,167,0,0,4431,4432,5,96,0,0,4432,4433,5,139,0, - 0,4433,629,1,0,0,0,4434,4442,5,405,0,0,4435,4442,5,406,0,0,4436, - 4442,5,407,0,0,4437,4438,5,167,0,0,4438,4439,5,216,0,0,4439,4440, - 5,96,0,0,4440,4442,5,139,0,0,4441,4434,1,0,0,0,4441,4435,1,0,0,0, - 4441,4436,1,0,0,0,4441,4437,1,0,0,0,4442,631,1,0,0,0,4443,4452,3, - 618,309,0,4444,4445,3,630,315,0,4445,4446,3,618,309,0,4446,4451, - 1,0,0,0,4447,4448,3,628,314,0,4448,4449,3,618,309,0,4449,4451,1, - 0,0,0,4450,4444,1,0,0,0,4450,4447,1,0,0,0,4451,4454,1,0,0,0,4452, - 4450,1,0,0,0,4452,4453,1,0,0,0,4453,633,1,0,0,0,4454,4452,1,0,0, - 0,4455,4462,5,219,0,0,4456,4462,5,350,0,0,4457,4462,5,125,0,0,4458, - 4462,5,360,0,0,4459,4460,5,216,0,0,4460,4462,7,42,0,0,4461,4455, - 1,0,0,0,4461,4456,1,0,0,0,4461,4457,1,0,0,0,4461,4458,1,0,0,0,4461, - 4459,1,0,0,0,4462,635,1,0,0,0,4463,4465,5,216,0,0,4464,4463,1,0, - 0,0,4465,4468,1,0,0,0,4466,4464,1,0,0,0,4466,4467,1,0,0,0,4467,4469, - 1,0,0,0,4468,4466,1,0,0,0,4469,4472,3,632,316,0,4470,4471,5,167, - 0,0,4471,4473,3,634,317,0,4472,4470,1,0,0,0,4472,4473,1,0,0,0,4473, - 637,1,0,0,0,4474,4479,3,636,318,0,4475,4476,5,11,0,0,4476,4478,3, - 636,318,0,4477,4475,1,0,0,0,4478,4481,1,0,0,0,4479,4477,1,0,0,0, - 4479,4480,1,0,0,0,4480,639,1,0,0,0,4481,4479,1,0,0,0,4482,4484,3, - 482,241,0,4483,4485,3,642,321,0,4484,4483,1,0,0,0,4484,4485,1,0, - 0,0,4485,641,1,0,0,0,4486,4487,5,237,0,0,4487,4488,5,399,0,0,4488, - 4493,3,644,322,0,4489,4490,5,397,0,0,4490,4492,3,644,322,0,4491, - 4489,1,0,0,0,4492,4495,1,0,0,0,4493,4491,1,0,0,0,4493,4494,1,0,0, - 0,4494,4496,1,0,0,0,4495,4493,1,0,0,0,4496,4497,5,400,0,0,4497,643, - 1,0,0,0,4498,4501,3,654,327,0,4499,4500,5,405,0,0,4500,4502,3,588, - 294,0,4501,4499,1,0,0,0,4501,4502,1,0,0,0,4502,645,1,0,0,0,4503, - 4504,5,399,0,0,4504,4509,3,648,324,0,4505,4506,5,397,0,0,4506,4508, - 3,648,324,0,4507,4505,1,0,0,0,4508,4511,1,0,0,0,4509,4507,1,0,0, - 0,4509,4510,1,0,0,0,4510,4512,1,0,0,0,4511,4509,1,0,0,0,4512,4513, - 5,400,0,0,4513,647,1,0,0,0,4514,4517,3,654,327,0,4515,4518,5,184, - 0,0,4516,4518,3,650,325,0,4517,4515,1,0,0,0,4517,4516,1,0,0,0,4518, - 4519,1,0,0,0,4519,4520,3,588,294,0,4520,649,1,0,0,0,4521,4522,7, - 43,0,0,4522,651,1,0,0,0,4523,4524,7,44,0,0,4524,653,1,0,0,0,4525, - 4528,5,432,0,0,4526,4528,3,660,330,0,4527,4525,1,0,0,0,4527,4526, - 1,0,0,0,4528,655,1,0,0,0,4529,4532,3,654,327,0,4530,4531,5,395,0, - 0,4531,4533,3,654,327,0,4532,4530,1,0,0,0,4532,4533,1,0,0,0,4533, - 657,1,0,0,0,4534,4535,3,654,327,0,4535,659,1,0,0,0,4536,4537,7,45, - 0,0,4537,661,1,0,0,0,4538,4539,7,46,0,0,4539,663,1,0,0,0,4540,4545, - 3,666,333,0,4541,4542,7,47,0,0,4542,4544,3,666,333,0,4543,4541,1, - 0,0,0,4544,4547,1,0,0,0,4545,4543,1,0,0,0,4545,4546,1,0,0,0,4546, - 665,1,0,0,0,4547,4545,1,0,0,0,4548,4555,3,668,334,0,4549,4550,4, - 333,3,0,4550,4551,5,414,0,0,4551,4552,4,333,4,0,4552,4554,3,668, - 334,0,4553,4549,1,0,0,0,4554,4557,1,0,0,0,4555,4553,1,0,0,0,4555, - 4556,1,0,0,0,4556,667,1,0,0,0,4557,4555,1,0,0,0,4558,4610,3,654, - 327,0,4559,4610,5,299,0,0,4560,4610,5,171,0,0,4561,4610,5,237,0, - 0,4562,4610,5,198,0,0,4563,4610,5,268,0,0,4564,4610,5,369,0,0,4565, - 4610,5,241,0,0,4566,4610,5,165,0,0,4567,4610,5,292,0,0,4568,4610, - 5,356,0,0,4569,4610,5,144,0,0,4570,4610,5,203,0,0,4571,4610,5,219, - 0,0,4572,4610,5,126,0,0,4573,4610,5,188,0,0,4574,4610,5,101,0,0, - 4575,4610,5,329,0,0,4576,4610,5,224,0,0,4577,4610,5,291,0,0,4578, - 4610,5,145,0,0,4579,4610,5,304,0,0,4580,4610,5,135,0,0,4581,4610, - 5,318,0,0,4582,4610,5,161,0,0,4583,4610,5,54,0,0,4584,4610,5,166, - 0,0,4585,4610,5,358,0,0,4586,4610,5,45,0,0,4587,4610,5,347,0,0,4588, - 4610,5,96,0,0,4589,4610,5,154,0,0,4590,4610,5,269,0,0,4591,4610, - 5,337,0,0,4592,4610,5,225,0,0,4593,4610,5,108,0,0,4594,4610,5,141, - 0,0,4595,4610,5,365,0,0,4596,4610,5,21,0,0,4597,4610,5,78,0,0,4598, - 4610,5,374,0,0,4599,4610,5,336,0,0,4600,4610,5,167,0,0,4601,4610, - 5,134,0,0,4602,4610,5,216,0,0,4603,4610,5,27,0,0,4604,4610,5,370, - 0,0,4605,4610,5,263,0,0,4606,4610,5,25,0,0,4607,4610,5,62,0,0,4608, - 4610,5,17,0,0,4609,4558,1,0,0,0,4609,4559,1,0,0,0,4609,4560,1,0, - 0,0,4609,4561,1,0,0,0,4609,4562,1,0,0,0,4609,4563,1,0,0,0,4609,4564, - 1,0,0,0,4609,4565,1,0,0,0,4609,4566,1,0,0,0,4609,4567,1,0,0,0,4609, - 4568,1,0,0,0,4609,4569,1,0,0,0,4609,4570,1,0,0,0,4609,4571,1,0,0, - 0,4609,4572,1,0,0,0,4609,4573,1,0,0,0,4609,4574,1,0,0,0,4609,4575, - 1,0,0,0,4609,4576,1,0,0,0,4609,4577,1,0,0,0,4609,4578,1,0,0,0,4609, - 4579,1,0,0,0,4609,4580,1,0,0,0,4609,4581,1,0,0,0,4609,4582,1,0,0, - 0,4609,4583,1,0,0,0,4609,4584,1,0,0,0,4609,4585,1,0,0,0,4609,4586, - 1,0,0,0,4609,4587,1,0,0,0,4609,4588,1,0,0,0,4609,4589,1,0,0,0,4609, - 4590,1,0,0,0,4609,4591,1,0,0,0,4609,4592,1,0,0,0,4609,4593,1,0,0, - 0,4609,4594,1,0,0,0,4609,4595,1,0,0,0,4609,4596,1,0,0,0,4609,4597, - 1,0,0,0,4609,4598,1,0,0,0,4609,4599,1,0,0,0,4609,4600,1,0,0,0,4609, - 4601,1,0,0,0,4609,4602,1,0,0,0,4609,4603,1,0,0,0,4609,4604,1,0,0, - 0,4609,4605,1,0,0,0,4609,4606,1,0,0,0,4609,4607,1,0,0,0,4609,4608, - 1,0,0,0,4610,669,1,0,0,0,4611,4612,5,58,0,0,4612,4613,5,280,0,0, - 4613,4615,5,243,0,0,4614,4616,3,32,16,0,4615,4614,1,0,0,0,4615,4616, - 1,0,0,0,4616,4626,1,0,0,0,4617,4618,3,654,327,0,4618,4619,5,184, - 0,0,4619,4620,3,654,327,0,4620,4627,1,0,0,0,4621,4624,3,654,327, - 0,4622,4623,5,387,0,0,4623,4625,3,676,338,0,4624,4622,1,0,0,0,4624, - 4625,1,0,0,0,4625,4627,1,0,0,0,4626,4617,1,0,0,0,4626,4621,1,0,0, - 0,4627,4777,1,0,0,0,4628,4629,5,9,0,0,4629,4630,5,280,0,0,4630,4631, - 5,243,0,0,4631,4656,3,654,327,0,4632,4657,5,373,0,0,4633,4657,3, - 684,342,0,4634,4635,5,304,0,0,4635,4657,3,676,338,0,4636,4637,5, - 363,0,0,4637,4642,3,678,339,0,4638,4639,5,397,0,0,4639,4641,3,678, - 339,0,4640,4638,1,0,0,0,4641,4644,1,0,0,0,4642,4640,1,0,0,0,4642, - 4643,1,0,0,0,4643,4657,1,0,0,0,4644,4642,1,0,0,0,4645,4646,5,274, - 0,0,4646,4647,5,341,0,0,4647,4657,3,654,327,0,4648,4650,3,680,340, - 0,4649,4651,3,682,341,0,4650,4649,1,0,0,0,4650,4651,1,0,0,0,4651, - 4657,1,0,0,0,4652,4654,3,682,341,0,4653,4655,3,680,340,0,4654,4653, - 1,0,0,0,4654,4655,1,0,0,0,4655,4657,1,0,0,0,4656,4632,1,0,0,0,4656, - 4633,1,0,0,0,4656,4634,1,0,0,0,4656,4636,1,0,0,0,4656,4645,1,0,0, - 0,4656,4648,1,0,0,0,4656,4652,1,0,0,0,4657,4777,1,0,0,0,4658,4659, - 5,101,0,0,4659,4660,5,280,0,0,4660,4662,5,243,0,0,4661,4663,3,30, - 15,0,4662,4661,1,0,0,0,4662,4663,1,0,0,0,4663,4664,1,0,0,0,4664, - 4777,3,654,327,0,4665,4668,3,682,341,0,4666,4668,3,684,342,0,4667, - 4665,1,0,0,0,4667,4666,1,0,0,0,4668,4669,1,0,0,0,4669,4670,5,390, - 0,0,4670,4671,5,197,0,0,4671,4777,1,0,0,0,4672,4684,5,278,0,0,4673, - 4674,5,3,0,0,4674,4675,5,280,0,0,4675,4676,5,243,0,0,4676,4677,5, - 387,0,0,4677,4685,3,654,327,0,4678,4679,5,280,0,0,4679,4680,5,243, - 0,0,4680,4681,3,654,327,0,4681,4682,5,387,0,0,4682,4683,3,654,327, - 0,4683,4685,1,0,0,0,4684,4673,1,0,0,0,4684,4678,1,0,0,0,4685,4777, - 1,0,0,0,4686,4687,5,58,0,0,4687,4688,5,348,0,0,4688,4689,3,654,327, - 0,4689,4690,5,395,0,0,4690,4691,3,654,327,0,4691,4692,5,383,0,0, - 4692,4693,3,708,354,0,4693,4694,5,99,0,0,4694,4695,3,710,355,0,4695, - 4777,1,0,0,0,4696,4697,5,9,0,0,4697,4698,5,348,0,0,4698,4699,3,654, - 327,0,4699,4700,5,395,0,0,4700,4717,3,654,327,0,4701,4702,5,383, - 0,0,4702,4703,3,708,354,0,4703,4704,5,99,0,0,4704,4705,3,710,355, - 0,4705,4718,1,0,0,0,4706,4707,5,4,0,0,4707,4711,5,341,0,0,4708,4709, - 5,101,0,0,4709,4711,5,139,0,0,4710,4706,1,0,0,0,4710,4708,1,0,0, - 0,4711,4715,1,0,0,0,4712,4713,5,246,0,0,4713,4716,3,704,352,0,4714, - 4716,5,362,0,0,4715,4712,1,0,0,0,4715,4714,1,0,0,0,4716,4718,1,0, - 0,0,4717,4701,1,0,0,0,4717,4710,1,0,0,0,4718,4777,1,0,0,0,4719,4720, - 5,101,0,0,4720,4721,5,348,0,0,4721,4722,3,654,327,0,4722,4723,5, - 395,0,0,4723,4724,3,654,327,0,4724,4777,1,0,0,0,4725,4726,5,58,0, - 0,4726,4727,5,246,0,0,4727,4728,3,654,327,0,4728,4729,5,395,0,0, - 4729,4730,3,704,352,0,4730,4731,5,387,0,0,4731,4732,3,714,357,0, - 4732,4777,1,0,0,0,4733,4734,5,9,0,0,4734,4735,5,246,0,0,4735,4736, - 3,654,327,0,4736,4737,5,395,0,0,4737,4745,3,704,352,0,4738,4739, - 5,304,0,0,4739,4746,3,714,357,0,4740,4741,5,363,0,0,4741,4746,5, - 294,0,0,4742,4743,7,48,0,0,4743,4744,5,348,0,0,4744,4746,3,654,327, - 0,4745,4738,1,0,0,0,4745,4740,1,0,0,0,4745,4742,1,0,0,0,4746,4777, - 1,0,0,0,4747,4748,5,101,0,0,4748,4749,5,246,0,0,4749,4750,3,654, - 327,0,4750,4751,5,395,0,0,4751,4752,3,704,352,0,4752,4777,1,0,0, - 0,4753,4754,7,49,0,0,4754,4755,3,672,336,0,4755,4756,5,200,0,0,4756, - 4757,5,426,0,0,4757,4758,5,154,0,0,4758,4762,3,654,327,0,4759,4760, - 5,341,0,0,4760,4763,3,704,352,0,4761,4763,5,362,0,0,4762,4759,1, - 0,0,0,4762,4761,1,0,0,0,4763,4767,1,0,0,0,4764,4765,5,387,0,0,4765, - 4766,5,229,0,0,4766,4768,5,431,0,0,4767,4764,1,0,0,0,4767,4768,1, - 0,0,0,4768,4777,1,0,0,0,4769,4770,5,101,0,0,4770,4771,3,672,336, - 0,4771,4772,5,200,0,0,4772,4773,5,426,0,0,4773,4774,5,154,0,0,4774, - 4775,3,654,327,0,4775,4777,1,0,0,0,4776,4611,1,0,0,0,4776,4628,1, - 0,0,0,4776,4658,1,0,0,0,4776,4667,1,0,0,0,4776,4672,1,0,0,0,4776, - 4686,1,0,0,0,4776,4696,1,0,0,0,4776,4719,1,0,0,0,4776,4725,1,0,0, - 0,4776,4733,1,0,0,0,4776,4747,1,0,0,0,4776,4753,1,0,0,0,4776,4769, - 1,0,0,0,4777,671,1,0,0,0,4778,4779,7,50,0,0,4779,673,1,0,0,0,4780, - 4781,5,259,0,0,4781,4782,5,405,0,0,4782,4788,5,431,0,0,4783,4784, - 5,83,0,0,4784,4785,5,246,0,0,4785,4786,5,405,0,0,4786,4788,3,704, - 352,0,4787,4780,1,0,0,0,4787,4783,1,0,0,0,4788,675,1,0,0,0,4789, - 4794,3,674,337,0,4790,4791,5,397,0,0,4791,4793,3,674,337,0,4792, - 4790,1,0,0,0,4793,4796,1,0,0,0,4794,4792,1,0,0,0,4794,4795,1,0,0, - 0,4795,677,1,0,0,0,4796,4794,1,0,0,0,4797,4801,5,259,0,0,4798,4799, - 5,83,0,0,4799,4801,5,246,0,0,4800,4797,1,0,0,0,4800,4798,1,0,0,0, - 4801,679,1,0,0,0,4802,4805,5,2,0,0,4803,4804,5,387,0,0,4804,4806, - 5,278,0,0,4805,4803,1,0,0,0,4805,4806,1,0,0,0,4806,681,1,0,0,0,4807, - 4808,7,51,0,0,4808,683,1,0,0,0,4809,4810,7,52,0,0,4810,685,1,0,0, - 0,4811,4812,7,53,0,0,4812,687,1,0,0,0,4813,4814,7,54,0,0,4814,689, - 1,0,0,0,4815,4816,7,55,0,0,4816,691,1,0,0,0,4817,4818,7,56,0,0,4818, - 693,1,0,0,0,4819,4820,7,57,0,0,4820,695,1,0,0,0,4821,4822,7,58,0, - 0,4822,697,1,0,0,0,4823,4824,7,59,0,0,4824,699,1,0,0,0,4825,4826, - 7,60,0,0,4826,701,1,0,0,0,4827,4828,1,0,0,0,4828,703,1,0,0,0,4829, - 4834,3,654,327,0,4830,4831,5,395,0,0,4831,4833,3,654,327,0,4832, - 4830,1,0,0,0,4833,4836,1,0,0,0,4834,4832,1,0,0,0,4834,4835,1,0,0, - 0,4835,705,1,0,0,0,4836,4834,1,0,0,0,4837,4842,3,654,327,0,4838, - 4839,5,395,0,0,4839,4841,3,654,327,0,4840,4838,1,0,0,0,4841,4844, - 1,0,0,0,4842,4840,1,0,0,0,4842,4843,1,0,0,0,4843,4855,1,0,0,0,4844, - 4842,1,0,0,0,4845,4846,4,353,5,0,4846,4851,3,654,327,0,4847,4848, - 5,395,0,0,4848,4850,3,702,351,0,4849,4847,1,0,0,0,4850,4853,1,0, - 0,0,4851,4849,1,0,0,0,4851,4852,1,0,0,0,4852,4855,1,0,0,0,4853,4851, - 1,0,0,0,4854,4837,1,0,0,0,4854,4845,1,0,0,0,4855,707,1,0,0,0,4856, - 4857,3,654,327,0,4857,4858,5,411,0,0,4858,4859,7,26,0,0,4859,709, - 1,0,0,0,4860,4865,5,176,0,0,4861,4862,5,211,0,0,4862,4863,5,341, - 0,0,4863,4865,3,704,352,0,4864,4860,1,0,0,0,4864,4861,1,0,0,0,4865, - 711,1,0,0,0,4866,4867,5,8,0,0,4867,4868,5,405,0,0,4868,4879,5,431, - 0,0,4869,4870,5,259,0,0,4870,4871,5,405,0,0,4871,4879,5,431,0,0, - 4872,4873,5,294,0,0,4873,4874,5,405,0,0,4874,4879,5,426,0,0,4875, - 4876,5,240,0,0,4876,4877,5,405,0,0,4877,4879,3,704,352,0,4878,4866, - 1,0,0,0,4878,4869,1,0,0,0,4878,4872,1,0,0,0,4878,4875,1,0,0,0,4879, - 713,1,0,0,0,4880,4885,3,712,356,0,4881,4882,5,397,0,0,4882,4884, - 3,712,356,0,4883,4881,1,0,0,0,4884,4887,1,0,0,0,4885,4883,1,0,0, - 0,4885,4886,1,0,0,0,4886,715,1,0,0,0,4887,4885,1,0,0,0,630,719,726, - 729,735,741,748,758,761,765,780,787,793,798,803,806,830,833,838, - 843,849,853,866,870,874,879,886,890,895,902,906,911,959,966,971, - 994,998,1002,1005,1009,1014,1020,1024,1030,1032,1043,1047,1054,1062, - 1065,1070,1074,1077,1087,1095,1099,1102,1106,1110,1113,1118,1124, - 1129,1134,1138,1149,1151,1155,1165,1169,1175,1178,1185,1190,1198, - 1203,1207,1215,1220,1226,1232,1235,1238,1241,1250,1258,1263,1271, - 1278,1281,1284,1286,1297,1299,1302,1305,1308,1311,1314,1316,1328, - 1334,1342,1344,1354,1387,1392,1396,1400,1407,1414,1420,1424,1427, - 1434,1457,1462,1466,1474,1483,1490,1496,1503,1506,1512,1519,1527, - 1536,1545,1552,1572,1579,1581,1588,1598,1606,1610,1614,1627,1636, - 1652,1656,1661,1666,1669,1672,1675,1678,1681,1686,1695,1699,1706, - 1709,1712,1715,1727,1733,1759,1767,1771,1774,1777,1780,1783,1786, - 1789,1792,1801,1811,1814,1834,1840,1846,1849,1851,1858,1865,1878, - 1883,1892,1900,1908,1921,1934,1950,1954,1969,1975,1978,1981,1984, - 1987,1991,2006,2009,2020,2034,2068,2076,2081,2089,2094,2099,2106, - 2114,2122,2130,2136,2143,2153,2157,2165,2174,2177,2181,2188,2194, - 2198,2204,2208,2220,2229,2240,2244,2251,2263,2273,2276,2283,2289, - 2293,2296,2299,2305,2309,2313,2318,2322,2326,2330,2338,2342,2346, - 2350,2354,2362,2366,2370,2378,2383,2388,2392,2396,2403,2412,2420, - 2432,2450,2453,2459,2485,2488,2494,2502,2510,2523,2530,2533,2536, - 2539,2542,2545,2548,2551,2554,2557,2560,2565,2568,2571,2574,2577, - 2580,2583,2586,2589,2592,2595,2597,2603,2607,2610,2613,2616,2619, - 2622,2629,2633,2636,2639,2642,2645,2648,2655,2658,2666,2670,2677, - 2679,2682,2687,2690,2694,2699,2705,2713,2721,2731,2734,2738,2742, - 2747,2754,2758,2760,2764,2771,2776,2789,2797,2816,2826,2839,2849, - 2853,2857,2863,2870,2877,2886,2893,2913,2916,2930,2945,2949,2969, - 2981,2987,2990,2993,2999,3005,3012,3020,3026,3030,3035,3038,3042, - 3049,3054,3059,3062,3064,3072,3080,3084,3088,3092,3109,3126,3133, - 3142,3147,3150,3153,3157,3172,3186,3189,3200,3204,3207,3210,3214, - 3219,3222,3225,3228,3231,3234,3240,3243,3246,3249,3252,3255,3258, - 3261,3264,3267,3271,3273,3279,3284,3287,3290,3293,3296,3302,3305, - 3308,3311,3314,3317,3320,3323,3326,3329,3333,3335,3337,3342,3347, - 3351,3355,3360,3365,3374,3384,3392,3404,3407,3413,3420,3427,3434, - 3441,3451,3453,3457,3461,3468,3473,3477,3481,3484,3487,3498,3502, - 3504,3507,3520,3523,3526,3538,3541,3548,3557,3562,3564,3566,3583, - 3586,3594,3597,3601,3604,3607,3610,3613,3625,3633,3640,3643,3650, - 3653,3658,3665,3673,3679,3684,3688,3693,3697,3704,3718,3721,3728, - 3736,3746,3749,3758,3767,3770,3776,3779,3784,3787,3800,3806,3808, - 3818,3824,3827,3837,3842,3846,3862,3868,3870,3877,3884,3898,3904, - 3907,3910,3913,3922,3929,3935,3944,3948,3956,3966,3976,3981,3985, - 3991,3996,4001,4008,4012,4015,4020,4023,4027,4032,4043,4045,4054, - 4077,4087,4090,4097,4100,4110,4117,4120,4122,4133,4143,4145,4154, - 4159,4168,4181,4185,4197,4201,4210,4229,4247,4259,4274,4278,4294, - 4301,4315,4320,4330,4332,4340,4348,4356,4364,4372,4380,4391,4395, - 4403,4419,4423,4428,4441,4450,4452,4461,4466,4472,4479,4484,4493, - 4501,4509,4517,4527,4532,4545,4555,4609,4615,4624,4626,4642,4650, - 4654,4656,4662,4667,4684,4710,4715,4717,4745,4762,4767,4776,4787, - 4794,4800,4805,4834,4842,4851,4854,4864,4878,4885 + 15,15,128,128,170,170,1,0,141,142,4,0,73,74,148,149,208,209,392, + 393,2,0,30,30,351,351,2,0,217,217,373,373,2,0,18,18,89,89,2,0,130, + 130,177,177,2,0,214,214,272,272,1,0,80,82,2,0,39,39,376,376,4,0, + 112,112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125,125,350,350, + 2,0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196,196,2,0,426, + 426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241, + 241,292,292,2,0,198,198,268,268,2,0,260,260,292,292,2,0,354,354, + 431,431,2,0,133,133,247,247,2,0,152,152,281,281,1,0,392,393,1,0, + 208,209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1,0,297,298, + 3,0,413,414,418,418,420,420,2,0,412,412,415,417,1,0,413,414,4,0, + 184,184,270,270,286,286,408,411,3,0,184,184,270,270,286,286,2,0, + 7,7,13,13,3,0,7,7,13,13,313,313,4,0,125,125,219,219,350,350,360, + 360,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100,100,131, + 132,151,151,154,154,162,163,184,184,198,198,216,216,228,228,264, + 264,270,270,286,286,311,311,323,324,340,340,357,357,383,383,405, + 417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33, + 34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79, + 79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116,118,121, + 127,130,137,138,142,142,147,150,152,152,155,156,158,160,168,170, + 172,177,182,183,185,187,189,193,195,197,199,202,204,204,206,209, + 211,212,214,215,217,218,220,220,222,223,226,227,232,233,235,236, + 238,240,243,246,252,252,254,255,257,259,261,262,265,267,271,282, + 284,284,287,288,293,298,300,303,305,310,312,312,314,317,319,325, + 327,328,330,330,332,334,339,340,342,342,344,346,349,349,352,353, + 355,355,357,357,360,364,366,368,371,373,375,375,377,382,385,385, + 388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145,145,151, + 151,162,163,198,198,264,264,311,311,337,337,1,0,395,396,2,0,4,4, + 101,101,2,0,9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0, + 94,95,5320,0,639,1,0,0,0,2,646,1,0,0,0,4,651,1,0,0,0,6,685,1,0,0, + 0,8,687,1,0,0,0,10,753,1,0,0,0,12,755,1,0,0,0,14,774,1,0,0,0,16, + 783,1,0,0,0,18,791,1,0,0,0,20,804,1,0,0,0,22,815,1,0,0,0,24,820, + 1,0,0,0,26,831,1,0,0,0,28,890,1,0,0,0,30,892,1,0,0,0,32,895,1,0, + 0,0,34,899,1,0,0,0,36,901,1,0,0,0,38,905,1,0,0,0,40,908,1,0,0,0, + 42,954,1,0,0,0,44,956,1,0,0,0,46,959,1,0,0,0,48,968,1,0,0,0,50,983, + 1,0,0,0,52,995,1,0,0,0,54,1015,1,0,0,0,56,1019,1,0,0,0,58,1026,1, + 0,0,0,60,1051,1,0,0,0,62,1068,1,0,0,0,64,1070,1,0,0,0,66,1072,1, + 0,0,0,68,1252,1,0,0,0,70,1262,1,0,0,0,72,1273,1,0,0,0,74,1275,1, + 0,0,0,76,1279,1,0,0,0,78,1291,1,0,0,0,80,1304,1,0,0,0,82,1323,1, + 0,0,0,84,1343,1,0,0,0,86,1348,1,0,0,0,88,1351,1,0,0,0,90,1355,1, + 0,0,0,92,1362,1,0,0,0,94,1371,1,0,0,0,96,1377,1,0,0,0,98,1379,1, + 0,0,0,100,1393,1,0,0,0,102,1415,1,0,0,0,104,1417,1,0,0,0,106,1425, + 1,0,0,0,108,1432,1,0,0,0,110,1434,1,0,0,0,112,1448,1,0,0,0,114,1455, + 1,0,0,0,116,1457,1,0,0,0,118,1470,1,0,0,0,120,1472,1,0,0,0,122,1494, + 1,0,0,0,124,1504,1,0,0,0,126,1507,1,0,0,0,128,1518,1,0,0,0,130,1526, + 1,0,0,0,132,1569,1,0,0,0,134,1578,1,0,0,0,136,1606,1,0,0,0,138,1619, + 1,0,0,0,140,1621,1,0,0,0,142,1627,1,0,0,0,144,1630,1,0,0,0,146,1636, + 1,0,0,0,148,1655,1,0,0,0,150,1657,1,0,0,0,152,1691,1,0,0,0,154,1704, + 1,0,0,0,156,1709,1,0,0,0,158,1720,1,0,0,0,160,1737,1,0,0,0,162,1739, + 1,0,0,0,164,1744,1,0,0,0,166,1751,1,0,0,0,168,1753,1,0,0,0,170,1756, + 1,0,0,0,172,1759,1,0,0,0,174,1773,1,0,0,0,176,1781,1,0,0,0,178,1802, + 1,0,0,0,180,1804,1,0,0,0,182,1821,1,0,0,0,184,1835,1,0,0,0,186,1837, + 1,0,0,0,188,1846,1,0,0,0,190,1864,1,0,0,0,192,1867,1,0,0,0,194,1880, + 1,0,0,0,196,1882,1,0,0,0,198,1886,1,0,0,0,200,1894,1,0,0,0,202,1898, + 1,0,0,0,204,1907,1,0,0,0,206,1913,1,0,0,0,208,1919,1,0,0,0,210,1924, + 1,0,0,0,212,1970,1,0,0,0,214,1972,1,0,0,0,216,1980,1,0,0,0,218,1988, + 1,0,0,0,220,1996,1,0,0,0,222,2007,1,0,0,0,224,2009,1,0,0,0,226,2014, + 1,0,0,0,228,2016,1,0,0,0,230,2018,1,0,0,0,232,2031,1,0,0,0,234,2039, + 1,0,0,0,236,2048,1,0,0,0,238,2052,1,0,0,0,240,2057,1,0,0,0,242,2061, + 1,0,0,0,244,2067,1,0,0,0,246,2075,1,0,0,0,248,2077,1,0,0,0,250,2080, + 1,0,0,0,252,2087,1,0,0,0,254,2098,1,0,0,0,256,2111,1,0,0,0,258,2113, + 1,0,0,0,260,2121,1,0,0,0,262,2125,1,0,0,0,264,2133,1,0,0,0,266,2135, + 1,0,0,0,268,2138,1,0,0,0,270,2145,1,0,0,0,272,2153,1,0,0,0,274,2160, + 1,0,0,0,276,2168,1,0,0,0,278,2176,1,0,0,0,280,2180,1,0,0,0,282,2182, + 1,0,0,0,284,2193,1,0,0,0,286,2197,1,0,0,0,288,2209,1,0,0,0,290,2225, + 1,0,0,0,292,2230,1,0,0,0,294,2232,1,0,0,0,296,2236,1,0,0,0,298,2243, + 1,0,0,0,300,2256,1,0,0,0,302,2295,1,0,0,0,304,2297,1,0,0,0,306,2302, + 1,0,0,0,308,2307,1,0,0,0,310,2314,1,0,0,0,312,2319,1,0,0,0,314,2324, + 1,0,0,0,316,2330,1,0,0,0,318,2332,1,0,0,0,320,2341,1,0,0,0,322,2353, + 1,0,0,0,324,2433,1,0,0,0,326,2439,1,0,0,0,328,2465,1,0,0,0,330,2467, + 1,0,0,0,332,2489,1,0,0,0,334,2494,1,0,0,0,336,2498,1,0,0,0,338,2530, + 1,0,0,0,340,2532,1,0,0,0,342,2543,1,0,0,0,344,2549,1,0,0,0,346,2551, + 1,0,0,0,348,2583,1,0,0,0,350,2590,1,0,0,0,352,2596,1,0,0,0,354,2602, + 1,0,0,0,356,2617,1,0,0,0,358,2627,1,0,0,0,360,2635,1,0,0,0,362,2757, + 1,0,0,0,364,2892,1,0,0,0,366,2920,1,0,0,0,368,2937,1,0,0,0,370,2954, + 1,0,0,0,372,2956,1,0,0,0,374,2959,1,0,0,0,376,2985,1,0,0,0,378,2990, + 1,0,0,0,380,3017,1,0,0,0,382,3028,1,0,0,0,384,3030,1,0,0,0,386,3166, + 1,0,0,0,388,3189,1,0,0,0,390,3201,1,0,0,0,392,3206,1,0,0,0,394,3214, + 1,0,0,0,396,3222,1,0,0,0,398,3234,1,0,0,0,400,3268,1,0,0,0,402,3270, + 1,0,0,0,404,3295,1,0,0,0,406,3304,1,0,0,0,408,3334,1,0,0,0,410,3393, + 1,0,0,0,412,3395,1,0,0,0,414,3424,1,0,0,0,416,3426,1,0,0,0,418,3442, + 1,0,0,0,420,3454,1,0,0,0,422,3456,1,0,0,0,424,3460,1,0,0,0,426,3470, + 1,0,0,0,428,3480,1,0,0,0,430,3485,1,0,0,0,432,3492,1,0,0,0,434,3496, + 1,0,0,0,436,3515,1,0,0,0,438,3520,1,0,0,0,440,3522,1,0,0,0,442,3526, + 1,0,0,0,444,3552,1,0,0,0,446,3557,1,0,0,0,448,3578,1,0,0,0,450,3583, + 1,0,0,0,452,3614,1,0,0,0,454,3616,1,0,0,0,456,3642,1,0,0,0,458,3675, + 1,0,0,0,460,3677,1,0,0,0,462,3679,1,0,0,0,464,3681,1,0,0,0,466,3708, + 1,0,0,0,468,3710,1,0,0,0,470,3718,1,0,0,0,472,3744,1,0,0,0,474,3746, + 1,0,0,0,476,3766,1,0,0,0,478,3768,1,0,0,0,480,3779,1,0,0,0,482,3792, + 1,0,0,0,484,3827,1,0,0,0,486,3829,1,0,0,0,488,3834,1,0,0,0,490,3837, + 1,0,0,0,492,3859,1,0,0,0,494,3861,1,0,0,0,496,3867,1,0,0,0,498,3880, + 1,0,0,0,500,3890,1,0,0,0,502,3894,1,0,0,0,504,3898,1,0,0,0,506,3902, + 1,0,0,0,508,3980,1,0,0,0,510,3982,1,0,0,0,512,3986,1,0,0,0,514,3991, + 1,0,0,0,516,3993,1,0,0,0,518,4004,1,0,0,0,520,4021,1,0,0,0,522,4037, + 1,0,0,0,524,4046,1,0,0,0,526,4061,1,0,0,0,528,4091,1,0,0,0,530,4093, + 1,0,0,0,532,4110,1,0,0,0,534,4124,1,0,0,0,536,4126,1,0,0,0,538,4145, + 1,0,0,0,540,4150,1,0,0,0,542,4165,1,0,0,0,544,4173,1,0,0,0,546,4181, + 1,0,0,0,548,4189,1,0,0,0,550,4197,1,0,0,0,552,4205,1,0,0,0,554,4213, + 1,0,0,0,556,4217,1,0,0,0,558,4225,1,0,0,0,560,4237,1,0,0,0,562,4256, + 1,0,0,0,564,4258,1,0,0,0,566,4269,1,0,0,0,568,4271,1,0,0,0,570,4289, + 1,0,0,0,572,4294,1,0,0,0,574,4302,1,0,0,0,576,4310,1,0,0,0,578,4314, + 1,0,0,0,580,4326,1,0,0,0,582,4331,1,0,0,0,584,4342,1,0,0,0,586,4349, + 1,0,0,0,588,4351,1,0,0,0,590,4355,1,0,0,0,592,4357,1,0,0,0,594,4362, + 1,0,0,0,596,4364,1,0,0,0,598,4366,1,0,0,0,600,4368,1,0,0,0,602,4376, + 1,0,0,0,604,4437,1,0,0,0,606,4604,1,0,0,0,608,4606,1,0,0,0,610,4615, + 1,0,0,0,612,4617,1,0,0,0,614,4628,1,0,0,0,616,4630,1,0,0,0,618,4635, + 1,0,0,0,620,4637,1,0,0,0,622,4639,1,0,0,0,624,4641,1,0,0,0,626,4666, + 1,0,0,0,628,4668,1,0,0,0,630,4676,1,0,0,0,632,4690,1,0,0,0,634,4692, + 1,0,0,0,636,638,3,2,1,0,637,636,1,0,0,0,638,641,1,0,0,0,639,637, + 1,0,0,0,639,640,1,0,0,0,640,642,1,0,0,0,641,639,1,0,0,0,642,643, + 5,0,0,1,643,1,1,0,0,0,644,647,3,4,2,0,645,647,3,10,5,0,646,644,1, + 0,0,0,646,645,1,0,0,0,647,649,1,0,0,0,648,650,5,398,0,0,649,648, + 1,0,0,0,649,650,1,0,0,0,650,3,1,0,0,0,651,661,5,119,0,0,652,654, + 3,6,3,0,653,652,1,0,0,0,654,657,1,0,0,0,655,653,1,0,0,0,655,656, + 1,0,0,0,656,658,1,0,0,0,657,655,1,0,0,0,658,662,3,10,5,0,659,660, + 5,284,0,0,660,662,3,314,157,0,661,655,1,0,0,0,661,659,1,0,0,0,662, + 5,1,0,0,0,663,686,5,122,0,0,664,686,5,138,0,0,665,686,5,88,0,0,666, + 668,5,37,0,0,667,669,7,0,0,0,668,667,1,0,0,0,668,669,1,0,0,0,669, + 686,1,0,0,0,670,686,5,192,0,0,671,686,5,21,0,0,672,686,5,10,0,0, + 673,686,5,275,0,0,674,686,5,191,0,0,675,686,5,19,0,0,676,678,5,377, + 0,0,677,679,5,225,0,0,678,677,1,0,0,0,678,679,1,0,0,0,679,681,1, + 0,0,0,680,682,3,8,4,0,681,680,1,0,0,0,681,682,1,0,0,0,682,686,1, + 0,0,0,683,686,5,79,0,0,684,686,5,78,0,0,685,663,1,0,0,0,685,664, + 1,0,0,0,685,665,1,0,0,0,685,666,1,0,0,0,685,670,1,0,0,0,685,671, + 1,0,0,0,685,672,1,0,0,0,685,673,1,0,0,0,685,674,1,0,0,0,685,675, + 1,0,0,0,685,676,1,0,0,0,685,683,1,0,0,0,685,684,1,0,0,0,686,7,1, + 0,0,0,687,688,7,1,0,0,688,9,1,0,0,0,689,754,3,314,157,0,690,754, + 3,12,6,0,691,754,3,16,8,0,692,754,3,18,9,0,693,754,3,20,10,0,694, + 754,3,24,12,0,695,696,5,277,0,0,696,697,5,320,0,0,697,700,3,420, + 210,0,698,699,5,387,0,0,699,701,3,196,98,0,700,698,1,0,0,0,700,701, + 1,0,0,0,701,754,1,0,0,0,702,754,3,28,14,0,703,704,5,86,0,0,704,705, + 5,139,0,0,705,707,3,426,213,0,706,708,3,444,222,0,707,706,1,0,0, + 0,707,708,1,0,0,0,708,754,1,0,0,0,709,710,5,365,0,0,710,711,3,426, + 213,0,711,713,3,346,173,0,712,714,3,444,222,0,713,712,1,0,0,0,713, + 714,1,0,0,0,714,754,1,0,0,0,715,754,3,348,174,0,716,718,5,203,0, + 0,717,719,5,436,0,0,718,717,1,0,0,0,718,719,1,0,0,0,719,720,1,0, + 0,0,720,721,5,166,0,0,721,726,3,426,213,0,722,724,5,17,0,0,723,722, + 1,0,0,0,723,724,1,0,0,0,724,725,1,0,0,0,725,727,3,590,295,0,726, + 723,1,0,0,0,726,727,1,0,0,0,727,728,1,0,0,0,728,729,5,370,0,0,729, + 730,3,404,202,0,730,731,5,224,0,0,731,732,3,536,268,0,732,733,3, + 352,176,0,733,754,1,0,0,0,734,735,5,249,0,0,735,736,3,590,295,0, + 736,737,5,139,0,0,737,738,3,314,157,0,738,754,1,0,0,0,739,740,5, + 115,0,0,740,741,3,590,295,0,741,742,5,370,0,0,742,743,3,262,131, + 0,743,754,1,0,0,0,744,745,5,304,0,0,745,746,3,600,300,0,746,750, + 5,405,0,0,747,749,9,0,0,0,748,747,1,0,0,0,749,752,1,0,0,0,750,751, + 1,0,0,0,750,748,1,0,0,0,751,754,1,0,0,0,752,750,1,0,0,0,753,689, + 1,0,0,0,753,690,1,0,0,0,753,691,1,0,0,0,753,692,1,0,0,0,753,693, + 1,0,0,0,753,694,1,0,0,0,753,695,1,0,0,0,753,702,1,0,0,0,753,703, + 1,0,0,0,753,709,1,0,0,0,753,715,1,0,0,0,753,716,1,0,0,0,753,734, + 1,0,0,0,753,739,1,0,0,0,753,744,1,0,0,0,754,11,1,0,0,0,755,756,5, + 187,0,0,756,758,5,66,0,0,757,759,5,188,0,0,758,757,1,0,0,0,758,759, + 1,0,0,0,759,760,1,0,0,0,760,761,5,158,0,0,761,763,5,426,0,0,762, + 764,5,235,0,0,763,762,1,0,0,0,763,764,1,0,0,0,764,765,1,0,0,0,765, + 766,5,166,0,0,766,767,5,329,0,0,767,772,3,576,288,0,768,769,5,160, + 0,0,769,770,5,426,0,0,770,771,5,301,0,0,771,773,5,426,0,0,772,768, + 1,0,0,0,772,773,1,0,0,0,773,13,1,0,0,0,774,776,5,134,0,0,775,777, + 5,204,0,0,776,775,1,0,0,0,776,777,1,0,0,0,777,778,1,0,0,0,778,779, + 5,279,0,0,779,780,5,399,0,0,780,781,5,426,0,0,781,782,5,400,0,0, + 782,15,1,0,0,0,783,784,5,120,0,0,784,785,5,329,0,0,785,786,3,576, + 288,0,786,787,5,341,0,0,787,789,5,426,0,0,788,790,3,14,7,0,789,788, + 1,0,0,0,789,790,1,0,0,0,790,17,1,0,0,0,791,797,5,153,0,0,792,794, + 5,123,0,0,793,792,1,0,0,0,793,794,1,0,0,0,794,795,1,0,0,0,795,796, + 5,329,0,0,796,798,3,576,288,0,797,793,1,0,0,0,797,798,1,0,0,0,798, + 799,1,0,0,0,799,800,5,139,0,0,800,802,5,426,0,0,801,803,3,372,186, + 0,802,801,1,0,0,0,802,803,1,0,0,0,803,19,1,0,0,0,804,805,5,277,0, + 0,805,806,5,103,0,0,806,809,3,22,11,0,807,808,5,278,0,0,808,810, + 3,22,11,0,809,807,1,0,0,0,809,810,1,0,0,0,810,813,1,0,0,0,811,812, + 5,387,0,0,812,814,3,196,98,0,813,811,1,0,0,0,813,814,1,0,0,0,814, + 21,1,0,0,0,815,818,3,420,210,0,816,817,5,395,0,0,817,819,3,26,13, + 0,818,816,1,0,0,0,818,819,1,0,0,0,819,23,1,0,0,0,820,821,5,277,0, + 0,821,822,5,187,0,0,822,825,3,22,11,0,823,824,5,166,0,0,824,826, + 3,420,210,0,825,823,1,0,0,0,825,826,1,0,0,0,826,829,1,0,0,0,827, + 828,5,387,0,0,828,830,3,196,98,0,829,827,1,0,0,0,829,830,1,0,0,0, + 830,25,1,0,0,0,831,834,5,426,0,0,832,833,5,395,0,0,833,835,5,426, + 0,0,834,832,1,0,0,0,834,835,1,0,0,0,835,27,1,0,0,0,836,891,3,42, + 21,0,837,891,3,44,22,0,838,891,3,46,23,0,839,891,3,384,192,0,840, + 891,3,50,25,0,841,891,3,48,24,0,842,891,3,360,180,0,843,891,3,58, + 29,0,844,891,3,66,33,0,845,891,3,116,58,0,846,891,3,134,67,0,847, + 891,3,150,75,0,848,891,3,152,76,0,849,891,3,156,78,0,850,891,3,154, + 77,0,851,891,3,148,74,0,852,891,3,120,60,0,853,891,3,126,63,0,854, + 891,3,122,61,0,855,891,3,124,62,0,856,891,3,128,64,0,857,891,3,130, + 65,0,858,891,3,132,66,0,859,891,3,60,30,0,860,891,3,70,35,0,861, + 891,3,72,36,0,862,891,3,74,37,0,863,891,3,76,38,0,864,891,3,78,39, + 0,865,891,3,92,46,0,866,891,3,84,42,0,867,891,3,94,47,0,868,891, + 3,86,43,0,869,891,3,80,40,0,870,891,3,82,41,0,871,891,3,90,45,0, + 872,891,3,88,44,0,873,874,5,1,0,0,874,876,7,2,0,0,875,877,5,431, + 0,0,876,875,1,0,0,0,877,878,1,0,0,0,878,876,1,0,0,0,878,879,1,0, + 0,0,879,891,1,0,0,0,880,881,5,176,0,0,881,883,5,258,0,0,882,884, + 5,426,0,0,883,882,1,0,0,0,884,885,1,0,0,0,885,883,1,0,0,0,885,886, + 1,0,0,0,886,891,1,0,0,0,887,891,3,606,303,0,888,891,3,386,193,0, + 889,891,3,388,194,0,890,836,1,0,0,0,890,837,1,0,0,0,890,838,1,0, + 0,0,890,839,1,0,0,0,890,840,1,0,0,0,890,841,1,0,0,0,890,842,1,0, + 0,0,890,843,1,0,0,0,890,844,1,0,0,0,890,845,1,0,0,0,890,846,1,0, + 0,0,890,847,1,0,0,0,890,848,1,0,0,0,890,849,1,0,0,0,890,850,1,0, + 0,0,890,851,1,0,0,0,890,852,1,0,0,0,890,853,1,0,0,0,890,854,1,0, + 0,0,890,855,1,0,0,0,890,856,1,0,0,0,890,857,1,0,0,0,890,858,1,0, + 0,0,890,859,1,0,0,0,890,860,1,0,0,0,890,861,1,0,0,0,890,862,1,0, + 0,0,890,863,1,0,0,0,890,864,1,0,0,0,890,865,1,0,0,0,890,866,1,0, + 0,0,890,867,1,0,0,0,890,868,1,0,0,0,890,869,1,0,0,0,890,870,1,0, + 0,0,890,871,1,0,0,0,890,872,1,0,0,0,890,873,1,0,0,0,890,880,1,0, + 0,0,890,887,1,0,0,0,890,888,1,0,0,0,890,889,1,0,0,0,891,29,1,0,0, + 0,892,893,5,151,0,0,893,894,5,117,0,0,894,31,1,0,0,0,895,896,5,151, + 0,0,896,897,5,216,0,0,897,898,5,117,0,0,898,33,1,0,0,0,899,900,7, + 3,0,0,900,35,1,0,0,0,901,902,5,321,0,0,902,903,5,17,0,0,903,904, + 5,92,0,0,904,37,1,0,0,0,905,906,3,618,309,0,906,907,5,284,0,0,907, + 39,1,0,0,0,908,909,3,620,310,0,909,910,5,284,0,0,910,41,1,0,0,0, + 911,913,5,58,0,0,912,914,5,273,0,0,913,912,1,0,0,0,913,914,1,0,0, + 0,914,915,1,0,0,0,915,917,3,64,32,0,916,918,3,32,16,0,917,916,1, + 0,0,0,917,918,1,0,0,0,918,919,1,0,0,0,919,922,3,422,211,0,920,921, + 5,47,0,0,921,923,5,426,0,0,922,920,1,0,0,0,922,923,1,0,0,0,923,925, + 1,0,0,0,924,926,3,372,186,0,925,924,1,0,0,0,925,926,1,0,0,0,926, + 929,1,0,0,0,927,928,5,196,0,0,928,930,5,426,0,0,929,927,1,0,0,0, + 929,930,1,0,0,0,930,934,1,0,0,0,931,932,5,387,0,0,932,933,5,76,0, + 0,933,935,3,196,98,0,934,931,1,0,0,0,934,935,1,0,0,0,935,955,1,0, + 0,0,936,937,5,58,0,0,937,938,5,273,0,0,938,940,3,64,32,0,939,941, + 3,32,16,0,940,939,1,0,0,0,940,941,1,0,0,0,941,942,1,0,0,0,942,945, + 3,422,211,0,943,944,5,47,0,0,944,946,5,426,0,0,945,943,1,0,0,0,945, + 946,1,0,0,0,946,947,1,0,0,0,947,948,5,370,0,0,948,952,3,420,210, + 0,949,950,5,387,0,0,950,951,5,76,0,0,951,953,3,196,98,0,952,949, + 1,0,0,0,952,953,1,0,0,0,953,955,1,0,0,0,954,911,1,0,0,0,954,936, + 1,0,0,0,955,43,1,0,0,0,956,957,5,368,0,0,957,958,3,420,210,0,958, + 45,1,0,0,0,959,960,5,101,0,0,960,962,3,64,32,0,961,963,3,30,15,0, + 962,961,1,0,0,0,962,963,1,0,0,0,963,964,1,0,0,0,964,966,3,420,210, + 0,965,967,3,34,17,0,966,965,1,0,0,0,966,967,1,0,0,0,967,47,1,0,0, + 0,968,970,5,351,0,0,969,971,5,329,0,0,970,969,1,0,0,0,970,971,1, + 0,0,0,971,972,1,0,0,0,972,978,3,576,288,0,973,974,5,46,0,0,974,975, + 5,399,0,0,975,976,3,220,110,0,976,977,5,400,0,0,977,979,1,0,0,0, + 978,973,1,0,0,0,978,979,1,0,0,0,979,981,1,0,0,0,980,982,5,135,0, + 0,981,980,1,0,0,0,981,982,1,0,0,0,982,49,1,0,0,0,983,984,5,101,0, + 0,984,986,5,329,0,0,985,987,3,30,15,0,986,985,1,0,0,0,986,987,1, + 0,0,0,987,988,1,0,0,0,988,990,3,426,213,0,989,991,5,255,0,0,990, + 989,1,0,0,0,990,991,1,0,0,0,991,993,1,0,0,0,992,994,3,14,7,0,993, + 992,1,0,0,0,993,994,1,0,0,0,994,51,1,0,0,0,995,998,3,590,295,0,996, + 997,5,395,0,0,997,999,3,590,295,0,998,996,1,0,0,0,998,999,1,0,0, + 0,999,1013,1,0,0,0,1000,1010,3,590,295,0,1001,1006,5,395,0,0,1002, + 1007,5,104,0,0,1003,1007,5,175,0,0,1004,1007,5,375,0,0,1005,1007, + 3,590,295,0,1006,1002,1,0,0,0,1006,1003,1,0,0,0,1006,1004,1,0,0, + 0,1006,1005,1,0,0,0,1007,1009,1,0,0,0,1008,1001,1,0,0,0,1009,1012, + 1,0,0,0,1010,1008,1,0,0,0,1010,1011,1,0,0,0,1011,1014,1,0,0,0,1012, + 1010,1,0,0,0,1013,1000,1,0,0,0,1013,1014,1,0,0,0,1014,53,1,0,0,0, + 1015,1017,3,52,26,0,1016,1018,3,578,289,0,1017,1016,1,0,0,0,1017, + 1018,1,0,0,0,1018,55,1,0,0,0,1019,1021,3,424,212,0,1020,1022,3,578, + 289,0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1024,1,0,0,0,1023, + 1025,3,230,115,0,1024,1023,1,0,0,0,1024,1025,1,0,0,0,1025,57,1,0, + 0,0,1026,1049,7,4,0,0,1027,1029,3,64,32,0,1028,1030,5,122,0,0,1029, + 1028,1,0,0,0,1029,1030,1,0,0,0,1030,1031,1,0,0,0,1031,1032,3,420, + 210,0,1032,1050,1,0,0,0,1033,1035,5,69,0,0,1034,1036,5,122,0,0,1035, + 1034,1,0,0,0,1035,1036,1,0,0,0,1036,1037,1,0,0,0,1037,1050,3,420, + 210,0,1038,1040,5,141,0,0,1039,1041,5,122,0,0,1040,1039,1,0,0,0, + 1040,1041,1,0,0,0,1041,1042,1,0,0,0,1042,1050,3,512,256,0,1043,1046, + 5,138,0,0,1044,1046,5,122,0,0,1045,1043,1,0,0,0,1045,1044,1,0,0, + 0,1046,1047,1,0,0,0,1047,1050,3,56,28,0,1048,1050,3,56,28,0,1049, + 1027,1,0,0,0,1049,1033,1,0,0,0,1049,1038,1,0,0,0,1049,1045,1,0,0, + 0,1049,1048,1,0,0,0,1050,59,1,0,0,0,1051,1052,5,10,0,0,1052,1053, + 5,329,0,0,1053,1066,3,576,288,0,1054,1055,5,52,0,0,1055,1062,5,319, + 0,0,1056,1063,5,215,0,0,1057,1058,5,134,0,0,1058,1060,5,46,0,0,1059, + 1061,3,220,110,0,1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061,1063,1, + 0,0,0,1062,1056,1,0,0,0,1062,1057,1,0,0,0,1062,1063,1,0,0,0,1063, + 1067,1,0,0,0,1064,1065,5,33,0,0,1065,1067,5,204,0,0,1066,1054,1, + 0,0,0,1066,1064,1,0,0,0,1067,61,1,0,0,0,1068,1069,7,5,0,0,1069,63, + 1,0,0,0,1070,1071,7,6,0,0,1071,65,1,0,0,0,1072,1242,5,308,0,0,1073, + 1076,7,7,0,0,1074,1075,5,184,0,0,1075,1077,3,166,83,0,1076,1074, + 1,0,0,0,1076,1077,1,0,0,0,1077,1243,1,0,0,0,1078,1080,5,122,0,0, + 1079,1078,1,0,0,0,1079,1080,1,0,0,0,1080,1081,1,0,0,0,1081,1085, + 5,330,0,0,1082,1083,3,62,31,0,1083,1084,3,420,210,0,1084,1086,1, + 0,0,0,1085,1082,1,0,0,0,1085,1086,1,0,0,0,1086,1088,1,0,0,0,1087, + 1089,3,68,34,0,1088,1087,1,0,0,0,1088,1089,1,0,0,0,1089,1243,1,0, + 0,0,1090,1094,5,379,0,0,1091,1092,3,62,31,0,1092,1093,3,420,210, + 0,1093,1095,1,0,0,0,1094,1091,1,0,0,0,1094,1095,1,0,0,0,1095,1099, + 1,0,0,0,1096,1097,5,184,0,0,1097,1100,3,166,83,0,1098,1100,3,166, + 83,0,1099,1096,1,0,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100, + 1243,1,0,0,0,1101,1102,5,202,0,0,1102,1106,5,379,0,0,1103,1104,3, + 62,31,0,1104,1105,3,420,210,0,1105,1107,1,0,0,0,1106,1103,1,0,0, + 0,1106,1107,1,0,0,0,1107,1111,1,0,0,0,1108,1109,5,184,0,0,1109,1112, + 3,166,83,0,1110,1112,3,166,83,0,1111,1108,1,0,0,0,1111,1110,1,0, + 0,0,1111,1112,1,0,0,0,1112,1243,1,0,0,0,1113,1115,5,315,0,0,1114, + 1113,1,0,0,0,1114,1115,1,0,0,0,1115,1116,1,0,0,0,1116,1117,5,46, + 0,0,1117,1118,3,62,31,0,1118,1122,3,424,212,0,1119,1120,3,62,31, + 0,1120,1121,3,420,210,0,1121,1123,1,0,0,0,1122,1119,1,0,0,0,1122, + 1123,1,0,0,0,1123,1127,1,0,0,0,1124,1125,5,184,0,0,1125,1128,3,166, + 83,0,1126,1128,3,166,83,0,1127,1124,1,0,0,0,1127,1126,1,0,0,0,1127, + 1128,1,0,0,0,1128,1243,1,0,0,0,1129,1132,5,142,0,0,1130,1131,5,184, + 0,0,1131,1133,3,512,256,0,1132,1130,1,0,0,0,1132,1133,1,0,0,0,1133, + 1243,1,0,0,0,1134,1135,5,239,0,0,1135,1137,3,424,212,0,1136,1138, + 3,578,289,0,1137,1136,1,0,0,0,1137,1138,1,0,0,0,1138,1140,1,0,0, + 0,1139,1141,3,444,222,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0,1141, + 1143,1,0,0,0,1142,1144,3,498,249,0,1143,1142,1,0,0,0,1143,1144,1, + 0,0,0,1144,1146,1,0,0,0,1145,1147,3,340,170,0,1146,1145,1,0,0,0, + 1146,1147,1,0,0,0,1147,1243,1,0,0,0,1148,1154,5,58,0,0,1149,1150, + 3,64,32,0,1150,1151,3,420,210,0,1151,1155,1,0,0,0,1152,1153,5,329, + 0,0,1153,1155,3,426,213,0,1154,1149,1,0,0,0,1154,1152,1,0,0,0,1155, + 1243,1,0,0,0,1156,1157,5,329,0,0,1157,1161,5,122,0,0,1158,1159,3, + 62,31,0,1159,1160,3,420,210,0,1160,1162,1,0,0,0,1161,1158,1,0,0, + 0,1161,1162,1,0,0,0,1162,1163,1,0,0,0,1163,1164,5,184,0,0,1164,1166, + 3,166,83,0,1165,1167,3,578,289,0,1166,1165,1,0,0,0,1166,1167,1,0, + 0,0,1167,1243,1,0,0,0,1168,1169,5,332,0,0,1169,1173,3,426,213,0, + 1170,1171,5,399,0,0,1171,1172,5,426,0,0,1172,1174,5,400,0,0,1173, + 1170,1,0,0,0,1173,1174,1,0,0,0,1174,1243,1,0,0,0,1175,1187,5,191, + 0,0,1176,1177,3,64,32,0,1177,1179,3,420,210,0,1178,1180,5,122,0, + 0,1179,1178,1,0,0,0,1179,1180,1,0,0,0,1180,1188,1,0,0,0,1181,1183, + 3,54,27,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,1185,1,0,0,0, + 1184,1186,5,122,0,0,1185,1184,1,0,0,0,1185,1186,1,0,0,0,1186,1188, + 1,0,0,0,1187,1176,1,0,0,0,1187,1182,1,0,0,0,1188,1243,1,0,0,0,1189, + 1219,5,50,0,0,1190,1191,5,51,0,0,1191,1192,5,405,0,0,1192,1220,5, + 431,0,0,1193,1194,3,64,32,0,1194,1195,3,420,210,0,1195,1200,1,0, + 0,0,1196,1198,3,54,27,0,1197,1196,1,0,0,0,1197,1198,1,0,0,0,1198, + 1200,1,0,0,0,1199,1193,1,0,0,0,1199,1197,1,0,0,0,1200,1203,1,0,0, + 0,1201,1202,5,246,0,0,1202,1204,5,426,0,0,1203,1201,1,0,0,0,1203, + 1204,1,0,0,0,1204,1207,1,0,0,0,1205,1206,5,352,0,0,1206,1208,5,426, + 0,0,1207,1205,1,0,0,0,1207,1208,1,0,0,0,1208,1211,1,0,0,0,1209,1210, + 5,320,0,0,1210,1212,5,426,0,0,1211,1209,1,0,0,0,1211,1212,1,0,0, + 0,1212,1214,1,0,0,0,1213,1215,3,498,249,0,1214,1213,1,0,0,0,1214, + 1215,1,0,0,0,1215,1217,1,0,0,0,1216,1218,3,340,170,0,1217,1216,1, + 0,0,0,1217,1218,1,0,0,0,1218,1220,1,0,0,0,1219,1190,1,0,0,0,1219, + 1199,1,0,0,0,1220,1243,1,0,0,0,1221,1243,5,346,0,0,1222,1223,5,54, + 0,0,1223,1243,5,426,0,0,1224,1228,5,280,0,0,1225,1226,5,243,0,0, + 1226,1229,3,590,295,0,1227,1229,5,244,0,0,1228,1225,1,0,0,0,1228, + 1227,1,0,0,0,1229,1243,1,0,0,0,1230,1243,5,70,0,0,1231,1233,5,138, + 0,0,1232,1231,1,0,0,0,1232,1233,1,0,0,0,1233,1234,1,0,0,0,1234,1235, + 7,8,0,0,1235,1236,5,224,0,0,1236,1240,3,426,213,0,1237,1238,3,62, + 31,0,1238,1239,3,420,210,0,1239,1241,1,0,0,0,1240,1237,1,0,0,0,1240, + 1241,1,0,0,0,1241,1243,1,0,0,0,1242,1073,1,0,0,0,1242,1079,1,0,0, + 0,1242,1090,1,0,0,0,1242,1101,1,0,0,0,1242,1114,1,0,0,0,1242,1129, + 1,0,0,0,1242,1134,1,0,0,0,1242,1148,1,0,0,0,1242,1156,1,0,0,0,1242, + 1168,1,0,0,0,1242,1175,1,0,0,0,1242,1189,1,0,0,0,1242,1221,1,0,0, + 0,1242,1222,1,0,0,0,1242,1224,1,0,0,0,1242,1230,1,0,0,0,1242,1232, + 1,0,0,0,1243,67,1,0,0,0,1244,1245,5,384,0,0,1245,1246,3,590,295, + 0,1246,1247,5,405,0,0,1247,1248,5,426,0,0,1248,1253,1,0,0,0,1249, + 1250,5,184,0,0,1250,1253,3,166,83,0,1251,1253,3,166,83,0,1252,1244, + 1,0,0,0,1252,1249,1,0,0,0,1252,1251,1,0,0,0,1253,69,1,0,0,0,1254, + 1255,5,190,0,0,1255,1256,5,329,0,0,1256,1257,3,576,288,0,1257,1258, + 7,9,0,0,1258,1263,1,0,0,0,1259,1260,5,361,0,0,1260,1261,5,329,0, + 0,1261,1263,3,576,288,0,1262,1254,1,0,0,0,1262,1259,1,0,0,0,1263, + 71,1,0,0,0,1264,1265,5,190,0,0,1265,1266,3,64,32,0,1266,1267,3,420, + 210,0,1267,1268,7,9,0,0,1268,1274,1,0,0,0,1269,1270,5,361,0,0,1270, + 1271,3,64,32,0,1271,1272,3,420,210,0,1272,1274,1,0,0,0,1273,1264, + 1,0,0,0,1273,1269,1,0,0,0,1274,73,1,0,0,0,1275,1276,7,10,0,0,1276, + 1277,5,287,0,0,1277,1278,3,590,295,0,1278,75,1,0,0,0,1279,1280,5, + 143,0,0,1280,1282,3,104,52,0,1281,1283,3,98,49,0,1282,1281,1,0,0, + 0,1282,1283,1,0,0,0,1283,1284,1,0,0,0,1284,1285,5,341,0,0,1285,1289, + 3,110,55,0,1286,1287,5,387,0,0,1287,1288,5,143,0,0,1288,1290,5,227, + 0,0,1289,1286,1,0,0,0,1289,1290,1,0,0,0,1290,77,1,0,0,0,1291,1295, + 5,283,0,0,1292,1293,5,143,0,0,1293,1294,5,227,0,0,1294,1296,5,134, + 0,0,1295,1292,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1299, + 3,104,52,0,1298,1300,3,98,49,0,1299,1298,1,0,0,0,1299,1300,1,0,0, + 0,1300,1301,1,0,0,0,1301,1302,5,139,0,0,1302,1303,3,110,55,0,1303, + 79,1,0,0,0,1304,1306,5,143,0,0,1305,1307,5,287,0,0,1306,1305,1,0, + 0,0,1306,1307,1,0,0,0,1307,1308,1,0,0,0,1308,1313,3,590,295,0,1309, + 1310,5,397,0,0,1310,1312,3,590,295,0,1311,1309,1,0,0,0,1312,1315, + 1,0,0,0,1313,1311,1,0,0,0,1313,1314,1,0,0,0,1314,1316,1,0,0,0,1315, + 1313,1,0,0,0,1316,1317,5,341,0,0,1317,1321,3,110,55,0,1318,1319, + 5,387,0,0,1319,1320,5,5,0,0,1320,1322,5,227,0,0,1321,1318,1,0,0, + 0,1321,1322,1,0,0,0,1322,81,1,0,0,0,1323,1327,5,283,0,0,1324,1325, + 5,5,0,0,1325,1326,5,227,0,0,1326,1328,5,134,0,0,1327,1324,1,0,0, + 0,1327,1328,1,0,0,0,1328,1330,1,0,0,0,1329,1331,5,287,0,0,1330,1329, + 1,0,0,0,1330,1331,1,0,0,0,1331,1332,1,0,0,0,1332,1337,3,590,295, + 0,1333,1334,5,397,0,0,1334,1336,3,590,295,0,1335,1333,1,0,0,0,1336, + 1339,1,0,0,0,1337,1335,1,0,0,0,1337,1338,1,0,0,0,1338,1340,1,0,0, + 0,1339,1337,1,0,0,0,1340,1341,5,139,0,0,1341,1342,3,110,55,0,1342, + 83,1,0,0,0,1343,1344,5,308,0,0,1344,1345,5,287,0,0,1345,1346,5,143, + 0,0,1346,1347,3,112,56,0,1347,85,1,0,0,0,1348,1349,5,308,0,0,1349, + 1350,5,288,0,0,1350,87,1,0,0,0,1351,1352,5,308,0,0,1352,1353,5,62, + 0,0,1353,1354,5,288,0,0,1354,89,1,0,0,0,1355,1356,5,304,0,0,1356, + 1360,5,287,0,0,1357,1361,5,7,0,0,1358,1361,5,213,0,0,1359,1361,3, + 590,295,0,1360,1357,1,0,0,0,1360,1358,1,0,0,0,1360,1359,1,0,0,0, + 1361,91,1,0,0,0,1362,1363,5,308,0,0,1363,1365,5,143,0,0,1364,1366, + 3,112,56,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,1369,1,0,0,0, + 1367,1368,5,224,0,0,1368,1370,3,96,48,0,1369,1367,1,0,0,0,1369,1370, + 1,0,0,0,1370,93,1,0,0,0,1371,1372,5,308,0,0,1372,1373,5,252,0,0, + 1373,1374,3,590,295,0,1374,95,1,0,0,0,1375,1378,5,7,0,0,1376,1378, + 3,102,51,0,1377,1375,1,0,0,0,1377,1376,1,0,0,0,1378,97,1,0,0,0,1379, + 1380,5,224,0,0,1380,1381,3,100,50,0,1381,99,1,0,0,0,1382,1383,3, + 64,32,0,1383,1384,3,420,210,0,1384,1394,1,0,0,0,1385,1387,5,329, + 0,0,1386,1385,1,0,0,0,1386,1387,1,0,0,0,1387,1388,1,0,0,0,1388,1394, + 3,576,288,0,1389,1390,5,366,0,0,1390,1394,5,426,0,0,1391,1392,5, + 303,0,0,1392,1394,3,590,295,0,1393,1382,1,0,0,0,1393,1386,1,0,0, + 0,1393,1389,1,0,0,0,1393,1391,1,0,0,0,1394,101,1,0,0,0,1395,1396, + 3,64,32,0,1396,1397,3,420,210,0,1397,1416,1,0,0,0,1398,1400,5,329, + 0,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1401,1,0,0,0,1401,1406, + 3,426,213,0,1402,1403,5,399,0,0,1403,1404,3,220,110,0,1404,1405, + 5,400,0,0,1405,1407,1,0,0,0,1406,1402,1,0,0,0,1406,1407,1,0,0,0, + 1407,1409,1,0,0,0,1408,1410,3,578,289,0,1409,1408,1,0,0,0,1409,1410, + 1,0,0,0,1410,1416,1,0,0,0,1411,1412,5,366,0,0,1412,1416,5,426,0, + 0,1413,1414,5,303,0,0,1414,1416,3,590,295,0,1415,1395,1,0,0,0,1415, + 1399,1,0,0,0,1415,1411,1,0,0,0,1415,1413,1,0,0,0,1416,103,1,0,0, + 0,1417,1422,3,106,53,0,1418,1419,5,397,0,0,1419,1421,3,106,53,0, + 1420,1418,1,0,0,0,1421,1424,1,0,0,0,1422,1420,1,0,0,0,1422,1423, + 1,0,0,0,1423,105,1,0,0,0,1424,1422,1,0,0,0,1425,1430,3,108,54,0, + 1426,1427,5,399,0,0,1427,1428,3,220,110,0,1428,1429,5,400,0,0,1429, + 1431,1,0,0,0,1430,1426,1,0,0,0,1430,1431,1,0,0,0,1431,107,1,0,0, + 0,1432,1433,7,11,0,0,1433,109,1,0,0,0,1434,1439,3,112,56,0,1435, + 1436,5,397,0,0,1436,1438,3,112,56,0,1437,1435,1,0,0,0,1438,1441, + 1,0,0,0,1439,1437,1,0,0,0,1439,1440,1,0,0,0,1440,111,1,0,0,0,1441, + 1439,1,0,0,0,1442,1443,5,369,0,0,1443,1449,3,594,297,0,1444,1445, + 5,144,0,0,1445,1449,3,594,297,0,1446,1447,5,287,0,0,1447,1449,3, + 590,295,0,1448,1442,1,0,0,0,1448,1444,1,0,0,0,1448,1446,1,0,0,0, + 1449,113,1,0,0,0,1450,1451,5,369,0,0,1451,1456,3,594,297,0,1452, + 1453,5,287,0,0,1453,1456,3,590,295,0,1454,1456,3,590,295,0,1455, + 1450,1,0,0,0,1455,1452,1,0,0,0,1455,1454,1,0,0,0,1456,115,1,0,0, + 0,1457,1459,5,212,0,0,1458,1460,5,276,0,0,1459,1458,1,0,0,0,1459, + 1460,1,0,0,0,1460,1461,1,0,0,0,1461,1462,5,329,0,0,1462,1468,3,426, + 213,0,1463,1464,7,12,0,0,1464,1466,5,239,0,0,1465,1467,3,582,291, + 0,1466,1465,1,0,0,0,1466,1467,1,0,0,0,1467,1469,1,0,0,0,1468,1463, + 1,0,0,0,1468,1469,1,0,0,0,1469,117,1,0,0,0,1470,1471,7,13,0,0,1471, + 119,1,0,0,0,1472,1474,5,58,0,0,1473,1475,5,333,0,0,1474,1473,1,0, + 0,0,1474,1475,1,0,0,0,1475,1476,1,0,0,0,1476,1477,5,141,0,0,1477, + 1478,3,510,255,0,1478,1479,5,17,0,0,1479,1492,5,426,0,0,1480,1481, + 5,370,0,0,1481,1482,3,118,59,0,1482,1489,5,426,0,0,1483,1484,5,397, + 0,0,1484,1485,3,118,59,0,1485,1486,5,426,0,0,1486,1488,1,0,0,0,1487, + 1483,1,0,0,0,1488,1491,1,0,0,0,1489,1487,1,0,0,0,1489,1490,1,0,0, + 0,1490,1493,1,0,0,0,1491,1489,1,0,0,0,1492,1480,1,0,0,0,1492,1493, + 1,0,0,0,1493,121,1,0,0,0,1494,1496,5,101,0,0,1495,1497,5,333,0,0, + 1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1500, + 5,141,0,0,1499,1501,3,30,15,0,1500,1499,1,0,0,0,1500,1501,1,0,0, + 0,1501,1502,1,0,0,0,1502,1503,3,512,256,0,1503,123,1,0,0,0,1504, + 1505,5,271,0,0,1505,1506,7,14,0,0,1506,125,1,0,0,0,1507,1508,5,58, + 0,0,1508,1509,5,333,0,0,1509,1510,5,194,0,0,1510,1511,5,432,0,0, + 1511,1513,5,399,0,0,1512,1514,3,214,107,0,1513,1512,1,0,0,0,1513, + 1514,1,0,0,0,1514,1515,1,0,0,0,1515,1516,5,400,0,0,1516,1517,3,536, + 268,0,1517,127,1,0,0,0,1518,1519,5,101,0,0,1519,1520,5,333,0,0,1520, + 1522,5,194,0,0,1521,1523,3,30,15,0,1522,1521,1,0,0,0,1522,1523,1, + 0,0,0,1523,1524,1,0,0,0,1524,1525,5,432,0,0,1525,129,1,0,0,0,1526, + 1527,5,58,0,0,1527,1528,5,155,0,0,1528,1529,3,590,295,0,1529,1530, + 5,224,0,0,1530,1531,5,329,0,0,1531,1532,3,426,213,0,1532,1533,3, + 234,117,0,1533,1534,5,17,0,0,1534,1538,5,426,0,0,1535,1536,5,387, + 0,0,1536,1537,5,84,0,0,1537,1539,5,265,0,0,1538,1535,1,0,0,0,1538, + 1539,1,0,0,0,1539,1542,1,0,0,0,1540,1541,5,150,0,0,1541,1543,3,192, + 96,0,1542,1540,1,0,0,0,1542,1543,1,0,0,0,1543,1547,1,0,0,0,1544, + 1545,5,154,0,0,1545,1546,5,329,0,0,1546,1548,3,426,213,0,1547,1544, + 1,0,0,0,1547,1548,1,0,0,0,1548,1552,1,0,0,0,1549,1550,5,238,0,0, + 1550,1551,5,32,0,0,1551,1553,3,234,117,0,1552,1549,1,0,0,0,1552, + 1553,1,0,0,0,1553,1558,1,0,0,0,1554,1556,3,184,92,0,1555,1554,1, + 0,0,0,1555,1556,1,0,0,0,1556,1557,1,0,0,0,1557,1559,3,212,106,0, + 1558,1555,1,0,0,0,1558,1559,1,0,0,0,1559,1561,1,0,0,0,1560,1562, + 3,372,186,0,1561,1560,1,0,0,0,1561,1562,1,0,0,0,1562,1564,1,0,0, + 0,1563,1565,3,190,95,0,1564,1563,1,0,0,0,1564,1565,1,0,0,0,1565, + 1567,1,0,0,0,1566,1568,3,168,84,0,1567,1566,1,0,0,0,1567,1568,1, + 0,0,0,1568,131,1,0,0,0,1569,1570,5,101,0,0,1570,1572,5,155,0,0,1571, + 1573,3,30,15,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573,1574,1,0, + 0,0,1574,1575,3,590,295,0,1575,1576,5,224,0,0,1576,1577,3,426,213, + 0,1577,133,1,0,0,0,1578,1581,5,58,0,0,1579,1580,5,228,0,0,1580,1582, + 5,278,0,0,1581,1579,1,0,0,0,1581,1582,1,0,0,0,1582,1583,1,0,0,0, + 1583,1585,5,378,0,0,1584,1586,3,32,16,0,1585,1584,1,0,0,0,1585,1586, + 1,0,0,0,1586,1587,1,0,0,0,1587,1592,3,432,216,0,1588,1589,5,399, + 0,0,1589,1590,3,270,135,0,1590,1591,5,400,0,0,1591,1593,1,0,0,0, + 1592,1588,1,0,0,0,1592,1593,1,0,0,0,1593,1595,1,0,0,0,1594,1596, + 3,168,84,0,1595,1594,1,0,0,0,1595,1596,1,0,0,0,1596,1598,1,0,0,0, + 1597,1599,3,136,68,0,1598,1597,1,0,0,0,1598,1599,1,0,0,0,1599,1601, + 1,0,0,0,1600,1602,3,190,95,0,1601,1600,1,0,0,0,1601,1602,1,0,0,0, + 1602,1603,1,0,0,0,1603,1604,5,17,0,0,1604,1605,3,334,167,0,1605, + 135,1,0,0,0,1606,1607,5,238,0,0,1607,1613,5,224,0,0,1608,1609,5, + 399,0,0,1609,1614,3,220,110,0,1610,1611,5,316,0,0,1611,1612,5,399, + 0,0,1612,1614,3,176,88,0,1613,1608,1,0,0,0,1613,1610,1,0,0,0,1614, + 1615,1,0,0,0,1615,1616,5,400,0,0,1616,137,1,0,0,0,1617,1620,3,140, + 70,0,1618,1620,3,142,71,0,1619,1617,1,0,0,0,1619,1618,1,0,0,0,1620, + 139,1,0,0,0,1621,1622,5,42,0,0,1622,1623,5,224,0,0,1623,1624,5,399, + 0,0,1624,1625,3,220,110,0,1625,1626,5,400,0,0,1626,141,1,0,0,0,1627, + 1628,3,144,72,0,1628,1629,3,146,73,0,1629,143,1,0,0,0,1630,1631, + 5,98,0,0,1631,1632,5,224,0,0,1632,1633,5,399,0,0,1633,1634,3,220, + 110,0,1634,1635,5,400,0,0,1635,145,1,0,0,0,1636,1637,5,315,0,0,1637, + 1638,5,224,0,0,1638,1639,5,399,0,0,1639,1640,3,220,110,0,1640,1641, + 5,400,0,0,1641,147,1,0,0,0,1642,1643,5,101,0,0,1643,1645,5,378,0, + 0,1644,1646,3,30,15,0,1645,1644,1,0,0,0,1645,1646,1,0,0,0,1646,1647, + 1,0,0,0,1647,1656,3,430,215,0,1648,1649,5,101,0,0,1649,1650,5,202, + 0,0,1650,1652,5,378,0,0,1651,1653,3,30,15,0,1652,1651,1,0,0,0,1652, + 1653,1,0,0,0,1653,1654,1,0,0,0,1654,1656,3,430,215,0,1655,1642,1, + 0,0,0,1655,1648,1,0,0,0,1656,149,1,0,0,0,1657,1658,5,58,0,0,1658, + 1659,5,202,0,0,1659,1661,5,378,0,0,1660,1662,3,32,16,0,1661,1660, + 1,0,0,0,1661,1662,1,0,0,0,1662,1663,1,0,0,0,1663,1665,3,432,216, + 0,1664,1666,3,40,20,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666,1668, + 1,0,0,0,1667,1669,3,168,84,0,1668,1667,1,0,0,0,1668,1669,1,0,0,0, + 1669,1671,1,0,0,0,1670,1672,3,136,68,0,1671,1670,1,0,0,0,1671,1672, + 1,0,0,0,1672,1674,1,0,0,0,1673,1675,3,138,69,0,1674,1673,1,0,0,0, + 1674,1675,1,0,0,0,1675,1677,1,0,0,0,1676,1678,3,184,92,0,1677,1676, + 1,0,0,0,1677,1678,1,0,0,0,1678,1680,1,0,0,0,1679,1681,3,212,106, + 0,1680,1679,1,0,0,0,1680,1681,1,0,0,0,1681,1683,1,0,0,0,1682,1684, + 3,372,186,0,1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1686,1,0,0, + 0,1685,1687,3,190,95,0,1686,1685,1,0,0,0,1686,1687,1,0,0,0,1687, + 1688,1,0,0,0,1688,1689,5,17,0,0,1689,1690,3,334,167,0,1690,151,1, + 0,0,0,1691,1692,5,58,0,0,1692,1693,5,293,0,0,1693,1694,5,258,0,0, + 1694,1695,3,590,295,0,1695,1697,3,160,80,0,1696,1698,3,162,81,0, + 1697,1696,1,0,0,0,1697,1698,1,0,0,0,1698,1700,1,0,0,0,1699,1701, + 3,238,119,0,1700,1699,1,0,0,0,1700,1701,1,0,0,0,1701,1702,1,0,0, + 0,1702,1703,3,164,82,0,1703,153,1,0,0,0,1704,1705,5,101,0,0,1705, + 1706,5,293,0,0,1706,1707,5,258,0,0,1707,1708,3,590,295,0,1708,155, + 1,0,0,0,1709,1710,5,9,0,0,1710,1711,5,293,0,0,1711,1712,5,258,0, + 0,1712,1713,3,590,295,0,1713,1714,3,158,79,0,1714,157,1,0,0,0,1715, + 1721,3,160,80,0,1716,1721,3,162,81,0,1717,1721,3,238,119,0,1718, + 1721,3,164,82,0,1719,1721,5,115,0,0,1720,1715,1,0,0,0,1720,1716, + 1,0,0,0,1720,1717,1,0,0,0,1720,1718,1,0,0,0,1720,1719,1,0,0,0,1721, + 159,1,0,0,0,1722,1723,5,59,0,0,1723,1738,5,426,0,0,1724,1726,5,111, + 0,0,1725,1727,5,431,0,0,1726,1725,1,0,0,0,1726,1727,1,0,0,0,1727, + 1728,1,0,0,0,1728,1735,3,534,267,0,1729,1733,5,20,0,0,1730,1731, + 5,223,0,0,1731,1733,5,32,0,0,1732,1729,1,0,0,0,1732,1730,1,0,0,0, + 1733,1734,1,0,0,0,1734,1736,5,426,0,0,1735,1732,1,0,0,0,1735,1736, + 1,0,0,0,1736,1738,1,0,0,0,1737,1722,1,0,0,0,1737,1724,1,0,0,0,1738, + 161,1,0,0,0,1739,1740,5,116,0,0,1740,1741,5,17,0,0,1741,1742,5,426, + 0,0,1742,163,1,0,0,0,1743,1745,5,85,0,0,1744,1743,1,0,0,0,1744,1745, + 1,0,0,0,1745,1746,1,0,0,0,1746,1747,5,17,0,0,1747,1748,3,2,1,0,1748, + 165,1,0,0,0,1749,1752,3,590,295,0,1750,1752,5,426,0,0,1751,1749, + 1,0,0,0,1751,1750,1,0,0,0,1752,167,1,0,0,0,1753,1754,5,47,0,0,1754, + 1755,5,426,0,0,1755,169,1,0,0,0,1756,1757,5,183,0,0,1757,1758,5, + 431,0,0,1758,171,1,0,0,0,1759,1760,5,238,0,0,1760,1769,5,32,0,0, + 1761,1764,5,399,0,0,1762,1765,3,174,87,0,1763,1765,3,220,110,0,1764, + 1762,1,0,0,0,1764,1763,1,0,0,0,1765,1770,1,0,0,0,1766,1767,5,316, + 0,0,1767,1768,5,399,0,0,1768,1770,3,176,88,0,1769,1761,1,0,0,0,1769, + 1766,1,0,0,0,1770,1771,1,0,0,0,1771,1772,5,400,0,0,1772,173,1,0, + 0,0,1773,1778,3,282,141,0,1774,1775,5,397,0,0,1775,1777,3,282,141, + 0,1776,1774,1,0,0,0,1777,1780,1,0,0,0,1778,1776,1,0,0,0,1778,1779, + 1,0,0,0,1779,175,1,0,0,0,1780,1778,1,0,0,0,1781,1786,3,178,89,0, + 1782,1783,5,397,0,0,1783,1785,3,178,89,0,1784,1782,1,0,0,0,1785, + 1788,1,0,0,0,1786,1784,1,0,0,0,1786,1787,1,0,0,0,1787,177,1,0,0, + 0,1788,1786,1,0,0,0,1789,1803,3,222,111,0,1790,1791,7,15,0,0,1791, + 1792,5,399,0,0,1792,1793,3,222,111,0,1793,1794,5,400,0,0,1794,1803, + 1,0,0,0,1795,1796,7,16,0,0,1796,1797,5,399,0,0,1797,1798,5,431,0, + 0,1798,1799,5,397,0,0,1799,1800,3,222,111,0,1800,1801,5,400,0,0, + 1801,1803,1,0,0,0,1802,1789,1,0,0,0,1802,1790,1,0,0,0,1802,1795, + 1,0,0,0,1803,179,1,0,0,0,1804,1805,5,42,0,0,1805,1806,5,32,0,0,1806, + 1807,5,399,0,0,1807,1808,3,220,110,0,1808,1815,5,400,0,0,1809,1810, + 5,315,0,0,1810,1811,5,32,0,0,1811,1812,5,399,0,0,1812,1813,3,232, + 116,0,1813,1814,5,400,0,0,1814,1816,1,0,0,0,1815,1809,1,0,0,0,1815, + 1816,1,0,0,0,1816,1817,1,0,0,0,1817,1818,5,166,0,0,1818,1819,5,431, + 0,0,1819,1820,5,31,0,0,1820,181,1,0,0,0,1821,1822,5,310,0,0,1822, + 1823,5,32,0,0,1823,1824,5,399,0,0,1824,1825,3,220,110,0,1825,1826, + 5,400,0,0,1826,1827,5,224,0,0,1827,1828,5,399,0,0,1828,1829,3,256, + 128,0,1829,1831,5,400,0,0,1830,1832,3,36,18,0,1831,1830,1,0,0,0, + 1831,1832,1,0,0,0,1832,183,1,0,0,0,1833,1836,3,186,93,0,1834,1836, + 3,188,94,0,1835,1833,1,0,0,0,1835,1834,1,0,0,0,1836,185,1,0,0,0, + 1837,1838,5,291,0,0,1838,1839,5,137,0,0,1839,1840,5,301,0,0,1840, + 1844,5,426,0,0,1841,1842,5,387,0,0,1842,1843,5,302,0,0,1843,1845, + 3,192,96,0,1844,1841,1,0,0,0,1844,1845,1,0,0,0,1845,187,1,0,0,0, + 1846,1847,5,291,0,0,1847,1848,5,137,0,0,1848,1850,5,87,0,0,1849, + 1851,3,202,101,0,1850,1849,1,0,0,0,1850,1851,1,0,0,0,1851,1853,1, + 0,0,0,1852,1854,3,204,102,0,1853,1852,1,0,0,0,1853,1854,1,0,0,0, + 1854,1856,1,0,0,0,1855,1857,3,206,103,0,1856,1855,1,0,0,0,1856,1857, + 1,0,0,0,1857,1859,1,0,0,0,1858,1860,3,208,104,0,1859,1858,1,0,0, + 0,1859,1860,1,0,0,0,1860,1862,1,0,0,0,1861,1863,3,210,105,0,1862, + 1861,1,0,0,0,1862,1863,1,0,0,0,1863,189,1,0,0,0,1864,1865,5,332, + 0,0,1865,1866,3,192,96,0,1866,191,1,0,0,0,1867,1868,5,399,0,0,1868, + 1869,3,194,97,0,1869,1870,5,400,0,0,1870,193,1,0,0,0,1871,1881,3, + 198,99,0,1872,1877,5,426,0,0,1873,1874,5,397,0,0,1874,1876,5,426, + 0,0,1875,1873,1,0,0,0,1876,1879,1,0,0,0,1877,1875,1,0,0,0,1877,1878, + 1,0,0,0,1878,1881,1,0,0,0,1879,1877,1,0,0,0,1880,1871,1,0,0,0,1880, + 1872,1,0,0,0,1881,195,1,0,0,0,1882,1883,5,399,0,0,1883,1884,3,198, + 99,0,1884,1885,5,400,0,0,1885,197,1,0,0,0,1886,1891,3,200,100,0, + 1887,1888,5,397,0,0,1888,1890,3,200,100,0,1889,1887,1,0,0,0,1890, + 1893,1,0,0,0,1891,1889,1,0,0,0,1891,1892,1,0,0,0,1892,199,1,0,0, + 0,1893,1891,1,0,0,0,1894,1895,5,426,0,0,1895,1896,5,405,0,0,1896, + 1897,5,426,0,0,1897,201,1,0,0,0,1898,1899,5,127,0,0,1899,1900,5, + 334,0,0,1900,1901,5,32,0,0,1901,1905,5,426,0,0,1902,1903,5,110,0, + 0,1903,1904,5,32,0,0,1904,1906,5,426,0,0,1905,1902,1,0,0,0,1905, + 1906,1,0,0,0,1906,203,1,0,0,0,1907,1908,5,44,0,0,1908,1909,5,169, + 0,0,1909,1910,5,334,0,0,1910,1911,5,32,0,0,1911,1912,5,426,0,0,1912, + 205,1,0,0,0,1913,1914,5,198,0,0,1914,1915,5,174,0,0,1915,1916,5, + 334,0,0,1916,1917,5,32,0,0,1917,1918,5,426,0,0,1918,207,1,0,0,0, + 1919,1920,5,186,0,0,1920,1921,5,334,0,0,1921,1922,5,32,0,0,1922, + 1923,5,426,0,0,1923,209,1,0,0,0,1924,1925,5,219,0,0,1925,1926,5, + 85,0,0,1926,1927,5,17,0,0,1927,1928,5,426,0,0,1928,211,1,0,0,0,1929, + 1930,5,321,0,0,1930,1931,5,17,0,0,1931,1932,5,160,0,0,1932,1933, + 5,426,0,0,1933,1934,5,233,0,0,1934,1939,5,426,0,0,1935,1936,5,159, + 0,0,1936,1937,5,426,0,0,1937,1938,5,232,0,0,1938,1940,5,426,0,0, + 1939,1935,1,0,0,0,1939,1940,1,0,0,0,1940,1971,1,0,0,0,1941,1942, + 5,321,0,0,1942,1943,5,32,0,0,1943,1947,5,426,0,0,1944,1945,5,387, + 0,0,1945,1946,5,302,0,0,1946,1948,3,192,96,0,1947,1944,1,0,0,0,1947, + 1948,1,0,0,0,1948,1952,1,0,0,0,1949,1950,5,321,0,0,1950,1951,5,17, + 0,0,1951,1953,3,590,295,0,1952,1949,1,0,0,0,1952,1953,1,0,0,0,1953, + 1971,1,0,0,0,1954,1955,5,321,0,0,1955,1956,5,32,0,0,1956,1960,3, + 590,295,0,1957,1958,5,387,0,0,1958,1959,5,302,0,0,1959,1961,3,192, + 96,0,1960,1957,1,0,0,0,1960,1961,1,0,0,0,1961,1965,1,0,0,0,1962, + 1963,5,321,0,0,1963,1964,5,17,0,0,1964,1966,3,590,295,0,1965,1962, + 1,0,0,0,1965,1966,1,0,0,0,1966,1971,1,0,0,0,1967,1968,5,321,0,0, + 1968,1969,5,17,0,0,1969,1971,3,590,295,0,1970,1929,1,0,0,0,1970, + 1941,1,0,0,0,1970,1954,1,0,0,0,1970,1967,1,0,0,0,1971,213,1,0,0, + 0,1972,1977,3,276,138,0,1973,1974,5,397,0,0,1974,1976,3,276,138, + 0,1975,1973,1,0,0,0,1976,1979,1,0,0,0,1977,1975,1,0,0,0,1977,1978, + 1,0,0,0,1978,215,1,0,0,0,1979,1977,1,0,0,0,1980,1985,3,278,139,0, + 1981,1982,5,397,0,0,1982,1984,3,278,139,0,1983,1981,1,0,0,0,1984, + 1987,1,0,0,0,1985,1983,1,0,0,0,1985,1986,1,0,0,0,1986,217,1,0,0, + 0,1987,1985,1,0,0,0,1988,1993,3,296,148,0,1989,1990,5,397,0,0,1990, + 1992,3,296,148,0,1991,1989,1,0,0,0,1992,1995,1,0,0,0,1993,1991,1, + 0,0,0,1993,1994,1,0,0,0,1994,219,1,0,0,0,1995,1993,1,0,0,0,1996, + 2001,3,222,111,0,1997,1998,5,397,0,0,1998,2000,3,222,111,0,1999, + 1997,1,0,0,0,2000,2003,1,0,0,0,2001,1999,1,0,0,0,2001,2002,1,0,0, + 0,2002,221,1,0,0,0,2003,2001,1,0,0,0,2004,2008,3,626,313,0,2005, + 2006,4,111,0,0,2006,2008,3,622,311,0,2007,2004,1,0,0,0,2007,2005, + 1,0,0,0,2008,223,1,0,0,0,2009,2010,3,624,312,0,2010,225,1,0,0,0, + 2011,2015,3,626,313,0,2012,2013,4,113,1,0,2013,2015,3,622,311,0, + 2014,2011,1,0,0,0,2014,2012,1,0,0,0,2015,227,1,0,0,0,2016,2017,3, + 590,295,0,2017,229,1,0,0,0,2018,2028,3,222,111,0,2019,2024,5,395, + 0,0,2020,2025,5,104,0,0,2021,2025,5,175,0,0,2022,2025,5,375,0,0, + 2023,2025,3,590,295,0,2024,2020,1,0,0,0,2024,2021,1,0,0,0,2024,2022, + 1,0,0,0,2024,2023,1,0,0,0,2025,2027,1,0,0,0,2026,2019,1,0,0,0,2027, + 2030,1,0,0,0,2028,2026,1,0,0,0,2028,2029,1,0,0,0,2029,231,1,0,0, + 0,2030,2028,1,0,0,0,2031,2036,3,268,134,0,2032,2033,5,397,0,0,2033, + 2035,3,268,134,0,2034,2032,1,0,0,0,2035,2038,1,0,0,0,2036,2034,1, + 0,0,0,2036,2037,1,0,0,0,2037,233,1,0,0,0,2038,2036,1,0,0,0,2039, + 2040,5,399,0,0,2040,2041,3,220,110,0,2041,2042,5,400,0,0,2042,235, + 1,0,0,0,2043,2045,3,238,119,0,2044,2046,7,17,0,0,2045,2044,1,0,0, + 0,2045,2046,1,0,0,0,2046,2049,1,0,0,0,2047,2049,3,240,120,0,2048, + 2043,1,0,0,0,2048,2047,1,0,0,0,2049,237,1,0,0,0,2050,2053,3,618, + 309,0,2051,2053,3,620,310,0,2052,2050,1,0,0,0,2052,2051,1,0,0,0, + 2053,239,1,0,0,0,2054,2058,5,109,0,0,2055,2056,5,216,0,0,2056,2058, + 5,109,0,0,2057,2054,1,0,0,0,2057,2055,1,0,0,0,2058,241,1,0,0,0,2059, + 2060,5,55,0,0,2060,2062,3,590,295,0,2061,2059,1,0,0,0,2061,2062, + 1,0,0,0,2062,2063,1,0,0,0,2063,2065,3,246,123,0,2064,2066,3,294, + 147,0,2065,2064,1,0,0,0,2065,2066,1,0,0,0,2066,243,1,0,0,0,2067, + 2068,5,55,0,0,2068,2069,3,590,295,0,2069,2071,3,246,123,0,2070,2072, + 3,294,147,0,2071,2070,1,0,0,0,2071,2072,1,0,0,0,2072,245,1,0,0,0, + 2073,2076,3,248,124,0,2074,2076,3,250,125,0,2075,2073,1,0,0,0,2075, + 2074,1,0,0,0,2076,247,1,0,0,0,2077,2078,3,292,146,0,2078,2079,3, + 234,117,0,2079,249,1,0,0,0,2080,2081,5,40,0,0,2081,2082,5,399,0, + 0,2082,2083,3,536,268,0,2083,2084,5,400,0,0,2084,251,1,0,0,0,2085, + 2086,5,55,0,0,2086,2088,3,590,295,0,2087,2085,1,0,0,0,2087,2088, + 1,0,0,0,2088,2089,1,0,0,0,2089,2090,5,136,0,0,2090,2091,5,173,0, + 0,2091,2092,3,234,117,0,2092,2093,5,269,0,0,2093,2094,3,426,213, + 0,2094,2096,3,234,117,0,2095,2097,3,294,147,0,2096,2095,1,0,0,0, + 2096,2097,1,0,0,0,2097,253,1,0,0,0,2098,2099,5,55,0,0,2099,2100, + 3,590,295,0,2100,2101,5,136,0,0,2101,2102,5,173,0,0,2102,2103,3, + 234,117,0,2103,2104,5,269,0,0,2104,2105,3,426,213,0,2105,2107,3, + 234,117,0,2106,2108,3,294,147,0,2107,2106,1,0,0,0,2107,2108,1,0, + 0,0,2108,255,1,0,0,0,2109,2112,3,262,131,0,2110,2112,3,258,129,0, + 2111,2109,1,0,0,0,2111,2110,1,0,0,0,2112,257,1,0,0,0,2113,2118,3, + 260,130,0,2114,2115,5,397,0,0,2115,2117,3,260,130,0,2116,2114,1, + 0,0,0,2117,2120,1,0,0,0,2118,2116,1,0,0,0,2118,2119,1,0,0,0,2119, + 259,1,0,0,0,2120,2118,1,0,0,0,2121,2122,5,399,0,0,2122,2123,3,262, + 131,0,2123,2124,5,400,0,0,2124,261,1,0,0,0,2125,2130,3,528,264,0, + 2126,2127,5,397,0,0,2127,2129,3,528,264,0,2128,2126,1,0,0,0,2129, + 2132,1,0,0,0,2130,2128,1,0,0,0,2130,2131,1,0,0,0,2131,263,1,0,0, + 0,2132,2130,1,0,0,0,2133,2134,7,18,0,0,2134,265,1,0,0,0,2135,2136, + 5,220,0,0,2136,2137,7,19,0,0,2137,267,1,0,0,0,2138,2140,3,222,111, + 0,2139,2141,3,264,132,0,2140,2139,1,0,0,0,2140,2141,1,0,0,0,2141, + 2143,1,0,0,0,2142,2144,3,266,133,0,2143,2142,1,0,0,0,2143,2144,1, + 0,0,0,2144,269,1,0,0,0,2145,2150,3,272,136,0,2146,2147,5,397,0,0, + 2147,2149,3,272,136,0,2148,2146,1,0,0,0,2149,2152,1,0,0,0,2150,2148, + 1,0,0,0,2150,2151,1,0,0,0,2151,271,1,0,0,0,2152,2150,1,0,0,0,2153, + 2156,3,228,114,0,2154,2155,5,47,0,0,2155,2157,5,426,0,0,2156,2154, + 1,0,0,0,2156,2157,1,0,0,0,2157,273,1,0,0,0,2158,2161,3,222,111,0, + 2159,2161,3,536,268,0,2160,2158,1,0,0,0,2160,2159,1,0,0,0,2161,2163, + 1,0,0,0,2162,2164,3,264,132,0,2163,2162,1,0,0,0,2163,2164,1,0,0, + 0,2164,2166,1,0,0,0,2165,2167,3,266,133,0,2166,2165,1,0,0,0,2166, + 2167,1,0,0,0,2167,275,1,0,0,0,2168,2169,3,228,114,0,2169,2172,3, + 300,150,0,2170,2171,5,47,0,0,2171,2173,5,426,0,0,2172,2170,1,0,0, + 0,2172,2173,1,0,0,0,2173,277,1,0,0,0,2174,2177,3,280,140,0,2175, + 2177,3,282,141,0,2176,2174,1,0,0,0,2176,2175,1,0,0,0,2177,279,1, + 0,0,0,2178,2181,3,252,126,0,2179,2181,3,242,121,0,2180,2178,1,0, + 0,0,2180,2179,1,0,0,0,2181,281,1,0,0,0,2182,2183,3,228,114,0,2183, + 2185,3,300,150,0,2184,2186,3,284,142,0,2185,2184,1,0,0,0,2185,2186, + 1,0,0,0,2186,2189,1,0,0,0,2187,2188,5,47,0,0,2188,2190,5,426,0,0, + 2189,2187,1,0,0,0,2189,2190,1,0,0,0,2190,283,1,0,0,0,2191,2194,3, + 286,143,0,2192,2194,3,288,144,0,2193,2191,1,0,0,0,2193,2192,1,0, + 0,0,2194,285,1,0,0,0,2195,2196,5,55,0,0,2196,2198,3,590,295,0,2197, + 2195,1,0,0,0,2197,2198,1,0,0,0,2198,2199,1,0,0,0,2199,2200,5,269, + 0,0,2200,2201,3,426,213,0,2201,2202,5,399,0,0,2202,2203,3,222,111, + 0,2203,2205,5,400,0,0,2204,2206,3,294,147,0,2205,2204,1,0,0,0,2205, + 2206,1,0,0,0,2206,287,1,0,0,0,2207,2208,5,55,0,0,2208,2210,3,590, + 295,0,2209,2207,1,0,0,0,2209,2210,1,0,0,0,2210,2211,1,0,0,0,2211, + 2213,3,290,145,0,2212,2214,3,294,147,0,2213,2212,1,0,0,0,2213,2214, + 1,0,0,0,2214,289,1,0,0,0,2215,2216,5,216,0,0,2216,2226,5,219,0,0, + 2217,2221,5,83,0,0,2218,2222,3,528,264,0,2219,2222,3,508,254,0,2220, + 2222,3,516,258,0,2221,2218,1,0,0,0,2221,2219,1,0,0,0,2221,2220,1, + 0,0,0,2222,2226,1,0,0,0,2223,2226,3,250,125,0,2224,2226,3,292,146, + 0,2225,2215,1,0,0,0,2225,2217,1,0,0,0,2225,2223,1,0,0,0,2225,2224, + 1,0,0,0,2226,291,1,0,0,0,2227,2228,5,251,0,0,2228,2231,5,173,0,0, + 2229,2231,5,358,0,0,2230,2227,1,0,0,0,2230,2229,1,0,0,0,2231,293, + 1,0,0,0,2232,2234,3,236,118,0,2233,2235,7,20,0,0,2234,2233,1,0,0, + 0,2234,2235,1,0,0,0,2235,295,1,0,0,0,2236,2237,3,228,114,0,2237, + 2238,5,396,0,0,2238,2241,3,300,150,0,2239,2240,5,47,0,0,2240,2242, + 5,426,0,0,2241,2239,1,0,0,0,2241,2242,1,0,0,0,2242,297,1,0,0,0,2243, + 2248,3,300,150,0,2244,2245,5,397,0,0,2245,2247,3,300,150,0,2246, + 2244,1,0,0,0,2247,2250,1,0,0,0,2248,2246,1,0,0,0,2248,2249,1,0,0, + 0,2249,299,1,0,0,0,2250,2248,1,0,0,0,2251,2257,3,302,151,0,2252, + 2257,3,304,152,0,2253,2257,3,306,153,0,2254,2257,3,308,154,0,2255, + 2257,3,310,155,0,2256,2251,1,0,0,0,2256,2252,1,0,0,0,2256,2253,1, + 0,0,0,2256,2254,1,0,0,0,2256,2255,1,0,0,0,2257,301,1,0,0,0,2258, + 2296,5,340,0,0,2259,2296,5,311,0,0,2260,2296,5,162,0,0,2261,2296, + 5,163,0,0,2262,2296,5,26,0,0,2263,2296,5,28,0,0,2264,2296,5,131, + 0,0,2265,2296,5,264,0,0,2266,2268,5,100,0,0,2267,2269,5,248,0,0, + 2268,2267,1,0,0,0,2268,2269,1,0,0,0,2269,2296,1,0,0,0,2270,2296, + 5,71,0,0,2271,2296,5,72,0,0,2272,2296,5,337,0,0,2273,2296,5,338, + 0,0,2274,2275,5,337,0,0,2275,2276,5,387,0,0,2276,2277,5,188,0,0, + 2277,2278,5,336,0,0,2278,2296,5,394,0,0,2279,2296,5,323,0,0,2280, + 2296,5,27,0,0,2281,2289,7,21,0,0,2282,2283,5,399,0,0,2283,2286,5, + 431,0,0,2284,2285,5,397,0,0,2285,2287,5,431,0,0,2286,2284,1,0,0, + 0,2286,2287,1,0,0,0,2287,2288,1,0,0,0,2288,2290,5,400,0,0,2289,2282, + 1,0,0,0,2289,2290,1,0,0,0,2290,2296,1,0,0,0,2291,2292,7,22,0,0,2292, + 2293,5,399,0,0,2293,2294,5,431,0,0,2294,2296,5,400,0,0,2295,2258, + 1,0,0,0,2295,2259,1,0,0,0,2295,2260,1,0,0,0,2295,2261,1,0,0,0,2295, + 2262,1,0,0,0,2295,2263,1,0,0,0,2295,2264,1,0,0,0,2295,2265,1,0,0, + 0,2295,2266,1,0,0,0,2295,2270,1,0,0,0,2295,2271,1,0,0,0,2295,2272, + 1,0,0,0,2295,2273,1,0,0,0,2295,2274,1,0,0,0,2295,2279,1,0,0,0,2295, + 2280,1,0,0,0,2295,2281,1,0,0,0,2295,2291,1,0,0,0,2296,303,1,0,0, + 0,2297,2298,5,16,0,0,2298,2299,5,409,0,0,2299,2300,3,300,150,0,2300, + 2301,5,411,0,0,2301,305,1,0,0,0,2302,2303,5,324,0,0,2303,2304,5, + 409,0,0,2304,2305,3,218,109,0,2305,2306,5,411,0,0,2306,307,1,0,0, + 0,2307,2308,5,198,0,0,2308,2309,5,409,0,0,2309,2310,3,302,151,0, + 2310,2311,5,397,0,0,2311,2312,3,300,150,0,2312,2313,5,411,0,0,2313, + 309,1,0,0,0,2314,2315,5,357,0,0,2315,2316,5,409,0,0,2316,2317,3, + 298,149,0,2317,2318,5,411,0,0,2318,311,1,0,0,0,2319,2321,7,23,0, + 0,2320,2322,7,24,0,0,2321,2320,1,0,0,0,2321,2322,1,0,0,0,2322,313, + 1,0,0,0,2323,2325,3,318,159,0,2324,2323,1,0,0,0,2324,2325,1,0,0, + 0,2325,2326,1,0,0,0,2326,2327,3,316,158,0,2327,315,1,0,0,0,2328, + 2331,3,322,161,0,2329,2331,3,326,163,0,2330,2328,1,0,0,0,2330,2329, + 1,0,0,0,2331,317,1,0,0,0,2332,2333,5,387,0,0,2333,2338,3,320,160, + 0,2334,2335,5,397,0,0,2335,2337,3,320,160,0,2336,2334,1,0,0,0,2337, + 2340,1,0,0,0,2338,2336,1,0,0,0,2338,2339,1,0,0,0,2339,319,1,0,0, + 0,2340,2338,1,0,0,0,2341,2346,3,590,295,0,2342,2343,5,399,0,0,2343, + 2344,3,220,110,0,2344,2345,5,400,0,0,2345,2347,1,0,0,0,2346,2342, + 1,0,0,0,2346,2347,1,0,0,0,2347,2348,1,0,0,0,2348,2349,5,17,0,0,2349, + 2350,5,399,0,0,2350,2351,3,314,157,0,2351,2352,5,400,0,0,2352,321, + 1,0,0,0,2353,2359,3,324,162,0,2354,2355,3,312,156,0,2355,2356,3, + 324,162,0,2356,2358,1,0,0,0,2357,2354,1,0,0,0,2358,2361,1,0,0,0, + 2359,2357,1,0,0,0,2359,2360,1,0,0,0,2360,323,1,0,0,0,2361,2359,1, + 0,0,0,2362,2363,3,396,198,0,2363,2364,3,336,168,0,2364,2366,3,452, + 226,0,2365,2367,3,410,205,0,2366,2365,1,0,0,0,2366,2367,1,0,0,0, + 2367,2369,1,0,0,0,2368,2370,3,444,222,0,2369,2368,1,0,0,0,2369,2370, + 1,0,0,0,2370,2372,1,0,0,0,2371,2373,3,478,239,0,2372,2371,1,0,0, + 0,2372,2373,1,0,0,0,2373,2375,1,0,0,0,2374,2376,3,486,243,0,2375, + 2374,1,0,0,0,2375,2376,1,0,0,0,2376,2378,1,0,0,0,2377,2379,3,470, + 235,0,2378,2377,1,0,0,0,2378,2379,1,0,0,0,2379,2381,1,0,0,0,2380, + 2382,3,488,244,0,2381,2380,1,0,0,0,2381,2382,1,0,0,0,2382,2384,1, + 0,0,0,2383,2385,3,498,249,0,2384,2383,1,0,0,0,2384,2385,1,0,0,0, + 2385,2387,1,0,0,0,2386,2388,3,502,251,0,2387,2386,1,0,0,0,2387,2388, + 1,0,0,0,2388,2390,1,0,0,0,2389,2391,3,504,252,0,2390,2389,1,0,0, + 0,2390,2391,1,0,0,0,2391,2393,1,0,0,0,2392,2394,3,506,253,0,2393, + 2392,1,0,0,0,2393,2394,1,0,0,0,2394,2396,1,0,0,0,2395,2397,3,340, + 170,0,2396,2395,1,0,0,0,2396,2397,1,0,0,0,2397,2434,1,0,0,0,2398, + 2399,3,396,198,0,2399,2401,3,452,226,0,2400,2402,3,410,205,0,2401, + 2400,1,0,0,0,2401,2402,1,0,0,0,2402,2404,1,0,0,0,2403,2405,3,444, + 222,0,2404,2403,1,0,0,0,2404,2405,1,0,0,0,2405,2407,1,0,0,0,2406, + 2408,3,478,239,0,2407,2406,1,0,0,0,2407,2408,1,0,0,0,2408,2410,1, + 0,0,0,2409,2411,3,486,243,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0, + 2411,2413,1,0,0,0,2412,2414,3,470,235,0,2413,2412,1,0,0,0,2413,2414, + 1,0,0,0,2414,2416,1,0,0,0,2415,2417,3,488,244,0,2416,2415,1,0,0, + 0,2416,2417,1,0,0,0,2417,2419,1,0,0,0,2418,2420,3,498,249,0,2419, + 2418,1,0,0,0,2419,2420,1,0,0,0,2420,2422,1,0,0,0,2421,2423,3,502, + 251,0,2422,2421,1,0,0,0,2422,2423,1,0,0,0,2423,2425,1,0,0,0,2424, + 2426,3,504,252,0,2425,2424,1,0,0,0,2425,2426,1,0,0,0,2426,2428,1, + 0,0,0,2427,2429,3,506,253,0,2428,2427,1,0,0,0,2428,2429,1,0,0,0, + 2429,2431,1,0,0,0,2430,2432,3,340,170,0,2431,2430,1,0,0,0,2431,2432, + 1,0,0,0,2432,2434,1,0,0,0,2433,2362,1,0,0,0,2433,2398,1,0,0,0,2434, + 325,1,0,0,0,2435,2436,3,336,168,0,2436,2437,3,330,165,0,2437,2440, + 1,0,0,0,2438,2440,3,330,165,0,2439,2435,1,0,0,0,2439,2438,1,0,0, + 0,2440,327,1,0,0,0,2441,2443,3,452,226,0,2442,2444,3,396,198,0,2443, + 2442,1,0,0,0,2443,2444,1,0,0,0,2444,2446,1,0,0,0,2445,2447,3,444, + 222,0,2446,2445,1,0,0,0,2446,2447,1,0,0,0,2447,2449,1,0,0,0,2448, + 2450,3,478,239,0,2449,2448,1,0,0,0,2449,2450,1,0,0,0,2450,2452,1, + 0,0,0,2451,2453,3,486,243,0,2452,2451,1,0,0,0,2452,2453,1,0,0,0, + 2453,2455,1,0,0,0,2454,2456,3,470,235,0,2455,2454,1,0,0,0,2455,2456, + 1,0,0,0,2456,2458,1,0,0,0,2457,2459,3,488,244,0,2458,2457,1,0,0, + 0,2458,2459,1,0,0,0,2459,2466,1,0,0,0,2460,2461,5,399,0,0,2461,2462, + 3,330,165,0,2462,2463,5,400,0,0,2463,2466,1,0,0,0,2464,2466,3,446, + 223,0,2465,2441,1,0,0,0,2465,2460,1,0,0,0,2465,2464,1,0,0,0,2466, + 329,1,0,0,0,2467,2469,3,328,164,0,2468,2470,3,332,166,0,2469,2468, + 1,0,0,0,2469,2470,1,0,0,0,2470,2472,1,0,0,0,2471,2473,3,498,249, + 0,2472,2471,1,0,0,0,2472,2473,1,0,0,0,2473,2475,1,0,0,0,2474,2476, + 3,502,251,0,2475,2474,1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0, + 0,2477,2479,3,504,252,0,2478,2477,1,0,0,0,2478,2479,1,0,0,0,2479, + 2481,1,0,0,0,2480,2482,3,506,253,0,2481,2480,1,0,0,0,2481,2482,1, + 0,0,0,2482,2484,1,0,0,0,2483,2485,3,340,170,0,2484,2483,1,0,0,0, + 2484,2485,1,0,0,0,2485,331,1,0,0,0,2486,2487,3,312,156,0,2487,2488, + 3,328,164,0,2488,2490,1,0,0,0,2489,2486,1,0,0,0,2490,2491,1,0,0, + 0,2491,2489,1,0,0,0,2491,2492,1,0,0,0,2492,333,1,0,0,0,2493,2495, + 3,318,159,0,2494,2493,1,0,0,0,2494,2495,1,0,0,0,2495,2496,1,0,0, + 0,2496,2497,3,330,165,0,2497,335,1,0,0,0,2498,2515,5,161,0,0,2499, + 2500,5,235,0,0,2500,2502,3,338,169,0,2501,2503,3,32,16,0,2502,2501, + 1,0,0,0,2502,2503,1,0,0,0,2503,2516,1,0,0,0,2504,2506,5,166,0,0, + 2505,2507,5,329,0,0,2506,2505,1,0,0,0,2506,2507,1,0,0,0,2507,2508, + 1,0,0,0,2508,2513,3,576,288,0,2509,2510,5,399,0,0,2510,2511,3,220, + 110,0,2511,2512,5,400,0,0,2512,2514,1,0,0,0,2513,2509,1,0,0,0,2513, + 2514,1,0,0,0,2514,2516,1,0,0,0,2515,2499,1,0,0,0,2515,2504,1,0,0, + 0,2516,337,1,0,0,0,2517,2519,5,188,0,0,2518,2517,1,0,0,0,2518,2519, + 1,0,0,0,2519,2520,1,0,0,0,2520,2521,5,93,0,0,2521,2523,5,426,0,0, + 2522,2524,3,184,92,0,2523,2522,1,0,0,0,2523,2524,1,0,0,0,2524,2526, + 1,0,0,0,2525,2527,3,212,106,0,2526,2525,1,0,0,0,2526,2527,1,0,0, + 0,2527,2531,1,0,0,0,2528,2529,5,329,0,0,2529,2531,3,576,288,0,2530, + 2518,1,0,0,0,2530,2528,1,0,0,0,2531,339,1,0,0,0,2532,2541,5,185, + 0,0,2533,2534,5,431,0,0,2534,2536,5,397,0,0,2535,2533,1,0,0,0,2535, + 2536,1,0,0,0,2536,2537,1,0,0,0,2537,2542,5,431,0,0,2538,2539,5,431, + 0,0,2539,2540,5,223,0,0,2540,2542,5,431,0,0,2541,2535,1,0,0,0,2541, + 2538,1,0,0,0,2542,341,1,0,0,0,2543,2544,3,222,111,0,2544,2545,5, + 405,0,0,2545,2546,3,344,172,0,2546,343,1,0,0,0,2547,2550,5,83,0, + 0,2548,2550,3,546,273,0,2549,2547,1,0,0,0,2549,2548,1,0,0,0,2550, + 345,1,0,0,0,2551,2552,5,304,0,0,2552,2557,3,342,171,0,2553,2554, + 5,397,0,0,2554,2556,3,342,171,0,2555,2553,1,0,0,0,2556,2559,1,0, + 0,0,2557,2555,1,0,0,0,2557,2558,1,0,0,0,2558,347,1,0,0,0,2559,2557, + 1,0,0,0,2560,2561,5,318,0,0,2561,2570,5,344,0,0,2562,2567,3,350, + 175,0,2563,2564,5,397,0,0,2564,2566,3,350,175,0,2565,2563,1,0,0, + 0,2566,2569,1,0,0,0,2567,2565,1,0,0,0,2567,2568,1,0,0,0,2568,2571, + 1,0,0,0,2569,2567,1,0,0,0,2570,2562,1,0,0,0,2570,2571,1,0,0,0,2571, + 2584,1,0,0,0,2572,2574,5,48,0,0,2573,2575,5,389,0,0,2574,2573,1, + 0,0,0,2574,2575,1,0,0,0,2575,2584,1,0,0,0,2576,2578,5,289,0,0,2577, + 2579,5,389,0,0,2578,2577,1,0,0,0,2578,2579,1,0,0,0,2579,2584,1,0, + 0,0,2580,2581,5,304,0,0,2581,2582,5,22,0,0,2582,2584,7,25,0,0,2583, + 2560,1,0,0,0,2583,2572,1,0,0,0,2583,2576,1,0,0,0,2583,2580,1,0,0, + 0,2584,349,1,0,0,0,2585,2586,5,168,0,0,2586,2587,5,182,0,0,2587, + 2591,5,312,0,0,2588,2589,5,261,0,0,2589,2591,7,26,0,0,2590,2585, + 1,0,0,0,2590,2588,1,0,0,0,2591,351,1,0,0,0,2592,2595,3,356,178,0, + 2593,2595,3,358,179,0,2594,2592,1,0,0,0,2594,2593,1,0,0,0,2595,2598, + 1,0,0,0,2596,2594,1,0,0,0,2596,2597,1,0,0,0,2597,2600,1,0,0,0,2598, + 2596,1,0,0,0,2599,2601,3,354,177,0,2600,2599,1,0,0,0,2600,2601,1, + 0,0,0,2601,353,1,0,0,0,2602,2603,5,383,0,0,2603,2604,5,216,0,0,2604, + 2607,5,201,0,0,2605,2606,5,11,0,0,2606,2608,3,536,268,0,2607,2605, + 1,0,0,0,2607,2608,1,0,0,0,2608,2609,1,0,0,0,2609,2610,5,335,0,0, + 2610,2612,5,161,0,0,2611,2613,3,234,117,0,2612,2611,1,0,0,0,2612, + 2613,1,0,0,0,2613,2614,1,0,0,0,2614,2615,5,374,0,0,2615,2616,3,494, + 247,0,2616,355,1,0,0,0,2617,2618,5,383,0,0,2618,2619,5,201,0,0,2619, + 2620,5,11,0,0,2620,2621,3,536,268,0,2621,2625,5,335,0,0,2622,2623, + 5,365,0,0,2623,2626,3,346,173,0,2624,2626,5,86,0,0,2625,2622,1,0, + 0,0,2625,2624,1,0,0,0,2626,357,1,0,0,0,2627,2628,5,383,0,0,2628, + 2629,5,201,0,0,2629,2633,5,335,0,0,2630,2631,5,365,0,0,2631,2634, + 3,346,173,0,2632,2634,5,86,0,0,2633,2630,1,0,0,0,2633,2632,1,0,0, + 0,2634,359,1,0,0,0,2635,2666,5,9,0,0,2636,2637,5,329,0,0,2637,2638, + 3,426,213,0,2638,2639,3,362,181,0,2639,2667,1,0,0,0,2640,2641,5, + 378,0,0,2641,2643,3,430,215,0,2642,2644,5,17,0,0,2643,2642,1,0,0, + 0,2643,2644,1,0,0,0,2644,2645,1,0,0,0,2645,2646,3,366,183,0,2646, + 2667,1,0,0,0,2647,2648,5,202,0,0,2648,2649,5,378,0,0,2649,2653,3, + 430,215,0,2650,2654,3,38,19,0,2651,2654,3,40,20,0,2652,2654,5,265, + 0,0,2653,2650,1,0,0,0,2653,2651,1,0,0,0,2653,2652,1,0,0,0,2654,2667, + 1,0,0,0,2655,2656,3,64,32,0,2656,2657,3,368,184,0,2657,2667,1,0, + 0,0,2658,2659,5,69,0,0,2659,2667,3,370,185,0,2660,2661,5,155,0,0, + 2661,2662,3,590,295,0,2662,2663,5,224,0,0,2663,2664,3,576,288,0, + 2664,2665,5,265,0,0,2665,2667,1,0,0,0,2666,2636,1,0,0,0,2666,2640, + 1,0,0,0,2666,2647,1,0,0,0,2666,2655,1,0,0,0,2666,2658,1,0,0,0,2666, + 2660,1,0,0,0,2667,361,1,0,0,0,2668,2669,5,274,0,0,2669,2670,5,341, + 0,0,2670,2758,3,428,214,0,2671,2672,5,102,0,0,2672,2758,5,239,0, + 0,2673,2758,3,374,187,0,2674,2676,5,4,0,0,2675,2677,3,32,16,0,2676, + 2675,1,0,0,0,2676,2677,1,0,0,0,2677,2682,1,0,0,0,2678,2680,3,578, + 289,0,2679,2681,3,372,186,0,2680,2679,1,0,0,0,2680,2681,1,0,0,0, + 2681,2683,1,0,0,0,2682,2678,1,0,0,0,2683,2684,1,0,0,0,2684,2682, + 1,0,0,0,2684,2685,1,0,0,0,2685,2758,1,0,0,0,2686,2690,5,342,0,0, + 2687,2689,3,578,289,0,2688,2687,1,0,0,0,2689,2692,1,0,0,0,2690,2688, + 1,0,0,0,2690,2691,1,0,0,0,2691,2758,1,0,0,0,2692,2690,1,0,0,0,2693, + 2697,5,15,0,0,2694,2696,3,578,289,0,2695,2694,1,0,0,0,2696,2699, + 1,0,0,0,2697,2695,1,0,0,0,2697,2698,1,0,0,0,2698,2758,1,0,0,0,2699, + 2697,1,0,0,0,2700,2704,5,353,0,0,2701,2703,3,578,289,0,2702,2701, + 1,0,0,0,2703,2706,1,0,0,0,2704,2702,1,0,0,0,2704,2705,1,0,0,0,2705, + 2758,1,0,0,0,2706,2704,1,0,0,0,2707,2708,5,304,0,0,2708,2709,5,332, + 0,0,2709,2758,3,192,96,0,2710,2711,5,363,0,0,2711,2713,5,332,0,0, + 2712,2714,3,30,15,0,2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2715, + 1,0,0,0,2715,2758,3,192,96,0,2716,2758,3,182,91,0,2717,2720,5,216, + 0,0,2718,2721,5,310,0,0,2719,2721,3,36,18,0,2720,2718,1,0,0,0,2720, + 2719,1,0,0,0,2721,2758,1,0,0,0,2722,2723,5,113,0,0,2723,2724,3,578, + 289,0,2724,2725,5,387,0,0,2725,2726,5,329,0,0,2726,2727,3,426,213, + 0,2727,2758,1,0,0,0,2728,2729,5,237,0,0,2729,2730,5,45,0,0,2730, + 2731,5,399,0,0,2731,2732,3,276,138,0,2732,2733,5,400,0,0,2733,2758, + 1,0,0,0,2734,2735,5,101,0,0,2735,2736,5,55,0,0,2736,2758,3,590,295, + 0,2737,2740,5,4,0,0,2738,2741,3,254,127,0,2739,2741,3,244,122,0, + 2740,2738,1,0,0,0,2740,2739,1,0,0,0,2741,2758,1,0,0,0,2742,2744, + 3,578,289,0,2743,2742,1,0,0,0,2743,2744,1,0,0,0,2744,2745,1,0,0, + 0,2745,2758,3,364,182,0,2746,2747,5,304,0,0,2747,2748,5,236,0,0, + 2748,2758,3,112,56,0,2749,2750,5,304,0,0,2750,2751,5,237,0,0,2751, + 2752,5,316,0,0,2752,2753,5,399,0,0,2753,2754,3,176,88,0,2754,2755, + 5,400,0,0,2755,2758,1,0,0,0,2756,2758,3,378,189,0,2757,2668,1,0, + 0,0,2757,2671,1,0,0,0,2757,2673,1,0,0,0,2757,2674,1,0,0,0,2757,2686, + 1,0,0,0,2757,2693,1,0,0,0,2757,2700,1,0,0,0,2757,2707,1,0,0,0,2757, + 2710,1,0,0,0,2757,2716,1,0,0,0,2757,2717,1,0,0,0,2757,2722,1,0,0, + 0,2757,2728,1,0,0,0,2757,2734,1,0,0,0,2757,2737,1,0,0,0,2757,2743, + 1,0,0,0,2757,2746,1,0,0,0,2757,2749,1,0,0,0,2757,2756,1,0,0,0,2758, + 363,1,0,0,0,2759,2760,5,304,0,0,2760,2761,5,129,0,0,2761,2893,3, + 380,190,0,2762,2763,5,304,0,0,2763,2764,5,189,0,0,2764,2893,5,426, + 0,0,2765,2893,5,53,0,0,2766,2776,5,304,0,0,2767,2768,5,301,0,0,2768, + 2772,5,426,0,0,2769,2770,5,387,0,0,2770,2771,5,302,0,0,2771,2773, + 3,192,96,0,2772,2769,1,0,0,0,2772,2773,1,0,0,0,2773,2777,1,0,0,0, + 2774,2775,5,302,0,0,2775,2777,3,192,96,0,2776,2767,1,0,0,0,2776, + 2774,1,0,0,0,2777,2893,1,0,0,0,2778,2779,5,363,0,0,2779,2780,5,302, + 0,0,2780,2893,3,192,96,0,2781,2782,5,274,0,0,2782,2783,5,341,0,0, + 2783,2893,3,578,289,0,2784,2785,5,166,0,0,2785,2786,5,431,0,0,2786, + 2893,5,31,0,0,2787,2788,5,304,0,0,2788,2789,5,310,0,0,2789,2790, + 5,189,0,0,2790,2791,5,399,0,0,2791,2796,3,376,188,0,2792,2793,5, + 397,0,0,2793,2795,3,376,188,0,2794,2792,1,0,0,0,2795,2798,1,0,0, + 0,2796,2794,1,0,0,0,2796,2797,1,0,0,0,2797,2799,1,0,0,0,2798,2796, + 1,0,0,0,2799,2800,5,400,0,0,2800,2893,1,0,0,0,2801,2802,5,216,0, + 0,2802,2893,7,27,0,0,2803,2893,3,180,90,0,2804,2805,5,49,0,0,2805, + 2808,5,426,0,0,2806,2807,5,11,0,0,2807,2809,5,380,0,0,2808,2806, + 1,0,0,0,2808,2809,1,0,0,0,2809,2814,1,0,0,0,2810,2811,5,42,0,0,2811, + 2812,5,166,0,0,2812,2813,5,431,0,0,2813,2815,5,31,0,0,2814,2810, + 1,0,0,0,2814,2815,1,0,0,0,2815,2817,1,0,0,0,2816,2818,3,498,249, + 0,2817,2816,1,0,0,0,2817,2818,1,0,0,0,2818,2821,1,0,0,0,2819,2820, + 5,246,0,0,2820,2822,5,426,0,0,2821,2819,1,0,0,0,2821,2822,1,0,0, + 0,2822,2827,1,0,0,0,2823,2824,5,387,0,0,2824,2825,5,235,0,0,2825, + 2826,5,332,0,0,2826,2828,3,192,96,0,2827,2823,1,0,0,0,2827,2828, + 1,0,0,0,2828,2893,1,0,0,0,2829,2830,5,365,0,0,2830,2831,5,319,0, + 0,2831,2833,5,134,0,0,2832,2834,5,45,0,0,2833,2832,1,0,0,0,2833, + 2834,1,0,0,0,2834,2835,1,0,0,0,2835,2836,3,222,111,0,2836,2837,5, + 304,0,0,2837,2840,3,192,96,0,2838,2839,5,47,0,0,2839,2841,5,426, + 0,0,2840,2838,1,0,0,0,2840,2841,1,0,0,0,2841,2893,1,0,0,0,2842,2843, + 5,365,0,0,2843,2844,5,319,0,0,2844,2845,5,304,0,0,2845,2893,3,192, + 96,0,2846,2848,5,38,0,0,2847,2849,5,45,0,0,2848,2847,1,0,0,0,2848, + 2849,1,0,0,0,2849,2850,1,0,0,0,2850,2851,3,222,111,0,2851,2852,3, + 228,114,0,2852,2854,3,300,150,0,2853,2855,3,284,142,0,2854,2853, + 1,0,0,0,2854,2855,1,0,0,0,2855,2858,1,0,0,0,2856,2857,5,47,0,0,2857, + 2859,5,426,0,0,2858,2856,1,0,0,0,2858,2859,1,0,0,0,2859,2863,1,0, + 0,0,2860,2864,5,130,0,0,2861,2862,5,6,0,0,2862,2864,3,590,295,0, + 2863,2860,1,0,0,0,2863,2861,1,0,0,0,2863,2864,1,0,0,0,2864,2866, + 1,0,0,0,2865,2867,3,34,17,0,2866,2865,1,0,0,0,2866,2867,1,0,0,0, + 2867,2893,1,0,0,0,2868,2871,5,4,0,0,2869,2871,5,278,0,0,2870,2868, + 1,0,0,0,2870,2869,1,0,0,0,2871,2872,1,0,0,0,2872,2873,5,46,0,0,2873, + 2874,5,399,0,0,2874,2875,3,214,107,0,2875,2877,5,400,0,0,2876,2878, + 3,34,17,0,2877,2876,1,0,0,0,2877,2878,1,0,0,0,2878,2893,1,0,0,0, + 2879,2880,5,365,0,0,2880,2882,5,46,0,0,2881,2883,3,34,17,0,2882, + 2881,1,0,0,0,2882,2883,1,0,0,0,2883,2893,1,0,0,0,2884,2890,3,238, + 119,0,2885,2887,5,218,0,0,2886,2888,5,34,0,0,2887,2886,1,0,0,0,2887, + 2888,1,0,0,0,2888,2891,1,0,0,0,2889,2891,5,222,0,0,2890,2885,1,0, + 0,0,2890,2889,1,0,0,0,2891,2893,1,0,0,0,2892,2759,1,0,0,0,2892,2762, + 1,0,0,0,2892,2765,1,0,0,0,2892,2766,1,0,0,0,2892,2778,1,0,0,0,2892, + 2781,1,0,0,0,2892,2784,1,0,0,0,2892,2787,1,0,0,0,2892,2801,1,0,0, + 0,2892,2803,1,0,0,0,2892,2804,1,0,0,0,2892,2829,1,0,0,0,2892,2842, + 1,0,0,0,2892,2846,1,0,0,0,2892,2870,1,0,0,0,2892,2879,1,0,0,0,2892, + 2884,1,0,0,0,2893,365,1,0,0,0,2894,2895,5,304,0,0,2895,2896,5,332, + 0,0,2896,2921,3,192,96,0,2897,2898,5,363,0,0,2898,2900,5,332,0,0, + 2899,2901,3,30,15,0,2900,2899,1,0,0,0,2900,2901,1,0,0,0,2901,2902, + 1,0,0,0,2902,2921,3,192,96,0,2903,2904,5,274,0,0,2904,2905,5,341, + 0,0,2905,2921,3,428,214,0,2906,2908,5,4,0,0,2907,2909,3,32,16,0, + 2908,2907,1,0,0,0,2908,2909,1,0,0,0,2909,2914,1,0,0,0,2910,2912, + 3,578,289,0,2911,2913,3,372,186,0,2912,2911,1,0,0,0,2912,2913,1, + 0,0,0,2913,2915,1,0,0,0,2914,2910,1,0,0,0,2915,2916,1,0,0,0,2916, + 2914,1,0,0,0,2916,2917,1,0,0,0,2917,2921,1,0,0,0,2918,2921,3,374, + 187,0,2919,2921,3,334,167,0,2920,2894,1,0,0,0,2920,2897,1,0,0,0, + 2920,2903,1,0,0,0,2920,2906,1,0,0,0,2920,2918,1,0,0,0,2920,2919, + 1,0,0,0,2921,367,1,0,0,0,2922,2923,3,420,210,0,2923,2924,5,304,0, + 0,2924,2925,5,76,0,0,2925,2926,3,196,98,0,2926,2938,1,0,0,0,2927, + 2928,3,420,210,0,2928,2929,5,304,0,0,2929,2930,5,236,0,0,2930,2931, + 3,114,57,0,2931,2938,1,0,0,0,2932,2933,3,420,210,0,2933,2934,5,304, + 0,0,2934,2935,7,28,0,0,2935,2936,5,426,0,0,2936,2938,1,0,0,0,2937, + 2922,1,0,0,0,2937,2927,1,0,0,0,2937,2932,1,0,0,0,2938,369,1,0,0, + 0,2939,2940,3,420,210,0,2940,2941,5,304,0,0,2941,2942,5,77,0,0,2942, + 2943,3,196,98,0,2943,2955,1,0,0,0,2944,2945,3,420,210,0,2945,2946, + 5,304,0,0,2946,2947,5,236,0,0,2947,2948,3,114,57,0,2948,2955,1,0, + 0,0,2949,2950,3,420,210,0,2950,2951,5,304,0,0,2951,2952,5,367,0, + 0,2952,2953,5,426,0,0,2953,2955,1,0,0,0,2954,2939,1,0,0,0,2954,2944, + 1,0,0,0,2954,2949,1,0,0,0,2955,371,1,0,0,0,2956,2957,5,189,0,0,2957, + 2958,5,426,0,0,2958,373,1,0,0,0,2959,2961,5,101,0,0,2960,2962,3, + 30,15,0,2961,2960,1,0,0,0,2961,2962,1,0,0,0,2962,2963,1,0,0,0,2963, + 2964,5,237,0,0,2964,2970,3,582,291,0,2965,2966,5,397,0,0,2966,2967, + 5,237,0,0,2967,2969,3,582,291,0,2968,2965,1,0,0,0,2969,2972,1,0, + 0,0,2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,2975,1,0,0,0,2972,2970, + 1,0,0,0,2973,2974,5,152,0,0,2974,2976,5,254,0,0,2975,2973,1,0,0, + 0,2975,2976,1,0,0,0,2976,2978,1,0,0,0,2977,2979,5,255,0,0,2978,2977, + 1,0,0,0,2978,2979,1,0,0,0,2979,2981,1,0,0,0,2980,2982,3,14,7,0,2981, + 2980,1,0,0,0,2981,2982,1,0,0,0,2982,375,1,0,0,0,2983,2986,3,528, + 264,0,2984,2986,3,260,130,0,2985,2983,1,0,0,0,2985,2984,1,0,0,0, + 2986,2987,1,0,0,0,2987,2988,5,405,0,0,2988,2989,5,426,0,0,2989,377, + 1,0,0,0,2990,3000,5,115,0,0,2991,2992,5,289,0,0,2992,2993,5,399, + 0,0,2993,3001,7,29,0,0,2994,2995,5,118,0,0,2995,2996,5,399,0,0,2996, + 3001,5,426,0,0,2997,2998,5,306,0,0,2998,2999,5,399,0,0,2999,3001, + 5,431,0,0,3000,2991,1,0,0,0,3000,2994,1,0,0,0,3000,2997,1,0,0,0, + 3001,3002,1,0,0,0,3002,3003,5,400,0,0,3003,379,1,0,0,0,3004,3005, + 5,160,0,0,3005,3006,5,426,0,0,3006,3007,5,233,0,0,3007,3008,5,426, + 0,0,3008,3009,5,301,0,0,3009,3014,5,426,0,0,3010,3011,5,159,0,0, + 3011,3012,5,426,0,0,3012,3013,5,232,0,0,3013,3015,5,426,0,0,3014, + 3010,1,0,0,0,3014,3015,1,0,0,0,3015,3018,1,0,0,0,3016,3018,3,590, + 295,0,3017,3004,1,0,0,0,3017,3016,1,0,0,0,3018,381,1,0,0,0,3019, + 3020,5,184,0,0,3020,3029,5,128,0,0,3021,3022,5,184,0,0,3022,3023, + 5,128,0,0,3023,3024,3,590,295,0,3024,3025,5,426,0,0,3025,3029,1, + 0,0,0,3026,3027,5,184,0,0,3027,3029,3,426,213,0,3028,3019,1,0,0, + 0,3028,3021,1,0,0,0,3028,3026,1,0,0,0,3029,383,1,0,0,0,3030,3164, + 5,58,0,0,3031,3033,5,333,0,0,3032,3031,1,0,0,0,3032,3033,1,0,0,0, + 3033,3035,1,0,0,0,3034,3036,5,345,0,0,3035,3034,1,0,0,0,3035,3036, + 1,0,0,0,3036,3038,1,0,0,0,3037,3039,5,123,0,0,3038,3037,1,0,0,0, + 3038,3039,1,0,0,0,3039,3040,1,0,0,0,3040,3042,5,329,0,0,3041,3043, + 3,32,16,0,3042,3041,1,0,0,0,3042,3043,1,0,0,0,3043,3044,1,0,0,0, + 3044,3101,3,428,214,0,3045,3047,3,382,191,0,3046,3048,3,172,86,0, + 3047,3046,1,0,0,0,3047,3048,1,0,0,0,3048,3050,1,0,0,0,3049,3051, + 3,184,92,0,3050,3049,1,0,0,0,3050,3051,1,0,0,0,3051,3053,1,0,0,0, + 3052,3054,3,212,106,0,3053,3052,1,0,0,0,3053,3054,1,0,0,0,3054,3056, + 1,0,0,0,3055,3057,3,372,186,0,3056,3055,1,0,0,0,3056,3057,1,0,0, + 0,3057,3059,1,0,0,0,3058,3060,3,190,95,0,3059,3058,1,0,0,0,3059, + 3060,1,0,0,0,3060,3062,1,0,0,0,3061,3063,3,170,85,0,3062,3061,1, + 0,0,0,3062,3063,1,0,0,0,3063,3102,1,0,0,0,3064,3065,5,399,0,0,3065, + 3066,3,216,108,0,3066,3067,5,400,0,0,3067,3069,1,0,0,0,3068,3064, + 1,0,0,0,3068,3069,1,0,0,0,3069,3071,1,0,0,0,3070,3072,3,168,84,0, + 3071,3070,1,0,0,0,3071,3072,1,0,0,0,3072,3074,1,0,0,0,3073,3075, + 3,172,86,0,3074,3073,1,0,0,0,3074,3075,1,0,0,0,3075,3077,1,0,0,0, + 3076,3078,3,180,90,0,3077,3076,1,0,0,0,3077,3078,1,0,0,0,3078,3080, + 1,0,0,0,3079,3081,3,182,91,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0, + 3081,3083,1,0,0,0,3082,3084,3,184,92,0,3083,3082,1,0,0,0,3083,3084, + 1,0,0,0,3084,3086,1,0,0,0,3085,3087,3,212,106,0,3086,3085,1,0,0, + 0,3086,3087,1,0,0,0,3087,3089,1,0,0,0,3088,3090,3,372,186,0,3089, + 3088,1,0,0,0,3089,3090,1,0,0,0,3090,3092,1,0,0,0,3091,3093,3,190, + 95,0,3092,3091,1,0,0,0,3092,3093,1,0,0,0,3093,3095,1,0,0,0,3094, + 3096,3,170,85,0,3095,3094,1,0,0,0,3095,3096,1,0,0,0,3096,3099,1, + 0,0,0,3097,3098,5,17,0,0,3098,3100,3,334,167,0,3099,3097,1,0,0,0, + 3099,3100,1,0,0,0,3100,3102,1,0,0,0,3101,3045,1,0,0,0,3101,3068, + 1,0,0,0,3102,3165,1,0,0,0,3103,3104,5,195,0,0,3104,3106,5,329,0, + 0,3105,3107,3,32,16,0,3106,3105,1,0,0,0,3106,3107,1,0,0,0,3107,3108, + 1,0,0,0,3108,3162,3,428,214,0,3109,3111,3,382,191,0,3110,3112,3, + 184,92,0,3111,3110,1,0,0,0,3111,3112,1,0,0,0,3112,3114,1,0,0,0,3113, + 3115,3,212,106,0,3114,3113,1,0,0,0,3114,3115,1,0,0,0,3115,3117,1, + 0,0,0,3116,3118,3,372,186,0,3117,3116,1,0,0,0,3117,3118,1,0,0,0, + 3118,3120,1,0,0,0,3119,3121,3,190,95,0,3120,3119,1,0,0,0,3120,3121, + 1,0,0,0,3121,3123,1,0,0,0,3122,3124,3,170,85,0,3123,3122,1,0,0,0, + 3123,3124,1,0,0,0,3124,3163,1,0,0,0,3125,3126,5,399,0,0,3126,3127, + 3,216,108,0,3127,3128,5,400,0,0,3128,3130,1,0,0,0,3129,3125,1,0, + 0,0,3129,3130,1,0,0,0,3130,3132,1,0,0,0,3131,3133,3,168,84,0,3132, + 3131,1,0,0,0,3132,3133,1,0,0,0,3133,3135,1,0,0,0,3134,3136,3,172, + 86,0,3135,3134,1,0,0,0,3135,3136,1,0,0,0,3136,3138,1,0,0,0,3137, + 3139,3,180,90,0,3138,3137,1,0,0,0,3138,3139,1,0,0,0,3139,3141,1, + 0,0,0,3140,3142,3,182,91,0,3141,3140,1,0,0,0,3141,3142,1,0,0,0,3142, + 3144,1,0,0,0,3143,3145,3,184,92,0,3144,3143,1,0,0,0,3144,3145,1, + 0,0,0,3145,3147,1,0,0,0,3146,3148,3,212,106,0,3147,3146,1,0,0,0, + 3147,3148,1,0,0,0,3148,3150,1,0,0,0,3149,3151,3,372,186,0,3150,3149, + 1,0,0,0,3150,3151,1,0,0,0,3151,3153,1,0,0,0,3152,3154,3,190,95,0, + 3153,3152,1,0,0,0,3153,3154,1,0,0,0,3154,3156,1,0,0,0,3155,3157, + 3,170,85,0,3156,3155,1,0,0,0,3156,3157,1,0,0,0,3157,3160,1,0,0,0, + 3158,3159,5,17,0,0,3159,3161,3,334,167,0,3160,3158,1,0,0,0,3160, + 3161,1,0,0,0,3161,3163,1,0,0,0,3162,3109,1,0,0,0,3162,3129,1,0,0, + 0,3163,3165,1,0,0,0,3164,3032,1,0,0,0,3164,3103,1,0,0,0,3165,385, + 1,0,0,0,3166,3167,5,58,0,0,3167,3169,5,69,0,0,3168,3170,3,32,16, + 0,3169,3168,1,0,0,0,3169,3170,1,0,0,0,3170,3171,1,0,0,0,3171,3174, + 3,590,295,0,3172,3173,5,352,0,0,3173,3175,5,426,0,0,3174,3172,1, + 0,0,0,3174,3175,1,0,0,0,3175,3178,1,0,0,0,3176,3177,5,367,0,0,3177, + 3179,5,426,0,0,3178,3176,1,0,0,0,3178,3179,1,0,0,0,3179,3182,1,0, + 0,0,3180,3181,5,47,0,0,3181,3183,5,426,0,0,3182,3180,1,0,0,0,3182, + 3183,1,0,0,0,3183,3187,1,0,0,0,3184,3185,5,387,0,0,3185,3186,5,77, + 0,0,3186,3188,3,196,98,0,3187,3184,1,0,0,0,3187,3188,1,0,0,0,3188, + 387,1,0,0,0,3189,3190,5,101,0,0,3190,3192,5,69,0,0,3191,3193,3,30, + 15,0,3192,3191,1,0,0,0,3192,3193,1,0,0,0,3193,3194,1,0,0,0,3194, + 3195,3,590,295,0,3195,389,1,0,0,0,3196,3197,3,590,295,0,3197,3198, + 5,395,0,0,3198,3200,1,0,0,0,3199,3196,1,0,0,0,3200,3203,1,0,0,0, + 3201,3199,1,0,0,0,3201,3202,1,0,0,0,3202,3204,1,0,0,0,3203,3201, + 1,0,0,0,3204,3205,5,415,0,0,3205,391,1,0,0,0,3206,3211,3,536,268, + 0,3207,3208,5,397,0,0,3208,3210,3,536,268,0,3209,3207,1,0,0,0,3210, + 3213,1,0,0,0,3211,3209,1,0,0,0,3211,3212,1,0,0,0,3212,393,1,0,0, + 0,3213,3211,1,0,0,0,3214,3219,3,590,295,0,3215,3216,5,397,0,0,3216, + 3218,3,590,295,0,3217,3215,1,0,0,0,3218,3221,1,0,0,0,3219,3217,1, + 0,0,0,3219,3220,1,0,0,0,3220,395,1,0,0,0,3221,3219,1,0,0,0,3222, + 3223,5,139,0,0,3223,3224,3,398,199,0,3224,397,1,0,0,0,3225,3226, + 5,359,0,0,3226,3229,3,406,203,0,3227,3228,5,397,0,0,3228,3230,3, + 406,203,0,3229,3227,1,0,0,0,3230,3231,1,0,0,0,3231,3229,1,0,0,0, + 3231,3232,1,0,0,0,3232,3235,1,0,0,0,3233,3235,3,402,201,0,3234,3225, + 1,0,0,0,3234,3233,1,0,0,0,3235,399,1,0,0,0,3236,3240,3,416,208,0, + 3237,3239,3,410,205,0,3238,3237,1,0,0,0,3239,3242,1,0,0,0,3240,3238, + 1,0,0,0,3240,3241,1,0,0,0,3241,3269,1,0,0,0,3242,3240,1,0,0,0,3243, + 3247,3,450,225,0,3244,3246,3,410,205,0,3245,3244,1,0,0,0,3246,3249, + 1,0,0,0,3247,3245,1,0,0,0,3247,3248,1,0,0,0,3248,3269,1,0,0,0,3249, + 3247,1,0,0,0,3250,3254,3,434,217,0,3251,3253,3,410,205,0,3252,3251, + 1,0,0,0,3253,3256,1,0,0,0,3254,3252,1,0,0,0,3254,3255,1,0,0,0,3255, + 3269,1,0,0,0,3256,3254,1,0,0,0,3257,3261,3,440,220,0,3258,3260,3, + 410,205,0,3259,3258,1,0,0,0,3260,3263,1,0,0,0,3261,3259,1,0,0,0, + 3261,3262,1,0,0,0,3262,3269,1,0,0,0,3263,3261,1,0,0,0,3264,3265, + 5,399,0,0,3265,3266,3,402,201,0,3266,3267,5,400,0,0,3267,3269,1, + 0,0,0,3268,3236,1,0,0,0,3268,3243,1,0,0,0,3268,3250,1,0,0,0,3268, + 3257,1,0,0,0,3268,3264,1,0,0,0,3269,401,1,0,0,0,3270,3288,3,400, + 200,0,3271,3272,3,408,204,0,3272,3284,3,404,202,0,3273,3280,5,224, + 0,0,3274,3281,3,536,268,0,3275,3278,3,226,113,0,3276,3277,5,405, + 0,0,3277,3279,3,226,113,0,3278,3276,1,0,0,0,3278,3279,1,0,0,0,3279, + 3281,1,0,0,0,3280,3274,1,0,0,0,3280,3275,1,0,0,0,3281,3285,1,0,0, + 0,3282,3283,5,370,0,0,3283,3285,3,234,117,0,3284,3273,1,0,0,0,3284, + 3282,1,0,0,0,3284,3285,1,0,0,0,3285,3287,1,0,0,0,3286,3271,1,0,0, + 0,3287,3290,1,0,0,0,3288,3286,1,0,0,0,3288,3289,1,0,0,0,3289,403, + 1,0,0,0,3290,3288,1,0,0,0,3291,3296,3,416,208,0,3292,3296,3,450, + 225,0,3293,3296,3,434,217,0,3294,3296,3,440,220,0,3295,3291,1,0, + 0,0,3295,3292,1,0,0,0,3295,3293,1,0,0,0,3295,3294,1,0,0,0,3296,3300, + 1,0,0,0,3297,3299,3,410,205,0,3298,3297,1,0,0,0,3299,3302,1,0,0, + 0,3300,3298,1,0,0,0,3300,3301,1,0,0,0,3301,405,1,0,0,0,3302,3300, + 1,0,0,0,3303,3305,5,250,0,0,3304,3303,1,0,0,0,3304,3305,1,0,0,0, + 3305,3306,1,0,0,0,3306,3308,3,424,212,0,3307,3309,3,414,207,0,3308, + 3307,1,0,0,0,3308,3309,1,0,0,0,3309,3314,1,0,0,0,3310,3312,5,17, + 0,0,3311,3310,1,0,0,0,3311,3312,1,0,0,0,3312,3313,1,0,0,0,3313,3315, + 3,590,295,0,3314,3311,1,0,0,0,3314,3315,1,0,0,0,3315,3316,1,0,0, + 0,3316,3317,5,399,0,0,3317,3318,3,392,196,0,3318,3319,5,400,0,0, + 3319,407,1,0,0,0,3320,3335,5,397,0,0,3321,3332,5,157,0,0,3322,3332, + 5,60,0,0,3323,3325,7,30,0,0,3324,3326,5,231,0,0,3325,3324,1,0,0, + 0,3325,3326,1,0,0,0,3326,3332,1,0,0,0,3327,3329,5,180,0,0,3328,3330, + 7,31,0,0,3329,3328,1,0,0,0,3329,3330,1,0,0,0,3330,3332,1,0,0,0,3331, + 3321,1,0,0,0,3331,3322,1,0,0,0,3331,3323,1,0,0,0,3331,3327,1,0,0, + 0,3331,3332,1,0,0,0,3332,3333,1,0,0,0,3333,3335,5,171,0,0,3334,3320, + 1,0,0,0,3334,3331,1,0,0,0,3335,409,1,0,0,0,3336,3337,5,178,0,0,3337, + 3338,5,378,0,0,3338,3339,5,231,0,0,3339,3340,3,508,254,0,3340,3350, + 3,412,206,0,3341,3342,5,17,0,0,3342,3347,3,590,295,0,3343,3344,5, + 397,0,0,3344,3346,3,590,295,0,3345,3343,1,0,0,0,3346,3349,1,0,0, + 0,3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3351,1,0,0,0,3349,3347, + 1,0,0,0,3350,3341,1,0,0,0,3350,3351,1,0,0,0,3351,3394,1,0,0,0,3352, + 3354,5,397,0,0,3353,3352,1,0,0,0,3353,3354,1,0,0,0,3354,3355,1,0, + 0,0,3355,3391,5,178,0,0,3356,3357,5,378,0,0,3357,3358,3,508,254, + 0,3358,3368,3,412,206,0,3359,3360,5,17,0,0,3360,3365,3,590,295,0, + 3361,3362,5,397,0,0,3362,3364,3,590,295,0,3363,3361,1,0,0,0,3364, + 3367,1,0,0,0,3365,3363,1,0,0,0,3365,3366,1,0,0,0,3366,3369,1,0,0, + 0,3367,3365,1,0,0,0,3368,3359,1,0,0,0,3368,3369,1,0,0,0,3369,3392, + 1,0,0,0,3370,3371,5,329,0,0,3371,3372,5,399,0,0,3372,3373,3,446, + 223,0,3373,3375,5,400,0,0,3374,3376,5,17,0,0,3375,3374,1,0,0,0,3375, + 3376,1,0,0,0,3376,3377,1,0,0,0,3377,3389,3,412,206,0,3378,3379,5, + 399,0,0,3379,3384,3,590,295,0,3380,3381,5,397,0,0,3381,3383,3,590, + 295,0,3382,3380,1,0,0,0,3383,3386,1,0,0,0,3384,3382,1,0,0,0,3384, + 3385,1,0,0,0,3385,3387,1,0,0,0,3386,3384,1,0,0,0,3387,3388,5,400, + 0,0,3388,3390,1,0,0,0,3389,3378,1,0,0,0,3389,3390,1,0,0,0,3390,3392, + 1,0,0,0,3391,3356,1,0,0,0,3391,3370,1,0,0,0,3392,3394,1,0,0,0,3393, + 3336,1,0,0,0,3393,3353,1,0,0,0,3394,411,1,0,0,0,3395,3396,3,590, + 295,0,3396,413,1,0,0,0,3397,3398,5,331,0,0,3398,3399,5,399,0,0,3399, + 3400,5,30,0,0,3400,3401,5,431,0,0,3401,3402,5,230,0,0,3402,3403, + 5,221,0,0,3403,3413,5,431,0,0,3404,3405,5,224,0,0,3405,3410,3,536, + 268,0,3406,3407,5,397,0,0,3407,3409,3,536,268,0,3408,3406,1,0,0, + 0,3409,3412,1,0,0,0,3410,3408,1,0,0,0,3410,3411,1,0,0,0,3411,3414, + 1,0,0,0,3412,3410,1,0,0,0,3413,3404,1,0,0,0,3413,3414,1,0,0,0,3414, + 3415,1,0,0,0,3415,3425,5,400,0,0,3416,3417,5,331,0,0,3417,3421,5, + 399,0,0,3418,3419,5,431,0,0,3419,3422,7,32,0,0,3420,3422,5,430,0, + 0,3421,3418,1,0,0,0,3421,3420,1,0,0,0,3422,3423,1,0,0,0,3423,3425, + 5,400,0,0,3424,3397,1,0,0,0,3424,3416,1,0,0,0,3425,415,1,0,0,0,3426, + 3428,3,424,212,0,3427,3429,3,192,96,0,3428,3427,1,0,0,0,3428,3429, + 1,0,0,0,3429,3431,1,0,0,0,3430,3432,3,414,207,0,3431,3430,1,0,0, + 0,3431,3432,1,0,0,0,3432,3434,1,0,0,0,3433,3435,3,418,209,0,3434, + 3433,1,0,0,0,3434,3435,1,0,0,0,3435,3440,1,0,0,0,3436,3438,5,17, + 0,0,3437,3436,1,0,0,0,3437,3438,1,0,0,0,3438,3439,1,0,0,0,3439,3441, + 3,590,295,0,3440,3437,1,0,0,0,3440,3441,1,0,0,0,3441,417,1,0,0,0, + 3442,3452,5,134,0,0,3443,3444,5,327,0,0,3444,3445,5,17,0,0,3445, + 3446,5,221,0,0,3446,3453,3,536,268,0,3447,3448,5,134,0,0,3448,3449, + 5,328,0,0,3449,3450,5,17,0,0,3450,3451,5,221,0,0,3451,3453,5,431, + 0,0,3452,3443,1,0,0,0,3452,3447,1,0,0,0,3453,419,1,0,0,0,3454,3455, + 3,590,295,0,3455,421,1,0,0,0,3456,3457,3,590,295,0,3457,423,1,0, + 0,0,3458,3461,3,426,213,0,3459,3461,3,430,215,0,3460,3458,1,0,0, + 0,3460,3459,1,0,0,0,3461,425,1,0,0,0,3462,3463,3,590,295,0,3463, + 3464,5,395,0,0,3464,3467,3,590,295,0,3465,3466,5,395,0,0,3466,3468, + 3,590,295,0,3467,3465,1,0,0,0,3467,3468,1,0,0,0,3468,3471,1,0,0, + 0,3469,3471,3,590,295,0,3470,3462,1,0,0,0,3470,3469,1,0,0,0,3471, + 427,1,0,0,0,3472,3473,3,590,295,0,3473,3474,5,395,0,0,3474,3477, + 3,590,295,0,3475,3476,5,395,0,0,3476,3478,3,590,295,0,3477,3475, + 1,0,0,0,3477,3478,1,0,0,0,3478,3481,1,0,0,0,3479,3481,3,590,295, + 0,3480,3472,1,0,0,0,3480,3479,1,0,0,0,3481,429,1,0,0,0,3482,3483, + 3,590,295,0,3483,3484,5,395,0,0,3484,3486,1,0,0,0,3485,3482,1,0, + 0,0,3485,3486,1,0,0,0,3486,3487,1,0,0,0,3487,3488,3,590,295,0,3488, + 431,1,0,0,0,3489,3490,3,590,295,0,3490,3491,5,395,0,0,3491,3493, + 1,0,0,0,3492,3489,1,0,0,0,3492,3493,1,0,0,0,3493,3494,1,0,0,0,3494, + 3495,3,590,295,0,3495,433,1,0,0,0,3496,3497,5,399,0,0,3497,3498, + 3,314,157,0,3498,3500,5,400,0,0,3499,3501,5,17,0,0,3500,3499,1,0, + 0,0,3500,3501,1,0,0,0,3501,3502,1,0,0,0,3502,3503,3,590,295,0,3503, + 435,1,0,0,0,3504,3506,3,500,250,0,3505,3507,3,498,249,0,3506,3505, + 1,0,0,0,3506,3507,1,0,0,0,3507,3516,1,0,0,0,3508,3516,3,498,249, + 0,3509,3511,3,504,252,0,3510,3512,3,506,253,0,3511,3510,1,0,0,0, + 3511,3512,1,0,0,0,3512,3516,1,0,0,0,3513,3516,3,506,253,0,3514,3516, + 3,502,251,0,3515,3504,1,0,0,0,3515,3508,1,0,0,0,3515,3509,1,0,0, + 0,3515,3513,1,0,0,0,3515,3514,1,0,0,0,3516,437,1,0,0,0,3517,3521, + 3,434,217,0,3518,3521,3,416,208,0,3519,3521,3,440,220,0,3520,3517, + 1,0,0,0,3520,3518,1,0,0,0,3520,3519,1,0,0,0,3521,439,1,0,0,0,3522, + 3524,3,442,221,0,3523,3525,3,590,295,0,3524,3523,1,0,0,0,3524,3525, + 1,0,0,0,3525,441,1,0,0,0,3526,3527,3,590,295,0,3527,3528,5,399,0, + 0,3528,3529,5,224,0,0,3529,3531,3,438,219,0,3530,3532,3,436,218, + 0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,3548,1,0,0,0,3533,3534, + 5,432,0,0,3534,3535,5,399,0,0,3535,3536,3,536,268,0,3536,3545,5, + 400,0,0,3537,3538,5,397,0,0,3538,3539,5,432,0,0,3539,3540,5,399, + 0,0,3540,3541,3,536,268,0,3541,3542,5,400,0,0,3542,3544,1,0,0,0, + 3543,3537,1,0,0,0,3544,3547,1,0,0,0,3545,3543,1,0,0,0,3545,3546, + 1,0,0,0,3546,3549,1,0,0,0,3547,3545,1,0,0,0,3548,3533,1,0,0,0,3548, + 3549,1,0,0,0,3549,3550,1,0,0,0,3550,3551,5,400,0,0,3551,443,1,0, + 0,0,3552,3555,5,384,0,0,3553,3556,3,536,268,0,3554,3556,3,226,113, + 0,3555,3553,1,0,0,0,3555,3554,1,0,0,0,3556,445,1,0,0,0,3557,3576, + 5,374,0,0,3558,3563,3,494,247,0,3559,3560,5,397,0,0,3560,3562,3, + 494,247,0,3561,3559,1,0,0,0,3562,3565,1,0,0,0,3563,3561,1,0,0,0, + 3563,3564,1,0,0,0,3564,3577,1,0,0,0,3565,3563,1,0,0,0,3566,3567, + 5,399,0,0,3567,3568,3,490,245,0,3568,3573,5,400,0,0,3569,3570,5, + 397,0,0,3570,3572,3,494,247,0,3571,3569,1,0,0,0,3572,3575,1,0,0, + 0,3573,3571,1,0,0,0,3573,3574,1,0,0,0,3574,3577,1,0,0,0,3575,3573, + 1,0,0,0,3576,3558,1,0,0,0,3576,3566,1,0,0,0,3577,447,1,0,0,0,3578, + 3579,5,329,0,0,3579,3580,5,399,0,0,3580,3581,3,446,223,0,3581,3582, + 5,400,0,0,3582,449,1,0,0,0,3583,3585,3,448,224,0,3584,3586,5,17, + 0,0,3585,3584,1,0,0,0,3585,3586,1,0,0,0,3586,3587,1,0,0,0,3587,3597, + 3,412,206,0,3588,3589,5,399,0,0,3589,3594,3,590,295,0,3590,3591, + 5,397,0,0,3591,3593,3,590,295,0,3592,3590,1,0,0,0,3593,3596,1,0, + 0,0,3594,3592,1,0,0,0,3594,3595,1,0,0,0,3595,3598,1,0,0,0,3596,3594, + 1,0,0,0,3597,3588,1,0,0,0,3597,3598,1,0,0,0,3598,3599,1,0,0,0,3599, + 3600,5,400,0,0,3600,451,1,0,0,0,3601,3603,5,299,0,0,3602,3604,5, + 436,0,0,3603,3602,1,0,0,0,3603,3604,1,0,0,0,3604,3611,1,0,0,0,3605, + 3607,7,24,0,0,3606,3605,1,0,0,0,3606,3607,1,0,0,0,3607,3608,1,0, + 0,0,3608,3612,3,456,228,0,3609,3610,5,347,0,0,3610,3612,3,454,227, + 0,3611,3606,1,0,0,0,3611,3609,1,0,0,0,3612,3615,1,0,0,0,3613,3615, + 3,464,232,0,3614,3601,1,0,0,0,3614,3613,1,0,0,0,3615,453,1,0,0,0, + 3616,3617,5,399,0,0,3617,3618,3,468,234,0,3618,3619,5,400,0,0,3619, + 3620,3,184,92,0,3620,3621,5,267,0,0,3621,3622,5,426,0,0,3622,3623, + 5,370,0,0,3623,3636,5,426,0,0,3624,3634,5,17,0,0,3625,3628,5,399, + 0,0,3626,3629,3,394,197,0,3627,3629,3,214,107,0,3628,3626,1,0,0, + 0,3628,3627,1,0,0,0,3629,3630,1,0,0,0,3630,3631,5,400,0,0,3631,3635, + 1,0,0,0,3632,3635,3,394,197,0,3633,3635,3,214,107,0,3634,3625,1, + 0,0,0,3634,3632,1,0,0,0,3634,3633,1,0,0,0,3635,3637,1,0,0,0,3636, + 3624,1,0,0,0,3636,3637,1,0,0,0,3637,3638,1,0,0,0,3638,3639,3,184, + 92,0,3639,3640,5,266,0,0,3640,3641,5,426,0,0,3641,455,1,0,0,0,3642, + 3647,3,458,229,0,3643,3644,5,397,0,0,3644,3646,3,458,229,0,3645, + 3643,1,0,0,0,3646,3649,1,0,0,0,3647,3645,1,0,0,0,3647,3648,1,0,0, + 0,3648,457,1,0,0,0,3649,3647,1,0,0,0,3650,3676,3,390,195,0,3651, + 3654,3,460,230,0,3652,3654,3,462,231,0,3653,3651,1,0,0,0,3653,3652, + 1,0,0,0,3654,3671,1,0,0,0,3655,3657,5,17,0,0,3656,3655,1,0,0,0,3656, + 3657,1,0,0,0,3657,3658,1,0,0,0,3658,3672,3,590,295,0,3659,3660,5, + 17,0,0,3660,3661,5,399,0,0,3661,3666,3,590,295,0,3662,3663,5,397, + 0,0,3663,3665,3,590,295,0,3664,3662,1,0,0,0,3665,3668,1,0,0,0,3666, + 3664,1,0,0,0,3666,3667,1,0,0,0,3667,3669,1,0,0,0,3668,3666,1,0,0, + 0,3669,3670,5,400,0,0,3670,3672,1,0,0,0,3671,3656,1,0,0,0,3671,3659, + 1,0,0,0,3671,3672,1,0,0,0,3672,3676,1,0,0,0,3673,3674,4,229,2,0, + 3674,3676,3,622,311,0,3675,3650,1,0,0,0,3675,3653,1,0,0,0,3675,3673, + 1,0,0,0,3676,459,1,0,0,0,3677,3678,3,222,111,0,3678,461,1,0,0,0, + 3679,3680,3,536,268,0,3680,463,1,0,0,0,3681,3682,7,33,0,0,3682,3683, + 3,468,234,0,3683,3684,3,184,92,0,3684,3685,5,267,0,0,3685,3686,5, + 426,0,0,3686,3687,5,370,0,0,3687,3700,5,426,0,0,3688,3698,5,17,0, + 0,3689,3692,5,399,0,0,3690,3693,3,394,197,0,3691,3693,3,214,107, + 0,3692,3690,1,0,0,0,3692,3691,1,0,0,0,3693,3694,1,0,0,0,3694,3695, + 5,400,0,0,3695,3699,1,0,0,0,3696,3699,3,394,197,0,3697,3699,3,214, + 107,0,3698,3689,1,0,0,0,3698,3696,1,0,0,0,3698,3697,1,0,0,0,3699, + 3701,1,0,0,0,3700,3688,1,0,0,0,3700,3701,1,0,0,0,3701,3702,1,0,0, + 0,3702,3703,3,184,92,0,3703,3704,5,266,0,0,3704,3705,5,426,0,0,3705, + 465,1,0,0,0,3706,3709,3,390,195,0,3707,3709,3,536,268,0,3708,3706, + 1,0,0,0,3708,3707,1,0,0,0,3709,467,1,0,0,0,3710,3715,3,466,233,0, + 3711,3712,5,397,0,0,3712,3714,3,466,233,0,3713,3711,1,0,0,0,3714, + 3717,1,0,0,0,3715,3713,1,0,0,0,3715,3716,1,0,0,0,3716,469,1,0,0, + 0,3717,3715,1,0,0,0,3718,3719,5,386,0,0,3719,3720,3,590,295,0,3720, + 3721,5,17,0,0,3721,3729,3,472,236,0,3722,3723,5,397,0,0,3723,3724, + 3,590,295,0,3724,3725,5,17,0,0,3725,3726,3,472,236,0,3726,3728,1, + 0,0,0,3727,3722,1,0,0,0,3728,3731,1,0,0,0,3729,3727,1,0,0,0,3729, + 3730,1,0,0,0,3730,471,1,0,0,0,3731,3729,1,0,0,0,3732,3745,3,590, + 295,0,3733,3735,5,399,0,0,3734,3736,3,590,295,0,3735,3734,1,0,0, + 0,3735,3736,1,0,0,0,3736,3738,1,0,0,0,3737,3739,3,436,218,0,3738, + 3737,1,0,0,0,3738,3739,1,0,0,0,3739,3741,1,0,0,0,3740,3742,3,474, + 237,0,3741,3740,1,0,0,0,3741,3742,1,0,0,0,3742,3743,1,0,0,0,3743, + 3745,5,400,0,0,3744,3732,1,0,0,0,3744,3733,1,0,0,0,3745,473,1,0, + 0,0,3746,3760,7,34,0,0,3747,3748,5,354,0,0,3748,3754,5,247,0,0,3749, + 3750,5,62,0,0,3750,3754,5,291,0,0,3751,3752,5,431,0,0,3752,3754, + 5,247,0,0,3753,3747,1,0,0,0,3753,3749,1,0,0,0,3753,3751,1,0,0,0, + 3754,3761,1,0,0,0,3755,3756,5,25,0,0,3756,3757,3,476,238,0,3757, + 3758,5,11,0,0,3758,3759,3,476,238,0,3759,3761,1,0,0,0,3760,3753, + 1,0,0,0,3760,3755,1,0,0,0,3761,475,1,0,0,0,3762,3763,7,35,0,0,3763, + 3767,7,36,0,0,3764,3765,5,62,0,0,3765,3767,5,291,0,0,3766,3762,1, + 0,0,0,3766,3764,1,0,0,0,3767,477,1,0,0,0,3768,3769,5,144,0,0,3769, + 3775,5,32,0,0,3770,3776,3,222,111,0,3771,3776,3,480,240,0,3772,3776, + 3,482,241,0,3773,3774,5,399,0,0,3774,3776,5,400,0,0,3775,3770,1, + 0,0,0,3775,3771,1,0,0,0,3775,3772,1,0,0,0,3775,3773,1,0,0,0,3776, + 479,1,0,0,0,3777,3780,5,290,0,0,3778,3780,5,61,0,0,3779,3777,1,0, + 0,0,3779,3778,1,0,0,0,3780,3781,1,0,0,0,3781,3782,5,399,0,0,3782, + 3787,3,536,268,0,3783,3784,5,397,0,0,3784,3786,3,536,268,0,3785, + 3783,1,0,0,0,3786,3789,1,0,0,0,3787,3785,1,0,0,0,3787,3788,1,0,0, + 0,3788,3790,1,0,0,0,3789,3787,1,0,0,0,3790,3791,5,400,0,0,3791,481, + 1,0,0,0,3792,3797,3,496,248,0,3793,3794,5,387,0,0,3794,3798,5,290, + 0,0,3795,3796,5,387,0,0,3796,3798,5,61,0,0,3797,3793,1,0,0,0,3797, + 3795,1,0,0,0,3797,3798,1,0,0,0,3798,3812,1,0,0,0,3799,3800,5,145, + 0,0,3800,3801,5,305,0,0,3801,3802,5,399,0,0,3802,3807,3,484,242, + 0,3803,3804,5,397,0,0,3804,3806,3,484,242,0,3805,3803,1,0,0,0,3806, + 3809,1,0,0,0,3807,3805,1,0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0, + 0,3809,3807,1,0,0,0,3810,3811,5,400,0,0,3811,3813,1,0,0,0,3812,3799, + 1,0,0,0,3812,3813,1,0,0,0,3813,483,1,0,0,0,3814,3816,5,399,0,0,3815, + 3817,3,536,268,0,3816,3815,1,0,0,0,3816,3817,1,0,0,0,3817,3822,1, + 0,0,0,3818,3819,5,397,0,0,3819,3821,3,536,268,0,3820,3818,1,0,0, + 0,3821,3824,1,0,0,0,3822,3820,1,0,0,0,3822,3823,1,0,0,0,3823,3825, + 1,0,0,0,3824,3822,1,0,0,0,3825,3828,5,400,0,0,3826,3828,3,536,268, + 0,3827,3814,1,0,0,0,3827,3826,1,0,0,0,3828,485,1,0,0,0,3829,3832, + 5,146,0,0,3830,3833,3,536,268,0,3831,3833,3,226,113,0,3832,3830, + 1,0,0,0,3832,3831,1,0,0,0,3833,487,1,0,0,0,3834,3835,5,256,0,0,3835, + 3836,3,536,268,0,3836,489,1,0,0,0,3837,3839,3,536,268,0,3838,3840, + 5,17,0,0,3839,3838,1,0,0,0,3839,3840,1,0,0,0,3840,3842,1,0,0,0,3841, + 3843,3,590,295,0,3842,3841,1,0,0,0,3842,3843,1,0,0,0,3843,3854,1, + 0,0,0,3844,3845,5,397,0,0,3845,3847,3,536,268,0,3846,3848,5,17,0, + 0,3847,3846,1,0,0,0,3847,3848,1,0,0,0,3848,3850,1,0,0,0,3849,3851, + 3,590,295,0,3850,3849,1,0,0,0,3850,3851,1,0,0,0,3851,3853,1,0,0, + 0,3852,3844,1,0,0,0,3853,3856,1,0,0,0,3854,3852,1,0,0,0,3854,3855, + 1,0,0,0,3855,491,1,0,0,0,3856,3854,1,0,0,0,3857,3860,3,494,247,0, + 3858,3860,3,496,248,0,3859,3857,1,0,0,0,3859,3858,1,0,0,0,3860,493, + 1,0,0,0,3861,3862,5,399,0,0,3862,3863,3,496,248,0,3863,3864,5,400, + 0,0,3864,495,1,0,0,0,3865,3868,5,83,0,0,3866,3868,3,536,268,0,3867, + 3865,1,0,0,0,3867,3866,1,0,0,0,3868,3878,1,0,0,0,3869,3872,5,397, + 0,0,3870,3873,5,83,0,0,3871,3873,3,536,268,0,3872,3870,1,0,0,0,3872, + 3871,1,0,0,0,3873,3875,1,0,0,0,3874,3869,1,0,0,0,3875,3876,1,0,0, + 0,3876,3874,1,0,0,0,3876,3877,1,0,0,0,3877,3879,1,0,0,0,3878,3874, + 1,0,0,0,3878,3879,1,0,0,0,3879,497,1,0,0,0,3880,3881,5,229,0,0,3881, + 3882,5,32,0,0,3882,3887,3,274,137,0,3883,3884,5,397,0,0,3884,3886, + 3,274,137,0,3885,3883,1,0,0,0,3886,3889,1,0,0,0,3887,3885,1,0,0, + 0,3887,3888,1,0,0,0,3888,499,1,0,0,0,3889,3887,1,0,0,0,3890,3891, + 5,237,0,0,3891,3892,5,32,0,0,3892,3893,3,492,246,0,3893,501,1,0, + 0,0,3894,3895,5,41,0,0,3895,3896,5,32,0,0,3896,3897,3,492,246,0, + 3897,503,1,0,0,0,3898,3899,5,97,0,0,3899,3900,5,32,0,0,3900,3901, + 3,492,246,0,3901,505,1,0,0,0,3902,3903,5,314,0,0,3903,3923,5,32, + 0,0,3904,3905,5,399,0,0,3905,3910,3,274,137,0,3906,3907,5,397,0, + 0,3907,3909,3,274,137,0,3908,3906,1,0,0,0,3909,3912,1,0,0,0,3910, + 3908,1,0,0,0,3910,3911,1,0,0,0,3911,3913,1,0,0,0,3912,3910,1,0,0, + 0,3913,3914,5,400,0,0,3914,3924,1,0,0,0,3915,3920,3,274,137,0,3916, + 3917,5,397,0,0,3917,3919,3,274,137,0,3918,3916,1,0,0,0,3919,3922, + 1,0,0,0,3920,3918,1,0,0,0,3920,3921,1,0,0,0,3921,3924,1,0,0,0,3922, + 3920,1,0,0,0,3923,3904,1,0,0,0,3923,3915,1,0,0,0,3924,507,1,0,0, + 0,3925,3926,5,349,0,0,3926,3930,5,399,0,0,3927,3931,5,179,0,0,3928, + 3931,5,343,0,0,3929,3931,5,29,0,0,3930,3927,1,0,0,0,3930,3928,1, + 0,0,0,3930,3929,1,0,0,0,3930,3931,1,0,0,0,3931,3933,1,0,0,0,3932, + 3934,3,466,233,0,3933,3932,1,0,0,0,3933,3934,1,0,0,0,3934,3935,1, + 0,0,0,3935,3936,5,139,0,0,3936,3937,3,466,233,0,3937,3938,5,400, + 0,0,3938,3981,1,0,0,0,3939,3940,3,514,257,0,3940,3955,5,399,0,0, + 3941,3956,5,415,0,0,3942,3944,7,24,0,0,3943,3942,1,0,0,0,3943,3944, + 1,0,0,0,3944,3953,1,0,0,0,3945,3950,3,466,233,0,3946,3947,5,397, + 0,0,3947,3949,3,466,233,0,3948,3946,1,0,0,0,3949,3952,1,0,0,0,3950, + 3948,1,0,0,0,3950,3951,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0, + 0,3953,3945,1,0,0,0,3953,3954,1,0,0,0,3954,3956,1,0,0,0,3955,3941, + 1,0,0,0,3955,3943,1,0,0,0,3956,3978,1,0,0,0,3957,3958,5,400,0,0, + 3958,3959,5,388,0,0,3959,3960,5,144,0,0,3960,3961,5,399,0,0,3961, + 3962,3,498,249,0,3962,3963,5,400,0,0,3963,3979,1,0,0,0,3964,3967, + 5,400,0,0,3965,3966,7,37,0,0,3966,3968,5,220,0,0,3967,3965,1,0,0, + 0,3967,3968,1,0,0,0,3968,3969,1,0,0,0,3969,3970,5,234,0,0,3970,3979, + 3,472,236,0,3971,3972,7,37,0,0,3972,3973,5,220,0,0,3973,3974,1,0, + 0,0,3974,3975,5,400,0,0,3975,3976,5,234,0,0,3976,3979,3,472,236, + 0,3977,3979,5,400,0,0,3978,3957,1,0,0,0,3978,3964,1,0,0,0,3978,3971, + 1,0,0,0,3978,3977,1,0,0,0,3979,3981,1,0,0,0,3980,3925,1,0,0,0,3980, + 3939,1,0,0,0,3981,509,1,0,0,0,3982,3983,3,592,296,0,3983,511,1,0, + 0,0,3984,3987,3,592,296,0,3985,3987,5,426,0,0,3986,3984,1,0,0,0, + 3986,3985,1,0,0,0,3987,513,1,0,0,0,3988,3992,3,592,296,0,3989,3992, + 3,598,299,0,3990,3992,3,588,294,0,3991,3988,1,0,0,0,3991,3989,1, + 0,0,0,3991,3990,1,0,0,0,3992,515,1,0,0,0,3993,3994,5,36,0,0,3994, + 3995,5,399,0,0,3995,3996,3,536,268,0,3996,3997,5,17,0,0,3997,4000, + 3,302,151,0,3998,3999,5,137,0,0,3999,4001,5,426,0,0,4000,3998,1, + 0,0,0,4000,4001,1,0,0,0,4001,4002,1,0,0,0,4002,4003,5,400,0,0,4003, + 517,1,0,0,0,4004,4005,5,35,0,0,4005,4011,3,536,268,0,4006,4007,5, + 383,0,0,4007,4008,3,536,268,0,4008,4009,5,335,0,0,4009,4010,3,536, + 268,0,4010,4012,1,0,0,0,4011,4006,1,0,0,0,4012,4013,1,0,0,0,4013, + 4011,1,0,0,0,4013,4014,1,0,0,0,4014,4017,1,0,0,0,4015,4016,5,105, + 0,0,4016,4018,3,536,268,0,4017,4015,1,0,0,0,4017,4018,1,0,0,0,4018, + 4019,1,0,0,0,4019,4020,5,108,0,0,4020,519,1,0,0,0,4021,4027,5,35, + 0,0,4022,4023,5,383,0,0,4023,4024,3,536,268,0,4024,4025,5,335,0, + 0,4025,4026,3,536,268,0,4026,4028,1,0,0,0,4027,4022,1,0,0,0,4028, + 4029,1,0,0,0,4029,4027,1,0,0,0,4029,4030,1,0,0,0,4030,4033,1,0,0, + 0,4031,4032,5,105,0,0,4032,4034,3,536,268,0,4033,4031,1,0,0,0,4033, + 4034,1,0,0,0,4034,4035,1,0,0,0,4035,4036,5,108,0,0,4036,521,1,0, + 0,0,4037,4038,5,132,0,0,4038,4039,5,399,0,0,4039,4042,3,536,268, + 0,4040,4041,5,341,0,0,4041,4043,3,526,263,0,4042,4040,1,0,0,0,4042, + 4043,1,0,0,0,4043,4044,1,0,0,0,4044,4045,5,400,0,0,4045,523,1,0, + 0,0,4046,4047,5,124,0,0,4047,4048,5,399,0,0,4048,4049,3,526,263, + 0,4049,4050,5,139,0,0,4050,4051,3,536,268,0,4051,4052,5,400,0,0, + 4052,525,1,0,0,0,4053,4062,7,38,0,0,4054,4062,5,257,0,0,4055,4062, + 7,39,0,0,4056,4062,7,40,0,0,4057,4062,7,41,0,0,4058,4062,7,42,0, + 0,4059,4062,7,43,0,0,4060,4062,7,44,0,0,4061,4053,1,0,0,0,4061,4054, + 1,0,0,0,4061,4055,1,0,0,0,4061,4056,1,0,0,0,4061,4057,1,0,0,0,4061, + 4058,1,0,0,0,4061,4059,1,0,0,0,4061,4060,1,0,0,0,4062,527,1,0,0, + 0,4063,4064,3,530,265,0,4064,4065,3,534,267,0,4065,4092,1,0,0,0, + 4066,4092,5,431,0,0,4067,4068,5,71,0,0,4068,4092,5,426,0,0,4069, + 4092,5,63,0,0,4070,4071,5,337,0,0,4071,4092,5,426,0,0,4072,4092, + 5,64,0,0,4073,4074,5,338,0,0,4074,4092,5,426,0,0,4075,4079,5,426, + 0,0,4076,4078,5,426,0,0,4077,4076,1,0,0,0,4078,4081,1,0,0,0,4079, + 4077,1,0,0,0,4079,4080,1,0,0,0,4080,4092,1,0,0,0,4081,4079,1,0,0, + 0,4082,4092,5,428,0,0,4083,4092,5,429,0,0,4084,4085,5,433,0,0,4085, + 4092,5,427,0,0,4086,4092,5,350,0,0,4087,4092,5,125,0,0,4088,4092, + 5,219,0,0,4089,4092,5,424,0,0,4090,4092,3,224,112,0,4091,4063,1, + 0,0,0,4091,4066,1,0,0,0,4091,4067,1,0,0,0,4091,4069,1,0,0,0,4091, + 4070,1,0,0,0,4091,4072,1,0,0,0,4091,4073,1,0,0,0,4091,4075,1,0,0, + 0,4091,4082,1,0,0,0,4091,4083,1,0,0,0,4091,4084,1,0,0,0,4091,4086, + 1,0,0,0,4091,4087,1,0,0,0,4091,4088,1,0,0,0,4091,4089,1,0,0,0,4091, + 4090,1,0,0,0,4092,529,1,0,0,0,4093,4094,7,29,0,0,4094,531,1,0,0, + 0,4095,4096,5,399,0,0,4096,4097,3,530,265,0,4097,4098,5,400,0,0, + 4098,4099,3,534,267,0,4099,4111,1,0,0,0,4100,4106,5,165,0,0,4101, + 4107,3,530,265,0,4102,4103,5,399,0,0,4103,4104,3,536,268,0,4104, + 4105,5,400,0,0,4105,4107,1,0,0,0,4106,4101,1,0,0,0,4106,4102,1,0, + 0,0,4107,4108,1,0,0,0,4108,4109,3,534,267,0,4109,4111,1,0,0,0,4110, + 4095,1,0,0,0,4110,4100,1,0,0,0,4111,533,1,0,0,0,4112,4113,7,38,0, + 0,4113,4114,5,341,0,0,4114,4125,7,39,0,0,4115,4116,7,41,0,0,4116, + 4117,5,341,0,0,4117,4125,7,44,0,0,4118,4125,7,38,0,0,4119,4125,7, + 39,0,0,4120,4125,7,41,0,0,4121,4125,7,42,0,0,4122,4125,7,43,0,0, + 4123,4125,7,44,0,0,4124,4112,1,0,0,0,4124,4115,1,0,0,0,4124,4118, + 1,0,0,0,4124,4119,1,0,0,0,4124,4120,1,0,0,0,4124,4121,1,0,0,0,4124, + 4122,1,0,0,0,4124,4123,1,0,0,0,4125,535,1,0,0,0,4126,4131,3,574, + 287,0,4127,4128,5,228,0,0,4128,4130,3,574,287,0,4129,4127,1,0,0, + 0,4130,4133,1,0,0,0,4131,4129,1,0,0,0,4131,4132,1,0,0,0,4132,537, + 1,0,0,0,4133,4131,1,0,0,0,4134,4146,3,528,264,0,4135,4146,3,532, + 266,0,4136,4146,3,516,258,0,4137,4146,3,524,262,0,4138,4146,3,522, + 261,0,4139,4146,3,518,259,0,4140,4146,3,520,260,0,4141,4146,3,554, + 277,0,4142,4146,3,508,254,0,4143,4146,3,494,247,0,4144,4146,3,590, + 295,0,4145,4134,1,0,0,0,4145,4135,1,0,0,0,4145,4136,1,0,0,0,4145, + 4137,1,0,0,0,4145,4138,1,0,0,0,4145,4139,1,0,0,0,4145,4140,1,0,0, + 0,4145,4141,1,0,0,0,4145,4142,1,0,0,0,4145,4143,1,0,0,0,4145,4144, + 1,0,0,0,4146,539,1,0,0,0,4147,4149,7,45,0,0,4148,4147,1,0,0,0,4149, + 4152,1,0,0,0,4150,4148,1,0,0,0,4150,4151,1,0,0,0,4151,4153,1,0,0, + 0,4152,4150,1,0,0,0,4153,4162,3,538,269,0,4154,4155,5,401,0,0,4155, + 4156,3,536,268,0,4156,4157,5,402,0,0,4157,4161,1,0,0,0,4158,4159, + 5,395,0,0,4159,4161,3,590,295,0,4160,4154,1,0,0,0,4160,4158,1,0, + 0,0,4161,4164,1,0,0,0,4162,4160,1,0,0,0,4162,4163,1,0,0,0,4163,541, + 1,0,0,0,4164,4162,1,0,0,0,4165,4170,3,540,270,0,4166,4167,5,423, + 0,0,4167,4169,3,540,270,0,4168,4166,1,0,0,0,4169,4172,1,0,0,0,4170, + 4168,1,0,0,0,4170,4171,1,0,0,0,4171,543,1,0,0,0,4172,4170,1,0,0, + 0,4173,4178,3,542,271,0,4174,4175,7,46,0,0,4175,4177,3,542,271,0, + 4176,4174,1,0,0,0,4177,4180,1,0,0,0,4178,4176,1,0,0,0,4178,4179, + 1,0,0,0,4179,545,1,0,0,0,4180,4178,1,0,0,0,4181,4186,3,544,272,0, + 4182,4183,7,47,0,0,4183,4185,3,544,272,0,4184,4182,1,0,0,0,4185, + 4188,1,0,0,0,4186,4184,1,0,0,0,4186,4187,1,0,0,0,4187,547,1,0,0, + 0,4188,4186,1,0,0,0,4189,4194,3,546,273,0,4190,4191,5,422,0,0,4191, + 4193,3,546,273,0,4192,4190,1,0,0,0,4193,4196,1,0,0,0,4194,4192,1, + 0,0,0,4194,4195,1,0,0,0,4195,549,1,0,0,0,4196,4194,1,0,0,0,4197, + 4202,3,548,274,0,4198,4199,5,419,0,0,4199,4201,3,548,274,0,4200, + 4198,1,0,0,0,4201,4204,1,0,0,0,4202,4200,1,0,0,0,4202,4203,1,0,0, + 0,4203,551,1,0,0,0,4204,4202,1,0,0,0,4205,4210,3,550,275,0,4206, + 4207,5,421,0,0,4207,4209,3,550,275,0,4208,4206,1,0,0,0,4209,4212, + 1,0,0,0,4210,4208,1,0,0,0,4210,4211,1,0,0,0,4211,553,1,0,0,0,4212, + 4210,1,0,0,0,4213,4214,5,399,0,0,4214,4215,3,330,165,0,4215,4216, + 5,400,0,0,4216,555,1,0,0,0,4217,4218,7,48,0,0,4218,557,1,0,0,0,4219, + 4221,3,552,276,0,4220,4222,3,560,280,0,4221,4220,1,0,0,0,4221,4222, + 1,0,0,0,4222,4226,1,0,0,0,4223,4224,5,117,0,0,4224,4226,3,554,277, + 0,4225,4219,1,0,0,0,4225,4223,1,0,0,0,4226,559,1,0,0,0,4227,4228, + 3,556,278,0,4228,4229,3,552,276,0,4229,4238,1,0,0,0,4230,4238,3, + 562,281,0,4231,4235,5,216,0,0,4232,4233,7,49,0,0,4233,4236,3,552, + 276,0,4234,4236,3,562,281,0,4235,4232,1,0,0,0,4235,4234,1,0,0,0, + 4236,4238,1,0,0,0,4237,4227,1,0,0,0,4237,4230,1,0,0,0,4237,4231, + 1,0,0,0,4238,561,1,0,0,0,4239,4242,5,154,0,0,4240,4243,3,554,277, + 0,4241,4243,3,494,247,0,4242,4240,1,0,0,0,4242,4241,1,0,0,0,4243, + 4257,1,0,0,0,4244,4245,5,25,0,0,4245,4246,3,552,276,0,4246,4247, + 5,11,0,0,4247,4248,3,552,276,0,4248,4257,1,0,0,0,4249,4250,5,184, + 0,0,4250,4251,7,50,0,0,4251,4257,3,494,247,0,4252,4253,3,586,293, + 0,4253,4254,7,51,0,0,4254,4255,3,554,277,0,4255,4257,1,0,0,0,4256, + 4239,1,0,0,0,4256,4244,1,0,0,0,4256,4249,1,0,0,0,4256,4252,1,0,0, + 0,4257,563,1,0,0,0,4258,4259,5,167,0,0,4259,4260,5,96,0,0,4260,4261, + 5,139,0,0,4261,565,1,0,0,0,4262,4270,5,405,0,0,4263,4270,5,406,0, + 0,4264,4270,5,407,0,0,4265,4266,5,167,0,0,4266,4267,5,216,0,0,4267, + 4268,5,96,0,0,4268,4270,5,139,0,0,4269,4262,1,0,0,0,4269,4263,1, + 0,0,0,4269,4264,1,0,0,0,4269,4265,1,0,0,0,4270,567,1,0,0,0,4271, + 4280,3,558,279,0,4272,4273,3,566,283,0,4273,4274,3,558,279,0,4274, + 4279,1,0,0,0,4275,4276,3,564,282,0,4276,4277,3,558,279,0,4277,4279, + 1,0,0,0,4278,4272,1,0,0,0,4278,4275,1,0,0,0,4279,4282,1,0,0,0,4280, + 4278,1,0,0,0,4280,4281,1,0,0,0,4281,569,1,0,0,0,4282,4280,1,0,0, + 0,4283,4290,5,219,0,0,4284,4290,5,350,0,0,4285,4290,5,125,0,0,4286, + 4290,5,360,0,0,4287,4288,5,216,0,0,4288,4290,7,52,0,0,4289,4283, + 1,0,0,0,4289,4284,1,0,0,0,4289,4285,1,0,0,0,4289,4286,1,0,0,0,4289, + 4287,1,0,0,0,4290,571,1,0,0,0,4291,4293,5,216,0,0,4292,4291,1,0, + 0,0,4293,4296,1,0,0,0,4294,4292,1,0,0,0,4294,4295,1,0,0,0,4295,4297, + 1,0,0,0,4296,4294,1,0,0,0,4297,4300,3,568,284,0,4298,4299,5,167, + 0,0,4299,4301,3,570,285,0,4300,4298,1,0,0,0,4300,4301,1,0,0,0,4301, + 573,1,0,0,0,4302,4307,3,572,286,0,4303,4304,5,11,0,0,4304,4306,3, + 572,286,0,4305,4303,1,0,0,0,4306,4309,1,0,0,0,4307,4305,1,0,0,0, + 4307,4308,1,0,0,0,4308,575,1,0,0,0,4309,4307,1,0,0,0,4310,4312,3, + 426,213,0,4311,4313,3,578,289,0,4312,4311,1,0,0,0,4312,4313,1,0, + 0,0,4313,577,1,0,0,0,4314,4315,5,237,0,0,4315,4316,5,399,0,0,4316, + 4321,3,580,290,0,4317,4318,5,397,0,0,4318,4320,3,580,290,0,4319, + 4317,1,0,0,0,4320,4323,1,0,0,0,4321,4319,1,0,0,0,4321,4322,1,0,0, + 0,4322,4324,1,0,0,0,4323,4321,1,0,0,0,4324,4325,5,400,0,0,4325,579, + 1,0,0,0,4326,4329,3,590,295,0,4327,4328,5,405,0,0,4328,4330,3,528, + 264,0,4329,4327,1,0,0,0,4329,4330,1,0,0,0,4330,581,1,0,0,0,4331, + 4332,5,399,0,0,4332,4337,3,584,292,0,4333,4334,5,397,0,0,4334,4336, + 3,584,292,0,4335,4333,1,0,0,0,4336,4339,1,0,0,0,4337,4335,1,0,0, + 0,4337,4338,1,0,0,0,4338,4340,1,0,0,0,4339,4337,1,0,0,0,4340,4341, + 5,400,0,0,4341,583,1,0,0,0,4342,4345,3,590,295,0,4343,4346,5,184, + 0,0,4344,4346,3,586,293,0,4345,4343,1,0,0,0,4345,4344,1,0,0,0,4346, + 4347,1,0,0,0,4347,4348,3,528,264,0,4348,585,1,0,0,0,4349,4350,7, + 53,0,0,4350,587,1,0,0,0,4351,4352,7,54,0,0,4352,589,1,0,0,0,4353, + 4356,5,432,0,0,4354,4356,3,596,298,0,4355,4353,1,0,0,0,4355,4354, + 1,0,0,0,4356,591,1,0,0,0,4357,4360,3,590,295,0,4358,4359,5,395,0, + 0,4359,4361,3,590,295,0,4360,4358,1,0,0,0,4360,4361,1,0,0,0,4361, + 593,1,0,0,0,4362,4363,3,590,295,0,4363,595,1,0,0,0,4364,4365,7,55, + 0,0,4365,597,1,0,0,0,4366,4367,7,56,0,0,4367,599,1,0,0,0,4368,4373, + 3,602,301,0,4369,4370,7,57,0,0,4370,4372,3,602,301,0,4371,4369,1, + 0,0,0,4372,4375,1,0,0,0,4373,4371,1,0,0,0,4373,4374,1,0,0,0,4374, + 601,1,0,0,0,4375,4373,1,0,0,0,4376,4383,3,604,302,0,4377,4378,4, + 301,3,0,4378,4379,5,414,0,0,4379,4380,4,301,4,0,4380,4382,3,604, + 302,0,4381,4377,1,0,0,0,4382,4385,1,0,0,0,4383,4381,1,0,0,0,4383, + 4384,1,0,0,0,4384,603,1,0,0,0,4385,4383,1,0,0,0,4386,4438,3,590, + 295,0,4387,4438,5,299,0,0,4388,4438,5,171,0,0,4389,4438,5,237,0, + 0,4390,4438,5,198,0,0,4391,4438,5,268,0,0,4392,4438,5,369,0,0,4393, + 4438,5,241,0,0,4394,4438,5,165,0,0,4395,4438,5,292,0,0,4396,4438, + 5,356,0,0,4397,4438,5,144,0,0,4398,4438,5,203,0,0,4399,4438,5,219, + 0,0,4400,4438,5,126,0,0,4401,4438,5,188,0,0,4402,4438,5,101,0,0, + 4403,4438,5,329,0,0,4404,4438,5,224,0,0,4405,4438,5,291,0,0,4406, + 4438,5,145,0,0,4407,4438,5,304,0,0,4408,4438,5,135,0,0,4409,4438, + 5,318,0,0,4410,4438,5,161,0,0,4411,4438,5,54,0,0,4412,4438,5,166, + 0,0,4413,4438,5,358,0,0,4414,4438,5,45,0,0,4415,4438,5,347,0,0,4416, + 4438,5,96,0,0,4417,4438,5,154,0,0,4418,4438,5,269,0,0,4419,4438, + 5,337,0,0,4420,4438,5,225,0,0,4421,4438,5,108,0,0,4422,4438,5,141, + 0,0,4423,4438,5,365,0,0,4424,4438,5,21,0,0,4425,4438,5,78,0,0,4426, + 4438,5,374,0,0,4427,4438,5,336,0,0,4428,4438,5,167,0,0,4429,4438, + 5,134,0,0,4430,4438,5,216,0,0,4431,4438,5,27,0,0,4432,4438,5,370, + 0,0,4433,4438,5,263,0,0,4434,4438,5,25,0,0,4435,4438,5,62,0,0,4436, + 4438,5,17,0,0,4437,4386,1,0,0,0,4437,4387,1,0,0,0,4437,4388,1,0, + 0,0,4437,4389,1,0,0,0,4437,4390,1,0,0,0,4437,4391,1,0,0,0,4437,4392, + 1,0,0,0,4437,4393,1,0,0,0,4437,4394,1,0,0,0,4437,4395,1,0,0,0,4437, + 4396,1,0,0,0,4437,4397,1,0,0,0,4437,4398,1,0,0,0,4437,4399,1,0,0, + 0,4437,4400,1,0,0,0,4437,4401,1,0,0,0,4437,4402,1,0,0,0,4437,4403, + 1,0,0,0,4437,4404,1,0,0,0,4437,4405,1,0,0,0,4437,4406,1,0,0,0,4437, + 4407,1,0,0,0,4437,4408,1,0,0,0,4437,4409,1,0,0,0,4437,4410,1,0,0, + 0,4437,4411,1,0,0,0,4437,4412,1,0,0,0,4437,4413,1,0,0,0,4437,4414, + 1,0,0,0,4437,4415,1,0,0,0,4437,4416,1,0,0,0,4437,4417,1,0,0,0,4437, + 4418,1,0,0,0,4437,4419,1,0,0,0,4437,4420,1,0,0,0,4437,4421,1,0,0, + 0,4437,4422,1,0,0,0,4437,4423,1,0,0,0,4437,4424,1,0,0,0,4437,4425, + 1,0,0,0,4437,4426,1,0,0,0,4437,4427,1,0,0,0,4437,4428,1,0,0,0,4437, + 4429,1,0,0,0,4437,4430,1,0,0,0,4437,4431,1,0,0,0,4437,4432,1,0,0, + 0,4437,4433,1,0,0,0,4437,4434,1,0,0,0,4437,4435,1,0,0,0,4437,4436, + 1,0,0,0,4438,605,1,0,0,0,4439,4440,5,58,0,0,4440,4441,5,280,0,0, + 4441,4443,5,243,0,0,4442,4444,3,32,16,0,4443,4442,1,0,0,0,4443,4444, + 1,0,0,0,4444,4454,1,0,0,0,4445,4446,3,590,295,0,4446,4447,5,184, + 0,0,4447,4448,3,590,295,0,4448,4455,1,0,0,0,4449,4452,3,590,295, + 0,4450,4451,5,387,0,0,4451,4453,3,612,306,0,4452,4450,1,0,0,0,4452, + 4453,1,0,0,0,4453,4455,1,0,0,0,4454,4445,1,0,0,0,4454,4449,1,0,0, + 0,4455,4605,1,0,0,0,4456,4457,5,9,0,0,4457,4458,5,280,0,0,4458,4459, + 5,243,0,0,4459,4484,3,590,295,0,4460,4485,5,373,0,0,4461,4485,3, + 620,310,0,4462,4463,5,304,0,0,4463,4485,3,612,306,0,4464,4465,5, + 363,0,0,4465,4470,3,614,307,0,4466,4467,5,397,0,0,4467,4469,3,614, + 307,0,4468,4466,1,0,0,0,4469,4472,1,0,0,0,4470,4468,1,0,0,0,4470, + 4471,1,0,0,0,4471,4485,1,0,0,0,4472,4470,1,0,0,0,4473,4474,5,274, + 0,0,4474,4475,5,341,0,0,4475,4485,3,590,295,0,4476,4478,3,616,308, + 0,4477,4479,3,618,309,0,4478,4477,1,0,0,0,4478,4479,1,0,0,0,4479, + 4485,1,0,0,0,4480,4482,3,618,309,0,4481,4483,3,616,308,0,4482,4481, + 1,0,0,0,4482,4483,1,0,0,0,4483,4485,1,0,0,0,4484,4460,1,0,0,0,4484, + 4461,1,0,0,0,4484,4462,1,0,0,0,4484,4464,1,0,0,0,4484,4473,1,0,0, + 0,4484,4476,1,0,0,0,4484,4480,1,0,0,0,4485,4605,1,0,0,0,4486,4487, + 5,101,0,0,4487,4488,5,280,0,0,4488,4490,5,243,0,0,4489,4491,3,30, + 15,0,4490,4489,1,0,0,0,4490,4491,1,0,0,0,4491,4492,1,0,0,0,4492, + 4605,3,590,295,0,4493,4496,3,618,309,0,4494,4496,3,620,310,0,4495, + 4493,1,0,0,0,4495,4494,1,0,0,0,4496,4497,1,0,0,0,4497,4498,5,390, + 0,0,4498,4499,5,197,0,0,4499,4605,1,0,0,0,4500,4512,5,278,0,0,4501, + 4502,5,3,0,0,4502,4503,5,280,0,0,4503,4504,5,243,0,0,4504,4505,5, + 387,0,0,4505,4513,3,590,295,0,4506,4507,5,280,0,0,4507,4508,5,243, + 0,0,4508,4509,3,590,295,0,4509,4510,5,387,0,0,4510,4511,3,590,295, + 0,4511,4513,1,0,0,0,4512,4501,1,0,0,0,4512,4506,1,0,0,0,4513,4605, + 1,0,0,0,4514,4515,5,58,0,0,4515,4516,5,348,0,0,4516,4517,3,590,295, + 0,4517,4518,5,395,0,0,4518,4519,3,590,295,0,4519,4520,5,383,0,0, + 4520,4521,3,628,314,0,4521,4522,5,99,0,0,4522,4523,3,630,315,0,4523, + 4605,1,0,0,0,4524,4525,5,9,0,0,4525,4526,5,348,0,0,4526,4527,3,590, + 295,0,4527,4528,5,395,0,0,4528,4545,3,590,295,0,4529,4530,5,383, + 0,0,4530,4531,3,628,314,0,4531,4532,5,99,0,0,4532,4533,3,630,315, + 0,4533,4546,1,0,0,0,4534,4535,5,4,0,0,4535,4539,5,341,0,0,4536,4537, + 5,101,0,0,4537,4539,5,139,0,0,4538,4534,1,0,0,0,4538,4536,1,0,0, + 0,4539,4543,1,0,0,0,4540,4541,5,246,0,0,4541,4544,3,624,312,0,4542, + 4544,5,362,0,0,4543,4540,1,0,0,0,4543,4542,1,0,0,0,4544,4546,1,0, + 0,0,4545,4529,1,0,0,0,4545,4538,1,0,0,0,4546,4605,1,0,0,0,4547,4548, + 5,101,0,0,4548,4549,5,348,0,0,4549,4550,3,590,295,0,4550,4551,5, + 395,0,0,4551,4552,3,590,295,0,4552,4605,1,0,0,0,4553,4554,5,58,0, + 0,4554,4555,5,246,0,0,4555,4556,3,590,295,0,4556,4557,5,395,0,0, + 4557,4558,3,624,312,0,4558,4559,5,387,0,0,4559,4560,3,634,317,0, + 4560,4605,1,0,0,0,4561,4562,5,9,0,0,4562,4563,5,246,0,0,4563,4564, + 3,590,295,0,4564,4565,5,395,0,0,4565,4573,3,624,312,0,4566,4567, + 5,304,0,0,4567,4574,3,634,317,0,4568,4569,5,363,0,0,4569,4574,5, + 294,0,0,4570,4571,7,58,0,0,4571,4572,5,348,0,0,4572,4574,3,590,295, + 0,4573,4566,1,0,0,0,4573,4568,1,0,0,0,4573,4570,1,0,0,0,4574,4605, + 1,0,0,0,4575,4576,5,101,0,0,4576,4577,5,246,0,0,4577,4578,3,590, + 295,0,4578,4579,5,395,0,0,4579,4580,3,624,312,0,4580,4605,1,0,0, + 0,4581,4582,7,59,0,0,4582,4583,3,608,304,0,4583,4584,5,200,0,0,4584, + 4585,5,426,0,0,4585,4586,5,154,0,0,4586,4590,3,590,295,0,4587,4588, + 5,341,0,0,4588,4591,3,624,312,0,4589,4591,5,362,0,0,4590,4587,1, + 0,0,0,4590,4589,1,0,0,0,4591,4595,1,0,0,0,4592,4593,5,387,0,0,4593, + 4594,5,229,0,0,4594,4596,5,431,0,0,4595,4592,1,0,0,0,4595,4596,1, + 0,0,0,4596,4605,1,0,0,0,4597,4598,5,101,0,0,4598,4599,3,608,304, + 0,4599,4600,5,200,0,0,4600,4601,5,426,0,0,4601,4602,5,154,0,0,4602, + 4603,3,590,295,0,4603,4605,1,0,0,0,4604,4439,1,0,0,0,4604,4456,1, + 0,0,0,4604,4486,1,0,0,0,4604,4495,1,0,0,0,4604,4500,1,0,0,0,4604, + 4514,1,0,0,0,4604,4524,1,0,0,0,4604,4547,1,0,0,0,4604,4553,1,0,0, + 0,4604,4561,1,0,0,0,4604,4575,1,0,0,0,4604,4581,1,0,0,0,4604,4597, + 1,0,0,0,4605,607,1,0,0,0,4606,4607,7,60,0,0,4607,609,1,0,0,0,4608, + 4609,5,259,0,0,4609,4610,5,405,0,0,4610,4616,5,431,0,0,4611,4612, + 5,83,0,0,4612,4613,5,246,0,0,4613,4614,5,405,0,0,4614,4616,3,624, + 312,0,4615,4608,1,0,0,0,4615,4611,1,0,0,0,4616,611,1,0,0,0,4617, + 4622,3,610,305,0,4618,4619,5,397,0,0,4619,4621,3,610,305,0,4620, + 4618,1,0,0,0,4621,4624,1,0,0,0,4622,4620,1,0,0,0,4622,4623,1,0,0, + 0,4623,613,1,0,0,0,4624,4622,1,0,0,0,4625,4629,5,259,0,0,4626,4627, + 5,83,0,0,4627,4629,5,246,0,0,4628,4625,1,0,0,0,4628,4626,1,0,0,0, + 4629,615,1,0,0,0,4630,4633,5,2,0,0,4631,4632,5,387,0,0,4632,4634, + 5,278,0,0,4633,4631,1,0,0,0,4633,4634,1,0,0,0,4634,617,1,0,0,0,4635, + 4636,7,61,0,0,4636,619,1,0,0,0,4637,4638,7,62,0,0,4638,621,1,0,0, + 0,4639,4640,1,0,0,0,4640,623,1,0,0,0,4641,4646,3,590,295,0,4642, + 4643,5,395,0,0,4643,4645,3,590,295,0,4644,4642,1,0,0,0,4645,4648, + 1,0,0,0,4646,4644,1,0,0,0,4646,4647,1,0,0,0,4647,625,1,0,0,0,4648, + 4646,1,0,0,0,4649,4654,3,590,295,0,4650,4651,5,395,0,0,4651,4653, + 3,590,295,0,4652,4650,1,0,0,0,4653,4656,1,0,0,0,4654,4652,1,0,0, + 0,4654,4655,1,0,0,0,4655,4667,1,0,0,0,4656,4654,1,0,0,0,4657,4658, + 4,313,5,0,4658,4663,3,590,295,0,4659,4660,5,395,0,0,4660,4662,3, + 622,311,0,4661,4659,1,0,0,0,4662,4665,1,0,0,0,4663,4661,1,0,0,0, + 4663,4664,1,0,0,0,4664,4667,1,0,0,0,4665,4663,1,0,0,0,4666,4649, + 1,0,0,0,4666,4657,1,0,0,0,4667,627,1,0,0,0,4668,4669,3,590,295,0, + 4669,4670,5,411,0,0,4670,4671,7,29,0,0,4671,629,1,0,0,0,4672,4677, + 5,176,0,0,4673,4674,5,211,0,0,4674,4675,5,341,0,0,4675,4677,3,624, + 312,0,4676,4672,1,0,0,0,4676,4673,1,0,0,0,4677,631,1,0,0,0,4678, + 4679,5,8,0,0,4679,4680,5,405,0,0,4680,4691,5,431,0,0,4681,4682,5, + 259,0,0,4682,4683,5,405,0,0,4683,4691,5,431,0,0,4684,4685,5,294, + 0,0,4685,4686,5,405,0,0,4686,4691,5,426,0,0,4687,4688,5,240,0,0, + 4688,4689,5,405,0,0,4689,4691,3,624,312,0,4690,4678,1,0,0,0,4690, + 4681,1,0,0,0,4690,4684,1,0,0,0,4690,4687,1,0,0,0,4691,633,1,0,0, + 0,4692,4697,3,632,316,0,4693,4694,5,397,0,0,4694,4696,3,632,316, + 0,4695,4693,1,0,0,0,4696,4699,1,0,0,0,4697,4695,1,0,0,0,4697,4698, + 1,0,0,0,4698,635,1,0,0,0,4699,4697,1,0,0,0,626,639,646,649,655,661, + 668,678,681,685,700,707,713,718,723,726,750,753,758,763,772,776, + 789,793,797,802,809,813,818,825,829,834,878,885,890,913,917,922, + 925,929,934,940,945,952,954,962,966,970,978,981,986,990,993,998, + 1006,1010,1013,1017,1021,1024,1029,1035,1040,1045,1049,1060,1062, + 1066,1076,1079,1085,1088,1094,1099,1106,1111,1114,1122,1127,1132, + 1137,1140,1143,1146,1154,1161,1166,1173,1179,1182,1185,1187,1197, + 1199,1203,1207,1211,1214,1217,1219,1228,1232,1240,1242,1252,1262, + 1273,1282,1289,1295,1299,1306,1313,1321,1327,1330,1337,1360,1365, + 1369,1377,1386,1393,1399,1406,1409,1415,1422,1430,1439,1448,1455, + 1459,1466,1468,1474,1489,1492,1496,1500,1513,1522,1538,1542,1547, + 1552,1555,1558,1561,1564,1567,1572,1581,1585,1592,1595,1598,1601, + 1613,1619,1645,1652,1655,1661,1665,1668,1671,1674,1677,1680,1683, + 1686,1697,1700,1720,1726,1732,1735,1737,1744,1751,1764,1769,1778, + 1786,1802,1815,1831,1835,1844,1850,1853,1856,1859,1862,1877,1880, + 1891,1905,1939,1947,1952,1960,1965,1970,1977,1985,1993,2001,2007, + 2014,2024,2028,2036,2045,2048,2052,2057,2061,2065,2071,2075,2087, + 2096,2107,2111,2118,2130,2140,2143,2150,2156,2160,2163,2166,2172, + 2176,2180,2185,2189,2193,2197,2205,2209,2213,2221,2225,2230,2234, + 2241,2248,2256,2268,2286,2289,2295,2321,2324,2330,2338,2346,2359, + 2366,2369,2372,2375,2378,2381,2384,2387,2390,2393,2396,2401,2404, + 2407,2410,2413,2416,2419,2422,2425,2428,2431,2433,2439,2443,2446, + 2449,2452,2455,2458,2465,2469,2472,2475,2478,2481,2484,2491,2494, + 2502,2506,2513,2515,2518,2523,2526,2530,2535,2541,2549,2557,2567, + 2570,2574,2578,2583,2590,2594,2596,2600,2607,2612,2625,2633,2643, + 2653,2666,2676,2680,2684,2690,2697,2704,2713,2720,2740,2743,2757, + 2772,2776,2796,2808,2814,2817,2821,2827,2833,2840,2848,2854,2858, + 2863,2866,2870,2877,2882,2887,2890,2892,2900,2908,2912,2916,2920, + 2937,2954,2961,2970,2975,2978,2981,2985,3000,3014,3017,3028,3032, + 3035,3038,3042,3047,3050,3053,3056,3059,3062,3068,3071,3074,3077, + 3080,3083,3086,3089,3092,3095,3099,3101,3106,3111,3114,3117,3120, + 3123,3129,3132,3135,3138,3141,3144,3147,3150,3153,3156,3160,3162, + 3164,3169,3174,3178,3182,3187,3192,3201,3211,3219,3231,3234,3240, + 3247,3254,3261,3268,3278,3280,3284,3288,3295,3300,3304,3308,3311, + 3314,3325,3329,3331,3334,3347,3350,3353,3365,3368,3375,3384,3389, + 3391,3393,3410,3413,3421,3424,3428,3431,3434,3437,3440,3452,3460, + 3467,3470,3477,3480,3485,3492,3500,3506,3511,3515,3520,3524,3531, + 3545,3548,3555,3563,3573,3576,3585,3594,3597,3603,3606,3611,3614, + 3628,3634,3636,3647,3653,3656,3666,3671,3675,3692,3698,3700,3708, + 3715,3729,3735,3738,3741,3744,3753,3760,3766,3775,3779,3787,3797, + 3807,3812,3816,3822,3827,3832,3839,3842,3847,3850,3854,3859,3867, + 3872,3876,3878,3887,3910,3920,3923,3930,3933,3943,3950,3953,3955, + 3967,3978,3980,3986,3991,4000,4013,4017,4029,4033,4042,4061,4079, + 4091,4106,4110,4124,4131,4145,4150,4160,4162,4170,4178,4186,4194, + 4202,4210,4221,4225,4235,4237,4242,4256,4269,4278,4280,4289,4294, + 4300,4307,4312,4321,4329,4337,4345,4355,4360,4373,4383,4437,4443, + 4452,4454,4470,4478,4482,4484,4490,4495,4512,4538,4543,4545,4573, + 4590,4595,4604,4615,4622,4628,4633,4646,4654,4663,4666,4676,4690, + 4697 ]; private static __ATN: antlr.ATN; @@ -28838,6 +27729,8 @@ export class ExecStatementContext extends antlr.ParserRuleContext { export class LoadStatementContext extends antlr.ParserRuleContext { + public _inFmt?: Token | null; + public _serdeCls?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -28850,8 +27743,14 @@ export class LoadStatementContext extends antlr.ParserRuleContext { public KW_INPATH(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_INPATH, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_INTO(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_INTO, 0)!; @@ -28868,8 +27767,11 @@ export class LoadStatementContext extends antlr.ParserRuleContext { public KW_OVERWRITE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_OVERWRITE, 0); } - public inputFileFormat(): InputFileFormatContext | null { - return this.getRuleContext(0, InputFileFormatContext); + public KW_INPUTFORMAT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_INPUTFORMAT, 0); + } + public KW_SERDE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SERDE, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_loadStatement; @@ -29269,9 +28171,6 @@ export class DdlStatementContext extends antlr.ParserRuleContext { public dropViewStatement(): DropViewStatementContext | null { return this.getRuleContext(0, DropViewStatementContext); } - public dropMaterializedViewStatement(): DropMaterializedViewStatementContext | null { - return this.getRuleContext(0, DropMaterializedViewStatementContext); - } public createFunctionStatement(): CreateFunctionStatementContext | null { return this.getRuleContext(0, CreateFunctionStatementContext); } @@ -29299,21 +28198,12 @@ export class DdlStatementContext extends antlr.ParserRuleContext { public lockStatement(): LockStatementContext | null { return this.getRuleContext(0, LockStatementContext); } - public unlockStatement(): UnlockStatementContext | null { - return this.getRuleContext(0, UnlockStatementContext); - } public lockDatabase(): LockDatabaseContext | null { return this.getRuleContext(0, LockDatabaseContext); } - public unlockDatabase(): UnlockDatabaseContext | null { - return this.getRuleContext(0, UnlockDatabaseContext); - } public createRoleStatement(): CreateRoleStatementContext | null { return this.getRuleContext(0, CreateRoleStatementContext); } - public dropRoleStatement(): DropRoleStatementContext | null { - return this.getRuleContext(0, DropRoleStatementContext); - } public grantPrivileges(): GrantPrivilegesContext | null { return this.getRuleContext(0, GrantPrivilegesContext); } @@ -29511,6 +28401,42 @@ export class RestrictOrCascadeContext extends antlr.ParserRuleContext { } +export class StoredAsDirsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_STORED(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_STORED, 0)!; + } + public KW_AS(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_AS, 0)!; + } + public KW_DIRECTORIES(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_DIRECTORIES, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_storedAsDirs; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterStoredAsDirs) { + listener.enterStoredAsDirs(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitStoredAsDirs) { + listener.exitStoredAsDirs(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitStoredAsDirs) { + return visitor.visitStoredAsDirs(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class RewriteEnabledContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -29577,46 +28503,12 @@ export class RewriteDisabledContext extends antlr.ParserRuleContext { } -export class StoredAsDirsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_STORED(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_STORED, 0)!; - } - public KW_AS(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_AS, 0)!; - } - public KW_DIRECTORIES(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_DIRECTORIES, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_storedAsDirs; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterStoredAsDirs) { - listener.enterStoredAsDirs(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitStoredAsDirs) { - listener.exitStoredAsDirs(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitStoredAsDirs) { - return visitor.visitStoredAsDirs(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public _name?: DbSchemaNameCreateContext; + public _comment?: Token | null; public _locn?: Token | null; public _dbprops?: KeyValuePropertiesContext; + public _dcName?: DbSchemaNameContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -29635,8 +28527,8 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public databaseComment(): DatabaseCommentContext | null { - return this.getRuleContext(0, DatabaseCommentContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_COMMENT, 0); } public locationPath(): LocationPathContext | null { return this.getRuleContext(0, LocationPathContext); @@ -29650,14 +28542,23 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public KW_DBPROPERTIES(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_DBPROPERTIES, 0); } - public StringLiteral(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.StringLiteral, 0); + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public keyValueProperties(): KeyValuePropertiesContext | null { return this.getRuleContext(0, KeyValuePropertiesContext); } - public dbConnectorName(): DbConnectorNameContext | null { - return this.getRuleContext(0, DbConnectorNameContext); + public KW_USING(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_USING, 0); + } + public dbSchemaName(): DbSchemaNameContext | null { + return this.getRuleContext(0, DbSchemaNameContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_createDatabaseStatement; @@ -29682,40 +28583,6 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { } -export class DbConnectorNameContext extends antlr.ParserRuleContext { - public _dcName?: DbSchemaNameContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_USING(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_USING, 0)!; - } - public dbSchemaName(): DbSchemaNameContext { - return this.getRuleContext(0, DbSchemaNameContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_dbConnectorName; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDbConnectorName) { - listener.enterDbConnectorName(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDbConnectorName) { - listener.exitDbConnectorName(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDbConnectorName) { - return visitor.visitDbConnectorName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class SwitchDatabaseStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -29791,40 +28658,6 @@ export class DropDatabaseStatementContext extends antlr.ParserRuleContext { } -export class DatabaseCommentContext extends antlr.ParserRuleContext { - public _comment?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_COMMENT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_COMMENT, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_databaseComment; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDatabaseComment) { - listener.enterDatabaseComment(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDatabaseComment) { - listener.exitDatabaseComment(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDatabaseComment) { - return visitor.visitDatabaseComment(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TruncateTableStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -29921,50 +28754,6 @@ export class DropTableStatementContext extends antlr.ParserRuleContext { } -export class InputFileFormatContext extends antlr.ParserRuleContext { - public _inFmt?: Token | null; - public _serdeCls?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_INPUTFORMAT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_INPUTFORMAT, 0)!; - } - public KW_SERDE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_SERDE, 0)!; - } - public StringLiteral(): antlr.TerminalNode[]; - public StringLiteral(i: number): antlr.TerminalNode | null; - public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.StringLiteral); - } else { - return this.getToken(HiveSqlParser.StringLiteral, i); - } - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_inputFileFormat; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterInputFileFormat) { - listener.enterInputFileFormat(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitInputFileFormat) { - listener.exitInputFileFormat(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitInputFileFormat) { - return visitor.visitInputFileFormat(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TabTypeExprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -30307,6 +29096,9 @@ export class ShowStatementContext extends antlr.ParserRuleContext { public _dbName?: DbSchemaNameContext; public _parttype?: PartTypeExprContext; public _compactId?: Token | null; + public _poolName?: Token | null; + public _compactType?: Token | null; + public _status?: Token | null; public _rp_name?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -30314,20 +29106,17 @@ export class ShowStatementContext extends antlr.ParserRuleContext { public KW_SHOW(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_SHOW, 0)!; } - public KW_DATABASES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DATABASES, 0); - } - public KW_SCHEMAS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SCHEMAS, 0); + public KW_TABLES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TABLES, 0); } - public KW_LIKE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_LIKE, 0); + public KW_VIEWS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_VIEWS, 0); } - public showStmtIdentifier(): ShowStmtIdentifierContext | null { - return this.getRuleContext(0, ShowStmtIdentifierContext); + public KW_MATERIALIZED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0); } - public KW_TABLES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_TABLES, 0); + public KW_COLUMNS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_COLUMNS, 0); } public from_in(): From_inContext[]; public from_in(i: number): From_inContext | null; @@ -30338,135 +29127,144 @@ export class ShowStatementContext extends antlr.ParserRuleContext { return this.getRuleContext(i, From_inContext); } - public KW_EXTENDED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_EXTENDED, 0); - } - public dbSchemaName(): DbSchemaNameContext | null { - return this.getRuleContext(0, DbSchemaNameContext); - } - public showTablesFilterExpr(): ShowTablesFilterExprContext | null { - return this.getRuleContext(0, ShowTablesFilterExprContext); - } - public KW_VIEWS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_VIEWS, 0); - } - public KW_MATERIALIZED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0); - } - public KW_COLUMNS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_COLUMNS, 0); - } public tableOrView(): TableOrViewContext | null { return this.getRuleContext(0, TableOrViewContext); } - public KW_SORTED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SORTED, 0); - } public KW_FUNCTIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_FUNCTIONS, 0); } - public functionNameForDDL(): FunctionNameForDDLContext | null { - return this.getRuleContext(0, FunctionNameForDDLContext); - } public KW_PARTITIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_PARTITIONS, 0); } - public partitionSpec(): PartitionSpecContext | null { - return this.getRuleContext(0, PartitionSpecContext); - } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); - } - public orderByClause(): OrderByClauseContext | null { - return this.getRuleContext(0, OrderByClauseContext); - } - public limitClause(): LimitClauseContext | null { - return this.getRuleContext(0, LimitClauseContext); - } public KW_CREATE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CREATE, 0); } - public db_schema(): Db_schemaContext | null { - return this.getRuleContext(0, Db_schemaContext); - } public KW_TABLE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TABLE, 0); } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); + public KW_EXTENDED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_EXTENDED, 0); } - public KW_TBLPROPERTIES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_TBLPROPERTIES, 0); + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LIKE, 0); } - public LPAREN(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.LPAREN, 0); + public showStmtIdentifier(): ShowStmtIdentifierContext | null { + return this.getRuleContext(0, ShowStmtIdentifierContext); } - public RPAREN(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.RPAREN, 0); + public KW_TBLPROPERTIES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TBLPROPERTIES, 0); } - public StringLiteral(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.StringLiteral, 0); + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); } public KW_LOCKS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_LOCKS, 0); } - public partTypeExpr(): PartTypeExprContext | null { - return this.getRuleContext(0, PartTypeExprContext); - } public KW_COMPACTIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_COMPACTIONS, 0); } - public KW_COMPACT_ID(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_COMPACT_ID, 0); - } - public EQUAL(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.EQUAL, 0); - } - public Number(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.Number, 0); - } - public compactionPool(): CompactionPoolContext | null { - return this.getRuleContext(0, CompactionPoolContext); - } - public compactionType(): CompactionTypeContext | null { - return this.getRuleContext(0, CompactionTypeContext); - } - public compactionStatus(): CompactionStatusContext | null { - return this.getRuleContext(0, CompactionStatusContext); - } public KW_TRANSACTIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TRANSACTIONS, 0); } public KW_CONF(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONF, 0); } + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } + } public KW_RESOURCE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_RESOURCE, 0); } - public KW_PLAN(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_PLAN, 0); - } - public KW_PLANS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_PLANS, 0); - } - public id_(): Id_Context | null { - return this.getRuleContext(0, Id_Context); - } public KW_DATACONNECTORS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_DATACONNECTORS, 0); } public KW_ON(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ON, 0); } + public KW_DATABASES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DATABASES, 0); + } + public KW_SCHEMAS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SCHEMAS, 0); + } public KW_INDEX(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_INDEX, 0); } public KW_INDEXES(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_INDEXES, 0); } + public db_schema(): Db_schemaContext | null { + return this.getRuleContext(0, Db_schemaContext); + } + public KW_COMPACT_ID(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_COMPACT_ID, 0); + } + public EQUAL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.EQUAL, 0); + } + public KW_PLAN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_PLAN, 0); + } + public KW_PLANS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_PLANS, 0); + } + public KW_SORTED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SORTED, 0); + } + public functionNameForDDL(): FunctionNameForDDLContext | null { + return this.getRuleContext(0, FunctionNameForDDLContext); + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public orderByClause(): OrderByClauseContext | null { + return this.getRuleContext(0, OrderByClauseContext); + } + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); + } + public dbSchemaName(): DbSchemaNameContext | null { + return this.getRuleContext(0, DbSchemaNameContext); + } + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.LPAREN, 0); + } + public RPAREN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.RPAREN, 0); + } + public Number(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.Number, 0); + } + public id_(): Id_Context | null { + return this.getRuleContext(0, Id_Context); + } public KW_FORMATTED(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_FORMATTED, 0); } + public showTablesFilterExpr(): ShowTablesFilterExprContext | null { + return this.getRuleContext(0, ShowTablesFilterExprContext); + } + public KW_POOL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_POOL, 0); + } + public KW_TYPE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TYPE, 0); + } + public KW_STATUS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_STATUS, 0); + } + public partTypeExpr(): PartTypeExprContext | null { + return this.getRuleContext(0, PartTypeExprContext); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_showStatement; } @@ -30539,8 +29337,8 @@ export class LockStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_LOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_LOCK, 0)!; + public KW_LOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LOCK, 0); } public KW_TABLE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_TABLE, 0)!; @@ -30548,8 +29346,14 @@ export class LockStatementContext extends antlr.ParserRuleContext { public tableOrPartition(): TableOrPartitionContext { return this.getRuleContext(0, TableOrPartitionContext)!; } - public lockMode(): LockModeContext { - return this.getRuleContext(0, LockModeContext)!; + public KW_SHARED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SHARED, 0); + } + public KW_EXCLUSIVE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_EXCLUSIVE, 0); + } + public KW_UNLOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_UNLOCK, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_lockStatement; @@ -30579,140 +29383,40 @@ export class LockDatabaseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_LOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_LOCK, 0)!; + public KW_LOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LOCK, 0); } public db_schema(): Db_schemaContext { return this.getRuleContext(0, Db_schemaContext)!; } - public lockMode(): LockModeContext { - return this.getRuleContext(0, LockModeContext)!; - } public dbSchemaName(): DbSchemaNameContext { return this.getRuleContext(0, DbSchemaNameContext)!; } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_lockDatabase; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterLockDatabase) { - listener.enterLockDatabase(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitLockDatabase) { - listener.exitLockDatabase(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitLockDatabase) { - return visitor.visitLockDatabase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class LockModeContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } public KW_SHARED(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_SHARED, 0); } public KW_EXCLUSIVE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_EXCLUSIVE, 0); } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_lockMode; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterLockMode) { - listener.enterLockMode(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitLockMode) { - listener.exitLockMode(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitLockMode) { - return visitor.visitLockMode(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnlockStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_UNLOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_UNLOCK, 0)!; - } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_TABLE, 0)!; - } - public tableOrPartition(): TableOrPartitionContext { - return this.getRuleContext(0, TableOrPartitionContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_unlockStatement; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterUnlockStatement) { - listener.enterUnlockStatement(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitUnlockStatement) { - listener.exitUnlockStatement(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitUnlockStatement) { - return visitor.visitUnlockStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnlockDatabaseContext extends antlr.ParserRuleContext { - public _dbName?: DbSchemaNameContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_UNLOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_UNLOCK, 0)!; - } - public db_schema(): Db_schemaContext { - return this.getRuleContext(0, Db_schemaContext)!; - } - public dbSchemaName(): DbSchemaNameContext { - return this.getRuleContext(0, DbSchemaNameContext)!; + public KW_UNLOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_UNLOCK, 0); } public override get ruleIndex(): number { - return HiveSqlParser.RULE_unlockDatabase; + return HiveSqlParser.RULE_lockDatabase; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterUnlockDatabase) { - listener.enterUnlockDatabase(this); + if(listener.enterLockDatabase) { + listener.enterLockDatabase(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitUnlockDatabase) { - listener.exitUnlockDatabase(this); + if(listener.exitLockDatabase) { + listener.exitLockDatabase(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitUnlockDatabase) { - return visitor.visitUnlockDatabase(this); + if (visitor.visitLockDatabase) { + return visitor.visitLockDatabase(this); } else { return visitor.visitChildren(this); } @@ -30725,12 +29429,15 @@ export class CreateRoleStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_CREATE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_CREATE, 0)!; - } public KW_ROLE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_ROLE, 0)!; } + public KW_CREATE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_CREATE, 0); + } + public KW_DROP(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DROP, 0); + } public id_(): Id_Context { return this.getRuleContext(0, Id_Context)!; } @@ -30757,50 +29464,19 @@ export class CreateRoleStatementContext extends antlr.ParserRuleContext { } -export class DropRoleStatementContext extends antlr.ParserRuleContext { - public _roleName?: Id_Context; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DROP(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_DROP, 0)!; - } - public KW_ROLE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_ROLE, 0)!; - } - public id_(): Id_Context { - return this.getRuleContext(0, Id_Context)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_dropRoleStatement; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDropRoleStatement) { - listener.enterDropRoleStatement(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDropRoleStatement) { - listener.exitDropRoleStatement(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDropRoleStatement) { - return visitor.visitDropRoleStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class GrantPrivilegesContext extends antlr.ParserRuleContext { public _privList?: PrivilegeListContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_GRANT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_GRANT, 0)!; + public KW_GRANT(): antlr.TerminalNode[]; + public KW_GRANT(i: number): antlr.TerminalNode | null; + public KW_GRANT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.KW_GRANT); + } else { + return this.getToken(HiveSqlParser.KW_GRANT, i); + } } public KW_TO(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_TO, 0)!; @@ -30814,8 +29490,11 @@ export class GrantPrivilegesContext extends antlr.ParserRuleContext { public privilegeObject(): PrivilegeObjectContext | null { return this.getRuleContext(0, PrivilegeObjectContext); } - public withGrantOption(): WithGrantOptionContext | null { - return this.getRuleContext(0, WithGrantOptionContext); + public KW_WITH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WITH, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_grantPrivileges; @@ -30856,8 +29535,14 @@ export class RevokePrivilegesContext extends antlr.ParserRuleContext { public principalSpecification(): PrincipalSpecificationContext { return this.getRuleContext(0, PrincipalSpecificationContext)!; } - public grantOptionFor(): GrantOptionForContext | null { - return this.getRuleContext(0, GrantOptionForContext); + public KW_GRANT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_GRANT, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); + } + public KW_FOR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_FOR, 0); } public privilegeObject(): PrivilegeObjectContext | null { return this.getRuleContext(0, PrivilegeObjectContext); @@ -30919,8 +29604,14 @@ export class GrantRoleContext extends antlr.ParserRuleContext { return this.getToken(HiveSqlParser.COMMA, i); } } - public withAdminOption(): WithAdminOptionContext | null { - return this.getRuleContext(0, WithAdminOptionContext); + public KW_WITH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WITH, 0); + } + public KW_ADMIN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_ADMIN, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_grantRole; @@ -30967,8 +29658,14 @@ export class RevokeRoleContext extends antlr.ParserRuleContext { public principalSpecification(): PrincipalSpecificationContext { return this.getRuleContext(0, PrincipalSpecificationContext)!; } - public adminOptionFor(): AdminOptionForContext | null { - return this.getRuleContext(0, AdminOptionForContext); + public KW_ADMIN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_ADMIN, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); + } + public KW_FOR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_FOR, 0); } public KW_ROLE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ROLE, 0); @@ -31690,150 +30387,6 @@ export class PrincipalAlterNameContext extends antlr.ParserRuleContext { } -export class WithGrantOptionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_WITH(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_WITH, 0)!; - } - public KW_GRANT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_GRANT, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_withGrantOption; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterWithGrantOption) { - listener.enterWithGrantOption(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitWithGrantOption) { - listener.exitWithGrantOption(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitWithGrantOption) { - return visitor.visitWithGrantOption(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class GrantOptionForContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_GRANT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_GRANT, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public KW_FOR(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_FOR, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_grantOptionFor; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterGrantOptionFor) { - listener.enterGrantOptionFor(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitGrantOptionFor) { - listener.exitGrantOptionFor(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitGrantOptionFor) { - return visitor.visitGrantOptionFor(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AdminOptionForContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_ADMIN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_ADMIN, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public KW_FOR(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_FOR, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_adminOptionFor; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAdminOptionFor) { - listener.enterAdminOptionFor(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAdminOptionFor) { - listener.exitAdminOptionFor(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAdminOptionFor) { - return visitor.visitAdminOptionFor(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WithAdminOptionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_WITH(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_WITH, 0)!; - } - public KW_ADMIN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_ADMIN, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_withAdminOption; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterWithAdminOption) { - listener.enterWithAdminOption(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitWithAdminOption) { - listener.exitWithAdminOption(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitWithAdminOption) { - return visitor.visitWithAdminOption(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class MetastoreCheckContext extends antlr.ParserRuleContext { public _repair?: Token | null; public _opt?: Token | null; @@ -31891,86 +30444,6 @@ export class MetastoreCheckContext extends antlr.ParserRuleContext { } -export class ResourceListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public resource(): ResourceContext[]; - public resource(i: number): ResourceContext | null; - public resource(i?: number): ResourceContext[] | ResourceContext | null { - if (i === undefined) { - return this.getRuleContexts(ResourceContext); - } - - return this.getRuleContext(i, ResourceContext); - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.COMMA); - } else { - return this.getToken(HiveSqlParser.COMMA, i); - } - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_resourceList; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterResourceList) { - listener.enterResourceList(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitResourceList) { - listener.exitResourceList(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitResourceList) { - return visitor.visitResourceList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ResourceContext extends antlr.ParserRuleContext { - public _resType?: ResourceTypeContext; - public _resPath?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public resourceType(): ResourceTypeContext { - return this.getRuleContext(0, ResourceTypeContext)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_resource; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterResource) { - listener.enterResource(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitResource) { - listener.exitResource(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitResource) { - return visitor.visitResource(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ResourceTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -32009,7 +30482,8 @@ export class ResourceTypeContext extends antlr.ParserRuleContext { export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public _temp?: Token | null; - public _rList?: ResourceListContext; + public _resType?: ResourceTypeContext; + public _resPath?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -32025,8 +30499,14 @@ export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public KW_AS(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_AS, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_USING(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_USING, 0); @@ -32034,8 +30514,23 @@ export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TEMPORARY, 0); } - public resourceList(): ResourceListContext | null { - return this.getRuleContext(0, ResourceListContext); + public resourceType(): ResourceTypeContext[]; + public resourceType(i: number): ResourceTypeContext | null; + public resourceType(i?: number): ResourceTypeContext[] | ResourceTypeContext | null { + if (i === undefined) { + return this.getRuleContexts(ResourceTypeContext); + } + + return this.getRuleContext(i, ResourceTypeContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.COMMA); + } else { + return this.getToken(HiveSqlParser.COMMA, i); + } } public override get ruleIndex(): number { return HiveSqlParser.RULE_createFunctionStatement; @@ -32318,8 +30813,8 @@ export class CreateIndexStatementContext extends antlr.ParserRuleContext { public tableComment(): TableCommentContext | null { return this.getRuleContext(0, TableCommentContext); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_createIndexStatement; @@ -32718,6 +31213,9 @@ export class DropViewStatementContext extends antlr.ParserRuleContext { public ifExists(): IfExistsContext | null { return this.getRuleContext(0, IfExistsContext); } + public KW_MATERIALIZED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_dropViewStatement; } @@ -32779,8 +31277,8 @@ export class CreateMaterializedViewStatementContext extends antlr.ParserRuleCont public viewOrganization(): ViewOrganizationContext | null { return this.getRuleContext(0, ViewOrganizationContext); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public tableFileFormat(): TableFileFormatContext | null { return this.getRuleContext(0, TableFileFormatContext); @@ -32814,48 +31312,6 @@ export class CreateMaterializedViewStatementContext extends antlr.ParserRuleCont } -export class DropMaterializedViewStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DROP(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_DROP, 0)!; - } - public KW_MATERIALIZED(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0)!; - } - public KW_VIEW(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_VIEW, 0)!; - } - public viewName(): ViewNameContext { - return this.getRuleContext(0, ViewNameContext)!; - } - public ifExists(): IfExistsContext | null { - return this.getRuleContext(0, IfExistsContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_dropMaterializedViewStatement; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDropMaterializedViewStatement) { - listener.enterDropMaterializedViewStatement(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDropMaterializedViewStatement) { - listener.exitDropMaterializedViewStatement(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDropMaterializedViewStatement) { - return visitor.visitDropMaterializedViewStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateScheduledQueryStatementContext extends antlr.ParserRuleContext { public _name?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -33420,17 +31876,29 @@ export class PartitionTransformTypeContext extends antlr.ParserRuleContext { public RPAREN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.RPAREN, 0); } - public year(): YearContext | null { - return this.getRuleContext(0, YearContext); + public KW_YEAR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEAR, 0); + } + public KW_YEARS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEARS, 0); } - public month(): MonthContext | null { - return this.getRuleContext(0, MonthContext); + public KW_MONTH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTH, 0); } - public day(): DayContext | null { - return this.getRuleContext(0, DayContext); + public KW_MONTHS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTHS, 0); } - public hour(): HourContext | null { - return this.getRuleContext(0, HourContext); + public KW_DAY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAY, 0); + } + public KW_DAYS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAYS, 0); + } + public KW_HOUR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOUR, 0); + } + public KW_HOURS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOURS, 0); } public COMMA(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.COMMA, 0); @@ -33643,72 +32111,6 @@ export class RowFormatContext extends antlr.ParserRuleContext { } -export class RecordReaderContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_RECORDREADER(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_RECORDREADER, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_recordReader; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRecordReader) { - listener.enterRecordReader(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRecordReader) { - listener.exitRecordReader(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRecordReader) { - return visitor.visitRecordReader(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RecordWriterContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_RECORDWRITER(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_RECORDWRITER, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_recordWriter; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRecordWriter) { - listener.enterRecordWriter(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRecordWriter) { - listener.exitRecordWriter(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRecordWriter) { - return visitor.visitRecordWriter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class RowFormatSerdeContext extends antlr.ParserRuleContext { public _name?: Token | null; public _serderops?: TablePropertiesContext; @@ -33772,17 +32174,17 @@ export class RowFormatDelimitedContext extends antlr.ParserRuleContext { public KW_DELIMITED(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_DELIMITED, 0)!; } - public tableRowFormatFieldIdentifier(): TableRowFormatFieldIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatFieldIdentifierContext); + public rowFormatFieldIdentifier(): RowFormatFieldIdentifierContext | null { + return this.getRuleContext(0, RowFormatFieldIdentifierContext); } - public tableRowFormatCollItemsIdentifier(): TableRowFormatCollItemsIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatCollItemsIdentifierContext); + public rowFormatCollItemsIdentifier(): RowFormatCollItemsIdentifierContext | null { + return this.getRuleContext(0, RowFormatCollItemsIdentifierContext); } - public tableRowFormatMapKeysIdentifier(): TableRowFormatMapKeysIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatMapKeysIdentifierContext); + public rowFormatMapKeysIdentifier(): RowFormatMapKeysIdentifierContext | null { + return this.getRuleContext(0, RowFormatMapKeysIdentifierContext); } - public tableRowFormatLinesIdentifier(): TableRowFormatLinesIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatLinesIdentifierContext); + public rowFormatLinesIdentifier(): RowFormatLinesIdentifierContext | null { + return this.getRuleContext(0, RowFormatLinesIdentifierContext); } public tableRowNullFormat(): TableRowNullFormatContext | null { return this.getRuleContext(0, TableRowNullFormatContext); @@ -33810,39 +32212,6 @@ export class RowFormatDelimitedContext extends antlr.ParserRuleContext { } -export class TableRowFormatContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public rowFormatDelimited(): RowFormatDelimitedContext | null { - return this.getRuleContext(0, RowFormatDelimitedContext); - } - public rowFormatSerde(): RowFormatSerdeContext | null { - return this.getRuleContext(0, RowFormatSerdeContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormat; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormat) { - listener.enterTableRowFormat(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormat) { - listener.exitTableRowFormat(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormat) { - return visitor.visitTableRowFormat(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TablePropertiesPrefixedContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34083,7 +32452,7 @@ export class KeyValuePropertyContext extends antlr.ParserRuleContext { } -export class TableRowFormatFieldIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatFieldIdentifierContext extends antlr.ParserRuleContext { public _fldIdnt?: Token | null; public _fldEscape?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -34117,21 +32486,21 @@ export class TableRowFormatFieldIdentifierContext extends antlr.ParserRuleContex return this.getToken(HiveSqlParser.KW_ESCAPED, 0); } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatFieldIdentifier; + return HiveSqlParser.RULE_rowFormatFieldIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatFieldIdentifier) { - listener.enterTableRowFormatFieldIdentifier(this); + if(listener.enterRowFormatFieldIdentifier) { + listener.enterRowFormatFieldIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatFieldIdentifier) { - listener.exitTableRowFormatFieldIdentifier(this); + if(listener.exitRowFormatFieldIdentifier) { + listener.exitRowFormatFieldIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatFieldIdentifier) { - return visitor.visitTableRowFormatFieldIdentifier(this); + if (visitor.visitRowFormatFieldIdentifier) { + return visitor.visitRowFormatFieldIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34139,7 +32508,7 @@ export class TableRowFormatFieldIdentifierContext extends antlr.ParserRuleContex } -export class TableRowFormatCollItemsIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatCollItemsIdentifierContext extends antlr.ParserRuleContext { public _collIdnt?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34160,21 +32529,21 @@ export class TableRowFormatCollItemsIdentifierContext extends antlr.ParserRuleCo return this.getToken(HiveSqlParser.StringLiteral, 0)!; } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatCollItemsIdentifier; + return HiveSqlParser.RULE_rowFormatCollItemsIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatCollItemsIdentifier) { - listener.enterTableRowFormatCollItemsIdentifier(this); + if(listener.enterRowFormatCollItemsIdentifier) { + listener.enterRowFormatCollItemsIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatCollItemsIdentifier) { - listener.exitTableRowFormatCollItemsIdentifier(this); + if(listener.exitRowFormatCollItemsIdentifier) { + listener.exitRowFormatCollItemsIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatCollItemsIdentifier) { - return visitor.visitTableRowFormatCollItemsIdentifier(this); + if (visitor.visitRowFormatCollItemsIdentifier) { + return visitor.visitRowFormatCollItemsIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34182,7 +32551,7 @@ export class TableRowFormatCollItemsIdentifierContext extends antlr.ParserRuleCo } -export class TableRowFormatMapKeysIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatMapKeysIdentifierContext extends antlr.ParserRuleContext { public _mapKeysIdnt?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34203,21 +32572,21 @@ export class TableRowFormatMapKeysIdentifierContext extends antlr.ParserRuleCont return this.getToken(HiveSqlParser.StringLiteral, 0)!; } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatMapKeysIdentifier; + return HiveSqlParser.RULE_rowFormatMapKeysIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatMapKeysIdentifier) { - listener.enterTableRowFormatMapKeysIdentifier(this); + if(listener.enterRowFormatMapKeysIdentifier) { + listener.enterRowFormatMapKeysIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatMapKeysIdentifier) { - listener.exitTableRowFormatMapKeysIdentifier(this); + if(listener.exitRowFormatMapKeysIdentifier) { + listener.exitRowFormatMapKeysIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatMapKeysIdentifier) { - return visitor.visitTableRowFormatMapKeysIdentifier(this); + if (visitor.visitRowFormatMapKeysIdentifier) { + return visitor.visitRowFormatMapKeysIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34225,7 +32594,7 @@ export class TableRowFormatMapKeysIdentifierContext extends antlr.ParserRuleCont } -export class TableRowFormatLinesIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatLinesIdentifierContext extends antlr.ParserRuleContext { public _linesIdnt?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34243,21 +32612,21 @@ export class TableRowFormatLinesIdentifierContext extends antlr.ParserRuleContex return this.getToken(HiveSqlParser.StringLiteral, 0)!; } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatLinesIdentifier; + return HiveSqlParser.RULE_rowFormatLinesIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatLinesIdentifier) { - listener.enterTableRowFormatLinesIdentifier(this); + if(listener.enterRowFormatLinesIdentifier) { + listener.enterRowFormatLinesIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatLinesIdentifier) { - listener.exitTableRowFormatLinesIdentifier(this); + if(listener.exitRowFormatLinesIdentifier) { + listener.exitRowFormatLinesIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatLinesIdentifier) { - return visitor.visitTableRowFormatLinesIdentifier(this); + if (visitor.visitRowFormatLinesIdentifier) { + return visitor.visitRowFormatLinesIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34863,8 +33232,11 @@ export class EnableValidateSpecificationContext extends antlr.ParserRuleContext public enableSpecification(): EnableSpecificationContext | null { return this.getRuleContext(0, EnableSpecificationContext); } - public validateSpecification(): ValidateSpecificationContext | null { - return this.getRuleContext(0, ValidateSpecificationContext); + public KW_VALIDATE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_VALIDATE, 0); + } + public KW_NOVALIDATE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NOVALIDATE, 0); } public enforcedSpecification(): EnforcedSpecificationContext | null { return this.getRuleContext(0, EnforcedSpecificationContext); @@ -34925,39 +33297,6 @@ export class EnableSpecificationContext extends antlr.ParserRuleContext { } -export class ValidateSpecificationContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_VALIDATE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_VALIDATE, 0); - } - public KW_NOVALIDATE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_NOVALIDATE, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_validateSpecification; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterValidateSpecification) { - listener.enterValidateSpecification(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitValidateSpecification) { - listener.exitValidateSpecification(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitValidateSpecification) { - return visitor.visitValidateSpecification(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class EnforcedSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34991,39 +33330,6 @@ export class EnforcedSpecificationContext extends antlr.ParserRuleContext { } -export class RelySpecificationContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_RELY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_RELY, 0); - } - public KW_NORELY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_NORELY, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_relySpecification; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRelySpecification) { - listener.enterRelySpecification(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRelySpecification) { - listener.exitRelySpecification(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRelySpecification) { - return visitor.visitRelySpecification(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateConstraintContext extends antlr.ParserRuleContext { public _constraintName?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -35035,8 +33341,8 @@ export class CreateConstraintContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35078,8 +33384,8 @@ export class AlterConstraintWithNameContext extends antlr.ParserRuleContext { public id_(): Id_Context { return this.getRuleContext(0, Id_Context)!; } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_alterConstraintWithName; @@ -35242,8 +33548,8 @@ export class CreateForeignKeyContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35306,8 +33612,8 @@ export class AlterForeignKeyWithNameContext extends antlr.ParserRuleContext { public tableName(): TableNameContext { return this.getRuleContext(0, TableNameContext)!; } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_alterForeignKeyWithName; @@ -35729,8 +34035,8 @@ export class ColumnNameTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; @@ -35832,7 +34138,7 @@ export class TableConstraintContext extends antlr.ParserRuleContext { export class ColumnNameTypeConstraintContext extends antlr.ParserRuleContext { public _colName?: ColumnNameCreateContext; - public _colType?: ColumnTypeContext; + public _colType?: TypeContext; public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -35840,8 +34146,8 @@ export class ColumnNameTypeConstraintContext extends antlr.ParserRuleContext { public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; } public columnConstraint(): ColumnConstraintContext | null { return this.getRuleContext(0, ColumnConstraintContext); @@ -35933,8 +34239,8 @@ export class ForeignKeyConstraintContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35973,8 +34279,8 @@ export class ColConstraintContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -36002,133 +34308,6 @@ export class ColConstraintContext extends antlr.ParserRuleContext { } -export class AlterColumnConstraintContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext | null { - return this.getRuleContext(0, AlterForeignKeyConstraintContext); - } - public alterColConstraint(): AlterColConstraintContext | null { - return this.getRuleContext(0, AlterColConstraintContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_alterColumnConstraint; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAlterColumnConstraint) { - listener.enterAlterColumnConstraint(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAlterColumnConstraint) { - listener.exitAlterColumnConstraint(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAlterColumnConstraint) { - return visitor.visitAlterColumnConstraint(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AlterForeignKeyConstraintContext extends antlr.ParserRuleContext { - public _constraintName?: Id_Context; - public _tabName?: TableNameContext; - public _colName?: ColumnNameContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_REFERENCES(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_REFERENCES, 0)!; - } - public LPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.LPAREN, 0)!; - } - public RPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.RPAREN, 0)!; - } - public tableName(): TableNameContext { - return this.getRuleContext(0, TableNameContext)!; - } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; - } - public KW_CONSTRAINT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); - } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); - } - public id_(): Id_Context | null { - return this.getRuleContext(0, Id_Context); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_alterForeignKeyConstraint; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAlterForeignKeyConstraint) { - listener.enterAlterForeignKeyConstraint(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAlterForeignKeyConstraint) { - listener.exitAlterForeignKeyConstraint(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAlterForeignKeyConstraint) { - return visitor.visitAlterForeignKeyConstraint(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AlterColConstraintContext extends antlr.ParserRuleContext { - public _constraintName?: Id_Context; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public columnConstraintType(): ColumnConstraintTypeContext { - return this.getRuleContext(0, ColumnConstraintTypeContext)!; - } - public KW_CONSTRAINT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); - } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); - } - public id_(): Id_Context | null { - return this.getRuleContext(0, Id_Context); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_alterColConstraint; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAlterColConstraint) { - listener.enterAlterColConstraint(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAlterColConstraint) { - listener.exitAlterColConstraint(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAlterColConstraint) { - return visitor.visitAlterColConstraint(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ColumnConstraintTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -36142,8 +34321,14 @@ export class ColumnConstraintTypeContext extends antlr.ParserRuleContext { public KW_DEFAULT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_DEFAULT, 0); } - public defaultVal(): DefaultValContext | null { - return this.getRuleContext(0, DefaultValContext); + public constant(): ConstantContext | null { + return this.getRuleContext(0, ConstantContext); + } + public function_(): Function_Context | null { + return this.getRuleContext(0, Function_Context); + } + public castExpression(): CastExpressionContext | null { + return this.getRuleContext(0, CastExpressionContext); } public checkConstraint(): CheckConstraintContext | null { return this.getRuleContext(0, CheckConstraintContext); @@ -36174,42 +34359,6 @@ export class ColumnConstraintTypeContext extends antlr.ParserRuleContext { } -export class DefaultValContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public constant(): ConstantContext | null { - return this.getRuleContext(0, ConstantContext); - } - public function_(): Function_Context | null { - return this.getRuleContext(0, Function_Context); - } - public castExpression(): CastExpressionContext | null { - return this.getRuleContext(0, CastExpressionContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_defaultVal; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDefaultVal) { - listener.enterDefaultVal(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDefaultVal) { - listener.exitDefaultVal(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDefaultVal) { - return visitor.visitDefaultVal(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TableConstraintTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -36246,65 +34395,35 @@ export class TableConstraintTypeContext extends antlr.ParserRuleContext { } -export class ConstraintOptsCreateContext extends antlr.ParserRuleContext { +export class ConstraintOptsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public enableValidateSpecification(): EnableValidateSpecificationContext { return this.getRuleContext(0, EnableValidateSpecificationContext)!; } - public relySpecification(): RelySpecificationContext | null { - return this.getRuleContext(0, RelySpecificationContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_constraintOptsCreate; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterConstraintOptsCreate) { - listener.enterConstraintOptsCreate(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitConstraintOptsCreate) { - listener.exitConstraintOptsCreate(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitConstraintOptsCreate) { - return visitor.visitConstraintOptsCreate(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConstraintOptsAlterContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public enableValidateSpecification(): EnableValidateSpecificationContext { - return this.getRuleContext(0, EnableValidateSpecificationContext)!; + public KW_RELY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_RELY, 0); } - public relySpecification(): RelySpecificationContext | null { - return this.getRuleContext(0, RelySpecificationContext); + public KW_NORELY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NORELY, 0); } public override get ruleIndex(): number { - return HiveSqlParser.RULE_constraintOptsAlter; + return HiveSqlParser.RULE_constraintOpts; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterConstraintOptsAlter) { - listener.enterConstraintOptsAlter(this); + if(listener.enterConstraintOpts) { + listener.enterConstraintOpts(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitConstraintOptsAlter) { - listener.exitConstraintOptsAlter(this); + if(listener.exitConstraintOpts) { + listener.exitConstraintOpts(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitConstraintOptsAlter) { - return visitor.visitConstraintOptsAlter(this); + if (visitor.visitConstraintOpts) { + return visitor.visitConstraintOpts(this); } else { return visitor.visitChildren(this); } @@ -36321,8 +34440,8 @@ export class ColumnNameColonTypeContext extends antlr.ParserRuleContext { public COLON(): antlr.TerminalNode { return this.getToken(HiveSqlParser.COLON, 0)!; } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; @@ -36356,48 +34475,18 @@ export class ColumnNameColonTypeContext extends antlr.ParserRuleContext { } -export class ColumnTypeContext extends antlr.ParserRuleContext { +export class TypeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public type(): TypeContext { - return this.getRuleContext(0, TypeContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_columnType; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterColumnType) { - listener.enterColumnType(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitColumnType) { - listener.exitColumnType(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitColumnType) { - return visitor.visitColumnType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ColumnTypeListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public columnType(): ColumnTypeContext[]; - public columnType(i: number): ColumnTypeContext | null; - public columnType(i?: number): ColumnTypeContext[] | ColumnTypeContext | null { + public type_(): TypeContext[]; + public type_(i: number): TypeContext | null; + public type_(i?: number): TypeContext[] | TypeContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnTypeContext); + return this.getRuleContexts(TypeContext); } - return this.getRuleContext(i, ColumnTypeContext); + return this.getRuleContext(i, TypeContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -36409,21 +34498,21 @@ export class ColumnTypeListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return HiveSqlParser.RULE_columnTypeList; + return HiveSqlParser.RULE_typeList; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterColumnTypeList) { - listener.enterColumnTypeList(this); + if(listener.enterTypeList) { + listener.enterTypeList(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitColumnTypeList) { - listener.exitColumnTypeList(this); + if(listener.exitTypeList) { + listener.exitTypeList(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitColumnTypeList) { - return visitor.visitColumnTypeList(this); + if (visitor.visitTypeList) { + return visitor.visitTypeList(this); } else { return visitor.visitChildren(this); } @@ -36540,8 +34629,14 @@ export class PrimitiveTypeContext extends antlr.ParserRuleContext { public KW_BINARY(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_BINARY, 0); } - public decimal(): DecimalContext | null { - return this.getRuleContext(0, DecimalContext); + public KW_DEC(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DEC, 0); + } + public KW_DECIMAL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DECIMAL, 0); + } + public KW_NUMERIC(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NUMERIC, 0); } public LPAREN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.LPAREN, 0); @@ -36725,8 +34820,8 @@ export class UnionTypeContext extends antlr.ParserRuleContext { public LESSTHAN(): antlr.TerminalNode { return this.getToken(HiveSqlParser.LESSTHAN, 0)!; } - public columnTypeList(): ColumnTypeListContext { - return this.getRuleContext(0, ColumnTypeListContext)!; + public typeList(): TypeListContext { + return this.getRuleContext(0, TypeListContext)!; } public GREATERTHAN(): antlr.TerminalNode { return this.getToken(HiveSqlParser.GREATERTHAN, 0)!; @@ -37501,8 +35596,8 @@ export class DestinationContext extends antlr.ParserRuleContext { public StringLiteral(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.StringLiteral, 0); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public tableFileFormat(): TableFileFormatContext | null { return this.getRuleContext(0, TableFileFormatContext); @@ -38022,112 +36117,8 @@ export class WhenMatchedThenClauseContext extends antlr.ParserRuleContext { } -export class CompactionPoolContext extends antlr.ParserRuleContext { - public _poolName?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_POOL(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_POOL, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_compactionPool; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterCompactionPool) { - listener.enterCompactionPool(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitCompactionPool) { - listener.exitCompactionPool(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitCompactionPool) { - return visitor.visitCompactionPool(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CompactionTypeContext extends antlr.ParserRuleContext { - public _compactType?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_TYPE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_TYPE, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_compactionType; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterCompactionType) { - listener.enterCompactionType(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitCompactionType) { - listener.exitCompactionType(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitCompactionType) { - return visitor.visitCompactionType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CompactionStatusContext extends antlr.ParserRuleContext { - public _status?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_STATUS(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_STATUS, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_compactionStatus; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterCompactionStatus) { - listener.enterCompactionStatus(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitCompactionStatus) { - listener.exitCompactionStatus(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitCompactionStatus) { - return visitor.visitCompactionStatus(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class AlterStatementContext extends antlr.ParserRuleContext { public _tableNameTree?: ViewNameContext; - public _mvRewriteFlag?: RewriteEnabledContext; - public _mvRewriteFlag2?: RewriteDisabledContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -38182,15 +36173,15 @@ export class AlterStatementContext extends antlr.ParserRuleContext { public KW_REBUILD(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_REBUILD, 0); } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_AS, 0); - } public rewriteEnabled(): RewriteEnabledContext | null { return this.getRuleContext(0, RewriteEnabledContext); } public rewriteDisabled(): RewriteDisabledContext | null { return this.getRuleContext(0, RewriteDisabledContext); } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_AS, 0); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_alterStatement; } @@ -38388,6 +36379,7 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public _serdeName?: Token | null; public _num?: Token | null; public _compactType?: Token | null; + public _poolName?: Token | null; public _colName?: ColumnNameContext; public _comment?: Token | null; public _oldName?: ColumnNameContext; @@ -38411,8 +36403,14 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public KW_LOCATION(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_LOCATION, 0); } - public StringLiteral(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.StringLiteral, 0); + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_CONCATENATE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONCATENATE, 0); @@ -38501,8 +36499,8 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public orderByClause(): OrderByClauseContext | null { return this.getRuleContext(0, OrderByClauseContext); } - public compactionPool(): CompactionPoolContext | null { - return this.getRuleContext(0, CompactionPoolContext); + public KW_POOL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_POOL, 0); } public KW_OVERWRITE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_OVERWRITE, 0); @@ -38531,14 +36529,14 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public KW_CHANGE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CHANGE, 0); } - public columnType(): ColumnTypeContext | null { - return this.getRuleContext(0, ColumnTypeContext); + public type(): TypeContext | null { + return this.getRuleContext(0, TypeContext); } public columnNameCreate(): ColumnNameCreateContext | null { return this.getRuleContext(0, ColumnNameCreateContext); } - public alterColumnConstraint(): AlterColumnConstraintContext | null { - return this.getRuleContext(0, AlterColumnConstraintContext); + public columnConstraint(): ColumnConstraintContext | null { + return this.getRuleContext(0, ColumnConstraintContext); } public KW_AFTER(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AFTER, 0); @@ -39108,11 +37106,14 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public KW_CREATE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_CREATE, 0)!; } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_TABLE, 0)!; + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TABLE, 0); } - public tableNameCreate(): TableNameCreateContext { - return this.getRuleContext(0, TableNameCreateContext)!; + public tableNameCreate(): TableNameCreateContext | null { + return this.getRuleContext(0, TableNameCreateContext); + } + public KW_MANAGED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MANAGED, 0); } public likeTableOrFile(): LikeTableOrFileContext | null { return this.getRuleContext(0, LikeTableOrFileContext); @@ -39132,8 +37133,8 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public createTablePartitionSpec(): CreateTablePartitionSpecContext | null { return this.getRuleContext(0, CreateTablePartitionSpecContext); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public tableFileFormat(): TableFileFormatContext | null { return this.getRuleContext(0, TableFileFormatContext); @@ -39171,9 +37172,6 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public selectStatementWithCTE(): SelectStatementWithCTEContext | null { return this.getRuleContext(0, SelectStatementWithCTEContext); } - public KW_MANAGED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MANAGED, 0); - } public override get ruleIndex(): number { return HiveSqlParser.RULE_createTableStatement; } @@ -40950,17 +38948,23 @@ export class SelectTrfmClauseContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RowFormatContext); } - public recordWriter(): RecordWriterContext { - return this.getRuleContext(0, RecordWriterContext)!; + public KW_RECORDWRITER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDWRITER, 0)!; + } + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_USING(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_USING, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public recordReader(): RecordReaderContext { - return this.getRuleContext(0, RecordReaderContext)!; + public KW_RECORDREADER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDREADER, 0)!; } public KW_AS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AS, 0); @@ -41182,17 +39186,23 @@ export class TrfmClauseContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RowFormatContext); } - public recordWriter(): RecordWriterContext { - return this.getRuleContext(0, RecordWriterContext)!; + public KW_RECORDWRITER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDWRITER, 0)!; + } + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_USING(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_USING, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public recordReader(): RecordReaderContext { - return this.getRuleContext(0, RecordReaderContext)!; + public KW_RECORDREADER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDREADER, 0)!; } public KW_MAP(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_MAP, 0); @@ -41832,39 +39842,6 @@ export class QualifyClauseContext extends antlr.ParserRuleContext { } -export class ExpressionOrDefaultContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DEFAULT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DEFAULT, 0); - } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_expressionOrDefault; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterExpressionOrDefault) { - listener.enterExpressionOrDefault(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitExpressionOrDefault) { - listener.exitExpressionOrDefault(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitExpressionOrDefault) { - return visitor.visitExpressionOrDefault(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class FirstExpressionsWithAliasContext extends antlr.ParserRuleContext { public _first?: ExpressionContext; public _colAlias?: Id_Context; @@ -42001,18 +39978,26 @@ export class ExpressionsInParenthesisContext extends antlr.ParserRuleContext { export class ExpressionsNotInParenthesisContext extends antlr.ParserRuleContext { - public _first?: ExpressionOrDefaultContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expressionOrDefault(): ExpressionOrDefaultContext[]; - public expressionOrDefault(i: number): ExpressionOrDefaultContext | null; - public expressionOrDefault(i?: number): ExpressionOrDefaultContext[] | ExpressionOrDefaultContext | null { + public KW_DEFAULT(): antlr.TerminalNode[]; + public KW_DEFAULT(i: number): antlr.TerminalNode | null; + public KW_DEFAULT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.KW_DEFAULT); + } else { + return this.getToken(HiveSqlParser.KW_DEFAULT, i); + } + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ExpressionOrDefaultContext); + return this.getRuleContexts(ExpressionContext); } - return this.getRuleContext(i, ExpressionOrDefaultContext); + return this.getRuleContext(i, ExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -42271,7 +40256,6 @@ export class Function_Context extends antlr.ParserRuleContext { public _dist?: Token | null; public _within?: Token | null; public _ordBy?: OrderByClauseContext; - public _nt?: Null_treatmentContext; public _ws?: Window_specificationContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -42339,8 +40323,14 @@ export class Function_Context extends antlr.ParserRuleContext { public window_specification(): Window_specificationContext | null { return this.getRuleContext(0, Window_specificationContext); } - public null_treatment(): Null_treatmentContext | null { - return this.getRuleContext(0, Null_treatmentContext); + public KW_NULLS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NULLS, 0); + } + public KW_RESPECT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_RESPECT, 0); + } + public KW_IGNORE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_IGNORE, 0); } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ALL, 0); @@ -42380,42 +40370,6 @@ export class Function_Context extends antlr.ParserRuleContext { } -export class Null_treatmentContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NULLS(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_NULLS, 0)!; - } - public KW_RESPECT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_RESPECT, 0); - } - public KW_IGNORE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_IGNORE, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_null_treatment; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterNull_treatment) { - listener.enterNull_treatment(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitNull_treatment) { - listener.exitNull_treatment(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitNull_treatment) { - return visitor.visitNull_treatment(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class FunctionNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -42790,29 +40744,50 @@ export class TimeQualifiersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public year(): YearContext | null { - return this.getRuleContext(0, YearContext); + public KW_YEAR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEAR, 0); + } + public KW_YEARS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEARS, 0); } public KW_QUARTER(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_QUARTER, 0); } - public month(): MonthContext | null { - return this.getRuleContext(0, MonthContext); + public KW_MONTH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTH, 0); + } + public KW_MONTHS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTHS, 0); + } + public KW_WEEK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WEEK, 0); + } + public KW_WEEKS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WEEKS, 0); } - public week(): WeekContext | null { - return this.getRuleContext(0, WeekContext); + public KW_DAY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAY, 0); } - public day(): DayContext | null { - return this.getRuleContext(0, DayContext); + public KW_DAYS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAYS, 0); } - public hour(): HourContext | null { - return this.getRuleContext(0, HourContext); + public KW_HOUR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOUR, 0); } - public minute(): MinuteContext | null { - return this.getRuleContext(0, MinuteContext); + public KW_HOURS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOURS, 0); } - public second(): SecondContext | null { - return this.getRuleContext(0, SecondContext); + public KW_MINUTE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTE, 0); + } + public KW_MINUTES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTES, 0); + } + public KW_SECOND(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECOND, 0); + } + public KW_SECONDS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECONDS, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_timeQualifiers; @@ -43014,26 +40989,44 @@ export class IntervalQualifiersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public year(): YearContext | null { - return this.getRuleContext(0, YearContext); - } public KW_TO(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TO, 0); } - public month(): MonthContext | null { - return this.getRuleContext(0, MonthContext); + public KW_YEAR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEAR, 0); + } + public KW_YEARS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEARS, 0); + } + public KW_MONTH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTH, 0); + } + public KW_MONTHS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTHS, 0); + } + public KW_DAY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAY, 0); + } + public KW_DAYS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAYS, 0); + } + public KW_SECOND(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECOND, 0); + } + public KW_SECONDS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECONDS, 0); } - public day(): DayContext | null { - return this.getRuleContext(0, DayContext); + public KW_HOUR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOUR, 0); } - public second(): SecondContext | null { - return this.getRuleContext(0, SecondContext); + public KW_HOURS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOURS, 0); } - public hour(): HourContext | null { - return this.getRuleContext(0, HourContext); + public KW_MINUTE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTE, 0); } - public minute(): MinuteContext | null { - return this.getRuleContext(0, MinuteContext); + public KW_MINUTES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTES, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_intervalQualifiers; @@ -43581,6 +41574,42 @@ export class PrecedenceBitwiseOrExpressionContext extends antlr.ParserRuleContex } +export class SubQueryExpressionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public LPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.LPAREN, 0)!; + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.RPAREN, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_subQueryExpression; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSubQueryExpression) { + listener.enterSubQueryExpression(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSubQueryExpression) { + listener.exitSubQueryExpression(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSubQueryExpression) { + return visitor.visitSubQueryExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PrecedenceSimilarOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -43629,42 +41658,6 @@ export class PrecedenceSimilarOperatorContext extends antlr.ParserRuleContext { } -export class SubQueryExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public LPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.LPAREN, 0)!; - } - public selectStatement(): SelectStatementContext { - return this.getRuleContext(0, SelectStatementContext)!; - } - public RPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.RPAREN, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_subQueryExpression; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterSubQueryExpression) { - listener.enterSubQueryExpression(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitSubQueryExpression) { - listener.exitSubQueryExpression(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitSubQueryExpression) { - return visitor.visitSubQueryExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class PrecedenceSimilarExpressionContext extends antlr.ParserRuleContext { public _a?: PrecedenceBitwiseOrExpressionContext; public _part?: PrecedenceSimilarExpressionPartContext; @@ -43708,6 +41701,7 @@ export class PrecedenceSimilarExpressionContext extends antlr.ParserRuleContext export class PrecedenceSimilarExpressionPartContext extends antlr.ParserRuleContext { public _equalExpr?: PrecedenceBitwiseOrExpressionContext; + public _notExpr?: PrecedenceBitwiseOrExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -43723,8 +41717,14 @@ export class PrecedenceSimilarExpressionPartContext extends antlr.ParserRuleCont public KW_NOT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_NOT, 0); } - public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext | null { - return this.getRuleContext(0, PrecedenceSimilarExpressionPartNotContext); + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LIKE, 0); + } + public KW_RLIKE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_RLIKE, 0); + } + public KW_REGEXP(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_REGEXP, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_precedenceSimilarExpressionPart; @@ -43750,17 +41750,20 @@ export class PrecedenceSimilarExpressionPartContext extends antlr.ParserRuleCont export class PrecedenceSimilarExpressionAtomContext extends antlr.ParserRuleContext { + public _expr?: ExpressionsInParenthesisContext; public _min?: PrecedenceBitwiseOrExpressionContext; public _max?: PrecedenceBitwiseOrExpressionContext; - public _expr?: ExpressionsInParenthesisContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public KW_IN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_IN, 0); } - public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext | null { - return this.getRuleContext(0, PrecedenceSimilarExpressionInContext); + public subQueryExpression(): SubQueryExpressionContext | null { + return this.getRuleContext(0, SubQueryExpressionContext); + } + public expressionsInParenthesis(): ExpressionsInParenthesisContext | null { + return this.getRuleContext(0, ExpressionsInParenthesisContext); } public KW_BETWEEN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_BETWEEN, 0); @@ -43786,15 +41789,9 @@ export class PrecedenceSimilarExpressionAtomContext extends antlr.ParserRuleCont public KW_ALL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ALL, 0); } - public expressionsInParenthesis(): ExpressionsInParenthesisContext | null { - return this.getRuleContext(0, ExpressionsInParenthesisContext); - } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext | null { return this.getRuleContext(0, SubQuerySelectorOperatorContext); } - public subQueryExpression(): SubQueryExpressionContext | null { - return this.getRuleContext(0, SubQueryExpressionContext); - } public KW_SOME(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_SOME, 0); } @@ -43821,83 +41818,6 @@ export class PrecedenceSimilarExpressionAtomContext extends antlr.ParserRuleCont } -export class PrecedenceSimilarExpressionInContext extends antlr.ParserRuleContext { - public _expr?: ExpressionsInParenthesisContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public subQueryExpression(): SubQueryExpressionContext | null { - return this.getRuleContext(0, SubQueryExpressionContext); - } - public expressionsInParenthesis(): ExpressionsInParenthesisContext | null { - return this.getRuleContext(0, ExpressionsInParenthesisContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_precedenceSimilarExpressionIn; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterPrecedenceSimilarExpressionIn) { - listener.enterPrecedenceSimilarExpressionIn(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitPrecedenceSimilarExpressionIn) { - listener.exitPrecedenceSimilarExpressionIn(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitPrecedenceSimilarExpressionIn) { - return visitor.visitPrecedenceSimilarExpressionIn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PrecedenceSimilarExpressionPartNotContext extends antlr.ParserRuleContext { - public _notExpr?: PrecedenceBitwiseOrExpressionContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_LIKE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_LIKE, 0); - } - public KW_RLIKE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_RLIKE, 0); - } - public KW_REGEXP(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_REGEXP, 0); - } - public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext | null { - return this.getRuleContext(0, PrecedenceBitwiseOrExpressionContext); - } - public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext | null { - return this.getRuleContext(0, PrecedenceSimilarExpressionAtomContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_precedenceSimilarExpressionPartNot; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterPrecedenceSimilarExpressionPartNot) { - listener.enterPrecedenceSimilarExpressionPartNot(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitPrecedenceSimilarExpressionPartNot) { - listener.exitPrecedenceSimilarExpressionPartNot(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitPrecedenceSimilarExpressionPartNot) { - return visitor.visitPrecedenceSimilarExpressionPartNot(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class PrecedenceDistinctOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -46249,273 +44169,6 @@ export class DisableContext extends antlr.ParserRuleContext { } -export class YearContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_YEAR(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_YEAR, 0); - } - public KW_YEARS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_YEARS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_year; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterYear) { - listener.enterYear(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitYear) { - listener.exitYear(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitYear) { - return visitor.visitYear(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MonthContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_MONTH(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MONTH, 0); - } - public KW_MONTHS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MONTHS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_month; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterMonth) { - listener.enterMonth(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitMonth) { - listener.exitMonth(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitMonth) { - return visitor.visitMonth(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WeekContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_WEEK(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_WEEK, 0); - } - public KW_WEEKS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_WEEKS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_week; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterWeek) { - listener.enterWeek(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitWeek) { - listener.exitWeek(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitWeek) { - return visitor.visitWeek(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DayContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DAY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DAY, 0); - } - public KW_DAYS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DAYS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_day; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDay) { - listener.enterDay(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDay) { - listener.exitDay(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDay) { - return visitor.visitDay(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class HourContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_HOUR(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_HOUR, 0); - } - public KW_HOURS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_HOURS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_hour; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterHour) { - listener.enterHour(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitHour) { - listener.exitHour(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitHour) { - return visitor.visitHour(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MinuteContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_MINUTE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MINUTE, 0); - } - public KW_MINUTES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MINUTES, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_minute; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterMinute) { - listener.enterMinute(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitMinute) { - listener.exitMinute(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitMinute) { - return visitor.visitMinute(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SecondContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_SECOND(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SECOND, 0); - } - public KW_SECONDS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SECONDS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_second; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterSecond) { - listener.enterSecond(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitSecond) { - listener.exitSecond(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitSecond) { - return visitor.visitSecond(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DecimalContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DEC(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DEC, 0); - } - public KW_DECIMAL(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DECIMAL, 0); - } - public KW_NUMERIC(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_NUMERIC, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_decimal; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDecimal) { - listener.enterDecimal(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDecimal) { - listener.exitDecimal(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDecimal) { - return visitor.visitDecimal(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class EmptyColumnContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 964050e2..2e787813 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -26,17 +26,14 @@ import { DdlStatementContext } from "./HiveSqlParser.js"; import { IfExistsContext } from "./HiveSqlParser.js"; import { IfNotExistsContext } from "./HiveSqlParser.js"; import { RestrictOrCascadeContext } from "./HiveSqlParser.js"; +import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { RewriteEnabledContext } from "./HiveSqlParser.js"; import { RewriteDisabledContext } from "./HiveSqlParser.js"; -import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { CreateDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DbConnectorNameContext } from "./HiveSqlParser.js"; import { SwitchDatabaseStatementContext } from "./HiveSqlParser.js"; import { DropDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DatabaseCommentContext } from "./HiveSqlParser.js"; import { TruncateTableStatementContext } from "./HiveSqlParser.js"; import { DropTableStatementContext } from "./HiveSqlParser.js"; -import { InputFileFormatContext } from "./HiveSqlParser.js"; import { TabTypeExprContext } from "./HiveSqlParser.js"; import { PartTypeExprContext } from "./HiveSqlParser.js"; import { TabPartColTypeExprContext } from "./HiveSqlParser.js"; @@ -48,11 +45,7 @@ import { ShowStatementContext } from "./HiveSqlParser.js"; import { ShowTablesFilterExprContext } from "./HiveSqlParser.js"; import { LockStatementContext } from "./HiveSqlParser.js"; import { LockDatabaseContext } from "./HiveSqlParser.js"; -import { LockModeContext } from "./HiveSqlParser.js"; -import { UnlockStatementContext } from "./HiveSqlParser.js"; -import { UnlockDatabaseContext } from "./HiveSqlParser.js"; import { CreateRoleStatementContext } from "./HiveSqlParser.js"; -import { DropRoleStatementContext } from "./HiveSqlParser.js"; import { GrantPrivilegesContext } from "./HiveSqlParser.js"; import { RevokePrivilegesContext } from "./HiveSqlParser.js"; import { GrantRoleContext } from "./HiveSqlParser.js"; @@ -73,13 +66,7 @@ import { PrivilegeTypeContext } from "./HiveSqlParser.js"; import { PrincipalSpecificationContext } from "./HiveSqlParser.js"; import { PrincipalNameContext } from "./HiveSqlParser.js"; import { PrincipalAlterNameContext } from "./HiveSqlParser.js"; -import { WithGrantOptionContext } from "./HiveSqlParser.js"; -import { GrantOptionForContext } from "./HiveSqlParser.js"; -import { AdminOptionForContext } from "./HiveSqlParser.js"; -import { WithAdminOptionContext } from "./HiveSqlParser.js"; import { MetastoreCheckContext } from "./HiveSqlParser.js"; -import { ResourceListContext } from "./HiveSqlParser.js"; -import { ResourceContext } from "./HiveSqlParser.js"; import { ResourceTypeContext } from "./HiveSqlParser.js"; import { CreateFunctionStatementContext } from "./HiveSqlParser.js"; import { DropFunctionStatementContext } from "./HiveSqlParser.js"; @@ -97,7 +84,6 @@ import { ViewDistSpecContext } from "./HiveSqlParser.js"; import { ViewSortSpecContext } from "./HiveSqlParser.js"; import { DropViewStatementContext } from "./HiveSqlParser.js"; import { CreateMaterializedViewStatementContext } from "./HiveSqlParser.js"; -import { DropMaterializedViewStatementContext } from "./HiveSqlParser.js"; import { CreateScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { DropScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { AlterScheduledQueryStatementContext } from "./HiveSqlParser.js"; @@ -115,21 +101,18 @@ import { PartitionTransformTypeContext } from "./HiveSqlParser.js"; import { TableBucketsContext } from "./HiveSqlParser.js"; import { TableSkewedContext } from "./HiveSqlParser.js"; import { RowFormatContext } from "./HiveSqlParser.js"; -import { RecordReaderContext } from "./HiveSqlParser.js"; -import { RecordWriterContext } from "./HiveSqlParser.js"; import { RowFormatSerdeContext } from "./HiveSqlParser.js"; import { RowFormatDelimitedContext } from "./HiveSqlParser.js"; -import { TableRowFormatContext } from "./HiveSqlParser.js"; import { TablePropertiesPrefixedContext } from "./HiveSqlParser.js"; import { TablePropertiesContext } from "./HiveSqlParser.js"; import { TablePropertiesListContext } from "./HiveSqlParser.js"; import { KeyValuePropertiesContext } from "./HiveSqlParser.js"; import { KeyValuePropertyListContext } from "./HiveSqlParser.js"; import { KeyValuePropertyContext } from "./HiveSqlParser.js"; -import { TableRowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; import { TableRowNullFormatContext } from "./HiveSqlParser.js"; import { TableFileFormatContext } from "./HiveSqlParser.js"; import { ColumnNameTypeListContext } from "./HiveSqlParser.js"; @@ -145,9 +128,7 @@ import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; import { ColumnParenthesesListContext } from "./HiveSqlParser.js"; import { EnableValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnableSpecificationContext } from "./HiveSqlParser.js"; -import { ValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnforcedSpecificationContext } from "./HiveSqlParser.js"; -import { RelySpecificationContext } from "./HiveSqlParser.js"; import { CreateConstraintContext } from "./HiveSqlParser.js"; import { AlterConstraintWithNameContext } from "./HiveSqlParser.js"; import { TableLevelConstraintContext } from "./HiveSqlParser.js"; @@ -172,17 +153,11 @@ import { ColumnNameTypeConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintContext } from "./HiveSqlParser.js"; import { ForeignKeyConstraintContext } from "./HiveSqlParser.js"; import { ColConstraintContext } from "./HiveSqlParser.js"; -import { AlterColumnConstraintContext } from "./HiveSqlParser.js"; -import { AlterForeignKeyConstraintContext } from "./HiveSqlParser.js"; -import { AlterColConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintTypeContext } from "./HiveSqlParser.js"; -import { DefaultValContext } from "./HiveSqlParser.js"; import { TableConstraintTypeContext } from "./HiveSqlParser.js"; -import { ConstraintOptsCreateContext } from "./HiveSqlParser.js"; -import { ConstraintOptsAlterContext } from "./HiveSqlParser.js"; +import { ConstraintOptsContext } from "./HiveSqlParser.js"; import { ColumnNameColonTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeListContext } from "./HiveSqlParser.js"; +import { TypeListContext } from "./HiveSqlParser.js"; import { TypeContext } from "./HiveSqlParser.js"; import { PrimitiveTypeContext } from "./HiveSqlParser.js"; import { ListTypeContext } from "./HiveSqlParser.js"; @@ -215,9 +190,6 @@ import { WhenClausesContext } from "./HiveSqlParser.js"; import { WhenNotMatchedClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedAndClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedThenClauseContext } from "./HiveSqlParser.js"; -import { CompactionPoolContext } from "./HiveSqlParser.js"; -import { CompactionTypeContext } from "./HiveSqlParser.js"; -import { CompactionStatusContext } from "./HiveSqlParser.js"; import { AlterStatementContext } from "./HiveSqlParser.js"; import { AlterTableStatementSuffixContext } from "./HiveSqlParser.js"; import { AlterTblPartitionStatementSuffixContext } from "./HiveSqlParser.js"; @@ -283,7 +255,6 @@ import { RollupOldSyntaxContext } from "./HiveSqlParser.js"; import { GroupingSetExpressionContext } from "./HiveSqlParser.js"; import { HavingClauseContext } from "./HiveSqlParser.js"; import { QualifyClauseContext } from "./HiveSqlParser.js"; -import { ExpressionOrDefaultContext } from "./HiveSqlParser.js"; import { FirstExpressionsWithAliasContext } from "./HiveSqlParser.js"; import { ExpressionsContext } from "./HiveSqlParser.js"; import { ExpressionsInParenthesisContext } from "./HiveSqlParser.js"; @@ -294,7 +265,6 @@ import { ClusterByClauseContext } from "./HiveSqlParser.js"; import { DistributeByClauseContext } from "./HiveSqlParser.js"; import { SortByClauseContext } from "./HiveSqlParser.js"; import { Function_Context } from "./HiveSqlParser.js"; -import { Null_treatmentContext } from "./HiveSqlParser.js"; import { FunctionNameCreateContext } from "./HiveSqlParser.js"; import { FunctionNameForDDLContext } from "./HiveSqlParser.js"; import { FunctionNameForInvokeContext } from "./HiveSqlParser.js"; @@ -317,13 +287,11 @@ import { PrecedencePlusExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceConcatenateExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceAmpersandExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceBitwiseOrExpressionContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { SubQueryExpressionContext } from "./HiveSqlParser.js"; +import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionPartContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionAtomContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionInContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionPartNotContext } from "./HiveSqlParser.js"; import { PrecedenceDistinctOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualExpressionContext } from "./HiveSqlParser.js"; @@ -353,14 +321,6 @@ import { RpUnassignContext } from "./HiveSqlParser.js"; import { ActivateContext } from "./HiveSqlParser.js"; import { EnableContext } from "./HiveSqlParser.js"; import { DisableContext } from "./HiveSqlParser.js"; -import { YearContext } from "./HiveSqlParser.js"; -import { MonthContext } from "./HiveSqlParser.js"; -import { WeekContext } from "./HiveSqlParser.js"; -import { DayContext } from "./HiveSqlParser.js"; -import { HourContext } from "./HiveSqlParser.js"; -import { MinuteContext } from "./HiveSqlParser.js"; -import { SecondContext } from "./HiveSqlParser.js"; -import { DecimalContext } from "./HiveSqlParser.js"; import { EmptyColumnContext } from "./HiveSqlParser.js"; import { PoolPathContext } from "./HiveSqlParser.js"; import { PoolPathAllowEmptyContext } from "./HiveSqlParser.js"; @@ -555,6 +515,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRestrictOrCascade?: (ctx: RestrictOrCascadeContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.storedAsDirs`. + * @param ctx the parse tree + */ + enterStoredAsDirs?: (ctx: StoredAsDirsContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.storedAsDirs`. + * @param ctx the parse tree + */ + exitStoredAsDirs?: (ctx: StoredAsDirsContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.rewriteEnabled`. * @param ctx the parse tree @@ -575,16 +545,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRewriteDisabled?: (ctx: RewriteDisabledContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.storedAsDirs`. - * @param ctx the parse tree - */ - enterStoredAsDirs?: (ctx: StoredAsDirsContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.storedAsDirs`. - * @param ctx the parse tree - */ - exitStoredAsDirs?: (ctx: StoredAsDirsContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createDatabaseStatement`. * @param ctx the parse tree @@ -595,16 +555,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateDatabaseStatement?: (ctx: CreateDatabaseStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.dbConnectorName`. - * @param ctx the parse tree - */ - enterDbConnectorName?: (ctx: DbConnectorNameContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.dbConnectorName`. - * @param ctx the parse tree - */ - exitDbConnectorName?: (ctx: DbConnectorNameContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.switchDatabaseStatement`. * @param ctx the parse tree @@ -625,16 +575,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDropDatabaseStatement?: (ctx: DropDatabaseStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.databaseComment`. - * @param ctx the parse tree - */ - enterDatabaseComment?: (ctx: DatabaseCommentContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.databaseComment`. - * @param ctx the parse tree - */ - exitDatabaseComment?: (ctx: DatabaseCommentContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.truncateTableStatement`. * @param ctx the parse tree @@ -655,16 +595,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDropTableStatement?: (ctx: DropTableStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.inputFileFormat`. - * @param ctx the parse tree - */ - enterInputFileFormat?: (ctx: InputFileFormatContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.inputFileFormat`. - * @param ctx the parse tree - */ - exitInputFileFormat?: (ctx: InputFileFormatContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tabTypeExpr`. * @param ctx the parse tree @@ -775,36 +705,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitLockDatabase?: (ctx: LockDatabaseContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.lockMode`. - * @param ctx the parse tree - */ - enterLockMode?: (ctx: LockModeContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.lockMode`. - * @param ctx the parse tree - */ - exitLockMode?: (ctx: LockModeContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.unlockStatement`. - * @param ctx the parse tree - */ - enterUnlockStatement?: (ctx: UnlockStatementContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.unlockStatement`. - * @param ctx the parse tree - */ - exitUnlockStatement?: (ctx: UnlockStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.unlockDatabase`. - * @param ctx the parse tree - */ - enterUnlockDatabase?: (ctx: UnlockDatabaseContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.unlockDatabase`. - * @param ctx the parse tree - */ - exitUnlockDatabase?: (ctx: UnlockDatabaseContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createRoleStatement`. * @param ctx the parse tree @@ -815,16 +715,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateRoleStatement?: (ctx: CreateRoleStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.dropRoleStatement`. - * @param ctx the parse tree - */ - enterDropRoleStatement?: (ctx: DropRoleStatementContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.dropRoleStatement`. - * @param ctx the parse tree - */ - exitDropRoleStatement?: (ctx: DropRoleStatementContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.grantPrivileges`. * @param ctx the parse tree @@ -1025,46 +915,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPrincipalAlterName?: (ctx: PrincipalAlterNameContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.withGrantOption`. - * @param ctx the parse tree - */ - enterWithGrantOption?: (ctx: WithGrantOptionContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.withGrantOption`. - * @param ctx the parse tree - */ - exitWithGrantOption?: (ctx: WithGrantOptionContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.grantOptionFor`. - * @param ctx the parse tree - */ - enterGrantOptionFor?: (ctx: GrantOptionForContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.grantOptionFor`. - * @param ctx the parse tree - */ - exitGrantOptionFor?: (ctx: GrantOptionForContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.adminOptionFor`. - * @param ctx the parse tree - */ - enterAdminOptionFor?: (ctx: AdminOptionForContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.adminOptionFor`. - * @param ctx the parse tree - */ - exitAdminOptionFor?: (ctx: AdminOptionForContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.withAdminOption`. - * @param ctx the parse tree - */ - enterWithAdminOption?: (ctx: WithAdminOptionContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.withAdminOption`. - * @param ctx the parse tree - */ - exitWithAdminOption?: (ctx: WithAdminOptionContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.metastoreCheck`. * @param ctx the parse tree @@ -1075,26 +925,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitMetastoreCheck?: (ctx: MetastoreCheckContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.resourceList`. - * @param ctx the parse tree - */ - enterResourceList?: (ctx: ResourceListContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.resourceList`. - * @param ctx the parse tree - */ - exitResourceList?: (ctx: ResourceListContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.resource`. - * @param ctx the parse tree - */ - enterResource?: (ctx: ResourceContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.resource`. - * @param ctx the parse tree - */ - exitResource?: (ctx: ResourceContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.resourceType`. * @param ctx the parse tree @@ -1265,16 +1095,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateMaterializedViewStatement?: (ctx: CreateMaterializedViewStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.dropMaterializedViewStatement`. - * @param ctx the parse tree - */ - enterDropMaterializedViewStatement?: (ctx: DropMaterializedViewStatementContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.dropMaterializedViewStatement`. - * @param ctx the parse tree - */ - exitDropMaterializedViewStatement?: (ctx: DropMaterializedViewStatementContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createScheduledQueryStatement`. * @param ctx the parse tree @@ -1445,26 +1265,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRowFormat?: (ctx: RowFormatContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.recordReader`. - * @param ctx the parse tree - */ - enterRecordReader?: (ctx: RecordReaderContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.recordReader`. - * @param ctx the parse tree - */ - exitRecordReader?: (ctx: RecordReaderContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.recordWriter`. - * @param ctx the parse tree - */ - enterRecordWriter?: (ctx: RecordWriterContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.recordWriter`. - * @param ctx the parse tree - */ - exitRecordWriter?: (ctx: RecordWriterContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.rowFormatSerde`. * @param ctx the parse tree @@ -1485,16 +1285,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRowFormatDelimited?: (ctx: RowFormatDelimitedContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormat`. - * @param ctx the parse tree - */ - enterTableRowFormat?: (ctx: TableRowFormatContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormat`. - * @param ctx the parse tree - */ - exitTableRowFormat?: (ctx: TableRowFormatContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tablePropertiesPrefixed`. * @param ctx the parse tree @@ -1556,45 +1346,45 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitKeyValueProperty?: (ctx: KeyValuePropertyContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatFieldIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatFieldIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatFieldIdentifier?: (ctx: TableRowFormatFieldIdentifierContext) => void; + enterRowFormatFieldIdentifier?: (ctx: RowFormatFieldIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatFieldIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatFieldIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatFieldIdentifier?: (ctx: TableRowFormatFieldIdentifierContext) => void; + exitRowFormatFieldIdentifier?: (ctx: RowFormatFieldIdentifierContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatCollItemsIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatCollItemsIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatCollItemsIdentifier?: (ctx: TableRowFormatCollItemsIdentifierContext) => void; + enterRowFormatCollItemsIdentifier?: (ctx: RowFormatCollItemsIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatCollItemsIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatCollItemsIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatCollItemsIdentifier?: (ctx: TableRowFormatCollItemsIdentifierContext) => void; + exitRowFormatCollItemsIdentifier?: (ctx: RowFormatCollItemsIdentifierContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatMapKeysIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatMapKeysIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatMapKeysIdentifier?: (ctx: TableRowFormatMapKeysIdentifierContext) => void; + enterRowFormatMapKeysIdentifier?: (ctx: RowFormatMapKeysIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatMapKeysIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatMapKeysIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatMapKeysIdentifier?: (ctx: TableRowFormatMapKeysIdentifierContext) => void; + exitRowFormatMapKeysIdentifier?: (ctx: RowFormatMapKeysIdentifierContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatLinesIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatLinesIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatLinesIdentifier?: (ctx: TableRowFormatLinesIdentifierContext) => void; + enterRowFormatLinesIdentifier?: (ctx: RowFormatLinesIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatLinesIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatLinesIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatLinesIdentifier?: (ctx: TableRowFormatLinesIdentifierContext) => void; + exitRowFormatLinesIdentifier?: (ctx: RowFormatLinesIdentifierContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tableRowNullFormat`. * @param ctx the parse tree @@ -1745,16 +1535,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitEnableSpecification?: (ctx: EnableSpecificationContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.validateSpecification`. - * @param ctx the parse tree - */ - enterValidateSpecification?: (ctx: ValidateSpecificationContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.validateSpecification`. - * @param ctx the parse tree - */ - exitValidateSpecification?: (ctx: ValidateSpecificationContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.enforcedSpecification`. * @param ctx the parse tree @@ -1765,16 +1545,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitEnforcedSpecification?: (ctx: EnforcedSpecificationContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.relySpecification`. - * @param ctx the parse tree - */ - enterRelySpecification?: (ctx: RelySpecificationContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.relySpecification`. - * @param ctx the parse tree - */ - exitRelySpecification?: (ctx: RelySpecificationContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createConstraint`. * @param ctx the parse tree @@ -2015,36 +1785,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColConstraint?: (ctx: ColConstraintContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.alterColumnConstraint`. - * @param ctx the parse tree - */ - enterAlterColumnConstraint?: (ctx: AlterColumnConstraintContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.alterColumnConstraint`. - * @param ctx the parse tree - */ - exitAlterColumnConstraint?: (ctx: AlterColumnConstraintContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.alterForeignKeyConstraint`. - * @param ctx the parse tree - */ - enterAlterForeignKeyConstraint?: (ctx: AlterForeignKeyConstraintContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.alterForeignKeyConstraint`. - * @param ctx the parse tree - */ - exitAlterForeignKeyConstraint?: (ctx: AlterForeignKeyConstraintContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.alterColConstraint`. - * @param ctx the parse tree - */ - enterAlterColConstraint?: (ctx: AlterColConstraintContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.alterColConstraint`. - * @param ctx the parse tree - */ - exitAlterColConstraint?: (ctx: AlterColConstraintContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.columnConstraintType`. * @param ctx the parse tree @@ -2055,16 +1795,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnConstraintType?: (ctx: ColumnConstraintTypeContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.defaultVal`. - * @param ctx the parse tree - */ - enterDefaultVal?: (ctx: DefaultValContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.defaultVal`. - * @param ctx the parse tree - */ - exitDefaultVal?: (ctx: DefaultValContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tableConstraintType`. * @param ctx the parse tree @@ -2076,25 +1806,15 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitTableConstraintType?: (ctx: TableConstraintTypeContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.constraintOptsCreate`. + * Enter a parse tree produced by `HiveSqlParser.constraintOpts`. * @param ctx the parse tree */ - enterConstraintOptsCreate?: (ctx: ConstraintOptsCreateContext) => void; + enterConstraintOpts?: (ctx: ConstraintOptsContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.constraintOptsCreate`. + * Exit a parse tree produced by `HiveSqlParser.constraintOpts`. * @param ctx the parse tree */ - exitConstraintOptsCreate?: (ctx: ConstraintOptsCreateContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.constraintOptsAlter`. - * @param ctx the parse tree - */ - enterConstraintOptsAlter?: (ctx: ConstraintOptsAlterContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.constraintOptsAlter`. - * @param ctx the parse tree - */ - exitConstraintOptsAlter?: (ctx: ConstraintOptsAlterContext) => void; + exitConstraintOpts?: (ctx: ConstraintOptsContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.columnNameColonType`. * @param ctx the parse tree @@ -2106,25 +1826,15 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitColumnNameColonType?: (ctx: ColumnNameColonTypeContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.columnType`. - * @param ctx the parse tree - */ - enterColumnType?: (ctx: ColumnTypeContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.columnType`. + * Enter a parse tree produced by `HiveSqlParser.typeList`. * @param ctx the parse tree */ - exitColumnType?: (ctx: ColumnTypeContext) => void; + enterTypeList?: (ctx: TypeListContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.columnTypeList`. + * Exit a parse tree produced by `HiveSqlParser.typeList`. * @param ctx the parse tree */ - enterColumnTypeList?: (ctx: ColumnTypeListContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.columnTypeList`. - * @param ctx the parse tree - */ - exitColumnTypeList?: (ctx: ColumnTypeListContext) => void; + exitTypeList?: (ctx: TypeListContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.type`. * @param ctx the parse tree @@ -2453,36 +2163,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitWhenMatchedThenClause?: (ctx: WhenMatchedThenClauseContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.compactionPool`. - * @param ctx the parse tree - */ - enterCompactionPool?: (ctx: CompactionPoolContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.compactionPool`. - * @param ctx the parse tree - */ - exitCompactionPool?: (ctx: CompactionPoolContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.compactionType`. - * @param ctx the parse tree - */ - enterCompactionType?: (ctx: CompactionTypeContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.compactionType`. - * @param ctx the parse tree - */ - exitCompactionType?: (ctx: CompactionTypeContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.compactionStatus`. - * @param ctx the parse tree - */ - enterCompactionStatus?: (ctx: CompactionStatusContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.compactionStatus`. - * @param ctx the parse tree - */ - exitCompactionStatus?: (ctx: CompactionStatusContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.alterStatement`. * @param ctx the parse tree @@ -3133,16 +2813,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQualifyClause?: (ctx: QualifyClauseContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.expressionOrDefault`. - * @param ctx the parse tree - */ - enterExpressionOrDefault?: (ctx: ExpressionOrDefaultContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.expressionOrDefault`. - * @param ctx the parse tree - */ - exitExpressionOrDefault?: (ctx: ExpressionOrDefaultContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.firstExpressionsWithAlias`. * @param ctx the parse tree @@ -3243,16 +2913,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunction_?: (ctx: Function_Context) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.null_treatment`. - * @param ctx the parse tree - */ - enterNull_treatment?: (ctx: Null_treatmentContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.null_treatment`. - * @param ctx the parse tree - */ - exitNull_treatment?: (ctx: Null_treatmentContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.functionNameCreate`. * @param ctx the parse tree @@ -3474,25 +3134,25 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitPrecedenceBitwiseOrExpression?: (ctx: PrecedenceBitwiseOrExpressionContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. + * Enter a parse tree produced by `HiveSqlParser.subQueryExpression`. * @param ctx the parse tree */ - enterPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; + enterSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. + * Exit a parse tree produced by `HiveSqlParser.subQueryExpression`. * @param ctx the parse tree */ - exitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; + exitSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.subQueryExpression`. + * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. * @param ctx the parse tree */ - enterSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; + enterPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.subQueryExpression`. + * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. * @param ctx the parse tree */ - exitSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; + exitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarExpression`. * @param ctx the parse tree @@ -3523,26 +3183,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPrecedenceSimilarExpressionAtom?: (ctx: PrecedenceSimilarExpressionAtomContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionIn`. - * @param ctx the parse tree - */ - enterPrecedenceSimilarExpressionIn?: (ctx: PrecedenceSimilarExpressionInContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionIn`. - * @param ctx the parse tree - */ - exitPrecedenceSimilarExpressionIn?: (ctx: PrecedenceSimilarExpressionInContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionPartNot`. - * @param ctx the parse tree - */ - enterPrecedenceSimilarExpressionPartNot?: (ctx: PrecedenceSimilarExpressionPartNotContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionPartNot`. - * @param ctx the parse tree - */ - exitPrecedenceSimilarExpressionPartNot?: (ctx: PrecedenceSimilarExpressionPartNotContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.precedenceDistinctOperator`. * @param ctx the parse tree @@ -3833,86 +3473,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDisable?: (ctx: DisableContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.year`. - * @param ctx the parse tree - */ - enterYear?: (ctx: YearContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.year`. - * @param ctx the parse tree - */ - exitYear?: (ctx: YearContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.month`. - * @param ctx the parse tree - */ - enterMonth?: (ctx: MonthContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.month`. - * @param ctx the parse tree - */ - exitMonth?: (ctx: MonthContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.week`. - * @param ctx the parse tree - */ - enterWeek?: (ctx: WeekContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.week`. - * @param ctx the parse tree - */ - exitWeek?: (ctx: WeekContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.day`. - * @param ctx the parse tree - */ - enterDay?: (ctx: DayContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.day`. - * @param ctx the parse tree - */ - exitDay?: (ctx: DayContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.hour`. - * @param ctx the parse tree - */ - enterHour?: (ctx: HourContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.hour`. - * @param ctx the parse tree - */ - exitHour?: (ctx: HourContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.minute`. - * @param ctx the parse tree - */ - enterMinute?: (ctx: MinuteContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.minute`. - * @param ctx the parse tree - */ - exitMinute?: (ctx: MinuteContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.second`. - * @param ctx the parse tree - */ - enterSecond?: (ctx: SecondContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.second`. - * @param ctx the parse tree - */ - exitSecond?: (ctx: SecondContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.decimal`. - * @param ctx the parse tree - */ - enterDecimal?: (ctx: DecimalContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.decimal`. - * @param ctx the parse tree - */ - exitDecimal?: (ctx: DecimalContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.emptyColumn`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index d6587f44..fc66aa4c 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -26,17 +26,14 @@ import { DdlStatementContext } from "./HiveSqlParser.js"; import { IfExistsContext } from "./HiveSqlParser.js"; import { IfNotExistsContext } from "./HiveSqlParser.js"; import { RestrictOrCascadeContext } from "./HiveSqlParser.js"; +import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { RewriteEnabledContext } from "./HiveSqlParser.js"; import { RewriteDisabledContext } from "./HiveSqlParser.js"; -import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { CreateDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DbConnectorNameContext } from "./HiveSqlParser.js"; import { SwitchDatabaseStatementContext } from "./HiveSqlParser.js"; import { DropDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DatabaseCommentContext } from "./HiveSqlParser.js"; import { TruncateTableStatementContext } from "./HiveSqlParser.js"; import { DropTableStatementContext } from "./HiveSqlParser.js"; -import { InputFileFormatContext } from "./HiveSqlParser.js"; import { TabTypeExprContext } from "./HiveSqlParser.js"; import { PartTypeExprContext } from "./HiveSqlParser.js"; import { TabPartColTypeExprContext } from "./HiveSqlParser.js"; @@ -48,11 +45,7 @@ import { ShowStatementContext } from "./HiveSqlParser.js"; import { ShowTablesFilterExprContext } from "./HiveSqlParser.js"; import { LockStatementContext } from "./HiveSqlParser.js"; import { LockDatabaseContext } from "./HiveSqlParser.js"; -import { LockModeContext } from "./HiveSqlParser.js"; -import { UnlockStatementContext } from "./HiveSqlParser.js"; -import { UnlockDatabaseContext } from "./HiveSqlParser.js"; import { CreateRoleStatementContext } from "./HiveSqlParser.js"; -import { DropRoleStatementContext } from "./HiveSqlParser.js"; import { GrantPrivilegesContext } from "./HiveSqlParser.js"; import { RevokePrivilegesContext } from "./HiveSqlParser.js"; import { GrantRoleContext } from "./HiveSqlParser.js"; @@ -73,13 +66,7 @@ import { PrivilegeTypeContext } from "./HiveSqlParser.js"; import { PrincipalSpecificationContext } from "./HiveSqlParser.js"; import { PrincipalNameContext } from "./HiveSqlParser.js"; import { PrincipalAlterNameContext } from "./HiveSqlParser.js"; -import { WithGrantOptionContext } from "./HiveSqlParser.js"; -import { GrantOptionForContext } from "./HiveSqlParser.js"; -import { AdminOptionForContext } from "./HiveSqlParser.js"; -import { WithAdminOptionContext } from "./HiveSqlParser.js"; import { MetastoreCheckContext } from "./HiveSqlParser.js"; -import { ResourceListContext } from "./HiveSqlParser.js"; -import { ResourceContext } from "./HiveSqlParser.js"; import { ResourceTypeContext } from "./HiveSqlParser.js"; import { CreateFunctionStatementContext } from "./HiveSqlParser.js"; import { DropFunctionStatementContext } from "./HiveSqlParser.js"; @@ -97,7 +84,6 @@ import { ViewDistSpecContext } from "./HiveSqlParser.js"; import { ViewSortSpecContext } from "./HiveSqlParser.js"; import { DropViewStatementContext } from "./HiveSqlParser.js"; import { CreateMaterializedViewStatementContext } from "./HiveSqlParser.js"; -import { DropMaterializedViewStatementContext } from "./HiveSqlParser.js"; import { CreateScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { DropScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { AlterScheduledQueryStatementContext } from "./HiveSqlParser.js"; @@ -115,21 +101,18 @@ import { PartitionTransformTypeContext } from "./HiveSqlParser.js"; import { TableBucketsContext } from "./HiveSqlParser.js"; import { TableSkewedContext } from "./HiveSqlParser.js"; import { RowFormatContext } from "./HiveSqlParser.js"; -import { RecordReaderContext } from "./HiveSqlParser.js"; -import { RecordWriterContext } from "./HiveSqlParser.js"; import { RowFormatSerdeContext } from "./HiveSqlParser.js"; import { RowFormatDelimitedContext } from "./HiveSqlParser.js"; -import { TableRowFormatContext } from "./HiveSqlParser.js"; import { TablePropertiesPrefixedContext } from "./HiveSqlParser.js"; import { TablePropertiesContext } from "./HiveSqlParser.js"; import { TablePropertiesListContext } from "./HiveSqlParser.js"; import { KeyValuePropertiesContext } from "./HiveSqlParser.js"; import { KeyValuePropertyListContext } from "./HiveSqlParser.js"; import { KeyValuePropertyContext } from "./HiveSqlParser.js"; -import { TableRowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; import { TableRowNullFormatContext } from "./HiveSqlParser.js"; import { TableFileFormatContext } from "./HiveSqlParser.js"; import { ColumnNameTypeListContext } from "./HiveSqlParser.js"; @@ -145,9 +128,7 @@ import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; import { ColumnParenthesesListContext } from "./HiveSqlParser.js"; import { EnableValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnableSpecificationContext } from "./HiveSqlParser.js"; -import { ValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnforcedSpecificationContext } from "./HiveSqlParser.js"; -import { RelySpecificationContext } from "./HiveSqlParser.js"; import { CreateConstraintContext } from "./HiveSqlParser.js"; import { AlterConstraintWithNameContext } from "./HiveSqlParser.js"; import { TableLevelConstraintContext } from "./HiveSqlParser.js"; @@ -172,17 +153,11 @@ import { ColumnNameTypeConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintContext } from "./HiveSqlParser.js"; import { ForeignKeyConstraintContext } from "./HiveSqlParser.js"; import { ColConstraintContext } from "./HiveSqlParser.js"; -import { AlterColumnConstraintContext } from "./HiveSqlParser.js"; -import { AlterForeignKeyConstraintContext } from "./HiveSqlParser.js"; -import { AlterColConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintTypeContext } from "./HiveSqlParser.js"; -import { DefaultValContext } from "./HiveSqlParser.js"; import { TableConstraintTypeContext } from "./HiveSqlParser.js"; -import { ConstraintOptsCreateContext } from "./HiveSqlParser.js"; -import { ConstraintOptsAlterContext } from "./HiveSqlParser.js"; +import { ConstraintOptsContext } from "./HiveSqlParser.js"; import { ColumnNameColonTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeListContext } from "./HiveSqlParser.js"; +import { TypeListContext } from "./HiveSqlParser.js"; import { TypeContext } from "./HiveSqlParser.js"; import { PrimitiveTypeContext } from "./HiveSqlParser.js"; import { ListTypeContext } from "./HiveSqlParser.js"; @@ -215,9 +190,6 @@ import { WhenClausesContext } from "./HiveSqlParser.js"; import { WhenNotMatchedClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedAndClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedThenClauseContext } from "./HiveSqlParser.js"; -import { CompactionPoolContext } from "./HiveSqlParser.js"; -import { CompactionTypeContext } from "./HiveSqlParser.js"; -import { CompactionStatusContext } from "./HiveSqlParser.js"; import { AlterStatementContext } from "./HiveSqlParser.js"; import { AlterTableStatementSuffixContext } from "./HiveSqlParser.js"; import { AlterTblPartitionStatementSuffixContext } from "./HiveSqlParser.js"; @@ -283,7 +255,6 @@ import { RollupOldSyntaxContext } from "./HiveSqlParser.js"; import { GroupingSetExpressionContext } from "./HiveSqlParser.js"; import { HavingClauseContext } from "./HiveSqlParser.js"; import { QualifyClauseContext } from "./HiveSqlParser.js"; -import { ExpressionOrDefaultContext } from "./HiveSqlParser.js"; import { FirstExpressionsWithAliasContext } from "./HiveSqlParser.js"; import { ExpressionsContext } from "./HiveSqlParser.js"; import { ExpressionsInParenthesisContext } from "./HiveSqlParser.js"; @@ -294,7 +265,6 @@ import { ClusterByClauseContext } from "./HiveSqlParser.js"; import { DistributeByClauseContext } from "./HiveSqlParser.js"; import { SortByClauseContext } from "./HiveSqlParser.js"; import { Function_Context } from "./HiveSqlParser.js"; -import { Null_treatmentContext } from "./HiveSqlParser.js"; import { FunctionNameCreateContext } from "./HiveSqlParser.js"; import { FunctionNameForDDLContext } from "./HiveSqlParser.js"; import { FunctionNameForInvokeContext } from "./HiveSqlParser.js"; @@ -317,13 +287,11 @@ import { PrecedencePlusExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceConcatenateExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceAmpersandExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceBitwiseOrExpressionContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { SubQueryExpressionContext } from "./HiveSqlParser.js"; +import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionPartContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionAtomContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionInContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionPartNotContext } from "./HiveSqlParser.js"; import { PrecedenceDistinctOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualExpressionContext } from "./HiveSqlParser.js"; @@ -353,14 +321,6 @@ import { RpUnassignContext } from "./HiveSqlParser.js"; import { ActivateContext } from "./HiveSqlParser.js"; import { EnableContext } from "./HiveSqlParser.js"; import { DisableContext } from "./HiveSqlParser.js"; -import { YearContext } from "./HiveSqlParser.js"; -import { MonthContext } from "./HiveSqlParser.js"; -import { WeekContext } from "./HiveSqlParser.js"; -import { DayContext } from "./HiveSqlParser.js"; -import { HourContext } from "./HiveSqlParser.js"; -import { MinuteContext } from "./HiveSqlParser.js"; -import { SecondContext } from "./HiveSqlParser.js"; -import { DecimalContext } from "./HiveSqlParser.js"; import { EmptyColumnContext } from "./HiveSqlParser.js"; import { PoolPathContext } from "./HiveSqlParser.js"; import { PoolPathAllowEmptyContext } from "./HiveSqlParser.js"; @@ -487,35 +447,29 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.rewriteEnabled`. + * Visit a parse tree produced by `HiveSqlParser.storedAsDirs`. * @param ctx the parse tree * @return the visitor result */ - visitRewriteEnabled?: (ctx: RewriteEnabledContext) => Result; + visitStoredAsDirs?: (ctx: StoredAsDirsContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.rewriteDisabled`. + * Visit a parse tree produced by `HiveSqlParser.rewriteEnabled`. * @param ctx the parse tree * @return the visitor result */ - visitRewriteDisabled?: (ctx: RewriteDisabledContext) => Result; + visitRewriteEnabled?: (ctx: RewriteEnabledContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.storedAsDirs`. + * Visit a parse tree produced by `HiveSqlParser.rewriteDisabled`. * @param ctx the parse tree * @return the visitor result */ - visitStoredAsDirs?: (ctx: StoredAsDirsContext) => Result; + visitRewriteDisabled?: (ctx: RewriteDisabledContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createDatabaseStatement`. * @param ctx the parse tree * @return the visitor result */ visitCreateDatabaseStatement?: (ctx: CreateDatabaseStatementContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.dbConnectorName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDbConnectorName?: (ctx: DbConnectorNameContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.switchDatabaseStatement`. * @param ctx the parse tree @@ -528,12 +482,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.databaseComment`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDatabaseComment?: (ctx: DatabaseCommentContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.truncateTableStatement`. * @param ctx the parse tree @@ -546,12 +494,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.inputFileFormat`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInputFileFormat?: (ctx: InputFileFormatContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tabTypeExpr`. * @param ctx the parse tree @@ -618,36 +560,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.lockMode`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLockMode?: (ctx: LockModeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.unlockStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnlockStatement?: (ctx: UnlockStatementContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.unlockDatabase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnlockDatabase?: (ctx: UnlockDatabaseContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createRoleStatement`. * @param ctx the parse tree * @return the visitor result */ visitCreateRoleStatement?: (ctx: CreateRoleStatementContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.dropRoleStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDropRoleStatement?: (ctx: DropRoleStatementContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.grantPrivileges`. * @param ctx the parse tree @@ -768,48 +686,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.withGrantOption`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWithGrantOption?: (ctx: WithGrantOptionContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.grantOptionFor`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGrantOptionFor?: (ctx: GrantOptionForContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.adminOptionFor`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAdminOptionFor?: (ctx: AdminOptionForContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.withAdminOption`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWithAdminOption?: (ctx: WithAdminOptionContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.metastoreCheck`. * @param ctx the parse tree * @return the visitor result */ visitMetastoreCheck?: (ctx: MetastoreCheckContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.resourceList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitResourceList?: (ctx: ResourceListContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.resource`. - * @param ctx the parse tree - * @return the visitor result - */ - visitResource?: (ctx: ResourceContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.resourceType`. * @param ctx the parse tree @@ -912,12 +794,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.dropMaterializedViewStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDropMaterializedViewStatement?: (ctx: DropMaterializedViewStatementContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createScheduledQueryStatement`. * @param ctx the parse tree @@ -1020,18 +896,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.recordReader`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRecordReader?: (ctx: RecordReaderContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.recordWriter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRecordWriter?: (ctx: RecordWriterContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.rowFormatSerde`. * @param ctx the parse tree @@ -1044,12 +908,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormat`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableRowFormat?: (ctx: TableRowFormatContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tablePropertiesPrefixed`. * @param ctx the parse tree @@ -1087,29 +945,29 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatFieldIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatFieldIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatFieldIdentifier?: (ctx: TableRowFormatFieldIdentifierContext) => Result; + visitRowFormatFieldIdentifier?: (ctx: RowFormatFieldIdentifierContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatCollItemsIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatCollItemsIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatCollItemsIdentifier?: (ctx: TableRowFormatCollItemsIdentifierContext) => Result; + visitRowFormatCollItemsIdentifier?: (ctx: RowFormatCollItemsIdentifierContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatMapKeysIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatMapKeysIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatMapKeysIdentifier?: (ctx: TableRowFormatMapKeysIdentifierContext) => Result; + visitRowFormatMapKeysIdentifier?: (ctx: RowFormatMapKeysIdentifierContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatLinesIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatLinesIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatLinesIdentifier?: (ctx: TableRowFormatLinesIdentifierContext) => Result; + visitRowFormatLinesIdentifier?: (ctx: RowFormatLinesIdentifierContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tableRowNullFormat`. * @param ctx the parse tree @@ -1200,24 +1058,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.validateSpecification`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValidateSpecification?: (ctx: ValidateSpecificationContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.enforcedSpecification`. * @param ctx the parse tree * @return the visitor result */ visitEnforcedSpecification?: (ctx: EnforcedSpecificationContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.relySpecification`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelySpecification?: (ctx: RelySpecificationContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createConstraint`. * @param ctx the parse tree @@ -1362,36 +1208,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.alterColumnConstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterColumnConstraint?: (ctx: AlterColumnConstraintContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.alterForeignKeyConstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterForeignKeyConstraint?: (ctx: AlterForeignKeyConstraintContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.alterColConstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterColConstraint?: (ctx: AlterColConstraintContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.columnConstraintType`. * @param ctx the parse tree * @return the visitor result */ visitColumnConstraintType?: (ctx: ColumnConstraintTypeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.defaultVal`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefaultVal?: (ctx: DefaultValContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tableConstraintType`. * @param ctx the parse tree @@ -1399,17 +1221,11 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.constraintOptsCreate`. + * Visit a parse tree produced by `HiveSqlParser.constraintOpts`. * @param ctx the parse tree * @return the visitor result */ - visitConstraintOptsCreate?: (ctx: ConstraintOptsCreateContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.constraintOptsAlter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConstraintOptsAlter?: (ctx: ConstraintOptsAlterContext) => Result; + visitConstraintOpts?: (ctx: ConstraintOptsContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.columnNameColonType`. * @param ctx the parse tree @@ -1417,17 +1233,11 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.columnType`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColumnType?: (ctx: ColumnTypeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.columnTypeList`. + * Visit a parse tree produced by `HiveSqlParser.typeList`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeList?: (ctx: ColumnTypeListContext) => Result; + visitTypeList?: (ctx: TypeListContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.type`. * @param ctx the parse tree @@ -1624,24 +1434,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.compactionPool`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompactionPool?: (ctx: CompactionPoolContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.compactionType`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompactionType?: (ctx: CompactionTypeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.compactionStatus`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompactionStatus?: (ctx: CompactionStatusContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.alterStatement`. * @param ctx the parse tree @@ -2032,12 +1824,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.expressionOrDefault`. - * @param ctx the parse tree - * @return the visitor result - */ - visitExpressionOrDefault?: (ctx: ExpressionOrDefaultContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.firstExpressionsWithAlias`. * @param ctx the parse tree @@ -2098,12 +1884,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.null_treatment`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNull_treatment?: (ctx: Null_treatmentContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.functionNameCreate`. * @param ctx the parse tree @@ -2237,17 +2017,17 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. + * Visit a parse tree produced by `HiveSqlParser.subQueryExpression`. * @param ctx the parse tree * @return the visitor result */ - visitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => Result; + visitSubQueryExpression?: (ctx: SubQueryExpressionContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.subQueryExpression`. + * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. * @param ctx the parse tree * @return the visitor result */ - visitSubQueryExpression?: (ctx: SubQueryExpressionContext) => Result; + visitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarExpression`. * @param ctx the parse tree @@ -2266,18 +2046,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionIn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPrecedenceSimilarExpressionIn?: (ctx: PrecedenceSimilarExpressionInContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionPartNot`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPrecedenceSimilarExpressionPartNot?: (ctx: PrecedenceSimilarExpressionPartNotContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.precedenceDistinctOperator`. * @param ctx the parse tree @@ -2452,54 +2220,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.year`. - * @param ctx the parse tree - * @return the visitor result - */ - visitYear?: (ctx: YearContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.month`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMonth?: (ctx: MonthContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.week`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWeek?: (ctx: WeekContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.day`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDay?: (ctx: DayContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.hour`. - * @param ctx the parse tree - * @return the visitor result - */ - visitHour?: (ctx: HourContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.minute`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMinute?: (ctx: MinuteContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.second`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSecond?: (ctx: SecondContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.decimal`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDecimal?: (ctx: DecimalContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.emptyColumn`. * @param ctx the parse tree diff --git a/test/parser/hive/syntax/fixtures/authorization.sql b/test/parser/hive/syntax/fixtures/authorization.sql index d4add123..a020a73b 100644 --- a/test/parser/hive/syntax/fixtures/authorization.sql +++ b/test/parser/hive/syntax/fixtures/authorization.sql @@ -32,3 +32,23 @@ REVOKE GRANT OPTION FOR ALL, ALTER, UPDATE, CREATE, DROP, INDEX, LOCK, SELECT, S ON table_or_view_name FROM USER `user`, ROLE `role`; +-- Lock and Unlock Statements +LOCK TABLE tbl1 SHARED; + +LOCK TABLE tbl2 EXCLUSIVE; + +LOCK TABLE tbl3 PARTITION (ds='2010-03-03') SHARED; + +UNLOCK TABLE tbl1; + +UNLOCK TABLE tbl2 PARTITION (ds='2010-03-03'); + +-- Lock and Unlock Database +LOCK DATABASE mydb SHARED; + +LOCK DATABASE mydb EXCLUSIVE; + +UNLOCK DATABASE mydb; + +UNLOCK SCHEMA myschema; + diff --git a/test/parser/hive/syntax/fixtures/createRole.sql b/test/parser/hive/syntax/fixtures/createRole.sql index 635081fc..e41016ec 100644 --- a/test/parser/hive/syntax/fixtures/createRole.sql +++ b/test/parser/hive/syntax/fixtures/createRole.sql @@ -1 +1,3 @@ -CREATE ROLE std_user; \ No newline at end of file +CREATE ROLE std_user; + +DROP ROLE admin_role; \ No newline at end of file diff --git a/test/parser/hive/syntax/fixtures/drop.sql b/test/parser/hive/syntax/fixtures/drop.sql index b84630ce..b8a03535 100644 --- a/test/parser/hive/syntax/fixtures/drop.sql +++ b/test/parser/hive/syntax/fixtures/drop.sql @@ -30,6 +30,8 @@ DROP TEMPORARY MACRO IF EXISTS macro2; -- Drop Role DROP ROLE `admin`; +DROP ROLE role_name; + -- Drop Index DROP INDEX table01_index ON table01; diff --git a/test/parser/hive/syntax/fixtures/select.sql b/test/parser/hive/syntax/fixtures/select.sql index 7f7d0ac8..dffcaa5c 100644 --- a/test/parser/hive/syntax/fixtures/select.sql +++ b/test/parser/hive/syntax/fixtures/select.sql @@ -247,4 +247,28 @@ FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; -SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file +SELECT SUM(c.amount) AS total_amount FROM cust c; + +-- Interval Expressions with plural forms +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 3 YEARS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 2 MONTHS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 5 DAYS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 24 HOURS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 30 MINUTES; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 60 SECONDS; + +-- Interval with singular forms +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 YEAR; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 MONTH; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 DAY; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 HOUR; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 MINUTE; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 SECOND; + +-- Year to Month interval +SELECT INTERVAL '1-2' YEAR TO MONTH; +SELECT INTERVAL '3-6' YEARS TO MONTHS; + +-- Day to Second interval +SELECT INTERVAL '1 2:3:4' DAY TO SECOND; +SELECT INTERVAL '3 12:30:0' DAYS TO SECONDS; \ No newline at end of file diff --git a/test/parser/hive/validateInvalidSql.test.ts b/test/parser/hive/validateInvalidSql.test.ts index 534656aa..e803983e 100644 --- a/test/parser/hive/validateInvalidSql.test.ts +++ b/test/parser/hive/validateInvalidSql.test.ts @@ -13,4 +13,16 @@ describe('Hive SQL validate invalid sql', () => { test('validate unComplete sql', () => { expect(hive.validate(unCompleteSQL).length).not.toBe(0); }); + + test.each([ + 'LOCK TABLE tbl1;', + 'UNLOCK TABLE tbl1 SHARED;', + 'LOCK DATABASE db1;', + 'UNLOCK DATABASE db1 EXCLUSIVE;', + 'CREATE EXTERNAL MANAGED TABLE t (id INT);', + 'CREATE TEMPORARY MANAGED TABLE t (id INT);', + 'CREATE TRANSACTIONAL MANAGED TABLE t (id INT);', + ])('reject grammar optimization overmatch: %s', (sql) => { + expect(hive.validate(sql).length).not.toBe(0); + }); });