diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index b57f65b6..04407711 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -48,28 +48,30 @@ statement | KW_USE namespace? namespaceName # useNamespace | KW_SET KW_CATALOG (identifier | stringLit) # setCatalog | KW_CREATE namespace (ifNotExists)? namespaceNameCreate ( - commentSpec - | locationSpec + (KW_COMMENT comment=stringLit) + | (KW_LOCATION stringLit) | (KW_WITH (KW_DBPROPERTIES | KW_PROPERTIES) propertyList) - )* # createNamespace - | KW_ALTER namespace namespaceName KW_SET (KW_DBPROPERTIES | KW_PROPERTIES) propertyList # setNamespaceProperties - | KW_ALTER namespace namespaceName KW_SET locationSpec # setNamespaceLocation - | KW_DROP namespace (ifExists)? namespaceName (KW_RESTRICT | KW_CASCADE)? # dropNamespace - | KW_SHOW namespaces ((KW_FROM | KW_IN) multipartIdentifier)? (KW_LIKE? pattern=stringLit)? # showNamespaces - | createTableHeader (LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN)? tableProvider? createTableClauses ( - KW_AS? query - )? # createTable + )* # createNamespace + | KW_ALTER namespace namespaceName KW_SET (KW_DBPROPERTIES | KW_PROPERTIES) propertyList # setNamespaceProperties + | KW_ALTER namespace namespaceName KW_SET KW_LOCATION stringLit # setNamespaceLocation + | KW_DROP namespace (ifExists)? namespaceName (KW_RESTRICT | KW_CASCADE)? # dropNamespace + | KW_SHOW (KW_NAMESPACES | KW_DATABASES | KW_SCHEMAS) ((KW_FROM | KW_IN) multipartIdentifier)? ( + KW_LIKE? pattern=stringLit + )? # showNamespaces + | KW_CREATE KW_TEMPORARY? KW_EXTERNAL? KW_TABLE (ifNotExists)? tableNameCreate ( + LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN + )? tableProvider? createTableClauses (KW_AS? query)? # createTable | KW_CREATE KW_TABLE (ifNotExists)? target=tableNameCreate KW_LIKE source=tableName ( tableProvider | rowFormat | createFileFormat - | locationSpec + | (KW_LOCATION stringLit) | (KW_TBLPROPERTIES tableProps=propertyList) | tableLifecycle )* # createTableLike - | replaceTableHeader (LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN)? tableProvider? createTableClauses ( - KW_AS? query - )? # replaceTable + | (KW_CREATE KW_OR)? KW_REPLACE KW_TABLE tableNameCreate ( + LEFT_PAREN createOrReplaceTableColTypeList RIGHT_PAREN + )? tableProvider? createTableClauses (KW_AS? query)? # replaceTable | KW_ANALYZE KW_TABLE tableName partitionSpec? KW_COMPUTE KW_STATISTICS ( KW_NOSCAN | KW_FOR KW_COLUMNS columnNameSeq @@ -97,7 +99,7 @@ statement | KW_ALTER (KW_TABLE tableName | KW_VIEW viewName) KW_DROP (ifExists)? partitionSpec ( COMMA partitionSpec )* KW_PURGE? # dropTablePartitions - | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET locationSpec # setTableLocation + | KW_ALTER KW_TABLE tableName (partitionSpec)? KW_SET KW_LOCATION stringLit # setTableLocation | KW_ALTER KW_TABLE tableName KW_RECOVER KW_PARTITIONS # recoverPartitions | KW_ALTER KW_MATERIALIZED KW_VIEW viewName (KW_ENABLE | KW_DISABLE) KW_REWRITE # alterMaterializedViewRewrite | KW_ALTER KW_MATERIALIZED KW_VIEW viewName KW_SET KW_TBLPROPERTIES propertyList # alterMaterializedViewProperties @@ -105,7 +107,7 @@ statement | KW_DROP KW_VIEW (ifExists)? viewName # dropView | KW_DROP KW_MATERIALIZED KW_VIEW (ifExists)? viewName # dropMaterializedView | KW_CREATE (KW_OR KW_REPLACE)? (KW_GLOBAL? KW_TEMPORARY)? KW_VIEW (ifNotExists)? viewNameCreate identifierCommentList? ( - commentSpec + (KW_COMMENT comment=stringLit) | (KW_PARTITIONED KW_ON identifierList) | (KW_TBLPROPERTIES propertyList) )* KW_AS query # createView @@ -114,7 +116,7 @@ statement )? tableProvider (KW_OPTIONS propertyList)? # createTempViewUsing | KW_ALTER KW_VIEW viewName KW_AS? query # alterViewQuery | KW_CREATE (KW_OR KW_REPLACE)? KW_TEMPORARY? KW_FUNCTION (ifNotExists)? functionNameCreate KW_AS className=stringLit ( - KW_USING resource (COMMA resource)* + KW_USING (identifier stringLit) (COMMA (identifier stringLit))* )? # createFunction | // Self developed materialized view syntax by dtstack, spark not support now. @@ -125,8 +127,8 @@ statement | bucketSpec | rowFormat | createFileFormat - | locationSpec - | commentSpec + | (KW_LOCATION stringLit) + | (KW_COMMENT comment=stringLit) | (KW_TBLPROPERTIES tableProps=propertyList) )* KW_AS query # createMaterializedView | KW_DROP KW_TEMPORARY? KW_FUNCTION (ifExists)? functionName # dropFunction @@ -139,7 +141,7 @@ statement | KW_SHOW KW_COLUMNS (KW_FROM | KW_IN) table=tableName ((KW_FROM | KW_IN) namespaceName)? # showColumns | KW_SHOW KW_VIEWS ((KW_FROM | KW_IN) namespaceName)? (KW_LIKE? pattern=stringLit)? # showViews | KW_SHOW KW_PARTITIONS tableName partitionSpec? # showPartitions - | KW_SHOW functionKind? KW_FUNCTIONS ((KW_FROM | KW_IN) ns=namespaceName)? ( + | KW_SHOW (KW_USER | KW_SYSTEM | KW_ALL)? KW_FUNCTIONS ((KW_FROM | KW_IN) ns=namespaceName)? ( KW_LIKE? (legacy=multipartIdentifier | pattern=stringLit) )? # showFunctions | KW_SHOW KW_CREATE KW_TABLE tableName (KW_AS KW_SERDE)? # showCreateTable @@ -153,107 +155,78 @@ statement | (KW_DESC | KW_DESCRIBE) KW_DATABASE KW_EXTENDED? namespaceName # describeNamespace | (KW_DESC | KW_DESCRIBE) KW_TABLE? option=(KW_EXTENDED | KW_FORMATTED)? tableName partitionSpec? describeColName? # describeRelation | (KW_DESC | KW_DESCRIBE) KW_QUERY? query # describeQuery - | KW_COMMENT KW_ON namespace namespaceName KW_IS commentStr # commentNamespace - | KW_COMMENT KW_ON KW_TABLE tableName KW_IS commentStr # commentTable - | KW_REFRESH KW_TABLE tableName # refreshTable - | KW_REFRESH KW_FUNCTION functionName # refreshFunction - | KW_REFRESH (stringLit | .*?) # refreshResource - | KW_REFRESH KW_MATERIALIZED KW_VIEW viewName # refreshMaterializedView - | KW_CACHE KW_LAZY? KW_TABLE tableName (KW_OPTIONS options=propertyList)? (KW_AS? query)? # cacheTable - | KW_UNCACHE KW_TABLE (ifExists)? tableName # unCacheTable - | KW_CLEAR KW_CACHE # clearCache - | KW_LOAD KW_DATA KW_LOCAL? KW_INPATH path=stringLit KW_OVERWRITE? KW_INTO KW_TABLE tableName partitionSpec? # loadData - | KW_TRUNCATE KW_TABLE tableName partitionSpec? # truncateTable - | (KW_MSCK)? KW_REPAIR KW_TABLE tableName (option=(KW_ADD | KW_DROP | KW_SYNC) KW_PARTITIONS)? # repairTable - | op=(KW_ADD | KW_LIST) identifier .*? # manageResource - | KW_SET KW_ROLE .*? # failNativeCommand - | KW_SET KW_TIME KW_ZONE interval # setTimeZoneInterval - | KW_SET KW_TIME KW_ZONE timezone # setTimeZone - | KW_SET KW_TIME KW_ZONE .*? # setTimeZoneAny - | KW_SET (KW_VARIABLE | KW_VAR) assignmentList # setVariableAssignment - | KW_SET (KW_VARIABLE | KW_VAR) LEFT_PAREN multipartIdentifierList RIGHT_PAREN EQ LEFT_PAREN query RIGHT_PAREN # setVariableMultiAssignment - | KW_SET configKey EQ configValue # setConfig - | KW_SET configKey (EQ .*?)? # setConfigAndValue - | KW_SET .*? EQ configValue # setConfigAnyKey - | KW_SET .*? # setAny - | KW_RESET configKey # resetConfig - | KW_RESET .*? # resetAny + | KW_COMMENT KW_ON ((namespace namespaceName) | (KW_TABLE tableName)) KW_IS ( + stringLit + | KW_NULL + ) # commentTable + | KW_REFRESH KW_TABLE tableName # refreshTable + | KW_REFRESH KW_FUNCTION functionName # refreshFunction + | KW_REFRESH (stringLit | .*?) # refreshResource + | KW_REFRESH KW_MATERIALIZED KW_VIEW viewName # refreshMaterializedView + | KW_CACHE KW_LAZY? KW_TABLE tableName (KW_OPTIONS options=propertyList)? (KW_AS? query)? # cacheTable + | KW_UNCACHE KW_TABLE (ifExists)? tableName # unCacheTable + | KW_CLEAR KW_CACHE # clearCache + | KW_LOAD KW_DATA KW_LOCAL? KW_INPATH path=stringLit KW_OVERWRITE? KW_INTO KW_TABLE tableName partitionSpec? # loadData + | KW_TRUNCATE KW_TABLE tableName partitionSpec? # truncateTable + | (KW_MSCK)? KW_REPAIR KW_TABLE tableName (option=(KW_ADD | KW_DROP | KW_SYNC) KW_PARTITIONS)? # repairTable + | op=(KW_ADD | KW_LIST) identifier .*? # manageResource + | KW_SET KW_ROLE .*? # failNativeCommand + | KW_SET KW_TIME KW_ZONE interval # setTimeZoneInterval + | KW_SET KW_TIME KW_ZONE (stringLit | KW_LOCAL) # setTimeZone + | KW_SET KW_TIME KW_ZONE .*? # setTimeZoneAny + | KW_SET (KW_VARIABLE | KW_VAR) assignmentList # setVariableAssignment + | KW_SET (KW_VARIABLE | KW_VAR) LEFT_PAREN multipartIdentifierList RIGHT_PAREN EQ LEFT_PAREN query RIGHT_PAREN # setVariableMultiAssignment + | KW_SET quotedIdentifier EQ BACKQUOTED_IDENTIFIER # setConfig + | KW_SET quotedIdentifier (EQ .*?)? # setConfigAndValue + | KW_SET .*? EQ BACKQUOTED_IDENTIFIER # setConfigAnyKey + | KW_SET .*? # setAny + | KW_RESET quotedIdentifier # resetConfig + | KW_RESET .*? # resetAny | KW_CREATE KW_INDEX (ifNotExists)? identifier KW_ON KW_TABLE? tableName ( KW_USING indexType=identifier )? LEFT_PAREN multipartIdentifierPropertyList RIGHT_PAREN (KW_OPTIONS options=propertyList)? # createIndex | KW_DROP KW_INDEX (ifExists)? identifier KW_ON KW_TABLE? tableName # dropIndex - | KW_OPTIMIZE tableName whereClause? zorderClause # optimizeTable + | KW_OPTIMIZE tableName whereClause? KW_ZORDER KW_BY columnNameSeq # optimizeTable | unsupportedHiveNativeCommands .*? # unsupportHiveCommands ; -timezone - : stringLit - | KW_LOCAL - ; - -configKey - : quotedIdentifier - ; - -configValue - : backQuotedIdentifier - ; - unsupportedHiveNativeCommands - : kw1=KW_CREATE kw2=KW_ROLE - | kw1=KW_DROP kw2=KW_ROLE - | kw1=KW_GRANT kw2=KW_ROLE? - | kw1=KW_REVOKE kw2=KW_ROLE? - | kw1=KW_SHOW kw2=KW_GRANT + : kw1=(KW_CREATE | KW_DROP) kw2=KW_ROLE + | kw1=(KW_GRANT | KW_REVOKE) kw2=KW_ROLE? + | kw1=KW_SHOW kw2=( + KW_GRANT + | KW_PRINCIPALS + | KW_COMPACTIONS + | KW_TRANSACTIONS + | KW_INDEXES + | KW_LOCKS + ) | kw1=KW_SHOW kw2=KW_ROLE kw3=KW_GRANT? - | kw1=KW_SHOW kw2=KW_PRINCIPALS - | kw1=KW_SHOW kw2=KW_ROLES - | kw1=KW_SHOW kw2=KW_CURRENT kw3=KW_ROLES - | kw1=KW_EXPORT kw2=KW_TABLE - | kw1=KW_IMPORT kw2=KW_TABLE - | kw1=KW_SHOW kw2=KW_COMPACTIONS + | kw1=KW_SHOW KW_CURRENT? KW_ROLES | kw1=KW_SHOW kw2=KW_CREATE kw3=KW_TABLE - | kw1=KW_SHOW kw2=KW_TRANSACTIONS - | kw1=KW_SHOW kw2=KW_INDEXES - | kw1=KW_SHOW kw2=KW_LOCKS - | kw1=KW_CREATE kw2=KW_INDEX - | kw1=KW_DROP kw2=KW_INDEX - | kw1=KW_ALTER kw2=KW_INDEX - | kw1=KW_LOCK kw2=KW_TABLE - | kw1=KW_LOCK kw2=KW_DATABASE - | kw1=KW_UNLOCK kw2=KW_TABLE - | kw1=KW_UNLOCK kw2=KW_DATABASE - | kw1=KW_CREATE kw2=KW_TEMPORARY kw3=KW_MACRO - | kw1=KW_DROP kw2=KW_TEMPORARY kw3=KW_MACRO - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_CLUSTERED - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_CLUSTERED kw4=KW_BY - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_SORTED + | kw1=(KW_CREATE | KW_DROP | KW_ALTER) kw2=KW_INDEX + | kw1=(KW_EXPORT | KW_IMPORT | KW_LOCK | KW_UNLOCK) kw2=KW_TABLE + | kw1=(KW_LOCK | KW_UNLOCK) kw2=KW_DATABASE + | kw1=(KW_CREATE | KW_DROP) kw2=KW_TEMPORARY kw3=KW_MACRO + | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=(KW_CLUSTERED | KW_SORTED | KW_SKEWED) + | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=(KW_CLUSTERED | KW_SKEWED) kw4=KW_BY | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_SKEWED kw4=KW_BY - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_SKEWED | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_NOT kw4=KW_STORED kw5=KW_AS kw6=KW_DIRECTORIES | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_SET kw4=KW_SKEWED kw5=KW_LOCATION - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_EXCHANGE kw4=KW_PARTITION - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_ARCHIVE kw4=KW_PARTITION - | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_UNARCHIVE kw4=KW_PARTITION + | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=(KW_EXCHANGE | KW_ARCHIVE | KW_UNARCHIVE) kw4=KW_PARTITION | kw1=KW_ALTER kw2=KW_TABLE tableName kw3=KW_TOUCH - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_COMPACT - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_CONCATENATE - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_SET kw4=KW_FILEFORMAT - | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? kw3=KW_REPLACE kw4=KW_COLUMNS + | kw1=KW_ALTER kw2=KW_TABLE tableName partitionSpec? ( + KW_COMPACT + | KW_CONCATENATE + | (KW_SET KW_FILEFORMAT) + | (KW_REPLACE KW_COLUMNS) + ) | kw1=KW_START kw2=KW_TRANSACTION | kw1=KW_COMMIT | kw1=KW_ROLLBACK | kw1=KW_DFS ; -createTableHeader - : KW_CREATE KW_TEMPORARY? KW_EXTERNAL? KW_TABLE (ifNotExists)? tableNameCreate - ; - -replaceTableHeader - : (KW_CREATE KW_OR)? KW_REPLACE KW_TABLE tableNameCreate - ; - bucketSpec : KW_CLUSTERED KW_BY identifierList (KW_SORTED KW_BY orderedIdentifierList)? KW_INTO INTEGER_VALUE KW_BUCKETS ; @@ -264,14 +237,6 @@ skewSpec )? ; -locationSpec - : KW_LOCATION stringLit - ; - -commentSpec - : KW_COMMENT comment=stringLit - ; - query : ctes? queryTerm queryOrganization # queryStatement ; @@ -293,7 +258,7 @@ insertInto ; partitionSpecLocation - : partitionSpec locationSpec? + : partitionSpec (KW_LOCATION stringLit)? ; partitionSpec @@ -311,12 +276,6 @@ namespace | KW_SCHEMA ; -namespaces - : KW_NAMESPACES - | KW_DATABASES - | KW_SCHEMAS - ; - describeFuncName : identifierReference | stringLit @@ -349,8 +308,8 @@ createTableClauses | bucketSpec | rowFormat | createFileFormat - | locationSpec - | commentSpec + | KW_LOCATION stringLit + | KW_COMMENT comment=stringLit | (KW_TBLPROPERTIES tableProps=propertyList) | tableLifecycle )* @@ -411,13 +370,9 @@ storageHandler : stringLit (KW_WITH KW_SERDEPROPERTIES propertyList)? ; -resource - : identifier stringLit - ; - dmlStatementNoWith : insertInto query # insertFromQuery - | fromClause multiInsertQueryBody+ # multipleInsert + | fromClause (insertInto fromStatementBody)+ # multipleInsert | KW_DELETE KW_FROM tableName tableAlias whereClause? # deleteFromTable | KW_UPDATE tableName tableAlias setClause whereClause? # updateTable | KW_MERGE KW_INTO target=tableName targetAlias=tableAlias KW_USING ( @@ -476,10 +431,6 @@ queryOrganization )? windowClause? (KW_LIMIT (KW_ALL | limit=expression))? (KW_OFFSET offset=expression)? ; -multiInsertQueryBody - : insertInto fromStatementBody - ; - queryTerm : queryPrimary | left=queryTerm operator=(KW_INTERSECT | KW_UNION | KW_EXCEPT | KW_MINUS) setQuantifier? right=queryTerm @@ -489,9 +440,9 @@ queryTerm queryPrimary : querySpecification - | fromStatement + | fromClause fromStatementBody+ | KW_TABLE tableName - | inlineTable + | KW_VALUES expression (COMMA expression)* tableAlias | LEFT_PAREN query RIGHT_PAREN ; @@ -501,10 +452,6 @@ sortItem )? ; -fromStatement - : fromClause fromStatementBody+ - ; - fromStatementBody : transformClause whereClause? queryOrganization | selectClause lateralView* whereClause? aggregationClause? havingClause? windowClause? queryOrganization @@ -538,7 +485,10 @@ setClause ; matchedClause - : KW_WHEN KW_MATCHED (KW_AND matchedCond=booleanExpression)? KW_THEN matchedAction + : KW_WHEN KW_MATCHED (KW_AND matchedCond=booleanExpression)? KW_THEN ( + KW_DELETE + | KW_UPDATE KW_SET (ASTERISK | assignmentList) + ) ; notMatchedClause @@ -546,13 +496,10 @@ notMatchedClause ; notMatchedBySourceClause - : KW_WHEN KW_NOT KW_MATCHED KW_BY KW_SOURCE (KW_AND notMatchedBySourceCond=booleanExpression)? KW_THEN notMatchedBySourceAction - ; - -matchedAction - : KW_DELETE - | KW_UPDATE KW_SET ASTERISK - | KW_UPDATE KW_SET assignmentList + : KW_WHEN KW_NOT KW_MATCHED KW_BY KW_SOURCE (KW_AND notMatchedBySourceCond=booleanExpression)? KW_THEN ( + KW_DELETE + | KW_UPDATE KW_SET assignmentList + ) ; notMatchedAction @@ -562,11 +509,6 @@ notMatchedAction )* RIGHT_PAREN ; -notMatchedBySourceAction - : KW_DELETE - | KW_UPDATE KW_SET assignmentList - ; - assignmentList : assignment (COMMA assignment)* ; @@ -598,14 +540,8 @@ fromClause : KW_FROM relation (COMMA relation)* lateralView* pivotClause? unpivotClause? ; -functionKind - : KW_USER - | KW_SYSTEM - | KW_ALL - ; - temporalClause - : KW_FOR? (KW_SYSTEM_VERSION | KW_VERSION) KW_AS KW_OF version + : KW_FOR? (KW_SYSTEM_VERSION | KW_VERSION) KW_AS KW_OF (INTEGER_VALUE | stringLit) | KW_FOR? (KW_SYSTEM_TIME | KW_TIMESTAMP) KW_AS KW_OF timestamp=valueExpression ; @@ -628,12 +564,9 @@ groupByClause groupingAnalytics : (KW_ROLLUP | KW_CUBE) LEFT_PAREN groupingSet (COMMA groupingSet)* RIGHT_PAREN - | KW_GROUPING KW_SETS LEFT_PAREN groupingElement (COMMA groupingElement)* RIGHT_PAREN - ; - -groupingElement - : groupingAnalytics - | groupingSet + | KW_GROUPING KW_SETS LEFT_PAREN (groupingAnalytics | groupingSet) ( + COMMA (groupingAnalytics | groupingSet) + )* RIGHT_PAREN ; groupingSet @@ -658,55 +591,31 @@ pivotValue ; unpivotClause - : KW_UNPIVOT nullOperator=unpivotNullClause? LEFT_PAREN operator=unpivotOperator RIGHT_PAREN ( - KW_AS? identifier - )? - ; - -unpivotNullClause - : (KW_INCLUDE | KW_EXCLUDE) KW_NULLS - ; - -unpivotOperator - : (unpivotSingleValueColumnClause | unpivotMultiValueColumnClause) + : KW_UNPIVOT ((KW_INCLUDE | KW_EXCLUDE) KW_NULLS)? LEFT_PAREN ( + unpivotSingleValueColumnClause + | unpivotMultiValueColumnClause + ) RIGHT_PAREN (KW_AS? identifier)? ; unpivotSingleValueColumnClause - : unpivotValueColumn KW_FOR unpivotNameColumn KW_IN LEFT_PAREN unpivotColumns+=unpivotColumnAndAlias ( + : identifier KW_FOR identifier KW_IN LEFT_PAREN unpivotColumns+=unpivotColumnAndAlias ( COMMA unpivotColumns+=unpivotColumnAndAlias )* RIGHT_PAREN ; unpivotMultiValueColumnClause - : LEFT_PAREN unpivotValueColumns+=unpivotValueColumn ( - COMMA unpivotValueColumns+=unpivotValueColumn - )* RIGHT_PAREN KW_FOR unpivotNameColumn KW_IN LEFT_PAREN unpivotColumnSets+=unpivotColumnSet ( - COMMA unpivotColumnSets+=unpivotColumnSet - )* RIGHT_PAREN + : LEFT_PAREN unpivotValueColumns+=identifier (COMMA unpivotValueColumns+=identifier)* RIGHT_PAREN KW_FOR identifier KW_IN LEFT_PAREN + unpivotColumnSets+=unpivotColumnSet (COMMA unpivotColumnSets+=unpivotColumnSet)* RIGHT_PAREN ; unpivotColumnSet - : LEFT_PAREN unpivotColumns+=unpivotColumn (COMMA unpivotColumns+=unpivotColumn)* RIGHT_PAREN unpivotAlias? - ; - -unpivotValueColumn - : identifier - ; - -unpivotNameColumn - : identifier + : LEFT_PAREN unpivotColumns+=multipartIdentifier (COMMA unpivotColumns+=multipartIdentifier)* RIGHT_PAREN ( + KW_AS? identifier + )? ; unpivotColumnAndAlias - : unpivotColumn unpivotAlias? - ; - -unpivotColumn - : multipartIdentifier - ; - -unpivotAlias - : KW_AS? identifier + : multipartIdentifier (KW_AS? identifier)? ; ifNotExists @@ -730,13 +639,7 @@ setQuantifier relation : tableName - | KW_LATERAL? relationPrimary relationExtension* - ; - -relationExtension - : joinRelation - | pivotClause - | unpivotClause + | KW_LATERAL? relationPrimary (joinRelation | pivotClause | unpivotClause)* ; joinRelation @@ -748,10 +651,8 @@ joinType : KW_INNER? | KW_CROSS | KW_LEFT KW_OUTER? - | KW_LEFT? KW_SEMI - | KW_RIGHT KW_OUTER? - | KW_FULL KW_OUTER? - | KW_LEFT? KW_ANTI + | KW_LEFT? (KW_SEMI | KW_ANTI) + | (KW_RIGHT | KW_FULL) KW_OUTER? ; joinCriteria @@ -795,19 +696,15 @@ identifierCommentList ; identifierComment - : columnNameCreate commentSpec? + : columnNameCreate (KW_COMMENT comment=stringLit)? ; relationPrimary : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias | LEFT_PAREN query RIGHT_PAREN sample? tableAlias | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias - | inlineTable - | functionTable - ; - -inlineTable - : KW_VALUES expression (COMMA expression)* tableAlias + | KW_VALUES expression (COMMA expression)* tableAlias + | functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN tableAlias ; functionTableSubqueryArgument @@ -846,10 +743,6 @@ functionTableArgument | functionArgument ; -functionTable - : functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN tableAlias - ; - tableAlias : (KW_AS? alias=strictIdentifier identifierList?)? ; @@ -1187,7 +1080,7 @@ type dataType : complex=KW_ARRAY LT dataType GT | complex=KW_MAP LT dataType COMMA dataType GT - | complex=KW_STRUCT (LT complexColTypeList? GT | NEQ) + | complex=KW_STRUCT (LT (complexColType (COMMA complexColType)*)? GT | NEQ) | KW_INTERVAL (KW_YEAR | KW_MONTH) (KW_TO KW_MONTH)? | KW_INTERVAL (KW_DAY | KW_HOUR | KW_MINUTE | KW_SECOND) ( KW_TO (KW_HOUR | KW_MINUTE | KW_SECOND) @@ -1213,15 +1106,11 @@ qualifiedColTypeWithPositionForReplace colDefinitionDescriptorWithPosition : KW_NOT KW_NULL - | defaultExpression - | commentSpec + | KW_DEFAULT expression + | KW_COMMENT comment=stringLit | colPosition ; -defaultExpression - : KW_DEFAULT expression - ; - variableDefaultExpression : (KW_DEFAULT | EQ) expression ; @@ -1231,7 +1120,7 @@ colTypeList ; columnType - : colName=errorCapturingIdentifier dataType (KW_NOT KW_NULL)? commentSpec? + : colName=errorCapturingIdentifier dataType (KW_NOT KW_NULL)? (KW_COMMENT comment=stringLit)? ; createOrReplaceTableColTypeList @@ -1244,21 +1133,13 @@ createOrReplaceTableColType colDefinitionOption : KW_NOT KW_NULL - | defaultExpression - | generationExpression - | commentSpec - ; - -generationExpression - : KW_GENERATED KW_ALWAYS KW_AS LEFT_PAREN expression RIGHT_PAREN - ; - -complexColTypeList - : complexColType (COMMA complexColType)* + | KW_DEFAULT expression + | KW_GENERATED KW_ALWAYS KW_AS LEFT_PAREN expression RIGHT_PAREN + | KW_COMMENT comment=stringLit ; complexColType - : identifier COLON? dataType (KW_NOT KW_NULL)? commentSpec? + : identifier COLON? dataType (KW_NOT KW_NULL)? (KW_COMMENT comment=stringLit)? ; whenClause @@ -1266,15 +1147,9 @@ whenClause ; windowClause - : KW_WINDOW namedWindow (COMMA namedWindow)* - ; - -zorderClause - : KW_ZORDER KW_BY columnNameSeq - ; - -namedWindow - : name=errorCapturingIdentifier KW_AS windowSpec + : KW_WINDOW name=errorCapturingIdentifier KW_AS windowSpec ( + COMMA name=errorCapturingIdentifier KW_AS windowSpec + )* ; windowSpec @@ -1295,10 +1170,8 @@ windowSpec * https://github.com/tunnelvisionlabs/antlr4ts/issues/417 */ windowFrame - : frameType=KW_RANGE start_=frameBound - | frameType=KW_ROWS start_=frameBound - | frameType=KW_RANGE KW_BETWEEN start_=frameBound KW_AND end=frameBound - | frameType=KW_ROWS KW_BETWEEN start_=frameBound KW_AND end=frameBound + : frameType=(KW_RANGE | KW_ROWS) start_=frameBound + | frameType=(KW_RANGE | KW_ROWS) KW_BETWEEN start_=frameBound KW_AND end=frameBound ; frameBound @@ -1357,29 +1230,28 @@ quotedIdentifier | DOUBLEQUOTED_STRING ; -backQuotedIdentifier - : BACKQUOTED_IDENTIFIER - ; - number - : MINUS? EXPONENT_VALUE - | MINUS? DECIMAL_VALUE - | MINUS? (EXPONENT_VALUE | DECIMAL_VALUE) - | MINUS? INTEGER_VALUE - | MINUS? BIGINT_LITERAL - | MINUS? SMALLINT_LITERAL - | MINUS? TINYINT_LITERAL - | MINUS? DOUBLE_LITERAL - | MINUS? FLOAT_LITERAL - | MINUS? BIGDECIMAL_LITERAL + : MINUS? ( + EXPONENT_VALUE + | DECIMAL_VALUE + | EXPONENT_VALUE + | DECIMAL_VALUE + | INTEGER_VALUE + | BIGINT_LITERAL + | SMALLINT_LITERAL + | TINYINT_LITERAL + | DOUBLE_LITERAL + | FLOAT_LITERAL + | BIGDECIMAL_LITERAL + ) ; alterColumnAction : KW_TYPE dataType - | commentSpec + | KW_COMMENT comment=stringLit | colPosition | setOrDrop=(KW_SET | KW_DROP) KW_NOT KW_NULL - | KW_SET defaultExpression + | KW_SET KW_DEFAULT expression | dropDefault=KW_DROP KW_DEFAULT ; @@ -1388,16 +1260,6 @@ stringLit | DOUBLEQUOTED_STRING ; -commentStr - : stringLit - | KW_NULL - ; - -version - : INTEGER_VALUE - | stringLit - ; - // When `SQL_standard_keyword_behavior=true`, there are 2 kinds of keywords in Spark SQL. // - Reserved keywords: // Keywords that are reserved and can't be used as identifiers for table, view, column, diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 03dd67a5..9fea3175 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -794,23 +794,15 @@ rule names: program singleStatement statement -timezone -configKey -configValue unsupportedHiveNativeCommands -createTableHeader -replaceTableHeader bucketSpec skewSpec -locationSpec -commentSpec query insertInto partitionSpecLocation partitionSpec partitionVal namespace -namespaces describeFuncName describeColName ctes @@ -829,7 +821,6 @@ nestedConstantList createFileFormat fileFormat storageHandler -resource dmlStatementNoWith namespaceName namespaceNameCreate @@ -842,11 +833,9 @@ columnNameSeq columnNameCreate identifierReference queryOrganization -multiInsertQueryBody queryTerm queryPrimary sortItem -fromStatement fromStatementBody querySpecification transformClause @@ -855,9 +844,7 @@ setClause matchedClause notMatchedClause notMatchedBySourceClause -matchedAction notMatchedAction -notMatchedBySourceAction assignmentList assignment whereClause @@ -865,33 +852,24 @@ havingClause hint hintStatement fromClause -functionKind temporalClause aggregationClause groupByClause groupingAnalytics -groupingElement groupingSet pivotClause pivotColumn pivotValue unpivotClause -unpivotNullClause -unpivotOperator unpivotSingleValueColumnClause unpivotMultiValueColumnClause unpivotColumnSet -unpivotValueColumn -unpivotNameColumn unpivotColumnAndAlias -unpivotColumn -unpivotAlias ifNotExists ifExists lateralView setQuantifier relation -relationExtension joinRelation joinType joinCriteria @@ -904,13 +882,11 @@ orderedIdentifier identifierCommentList identifierComment relationPrimary -inlineTable functionTableSubqueryArgument tableArgumentPartitioning functionTableNamedArgumentExpression functionTableReferenceArgument functionTableArgument -functionTable tableAlias rowFormat multipartIdentifierList @@ -956,20 +932,15 @@ qualifiedColTypeWithPositionForAdd qualifiedColTypeWithPositionSeqForReplace qualifiedColTypeWithPositionForReplace colDefinitionDescriptorWithPosition -defaultExpression variableDefaultExpression colTypeList columnType createOrReplaceTableColTypeList createOrReplaceTableColType colDefinitionOption -generationExpression -complexColTypeList complexColType whenClause windowClause -zorderClause -namedWindow windowSpec windowFrame frameBound @@ -982,16 +953,13 @@ errorCapturingIdentifierExtra identifier strictIdentifier quotedIdentifier -backQuotedIdentifier number alterColumnAction stringLit -commentStr -version ansiNonReserved strictNonReserved nonReserved atn: -[4, 1, 393, 3971, 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, 1, 0, 5, 0, 402, 8, 0, 10, 0, 12, 0, 405, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 411, 8, 1, 1, 2, 1, 2, 3, 2, 415, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 440, 8, 2, 10, 2, 12, 2, 443, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 461, 8, 2, 1, 2, 1, 2, 3, 2, 465, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 484, 8, 2, 1, 2, 3, 2, 487, 8, 2, 1, 2, 1, 2, 3, 2, 491, 8, 2, 1, 2, 3, 2, 494, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 511, 8, 2, 10, 2, 12, 2, 514, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 3, 2, 531, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 537, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 548, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 554, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 559, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 592, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 602, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 613, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 635, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 649, 8, 2, 1, 2, 1, 2, 3, 2, 653, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 659, 8, 2, 1, 2, 1, 2, 3, 2, 663, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 668, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 674, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 694, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 700, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 711, 8, 2, 1, 2, 1, 2, 3, 2, 715, 8, 2, 1, 2, 4, 2, 718, 8, 2, 11, 2, 12, 2, 719, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 735, 8, 2, 1, 2, 1, 2, 3, 2, 739, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 744, 8, 2, 10, 2, 12, 2, 747, 9, 2, 1, 2, 3, 2, 750, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 756, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 794, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 3, 2, 817, 8, 2, 1, 2, 1, 2, 3, 2, 821, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 829, 8, 2, 10, 2, 12, 2, 832, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 3, 2, 873, 8, 2, 1, 2, 1, 2, 3, 2, 877, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 886, 8, 2, 10, 2, 12, 2, 889, 9, 2, 3, 2, 891, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 897, 8, 2, 1, 2, 1, 2, 3, 2, 901, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 916, 8, 2, 10, 2, 12, 2, 919, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 926, 8, 2, 1, 2, 1, 2, 3, 2, 930, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 3, 2, 939, 8, 2, 1, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 3, 2, 946, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 957, 8, 2, 1, 2, 1, 2, 3, 2, 961, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 995, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1003, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 3, 2, 1039, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 3, 2, 1058, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 3, 2, 1071, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 3, 2, 1106, 8, 2, 1, 2, 1, 2, 3, 2, 1110, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1136, 8, 2, 10, 2, 12, 2, 1139, 9, 2, 3, 2, 1141, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1149, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1179, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1185, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 3, 2, 1194, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1201, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1206, 8, 2, 10, 2, 12, 2, 1209, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1214, 8, 2, 10, 2, 12, 2, 1217, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1231, 8, 2, 10, 2, 12, 2, 1234, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 3, 2, 1263, 8, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1276, 8, 2, 10, 2, 12, 2, 1279, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1285, 8, 2, 10, 2, 12, 2, 1288, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1293, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1298, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1303, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1320, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1333, 8, 2, 10, 2, 12, 2, 1336, 9, 2, 3, 2, 1338, 8, 2, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1354, 8, 6, 1, 6, 1, 6, 3, 6, 1358, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1365, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1481, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1489, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1497, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1506, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1516, 8, 6, 1, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 3, 7, 1523, 8, 7, 1, 7, 1, 7, 3, 7, 1527, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1533, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1562, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1571, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1579, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1584, 8, 14, 3, 14, 1586, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1594, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1599, 8, 14, 1, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1614, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1619, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1628, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 3, 14, 1636, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1641, 8, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1650, 8, 14, 3, 14, 1652, 8, 14, 1, 15, 1, 15, 3, 15, 1656, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1663, 8, 16, 10, 16, 12, 16, 1666, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1673, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1679, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1690, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1695, 8, 21, 10, 21, 12, 21, 1698, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1704, 8, 22, 10, 22, 12, 22, 1707, 9, 22, 1, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 3, 23, 1714, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1737, 8, 25, 10, 25, 12, 25, 1740, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1749, 8, 27, 10, 27, 12, 27, 1752, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1758, 8, 28, 1, 28, 3, 28, 1761, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1766, 8, 29, 10, 29, 12, 29, 1769, 9, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1778, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1784, 8, 31, 10, 31, 12, 31, 1787, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1793, 8, 32, 1, 32, 3, 32, 1796, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1802, 8, 33, 10, 33, 12, 33, 1805, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1813, 8, 34, 10, 34, 12, 34, 1816, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1826, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1840, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1850, 8, 39, 11, 39, 12, 39, 1851, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1859, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1866, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1884, 8, 39, 10, 39, 12, 39, 1887, 9, 39, 1, 39, 5, 39, 1890, 8, 39, 10, 39, 12, 39, 1893, 9, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 3, 39, 1901, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1917, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1922, 8, 47, 10, 47, 12, 47, 1925, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1935, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1942, 8, 50, 10, 50, 12, 50, 1945, 9, 50, 3, 50, 1947, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 3, 50, 1986, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1991, 8, 50, 3, 50, 1993, 8, 50, 1, 50, 1, 50, 3, 50, 1997, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2008, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2014, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 5, 52, 2023, 8, 52, 10, 52, 12, 52, 2026, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 54, 1, 54, 3, 54, 2041, 8, 54, 1, 54, 3, 54, 2044, 8, 54, 1, 54, 1, 54, 3, 54, 2048, 8, 54, 1, 55, 1, 55, 4, 55, 2052, 8, 55, 11, 55, 12, 55, 2053, 1, 56, 1, 56, 3, 56, 2058, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2064, 8, 56, 10, 56, 12, 56, 2067, 9, 56, 1, 56, 3, 56, 2070, 8, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 5, 57, 2090, 8, 57, 10, 57, 12, 57, 2093, 9, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 3, 57, 2129, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2135, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2142, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2147, 8, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 3, 58, 2153, 8, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2167, 8, 58, 1, 58, 1, 58, 3, 58, 2171, 8, 58, 3, 58, 2173, 8, 58, 1, 58, 3, 58, 2176, 8, 58, 1, 58, 1, 58, 3, 58, 2180, 8, 58, 1, 59, 1, 59, 5, 59, 2184, 8, 59, 10, 59, 12, 59, 2187, 9, 59, 1, 59, 3, 59, 2190, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2201, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2211, 8, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2227, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2239, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2252, 8, 65, 10, 65, 12, 65, 2255, 9, 65, 1, 65, 1, 65, 3, 65, 2259, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2265, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2270, 8, 67, 10, 67, 12, 67, 2273, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2288, 8, 71, 1, 71, 5, 71, 2291, 8, 71, 10, 71, 12, 71, 2294, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2304, 8, 72, 10, 72, 12, 72, 2307, 9, 72, 1, 72, 1, 72, 3, 72, 2311, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2317, 8, 73, 10, 73, 12, 73, 2320, 9, 73, 1, 73, 5, 73, 2323, 8, 73, 10, 73, 12, 73, 2326, 9, 73, 1, 73, 3, 73, 2329, 8, 73, 1, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2337, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2344, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2350, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2357, 8, 76, 10, 76, 12, 76, 2360, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2367, 8, 76, 10, 76, 12, 76, 2370, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2382, 8, 76, 10, 76, 12, 76, 2385, 9, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 3, 76, 2391, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2403, 8, 78, 10, 78, 12, 78, 2406, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2416, 8, 78, 10, 78, 12, 78, 2419, 9, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2434, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2439, 8, 80, 5, 80, 2441, 8, 80, 10, 80, 12, 80, 2444, 9, 80, 3, 80, 2446, 8, 80, 1, 80, 3, 80, 2449, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2461, 8, 81, 10, 81, 12, 81, 2464, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2474, 8, 82, 10, 82, 12, 82, 2477, 9, 82, 1, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 3, 83, 2488, 8, 83, 1, 84, 1, 84, 3, 84, 2492, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2498, 8, 84, 1, 84, 3, 84, 2501, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2508, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2518, 8, 87, 10, 87, 12, 87, 2521, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2529, 8, 88, 10, 88, 12, 88, 2532, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2542, 8, 88, 10, 88, 12, 88, 2545, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2553, 8, 89, 10, 89, 12, 89, 2556, 9, 89, 1, 89, 1, 89, 3, 89, 2560, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2568, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2573, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2587, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2594, 8, 97, 10, 97, 12, 97, 2597, 9, 97, 3, 97, 2599, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2604, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2609, 8, 97, 10, 97, 12, 97, 2612, 9, 97, 3, 97, 2614, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2620, 8, 99, 1, 99, 1, 99, 5, 99, 2624, 8, 99, 10, 99, 12, 99, 2627, 9, 99, 3, 99, 2629, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2634, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2639, 8, 101, 1, 101, 1, 101, 3, 101, 2643, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 102, 3, 102, 2656, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2661, 8, 102, 1, 102, 3, 102, 2664, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2669, 8, 102, 1, 102, 1, 102, 3, 102, 2673, 8, 102, 1, 102, 3, 102, 2676, 8, 102, 1, 102, 3, 102, 2679, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2685, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2690, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2697, 8, 104, 1, 105, 3, 105, 2700, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2718, 8, 105, 3, 105, 2720, 8, 105, 1, 105, 3, 105, 2723, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2732, 8, 107, 10, 107, 12, 107, 2735, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2741, 8, 108, 10, 108, 12, 108, 2744, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2750, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2756, 8, 110, 10, 110, 12, 110, 2759, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2765, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2770, 8, 112, 1, 112, 3, 112, 2773, 8, 112, 1, 112, 3, 112, 2776, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2784, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2804, 8, 113, 10, 113, 12, 113, 2807, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2814, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2821, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2828, 8, 114, 3, 114, 2830, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2841, 8, 115, 10, 115, 12, 115, 2844, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2849, 8, 115, 3, 115, 2851, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2859, 8, 115, 10, 115, 12, 115, 2862, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2867, 8, 115, 3, 115, 2869, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 3, 117, 2877, 8, 117, 1, 118, 1, 118, 3, 118, 2881, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 2888, 8, 119, 10, 119, 12, 119, 2891, 9, 119, 3, 119, 2893, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 3, 120, 2899, 8, 120, 1, 120, 1, 120, 3, 120, 2903, 8, 120, 3, 120, 2905, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2914, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2926, 8, 121, 3, 121, 2928, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2935, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2942, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2948, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2954, 8, 121, 3, 121, 2956, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2961, 8, 122, 10, 122, 12, 122, 2964, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2969, 8, 123, 10, 123, 12, 123, 2972, 9, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2977, 8, 124, 10, 124, 12, 124, 2980, 9, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2985, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 3, 127, 2997, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3003, 8, 128, 1, 128, 3, 128, 3006, 8, 128, 1, 128, 1, 128, 3, 128, 3010, 8, 128, 3, 128, 3012, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 3017, 8, 129, 10, 129, 12, 129, 3020, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3026, 8, 130, 10, 130, 12, 130, 3029, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 3, 131, 3035, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3043, 8, 132, 10, 132, 12, 132, 3046, 9, 132, 1, 132, 1, 132, 3, 132, 3050, 8, 132, 1, 133, 1, 133, 3, 133, 3054, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3064, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 3069, 8, 137, 10, 137, 12, 137, 3072, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3084, 8, 138, 3, 138, 3086, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3094, 8, 138, 10, 138, 12, 138, 3097, 9, 138, 1, 139, 3, 139, 3100, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3108, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3115, 8, 139, 10, 139, 12, 139, 3118, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3123, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3131, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3136, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3146, 8, 139, 10, 139, 12, 139, 3149, 9, 139, 1, 139, 1, 139, 3, 139, 3153, 8, 139, 1, 139, 3, 139, 3156, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3162, 8, 139, 1, 139, 1, 139, 3, 139, 3166, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3171, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3176, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3181, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3187, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3208, 8, 140, 10, 140, 12, 140, 3211, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3221, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3233, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3243, 8, 142, 11, 142, 12, 142, 3244, 1, 142, 1, 142, 3, 142, 3249, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3256, 8, 142, 11, 142, 12, 142, 3257, 1, 142, 1, 142, 3, 142, 3262, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3278, 8, 142, 10, 142, 12, 142, 3281, 9, 142, 3, 142, 3283, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3291, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3300, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3309, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3330, 8, 142, 11, 142, 12, 142, 3331, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3348, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3353, 8, 142, 10, 142, 12, 142, 3356, 9, 142, 3, 142, 3358, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3367, 8, 142, 1, 142, 1, 142, 3, 142, 3371, 8, 142, 1, 142, 1, 142, 3, 142, 3375, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3385, 8, 142, 11, 142, 12, 142, 3386, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3412, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3419, 8, 142, 1, 142, 3, 142, 3422, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3437, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3458, 8, 142, 1, 142, 1, 142, 3, 142, 3462, 8, 142, 3, 142, 3464, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3474, 8, 142, 10, 142, 12, 142, 3477, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3486, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 4, 144, 3499, 8, 144, 11, 144, 12, 144, 3500, 3, 144, 3503, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3516, 8, 149, 1, 150, 1, 150, 3, 150, 3520, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 3525, 8, 151, 11, 151, 12, 151, 3526, 1, 152, 1, 152, 1, 152, 3, 152, 3532, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 3540, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3545, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 3554, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3586, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3603, 8, 159, 1, 159, 1, 159, 3, 159, 3607, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3613, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3619, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 3626, 8, 159, 10, 159, 12, 159, 3629, 9, 159, 1, 159, 3, 159, 3632, 8, 159, 3, 159, 3634, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3639, 8, 160, 10, 160, 12, 160, 3642, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3647, 8, 161, 10, 161, 12, 161, 3650, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3655, 8, 162, 10, 162, 12, 162, 3658, 9, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3663, 8, 163, 10, 163, 12, 163, 3666, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3673, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3684, 8, 167, 10, 167, 12, 167, 3687, 9, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3693, 8, 168, 1, 168, 3, 168, 3696, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3701, 8, 169, 10, 169, 12, 169, 3704, 9, 169, 1, 170, 1, 170, 1, 170, 5, 170, 3709, 8, 170, 10, 170, 12, 170, 3712, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 3719, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3731, 8, 173, 10, 173, 12, 173, 3734, 9, 173, 1, 174, 1, 174, 3, 174, 3738, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3743, 8, 174, 1, 174, 3, 174, 3746, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 3757, 8, 176, 10, 176, 12, 176, 3760, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3781, 8, 179, 10, 179, 12, 179, 3784, 9, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3791, 8, 179, 10, 179, 12, 179, 3794, 9, 179, 3, 179, 3796, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3803, 8, 179, 10, 179, 12, 179, 3806, 9, 179, 3, 179, 3808, 8, 179, 3, 179, 3810, 8, 179, 1, 179, 3, 179, 3813, 8, 179, 1, 179, 3, 179, 3816, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 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, 3834, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3843, 8, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3848, 8, 182, 10, 182, 12, 182, 3851, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3862, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 3869, 8, 185, 10, 185, 12, 185, 3872, 9, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 4, 187, 3879, 8, 187, 11, 187, 12, 187, 3880, 1, 187, 3, 187, 3884, 8, 187, 1, 188, 1, 188, 3, 188, 3888, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3894, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 3, 192, 3901, 8, 192, 1, 192, 1, 192, 3, 192, 3905, 8, 192, 1, 192, 1, 192, 3, 192, 3909, 8, 192, 1, 192, 1, 192, 3, 192, 3913, 8, 192, 1, 192, 1, 192, 3, 192, 3917, 8, 192, 1, 192, 1, 192, 3, 192, 3921, 8, 192, 1, 192, 1, 192, 3, 192, 3925, 8, 192, 1, 192, 1, 192, 3, 192, 3929, 8, 192, 1, 192, 1, 192, 3, 192, 3933, 8, 192, 1, 192, 1, 192, 3, 192, 3937, 8, 192, 1, 192, 3, 192, 3940, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3953, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 3959, 8, 195, 1, 196, 1, 196, 3, 196, 3963, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 9, 1137, 1207, 1215, 1232, 1259, 1268, 1277, 1286, 1334, 4, 104, 276, 280, 284, 200, 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, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4586, 0, 403, 1, 0, 0, 0, 2, 408, 1, 0, 0, 0, 4, 1337, 1, 0, 0, 0, 6, 1341, 1, 0, 0, 0, 8, 1343, 1, 0, 0, 0, 10, 1345, 1, 0, 0, 0, 12, 1515, 1, 0, 0, 0, 14, 1517, 1, 0, 0, 0, 16, 1532, 1, 0, 0, 0, 18, 1538, 1, 0, 0, 0, 20, 1550, 1, 0, 0, 0, 22, 1563, 1, 0, 0, 0, 24, 1566, 1, 0, 0, 0, 26, 1570, 1, 0, 0, 0, 28, 1651, 1, 0, 0, 0, 30, 1653, 1, 0, 0, 0, 32, 1657, 1, 0, 0, 0, 34, 1678, 1, 0, 0, 0, 36, 1680, 1, 0, 0, 0, 38, 1682, 1, 0, 0, 0, 40, 1689, 1, 0, 0, 0, 42, 1691, 1, 0, 0, 0, 44, 1699, 1, 0, 0, 0, 46, 1708, 1, 0, 0, 0, 48, 1719, 1, 0, 0, 0, 50, 1738, 1, 0, 0, 0, 52, 1741, 1, 0, 0, 0, 54, 1744, 1, 0, 0, 0, 56, 1755, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1777, 1, 0, 0, 0, 62, 1779, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1797, 1, 0, 0, 0, 68, 1808, 1, 0, 0, 0, 70, 1825, 1, 0, 0, 0, 72, 1833, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1841, 1, 0, 0, 0, 78, 1900, 1, 0, 0, 0, 80, 1902, 1, 0, 0, 0, 82, 1904, 1, 0, 0, 0, 84, 1906, 1, 0, 0, 0, 86, 1908, 1, 0, 0, 0, 88, 1910, 1, 0, 0, 0, 90, 1912, 1, 0, 0, 0, 92, 1916, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1934, 1, 0, 0, 0, 100, 1946, 1, 0, 0, 0, 102, 1998, 1, 0, 0, 0, 104, 2001, 1, 0, 0, 0, 106, 2036, 1, 0, 0, 0, 108, 2040, 1, 0, 0, 0, 110, 2049, 1, 0, 0, 0, 112, 2082, 1, 0, 0, 0, 114, 2128, 1, 0, 0, 0, 116, 2149, 1, 0, 0, 0, 118, 2181, 1, 0, 0, 0, 120, 2193, 1, 0, 0, 0, 122, 2196, 1, 0, 0, 0, 124, 2205, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2238, 1, 0, 0, 0, 130, 2258, 1, 0, 0, 0, 132, 2264, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2274, 1, 0, 0, 0, 138, 2278, 1, 0, 0, 0, 140, 2281, 1, 0, 0, 0, 142, 2284, 1, 0, 0, 0, 144, 2310, 1, 0, 0, 0, 146, 2312, 1, 0, 0, 0, 148, 2333, 1, 0, 0, 0, 150, 2349, 1, 0, 0, 0, 152, 2390, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2422, 1, 0, 0, 0, 158, 2426, 1, 0, 0, 0, 160, 2448, 1, 0, 0, 0, 162, 2450, 1, 0, 0, 0, 164, 2480, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2489, 1, 0, 0, 0, 170, 2502, 1, 0, 0, 0, 172, 2507, 1, 0, 0, 0, 174, 2509, 1, 0, 0, 0, 176, 2524, 1, 0, 0, 0, 178, 2548, 1, 0, 0, 0, 180, 2561, 1, 0, 0, 0, 182, 2563, 1, 0, 0, 0, 184, 2565, 1, 0, 0, 0, 186, 2569, 1, 0, 0, 0, 188, 2572, 1, 0, 0, 0, 190, 2576, 1, 0, 0, 0, 192, 2580, 1, 0, 0, 0, 194, 2583, 1, 0, 0, 0, 196, 2615, 1, 0, 0, 0, 198, 2628, 1, 0, 0, 0, 200, 2633, 1, 0, 0, 0, 202, 2652, 1, 0, 0, 0, 204, 2678, 1, 0, 0, 0, 206, 2684, 1, 0, 0, 0, 208, 2686, 1, 0, 0, 0, 210, 2722, 1, 0, 0, 0, 212, 2724, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2736, 1, 0, 0, 0, 218, 2747, 1, 0, 0, 0, 220, 2751, 1, 0, 0, 0, 222, 2762, 1, 0, 0, 0, 224, 2797, 1, 0, 0, 0, 226, 2799, 1, 0, 0, 0, 228, 2829, 1, 0, 0, 0, 230, 2850, 1, 0, 0, 0, 232, 2870, 1, 0, 0, 0, 234, 2876, 1, 0, 0, 0, 236, 2880, 1, 0, 0, 0, 238, 2882, 1, 0, 0, 0, 240, 2904, 1, 0, 0, 0, 242, 2955, 1, 0, 0, 0, 244, 2957, 1, 0, 0, 0, 246, 2965, 1, 0, 0, 0, 248, 2973, 1, 0, 0, 0, 250, 2981, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2996, 1, 0, 0, 0, 256, 3002, 1, 0, 0, 0, 258, 3013, 1, 0, 0, 0, 260, 3021, 1, 0, 0, 0, 262, 3034, 1, 0, 0, 0, 264, 3049, 1, 0, 0, 0, 266, 3053, 1, 0, 0, 0, 268, 3055, 1, 0, 0, 0, 270, 3057, 1, 0, 0, 0, 272, 3063, 1, 0, 0, 0, 274, 3065, 1, 0, 0, 0, 276, 3085, 1, 0, 0, 0, 278, 3180, 1, 0, 0, 0, 280, 3186, 1, 0, 0, 0, 282, 3212, 1, 0, 0, 0, 284, 3463, 1, 0, 0, 0, 286, 3485, 1, 0, 0, 0, 288, 3502, 1, 0, 0, 0, 290, 3504, 1, 0, 0, 0, 292, 3506, 1, 0, 0, 0, 294, 3508, 1, 0, 0, 0, 296, 3510, 1, 0, 0, 0, 298, 3512, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3524, 1, 0, 0, 0, 304, 3528, 1, 0, 0, 0, 306, 3533, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3546, 1, 0, 0, 0, 312, 3548, 1, 0, 0, 0, 314, 3553, 1, 0, 0, 0, 316, 3585, 1, 0, 0, 0, 318, 3633, 1, 0, 0, 0, 320, 3635, 1, 0, 0, 0, 322, 3643, 1, 0, 0, 0, 324, 3651, 1, 0, 0, 0, 326, 3659, 1, 0, 0, 0, 328, 3672, 1, 0, 0, 0, 330, 3674, 1, 0, 0, 0, 332, 3677, 1, 0, 0, 0, 334, 3680, 1, 0, 0, 0, 336, 3688, 1, 0, 0, 0, 338, 3697, 1, 0, 0, 0, 340, 3705, 1, 0, 0, 0, 342, 3718, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3727, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3747, 1, 0, 0, 0, 352, 3752, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3765, 1, 0, 0, 0, 358, 3815, 1, 0, 0, 0, 360, 3833, 1, 0, 0, 0, 362, 3842, 1, 0, 0, 0, 364, 3844, 1, 0, 0, 0, 366, 3861, 1, 0, 0, 0, 368, 3863, 1, 0, 0, 0, 370, 3865, 1, 0, 0, 0, 372, 3873, 1, 0, 0, 0, 374, 3883, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3893, 1, 0, 0, 0, 380, 3895, 1, 0, 0, 0, 382, 3897, 1, 0, 0, 0, 384, 3939, 1, 0, 0, 0, 386, 3952, 1, 0, 0, 0, 388, 3954, 1, 0, 0, 0, 390, 3958, 1, 0, 0, 0, 392, 3962, 1, 0, 0, 0, 394, 3964, 1, 0, 0, 0, 396, 3966, 1, 0, 0, 0, 398, 3968, 1, 0, 0, 0, 400, 402, 3, 2, 1, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 407, 5, 0, 0, 1, 407, 1, 1, 0, 0, 0, 408, 410, 3, 4, 2, 0, 409, 411, 5, 1, 0, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 3, 1, 0, 0, 0, 412, 1338, 3, 26, 13, 0, 413, 415, 3, 44, 22, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1338, 3, 78, 39, 0, 417, 419, 5, 330, 0, 0, 418, 420, 3, 36, 18, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 1338, 3, 80, 40, 0, 422, 423, 5, 269, 0, 0, 423, 426, 5, 37, 0, 0, 424, 427, 3, 376, 188, 0, 425, 427, 3, 388, 194, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 1338, 1, 0, 0, 0, 428, 429, 5, 59, 0, 0, 429, 431, 3, 36, 18, 0, 430, 432, 3, 190, 95, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 441, 3, 82, 41, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 22, 11, 0, 436, 437, 5, 346, 0, 0, 437, 438, 7, 0, 0, 0, 438, 440, 3, 54, 27, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 1338, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 444, 445, 5, 11, 0, 0, 445, 446, 3, 36, 18, 0, 446, 447, 3, 80, 40, 0, 447, 448, 5, 269, 0, 0, 448, 449, 7, 0, 0, 0, 449, 450, 3, 54, 27, 0, 450, 1338, 1, 0, 0, 0, 451, 452, 5, 11, 0, 0, 452, 453, 3, 36, 18, 0, 453, 454, 3, 80, 40, 0, 454, 455, 5, 269, 0, 0, 455, 456, 3, 22, 11, 0, 456, 1338, 1, 0, 0, 0, 457, 458, 5, 96, 0, 0, 458, 460, 3, 36, 18, 0, 459, 461, 3, 192, 96, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 3, 80, 40, 0, 463, 465, 7, 1, 0, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 1338, 1, 0, 0, 0, 466, 467, 5, 273, 0, 0, 467, 470, 3, 38, 19, 0, 468, 469, 7, 2, 0, 0, 469, 471, 3, 246, 123, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 476, 1, 0, 0, 0, 472, 474, 5, 163, 0, 0, 473, 472, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 3, 388, 194, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1338, 1, 0, 0, 0, 478, 483, 3, 14, 7, 0, 479, 480, 5, 2, 0, 0, 480, 481, 3, 338, 169, 0, 481, 482, 5, 3, 0, 0, 482, 484, 1, 0, 0, 0, 483, 479, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 1, 0, 0, 0, 485, 487, 3, 48, 24, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 493, 3, 50, 25, 0, 489, 491, 5, 20, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 3, 26, 13, 0, 493, 490, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1338, 1, 0, 0, 0, 495, 496, 5, 59, 0, 0, 496, 498, 5, 293, 0, 0, 497, 499, 3, 190, 95, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 84, 42, 0, 501, 502, 5, 163, 0, 0, 502, 512, 3, 86, 43, 0, 503, 511, 3, 48, 24, 0, 504, 511, 3, 242, 121, 0, 505, 511, 3, 70, 35, 0, 506, 511, 3, 22, 11, 0, 507, 508, 5, 297, 0, 0, 508, 511, 3, 54, 27, 0, 509, 511, 3, 52, 26, 0, 510, 503, 1, 0, 0, 0, 510, 504, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 510, 506, 1, 0, 0, 0, 510, 507, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 1338, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 520, 3, 16, 8, 0, 516, 517, 5, 2, 0, 0, 517, 518, 3, 338, 169, 0, 518, 519, 5, 3, 0, 0, 519, 521, 1, 0, 0, 0, 520, 516, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 524, 3, 48, 24, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 530, 3, 50, 25, 0, 526, 528, 5, 20, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 3, 26, 13, 0, 530, 527, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 1338, 1, 0, 0, 0, 532, 533, 5, 13, 0, 0, 533, 534, 5, 293, 0, 0, 534, 536, 3, 86, 43, 0, 535, 537, 3, 32, 16, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 5, 55, 0, 0, 539, 547, 5, 282, 0, 0, 540, 548, 5, 196, 0, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 50, 0, 0, 543, 548, 3, 94, 47, 0, 544, 545, 5, 119, 0, 0, 545, 546, 5, 10, 0, 0, 546, 548, 5, 50, 0, 0, 547, 540, 1, 0, 0, 0, 547, 541, 1, 0, 0, 0, 547, 544, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 1338, 1, 0, 0, 0, 549, 550, 5, 13, 0, 0, 550, 553, 5, 294, 0, 0, 551, 552, 7, 2, 0, 0, 552, 554, 3, 80, 40, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 55, 0, 0, 556, 558, 5, 282, 0, 0, 557, 559, 5, 196, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 1338, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 86, 43, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 49, 0, 0, 565, 566, 3, 322, 161, 0, 566, 1338, 1, 0, 0, 0, 567, 568, 5, 11, 0, 0, 568, 569, 5, 293, 0, 0, 569, 570, 3, 86, 43, 0, 570, 571, 5, 8, 0, 0, 571, 572, 5, 50, 0, 0, 572, 573, 5, 2, 0, 0, 573, 574, 3, 320, 160, 0, 574, 575, 5, 3, 0, 0, 575, 1338, 1, 0, 0, 0, 576, 577, 5, 11, 0, 0, 577, 578, 5, 293, 0, 0, 578, 579, 3, 86, 43, 0, 579, 580, 5, 241, 0, 0, 580, 581, 5, 49, 0, 0, 581, 582, 3, 92, 46, 0, 582, 583, 5, 309, 0, 0, 583, 584, 3, 96, 48, 0, 584, 1338, 1, 0, 0, 0, 585, 586, 5, 11, 0, 0, 586, 587, 5, 293, 0, 0, 587, 588, 3, 86, 43, 0, 588, 589, 5, 96, 0, 0, 589, 591, 5, 49, 0, 0, 590, 592, 3, 192, 96, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 3, 92, 46, 0, 594, 1338, 1, 0, 0, 0, 595, 596, 5, 11, 0, 0, 596, 597, 5, 293, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 96, 0, 0, 599, 601, 5, 50, 0, 0, 600, 602, 3, 192, 96, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 2, 0, 0, 604, 605, 3, 94, 47, 0, 605, 606, 5, 3, 0, 0, 606, 1338, 1, 0, 0, 0, 607, 612, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 613, 3, 86, 43, 0, 610, 611, 5, 338, 0, 0, 611, 613, 3, 90, 45, 0, 612, 608, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 241, 0, 0, 615, 616, 5, 309, 0, 0, 616, 617, 3, 246, 123, 0, 617, 1338, 1, 0, 0, 0, 618, 623, 5, 11, 0, 0, 619, 620, 5, 293, 0, 0, 620, 624, 3, 86, 43, 0, 621, 622, 5, 338, 0, 0, 622, 624, 3, 90, 45, 0, 623, 619, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 269, 0, 0, 626, 627, 5, 297, 0, 0, 627, 628, 3, 54, 27, 0, 628, 1338, 1, 0, 0, 0, 629, 634, 5, 11, 0, 0, 630, 631, 5, 293, 0, 0, 631, 635, 3, 86, 43, 0, 632, 633, 5, 338, 0, 0, 633, 635, 3, 90, 45, 0, 634, 630, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 5, 328, 0, 0, 637, 639, 5, 297, 0, 0, 638, 640, 3, 192, 96, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 3, 54, 27, 0, 642, 1338, 1, 0, 0, 0, 643, 644, 5, 11, 0, 0, 644, 645, 5, 293, 0, 0, 645, 646, 3, 86, 43, 0, 646, 648, 7, 3, 0, 0, 647, 649, 5, 49, 0, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 92, 46, 0, 651, 653, 3, 386, 193, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 1338, 1, 0, 0, 0, 654, 655, 5, 11, 0, 0, 655, 656, 5, 293, 0, 0, 656, 658, 3, 86, 43, 0, 657, 659, 3, 32, 16, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 5, 39, 0, 0, 661, 663, 5, 49, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 3, 92, 46, 0, 665, 667, 3, 336, 168, 0, 666, 668, 3, 314, 157, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 1338, 1, 0, 0, 0, 669, 670, 5, 11, 0, 0, 670, 671, 5, 293, 0, 0, 671, 673, 3, 86, 43, 0, 672, 674, 3, 32, 16, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 244, 0, 0, 676, 677, 5, 50, 0, 0, 677, 678, 5, 2, 0, 0, 678, 679, 3, 324, 162, 0, 679, 680, 5, 3, 0, 0, 680, 1338, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 269, 0, 0, 688, 689, 5, 266, 0, 0, 689, 693, 3, 388, 194, 0, 690, 691, 5, 346, 0, 0, 691, 692, 5, 267, 0, 0, 692, 694, 3, 54, 27, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 1338, 1, 0, 0, 0, 695, 696, 5, 11, 0, 0, 696, 697, 5, 293, 0, 0, 697, 699, 3, 86, 43, 0, 698, 700, 3, 32, 16, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 269, 0, 0, 702, 703, 5, 267, 0, 0, 703, 704, 3, 54, 27, 0, 704, 1338, 1, 0, 0, 0, 705, 710, 5, 11, 0, 0, 706, 707, 5, 293, 0, 0, 707, 711, 3, 86, 43, 0, 708, 709, 5, 338, 0, 0, 709, 711, 3, 90, 45, 0, 710, 706, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 5, 8, 0, 0, 713, 715, 3, 190, 95, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 718, 3, 30, 15, 0, 717, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 1338, 1, 0, 0, 0, 721, 722, 5, 11, 0, 0, 722, 723, 5, 293, 0, 0, 723, 724, 3, 86, 43, 0, 724, 725, 3, 32, 16, 0, 725, 726, 5, 241, 0, 0, 726, 727, 5, 309, 0, 0, 727, 728, 3, 32, 16, 0, 728, 1338, 1, 0, 0, 0, 729, 734, 5, 11, 0, 0, 730, 731, 5, 293, 0, 0, 731, 735, 3, 86, 43, 0, 732, 733, 5, 338, 0, 0, 733, 735, 3, 90, 45, 0, 734, 730, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 5, 96, 0, 0, 737, 739, 3, 192, 96, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 745, 3, 32, 16, 0, 741, 742, 5, 4, 0, 0, 742, 744, 3, 32, 16, 0, 743, 741, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 750, 5, 230, 0, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1338, 1, 0, 0, 0, 751, 752, 5, 11, 0, 0, 752, 753, 5, 293, 0, 0, 753, 755, 3, 86, 43, 0, 754, 756, 3, 32, 16, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 22, 11, 0, 759, 1338, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 293, 0, 0, 762, 763, 3, 86, 43, 0, 763, 764, 5, 237, 0, 0, 764, 765, 5, 219, 0, 0, 765, 1338, 1, 0, 0, 0, 766, 767, 5, 11, 0, 0, 767, 768, 5, 176, 0, 0, 768, 769, 5, 338, 0, 0, 769, 770, 3, 90, 45, 0, 770, 771, 7, 4, 0, 0, 771, 772, 5, 248, 0, 0, 772, 1338, 1, 0, 0, 0, 773, 774, 5, 11, 0, 0, 774, 775, 5, 176, 0, 0, 775, 776, 5, 338, 0, 0, 776, 777, 3, 90, 45, 0, 777, 778, 5, 269, 0, 0, 778, 779, 5, 297, 0, 0, 779, 780, 3, 54, 27, 0, 780, 1338, 1, 0, 0, 0, 781, 782, 5, 96, 0, 0, 782, 784, 5, 293, 0, 0, 783, 785, 3, 192, 96, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 3, 86, 43, 0, 787, 789, 5, 230, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1338, 1, 0, 0, 0, 790, 791, 5, 96, 0, 0, 791, 793, 5, 338, 0, 0, 792, 794, 3, 192, 96, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 1338, 3, 90, 45, 0, 796, 797, 5, 96, 0, 0, 797, 798, 5, 176, 0, 0, 798, 800, 5, 338, 0, 0, 799, 801, 3, 192, 96, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 1338, 3, 90, 45, 0, 803, 806, 5, 59, 0, 0, 804, 805, 5, 208, 0, 0, 805, 807, 5, 244, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 812, 1, 0, 0, 0, 808, 810, 5, 128, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 298, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 816, 5, 338, 0, 0, 815, 817, 3, 190, 95, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 820, 3, 88, 44, 0, 819, 821, 3, 220, 110, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 1, 0, 0, 0, 822, 829, 3, 24, 12, 0, 823, 824, 5, 218, 0, 0, 824, 825, 5, 203, 0, 0, 825, 829, 3, 212, 106, 0, 826, 827, 5, 297, 0, 0, 827, 829, 3, 54, 27, 0, 828, 822, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 834, 5, 20, 0, 0, 834, 835, 3, 26, 13, 0, 835, 1338, 1, 0, 0, 0, 836, 839, 5, 59, 0, 0, 837, 838, 5, 208, 0, 0, 838, 840, 5, 244, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 128, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 5, 298, 0, 0, 845, 846, 5, 338, 0, 0, 846, 851, 3, 88, 44, 0, 847, 848, 5, 2, 0, 0, 848, 849, 3, 334, 167, 0, 849, 850, 5, 3, 0, 0, 850, 852, 1, 0, 0, 0, 851, 847, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 856, 3, 48, 24, 0, 854, 855, 5, 207, 0, 0, 855, 857, 3, 54, 27, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 1338, 1, 0, 0, 0, 858, 859, 5, 11, 0, 0, 859, 860, 5, 338, 0, 0, 860, 862, 3, 90, 45, 0, 861, 863, 5, 20, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 3, 26, 13, 0, 865, 1338, 1, 0, 0, 0, 866, 869, 5, 59, 0, 0, 867, 868, 5, 208, 0, 0, 868, 870, 5, 244, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 873, 5, 298, 0, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 5, 125, 0, 0, 875, 877, 3, 190, 95, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 3, 368, 184, 0, 879, 880, 5, 20, 0, 0, 880, 890, 3, 388, 194, 0, 881, 882, 5, 332, 0, 0, 882, 887, 3, 76, 38, 0, 883, 884, 5, 4, 0, 0, 884, 886, 3, 76, 38, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 881, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 1338, 1, 0, 0, 0, 892, 893, 5, 59, 0, 0, 893, 894, 5, 176, 0, 0, 894, 896, 5, 338, 0, 0, 895, 897, 3, 190, 95, 0, 896, 895, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 900, 3, 88, 44, 0, 899, 901, 3, 48, 24, 0, 900, 899, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 917, 1, 0, 0, 0, 902, 903, 5, 207, 0, 0, 903, 916, 3, 54, 27, 0, 904, 905, 5, 218, 0, 0, 905, 906, 5, 31, 0, 0, 906, 916, 3, 260, 130, 0, 907, 916, 3, 20, 10, 0, 908, 916, 3, 18, 9, 0, 909, 916, 3, 242, 121, 0, 910, 916, 3, 70, 35, 0, 911, 916, 3, 22, 11, 0, 912, 916, 3, 24, 12, 0, 913, 914, 5, 297, 0, 0, 914, 916, 3, 54, 27, 0, 915, 902, 1, 0, 0, 0, 915, 904, 1, 0, 0, 0, 915, 907, 1, 0, 0, 0, 915, 908, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 910, 1, 0, 0, 0, 915, 911, 1, 0, 0, 0, 915, 912, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 919, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 920, 921, 5, 20, 0, 0, 921, 922, 3, 26, 13, 0, 922, 1338, 1, 0, 0, 0, 923, 925, 5, 96, 0, 0, 924, 926, 5, 298, 0, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 5, 125, 0, 0, 928, 930, 3, 192, 96, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 1338, 3, 366, 183, 0, 932, 935, 5, 81, 0, 0, 933, 934, 5, 208, 0, 0, 934, 936, 5, 244, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 939, 5, 336, 0, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 3, 366, 183, 0, 941, 943, 3, 318, 159, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 946, 3, 332, 166, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 1338, 1, 0, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 298, 0, 0, 949, 951, 5, 336, 0, 0, 950, 952, 3, 192, 96, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 956, 1, 0, 0, 0, 953, 957, 3, 86, 43, 0, 954, 957, 3, 90, 45, 0, 955, 957, 3, 366, 183, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 1338, 1, 0, 0, 0, 958, 960, 5, 106, 0, 0, 959, 961, 7, 5, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 1338, 3, 4, 2, 0, 963, 964, 5, 273, 0, 0, 964, 967, 5, 294, 0, 0, 965, 966, 7, 2, 0, 0, 966, 968, 3, 80, 40, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 973, 1, 0, 0, 0, 969, 971, 5, 163, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 388, 194, 0, 973, 970, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1338, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 293, 0, 0, 977, 980, 5, 108, 0, 0, 978, 979, 7, 2, 0, 0, 979, 981, 3, 80, 40, 0, 980, 978, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 5, 163, 0, 0, 983, 985, 3, 388, 194, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1338, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 297, 0, 0, 989, 994, 3, 86, 43, 0, 990, 991, 5, 2, 0, 0, 991, 992, 3, 58, 29, 0, 992, 993, 5, 3, 0, 0, 993, 995, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 1338, 1, 0, 0, 0, 996, 997, 5, 273, 0, 0, 997, 998, 5, 50, 0, 0, 998, 999, 7, 2, 0, 0, 999, 1002, 3, 86, 43, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 80, 40, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1338, 1, 0, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1008, 5, 339, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 80, 40, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1014, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 3, 388, 194, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1338, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1018, 5, 219, 0, 0, 1018, 1020, 3, 86, 43, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1338, 1, 0, 0, 0, 1022, 1024, 5, 273, 0, 0, 1023, 1025, 3, 148, 74, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1029, 5, 126, 0, 0, 1027, 1028, 7, 2, 0, 0, 1028, 1030, 3, 80, 40, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1038, 1, 0, 0, 0, 1031, 1033, 5, 163, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1036, 1, 0, 0, 0, 1034, 1037, 3, 246, 123, 0, 1035, 1037, 3, 388, 194, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1035, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1032, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1338, 1, 0, 0, 0, 1040, 1041, 5, 273, 0, 0, 1041, 1042, 5, 59, 0, 0, 1042, 1043, 5, 293, 0, 0, 1043, 1046, 3, 86, 43, 0, 1044, 1045, 5, 20, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1338, 1, 0, 0, 0, 1048, 1049, 5, 273, 0, 0, 1049, 1050, 5, 62, 0, 0, 1050, 1338, 3, 36, 18, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1057, 5, 38, 0, 0, 1053, 1055, 5, 163, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 3, 388, 194, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1338, 1, 0, 0, 0, 1059, 1060, 5, 273, 0, 0, 1060, 1061, 5, 176, 0, 0, 1061, 1064, 5, 339, 0, 0, 1062, 1063, 7, 2, 0, 0, 1063, 1065, 3, 80, 40, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1070, 1, 0, 0, 0, 1066, 1068, 5, 163, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 388, 194, 0, 1070, 1067, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1338, 1, 0, 0, 0, 1072, 1073, 5, 273, 0, 0, 1073, 1074, 5, 59, 0, 0, 1074, 1075, 5, 176, 0, 0, 1075, 1076, 5, 338, 0, 0, 1076, 1079, 3, 90, 45, 0, 1077, 1078, 5, 20, 0, 0, 1078, 1080, 5, 266, 0, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1338, 1, 0, 0, 0, 1081, 1082, 7, 6, 0, 0, 1082, 1084, 5, 125, 0, 0, 1083, 1085, 5, 108, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1338, 3, 40, 20, 0, 1087, 1088, 7, 6, 0, 0, 1088, 1090, 5, 72, 0, 0, 1089, 1091, 5, 108, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1338, 3, 80, 40, 0, 1093, 1095, 7, 6, 0, 0, 1094, 1096, 5, 293, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1099, 7, 7, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 3, 86, 43, 0, 1101, 1103, 3, 32, 16, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 1106, 3, 42, 21, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1338, 1, 0, 0, 0, 1107, 1109, 7, 6, 0, 0, 1108, 1110, 5, 232, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1338, 3, 26, 13, 0, 1112, 1113, 5, 51, 0, 0, 1113, 1114, 5, 203, 0, 0, 1114, 1115, 3, 36, 18, 0, 1115, 1116, 3, 80, 40, 0, 1116, 1117, 5, 153, 0, 0, 1117, 1118, 3, 390, 195, 0, 1118, 1338, 1, 0, 0, 0, 1119, 1120, 5, 51, 0, 0, 1120, 1121, 5, 203, 0, 0, 1121, 1122, 5, 293, 0, 0, 1122, 1123, 3, 86, 43, 0, 1123, 1124, 5, 153, 0, 0, 1124, 1125, 3, 390, 195, 0, 1125, 1338, 1, 0, 0, 0, 1126, 1127, 5, 240, 0, 0, 1127, 1128, 5, 293, 0, 0, 1128, 1338, 3, 86, 43, 0, 1129, 1130, 5, 240, 0, 0, 1130, 1131, 5, 125, 0, 0, 1131, 1338, 3, 366, 183, 0, 1132, 1140, 5, 240, 0, 0, 1133, 1141, 3, 388, 194, 0, 1134, 1136, 9, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1133, 1, 0, 0, 0, 1140, 1137, 1, 0, 0, 0, 1141, 1338, 1, 0, 0, 0, 1142, 1143, 5, 240, 0, 0, 1143, 1144, 5, 176, 0, 0, 1144, 1145, 5, 338, 0, 0, 1145, 1338, 3, 90, 45, 0, 1146, 1148, 5, 33, 0, 0, 1147, 1149, 5, 159, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 293, 0, 0, 1151, 1154, 3, 86, 43, 0, 1152, 1153, 5, 207, 0, 0, 1153, 1155, 3, 54, 27, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1158, 5, 20, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 3, 26, 13, 0, 1160, 1157, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1338, 1, 0, 0, 0, 1162, 1163, 5, 322, 0, 0, 1163, 1165, 5, 293, 0, 0, 1164, 1166, 3, 192, 96, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1338, 3, 86, 43, 0, 1168, 1169, 5, 43, 0, 0, 1169, 1338, 5, 33, 0, 0, 1170, 1171, 5, 168, 0, 0, 1171, 1173, 5, 70, 0, 0, 1172, 1174, 5, 169, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 145, 0, 0, 1176, 1178, 3, 388, 194, 0, 1177, 1179, 5, 216, 0, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 5, 152, 0, 0, 1181, 1182, 5, 293, 0, 0, 1182, 1184, 3, 86, 43, 0, 1183, 1185, 3, 32, 16, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1338, 1, 0, 0, 0, 1186, 1187, 5, 317, 0, 0, 1187, 1188, 5, 293, 0, 0, 1188, 1190, 3, 86, 43, 0, 1189, 1191, 3, 32, 16, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1338, 1, 0, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 242, 0, 0, 1196, 1197, 5, 293, 0, 0, 1197, 1200, 3, 86, 43, 0, 1198, 1199, 7, 8, 0, 0, 1199, 1201, 5, 219, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1338, 1, 0, 0, 0, 1202, 1203, 7, 9, 0, 0, 1203, 1207, 3, 376, 188, 0, 1204, 1206, 9, 0, 0, 0, 1205, 1204, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1338, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 269, 0, 0, 1211, 1215, 5, 253, 0, 0, 1212, 1214, 9, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1338, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1219, 5, 269, 0, 0, 1219, 1220, 5, 301, 0, 0, 1220, 1221, 5, 350, 0, 0, 1221, 1338, 3, 298, 149, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1224, 5, 301, 0, 0, 1224, 1225, 5, 350, 0, 0, 1225, 1338, 3, 6, 3, 0, 1226, 1227, 5, 269, 0, 0, 1227, 1228, 5, 301, 0, 0, 1228, 1232, 5, 350, 0, 0, 1229, 1231, 9, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1338, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1338, 3, 134, 67, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 7, 10, 0, 0, 1240, 1241, 5, 2, 0, 0, 1241, 1242, 3, 244, 122, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1244, 5, 352, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 26, 13, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1338, 1, 0, 0, 0, 1248, 1249, 5, 269, 0, 0, 1249, 1250, 3, 8, 4, 0, 1250, 1251, 5, 352, 0, 0, 1251, 1252, 3, 10, 5, 0, 1252, 1338, 1, 0, 0, 0, 1253, 1254, 5, 269, 0, 0, 1254, 1262, 3, 8, 4, 0, 1255, 1259, 5, 352, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1255, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1338, 1, 0, 0, 0, 1264, 1268, 5, 269, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 352, 0, 0, 1272, 1338, 3, 10, 5, 0, 1273, 1277, 5, 269, 0, 0, 1274, 1276, 9, 0, 0, 0, 1275, 1274, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1338, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1281, 5, 245, 0, 0, 1281, 1338, 3, 8, 4, 0, 1282, 1286, 5, 245, 0, 0, 1283, 1285, 9, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1338, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1290, 5, 59, 0, 0, 1290, 1292, 5, 142, 0, 0, 1291, 1293, 3, 190, 95, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 3, 376, 188, 0, 1295, 1297, 5, 203, 0, 0, 1296, 1298, 5, 293, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1302, 3, 86, 43, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1303, 3, 376, 188, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 5, 2, 0, 0, 1305, 1306, 3, 248, 124, 0, 1306, 1309, 5, 3, 0, 0, 1307, 1308, 5, 207, 0, 0, 1308, 1310, 3, 54, 27, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1338, 1, 0, 0, 0, 1311, 1312, 5, 96, 0, 0, 1312, 1314, 5, 142, 0, 0, 1313, 1315, 3, 192, 96, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 3, 376, 188, 0, 1317, 1319, 5, 203, 0, 0, 1318, 1320, 5, 293, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 3, 86, 43, 0, 1322, 1338, 1, 0, 0, 0, 1323, 1324, 5, 205, 0, 0, 1324, 1326, 3, 86, 43, 0, 1325, 1327, 3, 138, 69, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 354, 177, 0, 1329, 1338, 1, 0, 0, 0, 1330, 1334, 3, 12, 6, 0, 1331, 1333, 9, 0, 0, 0, 1332, 1331, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 412, 1, 0, 0, 0, 1337, 414, 1, 0, 0, 0, 1337, 417, 1, 0, 0, 0, 1337, 422, 1, 0, 0, 0, 1337, 428, 1, 0, 0, 0, 1337, 444, 1, 0, 0, 0, 1337, 451, 1, 0, 0, 0, 1337, 457, 1, 0, 0, 0, 1337, 466, 1, 0, 0, 0, 1337, 478, 1, 0, 0, 0, 1337, 495, 1, 0, 0, 0, 1337, 515, 1, 0, 0, 0, 1337, 532, 1, 0, 0, 0, 1337, 549, 1, 0, 0, 0, 1337, 560, 1, 0, 0, 0, 1337, 567, 1, 0, 0, 0, 1337, 576, 1, 0, 0, 0, 1337, 585, 1, 0, 0, 0, 1337, 595, 1, 0, 0, 0, 1337, 607, 1, 0, 0, 0, 1337, 618, 1, 0, 0, 0, 1337, 629, 1, 0, 0, 0, 1337, 643, 1, 0, 0, 0, 1337, 654, 1, 0, 0, 0, 1337, 669, 1, 0, 0, 0, 1337, 681, 1, 0, 0, 0, 1337, 695, 1, 0, 0, 0, 1337, 705, 1, 0, 0, 0, 1337, 721, 1, 0, 0, 0, 1337, 729, 1, 0, 0, 0, 1337, 751, 1, 0, 0, 0, 1337, 760, 1, 0, 0, 0, 1337, 766, 1, 0, 0, 0, 1337, 773, 1, 0, 0, 0, 1337, 781, 1, 0, 0, 0, 1337, 790, 1, 0, 0, 0, 1337, 796, 1, 0, 0, 0, 1337, 803, 1, 0, 0, 0, 1337, 836, 1, 0, 0, 0, 1337, 858, 1, 0, 0, 0, 1337, 866, 1, 0, 0, 0, 1337, 892, 1, 0, 0, 0, 1337, 923, 1, 0, 0, 0, 1337, 932, 1, 0, 0, 0, 1337, 947, 1, 0, 0, 0, 1337, 958, 1, 0, 0, 0, 1337, 963, 1, 0, 0, 0, 1337, 975, 1, 0, 0, 0, 1337, 987, 1, 0, 0, 0, 1337, 996, 1, 0, 0, 0, 1337, 1004, 1, 0, 0, 0, 1337, 1016, 1, 0, 0, 0, 1337, 1022, 1, 0, 0, 0, 1337, 1040, 1, 0, 0, 0, 1337, 1048, 1, 0, 0, 0, 1337, 1051, 1, 0, 0, 0, 1337, 1059, 1, 0, 0, 0, 1337, 1072, 1, 0, 0, 0, 1337, 1081, 1, 0, 0, 0, 1337, 1087, 1, 0, 0, 0, 1337, 1093, 1, 0, 0, 0, 1337, 1107, 1, 0, 0, 0, 1337, 1112, 1, 0, 0, 0, 1337, 1119, 1, 0, 0, 0, 1337, 1126, 1, 0, 0, 0, 1337, 1129, 1, 0, 0, 0, 1337, 1132, 1, 0, 0, 0, 1337, 1142, 1, 0, 0, 0, 1337, 1146, 1, 0, 0, 0, 1337, 1162, 1, 0, 0, 0, 1337, 1168, 1, 0, 0, 0, 1337, 1170, 1, 0, 0, 0, 1337, 1186, 1, 0, 0, 0, 1337, 1193, 1, 0, 0, 0, 1337, 1202, 1, 0, 0, 0, 1337, 1210, 1, 0, 0, 0, 1337, 1218, 1, 0, 0, 0, 1337, 1222, 1, 0, 0, 0, 1337, 1226, 1, 0, 0, 0, 1337, 1235, 1, 0, 0, 0, 1337, 1238, 1, 0, 0, 0, 1337, 1248, 1, 0, 0, 0, 1337, 1253, 1, 0, 0, 0, 1337, 1264, 1, 0, 0, 0, 1337, 1273, 1, 0, 0, 0, 1337, 1280, 1, 0, 0, 0, 1337, 1282, 1, 0, 0, 0, 1337, 1289, 1, 0, 0, 0, 1337, 1311, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1330, 1, 0, 0, 0, 1338, 5, 1, 0, 0, 0, 1339, 1342, 3, 388, 194, 0, 1340, 1342, 5, 169, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 7, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 9, 1, 0, 0, 0, 1345, 1346, 3, 382, 191, 0, 1346, 11, 1, 0, 0, 0, 1347, 1348, 5, 59, 0, 0, 1348, 1516, 5, 253, 0, 0, 1349, 1350, 5, 96, 0, 0, 1350, 1516, 5, 253, 0, 0, 1351, 1353, 5, 129, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1516, 1, 0, 0, 0, 1355, 1357, 5, 249, 0, 0, 1356, 1358, 5, 253, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1516, 1, 0, 0, 0, 1359, 1360, 5, 273, 0, 0, 1360, 1516, 5, 129, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1364, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1516, 1, 0, 0, 0, 1366, 1367, 5, 273, 0, 0, 1367, 1516, 5, 228, 0, 0, 1368, 1369, 5, 273, 0, 0, 1369, 1516, 5, 254, 0, 0, 1370, 1371, 5, 273, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 1516, 5, 254, 0, 0, 1373, 1374, 5, 107, 0, 0, 1374, 1516, 5, 293, 0, 0, 1375, 1376, 5, 139, 0, 0, 1376, 1516, 5, 293, 0, 0, 1377, 1378, 5, 273, 0, 0, 1378, 1516, 5, 54, 0, 0, 1379, 1380, 5, 273, 0, 0, 1380, 1381, 5, 59, 0, 0, 1381, 1516, 5, 293, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1516, 5, 313, 0, 0, 1384, 1385, 5, 273, 0, 0, 1385, 1516, 5, 143, 0, 0, 1386, 1387, 5, 273, 0, 0, 1387, 1516, 5, 172, 0, 0, 1388, 1389, 5, 59, 0, 0, 1389, 1516, 5, 142, 0, 0, 1390, 1391, 5, 96, 0, 0, 1391, 1516, 5, 142, 0, 0, 1392, 1393, 5, 11, 0, 0, 1393, 1516, 5, 142, 0, 0, 1394, 1395, 5, 171, 0, 0, 1395, 1516, 5, 293, 0, 0, 1396, 1397, 5, 171, 0, 0, 1397, 1516, 5, 72, 0, 0, 1398, 1399, 5, 326, 0, 0, 1399, 1516, 5, 293, 0, 0, 1400, 1401, 5, 326, 0, 0, 1401, 1516, 5, 72, 0, 0, 1402, 1403, 5, 59, 0, 0, 1403, 1404, 5, 298, 0, 0, 1404, 1516, 5, 175, 0, 0, 1405, 1406, 5, 96, 0, 0, 1406, 1407, 5, 298, 0, 0, 1407, 1516, 5, 175, 0, 0, 1408, 1409, 5, 11, 0, 0, 1409, 1410, 5, 293, 0, 0, 1410, 1411, 3, 86, 43, 0, 1411, 1412, 5, 197, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1516, 1, 0, 0, 0, 1414, 1415, 5, 11, 0, 0, 1415, 1416, 5, 293, 0, 0, 1416, 1417, 3, 86, 43, 0, 1417, 1418, 5, 45, 0, 0, 1418, 1419, 5, 31, 0, 0, 1419, 1516, 1, 0, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 279, 0, 0, 1425, 1516, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 275, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1516, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 275, 0, 0, 1437, 1516, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 197, 0, 0, 1442, 1443, 5, 283, 0, 0, 1443, 1444, 5, 20, 0, 0, 1444, 1445, 5, 89, 0, 0, 1445, 1516, 1, 0, 0, 0, 1446, 1447, 5, 11, 0, 0, 1447, 1448, 5, 293, 0, 0, 1448, 1449, 3, 86, 43, 0, 1449, 1450, 5, 269, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 170, 0, 0, 1452, 1516, 1, 0, 0, 0, 1453, 1454, 5, 11, 0, 0, 1454, 1455, 5, 293, 0, 0, 1455, 1456, 3, 86, 43, 0, 1456, 1457, 5, 103, 0, 0, 1457, 1458, 5, 217, 0, 0, 1458, 1516, 1, 0, 0, 0, 1459, 1460, 5, 11, 0, 0, 1460, 1461, 5, 293, 0, 0, 1461, 1462, 3, 86, 43, 0, 1462, 1463, 5, 18, 0, 0, 1463, 1464, 5, 217, 0, 0, 1464, 1516, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 320, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1516, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 310, 0, 0, 1475, 1516, 1, 0, 0, 0, 1476, 1477, 5, 11, 0, 0, 1477, 1478, 5, 293, 0, 0, 1478, 1480, 3, 86, 43, 0, 1479, 1481, 3, 32, 16, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 53, 0, 0, 1483, 1516, 1, 0, 0, 0, 1484, 1485, 5, 11, 0, 0, 1485, 1486, 5, 293, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1489, 3, 32, 16, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 56, 0, 0, 1491, 1516, 1, 0, 0, 0, 1492, 1493, 5, 11, 0, 0, 1493, 1494, 5, 293, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1497, 3, 32, 16, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 5, 269, 0, 0, 1499, 1500, 5, 115, 0, 0, 1500, 1516, 1, 0, 0, 0, 1501, 1502, 5, 11, 0, 0, 1502, 1503, 5, 293, 0, 0, 1503, 1505, 3, 86, 43, 0, 1504, 1506, 3, 32, 16, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 244, 0, 0, 1508, 1509, 5, 50, 0, 0, 1509, 1516, 1, 0, 0, 0, 1510, 1511, 5, 281, 0, 0, 1511, 1516, 5, 312, 0, 0, 1512, 1516, 5, 52, 0, 0, 1513, 1516, 5, 255, 0, 0, 1514, 1516, 5, 88, 0, 0, 1515, 1347, 1, 0, 0, 0, 1515, 1349, 1, 0, 0, 0, 1515, 1351, 1, 0, 0, 0, 1515, 1355, 1, 0, 0, 0, 1515, 1359, 1, 0, 0, 0, 1515, 1361, 1, 0, 0, 0, 1515, 1366, 1, 0, 0, 0, 1515, 1368, 1, 0, 0, 0, 1515, 1370, 1, 0, 0, 0, 1515, 1373, 1, 0, 0, 0, 1515, 1375, 1, 0, 0, 0, 1515, 1377, 1, 0, 0, 0, 1515, 1379, 1, 0, 0, 0, 1515, 1382, 1, 0, 0, 0, 1515, 1384, 1, 0, 0, 0, 1515, 1386, 1, 0, 0, 0, 1515, 1388, 1, 0, 0, 0, 1515, 1390, 1, 0, 0, 0, 1515, 1392, 1, 0, 0, 0, 1515, 1394, 1, 0, 0, 0, 1515, 1396, 1, 0, 0, 0, 1515, 1398, 1, 0, 0, 0, 1515, 1400, 1, 0, 0, 0, 1515, 1402, 1, 0, 0, 0, 1515, 1405, 1, 0, 0, 0, 1515, 1408, 1, 0, 0, 0, 1515, 1414, 1, 0, 0, 0, 1515, 1420, 1, 0, 0, 0, 1515, 1426, 1, 0, 0, 0, 1515, 1432, 1, 0, 0, 0, 1515, 1438, 1, 0, 0, 0, 1515, 1446, 1, 0, 0, 0, 1515, 1453, 1, 0, 0, 0, 1515, 1459, 1, 0, 0, 0, 1515, 1465, 1, 0, 0, 0, 1515, 1471, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1484, 1, 0, 0, 0, 1515, 1492, 1, 0, 0, 0, 1515, 1501, 1, 0, 0, 0, 1515, 1510, 1, 0, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1514, 1, 0, 0, 0, 1516, 13, 1, 0, 0, 0, 1517, 1519, 5, 59, 0, 0, 1518, 1520, 5, 298, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 1, 0, 0, 0, 1521, 1523, 5, 109, 0, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 293, 0, 0, 1525, 1527, 3, 190, 95, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 3, 84, 42, 0, 1529, 15, 1, 0, 0, 0, 1530, 1531, 5, 59, 0, 0, 1531, 1533, 5, 208, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 244, 0, 0, 1535, 1536, 5, 293, 0, 0, 1536, 1537, 3, 84, 42, 0, 1537, 17, 1, 0, 0, 0, 1538, 1539, 5, 45, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1544, 3, 212, 106, 0, 1541, 1542, 5, 279, 0, 0, 1542, 1543, 5, 31, 0, 0, 1543, 1545, 3, 216, 108, 0, 1544, 1541, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 152, 0, 0, 1547, 1548, 5, 382, 0, 0, 1548, 1549, 5, 30, 0, 0, 1549, 19, 1, 0, 0, 0, 1550, 1551, 5, 275, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1553, 3, 212, 106, 0, 1553, 1556, 5, 203, 0, 0, 1554, 1557, 3, 66, 33, 0, 1555, 1557, 3, 68, 34, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1555, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 283, 0, 0, 1559, 1560, 5, 20, 0, 0, 1560, 1562, 5, 89, 0, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 21, 1, 0, 0, 0, 1563, 1564, 5, 170, 0, 0, 1564, 1565, 3, 388, 194, 0, 1565, 23, 1, 0, 0, 0, 1566, 1567, 5, 51, 0, 0, 1567, 1568, 3, 388, 194, 0, 1568, 25, 1, 0, 0, 0, 1569, 1571, 3, 44, 22, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 104, 52, 0, 1573, 1574, 3, 100, 50, 0, 1574, 27, 1, 0, 0, 0, 1575, 1576, 5, 147, 0, 0, 1576, 1578, 5, 216, 0, 0, 1577, 1579, 5, 293, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1585, 3, 86, 43, 0, 1581, 1583, 3, 32, 16, 0, 1582, 1584, 3, 190, 95, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 1, 0, 0, 0, 1585, 1581, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1593, 1, 0, 0, 0, 1587, 1588, 5, 31, 0, 0, 1588, 1594, 5, 189, 0, 0, 1589, 1590, 5, 2, 0, 0, 1590, 1591, 3, 94, 47, 0, 1591, 1592, 5, 3, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1587, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1652, 1, 0, 0, 0, 1595, 1596, 5, 147, 0, 0, 1596, 1598, 5, 152, 0, 0, 1597, 1599, 5, 293, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1603, 3, 32, 16, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1605, 1, 0, 0, 0, 1604, 1606, 3, 190, 95, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1613, 1, 0, 0, 0, 1607, 1608, 5, 31, 0, 0, 1608, 1614, 5, 189, 0, 0, 1609, 1610, 5, 2, 0, 0, 1610, 1611, 3, 94, 47, 0, 1611, 1612, 5, 3, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1607, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1652, 1, 0, 0, 0, 1615, 1616, 5, 147, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 293, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 86, 43, 0, 1621, 1622, 5, 244, 0, 0, 1622, 1623, 3, 138, 69, 0, 1623, 1652, 1, 0, 0, 0, 1624, 1625, 5, 147, 0, 0, 1625, 1627, 5, 216, 0, 0, 1626, 1628, 5, 169, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 90, 0, 0, 1630, 1632, 3, 388, 194, 0, 1631, 1633, 3, 242, 121, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 70, 35, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1652, 1, 0, 0, 0, 1637, 1638, 5, 147, 0, 0, 1638, 1640, 5, 216, 0, 0, 1639, 1641, 5, 169, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 90, 0, 0, 1643, 1645, 3, 388, 194, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1649, 3, 48, 24, 0, 1647, 1648, 5, 207, 0, 0, 1648, 1650, 3, 54, 27, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1575, 1, 0, 0, 0, 1651, 1595, 1, 0, 0, 0, 1651, 1615, 1, 0, 0, 0, 1651, 1624, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1652, 29, 1, 0, 0, 0, 1653, 1655, 3, 32, 16, 0, 1654, 1656, 3, 22, 11, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 31, 1, 0, 0, 0, 1657, 1658, 5, 217, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 34, 17, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 34, 17, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 33, 1, 0, 0, 0, 1669, 1672, 3, 376, 188, 0, 1670, 1671, 5, 352, 0, 0, 1671, 1673, 3, 288, 144, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1679, 1, 0, 0, 0, 1674, 1675, 3, 376, 188, 0, 1675, 1676, 5, 352, 0, 0, 1676, 1677, 5, 82, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1669, 1, 0, 0, 0, 1678, 1674, 1, 0, 0, 0, 1679, 35, 1, 0, 0, 0, 1680, 1681, 7, 11, 0, 0, 1681, 37, 1, 0, 0, 0, 1682, 1683, 7, 12, 0, 0, 1683, 39, 1, 0, 0, 0, 1684, 1690, 3, 98, 49, 0, 1685, 1690, 3, 388, 194, 0, 1686, 1690, 3, 290, 145, 0, 1687, 1690, 3, 292, 146, 0, 1688, 1690, 3, 294, 147, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1688, 1, 0, 0, 0, 1690, 41, 1, 0, 0, 0, 1691, 1696, 3, 376, 188, 0, 1692, 1693, 5, 5, 0, 0, 1693, 1695, 3, 376, 188, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 43, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 1700, 5, 346, 0, 0, 1700, 1705, 3, 46, 23, 0, 1701, 1702, 5, 4, 0, 0, 1702, 1704, 3, 46, 23, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 45, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1710, 3, 372, 186, 0, 1709, 1711, 3, 212, 106, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1713, 1, 0, 0, 0, 1712, 1714, 5, 20, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 2, 0, 0, 1716, 1717, 3, 26, 13, 0, 1717, 1718, 5, 3, 0, 0, 1718, 47, 1, 0, 0, 0, 1719, 1720, 5, 332, 0, 0, 1720, 1721, 3, 246, 123, 0, 1721, 49, 1, 0, 0, 0, 1722, 1723, 5, 207, 0, 0, 1723, 1737, 3, 62, 31, 0, 1724, 1725, 5, 218, 0, 0, 1725, 1726, 5, 31, 0, 0, 1726, 1737, 3, 260, 130, 0, 1727, 1737, 3, 20, 10, 0, 1728, 1737, 3, 18, 9, 0, 1729, 1737, 3, 242, 121, 0, 1730, 1737, 3, 70, 35, 0, 1731, 1737, 3, 22, 11, 0, 1732, 1737, 3, 24, 12, 0, 1733, 1734, 5, 297, 0, 0, 1734, 1737, 3, 54, 27, 0, 1735, 1737, 3, 52, 26, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1727, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1729, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1731, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1733, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 51, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 162, 0, 0, 1742, 1743, 5, 382, 0, 0, 1743, 53, 1, 0, 0, 0, 1744, 1745, 5, 2, 0, 0, 1745, 1750, 3, 56, 28, 0, 1746, 1747, 5, 4, 0, 0, 1747, 1749, 3, 56, 28, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 3, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 58, 29, 0, 1756, 1758, 5, 352, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 3, 60, 30, 0, 1760, 1757, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 57, 1, 0, 0, 0, 1762, 1767, 3, 376, 188, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1766, 3, 376, 188, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1772, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1772, 3, 388, 194, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1778, 5, 382, 0, 0, 1774, 1778, 5, 384, 0, 0, 1775, 1778, 3, 296, 148, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1773, 1, 0, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1776, 1, 0, 0, 0, 1778, 61, 1, 0, 0, 0, 1779, 1780, 5, 2, 0, 0, 1780, 1785, 3, 64, 32, 0, 1781, 1782, 5, 4, 0, 0, 1782, 1784, 3, 64, 32, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1788, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1789, 5, 3, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1795, 3, 58, 29, 0, 1791, 1793, 5, 352, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1796, 3, 268, 134, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 65, 1, 0, 0, 0, 1797, 1798, 5, 2, 0, 0, 1798, 1803, 3, 288, 144, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 288, 144, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 5, 3, 0, 0, 1807, 67, 1, 0, 0, 0, 1808, 1809, 5, 2, 0, 0, 1809, 1814, 3, 66, 33, 0, 1810, 1811, 5, 4, 0, 0, 1811, 1813, 3, 66, 33, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 69, 1, 0, 0, 0, 1819, 1820, 5, 283, 0, 0, 1820, 1821, 5, 20, 0, 0, 1821, 1826, 3, 72, 36, 0, 1822, 1823, 5, 283, 0, 0, 1823, 1824, 5, 31, 0, 0, 1824, 1826, 3, 74, 37, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1826, 71, 1, 0, 0, 0, 1827, 1828, 5, 146, 0, 0, 1828, 1829, 3, 388, 194, 0, 1829, 1830, 5, 212, 0, 0, 1830, 1831, 3, 388, 194, 0, 1831, 1834, 1, 0, 0, 0, 1832, 1834, 3, 376, 188, 0, 1833, 1827, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1839, 3, 388, 194, 0, 1836, 1837, 5, 346, 0, 0, 1837, 1838, 5, 267, 0, 0, 1838, 1840, 3, 54, 27, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 75, 1, 0, 0, 0, 1841, 1842, 3, 376, 188, 0, 1842, 1843, 3, 388, 194, 0, 1843, 77, 1, 0, 0, 0, 1844, 1845, 3, 28, 14, 0, 1845, 1846, 3, 26, 13, 0, 1846, 1901, 1, 0, 0, 0, 1847, 1849, 3, 146, 73, 0, 1848, 1850, 3, 102, 51, 0, 1849, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1901, 1, 0, 0, 0, 1853, 1854, 5, 84, 0, 0, 1854, 1855, 5, 123, 0, 0, 1855, 1856, 3, 86, 43, 0, 1856, 1858, 3, 240, 120, 0, 1857, 1859, 3, 138, 69, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1901, 1, 0, 0, 0, 1860, 1861, 5, 329, 0, 0, 1861, 1862, 3, 86, 43, 0, 1862, 1863, 3, 240, 120, 0, 1863, 1865, 3, 120, 60, 0, 1864, 1866, 3, 138, 69, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1901, 1, 0, 0, 0, 1867, 1868, 5, 179, 0, 0, 1868, 1869, 5, 152, 0, 0, 1869, 1870, 3, 86, 43, 0, 1870, 1871, 3, 240, 120, 0, 1871, 1877, 5, 332, 0, 0, 1872, 1878, 3, 98, 49, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1875, 3, 26, 13, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 3, 240, 120, 0, 1880, 1881, 5, 203, 0, 0, 1881, 1885, 3, 276, 138, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1897, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1896, 3, 126, 63, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1844, 1, 0, 0, 0, 1900, 1847, 1, 0, 0, 0, 1900, 1853, 1, 0, 0, 0, 1900, 1860, 1, 0, 0, 0, 1900, 1867, 1, 0, 0, 0, 1901, 79, 1, 0, 0, 0, 1902, 1903, 3, 98, 49, 0, 1903, 81, 1, 0, 0, 0, 1904, 1905, 3, 98, 49, 0, 1905, 83, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 85, 1, 0, 0, 0, 1908, 1909, 3, 252, 126, 0, 1909, 87, 1, 0, 0, 0, 1910, 1911, 3, 254, 127, 0, 1911, 89, 1, 0, 0, 0, 1912, 1913, 3, 254, 127, 0, 1913, 91, 1, 0, 0, 0, 1914, 1917, 3, 246, 123, 0, 1915, 1917, 4, 46, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1915, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1923, 3, 92, 46, 0, 1919, 1920, 5, 4, 0, 0, 1920, 1922, 3, 92, 46, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 95, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1926, 1927, 3, 372, 186, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 136, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 268, 134, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1935, 3, 246, 123, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1935, 99, 1, 0, 0, 0, 1936, 1937, 5, 209, 0, 0, 1937, 1938, 5, 31, 0, 0, 1938, 1943, 3, 108, 54, 0, 1939, 1940, 5, 4, 0, 0, 1940, 1942, 3, 108, 54, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1936, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1958, 1, 0, 0, 0, 1948, 1949, 5, 44, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 268, 134, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 268, 134, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 93, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 268, 134, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 268, 134, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 278, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 108, 54, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 108, 54, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1986, 3, 352, 176, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1992, 1, 0, 0, 0, 1987, 1990, 5, 165, 0, 0, 1988, 1991, 5, 10, 0, 0, 1989, 1991, 3, 268, 134, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1989, 1, 0, 0, 0, 1991, 1993, 1, 0, 0, 0, 1992, 1987, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1995, 5, 202, 0, 0, 1995, 1997, 3, 268, 134, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 101, 1, 0, 0, 0, 1998, 1999, 3, 28, 14, 0, 1999, 2000, 3, 112, 56, 0, 2000, 103, 1, 0, 0, 0, 2001, 2002, 6, 52, -1, 0, 2002, 2003, 3, 106, 53, 0, 2003, 2024, 1, 0, 0, 0, 2004, 2005, 10, 3, 0, 0, 2005, 2007, 7, 13, 0, 0, 2006, 2008, 3, 196, 98, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2023, 3, 104, 52, 4, 2010, 2011, 10, 2, 0, 0, 2011, 2013, 5, 148, 0, 0, 2012, 2014, 3, 196, 98, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2023, 3, 104, 52, 3, 2016, 2017, 10, 1, 0, 0, 2017, 2019, 7, 14, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2023, 3, 104, 52, 2, 2022, 2004, 1, 0, 0, 0, 2022, 2010, 1, 0, 0, 0, 2022, 2016, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 105, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2037, 3, 114, 57, 0, 2028, 2037, 3, 110, 55, 0, 2029, 2030, 5, 293, 0, 0, 2030, 2037, 3, 86, 43, 0, 2031, 2037, 3, 226, 113, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2034, 3, 26, 13, 0, 2034, 2035, 5, 3, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2027, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2029, 1, 0, 0, 0, 2036, 2031, 1, 0, 0, 0, 2036, 2032, 1, 0, 0, 0, 2037, 107, 1, 0, 0, 0, 2038, 2041, 3, 92, 46, 0, 2039, 2041, 3, 268, 134, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2039, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 7, 15, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 199, 0, 0, 2046, 2048, 7, 16, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 109, 1, 0, 0, 0, 2049, 2051, 3, 146, 73, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 111, 1, 0, 0, 0, 2055, 2057, 3, 116, 58, 0, 2056, 2058, 3, 138, 69, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 3, 100, 50, 0, 2060, 2083, 1, 0, 0, 0, 2061, 2065, 3, 118, 59, 0, 2062, 2064, 3, 194, 97, 0, 2063, 2062, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2070, 3, 138, 69, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2072, 1, 0, 0, 0, 2071, 2073, 3, 152, 76, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2076, 3, 140, 70, 0, 2075, 2074, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2079, 3, 352, 176, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 3, 100, 50, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2055, 1, 0, 0, 0, 2082, 2061, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 3, 116, 58, 0, 2085, 2087, 3, 146, 73, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2090, 3, 194, 97, 0, 2089, 2088, 1, 0, 0, 0, 2090, 2093, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2096, 3, 138, 69, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 152, 76, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 140, 70, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 352, 176, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2108, 3, 118, 59, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 352, 176, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2084, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2129, 115, 1, 0, 0, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2132, 5, 314, 0, 0, 2132, 2134, 5, 2, 0, 0, 2133, 2135, 3, 196, 98, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 3, 274, 137, 0, 2137, 2138, 5, 3, 0, 0, 2138, 2150, 1, 0, 0, 0, 2139, 2141, 5, 177, 0, 0, 2140, 2142, 3, 196, 98, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2150, 3, 274, 137, 0, 2144, 2146, 5, 238, 0, 0, 2145, 2147, 3, 196, 98, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 274, 137, 0, 2149, 2130, 1, 0, 0, 0, 2149, 2139, 1, 0, 0, 0, 2149, 2144, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 242, 121, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2156, 1, 0, 0, 0, 2154, 2155, 5, 236, 0, 0, 2155, 2157, 3, 388, 194, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 5, 332, 0, 0, 2159, 2172, 3, 388, 194, 0, 2160, 2170, 5, 20, 0, 0, 2161, 2171, 3, 214, 107, 0, 2162, 2171, 3, 334, 167, 0, 2163, 2166, 5, 2, 0, 0, 2164, 2167, 3, 214, 107, 0, 2165, 2167, 3, 334, 167, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 5, 3, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2161, 1, 0, 0, 0, 2170, 2162, 1, 0, 0, 0, 2170, 2163, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2176, 3, 242, 121, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2178, 5, 235, 0, 0, 2178, 2180, 3, 388, 194, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 117, 1, 0, 0, 0, 2181, 2185, 5, 263, 0, 0, 2182, 2184, 3, 142, 71, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2189, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2190, 3, 196, 98, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 3, 258, 129, 0, 2192, 119, 1, 0, 0, 0, 2193, 2194, 5, 269, 0, 0, 2194, 2195, 3, 134, 67, 0, 2195, 121, 1, 0, 0, 0, 2196, 2197, 5, 343, 0, 0, 2197, 2200, 5, 178, 0, 0, 2198, 2199, 5, 14, 0, 0, 2199, 2201, 3, 276, 138, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 5, 300, 0, 0, 2203, 2204, 3, 128, 64, 0, 2204, 123, 1, 0, 0, 0, 2205, 2206, 5, 343, 0, 0, 2206, 2207, 5, 197, 0, 0, 2207, 2210, 5, 178, 0, 0, 2208, 2209, 5, 31, 0, 0, 2209, 2211, 5, 296, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2213, 5, 14, 0, 0, 2213, 2215, 3, 276, 138, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 300, 0, 0, 2217, 2218, 3, 130, 65, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 5, 343, 0, 0, 2220, 2221, 5, 197, 0, 0, 2221, 2222, 5, 178, 0, 0, 2222, 2223, 5, 31, 0, 0, 2223, 2226, 5, 280, 0, 0, 2224, 2225, 5, 14, 0, 0, 2225, 2227, 3, 276, 138, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 5, 300, 0, 0, 2229, 2230, 3, 132, 66, 0, 2230, 127, 1, 0, 0, 0, 2231, 2239, 5, 84, 0, 0, 2232, 2233, 5, 329, 0, 0, 2233, 2234, 5, 269, 0, 0, 2234, 2239, 5, 363, 0, 0, 2235, 2236, 5, 329, 0, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2239, 3, 134, 67, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2232, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2239, 129, 1, 0, 0, 0, 2240, 2241, 5, 147, 0, 0, 2241, 2259, 5, 363, 0, 0, 2242, 2243, 5, 147, 0, 0, 2243, 2244, 5, 2, 0, 0, 2244, 2245, 3, 244, 122, 0, 2245, 2246, 5, 3, 0, 0, 2246, 2247, 5, 333, 0, 0, 2247, 2248, 5, 2, 0, 0, 2248, 2253, 3, 268, 134, 0, 2249, 2250, 5, 4, 0, 0, 2250, 2252, 3, 268, 134, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 3, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2240, 1, 0, 0, 0, 2258, 2242, 1, 0, 0, 0, 2259, 131, 1, 0, 0, 0, 2260, 2265, 5, 84, 0, 0, 2261, 2262, 5, 329, 0, 0, 2262, 2263, 5, 269, 0, 0, 2263, 2265, 3, 134, 67, 0, 2264, 2260, 1, 0, 0, 0, 2264, 2261, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2271, 3, 136, 68, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 136, 68, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 135, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 3, 246, 123, 0, 2275, 2276, 5, 352, 0, 0, 2276, 2277, 3, 268, 134, 0, 2277, 137, 1, 0, 0, 0, 2278, 2279, 5, 344, 0, 0, 2279, 2280, 3, 276, 138, 0, 2280, 139, 1, 0, 0, 0, 2281, 2282, 5, 132, 0, 0, 2282, 2283, 3, 276, 138, 0, 2283, 141, 1, 0, 0, 0, 2284, 2285, 5, 374, 0, 0, 2285, 2292, 3, 144, 72, 0, 2286, 2288, 5, 4, 0, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 3, 144, 72, 0, 2290, 2287, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 375, 0, 0, 2296, 143, 1, 0, 0, 0, 2297, 2311, 3, 376, 188, 0, 2298, 2299, 3, 376, 188, 0, 2299, 2300, 5, 2, 0, 0, 2300, 2305, 3, 284, 142, 0, 2301, 2302, 5, 4, 0, 0, 2302, 2304, 3, 284, 142, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 3, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2297, 1, 0, 0, 0, 2310, 2298, 1, 0, 0, 0, 2311, 145, 1, 0, 0, 0, 2312, 2313, 5, 123, 0, 0, 2313, 2318, 3, 198, 99, 0, 2314, 2315, 5, 4, 0, 0, 2315, 2317, 3, 198, 99, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2324, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2329, 3, 162, 81, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2332, 3, 168, 84, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 7, 17, 0, 0, 2334, 149, 1, 0, 0, 0, 2335, 2337, 5, 119, 0, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 7, 18, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 201, 0, 0, 2341, 2350, 3, 392, 196, 0, 2342, 2344, 5, 119, 0, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2346, 7, 19, 0, 0, 2346, 2347, 5, 20, 0, 0, 2347, 2348, 5, 201, 0, 0, 2348, 2350, 3, 280, 140, 0, 2349, 2336, 1, 0, 0, 0, 2349, 2343, 1, 0, 0, 0, 2350, 151, 1, 0, 0, 0, 2351, 2352, 5, 130, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2358, 3, 154, 77, 0, 2354, 2355, 5, 4, 0, 0, 2355, 2357, 3, 154, 77, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2391, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2362, 5, 130, 0, 0, 2362, 2363, 5, 31, 0, 0, 2363, 2368, 3, 268, 134, 0, 2364, 2365, 5, 4, 0, 0, 2365, 2367, 3, 268, 134, 0, 2366, 2364, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2388, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2372, 5, 346, 0, 0, 2372, 2389, 5, 256, 0, 0, 2373, 2374, 5, 346, 0, 0, 2374, 2389, 5, 61, 0, 0, 2375, 2376, 5, 131, 0, 0, 2376, 2377, 5, 271, 0, 0, 2377, 2378, 5, 2, 0, 0, 2378, 2383, 3, 160, 80, 0, 2379, 2380, 5, 4, 0, 0, 2380, 2382, 3, 160, 80, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2371, 1, 0, 0, 0, 2388, 2373, 1, 0, 0, 0, 2388, 2375, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2391, 1, 0, 0, 0, 2390, 2351, 1, 0, 0, 0, 2390, 2361, 1, 0, 0, 0, 2391, 153, 1, 0, 0, 0, 2392, 2396, 3, 92, 46, 0, 2393, 2396, 3, 156, 78, 0, 2394, 2396, 3, 268, 134, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 155, 1, 0, 0, 0, 2397, 2398, 7, 20, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2404, 3, 160, 80, 0, 2400, 2401, 5, 4, 0, 0, 2401, 2403, 3, 160, 80, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2408, 5, 3, 0, 0, 2408, 2423, 1, 0, 0, 0, 2409, 2410, 5, 131, 0, 0, 2410, 2411, 5, 271, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 158, 79, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 158, 79, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2397, 1, 0, 0, 0, 2422, 2409, 1, 0, 0, 0, 2423, 157, 1, 0, 0, 0, 2424, 2427, 3, 156, 78, 0, 2425, 2427, 3, 160, 80, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 159, 1, 0, 0, 0, 2428, 2449, 3, 92, 46, 0, 2429, 2449, 3, 268, 134, 0, 2430, 2445, 5, 2, 0, 0, 2431, 2434, 3, 92, 46, 0, 2432, 2434, 3, 268, 134, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2442, 1, 0, 0, 0, 2435, 2438, 5, 4, 0, 0, 2436, 2439, 3, 92, 46, 0, 2437, 2439, 3, 268, 134, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2437, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2435, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2433, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 5, 3, 0, 0, 2448, 2428, 1, 0, 0, 0, 2448, 2429, 1, 0, 0, 0, 2448, 2430, 1, 0, 0, 0, 2449, 161, 1, 0, 0, 0, 2450, 2451, 5, 223, 0, 0, 2451, 2452, 5, 2, 0, 0, 2452, 2453, 3, 258, 129, 0, 2453, 2454, 5, 119, 0, 0, 2454, 2455, 3, 164, 82, 0, 2455, 2456, 5, 140, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2462, 3, 166, 83, 0, 2458, 2459, 5, 4, 0, 0, 2459, 2461, 3, 166, 83, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2466, 5, 3, 0, 0, 2466, 2467, 5, 3, 0, 0, 2467, 163, 1, 0, 0, 0, 2468, 2481, 3, 376, 188, 0, 2469, 2470, 5, 2, 0, 0, 2470, 2475, 3, 376, 188, 0, 2471, 2472, 5, 4, 0, 0, 2472, 2474, 3, 376, 188, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2477, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2479, 5, 3, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2468, 1, 0, 0, 0, 2480, 2469, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2487, 3, 268, 134, 0, 2483, 2485, 5, 20, 0, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2488, 3, 376, 188, 0, 2487, 2484, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 167, 1, 0, 0, 0, 2489, 2491, 5, 327, 0, 0, 2490, 2492, 3, 170, 85, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 2, 0, 0, 2494, 2495, 3, 172, 86, 0, 2495, 2500, 5, 3, 0, 0, 2496, 2498, 5, 20, 0, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 3, 376, 188, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 169, 1, 0, 0, 0, 2502, 2503, 7, 21, 0, 0, 2503, 2504, 5, 199, 0, 0, 2504, 171, 1, 0, 0, 0, 2505, 2508, 3, 174, 87, 0, 2506, 2508, 3, 176, 88, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 173, 1, 0, 0, 0, 2509, 2510, 3, 180, 90, 0, 2510, 2511, 5, 119, 0, 0, 2511, 2512, 3, 182, 91, 0, 2512, 2513, 5, 140, 0, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2519, 3, 184, 92, 0, 2515, 2516, 5, 4, 0, 0, 2516, 2518, 3, 184, 92, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2523, 5, 3, 0, 0, 2523, 175, 1, 0, 0, 0, 2524, 2525, 5, 2, 0, 0, 2525, 2530, 3, 180, 90, 0, 2526, 2527, 5, 4, 0, 0, 2527, 2529, 3, 180, 90, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2532, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2534, 5, 3, 0, 0, 2534, 2535, 5, 119, 0, 0, 2535, 2536, 3, 182, 91, 0, 2536, 2537, 5, 140, 0, 0, 2537, 2538, 5, 2, 0, 0, 2538, 2543, 3, 178, 89, 0, 2539, 2540, 5, 4, 0, 0, 2540, 2542, 3, 178, 89, 0, 2541, 2539, 1, 0, 0, 0, 2542, 2545, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2547, 5, 3, 0, 0, 2547, 177, 1, 0, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2554, 3, 186, 93, 0, 2550, 2551, 5, 4, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2550, 1, 0, 0, 0, 2553, 2556, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2557, 2559, 5, 3, 0, 0, 2558, 2560, 3, 188, 94, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 179, 1, 0, 0, 0, 2561, 2562, 3, 376, 188, 0, 2562, 181, 1, 0, 0, 0, 2563, 2564, 3, 376, 188, 0, 2564, 183, 1, 0, 0, 0, 2565, 2567, 3, 186, 93, 0, 2566, 2568, 3, 188, 94, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 185, 1, 0, 0, 0, 2569, 2570, 3, 246, 123, 0, 2570, 187, 1, 0, 0, 0, 2571, 2573, 5, 20, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2575, 3, 376, 188, 0, 2575, 189, 1, 0, 0, 0, 2576, 2577, 5, 137, 0, 0, 2577, 2578, 5, 197, 0, 0, 2578, 2579, 5, 105, 0, 0, 2579, 191, 1, 0, 0, 0, 2580, 2581, 5, 137, 0, 0, 2581, 2582, 5, 105, 0, 0, 2582, 193, 1, 0, 0, 0, 2583, 2584, 5, 158, 0, 0, 2584, 2586, 5, 338, 0, 0, 2585, 2587, 5, 211, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 3, 90, 45, 0, 2589, 2598, 5, 2, 0, 0, 2590, 2595, 3, 268, 134, 0, 2591, 2592, 5, 4, 0, 0, 2592, 2594, 3, 268, 134, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2590, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2613, 3, 240, 120, 0, 2602, 2604, 5, 20, 0, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2610, 3, 376, 188, 0, 2606, 2607, 5, 4, 0, 0, 2607, 2609, 3, 376, 188, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2603, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 195, 1, 0, 0, 0, 2615, 2616, 7, 22, 0, 0, 2616, 197, 1, 0, 0, 0, 2617, 2629, 3, 86, 43, 0, 2618, 2620, 5, 158, 0, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2625, 3, 224, 112, 0, 2622, 2624, 3, 200, 100, 0, 2623, 2622, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2617, 1, 0, 0, 0, 2628, 2619, 1, 0, 0, 0, 2629, 199, 1, 0, 0, 0, 2630, 2634, 3, 202, 101, 0, 2631, 2634, 3, 162, 81, 0, 2632, 2634, 3, 168, 84, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 201, 1, 0, 0, 0, 2635, 2636, 3, 204, 102, 0, 2636, 2638, 5, 155, 0, 0, 2637, 2639, 5, 158, 0, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 3, 224, 112, 0, 2641, 2643, 3, 206, 103, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2653, 1, 0, 0, 0, 2644, 2645, 5, 194, 0, 0, 2645, 2646, 3, 204, 102, 0, 2646, 2648, 5, 155, 0, 0, 2647, 2649, 5, 158, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 224, 112, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2635, 1, 0, 0, 0, 2652, 2644, 1, 0, 0, 0, 2653, 203, 1, 0, 0, 0, 2654, 2656, 5, 144, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2679, 1, 0, 0, 0, 2657, 2679, 5, 60, 0, 0, 2658, 2660, 5, 161, 0, 0, 2659, 2661, 5, 211, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2679, 1, 0, 0, 0, 2662, 2664, 5, 161, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2679, 5, 264, 0, 0, 2666, 2668, 5, 250, 0, 0, 2667, 2669, 5, 211, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2679, 1, 0, 0, 0, 2670, 2672, 5, 124, 0, 0, 2671, 2673, 5, 211, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2679, 1, 0, 0, 0, 2674, 2676, 5, 161, 0, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 5, 15, 0, 0, 2678, 2655, 1, 0, 0, 0, 2678, 2657, 1, 0, 0, 0, 2678, 2658, 1, 0, 0, 0, 2678, 2663, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2670, 1, 0, 0, 0, 2678, 2675, 1, 0, 0, 0, 2679, 205, 1, 0, 0, 0, 2680, 2681, 5, 203, 0, 0, 2681, 2685, 3, 276, 138, 0, 2682, 2683, 5, 332, 0, 0, 2683, 2685, 3, 212, 106, 0, 2684, 2680, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 207, 1, 0, 0, 0, 2686, 2687, 5, 295, 0, 0, 2687, 2689, 5, 2, 0, 0, 2688, 2690, 3, 210, 105, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2696, 5, 3, 0, 0, 2692, 2693, 5, 243, 0, 0, 2693, 2694, 5, 2, 0, 0, 2694, 2695, 5, 382, 0, 0, 2695, 2697, 5, 3, 0, 0, 2696, 2692, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 209, 1, 0, 0, 0, 2698, 2700, 5, 362, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 7, 23, 0, 0, 2702, 2723, 5, 222, 0, 0, 2703, 2704, 3, 268, 134, 0, 2704, 2705, 5, 258, 0, 0, 2705, 2723, 1, 0, 0, 0, 2706, 2707, 5, 29, 0, 0, 2707, 2708, 5, 382, 0, 0, 2708, 2709, 5, 210, 0, 0, 2709, 2710, 5, 201, 0, 0, 2710, 2719, 5, 382, 0, 0, 2711, 2717, 5, 203, 0, 0, 2712, 2718, 3, 376, 188, 0, 2713, 2714, 3, 370, 185, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2716, 5, 3, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2712, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 268, 134, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2703, 1, 0, 0, 0, 2722, 2706, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 211, 1, 0, 0, 0, 2724, 2725, 5, 2, 0, 0, 2725, 2726, 3, 214, 107, 0, 2726, 2727, 5, 3, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2733, 3, 372, 186, 0, 2729, 2730, 5, 4, 0, 0, 2730, 2732, 3, 372, 186, 0, 2731, 2729, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 215, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2742, 3, 218, 109, 0, 2738, 2739, 5, 4, 0, 0, 2739, 2741, 3, 218, 109, 0, 2740, 2738, 1, 0, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2746, 5, 3, 0, 0, 2746, 217, 1, 0, 0, 0, 2747, 2749, 3, 372, 186, 0, 2748, 2750, 7, 15, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 219, 1, 0, 0, 0, 2751, 2752, 5, 2, 0, 0, 2752, 2757, 3, 222, 111, 0, 2753, 2754, 5, 4, 0, 0, 2754, 2756, 3, 222, 111, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2759, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2760, 2761, 5, 3, 0, 0, 2761, 221, 1, 0, 0, 0, 2762, 2764, 3, 96, 48, 0, 2763, 2765, 3, 24, 12, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 223, 1, 0, 0, 0, 2766, 2770, 3, 86, 43, 0, 2767, 2770, 3, 90, 45, 0, 2768, 2770, 3, 98, 49, 0, 2769, 2766, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2768, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2773, 3, 150, 75, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2776, 3, 208, 104, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 3, 240, 120, 0, 2778, 2798, 1, 0, 0, 0, 2779, 2780, 5, 2, 0, 0, 2780, 2781, 3, 26, 13, 0, 2781, 2783, 5, 3, 0, 0, 2782, 2784, 3, 208, 104, 0, 2783, 2782, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 3, 240, 120, 0, 2786, 2798, 1, 0, 0, 0, 2787, 2788, 5, 2, 0, 0, 2788, 2789, 3, 198, 99, 0, 2789, 2791, 5, 3, 0, 0, 2790, 2792, 3, 208, 104, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 240, 120, 0, 2794, 2798, 1, 0, 0, 0, 2795, 2798, 3, 226, 113, 0, 2796, 2798, 3, 238, 119, 0, 2797, 2769, 1, 0, 0, 0, 2797, 2779, 1, 0, 0, 0, 2797, 2787, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 225, 1, 0, 0, 0, 2799, 2800, 5, 333, 0, 0, 2800, 2805, 3, 268, 134, 0, 2801, 2802, 5, 4, 0, 0, 2802, 2804, 3, 268, 134, 0, 2803, 2801, 1, 0, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2809, 3, 240, 120, 0, 2809, 227, 1, 0, 0, 0, 2810, 2811, 5, 293, 0, 0, 2811, 2813, 3, 86, 43, 0, 2812, 2814, 3, 230, 115, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2830, 1, 0, 0, 0, 2815, 2816, 5, 293, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 86, 43, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 230, 115, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2830, 1, 0, 0, 0, 2822, 2823, 5, 293, 0, 0, 2823, 2824, 5, 2, 0, 0, 2824, 2825, 3, 26, 13, 0, 2825, 2827, 5, 3, 0, 0, 2826, 2828, 3, 230, 115, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2830, 1, 0, 0, 0, 2829, 2810, 1, 0, 0, 0, 2829, 2815, 1, 0, 0, 0, 2829, 2822, 1, 0, 0, 0, 2830, 229, 1, 0, 0, 0, 2831, 2832, 5, 346, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2851, 5, 217, 0, 0, 2834, 2835, 7, 24, 0, 0, 2835, 2848, 5, 31, 0, 0, 2836, 2837, 5, 2, 0, 0, 2837, 2842, 3, 268, 134, 0, 2838, 2839, 5, 4, 0, 0, 2839, 2841, 3, 268, 134, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2844, 1, 0, 0, 0, 2842, 2840, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2846, 5, 3, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2849, 3, 268, 134, 0, 2848, 2836, 1, 0, 0, 0, 2848, 2847, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2831, 1, 0, 0, 0, 2850, 2834, 1, 0, 0, 0, 2851, 2868, 1, 0, 0, 0, 2852, 2853, 7, 25, 0, 0, 2853, 2866, 5, 31, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2860, 3, 108, 54, 0, 2856, 2857, 5, 4, 0, 0, 2857, 2859, 3, 108, 54, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2863, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2864, 5, 3, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2867, 3, 108, 54, 0, 2866, 2854, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2852, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 231, 1, 0, 0, 0, 2870, 2871, 3, 376, 188, 0, 2871, 2872, 5, 373, 0, 0, 2872, 2873, 3, 228, 114, 0, 2873, 233, 1, 0, 0, 0, 2874, 2877, 3, 228, 114, 0, 2875, 2877, 3, 232, 116, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2875, 1, 0, 0, 0, 2877, 235, 1, 0, 0, 0, 2878, 2881, 3, 234, 117, 0, 2879, 2881, 3, 272, 136, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 237, 1, 0, 0, 0, 2882, 2883, 3, 366, 183, 0, 2883, 2892, 5, 2, 0, 0, 2884, 2889, 3, 236, 118, 0, 2885, 2886, 5, 4, 0, 0, 2886, 2888, 3, 236, 118, 0, 2887, 2885, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 2884, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2896, 3, 240, 120, 0, 2896, 239, 1, 0, 0, 0, 2897, 2899, 5, 20, 0, 0, 2898, 2897, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 3, 378, 189, 0, 2901, 2903, 3, 212, 106, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2905, 1, 0, 0, 0, 2904, 2898, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 241, 1, 0, 0, 0, 2906, 2907, 5, 257, 0, 0, 2907, 2908, 5, 121, 0, 0, 2908, 2909, 5, 266, 0, 0, 2909, 2913, 3, 388, 194, 0, 2910, 2911, 5, 346, 0, 0, 2911, 2912, 5, 267, 0, 0, 2912, 2914, 3, 54, 27, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2956, 1, 0, 0, 0, 2915, 2916, 5, 257, 0, 0, 2916, 2917, 5, 121, 0, 0, 2917, 2927, 5, 85, 0, 0, 2918, 2919, 5, 113, 0, 0, 2919, 2920, 5, 299, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2925, 3, 388, 194, 0, 2922, 2923, 5, 101, 0, 0, 2923, 2924, 5, 31, 0, 0, 2924, 2926, 3, 388, 194, 0, 2925, 2922, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 1, 0, 0, 0, 2927, 2918, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 48, 0, 0, 2930, 2931, 5, 154, 0, 0, 2931, 2932, 5, 299, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 388, 194, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2941, 1, 0, 0, 0, 2936, 2937, 5, 177, 0, 0, 2937, 2938, 5, 156, 0, 0, 2938, 2939, 5, 299, 0, 0, 2939, 2940, 5, 31, 0, 0, 2940, 2942, 3, 388, 194, 0, 2941, 2936, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2947, 1, 0, 0, 0, 2943, 2944, 5, 166, 0, 0, 2944, 2945, 5, 299, 0, 0, 2945, 2946, 5, 31, 0, 0, 2946, 2948, 3, 388, 194, 0, 2947, 2943, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2953, 1, 0, 0, 0, 2949, 2950, 5, 198, 0, 0, 2950, 2951, 5, 83, 0, 0, 2951, 2952, 5, 20, 0, 0, 2952, 2954, 3, 388, 194, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2906, 1, 0, 0, 0, 2955, 2915, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2962, 3, 246, 123, 0, 2958, 2959, 5, 4, 0, 0, 2959, 2961, 3, 246, 123, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2964, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 245, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2970, 3, 372, 186, 0, 2966, 2967, 5, 5, 0, 0, 2967, 2969, 3, 372, 186, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 247, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2978, 3, 250, 125, 0, 2974, 2975, 5, 4, 0, 0, 2975, 2977, 3, 250, 125, 0, 2976, 2974, 1, 0, 0, 0, 2977, 2980, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 249, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 2984, 3, 246, 123, 0, 2982, 2983, 5, 207, 0, 0, 2983, 2985, 3, 54, 27, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 372, 186, 0, 2987, 2988, 5, 5, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 3, 372, 186, 0, 2992, 253, 1, 0, 0, 0, 2993, 2994, 3, 372, 186, 0, 2994, 2995, 5, 5, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2993, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 372, 186, 0, 2999, 255, 1, 0, 0, 0, 3000, 3003, 3, 92, 46, 0, 3001, 3003, 3, 268, 134, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3011, 1, 0, 0, 0, 3004, 3006, 5, 20, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3009, 1, 0, 0, 0, 3007, 3010, 3, 372, 186, 0, 3008, 3010, 3, 212, 106, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3008, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3005, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3018, 3, 256, 128, 0, 3014, 3015, 5, 4, 0, 0, 3015, 3017, 3, 256, 128, 0, 3016, 3014, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3022, 5, 2, 0, 0, 3022, 3027, 3, 262, 131, 0, 3023, 3024, 5, 4, 0, 0, 3024, 3026, 3, 262, 131, 0, 3025, 3023, 1, 0, 0, 0, 3026, 3029, 1, 0, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3031, 5, 3, 0, 0, 3031, 261, 1, 0, 0, 0, 3032, 3035, 3, 264, 132, 0, 3033, 3035, 3, 336, 168, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 263, 1, 0, 0, 0, 3036, 3050, 3, 370, 185, 0, 3037, 3038, 3, 376, 188, 0, 3038, 3039, 5, 2, 0, 0, 3039, 3044, 3, 266, 133, 0, 3040, 3041, 5, 4, 0, 0, 3041, 3043, 3, 266, 133, 0, 3042, 3040, 1, 0, 0, 0, 3043, 3046, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3047, 1, 0, 0, 0, 3046, 3044, 1, 0, 0, 0, 3047, 3048, 5, 3, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3036, 1, 0, 0, 0, 3049, 3037, 1, 0, 0, 0, 3050, 265, 1, 0, 0, 0, 3051, 3054, 3, 370, 185, 0, 3052, 3054, 3, 288, 144, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 267, 1, 0, 0, 0, 3055, 3056, 3, 276, 138, 0, 3056, 269, 1, 0, 0, 0, 3057, 3058, 3, 376, 188, 0, 3058, 3059, 5, 373, 0, 0, 3059, 3060, 3, 268, 134, 0, 3060, 271, 1, 0, 0, 0, 3061, 3064, 3, 268, 134, 0, 3062, 3064, 3, 270, 135, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3070, 3, 268, 134, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 268, 134, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 275, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 6, 138, -1, 0, 3074, 3075, 7, 26, 0, 0, 3075, 3086, 3, 276, 138, 5, 3076, 3077, 5, 105, 0, 0, 3077, 3078, 5, 2, 0, 0, 3078, 3079, 3, 26, 13, 0, 3079, 3080, 5, 3, 0, 0, 3080, 3086, 1, 0, 0, 0, 3081, 3083, 3, 280, 140, 0, 3082, 3084, 3, 278, 139, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3073, 1, 0, 0, 0, 3085, 3076, 1, 0, 0, 0, 3085, 3081, 1, 0, 0, 0, 3086, 3095, 1, 0, 0, 0, 3087, 3088, 10, 2, 0, 0, 3088, 3089, 5, 14, 0, 0, 3089, 3094, 3, 276, 138, 3, 3090, 3091, 10, 1, 0, 0, 3091, 3092, 5, 208, 0, 0, 3092, 3094, 3, 276, 138, 2, 3093, 3087, 1, 0, 0, 0, 3093, 3090, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 277, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3100, 5, 197, 0, 0, 3099, 3098, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 5, 24, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 3104, 5, 14, 0, 0, 3104, 3105, 3, 280, 140, 0, 3105, 3181, 1, 0, 0, 0, 3106, 3108, 5, 197, 0, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 5, 140, 0, 0, 3110, 3111, 5, 2, 0, 0, 3111, 3116, 3, 268, 134, 0, 3112, 3113, 5, 4, 0, 0, 3113, 3115, 3, 268, 134, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3118, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3181, 1, 0, 0, 0, 3121, 3123, 5, 197, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 5, 140, 0, 0, 3125, 3126, 5, 2, 0, 0, 3126, 3127, 3, 26, 13, 0, 3127, 3128, 5, 3, 0, 0, 3128, 3181, 1, 0, 0, 0, 3129, 3131, 5, 197, 0, 0, 3130, 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 7, 27, 0, 0, 3133, 3181, 3, 280, 140, 0, 3134, 3136, 5, 197, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 7, 28, 0, 0, 3138, 3152, 7, 29, 0, 0, 3139, 3140, 5, 2, 0, 0, 3140, 3153, 5, 3, 0, 0, 3141, 3142, 5, 2, 0, 0, 3142, 3147, 3, 268, 134, 0, 3143, 3144, 5, 4, 0, 0, 3144, 3146, 3, 268, 134, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3149, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3150, 3151, 5, 3, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3139, 1, 0, 0, 0, 3152, 3141, 1, 0, 0, 0, 3153, 3181, 1, 0, 0, 0, 3154, 3156, 5, 197, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 7, 28, 0, 0, 3158, 3161, 3, 280, 140, 0, 3159, 3160, 5, 100, 0, 0, 3160, 3162, 3, 388, 194, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3181, 1, 0, 0, 0, 3163, 3165, 5, 153, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3181, 5, 198, 0, 0, 3168, 3170, 5, 153, 0, 0, 3169, 3171, 5, 197, 0, 0, 3170, 3169, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3181, 7, 30, 0, 0, 3173, 3175, 5, 153, 0, 0, 3174, 3176, 5, 197, 0, 0, 3175, 3174, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 92, 0, 0, 3178, 3179, 5, 123, 0, 0, 3179, 3181, 3, 280, 140, 0, 3180, 3099, 1, 0, 0, 0, 3180, 3107, 1, 0, 0, 0, 3180, 3122, 1, 0, 0, 0, 3180, 3130, 1, 0, 0, 0, 3180, 3135, 1, 0, 0, 0, 3180, 3155, 1, 0, 0, 0, 3180, 3163, 1, 0, 0, 0, 3180, 3168, 1, 0, 0, 0, 3180, 3173, 1, 0, 0, 0, 3181, 279, 1, 0, 0, 0, 3182, 3183, 6, 140, -1, 0, 3183, 3187, 3, 284, 142, 0, 3184, 3185, 7, 31, 0, 0, 3185, 3187, 3, 280, 140, 7, 3186, 3182, 1, 0, 0, 0, 3186, 3184, 1, 0, 0, 0, 3187, 3209, 1, 0, 0, 0, 3188, 3189, 10, 6, 0, 0, 3189, 3190, 7, 32, 0, 0, 3190, 3208, 3, 280, 140, 7, 3191, 3192, 10, 5, 0, 0, 3192, 3193, 7, 33, 0, 0, 3193, 3208, 3, 280, 140, 6, 3194, 3195, 10, 4, 0, 0, 3195, 3196, 5, 367, 0, 0, 3196, 3208, 3, 280, 140, 5, 3197, 3198, 10, 3, 0, 0, 3198, 3199, 5, 370, 0, 0, 3199, 3208, 3, 280, 140, 4, 3200, 3201, 10, 2, 0, 0, 3201, 3202, 5, 368, 0, 0, 3202, 3208, 3, 280, 140, 3, 3203, 3204, 10, 1, 0, 0, 3204, 3205, 3, 290, 145, 0, 3205, 3206, 3, 280, 140, 2, 3206, 3208, 1, 0, 0, 0, 3207, 3188, 1, 0, 0, 0, 3207, 3191, 1, 0, 0, 0, 3207, 3194, 1, 0, 0, 0, 3207, 3197, 1, 0, 0, 0, 3207, 3200, 1, 0, 0, 0, 3207, 3203, 1, 0, 0, 0, 3208, 3211, 1, 0, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 281, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3212, 3213, 7, 34, 0, 0, 3213, 283, 1, 0, 0, 0, 3214, 3215, 6, 142, -1, 0, 3215, 3464, 7, 35, 0, 0, 3216, 3217, 7, 36, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 282, 141, 0, 3219, 3221, 3, 388, 194, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 280, 140, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 280, 140, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3464, 1, 0, 0, 0, 3228, 3229, 7, 37, 0, 0, 3229, 3232, 5, 2, 0, 0, 3230, 3233, 3, 282, 141, 0, 3231, 3233, 3, 388, 194, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 5, 4, 0, 0, 3235, 3236, 3, 280, 140, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3238, 3, 280, 140, 0, 3238, 3239, 5, 3, 0, 0, 3239, 3464, 1, 0, 0, 0, 3240, 3242, 5, 35, 0, 0, 3241, 3243, 3, 350, 175, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3248, 1, 0, 0, 0, 3246, 3247, 5, 97, 0, 0, 3247, 3249, 3, 268, 134, 0, 3248, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 5, 99, 0, 0, 3251, 3464, 1, 0, 0, 0, 3252, 3253, 5, 35, 0, 0, 3253, 3255, 3, 268, 134, 0, 3254, 3256, 3, 350, 175, 0, 3255, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3255, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3261, 1, 0, 0, 0, 3259, 3260, 5, 97, 0, 0, 3260, 3262, 3, 268, 134, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 5, 99, 0, 0, 3264, 3464, 1, 0, 0, 0, 3265, 3266, 7, 38, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3268, 3, 268, 134, 0, 3268, 3269, 5, 20, 0, 0, 3269, 3270, 3, 318, 159, 0, 3270, 3271, 5, 3, 0, 0, 3271, 3464, 1, 0, 0, 0, 3272, 3273, 5, 286, 0, 0, 3273, 3282, 5, 2, 0, 0, 3274, 3279, 3, 256, 128, 0, 3275, 3276, 5, 4, 0, 0, 3276, 3278, 3, 256, 128, 0, 3277, 3275, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 3274, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3464, 5, 3, 0, 0, 3285, 3286, 5, 116, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3290, 3, 268, 134, 0, 3288, 3289, 5, 138, 0, 0, 3289, 3291, 5, 199, 0, 0, 3290, 3288, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 5, 3, 0, 0, 3293, 3464, 1, 0, 0, 0, 3294, 3295, 5, 17, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 268, 134, 0, 3297, 3298, 5, 138, 0, 0, 3298, 3300, 5, 199, 0, 0, 3299, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3464, 1, 0, 0, 0, 3303, 3304, 5, 157, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3308, 3, 268, 134, 0, 3306, 3307, 5, 138, 0, 0, 3307, 3309, 5, 199, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3464, 1, 0, 0, 0, 3312, 3313, 5, 225, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 280, 140, 0, 3315, 3316, 5, 140, 0, 0, 3316, 3317, 3, 280, 140, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3464, 1, 0, 0, 0, 3319, 3464, 3, 288, 144, 0, 3320, 3464, 5, 363, 0, 0, 3321, 3322, 3, 370, 185, 0, 3322, 3323, 5, 5, 0, 0, 3323, 3324, 5, 363, 0, 0, 3324, 3464, 1, 0, 0, 0, 3325, 3326, 5, 2, 0, 0, 3326, 3329, 3, 256, 128, 0, 3327, 3328, 5, 4, 0, 0, 3328, 3330, 3, 256, 128, 0, 3329, 3327, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 5, 3, 0, 0, 3334, 3464, 1, 0, 0, 0, 3335, 3336, 5, 2, 0, 0, 3336, 3337, 3, 26, 13, 0, 3337, 3338, 5, 3, 0, 0, 3338, 3464, 1, 0, 0, 0, 3339, 3340, 5, 136, 0, 0, 3340, 3341, 5, 2, 0, 0, 3341, 3342, 3, 268, 134, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3464, 1, 0, 0, 0, 3344, 3345, 3, 366, 183, 0, 3345, 3357, 5, 2, 0, 0, 3346, 3348, 3, 196, 98, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3354, 3, 272, 136, 0, 3350, 3351, 5, 4, 0, 0, 3351, 3353, 3, 272, 136, 0, 3352, 3350, 1, 0, 0, 0, 3353, 3356, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3357, 3347, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 5, 3, 0, 0, 3360, 3361, 5, 114, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 344, 0, 0, 3363, 3364, 3, 276, 138, 0, 3364, 3365, 5, 3, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3369, 7, 39, 0, 0, 3369, 3371, 5, 199, 0, 0, 3370, 3368, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3374, 1, 0, 0, 0, 3372, 3373, 5, 213, 0, 0, 3373, 3375, 3, 358, 179, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3464, 1, 0, 0, 0, 3376, 3377, 3, 376, 188, 0, 3377, 3378, 5, 372, 0, 0, 3378, 3379, 3, 268, 134, 0, 3379, 3464, 1, 0, 0, 0, 3380, 3381, 5, 2, 0, 0, 3381, 3384, 3, 376, 188, 0, 3382, 3383, 5, 4, 0, 0, 3383, 3385, 3, 376, 188, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3390, 5, 372, 0, 0, 3390, 3391, 3, 268, 134, 0, 3391, 3464, 1, 0, 0, 0, 3392, 3464, 3, 376, 188, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 268, 134, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3464, 1, 0, 0, 0, 3397, 3398, 5, 110, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 376, 188, 0, 3400, 3401, 5, 123, 0, 0, 3401, 3402, 3, 280, 140, 0, 3402, 3403, 5, 3, 0, 0, 3403, 3464, 1, 0, 0, 0, 3404, 3405, 7, 40, 0, 0, 3405, 3406, 5, 2, 0, 0, 3406, 3407, 3, 280, 140, 0, 3407, 3408, 7, 41, 0, 0, 3408, 3411, 3, 280, 140, 0, 3409, 3410, 7, 42, 0, 0, 3410, 3412, 3, 280, 140, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3464, 1, 0, 0, 0, 3415, 3416, 5, 315, 0, 0, 3416, 3418, 5, 2, 0, 0, 3417, 3419, 7, 43, 0, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3421, 1, 0, 0, 0, 3420, 3422, 3, 280, 140, 0, 3421, 3420, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 5, 123, 0, 0, 3424, 3425, 3, 280, 140, 0, 3425, 3426, 5, 3, 0, 0, 3426, 3464, 1, 0, 0, 0, 3427, 3428, 5, 215, 0, 0, 3428, 3429, 5, 2, 0, 0, 3429, 3430, 3, 280, 140, 0, 3430, 3431, 5, 224, 0, 0, 3431, 3432, 3, 280, 140, 0, 3432, 3433, 5, 123, 0, 0, 3433, 3436, 3, 280, 140, 0, 3434, 3435, 5, 119, 0, 0, 3435, 3437, 3, 280, 140, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3464, 1, 0, 0, 0, 3440, 3441, 7, 44, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 280, 140, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3445, 5, 347, 0, 0, 3445, 3446, 5, 130, 0, 0, 3446, 3447, 5, 2, 0, 0, 3447, 3448, 5, 209, 0, 0, 3448, 3449, 5, 31, 0, 0, 3449, 3450, 3, 108, 54, 0, 3450, 3457, 5, 3, 0, 0, 3451, 3452, 5, 114, 0, 0, 3452, 3453, 5, 2, 0, 0, 3453, 3454, 5, 344, 0, 0, 3454, 3455, 3, 276, 138, 0, 3455, 3456, 5, 3, 0, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3460, 5, 213, 0, 0, 3460, 3462, 3, 358, 179, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3214, 1, 0, 0, 0, 3463, 3216, 1, 0, 0, 0, 3463, 3228, 1, 0, 0, 0, 3463, 3240, 1, 0, 0, 0, 3463, 3252, 1, 0, 0, 0, 3463, 3265, 1, 0, 0, 0, 3463, 3272, 1, 0, 0, 0, 3463, 3285, 1, 0, 0, 0, 3463, 3294, 1, 0, 0, 0, 3463, 3303, 1, 0, 0, 0, 3463, 3312, 1, 0, 0, 0, 3463, 3319, 1, 0, 0, 0, 3463, 3320, 1, 0, 0, 0, 3463, 3321, 1, 0, 0, 0, 3463, 3325, 1, 0, 0, 0, 3463, 3335, 1, 0, 0, 0, 3463, 3339, 1, 0, 0, 0, 3463, 3344, 1, 0, 0, 0, 3463, 3376, 1, 0, 0, 0, 3463, 3380, 1, 0, 0, 0, 3463, 3392, 1, 0, 0, 0, 3463, 3393, 1, 0, 0, 0, 3463, 3397, 1, 0, 0, 0, 3463, 3404, 1, 0, 0, 0, 3463, 3415, 1, 0, 0, 0, 3463, 3427, 1, 0, 0, 0, 3463, 3440, 1, 0, 0, 0, 3464, 3475, 1, 0, 0, 0, 3465, 3466, 10, 9, 0, 0, 3466, 3467, 5, 6, 0, 0, 3467, 3468, 3, 280, 140, 0, 3468, 3469, 5, 7, 0, 0, 3469, 3474, 1, 0, 0, 0, 3470, 3471, 10, 7, 0, 0, 3471, 3472, 5, 5, 0, 0, 3472, 3474, 3, 376, 188, 0, 3473, 3465, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 285, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3486, 5, 71, 0, 0, 3479, 3486, 5, 303, 0, 0, 3480, 3486, 5, 304, 0, 0, 3481, 3486, 5, 305, 0, 0, 3482, 3486, 5, 149, 0, 0, 3483, 3486, 5, 133, 0, 0, 3484, 3486, 3, 376, 188, 0, 3485, 3478, 1, 0, 0, 0, 3485, 3479, 1, 0, 0, 0, 3485, 3480, 1, 0, 0, 0, 3485, 3481, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 287, 1, 0, 0, 0, 3487, 3503, 5, 198, 0, 0, 3488, 3503, 5, 376, 0, 0, 3489, 3490, 5, 371, 0, 0, 3490, 3503, 3, 376, 188, 0, 3491, 3503, 3, 298, 149, 0, 3492, 3493, 3, 286, 143, 0, 3493, 3494, 3, 388, 194, 0, 3494, 3503, 1, 0, 0, 0, 3495, 3503, 3, 384, 192, 0, 3496, 3503, 3, 296, 148, 0, 3497, 3499, 3, 388, 194, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3487, 1, 0, 0, 0, 3502, 3488, 1, 0, 0, 0, 3502, 3489, 1, 0, 0, 0, 3502, 3491, 1, 0, 0, 0, 3502, 3492, 1, 0, 0, 0, 3502, 3495, 1, 0, 0, 0, 3502, 3496, 1, 0, 0, 0, 3502, 3498, 1, 0, 0, 0, 3503, 289, 1, 0, 0, 0, 3504, 3505, 7, 45, 0, 0, 3505, 291, 1, 0, 0, 0, 3506, 3507, 7, 46, 0, 0, 3507, 293, 1, 0, 0, 0, 3508, 3509, 7, 47, 0, 0, 3509, 295, 1, 0, 0, 0, 3510, 3511, 7, 48, 0, 0, 3511, 297, 1, 0, 0, 0, 3512, 3515, 5, 149, 0, 0, 3513, 3516, 3, 300, 150, 0, 3514, 3516, 3, 304, 152, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 299, 1, 0, 0, 0, 3517, 3519, 3, 302, 151, 0, 3518, 3520, 3, 306, 153, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3522, 3, 308, 154, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3525, 1, 0, 0, 0, 3524, 3521, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 303, 1, 0, 0, 0, 3528, 3531, 3, 306, 153, 0, 3529, 3532, 3, 302, 151, 0, 3530, 3532, 3, 306, 153, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 305, 1, 0, 0, 0, 3533, 3534, 3, 308, 154, 0, 3534, 3535, 3, 312, 156, 0, 3535, 3536, 5, 309, 0, 0, 3536, 3537, 3, 312, 156, 0, 3537, 307, 1, 0, 0, 0, 3538, 3540, 7, 49, 0, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3544, 1, 0, 0, 0, 3541, 3545, 5, 382, 0, 0, 3542, 3545, 5, 384, 0, 0, 3543, 3545, 3, 388, 194, 0, 3544, 3541, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3543, 1, 0, 0, 0, 3545, 309, 1, 0, 0, 0, 3546, 3547, 7, 50, 0, 0, 3547, 311, 1, 0, 0, 0, 3548, 3549, 7, 51, 0, 0, 3549, 313, 1, 0, 0, 0, 3550, 3554, 5, 116, 0, 0, 3551, 3552, 5, 9, 0, 0, 3552, 3554, 3, 372, 186, 0, 3553, 3550, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 315, 1, 0, 0, 0, 3555, 3586, 5, 27, 0, 0, 3556, 3586, 5, 308, 0, 0, 3557, 3586, 5, 32, 0, 0, 3558, 3586, 5, 276, 0, 0, 3559, 3586, 5, 272, 0, 0, 3560, 3586, 5, 150, 0, 0, 3561, 3586, 5, 151, 0, 0, 3562, 3586, 5, 25, 0, 0, 3563, 3586, 5, 174, 0, 0, 3564, 3586, 5, 117, 0, 0, 3565, 3586, 5, 234, 0, 0, 3566, 3586, 5, 95, 0, 0, 3567, 3586, 5, 71, 0, 0, 3568, 3586, 5, 303, 0, 0, 3569, 3586, 5, 305, 0, 0, 3570, 3586, 5, 304, 0, 0, 3571, 3586, 5, 285, 0, 0, 3572, 3586, 5, 41, 0, 0, 3573, 3586, 5, 40, 0, 0, 3574, 3586, 5, 334, 0, 0, 3575, 3586, 5, 26, 0, 0, 3576, 3586, 5, 80, 0, 0, 3577, 3586, 5, 79, 0, 0, 3578, 3586, 5, 200, 0, 0, 3579, 3586, 5, 340, 0, 0, 3580, 3586, 5, 149, 0, 0, 3581, 3586, 5, 19, 0, 0, 3582, 3586, 5, 286, 0, 0, 3583, 3586, 5, 177, 0, 0, 3584, 3586, 3, 376, 188, 0, 3585, 3555, 1, 0, 0, 0, 3585, 3556, 1, 0, 0, 0, 3585, 3557, 1, 0, 0, 0, 3585, 3558, 1, 0, 0, 0, 3585, 3559, 1, 0, 0, 0, 3585, 3560, 1, 0, 0, 0, 3585, 3561, 1, 0, 0, 0, 3585, 3562, 1, 0, 0, 0, 3585, 3563, 1, 0, 0, 0, 3585, 3564, 1, 0, 0, 0, 3585, 3565, 1, 0, 0, 0, 3585, 3566, 1, 0, 0, 0, 3585, 3567, 1, 0, 0, 0, 3585, 3568, 1, 0, 0, 0, 3585, 3569, 1, 0, 0, 0, 3585, 3570, 1, 0, 0, 0, 3585, 3571, 1, 0, 0, 0, 3585, 3572, 1, 0, 0, 0, 3585, 3573, 1, 0, 0, 0, 3585, 3574, 1, 0, 0, 0, 3585, 3575, 1, 0, 0, 0, 3585, 3576, 1, 0, 0, 0, 3585, 3577, 1, 0, 0, 0, 3585, 3578, 1, 0, 0, 0, 3585, 3579, 1, 0, 0, 0, 3585, 3580, 1, 0, 0, 0, 3585, 3581, 1, 0, 0, 0, 3585, 3582, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3585, 3584, 1, 0, 0, 0, 3586, 317, 1, 0, 0, 0, 3587, 3588, 5, 19, 0, 0, 3588, 3589, 5, 356, 0, 0, 3589, 3590, 3, 318, 159, 0, 3590, 3591, 5, 358, 0, 0, 3591, 3634, 1, 0, 0, 0, 3592, 3593, 5, 177, 0, 0, 3593, 3594, 5, 356, 0, 0, 3594, 3595, 3, 318, 159, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 318, 159, 0, 3597, 3598, 5, 358, 0, 0, 3598, 3634, 1, 0, 0, 0, 3599, 3606, 5, 286, 0, 0, 3600, 3602, 5, 356, 0, 0, 3601, 3603, 3, 346, 173, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3607, 5, 358, 0, 0, 3605, 3607, 5, 354, 0, 0, 3606, 3600, 1, 0, 0, 0, 3606, 3605, 1, 0, 0, 0, 3607, 3634, 1, 0, 0, 0, 3608, 3609, 5, 149, 0, 0, 3609, 3612, 7, 52, 0, 0, 3610, 3611, 5, 309, 0, 0, 3611, 3613, 5, 186, 0, 0, 3612, 3610, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 3634, 1, 0, 0, 0, 3614, 3615, 5, 149, 0, 0, 3615, 3618, 7, 53, 0, 0, 3616, 3617, 5, 309, 0, 0, 3617, 3619, 7, 54, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3634, 1, 0, 0, 0, 3620, 3631, 3, 316, 158, 0, 3621, 3622, 5, 2, 0, 0, 3622, 3627, 5, 382, 0, 0, 3623, 3624, 5, 4, 0, 0, 3624, 3626, 5, 382, 0, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3632, 5, 3, 0, 0, 3631, 3621, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3587, 1, 0, 0, 0, 3633, 3592, 1, 0, 0, 0, 3633, 3599, 1, 0, 0, 0, 3633, 3608, 1, 0, 0, 0, 3633, 3614, 1, 0, 0, 0, 3633, 3620, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3640, 3, 322, 161, 0, 3636, 3637, 5, 4, 0, 0, 3637, 3639, 3, 322, 161, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3642, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 321, 1, 0, 0, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3644, 3, 96, 48, 0, 3644, 3648, 3, 318, 159, 0, 3645, 3647, 3, 328, 164, 0, 3646, 3645, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 323, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3651, 3656, 3, 326, 163, 0, 3652, 3653, 5, 4, 0, 0, 3653, 3655, 3, 326, 163, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 325, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3659, 3660, 3, 92, 46, 0, 3660, 3664, 3, 318, 159, 0, 3661, 3663, 3, 328, 164, 0, 3662, 3661, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 327, 1, 0, 0, 0, 3666, 3664, 1, 0, 0, 0, 3667, 3668, 5, 197, 0, 0, 3668, 3673, 5, 198, 0, 0, 3669, 3673, 3, 330, 165, 0, 3670, 3673, 3, 24, 12, 0, 3671, 3673, 3, 314, 157, 0, 3672, 3667, 1, 0, 0, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 329, 1, 0, 0, 0, 3674, 3675, 5, 82, 0, 0, 3675, 3676, 3, 268, 134, 0, 3676, 331, 1, 0, 0, 0, 3677, 3678, 7, 55, 0, 0, 3678, 3679, 3, 268, 134, 0, 3679, 333, 1, 0, 0, 0, 3680, 3685, 3, 336, 168, 0, 3681, 3682, 5, 4, 0, 0, 3682, 3684, 3, 336, 168, 0, 3683, 3681, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 335, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3688, 3689, 3, 372, 186, 0, 3689, 3692, 3, 318, 159, 0, 3690, 3691, 5, 197, 0, 0, 3691, 3693, 5, 198, 0, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 3, 24, 12, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3702, 3, 340, 170, 0, 3698, 3699, 5, 4, 0, 0, 3699, 3701, 3, 340, 170, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 339, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 3, 96, 48, 0, 3706, 3710, 3, 318, 159, 0, 3707, 3709, 3, 342, 171, 0, 3708, 3707, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 341, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 5, 197, 0, 0, 3714, 3719, 5, 198, 0, 0, 3715, 3719, 3, 330, 165, 0, 3716, 3719, 3, 344, 172, 0, 3717, 3719, 3, 24, 12, 0, 3718, 3713, 1, 0, 0, 0, 3718, 3715, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3717, 1, 0, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 5, 127, 0, 0, 3721, 3722, 5, 12, 0, 0, 3722, 3723, 5, 20, 0, 0, 3723, 3724, 5, 2, 0, 0, 3724, 3725, 3, 268, 134, 0, 3725, 3726, 5, 3, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3732, 3, 348, 174, 0, 3728, 3729, 5, 4, 0, 0, 3729, 3731, 3, 348, 174, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3734, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 347, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3737, 3, 376, 188, 0, 3736, 3738, 5, 371, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3742, 3, 318, 159, 0, 3740, 3741, 5, 197, 0, 0, 3741, 3743, 5, 198, 0, 0, 3742, 3740, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 3, 24, 12, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 349, 1, 0, 0, 0, 3747, 3748, 5, 343, 0, 0, 3748, 3749, 3, 268, 134, 0, 3749, 3750, 5, 300, 0, 0, 3750, 3751, 3, 268, 134, 0, 3751, 351, 1, 0, 0, 0, 3752, 3753, 5, 345, 0, 0, 3753, 3758, 3, 356, 178, 0, 3754, 3755, 5, 4, 0, 0, 3755, 3757, 3, 356, 178, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3756, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 353, 1, 0, 0, 0, 3760, 3758, 1, 0, 0, 0, 3761, 3762, 5, 351, 0, 0, 3762, 3763, 5, 31, 0, 0, 3763, 3764, 3, 94, 47, 0, 3764, 355, 1, 0, 0, 0, 3765, 3766, 3, 372, 186, 0, 3766, 3767, 5, 20, 0, 0, 3767, 3768, 3, 358, 179, 0, 3768, 357, 1, 0, 0, 0, 3769, 3816, 3, 372, 186, 0, 3770, 3771, 5, 2, 0, 0, 3771, 3772, 3, 372, 186, 0, 3772, 3773, 5, 3, 0, 0, 3773, 3816, 1, 0, 0, 0, 3774, 3809, 5, 2, 0, 0, 3775, 3776, 5, 44, 0, 0, 3776, 3777, 5, 31, 0, 0, 3777, 3782, 3, 268, 134, 0, 3778, 3779, 5, 4, 0, 0, 3779, 3781, 3, 268, 134, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3810, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3786, 7, 24, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 268, 134, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 268, 134, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3807, 1, 0, 0, 0, 3797, 3798, 7, 25, 0, 0, 3798, 3799, 5, 31, 0, 0, 3799, 3804, 3, 108, 54, 0, 3800, 3801, 5, 4, 0, 0, 3801, 3803, 3, 108, 54, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3808, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3797, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3775, 1, 0, 0, 0, 3809, 3795, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 360, 180, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3816, 5, 3, 0, 0, 3815, 3769, 1, 0, 0, 0, 3815, 3770, 1, 0, 0, 0, 3815, 3774, 1, 0, 0, 0, 3816, 359, 1, 0, 0, 0, 3817, 3818, 5, 233, 0, 0, 3818, 3834, 3, 362, 181, 0, 3819, 3820, 5, 258, 0, 0, 3820, 3834, 3, 362, 181, 0, 3821, 3822, 5, 233, 0, 0, 3822, 3823, 5, 24, 0, 0, 3823, 3824, 3, 362, 181, 0, 3824, 3825, 5, 14, 0, 0, 3825, 3826, 3, 362, 181, 0, 3826, 3834, 1, 0, 0, 0, 3827, 3828, 5, 258, 0, 0, 3828, 3829, 5, 24, 0, 0, 3829, 3830, 3, 362, 181, 0, 3830, 3831, 5, 14, 0, 0, 3831, 3832, 3, 362, 181, 0, 3832, 3834, 1, 0, 0, 0, 3833, 3817, 1, 0, 0, 0, 3833, 3819, 1, 0, 0, 0, 3833, 3821, 1, 0, 0, 0, 3833, 3827, 1, 0, 0, 0, 3834, 361, 1, 0, 0, 0, 3835, 3836, 5, 321, 0, 0, 3836, 3843, 7, 56, 0, 0, 3837, 3838, 5, 62, 0, 0, 3838, 3843, 5, 257, 0, 0, 3839, 3840, 3, 268, 134, 0, 3840, 3841, 7, 56, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3835, 1, 0, 0, 0, 3842, 3837, 1, 0, 0, 0, 3842, 3839, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3849, 3, 370, 185, 0, 3845, 3846, 5, 4, 0, 0, 3846, 3848, 3, 370, 185, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3849, 1, 0, 0, 0, 3852, 3853, 5, 136, 0, 0, 3853, 3854, 5, 2, 0, 0, 3854, 3855, 3, 268, 134, 0, 3855, 3856, 5, 3, 0, 0, 3856, 3862, 1, 0, 0, 0, 3857, 3862, 3, 370, 185, 0, 3858, 3862, 5, 114, 0, 0, 3859, 3862, 5, 161, 0, 0, 3860, 3862, 5, 250, 0, 0, 3861, 3852, 1, 0, 0, 0, 3861, 3857, 1, 0, 0, 0, 3861, 3858, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3861, 3860, 1, 0, 0, 0, 3862, 367, 1, 0, 0, 0, 3863, 3864, 3, 370, 185, 0, 3864, 369, 1, 0, 0, 0, 3865, 3870, 3, 376, 188, 0, 3866, 3867, 5, 5, 0, 0, 3867, 3869, 3, 376, 188, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 371, 1, 0, 0, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3874, 3, 376, 188, 0, 3874, 3875, 3, 374, 187, 0, 3875, 373, 1, 0, 0, 0, 3876, 3877, 5, 362, 0, 0, 3877, 3879, 3, 376, 188, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 3884, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3878, 1, 0, 0, 0, 3883, 3882, 1, 0, 0, 0, 3884, 375, 1, 0, 0, 0, 3885, 3888, 3, 378, 189, 0, 3886, 3888, 3, 396, 198, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3886, 1, 0, 0, 0, 3888, 377, 1, 0, 0, 0, 3889, 3894, 5, 388, 0, 0, 3890, 3894, 3, 380, 190, 0, 3891, 3894, 3, 394, 197, 0, 3892, 3894, 3, 398, 199, 0, 3893, 3889, 1, 0, 0, 0, 3893, 3890, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3892, 1, 0, 0, 0, 3894, 379, 1, 0, 0, 0, 3895, 3896, 7, 57, 0, 0, 3896, 381, 1, 0, 0, 0, 3897, 3898, 5, 389, 0, 0, 3898, 383, 1, 0, 0, 0, 3899, 3901, 5, 362, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3940, 5, 383, 0, 0, 3903, 3905, 5, 362, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3940, 5, 384, 0, 0, 3907, 3909, 5, 362, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3940, 7, 58, 0, 0, 3911, 3913, 5, 362, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3940, 5, 382, 0, 0, 3915, 3917, 5, 362, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3940, 5, 379, 0, 0, 3919, 3921, 5, 362, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3940, 5, 380, 0, 0, 3923, 3925, 5, 362, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3940, 5, 381, 0, 0, 3927, 3929, 5, 362, 0, 0, 3928, 3927, 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3940, 5, 386, 0, 0, 3931, 3933, 5, 362, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3940, 5, 385, 0, 0, 3935, 3937, 5, 362, 0, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 5, 387, 0, 0, 3939, 3900, 1, 0, 0, 0, 3939, 3904, 1, 0, 0, 0, 3939, 3908, 1, 0, 0, 0, 3939, 3912, 1, 0, 0, 0, 3939, 3916, 1, 0, 0, 0, 3939, 3920, 1, 0, 0, 0, 3939, 3924, 1, 0, 0, 0, 3939, 3928, 1, 0, 0, 0, 3939, 3932, 1, 0, 0, 0, 3939, 3936, 1, 0, 0, 0, 3940, 385, 1, 0, 0, 0, 3941, 3942, 5, 319, 0, 0, 3942, 3953, 3, 318, 159, 0, 3943, 3953, 3, 24, 12, 0, 3944, 3953, 3, 314, 157, 0, 3945, 3946, 7, 59, 0, 0, 3946, 3947, 5, 197, 0, 0, 3947, 3953, 5, 198, 0, 0, 3948, 3949, 5, 269, 0, 0, 3949, 3953, 3, 330, 165, 0, 3950, 3951, 5, 96, 0, 0, 3951, 3953, 5, 82, 0, 0, 3952, 3941, 1, 0, 0, 0, 3952, 3943, 1, 0, 0, 0, 3952, 3944, 1, 0, 0, 0, 3952, 3945, 1, 0, 0, 0, 3952, 3948, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3953, 387, 1, 0, 0, 0, 3954, 3955, 7, 60, 0, 0, 3955, 389, 1, 0, 0, 0, 3956, 3959, 3, 388, 194, 0, 3957, 3959, 5, 198, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3957, 1, 0, 0, 0, 3959, 391, 1, 0, 0, 0, 3960, 3963, 5, 382, 0, 0, 3961, 3963, 3, 388, 194, 0, 3962, 3960, 1, 0, 0, 0, 3962, 3961, 1, 0, 0, 0, 3963, 393, 1, 0, 0, 0, 3964, 3965, 7, 61, 0, 0, 3965, 395, 1, 0, 0, 0, 3966, 3967, 7, 62, 0, 0, 3967, 397, 1, 0, 0, 0, 3968, 3969, 7, 63, 0, 0, 3969, 399, 1, 0, 0, 0, 517, 403, 410, 414, 419, 426, 431, 439, 441, 460, 464, 470, 473, 476, 483, 486, 490, 493, 498, 510, 512, 520, 523, 527, 530, 536, 547, 553, 558, 591, 601, 612, 623, 634, 639, 648, 652, 658, 662, 667, 673, 685, 693, 699, 710, 714, 719, 734, 738, 745, 749, 755, 784, 788, 793, 800, 806, 809, 812, 816, 820, 828, 830, 839, 842, 851, 856, 862, 869, 872, 876, 887, 890, 896, 900, 915, 917, 925, 929, 935, 938, 942, 945, 951, 956, 960, 967, 970, 973, 980, 985, 994, 1002, 1008, 1011, 1014, 1020, 1024, 1029, 1032, 1036, 1038, 1046, 1054, 1057, 1064, 1067, 1070, 1079, 1084, 1090, 1095, 1098, 1102, 1105, 1109, 1137, 1140, 1148, 1154, 1157, 1160, 1165, 1173, 1178, 1184, 1190, 1193, 1200, 1207, 1215, 1232, 1259, 1262, 1268, 1277, 1286, 1292, 1297, 1302, 1309, 1314, 1319, 1326, 1334, 1337, 1341, 1353, 1357, 1364, 1480, 1488, 1496, 1505, 1515, 1519, 1522, 1526, 1532, 1544, 1556, 1561, 1570, 1578, 1583, 1585, 1593, 1598, 1602, 1605, 1613, 1618, 1627, 1632, 1635, 1640, 1644, 1649, 1651, 1655, 1664, 1672, 1678, 1689, 1696, 1705, 1710, 1713, 1736, 1738, 1750, 1757, 1760, 1767, 1771, 1777, 1785, 1792, 1795, 1803, 1814, 1825, 1833, 1839, 1851, 1858, 1865, 1877, 1885, 1891, 1897, 1900, 1916, 1923, 1934, 1943, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1985, 1990, 1992, 1996, 2007, 2013, 2019, 2022, 2024, 2036, 2040, 2043, 2047, 2053, 2057, 2065, 2069, 2072, 2075, 2078, 2082, 2086, 2091, 2095, 2098, 2101, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2128, 2134, 2141, 2146, 2149, 2152, 2156, 2166, 2170, 2172, 2175, 2179, 2185, 2189, 2200, 2210, 2214, 2226, 2238, 2253, 2258, 2264, 2271, 2287, 2292, 2305, 2310, 2318, 2324, 2328, 2331, 2336, 2343, 2349, 2358, 2368, 2383, 2388, 2390, 2395, 2404, 2417, 2422, 2426, 2433, 2438, 2442, 2445, 2448, 2462, 2475, 2480, 2484, 2487, 2491, 2497, 2500, 2507, 2519, 2530, 2543, 2554, 2559, 2567, 2572, 2586, 2595, 2598, 2603, 2610, 2613, 2619, 2625, 2628, 2633, 2638, 2642, 2648, 2652, 2655, 2660, 2663, 2668, 2672, 2675, 2678, 2684, 2689, 2696, 2699, 2717, 2719, 2722, 2733, 2742, 2749, 2757, 2764, 2769, 2772, 2775, 2783, 2791, 2797, 2805, 2813, 2820, 2827, 2829, 2842, 2848, 2850, 2860, 2866, 2868, 2876, 2880, 2889, 2892, 2898, 2902, 2904, 2913, 2925, 2927, 2934, 2941, 2947, 2953, 2955, 2962, 2970, 2978, 2984, 2989, 2996, 3002, 3005, 3009, 3011, 3018, 3027, 3034, 3044, 3049, 3053, 3063, 3070, 3083, 3085, 3093, 3095, 3099, 3107, 3116, 3122, 3130, 3135, 3147, 3152, 3155, 3161, 3165, 3170, 3175, 3180, 3186, 3207, 3209, 3220, 3232, 3244, 3248, 3257, 3261, 3279, 3282, 3290, 3299, 3308, 3331, 3347, 3354, 3357, 3366, 3370, 3374, 3386, 3411, 3418, 3421, 3436, 3457, 3461, 3463, 3473, 3475, 3485, 3500, 3502, 3515, 3519, 3526, 3531, 3539, 3544, 3553, 3585, 3602, 3606, 3612, 3618, 3627, 3631, 3633, 3640, 3648, 3656, 3664, 3672, 3685, 3692, 3695, 3702, 3710, 3718, 3732, 3737, 3742, 3745, 3758, 3782, 3792, 3795, 3804, 3807, 3809, 3812, 3815, 3833, 3842, 3849, 3861, 3870, 3880, 3883, 3887, 3893, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3928, 3932, 3936, 3939, 3952, 3958, 3962] \ No newline at end of file +[4, 1, 393, 3761, 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, 1, 0, 5, 0, 338, 8, 0, 10, 0, 12, 0, 341, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 347, 8, 1, 1, 2, 1, 2, 3, 2, 351, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 356, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 363, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 368, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 378, 8, 2, 10, 2, 12, 2, 381, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 400, 8, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 410, 8, 2, 1, 2, 3, 2, 413, 8, 2, 1, 2, 3, 2, 416, 8, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 2, 3, 2, 423, 8, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 434, 8, 2, 1, 2, 3, 2, 437, 8, 2, 1, 2, 1, 2, 3, 2, 441, 8, 2, 1, 2, 3, 2, 444, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 449, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 462, 8, 2, 10, 2, 12, 2, 465, 9, 2, 1, 2, 1, 2, 3, 2, 469, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 478, 8, 2, 1, 2, 3, 2, 481, 8, 2, 1, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 3, 2, 488, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 494, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 505, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 511, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 516, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 549, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 559, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 570, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 581, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 592, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 597, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 606, 8, 2, 1, 2, 1, 2, 3, 2, 610, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 616, 8, 2, 1, 2, 1, 2, 3, 2, 620, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 625, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 631, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 643, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 651, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 657, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 668, 8, 2, 1, 2, 1, 2, 3, 2, 672, 8, 2, 1, 2, 4, 2, 675, 8, 2, 11, 2, 12, 2, 676, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 692, 8, 2, 1, 2, 1, 2, 3, 2, 696, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 701, 8, 2, 10, 2, 12, 2, 704, 9, 2, 1, 2, 3, 2, 707, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 713, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 752, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 759, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 765, 8, 2, 1, 2, 3, 2, 768, 8, 2, 1, 2, 3, 2, 771, 8, 2, 1, 2, 1, 2, 3, 2, 775, 8, 2, 1, 2, 1, 2, 3, 2, 779, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 788, 8, 2, 10, 2, 12, 2, 791, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 799, 8, 2, 1, 2, 3, 2, 802, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 816, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 822, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 3, 2, 832, 8, 2, 1, 2, 1, 2, 3, 2, 836, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 849, 8, 2, 10, 2, 12, 2, 852, 9, 2, 3, 2, 854, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 860, 8, 2, 1, 2, 1, 2, 3, 2, 864, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 881, 8, 2, 10, 2, 12, 2, 884, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 891, 8, 2, 1, 2, 1, 2, 3, 2, 895, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 901, 8, 2, 1, 2, 3, 2, 904, 8, 2, 1, 2, 1, 2, 3, 2, 908, 8, 2, 1, 2, 3, 2, 911, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 917, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 922, 8, 2, 1, 2, 1, 2, 3, 2, 926, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 933, 8, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 3, 2, 939, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 946, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 951, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 960, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 3, 2, 977, 8, 2, 1, 2, 3, 2, 980, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 3, 2, 990, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 995, 8, 2, 1, 2, 3, 2, 998, 8, 2, 1, 2, 1, 2, 3, 2, 1002, 8, 2, 3, 2, 1004, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1020, 8, 2, 1, 2, 3, 2, 1023, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 3, 2, 1036, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1050, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1061, 8, 2, 1, 2, 3, 2, 1064, 8, 2, 1, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 3, 2, 1071, 8, 2, 1, 2, 1, 2, 3, 2, 1075, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1090, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1101, 8, 2, 10, 2, 12, 2, 1104, 9, 2, 3, 2, 1106, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1114, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1120, 8, 2, 1, 2, 3, 2, 1123, 8, 2, 1, 2, 3, 2, 1126, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1131, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1139, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1144, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1171, 8, 2, 10, 2, 12, 2, 1174, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1179, 8, 2, 10, 2, 12, 2, 1182, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1193, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1199, 8, 2, 10, 2, 12, 2, 1202, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1226, 8, 2, 10, 2, 12, 2, 1229, 9, 2, 3, 2, 1231, 8, 2, 1, 2, 1, 2, 5, 2, 1235, 8, 2, 10, 2, 12, 2, 1238, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1244, 8, 2, 10, 2, 12, 2, 1247, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1253, 8, 2, 10, 2, 12, 2, 1256, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1261, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1266, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1271, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1278, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1283, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1288, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1295, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1303, 8, 2, 10, 2, 12, 2, 1306, 9, 2, 3, 2, 1308, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1314, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1321, 8, 3, 1, 3, 1, 3, 3, 3, 1325, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1388, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1396, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1403, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1411, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1423, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1428, 8, 5, 1, 6, 3, 6, 1431, 8, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 3, 7, 1439, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1444, 8, 7, 3, 7, 1446, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1454, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1459, 8, 7, 1, 7, 1, 7, 3, 7, 1463, 8, 7, 1, 7, 3, 7, 1466, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1474, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1479, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1488, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1493, 8, 7, 1, 7, 3, 7, 1496, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1501, 8, 7, 1, 7, 1, 7, 3, 7, 1505, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1510, 8, 7, 3, 7, 1512, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 1517, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 1524, 8, 9, 10, 9, 12, 9, 1527, 9, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1534, 8, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1540, 8, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1549, 8, 12, 1, 13, 1, 13, 1, 13, 5, 13, 1554, 8, 13, 10, 13, 12, 13, 1557, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1563, 8, 14, 10, 14, 12, 14, 1566, 9, 14, 1, 15, 1, 15, 3, 15, 1570, 8, 15, 1, 15, 3, 15, 1573, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1598, 8, 17, 10, 17, 12, 17, 1601, 9, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1610, 8, 19, 10, 19, 12, 19, 1613, 9, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 1619, 8, 20, 1, 20, 3, 20, 1622, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1627, 8, 21, 10, 21, 12, 21, 1630, 9, 21, 1, 21, 3, 21, 1633, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1639, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 1645, 8, 23, 10, 23, 12, 23, 1648, 9, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1654, 8, 24, 1, 24, 3, 24, 1657, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1663, 8, 25, 10, 25, 12, 25, 1666, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1674, 8, 26, 10, 26, 12, 26, 1677, 9, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1687, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1695, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1701, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 4, 30, 1710, 8, 30, 11, 30, 12, 30, 1711, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1719, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1726, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1738, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1744, 8, 30, 10, 30, 12, 30, 1747, 9, 30, 1, 30, 5, 30, 1750, 8, 30, 10, 30, 12, 30, 1753, 9, 30, 1, 30, 5, 30, 1756, 8, 30, 10, 30, 12, 30, 1759, 9, 30, 3, 30, 1761, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 3, 37, 1777, 8, 37, 1, 38, 1, 38, 1, 38, 5, 38, 1782, 8, 38, 10, 38, 12, 38, 1785, 9, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1795, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1802, 8, 41, 10, 41, 12, 41, 1805, 9, 41, 3, 41, 1807, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1814, 8, 41, 10, 41, 12, 41, 1817, 9, 41, 3, 41, 1819, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1826, 8, 41, 10, 41, 12, 41, 1829, 9, 41, 3, 41, 1831, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1838, 8, 41, 10, 41, 12, 41, 1841, 9, 41, 3, 41, 1843, 8, 41, 1, 41, 3, 41, 1846, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1851, 8, 41, 3, 41, 1853, 8, 41, 1, 41, 1, 41, 3, 41, 1857, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1865, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1871, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1877, 8, 42, 1, 42, 5, 42, 1880, 8, 42, 10, 42, 12, 42, 1883, 9, 42, 1, 43, 1, 43, 1, 43, 4, 43, 1888, 8, 43, 11, 43, 12, 43, 1889, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1898, 8, 43, 10, 43, 12, 43, 1901, 9, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1909, 8, 43, 1, 44, 1, 44, 3, 44, 1913, 8, 44, 1, 44, 3, 44, 1916, 8, 44, 1, 44, 1, 44, 3, 44, 1920, 8, 44, 1, 45, 1, 45, 3, 45, 1924, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 1930, 8, 45, 10, 45, 12, 45, 1933, 9, 45, 1, 45, 3, 45, 1936, 8, 45, 1, 45, 3, 45, 1939, 8, 45, 1, 45, 3, 45, 1942, 8, 45, 1, 45, 3, 45, 1945, 8, 45, 1, 45, 1, 45, 3, 45, 1949, 8, 45, 1, 46, 1, 46, 3, 46, 1953, 8, 46, 1, 46, 5, 46, 1956, 8, 46, 10, 46, 12, 46, 1959, 9, 46, 1, 46, 3, 46, 1962, 8, 46, 1, 46, 3, 46, 1965, 8, 46, 1, 46, 3, 46, 1968, 8, 46, 1, 46, 3, 46, 1971, 8, 46, 1, 46, 1, 46, 3, 46, 1975, 8, 46, 1, 46, 5, 46, 1978, 8, 46, 10, 46, 12, 46, 1981, 9, 46, 1, 46, 3, 46, 1984, 8, 46, 1, 46, 3, 46, 1987, 8, 46, 1, 46, 3, 46, 1990, 8, 46, 1, 46, 3, 46, 1993, 8, 46, 3, 46, 1995, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2001, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2008, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2013, 8, 47, 1, 47, 3, 47, 2016, 8, 47, 1, 47, 3, 47, 2019, 8, 47, 1, 47, 1, 47, 3, 47, 2023, 8, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 2033, 8, 47, 1, 47, 1, 47, 3, 47, 2037, 8, 47, 3, 47, 2039, 8, 47, 1, 47, 3, 47, 2042, 8, 47, 1, 47, 1, 47, 3, 47, 2046, 8, 47, 1, 48, 1, 48, 5, 48, 2050, 8, 48, 10, 48, 12, 48, 2053, 9, 48, 1, 48, 3, 48, 2056, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 2067, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 2075, 8, 50, 3, 50, 2077, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 2084, 8, 51, 1, 51, 1, 51, 3, 51, 2088, 8, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2100, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2107, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 2120, 8, 53, 10, 53, 12, 53, 2123, 9, 53, 1, 53, 1, 53, 3, 53, 2127, 8, 53, 1, 54, 1, 54, 1, 54, 5, 54, 2132, 8, 54, 10, 54, 12, 54, 2135, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 5, 58, 2153, 8, 58, 10, 58, 12, 58, 2156, 9, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2166, 8, 59, 10, 59, 12, 59, 2169, 9, 59, 1, 59, 1, 59, 3, 59, 2173, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 2179, 8, 60, 10, 60, 12, 60, 2182, 9, 60, 1, 60, 5, 60, 2185, 8, 60, 10, 60, 12, 60, 2188, 9, 60, 1, 60, 3, 60, 2191, 8, 60, 1, 60, 3, 60, 2194, 8, 60, 1, 61, 3, 61, 2197, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2204, 8, 61, 1, 61, 3, 61, 2207, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2213, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2220, 8, 62, 10, 62, 12, 62, 2223, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2230, 8, 62, 10, 62, 12, 62, 2233, 9, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2245, 8, 62, 10, 62, 12, 62, 2248, 9, 62, 1, 62, 1, 62, 3, 62, 2252, 8, 62, 3, 62, 2254, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2259, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2266, 8, 64, 10, 64, 12, 64, 2269, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2278, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2283, 8, 64, 5, 64, 2285, 8, 64, 10, 64, 12, 64, 2288, 9, 64, 1, 64, 1, 64, 3, 64, 2292, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2299, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2304, 8, 65, 5, 65, 2306, 8, 65, 10, 65, 12, 65, 2309, 9, 65, 3, 65, 2311, 8, 65, 1, 65, 3, 65, 2314, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2326, 8, 66, 10, 66, 12, 66, 2329, 9, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2339, 8, 67, 10, 67, 12, 67, 2342, 9, 67, 1, 67, 1, 67, 3, 67, 2346, 8, 67, 1, 68, 1, 68, 3, 68, 2350, 8, 68, 1, 68, 3, 68, 2353, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2358, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2363, 8, 69, 1, 69, 1, 69, 3, 69, 2367, 8, 69, 1, 69, 3, 69, 2370, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2380, 8, 70, 10, 70, 12, 70, 2383, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2391, 8, 71, 10, 71, 12, 71, 2394, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2404, 8, 71, 10, 71, 12, 71, 2407, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2415, 8, 72, 10, 72, 12, 72, 2418, 9, 72, 1, 72, 1, 72, 3, 72, 2422, 8, 72, 1, 72, 3, 72, 2425, 8, 72, 1, 73, 1, 73, 3, 73, 2429, 8, 73, 1, 73, 3, 73, 2432, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 2444, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2451, 8, 76, 10, 76, 12, 76, 2454, 9, 76, 3, 76, 2456, 8, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2461, 8, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2466, 8, 76, 10, 76, 12, 76, 2469, 9, 76, 3, 76, 2471, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 3, 78, 2477, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2483, 8, 78, 10, 78, 12, 78, 2486, 9, 78, 3, 78, 2488, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 2493, 8, 79, 1, 79, 1, 79, 3, 79, 2497, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2503, 8, 79, 1, 79, 1, 79, 3, 79, 2507, 8, 79, 1, 80, 3, 80, 2510, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2515, 8, 80, 1, 80, 3, 80, 2518, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2523, 8, 80, 3, 80, 2525, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2531, 8, 81, 1, 82, 1, 82, 1, 82, 3, 82, 2536, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2543, 8, 82, 1, 83, 3, 83, 2546, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2564, 8, 83, 3, 83, 2566, 8, 83, 1, 83, 3, 83, 2569, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 5, 85, 2578, 8, 85, 10, 85, 12, 85, 2581, 9, 85, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2587, 8, 86, 10, 86, 12, 86, 2590, 9, 86, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 2596, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2602, 8, 88, 10, 88, 12, 88, 2605, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2612, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2617, 8, 90, 1, 90, 3, 90, 2620, 8, 90, 1, 90, 3, 90, 2623, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2631, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2639, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 2647, 8, 90, 10, 90, 12, 90, 2650, 9, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 2659, 8, 90, 10, 90, 12, 90, 2662, 9, 90, 3, 90, 2664, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2669, 8, 90, 1, 91, 1, 91, 1, 91, 3, 91, 2674, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2681, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2688, 8, 91, 3, 91, 2690, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2701, 8, 92, 10, 92, 12, 92, 2704, 9, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2709, 8, 92, 3, 92, 2711, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2719, 8, 92, 10, 92, 12, 92, 2722, 9, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2727, 8, 92, 3, 92, 2729, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 3, 94, 2737, 8, 94, 1, 95, 1, 95, 3, 95, 2741, 8, 95, 1, 96, 3, 96, 2744, 8, 96, 1, 96, 1, 96, 3, 96, 2748, 8, 96, 3, 96, 2750, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2759, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2771, 8, 97, 3, 97, 2773, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2780, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2787, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2793, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2799, 8, 97, 3, 97, 2801, 8, 97, 1, 98, 1, 98, 1, 98, 5, 98, 2806, 8, 98, 10, 98, 12, 98, 2809, 9, 98, 1, 99, 1, 99, 1, 99, 5, 99, 2814, 8, 99, 10, 99, 12, 99, 2817, 9, 99, 1, 100, 1, 100, 1, 100, 5, 100, 2822, 8, 100, 10, 100, 12, 100, 2825, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2830, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 2835, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 3, 103, 2842, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 2848, 8, 104, 1, 104, 3, 104, 2851, 8, 104, 1, 104, 1, 104, 3, 104, 2855, 8, 104, 3, 104, 2857, 8, 104, 1, 105, 1, 105, 1, 105, 5, 105, 2862, 8, 105, 10, 105, 12, 105, 2865, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 2871, 8, 106, 10, 106, 12, 106, 2874, 9, 106, 1, 106, 1, 106, 1, 107, 1, 107, 3, 107, 2880, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2888, 8, 108, 10, 108, 12, 108, 2891, 9, 108, 1, 108, 1, 108, 3, 108, 2895, 8, 108, 1, 109, 1, 109, 3, 109, 2899, 8, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 3, 112, 2909, 8, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2914, 8, 113, 10, 113, 12, 113, 2917, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2929, 8, 114, 3, 114, 2931, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2939, 8, 114, 10, 114, 12, 114, 2942, 9, 114, 1, 115, 3, 115, 2945, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2953, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2960, 8, 115, 10, 115, 12, 115, 2963, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2968, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2976, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2981, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2991, 8, 115, 10, 115, 12, 115, 2994, 9, 115, 1, 115, 1, 115, 3, 115, 2998, 8, 115, 1, 115, 3, 115, 3001, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3007, 8, 115, 1, 115, 1, 115, 3, 115, 3011, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3016, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3021, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3026, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3032, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3053, 8, 116, 10, 116, 12, 116, 3056, 9, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3066, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3088, 8, 118, 11, 118, 12, 118, 3089, 1, 118, 1, 118, 3, 118, 3094, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3101, 8, 118, 11, 118, 12, 118, 3102, 1, 118, 1, 118, 3, 118, 3107, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3123, 8, 118, 10, 118, 12, 118, 3126, 9, 118, 3, 118, 3128, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3136, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3145, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3154, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3175, 8, 118, 11, 118, 12, 118, 3176, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3193, 8, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3198, 8, 118, 10, 118, 12, 118, 3201, 9, 118, 3, 118, 3203, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3212, 8, 118, 1, 118, 1, 118, 3, 118, 3216, 8, 118, 1, 118, 1, 118, 3, 118, 3220, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3230, 8, 118, 11, 118, 12, 118, 3231, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3257, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3264, 8, 118, 1, 118, 3, 118, 3267, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3282, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3303, 8, 118, 1, 118, 1, 118, 3, 118, 3307, 8, 118, 3, 118, 3309, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3319, 8, 118, 10, 118, 12, 118, 3322, 9, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3331, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 4, 120, 3344, 8, 120, 11, 120, 12, 120, 3345, 3, 120, 3348, 8, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 3, 125, 3361, 8, 125, 1, 126, 1, 126, 3, 126, 3365, 8, 126, 1, 127, 1, 127, 1, 127, 4, 127, 3370, 8, 127, 11, 127, 12, 127, 3371, 1, 128, 1, 128, 1, 128, 3, 128, 3377, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 3, 130, 3385, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3390, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 3, 133, 3399, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3431, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3450, 8, 135, 10, 135, 12, 135, 3453, 9, 135, 3, 135, 3455, 8, 135, 1, 135, 1, 135, 3, 135, 3459, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3465, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3471, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3478, 8, 135, 10, 135, 12, 135, 3481, 9, 135, 1, 135, 3, 135, 3484, 8, 135, 3, 135, 3486, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 3491, 8, 136, 10, 136, 12, 136, 3494, 9, 136, 1, 137, 1, 137, 1, 137, 5, 137, 3499, 8, 137, 10, 137, 12, 137, 3502, 9, 137, 1, 138, 1, 138, 1, 138, 5, 138, 3507, 8, 138, 10, 138, 12, 138, 3510, 9, 138, 1, 139, 1, 139, 1, 139, 5, 139, 3515, 8, 139, 10, 139, 12, 139, 3518, 9, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3527, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 5, 142, 3535, 8, 142, 10, 142, 12, 142, 3538, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3544, 8, 143, 1, 143, 1, 143, 3, 143, 3548, 8, 143, 1, 144, 1, 144, 1, 144, 5, 144, 3553, 8, 144, 10, 144, 12, 144, 3556, 9, 144, 1, 145, 1, 145, 1, 145, 5, 145, 3561, 8, 145, 10, 145, 12, 145, 3564, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3579, 8, 146, 1, 147, 1, 147, 3, 147, 3583, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3588, 8, 147, 1, 147, 1, 147, 3, 147, 3592, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 3608, 8, 149, 10, 149, 12, 149, 3611, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 5, 150, 3624, 8, 150, 10, 150, 12, 150, 3627, 9, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 5, 150, 3634, 8, 150, 10, 150, 12, 150, 3637, 9, 150, 3, 150, 3639, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 5, 150, 3646, 8, 150, 10, 150, 12, 150, 3649, 9, 150, 3, 150, 3651, 8, 150, 3, 150, 3653, 8, 150, 1, 150, 3, 150, 3656, 8, 150, 1, 150, 3, 150, 3659, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3669, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3678, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3683, 8, 153, 10, 153, 12, 153, 3686, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3697, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3704, 8, 156, 10, 156, 12, 156, 3707, 9, 156, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 4, 158, 3714, 8, 158, 11, 158, 12, 158, 3715, 1, 158, 3, 158, 3719, 8, 158, 1, 159, 1, 159, 3, 159, 3723, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3729, 8, 160, 1, 161, 1, 161, 1, 162, 3, 162, 3734, 8, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 3751, 8, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 9, 1102, 1172, 1180, 1200, 1227, 1236, 1245, 1254, 1304, 4, 84, 228, 232, 236, 168, 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, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4365, 0, 339, 1, 0, 0, 0, 2, 344, 1, 0, 0, 0, 4, 1307, 1, 0, 0, 0, 6, 1402, 1, 0, 0, 0, 8, 1404, 1, 0, 0, 0, 10, 1416, 1, 0, 0, 0, 12, 1430, 1, 0, 0, 0, 14, 1511, 1, 0, 0, 0, 16, 1513, 1, 0, 0, 0, 18, 1518, 1, 0, 0, 0, 20, 1539, 1, 0, 0, 0, 22, 1541, 1, 0, 0, 0, 24, 1548, 1, 0, 0, 0, 26, 1550, 1, 0, 0, 0, 28, 1558, 1, 0, 0, 0, 30, 1567, 1, 0, 0, 0, 32, 1578, 1, 0, 0, 0, 34, 1599, 1, 0, 0, 0, 36, 1602, 1, 0, 0, 0, 38, 1605, 1, 0, 0, 0, 40, 1616, 1, 0, 0, 0, 42, 1632, 1, 0, 0, 0, 44, 1638, 1, 0, 0, 0, 46, 1640, 1, 0, 0, 0, 48, 1651, 1, 0, 0, 0, 50, 1658, 1, 0, 0, 0, 52, 1669, 1, 0, 0, 0, 54, 1686, 1, 0, 0, 0, 56, 1694, 1, 0, 0, 0, 58, 1696, 1, 0, 0, 0, 60, 1760, 1, 0, 0, 0, 62, 1762, 1, 0, 0, 0, 64, 1764, 1, 0, 0, 0, 66, 1766, 1, 0, 0, 0, 68, 1768, 1, 0, 0, 0, 70, 1770, 1, 0, 0, 0, 72, 1772, 1, 0, 0, 0, 74, 1776, 1, 0, 0, 0, 76, 1778, 1, 0, 0, 0, 78, 1786, 1, 0, 0, 0, 80, 1794, 1, 0, 0, 0, 82, 1806, 1, 0, 0, 0, 84, 1858, 1, 0, 0, 0, 86, 1908, 1, 0, 0, 0, 88, 1912, 1, 0, 0, 0, 90, 1948, 1, 0, 0, 0, 92, 1994, 1, 0, 0, 0, 94, 2015, 1, 0, 0, 0, 96, 2047, 1, 0, 0, 0, 98, 2059, 1, 0, 0, 0, 100, 2062, 1, 0, 0, 0, 102, 2078, 1, 0, 0, 0, 104, 2092, 1, 0, 0, 0, 106, 2126, 1, 0, 0, 0, 108, 2128, 1, 0, 0, 0, 110, 2136, 1, 0, 0, 0, 112, 2140, 1, 0, 0, 0, 114, 2143, 1, 0, 0, 0, 116, 2146, 1, 0, 0, 0, 118, 2172, 1, 0, 0, 0, 120, 2174, 1, 0, 0, 0, 122, 2212, 1, 0, 0, 0, 124, 2253, 1, 0, 0, 0, 126, 2258, 1, 0, 0, 0, 128, 2291, 1, 0, 0, 0, 130, 2313, 1, 0, 0, 0, 132, 2315, 1, 0, 0, 0, 134, 2345, 1, 0, 0, 0, 136, 2347, 1, 0, 0, 0, 138, 2354, 1, 0, 0, 0, 140, 2371, 1, 0, 0, 0, 142, 2386, 1, 0, 0, 0, 144, 2410, 1, 0, 0, 0, 146, 2426, 1, 0, 0, 0, 148, 2433, 1, 0, 0, 0, 150, 2437, 1, 0, 0, 0, 152, 2440, 1, 0, 0, 0, 154, 2472, 1, 0, 0, 0, 156, 2487, 1, 0, 0, 0, 158, 2506, 1, 0, 0, 0, 160, 2524, 1, 0, 0, 0, 162, 2530, 1, 0, 0, 0, 164, 2532, 1, 0, 0, 0, 166, 2568, 1, 0, 0, 0, 168, 2570, 1, 0, 0, 0, 170, 2574, 1, 0, 0, 0, 172, 2582, 1, 0, 0, 0, 174, 2593, 1, 0, 0, 0, 176, 2597, 1, 0, 0, 0, 178, 2608, 1, 0, 0, 0, 180, 2668, 1, 0, 0, 0, 182, 2689, 1, 0, 0, 0, 184, 2710, 1, 0, 0, 0, 186, 2730, 1, 0, 0, 0, 188, 2736, 1, 0, 0, 0, 190, 2740, 1, 0, 0, 0, 192, 2749, 1, 0, 0, 0, 194, 2800, 1, 0, 0, 0, 196, 2802, 1, 0, 0, 0, 198, 2810, 1, 0, 0, 0, 200, 2818, 1, 0, 0, 0, 202, 2826, 1, 0, 0, 0, 204, 2834, 1, 0, 0, 0, 206, 2841, 1, 0, 0, 0, 208, 2847, 1, 0, 0, 0, 210, 2858, 1, 0, 0, 0, 212, 2866, 1, 0, 0, 0, 214, 2879, 1, 0, 0, 0, 216, 2894, 1, 0, 0, 0, 218, 2898, 1, 0, 0, 0, 220, 2900, 1, 0, 0, 0, 222, 2902, 1, 0, 0, 0, 224, 2908, 1, 0, 0, 0, 226, 2910, 1, 0, 0, 0, 228, 2930, 1, 0, 0, 0, 230, 3025, 1, 0, 0, 0, 232, 3031, 1, 0, 0, 0, 234, 3057, 1, 0, 0, 0, 236, 3308, 1, 0, 0, 0, 238, 3330, 1, 0, 0, 0, 240, 3347, 1, 0, 0, 0, 242, 3349, 1, 0, 0, 0, 244, 3351, 1, 0, 0, 0, 246, 3353, 1, 0, 0, 0, 248, 3355, 1, 0, 0, 0, 250, 3357, 1, 0, 0, 0, 252, 3362, 1, 0, 0, 0, 254, 3369, 1, 0, 0, 0, 256, 3373, 1, 0, 0, 0, 258, 3378, 1, 0, 0, 0, 260, 3384, 1, 0, 0, 0, 262, 3391, 1, 0, 0, 0, 264, 3393, 1, 0, 0, 0, 266, 3398, 1, 0, 0, 0, 268, 3430, 1, 0, 0, 0, 270, 3485, 1, 0, 0, 0, 272, 3487, 1, 0, 0, 0, 274, 3495, 1, 0, 0, 0, 276, 3503, 1, 0, 0, 0, 278, 3511, 1, 0, 0, 0, 280, 3526, 1, 0, 0, 0, 282, 3528, 1, 0, 0, 0, 284, 3531, 1, 0, 0, 0, 286, 3539, 1, 0, 0, 0, 288, 3549, 1, 0, 0, 0, 290, 3557, 1, 0, 0, 0, 292, 3578, 1, 0, 0, 0, 294, 3580, 1, 0, 0, 0, 296, 3593, 1, 0, 0, 0, 298, 3598, 1, 0, 0, 0, 300, 3658, 1, 0, 0, 0, 302, 3668, 1, 0, 0, 0, 304, 3677, 1, 0, 0, 0, 306, 3679, 1, 0, 0, 0, 308, 3696, 1, 0, 0, 0, 310, 3698, 1, 0, 0, 0, 312, 3700, 1, 0, 0, 0, 314, 3708, 1, 0, 0, 0, 316, 3718, 1, 0, 0, 0, 318, 3722, 1, 0, 0, 0, 320, 3728, 1, 0, 0, 0, 322, 3730, 1, 0, 0, 0, 324, 3733, 1, 0, 0, 0, 326, 3750, 1, 0, 0, 0, 328, 3752, 1, 0, 0, 0, 330, 3754, 1, 0, 0, 0, 332, 3756, 1, 0, 0, 0, 334, 3758, 1, 0, 0, 0, 336, 338, 3, 2, 1, 0, 337, 336, 1, 0, 0, 0, 338, 341, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 342, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 343, 5, 0, 0, 1, 343, 1, 1, 0, 0, 0, 344, 346, 3, 4, 2, 0, 345, 347, 5, 1, 0, 0, 346, 345, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 3, 1, 0, 0, 0, 348, 1308, 3, 12, 6, 0, 349, 351, 3, 28, 14, 0, 350, 349, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 1308, 3, 60, 30, 0, 353, 355, 5, 330, 0, 0, 354, 356, 3, 22, 11, 0, 355, 354, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 1308, 3, 62, 31, 0, 358, 359, 5, 269, 0, 0, 359, 362, 5, 37, 0, 0, 360, 363, 3, 318, 159, 0, 361, 363, 3, 328, 164, 0, 362, 360, 1, 0, 0, 0, 362, 361, 1, 0, 0, 0, 363, 1308, 1, 0, 0, 0, 364, 365, 5, 59, 0, 0, 365, 367, 3, 22, 11, 0, 366, 368, 3, 148, 74, 0, 367, 366, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 379, 3, 64, 32, 0, 370, 371, 5, 51, 0, 0, 371, 378, 3, 328, 164, 0, 372, 373, 5, 170, 0, 0, 373, 378, 3, 328, 164, 0, 374, 375, 5, 346, 0, 0, 375, 376, 7, 0, 0, 0, 376, 378, 3, 38, 19, 0, 377, 370, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 374, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 1308, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 383, 5, 11, 0, 0, 383, 384, 3, 22, 11, 0, 384, 385, 3, 62, 31, 0, 385, 386, 5, 269, 0, 0, 386, 387, 7, 0, 0, 0, 387, 388, 3, 38, 19, 0, 388, 1308, 1, 0, 0, 0, 389, 390, 5, 11, 0, 0, 390, 391, 3, 22, 11, 0, 391, 392, 3, 62, 31, 0, 392, 393, 5, 269, 0, 0, 393, 394, 5, 170, 0, 0, 394, 395, 3, 328, 164, 0, 395, 1308, 1, 0, 0, 0, 396, 397, 5, 96, 0, 0, 397, 399, 3, 22, 11, 0, 398, 400, 3, 150, 75, 0, 399, 398, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 3, 62, 31, 0, 402, 404, 7, 1, 0, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 1308, 1, 0, 0, 0, 405, 406, 5, 273, 0, 0, 406, 409, 7, 2, 0, 0, 407, 408, 7, 3, 0, 0, 408, 410, 3, 198, 99, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 415, 1, 0, 0, 0, 411, 413, 5, 163, 0, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 416, 3, 328, 164, 0, 415, 412, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1308, 1, 0, 0, 0, 417, 419, 5, 59, 0, 0, 418, 420, 5, 298, 0, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 422, 1, 0, 0, 0, 421, 423, 5, 109, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 426, 5, 293, 0, 0, 425, 427, 3, 148, 74, 0, 426, 425, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 433, 3, 66, 33, 0, 429, 430, 5, 2, 0, 0, 430, 431, 3, 288, 144, 0, 431, 432, 5, 3, 0, 0, 432, 434, 1, 0, 0, 0, 433, 429, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 436, 1, 0, 0, 0, 435, 437, 3, 32, 16, 0, 436, 435, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 443, 3, 34, 17, 0, 439, 441, 5, 20, 0, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 444, 3, 12, 6, 0, 443, 440, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 1308, 1, 0, 0, 0, 445, 446, 5, 59, 0, 0, 446, 448, 5, 293, 0, 0, 447, 449, 3, 148, 74, 0, 448, 447, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 163, 0, 0, 452, 463, 3, 68, 34, 0, 453, 462, 3, 32, 16, 0, 454, 462, 3, 194, 97, 0, 455, 462, 3, 54, 27, 0, 456, 457, 5, 170, 0, 0, 457, 462, 3, 328, 164, 0, 458, 459, 5, 297, 0, 0, 459, 462, 3, 38, 19, 0, 460, 462, 3, 36, 18, 0, 461, 453, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 461, 455, 1, 0, 0, 0, 461, 456, 1, 0, 0, 0, 461, 458, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 1308, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 59, 0, 0, 467, 469, 5, 208, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 5, 244, 0, 0, 471, 472, 5, 293, 0, 0, 472, 477, 3, 66, 33, 0, 473, 474, 5, 2, 0, 0, 474, 475, 3, 288, 144, 0, 475, 476, 5, 3, 0, 0, 476, 478, 1, 0, 0, 0, 477, 473, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 1, 0, 0, 0, 479, 481, 3, 32, 16, 0, 480, 479, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 487, 3, 34, 17, 0, 483, 485, 5, 20, 0, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 488, 3, 12, 6, 0, 487, 484, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 1308, 1, 0, 0, 0, 489, 490, 5, 13, 0, 0, 490, 491, 5, 293, 0, 0, 491, 493, 3, 68, 34, 0, 492, 494, 3, 18, 9, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 5, 55, 0, 0, 496, 504, 5, 282, 0, 0, 497, 505, 5, 196, 0, 0, 498, 499, 5, 119, 0, 0, 499, 500, 5, 50, 0, 0, 500, 505, 3, 76, 38, 0, 501, 502, 5, 119, 0, 0, 502, 503, 5, 10, 0, 0, 503, 505, 5, 50, 0, 0, 504, 497, 1, 0, 0, 0, 504, 498, 1, 0, 0, 0, 504, 501, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 1308, 1, 0, 0, 0, 506, 507, 5, 13, 0, 0, 507, 510, 5, 294, 0, 0, 508, 509, 7, 3, 0, 0, 509, 511, 3, 62, 31, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 55, 0, 0, 513, 515, 5, 282, 0, 0, 514, 516, 5, 196, 0, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 1308, 1, 0, 0, 0, 517, 518, 5, 11, 0, 0, 518, 519, 5, 293, 0, 0, 519, 520, 3, 68, 34, 0, 520, 521, 5, 8, 0, 0, 521, 522, 5, 49, 0, 0, 522, 523, 3, 274, 137, 0, 523, 1308, 1, 0, 0, 0, 524, 525, 5, 11, 0, 0, 525, 526, 5, 293, 0, 0, 526, 527, 3, 68, 34, 0, 527, 528, 5, 8, 0, 0, 528, 529, 5, 50, 0, 0, 529, 530, 5, 2, 0, 0, 530, 531, 3, 272, 136, 0, 531, 532, 5, 3, 0, 0, 532, 1308, 1, 0, 0, 0, 533, 534, 5, 11, 0, 0, 534, 535, 5, 293, 0, 0, 535, 536, 3, 68, 34, 0, 536, 537, 5, 241, 0, 0, 537, 538, 5, 49, 0, 0, 538, 539, 3, 74, 37, 0, 539, 540, 5, 309, 0, 0, 540, 541, 3, 78, 39, 0, 541, 1308, 1, 0, 0, 0, 542, 543, 5, 11, 0, 0, 543, 544, 5, 293, 0, 0, 544, 545, 3, 68, 34, 0, 545, 546, 5, 96, 0, 0, 546, 548, 5, 49, 0, 0, 547, 549, 3, 150, 75, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 3, 74, 37, 0, 551, 1308, 1, 0, 0, 0, 552, 553, 5, 11, 0, 0, 553, 554, 5, 293, 0, 0, 554, 555, 3, 68, 34, 0, 555, 556, 5, 96, 0, 0, 556, 558, 5, 50, 0, 0, 557, 559, 3, 150, 75, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 2, 0, 0, 561, 562, 3, 76, 38, 0, 562, 563, 5, 3, 0, 0, 563, 1308, 1, 0, 0, 0, 564, 569, 5, 11, 0, 0, 565, 566, 5, 293, 0, 0, 566, 570, 3, 68, 34, 0, 567, 568, 5, 338, 0, 0, 568, 570, 3, 72, 36, 0, 569, 565, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 5, 241, 0, 0, 572, 573, 5, 309, 0, 0, 573, 574, 3, 198, 99, 0, 574, 1308, 1, 0, 0, 0, 575, 580, 5, 11, 0, 0, 576, 577, 5, 293, 0, 0, 577, 581, 3, 68, 34, 0, 578, 579, 5, 338, 0, 0, 579, 581, 3, 72, 36, 0, 580, 576, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 5, 269, 0, 0, 583, 584, 5, 297, 0, 0, 584, 585, 3, 38, 19, 0, 585, 1308, 1, 0, 0, 0, 586, 591, 5, 11, 0, 0, 587, 588, 5, 293, 0, 0, 588, 592, 3, 68, 34, 0, 589, 590, 5, 338, 0, 0, 590, 592, 3, 72, 36, 0, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 328, 0, 0, 594, 596, 5, 297, 0, 0, 595, 597, 3, 150, 75, 0, 596, 595, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 3, 38, 19, 0, 599, 1308, 1, 0, 0, 0, 600, 601, 5, 11, 0, 0, 601, 602, 5, 293, 0, 0, 602, 603, 3, 68, 34, 0, 603, 605, 7, 4, 0, 0, 604, 606, 5, 49, 0, 0, 605, 604, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 609, 3, 74, 37, 0, 608, 610, 3, 326, 163, 0, 609, 608, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 1308, 1, 0, 0, 0, 611, 612, 5, 11, 0, 0, 612, 613, 5, 293, 0, 0, 613, 615, 3, 68, 34, 0, 614, 616, 3, 18, 9, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 619, 5, 39, 0, 0, 618, 620, 5, 49, 0, 0, 619, 618, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 3, 74, 37, 0, 622, 624, 3, 286, 143, 0, 623, 625, 3, 266, 133, 0, 624, 623, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 1308, 1, 0, 0, 0, 626, 627, 5, 11, 0, 0, 627, 628, 5, 293, 0, 0, 628, 630, 3, 68, 34, 0, 629, 631, 3, 18, 9, 0, 630, 629, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 5, 244, 0, 0, 633, 634, 5, 50, 0, 0, 634, 635, 5, 2, 0, 0, 635, 636, 3, 276, 138, 0, 636, 637, 5, 3, 0, 0, 637, 1308, 1, 0, 0, 0, 638, 639, 5, 11, 0, 0, 639, 640, 5, 293, 0, 0, 640, 642, 3, 68, 34, 0, 641, 643, 3, 18, 9, 0, 642, 641, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 5, 269, 0, 0, 645, 646, 5, 266, 0, 0, 646, 650, 3, 328, 164, 0, 647, 648, 5, 346, 0, 0, 648, 649, 5, 267, 0, 0, 649, 651, 3, 38, 19, 0, 650, 647, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 1308, 1, 0, 0, 0, 652, 653, 5, 11, 0, 0, 653, 654, 5, 293, 0, 0, 654, 656, 3, 68, 34, 0, 655, 657, 3, 18, 9, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 5, 269, 0, 0, 659, 660, 5, 267, 0, 0, 660, 661, 3, 38, 19, 0, 661, 1308, 1, 0, 0, 0, 662, 667, 5, 11, 0, 0, 663, 664, 5, 293, 0, 0, 664, 668, 3, 68, 34, 0, 665, 666, 5, 338, 0, 0, 666, 668, 3, 72, 36, 0, 667, 663, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 5, 8, 0, 0, 670, 672, 3, 148, 74, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 674, 1, 0, 0, 0, 673, 675, 3, 16, 8, 0, 674, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 1308, 1, 0, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 5, 293, 0, 0, 680, 681, 3, 68, 34, 0, 681, 682, 3, 18, 9, 0, 682, 683, 5, 241, 0, 0, 683, 684, 5, 309, 0, 0, 684, 685, 3, 18, 9, 0, 685, 1308, 1, 0, 0, 0, 686, 691, 5, 11, 0, 0, 687, 688, 5, 293, 0, 0, 688, 692, 3, 68, 34, 0, 689, 690, 5, 338, 0, 0, 690, 692, 3, 72, 36, 0, 691, 687, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 695, 5, 96, 0, 0, 694, 696, 3, 150, 75, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 702, 3, 18, 9, 0, 698, 699, 5, 4, 0, 0, 699, 701, 3, 18, 9, 0, 700, 698, 1, 0, 0, 0, 701, 704, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 706, 1, 0, 0, 0, 704, 702, 1, 0, 0, 0, 705, 707, 5, 230, 0, 0, 706, 705, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 1308, 1, 0, 0, 0, 708, 709, 5, 11, 0, 0, 709, 710, 5, 293, 0, 0, 710, 712, 3, 68, 34, 0, 711, 713, 3, 18, 9, 0, 712, 711, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 5, 269, 0, 0, 715, 716, 5, 170, 0, 0, 716, 717, 3, 328, 164, 0, 717, 1308, 1, 0, 0, 0, 718, 719, 5, 11, 0, 0, 719, 720, 5, 293, 0, 0, 720, 721, 3, 68, 34, 0, 721, 722, 5, 237, 0, 0, 722, 723, 5, 219, 0, 0, 723, 1308, 1, 0, 0, 0, 724, 725, 5, 11, 0, 0, 725, 726, 5, 176, 0, 0, 726, 727, 5, 338, 0, 0, 727, 728, 3, 72, 36, 0, 728, 729, 7, 5, 0, 0, 729, 730, 5, 248, 0, 0, 730, 1308, 1, 0, 0, 0, 731, 732, 5, 11, 0, 0, 732, 733, 5, 176, 0, 0, 733, 734, 5, 338, 0, 0, 734, 735, 3, 72, 36, 0, 735, 736, 5, 269, 0, 0, 736, 737, 5, 297, 0, 0, 737, 738, 3, 38, 19, 0, 738, 1308, 1, 0, 0, 0, 739, 740, 5, 96, 0, 0, 740, 742, 5, 293, 0, 0, 741, 743, 3, 150, 75, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 746, 3, 68, 34, 0, 745, 747, 5, 230, 0, 0, 746, 745, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 1308, 1, 0, 0, 0, 748, 749, 5, 96, 0, 0, 749, 751, 5, 338, 0, 0, 750, 752, 3, 150, 75, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 1308, 3, 72, 36, 0, 754, 755, 5, 96, 0, 0, 755, 756, 5, 176, 0, 0, 756, 758, 5, 338, 0, 0, 757, 759, 3, 150, 75, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 1308, 3, 72, 36, 0, 761, 764, 5, 59, 0, 0, 762, 763, 5, 208, 0, 0, 763, 765, 5, 244, 0, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 770, 1, 0, 0, 0, 766, 768, 5, 128, 0, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 771, 5, 298, 0, 0, 770, 767, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 774, 5, 338, 0, 0, 773, 775, 3, 148, 74, 0, 774, 773, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 778, 3, 70, 35, 0, 777, 779, 3, 176, 88, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 789, 1, 0, 0, 0, 780, 781, 5, 51, 0, 0, 781, 788, 3, 328, 164, 0, 782, 783, 5, 218, 0, 0, 783, 784, 5, 203, 0, 0, 784, 788, 3, 168, 84, 0, 785, 786, 5, 297, 0, 0, 786, 788, 3, 38, 19, 0, 787, 780, 1, 0, 0, 0, 787, 782, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 5, 20, 0, 0, 793, 794, 3, 12, 6, 0, 794, 1308, 1, 0, 0, 0, 795, 798, 5, 59, 0, 0, 796, 797, 5, 208, 0, 0, 797, 799, 5, 244, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 801, 1, 0, 0, 0, 800, 802, 5, 128, 0, 0, 801, 800, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 5, 298, 0, 0, 804, 805, 5, 338, 0, 0, 805, 810, 3, 70, 35, 0, 806, 807, 5, 2, 0, 0, 807, 808, 3, 284, 142, 0, 808, 809, 5, 3, 0, 0, 809, 811, 1, 0, 0, 0, 810, 806, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 815, 3, 32, 16, 0, 813, 814, 5, 207, 0, 0, 814, 816, 3, 38, 19, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 1308, 1, 0, 0, 0, 817, 818, 5, 11, 0, 0, 818, 819, 5, 338, 0, 0, 819, 821, 3, 72, 36, 0, 820, 822, 5, 20, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 3, 12, 6, 0, 824, 1308, 1, 0, 0, 0, 825, 828, 5, 59, 0, 0, 826, 827, 5, 208, 0, 0, 827, 829, 5, 244, 0, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 831, 1, 0, 0, 0, 830, 832, 5, 298, 0, 0, 831, 830, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 835, 5, 125, 0, 0, 834, 836, 3, 148, 74, 0, 835, 834, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 3, 310, 155, 0, 838, 839, 5, 20, 0, 0, 839, 853, 3, 328, 164, 0, 840, 841, 5, 332, 0, 0, 841, 842, 3, 318, 159, 0, 842, 843, 3, 328, 164, 0, 843, 850, 1, 0, 0, 0, 844, 845, 5, 4, 0, 0, 845, 846, 3, 318, 159, 0, 846, 847, 3, 328, 164, 0, 847, 849, 1, 0, 0, 0, 848, 844, 1, 0, 0, 0, 849, 852, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 840, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 1308, 1, 0, 0, 0, 855, 856, 5, 59, 0, 0, 856, 857, 5, 176, 0, 0, 857, 859, 5, 338, 0, 0, 858, 860, 3, 148, 74, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 863, 3, 70, 35, 0, 862, 864, 3, 32, 16, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 882, 1, 0, 0, 0, 865, 866, 5, 207, 0, 0, 866, 881, 3, 38, 19, 0, 867, 868, 5, 218, 0, 0, 868, 869, 5, 31, 0, 0, 869, 881, 3, 212, 106, 0, 870, 881, 3, 10, 5, 0, 871, 881, 3, 8, 4, 0, 872, 881, 3, 194, 97, 0, 873, 881, 3, 54, 27, 0, 874, 875, 5, 170, 0, 0, 875, 881, 3, 328, 164, 0, 876, 877, 5, 51, 0, 0, 877, 881, 3, 328, 164, 0, 878, 879, 5, 297, 0, 0, 879, 881, 3, 38, 19, 0, 880, 865, 1, 0, 0, 0, 880, 867, 1, 0, 0, 0, 880, 870, 1, 0, 0, 0, 880, 871, 1, 0, 0, 0, 880, 872, 1, 0, 0, 0, 880, 873, 1, 0, 0, 0, 880, 874, 1, 0, 0, 0, 880, 876, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 881, 884, 1, 0, 0, 0, 882, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 885, 886, 5, 20, 0, 0, 886, 887, 3, 12, 6, 0, 887, 1308, 1, 0, 0, 0, 888, 890, 5, 96, 0, 0, 889, 891, 5, 298, 0, 0, 890, 889, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 894, 5, 125, 0, 0, 893, 895, 3, 150, 75, 0, 894, 893, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 1308, 3, 308, 154, 0, 897, 900, 5, 81, 0, 0, 898, 899, 5, 208, 0, 0, 899, 901, 5, 244, 0, 0, 900, 898, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 903, 1, 0, 0, 0, 902, 904, 5, 336, 0, 0, 903, 902, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 907, 3, 308, 154, 0, 906, 908, 3, 270, 135, 0, 907, 906, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 910, 1, 0, 0, 0, 909, 911, 3, 282, 141, 0, 910, 909, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 1308, 1, 0, 0, 0, 912, 913, 5, 96, 0, 0, 913, 914, 5, 298, 0, 0, 914, 916, 5, 336, 0, 0, 915, 917, 3, 150, 75, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 921, 1, 0, 0, 0, 918, 922, 3, 68, 34, 0, 919, 922, 3, 72, 36, 0, 920, 922, 3, 308, 154, 0, 921, 918, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 920, 1, 0, 0, 0, 922, 1308, 1, 0, 0, 0, 923, 925, 5, 106, 0, 0, 924, 926, 7, 6, 0, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 1308, 3, 4, 2, 0, 928, 929, 5, 273, 0, 0, 929, 932, 5, 294, 0, 0, 930, 931, 7, 3, 0, 0, 931, 933, 3, 62, 31, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 938, 1, 0, 0, 0, 934, 936, 5, 163, 0, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 3, 328, 164, 0, 938, 935, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 1308, 1, 0, 0, 0, 940, 941, 5, 273, 0, 0, 941, 942, 5, 293, 0, 0, 942, 945, 5, 108, 0, 0, 943, 944, 7, 3, 0, 0, 944, 946, 3, 62, 31, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 948, 5, 163, 0, 0, 948, 950, 3, 328, 164, 0, 949, 951, 3, 18, 9, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 1308, 1, 0, 0, 0, 952, 953, 5, 273, 0, 0, 953, 954, 5, 297, 0, 0, 954, 959, 3, 68, 34, 0, 955, 956, 5, 2, 0, 0, 956, 957, 3, 42, 21, 0, 957, 958, 5, 3, 0, 0, 958, 960, 1, 0, 0, 0, 959, 955, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 1308, 1, 0, 0, 0, 961, 962, 5, 273, 0, 0, 962, 963, 5, 50, 0, 0, 963, 964, 7, 3, 0, 0, 964, 967, 3, 68, 34, 0, 965, 966, 7, 3, 0, 0, 966, 968, 3, 62, 31, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 1308, 1, 0, 0, 0, 969, 970, 5, 273, 0, 0, 970, 973, 5, 339, 0, 0, 971, 972, 7, 3, 0, 0, 972, 974, 3, 62, 31, 0, 973, 971, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 979, 1, 0, 0, 0, 975, 977, 5, 163, 0, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 980, 3, 328, 164, 0, 979, 976, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 1308, 1, 0, 0, 0, 981, 982, 5, 273, 0, 0, 982, 983, 5, 219, 0, 0, 983, 985, 3, 68, 34, 0, 984, 986, 3, 18, 9, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1308, 1, 0, 0, 0, 987, 989, 5, 273, 0, 0, 988, 990, 7, 7, 0, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 994, 5, 126, 0, 0, 992, 993, 7, 3, 0, 0, 993, 995, 3, 62, 31, 0, 994, 992, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 1003, 1, 0, 0, 0, 996, 998, 5, 163, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1001, 1, 0, 0, 0, 999, 1002, 3, 198, 99, 0, 1000, 1002, 3, 328, 164, 0, 1001, 999, 1, 0, 0, 0, 1001, 1000, 1, 0, 0, 0, 1002, 1004, 1, 0, 0, 0, 1003, 997, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1308, 1, 0, 0, 0, 1005, 1006, 5, 273, 0, 0, 1006, 1007, 5, 59, 0, 0, 1007, 1008, 5, 293, 0, 0, 1008, 1011, 3, 68, 34, 0, 1009, 1010, 5, 20, 0, 0, 1010, 1012, 5, 266, 0, 0, 1011, 1009, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1308, 1, 0, 0, 0, 1013, 1014, 5, 273, 0, 0, 1014, 1015, 5, 62, 0, 0, 1015, 1308, 3, 22, 11, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1022, 5, 38, 0, 0, 1018, 1020, 5, 163, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1023, 3, 328, 164, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1308, 1, 0, 0, 0, 1024, 1025, 5, 273, 0, 0, 1025, 1026, 5, 176, 0, 0, 1026, 1029, 5, 339, 0, 0, 1027, 1028, 7, 3, 0, 0, 1028, 1030, 3, 62, 31, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1035, 1, 0, 0, 0, 1031, 1033, 5, 163, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 3, 328, 164, 0, 1035, 1032, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1308, 1, 0, 0, 0, 1037, 1038, 5, 273, 0, 0, 1038, 1039, 5, 59, 0, 0, 1039, 1040, 5, 176, 0, 0, 1040, 1041, 5, 338, 0, 0, 1041, 1044, 3, 72, 36, 0, 1042, 1043, 5, 20, 0, 0, 1043, 1045, 5, 266, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1308, 1, 0, 0, 0, 1046, 1047, 7, 8, 0, 0, 1047, 1049, 5, 125, 0, 0, 1048, 1050, 5, 108, 0, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1308, 3, 24, 12, 0, 1052, 1053, 7, 8, 0, 0, 1053, 1055, 5, 72, 0, 0, 1054, 1056, 5, 108, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1308, 3, 62, 31, 0, 1058, 1060, 7, 8, 0, 0, 1059, 1061, 5, 293, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 1064, 7, 9, 0, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1067, 3, 68, 34, 0, 1066, 1068, 3, 18, 9, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 1, 0, 0, 0, 1069, 1071, 3, 26, 13, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1308, 1, 0, 0, 0, 1072, 1074, 7, 8, 0, 0, 1073, 1075, 5, 232, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1308, 3, 12, 6, 0, 1077, 1078, 5, 51, 0, 0, 1078, 1084, 5, 203, 0, 0, 1079, 1080, 3, 22, 11, 0, 1080, 1081, 3, 62, 31, 0, 1081, 1085, 1, 0, 0, 0, 1082, 1083, 5, 293, 0, 0, 1083, 1085, 3, 68, 34, 0, 1084, 1079, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1089, 5, 153, 0, 0, 1087, 1090, 3, 328, 164, 0, 1088, 1090, 5, 198, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1088, 1, 0, 0, 0, 1090, 1308, 1, 0, 0, 0, 1091, 1092, 5, 240, 0, 0, 1092, 1093, 5, 293, 0, 0, 1093, 1308, 3, 68, 34, 0, 1094, 1095, 5, 240, 0, 0, 1095, 1096, 5, 125, 0, 0, 1096, 1308, 3, 308, 154, 0, 1097, 1105, 5, 240, 0, 0, 1098, 1106, 3, 328, 164, 0, 1099, 1101, 9, 0, 0, 0, 1100, 1099, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1098, 1, 0, 0, 0, 1105, 1102, 1, 0, 0, 0, 1106, 1308, 1, 0, 0, 0, 1107, 1108, 5, 240, 0, 0, 1108, 1109, 5, 176, 0, 0, 1109, 1110, 5, 338, 0, 0, 1110, 1308, 3, 72, 36, 0, 1111, 1113, 5, 33, 0, 0, 1112, 1114, 5, 159, 0, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1116, 5, 293, 0, 0, 1116, 1119, 3, 68, 34, 0, 1117, 1118, 5, 207, 0, 0, 1118, 1120, 3, 38, 19, 0, 1119, 1117, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1125, 1, 0, 0, 0, 1121, 1123, 5, 20, 0, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 3, 12, 6, 0, 1125, 1122, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1308, 1, 0, 0, 0, 1127, 1128, 5, 322, 0, 0, 1128, 1130, 5, 293, 0, 0, 1129, 1131, 3, 150, 75, 0, 1130, 1129, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1308, 3, 68, 34, 0, 1133, 1134, 5, 43, 0, 0, 1134, 1308, 5, 33, 0, 0, 1135, 1136, 5, 168, 0, 0, 1136, 1138, 5, 70, 0, 0, 1137, 1139, 5, 169, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 5, 145, 0, 0, 1141, 1143, 3, 328, 164, 0, 1142, 1144, 5, 216, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 5, 152, 0, 0, 1146, 1147, 5, 293, 0, 0, 1147, 1149, 3, 68, 34, 0, 1148, 1150, 3, 18, 9, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1308, 1, 0, 0, 0, 1151, 1152, 5, 317, 0, 0, 1152, 1153, 5, 293, 0, 0, 1153, 1155, 3, 68, 34, 0, 1154, 1156, 3, 18, 9, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1308, 1, 0, 0, 0, 1157, 1159, 5, 188, 0, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 5, 242, 0, 0, 1161, 1162, 5, 293, 0, 0, 1162, 1165, 3, 68, 34, 0, 1163, 1164, 7, 10, 0, 0, 1164, 1166, 5, 219, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1308, 1, 0, 0, 0, 1167, 1168, 7, 11, 0, 0, 1168, 1172, 3, 318, 159, 0, 1169, 1171, 9, 0, 0, 0, 1170, 1169, 1, 0, 0, 0, 1171, 1174, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1308, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1176, 5, 269, 0, 0, 1176, 1180, 5, 253, 0, 0, 1177, 1179, 9, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1182, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1308, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1183, 1184, 5, 269, 0, 0, 1184, 1185, 5, 301, 0, 0, 1185, 1186, 5, 350, 0, 0, 1186, 1308, 3, 250, 125, 0, 1187, 1188, 5, 269, 0, 0, 1188, 1189, 5, 301, 0, 0, 1189, 1192, 5, 350, 0, 0, 1190, 1193, 3, 328, 164, 0, 1191, 1193, 5, 169, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1191, 1, 0, 0, 0, 1193, 1308, 1, 0, 0, 0, 1194, 1195, 5, 269, 0, 0, 1195, 1196, 5, 301, 0, 0, 1196, 1200, 5, 350, 0, 0, 1197, 1199, 9, 0, 0, 0, 1198, 1197, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1308, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1204, 5, 269, 0, 0, 1204, 1205, 7, 12, 0, 0, 1205, 1308, 3, 108, 54, 0, 1206, 1207, 5, 269, 0, 0, 1207, 1208, 7, 12, 0, 0, 1208, 1209, 5, 2, 0, 0, 1209, 1210, 3, 196, 98, 0, 1210, 1211, 5, 3, 0, 0, 1211, 1212, 5, 352, 0, 0, 1212, 1213, 5, 2, 0, 0, 1213, 1214, 3, 12, 6, 0, 1214, 1215, 5, 3, 0, 0, 1215, 1308, 1, 0, 0, 0, 1216, 1217, 5, 269, 0, 0, 1217, 1218, 3, 322, 161, 0, 1218, 1219, 5, 352, 0, 0, 1219, 1220, 5, 389, 0, 0, 1220, 1308, 1, 0, 0, 0, 1221, 1222, 5, 269, 0, 0, 1222, 1230, 3, 322, 161, 0, 1223, 1227, 5, 352, 0, 0, 1224, 1226, 9, 0, 0, 0, 1225, 1224, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1231, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1223, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1308, 1, 0, 0, 0, 1232, 1236, 5, 269, 0, 0, 1233, 1235, 9, 0, 0, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1238, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1239, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1240, 5, 352, 0, 0, 1240, 1308, 5, 389, 0, 0, 1241, 1245, 5, 269, 0, 0, 1242, 1244, 9, 0, 0, 0, 1243, 1242, 1, 0, 0, 0, 1244, 1247, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1308, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1249, 5, 245, 0, 0, 1249, 1308, 3, 322, 161, 0, 1250, 1254, 5, 245, 0, 0, 1251, 1253, 9, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 1256, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1255, 1308, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1258, 5, 59, 0, 0, 1258, 1260, 5, 142, 0, 0, 1259, 1261, 3, 148, 74, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 3, 318, 159, 0, 1263, 1265, 5, 203, 0, 0, 1264, 1266, 5, 293, 0, 0, 1265, 1264, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1270, 3, 68, 34, 0, 1268, 1269, 5, 332, 0, 0, 1269, 1271, 3, 318, 159, 0, 1270, 1268, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 5, 2, 0, 0, 1273, 1274, 3, 200, 100, 0, 1274, 1277, 5, 3, 0, 0, 1275, 1276, 5, 207, 0, 0, 1276, 1278, 3, 38, 19, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1308, 1, 0, 0, 0, 1279, 1280, 5, 96, 0, 0, 1280, 1282, 5, 142, 0, 0, 1281, 1283, 3, 150, 75, 0, 1282, 1281, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 3, 318, 159, 0, 1285, 1287, 5, 203, 0, 0, 1286, 1288, 5, 293, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 3, 68, 34, 0, 1290, 1308, 1, 0, 0, 0, 1291, 1292, 5, 205, 0, 0, 1292, 1294, 3, 68, 34, 0, 1293, 1295, 3, 112, 56, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 5, 351, 0, 0, 1297, 1298, 5, 31, 0, 0, 1298, 1299, 3, 76, 38, 0, 1299, 1308, 1, 0, 0, 0, 1300, 1304, 3, 6, 3, 0, 1301, 1303, 9, 0, 0, 0, 1302, 1301, 1, 0, 0, 0, 1303, 1306, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1305, 1308, 1, 0, 0, 0, 1306, 1304, 1, 0, 0, 0, 1307, 348, 1, 0, 0, 0, 1307, 350, 1, 0, 0, 0, 1307, 353, 1, 0, 0, 0, 1307, 358, 1, 0, 0, 0, 1307, 364, 1, 0, 0, 0, 1307, 382, 1, 0, 0, 0, 1307, 389, 1, 0, 0, 0, 1307, 396, 1, 0, 0, 0, 1307, 405, 1, 0, 0, 0, 1307, 417, 1, 0, 0, 0, 1307, 445, 1, 0, 0, 0, 1307, 468, 1, 0, 0, 0, 1307, 489, 1, 0, 0, 0, 1307, 506, 1, 0, 0, 0, 1307, 517, 1, 0, 0, 0, 1307, 524, 1, 0, 0, 0, 1307, 533, 1, 0, 0, 0, 1307, 542, 1, 0, 0, 0, 1307, 552, 1, 0, 0, 0, 1307, 564, 1, 0, 0, 0, 1307, 575, 1, 0, 0, 0, 1307, 586, 1, 0, 0, 0, 1307, 600, 1, 0, 0, 0, 1307, 611, 1, 0, 0, 0, 1307, 626, 1, 0, 0, 0, 1307, 638, 1, 0, 0, 0, 1307, 652, 1, 0, 0, 0, 1307, 662, 1, 0, 0, 0, 1307, 678, 1, 0, 0, 0, 1307, 686, 1, 0, 0, 0, 1307, 708, 1, 0, 0, 0, 1307, 718, 1, 0, 0, 0, 1307, 724, 1, 0, 0, 0, 1307, 731, 1, 0, 0, 0, 1307, 739, 1, 0, 0, 0, 1307, 748, 1, 0, 0, 0, 1307, 754, 1, 0, 0, 0, 1307, 761, 1, 0, 0, 0, 1307, 795, 1, 0, 0, 0, 1307, 817, 1, 0, 0, 0, 1307, 825, 1, 0, 0, 0, 1307, 855, 1, 0, 0, 0, 1307, 888, 1, 0, 0, 0, 1307, 897, 1, 0, 0, 0, 1307, 912, 1, 0, 0, 0, 1307, 923, 1, 0, 0, 0, 1307, 928, 1, 0, 0, 0, 1307, 940, 1, 0, 0, 0, 1307, 952, 1, 0, 0, 0, 1307, 961, 1, 0, 0, 0, 1307, 969, 1, 0, 0, 0, 1307, 981, 1, 0, 0, 0, 1307, 987, 1, 0, 0, 0, 1307, 1005, 1, 0, 0, 0, 1307, 1013, 1, 0, 0, 0, 1307, 1016, 1, 0, 0, 0, 1307, 1024, 1, 0, 0, 0, 1307, 1037, 1, 0, 0, 0, 1307, 1046, 1, 0, 0, 0, 1307, 1052, 1, 0, 0, 0, 1307, 1058, 1, 0, 0, 0, 1307, 1072, 1, 0, 0, 0, 1307, 1077, 1, 0, 0, 0, 1307, 1091, 1, 0, 0, 0, 1307, 1094, 1, 0, 0, 0, 1307, 1097, 1, 0, 0, 0, 1307, 1107, 1, 0, 0, 0, 1307, 1111, 1, 0, 0, 0, 1307, 1127, 1, 0, 0, 0, 1307, 1133, 1, 0, 0, 0, 1307, 1135, 1, 0, 0, 0, 1307, 1151, 1, 0, 0, 0, 1307, 1158, 1, 0, 0, 0, 1307, 1167, 1, 0, 0, 0, 1307, 1175, 1, 0, 0, 0, 1307, 1183, 1, 0, 0, 0, 1307, 1187, 1, 0, 0, 0, 1307, 1194, 1, 0, 0, 0, 1307, 1203, 1, 0, 0, 0, 1307, 1206, 1, 0, 0, 0, 1307, 1216, 1, 0, 0, 0, 1307, 1221, 1, 0, 0, 0, 1307, 1232, 1, 0, 0, 0, 1307, 1241, 1, 0, 0, 0, 1307, 1248, 1, 0, 0, 0, 1307, 1250, 1, 0, 0, 0, 1307, 1257, 1, 0, 0, 0, 1307, 1279, 1, 0, 0, 0, 1307, 1291, 1, 0, 0, 0, 1307, 1300, 1, 0, 0, 0, 1308, 5, 1, 0, 0, 0, 1309, 1310, 7, 13, 0, 0, 1310, 1403, 5, 253, 0, 0, 1311, 1313, 7, 14, 0, 0, 1312, 1314, 5, 253, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1403, 1, 0, 0, 0, 1315, 1316, 5, 273, 0, 0, 1316, 1403, 7, 15, 0, 0, 1317, 1318, 5, 273, 0, 0, 1318, 1320, 5, 253, 0, 0, 1319, 1321, 5, 129, 0, 0, 1320, 1319, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1403, 1, 0, 0, 0, 1322, 1324, 5, 273, 0, 0, 1323, 1325, 5, 62, 0, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1403, 5, 254, 0, 0, 1327, 1328, 5, 273, 0, 0, 1328, 1329, 5, 59, 0, 0, 1329, 1403, 5, 293, 0, 0, 1330, 1331, 7, 16, 0, 0, 1331, 1403, 5, 142, 0, 0, 1332, 1333, 7, 17, 0, 0, 1333, 1403, 5, 293, 0, 0, 1334, 1335, 7, 18, 0, 0, 1335, 1403, 5, 72, 0, 0, 1336, 1337, 7, 13, 0, 0, 1337, 1338, 5, 298, 0, 0, 1338, 1403, 5, 175, 0, 0, 1339, 1340, 5, 11, 0, 0, 1340, 1341, 5, 293, 0, 0, 1341, 1342, 3, 68, 34, 0, 1342, 1343, 5, 197, 0, 0, 1343, 1344, 7, 19, 0, 0, 1344, 1403, 1, 0, 0, 0, 1345, 1346, 5, 11, 0, 0, 1346, 1347, 5, 293, 0, 0, 1347, 1348, 3, 68, 34, 0, 1348, 1349, 7, 20, 0, 0, 1349, 1350, 5, 31, 0, 0, 1350, 1403, 1, 0, 0, 0, 1351, 1352, 5, 11, 0, 0, 1352, 1353, 5, 293, 0, 0, 1353, 1354, 3, 68, 34, 0, 1354, 1355, 5, 275, 0, 0, 1355, 1356, 5, 31, 0, 0, 1356, 1403, 1, 0, 0, 0, 1357, 1358, 5, 11, 0, 0, 1358, 1359, 5, 293, 0, 0, 1359, 1360, 3, 68, 34, 0, 1360, 1361, 5, 197, 0, 0, 1361, 1362, 5, 283, 0, 0, 1362, 1363, 5, 20, 0, 0, 1363, 1364, 5, 89, 0, 0, 1364, 1403, 1, 0, 0, 0, 1365, 1366, 5, 11, 0, 0, 1366, 1367, 5, 293, 0, 0, 1367, 1368, 3, 68, 34, 0, 1368, 1369, 5, 269, 0, 0, 1369, 1370, 5, 275, 0, 0, 1370, 1371, 5, 170, 0, 0, 1371, 1403, 1, 0, 0, 0, 1372, 1373, 5, 11, 0, 0, 1373, 1374, 5, 293, 0, 0, 1374, 1375, 3, 68, 34, 0, 1375, 1376, 7, 21, 0, 0, 1376, 1377, 5, 217, 0, 0, 1377, 1403, 1, 0, 0, 0, 1378, 1379, 5, 11, 0, 0, 1379, 1380, 5, 293, 0, 0, 1380, 1381, 3, 68, 34, 0, 1381, 1382, 5, 310, 0, 0, 1382, 1403, 1, 0, 0, 0, 1383, 1384, 5, 11, 0, 0, 1384, 1385, 5, 293, 0, 0, 1385, 1387, 3, 68, 34, 0, 1386, 1388, 3, 18, 9, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1395, 1, 0, 0, 0, 1389, 1396, 5, 53, 0, 0, 1390, 1396, 5, 56, 0, 0, 1391, 1392, 5, 269, 0, 0, 1392, 1396, 5, 115, 0, 0, 1393, 1394, 5, 244, 0, 0, 1394, 1396, 5, 50, 0, 0, 1395, 1389, 1, 0, 0, 0, 1395, 1390, 1, 0, 0, 0, 1395, 1391, 1, 0, 0, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1403, 1, 0, 0, 0, 1397, 1398, 5, 281, 0, 0, 1398, 1403, 5, 312, 0, 0, 1399, 1403, 5, 52, 0, 0, 1400, 1403, 5, 255, 0, 0, 1401, 1403, 5, 88, 0, 0, 1402, 1309, 1, 0, 0, 0, 1402, 1311, 1, 0, 0, 0, 1402, 1315, 1, 0, 0, 0, 1402, 1317, 1, 0, 0, 0, 1402, 1322, 1, 0, 0, 0, 1402, 1327, 1, 0, 0, 0, 1402, 1330, 1, 0, 0, 0, 1402, 1332, 1, 0, 0, 0, 1402, 1334, 1, 0, 0, 0, 1402, 1336, 1, 0, 0, 0, 1402, 1339, 1, 0, 0, 0, 1402, 1345, 1, 0, 0, 0, 1402, 1351, 1, 0, 0, 0, 1402, 1357, 1, 0, 0, 0, 1402, 1365, 1, 0, 0, 0, 1402, 1372, 1, 0, 0, 0, 1402, 1378, 1, 0, 0, 0, 1402, 1383, 1, 0, 0, 0, 1402, 1397, 1, 0, 0, 0, 1402, 1399, 1, 0, 0, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1401, 1, 0, 0, 0, 1403, 7, 1, 0, 0, 0, 1404, 1405, 5, 45, 0, 0, 1405, 1406, 5, 31, 0, 0, 1406, 1410, 3, 168, 84, 0, 1407, 1408, 5, 279, 0, 0, 1408, 1409, 5, 31, 0, 0, 1409, 1411, 3, 172, 86, 0, 1410, 1407, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 5, 152, 0, 0, 1413, 1414, 5, 382, 0, 0, 1414, 1415, 5, 30, 0, 0, 1415, 9, 1, 0, 0, 0, 1416, 1417, 5, 275, 0, 0, 1417, 1418, 5, 31, 0, 0, 1418, 1419, 3, 168, 84, 0, 1419, 1422, 5, 203, 0, 0, 1420, 1423, 3, 50, 25, 0, 1421, 1423, 3, 52, 26, 0, 1422, 1420, 1, 0, 0, 0, 1422, 1421, 1, 0, 0, 0, 1423, 1427, 1, 0, 0, 0, 1424, 1425, 5, 283, 0, 0, 1425, 1426, 5, 20, 0, 0, 1426, 1428, 5, 89, 0, 0, 1427, 1424, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 11, 1, 0, 0, 0, 1429, 1431, 3, 28, 14, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 3, 84, 42, 0, 1433, 1434, 3, 82, 41, 0, 1434, 13, 1, 0, 0, 0, 1435, 1436, 5, 147, 0, 0, 1436, 1438, 5, 216, 0, 0, 1437, 1439, 5, 293, 0, 0, 1438, 1437, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1445, 3, 68, 34, 0, 1441, 1443, 3, 18, 9, 0, 1442, 1444, 3, 148, 74, 0, 1443, 1442, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1446, 1, 0, 0, 0, 1445, 1441, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1453, 1, 0, 0, 0, 1447, 1448, 5, 31, 0, 0, 1448, 1454, 5, 189, 0, 0, 1449, 1450, 5, 2, 0, 0, 1450, 1451, 3, 76, 38, 0, 1451, 1452, 5, 3, 0, 0, 1452, 1454, 1, 0, 0, 0, 1453, 1447, 1, 0, 0, 0, 1453, 1449, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1512, 1, 0, 0, 0, 1455, 1456, 5, 147, 0, 0, 1456, 1458, 5, 152, 0, 0, 1457, 1459, 5, 293, 0, 0, 1458, 1457, 1, 0, 0, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1462, 3, 68, 34, 0, 1461, 1463, 3, 18, 9, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1465, 1, 0, 0, 0, 1464, 1466, 3, 148, 74, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1473, 1, 0, 0, 0, 1467, 1468, 5, 31, 0, 0, 1468, 1474, 5, 189, 0, 0, 1469, 1470, 5, 2, 0, 0, 1470, 1471, 3, 76, 38, 0, 1471, 1472, 5, 3, 0, 0, 1472, 1474, 1, 0, 0, 0, 1473, 1467, 1, 0, 0, 0, 1473, 1469, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1512, 1, 0, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 5, 152, 0, 0, 1477, 1479, 5, 293, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 3, 68, 34, 0, 1481, 1482, 5, 244, 0, 0, 1482, 1483, 3, 112, 56, 0, 1483, 1512, 1, 0, 0, 0, 1484, 1485, 5, 147, 0, 0, 1485, 1487, 5, 216, 0, 0, 1486, 1488, 5, 169, 0, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 5, 90, 0, 0, 1490, 1492, 3, 328, 164, 0, 1491, 1493, 3, 194, 97, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1495, 1, 0, 0, 0, 1494, 1496, 3, 54, 27, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1512, 1, 0, 0, 0, 1497, 1498, 5, 147, 0, 0, 1498, 1500, 5, 216, 0, 0, 1499, 1501, 5, 169, 0, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1504, 5, 90, 0, 0, 1503, 1505, 3, 328, 164, 0, 1504, 1503, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1509, 3, 32, 16, 0, 1507, 1508, 5, 207, 0, 0, 1508, 1510, 3, 38, 19, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1512, 1, 0, 0, 0, 1511, 1435, 1, 0, 0, 0, 1511, 1455, 1, 0, 0, 0, 1511, 1475, 1, 0, 0, 0, 1511, 1484, 1, 0, 0, 0, 1511, 1497, 1, 0, 0, 0, 1512, 15, 1, 0, 0, 0, 1513, 1516, 3, 18, 9, 0, 1514, 1515, 5, 170, 0, 0, 1515, 1517, 3, 328, 164, 0, 1516, 1514, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 17, 1, 0, 0, 0, 1518, 1519, 5, 217, 0, 0, 1519, 1520, 5, 2, 0, 0, 1520, 1525, 3, 20, 10, 0, 1521, 1522, 5, 4, 0, 0, 1522, 1524, 3, 20, 10, 0, 1523, 1521, 1, 0, 0, 0, 1524, 1527, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1528, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1529, 5, 3, 0, 0, 1529, 19, 1, 0, 0, 0, 1530, 1533, 3, 318, 159, 0, 1531, 1532, 5, 352, 0, 0, 1532, 1534, 3, 240, 120, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1540, 1, 0, 0, 0, 1535, 1536, 3, 318, 159, 0, 1536, 1537, 5, 352, 0, 0, 1537, 1538, 5, 82, 0, 0, 1538, 1540, 1, 0, 0, 0, 1539, 1530, 1, 0, 0, 0, 1539, 1535, 1, 0, 0, 0, 1540, 21, 1, 0, 0, 0, 1541, 1542, 7, 22, 0, 0, 1542, 23, 1, 0, 0, 0, 1543, 1549, 3, 80, 40, 0, 1544, 1549, 3, 328, 164, 0, 1545, 1549, 3, 242, 121, 0, 1546, 1549, 3, 244, 122, 0, 1547, 1549, 3, 246, 123, 0, 1548, 1543, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1545, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1548, 1547, 1, 0, 0, 0, 1549, 25, 1, 0, 0, 0, 1550, 1555, 3, 318, 159, 0, 1551, 1552, 5, 5, 0, 0, 1552, 1554, 3, 318, 159, 0, 1553, 1551, 1, 0, 0, 0, 1554, 1557, 1, 0, 0, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 27, 1, 0, 0, 0, 1557, 1555, 1, 0, 0, 0, 1558, 1559, 5, 346, 0, 0, 1559, 1564, 3, 30, 15, 0, 1560, 1561, 5, 4, 0, 0, 1561, 1563, 3, 30, 15, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1566, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 29, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1567, 1569, 3, 314, 157, 0, 1568, 1570, 3, 168, 84, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1573, 5, 20, 0, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1575, 5, 2, 0, 0, 1575, 1576, 3, 12, 6, 0, 1576, 1577, 5, 3, 0, 0, 1577, 31, 1, 0, 0, 0, 1578, 1579, 5, 332, 0, 0, 1579, 1580, 3, 198, 99, 0, 1580, 33, 1, 0, 0, 0, 1581, 1582, 5, 207, 0, 0, 1582, 1598, 3, 46, 23, 0, 1583, 1584, 5, 218, 0, 0, 1584, 1585, 5, 31, 0, 0, 1585, 1598, 3, 212, 106, 0, 1586, 1598, 3, 10, 5, 0, 1587, 1598, 3, 8, 4, 0, 1588, 1598, 3, 194, 97, 0, 1589, 1598, 3, 54, 27, 0, 1590, 1591, 5, 170, 0, 0, 1591, 1598, 3, 328, 164, 0, 1592, 1593, 5, 51, 0, 0, 1593, 1598, 3, 328, 164, 0, 1594, 1595, 5, 297, 0, 0, 1595, 1598, 3, 38, 19, 0, 1596, 1598, 3, 36, 18, 0, 1597, 1581, 1, 0, 0, 0, 1597, 1583, 1, 0, 0, 0, 1597, 1586, 1, 0, 0, 0, 1597, 1587, 1, 0, 0, 0, 1597, 1588, 1, 0, 0, 0, 1597, 1589, 1, 0, 0, 0, 1597, 1590, 1, 0, 0, 0, 1597, 1592, 1, 0, 0, 0, 1597, 1594, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 1601, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 35, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1603, 5, 162, 0, 0, 1603, 1604, 5, 382, 0, 0, 1604, 37, 1, 0, 0, 0, 1605, 1606, 5, 2, 0, 0, 1606, 1611, 3, 40, 20, 0, 1607, 1608, 5, 4, 0, 0, 1608, 1610, 3, 40, 20, 0, 1609, 1607, 1, 0, 0, 0, 1610, 1613, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1611, 1, 0, 0, 0, 1614, 1615, 5, 3, 0, 0, 1615, 39, 1, 0, 0, 0, 1616, 1621, 3, 42, 21, 0, 1617, 1619, 5, 352, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1622, 3, 44, 22, 0, 1621, 1618, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 41, 1, 0, 0, 0, 1623, 1628, 3, 318, 159, 0, 1624, 1625, 5, 5, 0, 0, 1625, 1627, 3, 318, 159, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1633, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1633, 3, 328, 164, 0, 1632, 1623, 1, 0, 0, 0, 1632, 1631, 1, 0, 0, 0, 1633, 43, 1, 0, 0, 0, 1634, 1639, 5, 382, 0, 0, 1635, 1639, 5, 384, 0, 0, 1636, 1639, 3, 248, 124, 0, 1637, 1639, 3, 328, 164, 0, 1638, 1634, 1, 0, 0, 0, 1638, 1635, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1638, 1637, 1, 0, 0, 0, 1639, 45, 1, 0, 0, 0, 1640, 1641, 5, 2, 0, 0, 1641, 1646, 3, 48, 24, 0, 1642, 1643, 5, 4, 0, 0, 1643, 1645, 3, 48, 24, 0, 1644, 1642, 1, 0, 0, 0, 1645, 1648, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1646, 1, 0, 0, 0, 1649, 1650, 5, 3, 0, 0, 1650, 47, 1, 0, 0, 0, 1651, 1656, 3, 42, 21, 0, 1652, 1654, 5, 352, 0, 0, 1653, 1652, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1657, 3, 220, 110, 0, 1656, 1653, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 49, 1, 0, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 240, 120, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 240, 120, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 51, 1, 0, 0, 0, 1669, 1670, 5, 2, 0, 0, 1670, 1675, 3, 50, 25, 0, 1671, 1672, 5, 4, 0, 0, 1672, 1674, 3, 50, 25, 0, 1673, 1671, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1679, 5, 3, 0, 0, 1679, 53, 1, 0, 0, 0, 1680, 1681, 5, 283, 0, 0, 1681, 1682, 5, 20, 0, 0, 1682, 1687, 3, 56, 28, 0, 1683, 1684, 5, 283, 0, 0, 1684, 1685, 5, 31, 0, 0, 1685, 1687, 3, 58, 29, 0, 1686, 1680, 1, 0, 0, 0, 1686, 1683, 1, 0, 0, 0, 1687, 55, 1, 0, 0, 0, 1688, 1689, 5, 146, 0, 0, 1689, 1690, 3, 328, 164, 0, 1690, 1691, 5, 212, 0, 0, 1691, 1692, 3, 328, 164, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1695, 3, 318, 159, 0, 1694, 1688, 1, 0, 0, 0, 1694, 1693, 1, 0, 0, 0, 1695, 57, 1, 0, 0, 0, 1696, 1700, 3, 328, 164, 0, 1697, 1698, 5, 346, 0, 0, 1698, 1699, 5, 267, 0, 0, 1699, 1701, 3, 38, 19, 0, 1700, 1697, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 59, 1, 0, 0, 0, 1702, 1703, 3, 14, 7, 0, 1703, 1704, 3, 12, 6, 0, 1704, 1761, 1, 0, 0, 0, 1705, 1709, 3, 120, 60, 0, 1706, 1707, 3, 14, 7, 0, 1707, 1708, 3, 90, 45, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1706, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1761, 1, 0, 0, 0, 1713, 1714, 5, 84, 0, 0, 1714, 1715, 5, 123, 0, 0, 1715, 1716, 3, 68, 34, 0, 1716, 1718, 3, 192, 96, 0, 1717, 1719, 3, 112, 56, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1761, 1, 0, 0, 0, 1720, 1721, 5, 329, 0, 0, 1721, 1722, 3, 68, 34, 0, 1722, 1723, 3, 192, 96, 0, 1723, 1725, 3, 98, 49, 0, 1724, 1726, 3, 112, 56, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1761, 1, 0, 0, 0, 1727, 1728, 5, 179, 0, 0, 1728, 1729, 5, 152, 0, 0, 1729, 1730, 3, 68, 34, 0, 1730, 1731, 3, 192, 96, 0, 1731, 1737, 5, 332, 0, 0, 1732, 1738, 3, 80, 40, 0, 1733, 1734, 5, 2, 0, 0, 1734, 1735, 3, 12, 6, 0, 1735, 1736, 5, 3, 0, 0, 1736, 1738, 1, 0, 0, 0, 1737, 1732, 1, 0, 0, 0, 1737, 1733, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 3, 192, 96, 0, 1740, 1741, 5, 203, 0, 0, 1741, 1745, 3, 228, 114, 0, 1742, 1744, 3, 100, 50, 0, 1743, 1742, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1751, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1750, 3, 102, 51, 0, 1749, 1748, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1757, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1756, 3, 104, 52, 0, 1755, 1754, 1, 0, 0, 0, 1756, 1759, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1702, 1, 0, 0, 0, 1760, 1705, 1, 0, 0, 0, 1760, 1713, 1, 0, 0, 0, 1760, 1720, 1, 0, 0, 0, 1760, 1727, 1, 0, 0, 0, 1761, 61, 1, 0, 0, 0, 1762, 1763, 3, 80, 40, 0, 1763, 63, 1, 0, 0, 0, 1764, 1765, 3, 80, 40, 0, 1765, 65, 1, 0, 0, 0, 1766, 1767, 3, 204, 102, 0, 1767, 67, 1, 0, 0, 0, 1768, 1769, 3, 204, 102, 0, 1769, 69, 1, 0, 0, 0, 1770, 1771, 3, 206, 103, 0, 1771, 71, 1, 0, 0, 0, 1772, 1773, 3, 206, 103, 0, 1773, 73, 1, 0, 0, 0, 1774, 1777, 3, 198, 99, 0, 1775, 1777, 4, 37, 0, 0, 1776, 1774, 1, 0, 0, 0, 1776, 1775, 1, 0, 0, 0, 1777, 75, 1, 0, 0, 0, 1778, 1783, 3, 74, 37, 0, 1779, 1780, 5, 4, 0, 0, 1780, 1782, 3, 74, 37, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1785, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 77, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1786, 1787, 3, 314, 157, 0, 1787, 79, 1, 0, 0, 0, 1788, 1789, 5, 136, 0, 0, 1789, 1790, 5, 2, 0, 0, 1790, 1791, 3, 220, 110, 0, 1791, 1792, 5, 3, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1795, 3, 198, 99, 0, 1794, 1788, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 81, 1, 0, 0, 0, 1796, 1797, 5, 209, 0, 0, 1797, 1798, 5, 31, 0, 0, 1798, 1803, 3, 88, 44, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 88, 44, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1807, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1796, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1818, 1, 0, 0, 0, 1808, 1809, 5, 44, 0, 0, 1809, 1810, 5, 31, 0, 0, 1810, 1815, 3, 220, 110, 0, 1811, 1812, 5, 4, 0, 0, 1812, 1814, 3, 220, 110, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1819, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1808, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1830, 1, 0, 0, 0, 1820, 1821, 5, 93, 0, 0, 1821, 1822, 5, 31, 0, 0, 1822, 1827, 3, 220, 110, 0, 1823, 1824, 5, 4, 0, 0, 1824, 1826, 3, 220, 110, 0, 1825, 1823, 1, 0, 0, 0, 1826, 1829, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1820, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1842, 1, 0, 0, 0, 1832, 1833, 5, 278, 0, 0, 1833, 1834, 5, 31, 0, 0, 1834, 1839, 3, 88, 44, 0, 1835, 1836, 5, 4, 0, 0, 1836, 1838, 3, 88, 44, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1843, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1832, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1845, 1, 0, 0, 0, 1844, 1846, 3, 298, 149, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1852, 1, 0, 0, 0, 1847, 1850, 5, 165, 0, 0, 1848, 1851, 5, 10, 0, 0, 1849, 1851, 3, 220, 110, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1849, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1847, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1856, 1, 0, 0, 0, 1854, 1855, 5, 202, 0, 0, 1855, 1857, 3, 220, 110, 0, 1856, 1854, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 83, 1, 0, 0, 0, 1858, 1859, 6, 42, -1, 0, 1859, 1860, 3, 86, 43, 0, 1860, 1881, 1, 0, 0, 0, 1861, 1862, 10, 3, 0, 0, 1862, 1864, 7, 23, 0, 0, 1863, 1865, 3, 154, 77, 0, 1864, 1863, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1880, 3, 84, 42, 4, 1867, 1868, 10, 2, 0, 0, 1868, 1870, 5, 148, 0, 0, 1869, 1871, 3, 154, 77, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1880, 3, 84, 42, 3, 1873, 1874, 10, 1, 0, 0, 1874, 1876, 7, 24, 0, 0, 1875, 1877, 3, 154, 77, 0, 1876, 1875, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1880, 3, 84, 42, 2, 1879, 1861, 1, 0, 0, 0, 1879, 1867, 1, 0, 0, 0, 1879, 1873, 1, 0, 0, 0, 1880, 1883, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 85, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1884, 1909, 3, 92, 46, 0, 1885, 1887, 3, 120, 60, 0, 1886, 1888, 3, 90, 45, 0, 1887, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1887, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1909, 1, 0, 0, 0, 1891, 1892, 5, 293, 0, 0, 1892, 1909, 3, 68, 34, 0, 1893, 1894, 5, 333, 0, 0, 1894, 1899, 3, 220, 110, 0, 1895, 1896, 5, 4, 0, 0, 1896, 1898, 3, 220, 110, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1902, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1903, 3, 192, 96, 0, 1903, 1909, 1, 0, 0, 0, 1904, 1905, 5, 2, 0, 0, 1905, 1906, 3, 12, 6, 0, 1906, 1907, 5, 3, 0, 0, 1907, 1909, 1, 0, 0, 0, 1908, 1884, 1, 0, 0, 0, 1908, 1885, 1, 0, 0, 0, 1908, 1891, 1, 0, 0, 0, 1908, 1893, 1, 0, 0, 0, 1908, 1904, 1, 0, 0, 0, 1909, 87, 1, 0, 0, 0, 1910, 1913, 3, 74, 37, 0, 1911, 1913, 3, 220, 110, 0, 1912, 1910, 1, 0, 0, 0, 1912, 1911, 1, 0, 0, 0, 1913, 1915, 1, 0, 0, 0, 1914, 1916, 7, 25, 0, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1918, 5, 199, 0, 0, 1918, 1920, 7, 26, 0, 0, 1919, 1917, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 89, 1, 0, 0, 0, 1921, 1923, 3, 94, 47, 0, 1922, 1924, 3, 112, 56, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1926, 3, 82, 41, 0, 1926, 1949, 1, 0, 0, 0, 1927, 1931, 3, 96, 48, 0, 1928, 1930, 3, 152, 76, 0, 1929, 1928, 1, 0, 0, 0, 1930, 1933, 1, 0, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1936, 3, 112, 56, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1939, 3, 124, 62, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1942, 3, 114, 57, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1945, 3, 298, 149, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 3, 82, 41, 0, 1947, 1949, 1, 0, 0, 0, 1948, 1921, 1, 0, 0, 0, 1948, 1927, 1, 0, 0, 0, 1949, 91, 1, 0, 0, 0, 1950, 1952, 3, 94, 47, 0, 1951, 1953, 3, 120, 60, 0, 1952, 1951, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1957, 1, 0, 0, 0, 1954, 1956, 3, 152, 76, 0, 1955, 1954, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1961, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1960, 1962, 3, 112, 56, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 3, 124, 62, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1967, 1, 0, 0, 0, 1966, 1968, 3, 114, 57, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1970, 1, 0, 0, 0, 1969, 1971, 3, 298, 149, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1995, 1, 0, 0, 0, 1972, 1974, 3, 96, 48, 0, 1973, 1975, 3, 120, 60, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1979, 1, 0, 0, 0, 1976, 1978, 3, 152, 76, 0, 1977, 1976, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1984, 3, 112, 56, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1987, 3, 124, 62, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1989, 1, 0, 0, 0, 1988, 1990, 3, 114, 57, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 3, 298, 149, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1950, 1, 0, 0, 0, 1994, 1972, 1, 0, 0, 0, 1995, 93, 1, 0, 0, 0, 1996, 1997, 5, 263, 0, 0, 1997, 1998, 5, 314, 0, 0, 1998, 2000, 5, 2, 0, 0, 1999, 2001, 3, 154, 77, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 3, 226, 113, 0, 2003, 2004, 5, 3, 0, 0, 2004, 2016, 1, 0, 0, 0, 2005, 2007, 5, 177, 0, 0, 2006, 2008, 3, 154, 77, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2016, 3, 226, 113, 0, 2010, 2012, 5, 238, 0, 0, 2011, 2013, 3, 154, 77, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2016, 3, 226, 113, 0, 2015, 1996, 1, 0, 0, 0, 2015, 2005, 1, 0, 0, 0, 2015, 2010, 1, 0, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 2019, 3, 194, 97, 0, 2018, 2017, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2021, 5, 236, 0, 0, 2021, 2023, 3, 328, 164, 0, 2022, 2020, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2025, 5, 332, 0, 0, 2025, 2038, 3, 328, 164, 0, 2026, 2036, 5, 20, 0, 0, 2027, 2037, 3, 170, 85, 0, 2028, 2037, 3, 284, 142, 0, 2029, 2032, 5, 2, 0, 0, 2030, 2033, 3, 170, 85, 0, 2031, 2033, 3, 284, 142, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 5, 3, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2027, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2029, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2026, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2042, 3, 194, 97, 0, 2041, 2040, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2045, 1, 0, 0, 0, 2043, 2044, 5, 235, 0, 0, 2044, 2046, 3, 328, 164, 0, 2045, 2043, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 95, 1, 0, 0, 0, 2047, 2051, 5, 263, 0, 0, 2048, 2050, 3, 116, 58, 0, 2049, 2048, 1, 0, 0, 0, 2050, 2053, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2055, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2054, 2056, 3, 154, 77, 0, 2055, 2054, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 3, 210, 105, 0, 2058, 97, 1, 0, 0, 0, 2059, 2060, 5, 269, 0, 0, 2060, 2061, 3, 108, 54, 0, 2061, 99, 1, 0, 0, 0, 2062, 2063, 5, 343, 0, 0, 2063, 2066, 5, 178, 0, 0, 2064, 2065, 5, 14, 0, 0, 2065, 2067, 3, 228, 114, 0, 2066, 2064, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2076, 5, 300, 0, 0, 2069, 2077, 5, 84, 0, 0, 2070, 2071, 5, 329, 0, 0, 2071, 2074, 5, 269, 0, 0, 2072, 2075, 5, 363, 0, 0, 2073, 2075, 3, 108, 54, 0, 2074, 2072, 1, 0, 0, 0, 2074, 2073, 1, 0, 0, 0, 2075, 2077, 1, 0, 0, 0, 2076, 2069, 1, 0, 0, 0, 2076, 2070, 1, 0, 0, 0, 2077, 101, 1, 0, 0, 0, 2078, 2079, 5, 343, 0, 0, 2079, 2080, 5, 197, 0, 0, 2080, 2083, 5, 178, 0, 0, 2081, 2082, 5, 31, 0, 0, 2082, 2084, 5, 296, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2086, 5, 14, 0, 0, 2086, 2088, 3, 228, 114, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 5, 300, 0, 0, 2090, 2091, 3, 106, 53, 0, 2091, 103, 1, 0, 0, 0, 2092, 2093, 5, 343, 0, 0, 2093, 2094, 5, 197, 0, 0, 2094, 2095, 5, 178, 0, 0, 2095, 2096, 5, 31, 0, 0, 2096, 2099, 5, 280, 0, 0, 2097, 2098, 5, 14, 0, 0, 2098, 2100, 3, 228, 114, 0, 2099, 2097, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2106, 5, 300, 0, 0, 2102, 2107, 5, 84, 0, 0, 2103, 2104, 5, 329, 0, 0, 2104, 2105, 5, 269, 0, 0, 2105, 2107, 3, 108, 54, 0, 2106, 2102, 1, 0, 0, 0, 2106, 2103, 1, 0, 0, 0, 2107, 105, 1, 0, 0, 0, 2108, 2109, 5, 147, 0, 0, 2109, 2127, 5, 363, 0, 0, 2110, 2111, 5, 147, 0, 0, 2111, 2112, 5, 2, 0, 0, 2112, 2113, 3, 196, 98, 0, 2113, 2114, 5, 3, 0, 0, 2114, 2115, 5, 333, 0, 0, 2115, 2116, 5, 2, 0, 0, 2116, 2121, 3, 220, 110, 0, 2117, 2118, 5, 4, 0, 0, 2118, 2120, 3, 220, 110, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2123, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 1, 0, 0, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2125, 5, 3, 0, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2108, 1, 0, 0, 0, 2126, 2110, 1, 0, 0, 0, 2127, 107, 1, 0, 0, 0, 2128, 2133, 3, 110, 55, 0, 2129, 2130, 5, 4, 0, 0, 2130, 2132, 3, 110, 55, 0, 2131, 2129, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 109, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2136, 2137, 3, 198, 99, 0, 2137, 2138, 5, 352, 0, 0, 2138, 2139, 3, 220, 110, 0, 2139, 111, 1, 0, 0, 0, 2140, 2141, 5, 344, 0, 0, 2141, 2142, 3, 228, 114, 0, 2142, 113, 1, 0, 0, 0, 2143, 2144, 5, 132, 0, 0, 2144, 2145, 3, 228, 114, 0, 2145, 115, 1, 0, 0, 0, 2146, 2147, 5, 374, 0, 0, 2147, 2154, 3, 118, 59, 0, 2148, 2150, 5, 4, 0, 0, 2149, 2148, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 3, 118, 59, 0, 2152, 2149, 1, 0, 0, 0, 2153, 2156, 1, 0, 0, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2157, 2158, 5, 375, 0, 0, 2158, 117, 1, 0, 0, 0, 2159, 2173, 3, 318, 159, 0, 2160, 2161, 3, 318, 159, 0, 2161, 2162, 5, 2, 0, 0, 2162, 2167, 3, 236, 118, 0, 2163, 2164, 5, 4, 0, 0, 2164, 2166, 3, 236, 118, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2171, 5, 3, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2159, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2173, 119, 1, 0, 0, 0, 2174, 2175, 5, 123, 0, 0, 2175, 2180, 3, 156, 78, 0, 2176, 2177, 5, 4, 0, 0, 2177, 2179, 3, 156, 78, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2182, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2186, 1, 0, 0, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2185, 3, 152, 76, 0, 2184, 2183, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 2191, 3, 132, 66, 0, 2190, 2189, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2193, 1, 0, 0, 0, 2192, 2194, 3, 138, 69, 0, 2193, 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 121, 1, 0, 0, 0, 2195, 2197, 5, 119, 0, 0, 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 7, 27, 0, 0, 2199, 2200, 5, 20, 0, 0, 2200, 2203, 5, 201, 0, 0, 2201, 2204, 5, 382, 0, 0, 2202, 2204, 3, 328, 164, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2202, 1, 0, 0, 0, 2204, 2213, 1, 0, 0, 0, 2205, 2207, 5, 119, 0, 0, 2206, 2205, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 7, 28, 0, 0, 2209, 2210, 5, 20, 0, 0, 2210, 2211, 5, 201, 0, 0, 2211, 2213, 3, 232, 116, 0, 2212, 2196, 1, 0, 0, 0, 2212, 2206, 1, 0, 0, 0, 2213, 123, 1, 0, 0, 0, 2214, 2215, 5, 130, 0, 0, 2215, 2216, 5, 31, 0, 0, 2216, 2221, 3, 126, 63, 0, 2217, 2218, 5, 4, 0, 0, 2218, 2220, 3, 126, 63, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2223, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2254, 1, 0, 0, 0, 2223, 2221, 1, 0, 0, 0, 2224, 2225, 5, 130, 0, 0, 2225, 2226, 5, 31, 0, 0, 2226, 2231, 3, 220, 110, 0, 2227, 2228, 5, 4, 0, 0, 2228, 2230, 3, 220, 110, 0, 2229, 2227, 1, 0, 0, 0, 2230, 2233, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2251, 1, 0, 0, 0, 2233, 2231, 1, 0, 0, 0, 2234, 2235, 5, 346, 0, 0, 2235, 2252, 5, 256, 0, 0, 2236, 2237, 5, 346, 0, 0, 2237, 2252, 5, 61, 0, 0, 2238, 2239, 5, 131, 0, 0, 2239, 2240, 5, 271, 0, 0, 2240, 2241, 5, 2, 0, 0, 2241, 2246, 3, 130, 65, 0, 2242, 2243, 5, 4, 0, 0, 2243, 2245, 3, 130, 65, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2250, 5, 3, 0, 0, 2250, 2252, 1, 0, 0, 0, 2251, 2234, 1, 0, 0, 0, 2251, 2236, 1, 0, 0, 0, 2251, 2238, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2254, 1, 0, 0, 0, 2253, 2214, 1, 0, 0, 0, 2253, 2224, 1, 0, 0, 0, 2254, 125, 1, 0, 0, 0, 2255, 2259, 3, 74, 37, 0, 2256, 2259, 3, 128, 64, 0, 2257, 2259, 3, 220, 110, 0, 2258, 2255, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2257, 1, 0, 0, 0, 2259, 127, 1, 0, 0, 0, 2260, 2261, 7, 29, 0, 0, 2261, 2262, 5, 2, 0, 0, 2262, 2267, 3, 130, 65, 0, 2263, 2264, 5, 4, 0, 0, 2264, 2266, 3, 130, 65, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2269, 1, 0, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2270, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2271, 5, 3, 0, 0, 2271, 2292, 1, 0, 0, 0, 2272, 2273, 5, 131, 0, 0, 2273, 2274, 5, 271, 0, 0, 2274, 2277, 5, 2, 0, 0, 2275, 2278, 3, 128, 64, 0, 2276, 2278, 3, 130, 65, 0, 2277, 2275, 1, 0, 0, 0, 2277, 2276, 1, 0, 0, 0, 2278, 2286, 1, 0, 0, 0, 2279, 2282, 5, 4, 0, 0, 2280, 2283, 3, 128, 64, 0, 2281, 2283, 3, 130, 65, 0, 2282, 2280, 1, 0, 0, 0, 2282, 2281, 1, 0, 0, 0, 2283, 2285, 1, 0, 0, 0, 2284, 2279, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2290, 5, 3, 0, 0, 2290, 2292, 1, 0, 0, 0, 2291, 2260, 1, 0, 0, 0, 2291, 2272, 1, 0, 0, 0, 2292, 129, 1, 0, 0, 0, 2293, 2314, 3, 74, 37, 0, 2294, 2314, 3, 220, 110, 0, 2295, 2310, 5, 2, 0, 0, 2296, 2299, 3, 74, 37, 0, 2297, 2299, 3, 220, 110, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2297, 1, 0, 0, 0, 2299, 2307, 1, 0, 0, 0, 2300, 2303, 5, 4, 0, 0, 2301, 2304, 3, 74, 37, 0, 2302, 2304, 3, 220, 110, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2302, 1, 0, 0, 0, 2304, 2306, 1, 0, 0, 0, 2305, 2300, 1, 0, 0, 0, 2306, 2309, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2311, 1, 0, 0, 0, 2309, 2307, 1, 0, 0, 0, 2310, 2298, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 5, 3, 0, 0, 2313, 2293, 1, 0, 0, 0, 2313, 2294, 1, 0, 0, 0, 2313, 2295, 1, 0, 0, 0, 2314, 131, 1, 0, 0, 0, 2315, 2316, 5, 223, 0, 0, 2316, 2317, 5, 2, 0, 0, 2317, 2318, 3, 210, 105, 0, 2318, 2319, 5, 119, 0, 0, 2319, 2320, 3, 134, 67, 0, 2320, 2321, 5, 140, 0, 0, 2321, 2322, 5, 2, 0, 0, 2322, 2327, 3, 136, 68, 0, 2323, 2324, 5, 4, 0, 0, 2324, 2326, 3, 136, 68, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2330, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2332, 5, 3, 0, 0, 2332, 133, 1, 0, 0, 0, 2333, 2346, 3, 318, 159, 0, 2334, 2335, 5, 2, 0, 0, 2335, 2340, 3, 318, 159, 0, 2336, 2337, 5, 4, 0, 0, 2337, 2339, 3, 318, 159, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2343, 1, 0, 0, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2344, 5, 3, 0, 0, 2344, 2346, 1, 0, 0, 0, 2345, 2333, 1, 0, 0, 0, 2345, 2334, 1, 0, 0, 0, 2346, 135, 1, 0, 0, 0, 2347, 2352, 3, 220, 110, 0, 2348, 2350, 5, 20, 0, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 3, 318, 159, 0, 2352, 2349, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 137, 1, 0, 0, 0, 2354, 2357, 5, 327, 0, 0, 2355, 2356, 7, 30, 0, 0, 2356, 2358, 5, 199, 0, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2362, 5, 2, 0, 0, 2360, 2363, 3, 140, 70, 0, 2361, 2363, 3, 142, 71, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2369, 5, 3, 0, 0, 2365, 2367, 5, 20, 0, 0, 2366, 2365, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 3, 318, 159, 0, 2369, 2366, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 139, 1, 0, 0, 0, 2371, 2372, 3, 318, 159, 0, 2372, 2373, 5, 119, 0, 0, 2373, 2374, 3, 318, 159, 0, 2374, 2375, 5, 140, 0, 0, 2375, 2376, 5, 2, 0, 0, 2376, 2381, 3, 146, 73, 0, 2377, 2378, 5, 4, 0, 0, 2378, 2380, 3, 146, 73, 0, 2379, 2377, 1, 0, 0, 0, 2380, 2383, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2384, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2384, 2385, 5, 3, 0, 0, 2385, 141, 1, 0, 0, 0, 2386, 2387, 5, 2, 0, 0, 2387, 2392, 3, 318, 159, 0, 2388, 2389, 5, 4, 0, 0, 2389, 2391, 3, 318, 159, 0, 2390, 2388, 1, 0, 0, 0, 2391, 2394, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2395, 2396, 5, 3, 0, 0, 2396, 2397, 5, 119, 0, 0, 2397, 2398, 3, 318, 159, 0, 2398, 2399, 5, 140, 0, 0, 2399, 2400, 5, 2, 0, 0, 2400, 2405, 3, 144, 72, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 3, 144, 72, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2407, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2408, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2409, 5, 3, 0, 0, 2409, 143, 1, 0, 0, 0, 2410, 2411, 5, 2, 0, 0, 2411, 2416, 3, 198, 99, 0, 2412, 2413, 5, 4, 0, 0, 2413, 2415, 3, 198, 99, 0, 2414, 2412, 1, 0, 0, 0, 2415, 2418, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2424, 5, 3, 0, 0, 2420, 2422, 5, 20, 0, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2423, 1, 0, 0, 0, 2423, 2425, 3, 318, 159, 0, 2424, 2421, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 145, 1, 0, 0, 0, 2426, 2431, 3, 198, 99, 0, 2427, 2429, 5, 20, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2432, 3, 318, 159, 0, 2431, 2428, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 147, 1, 0, 0, 0, 2433, 2434, 5, 137, 0, 0, 2434, 2435, 5, 197, 0, 0, 2435, 2436, 5, 105, 0, 0, 2436, 149, 1, 0, 0, 0, 2437, 2438, 5, 137, 0, 0, 2438, 2439, 5, 105, 0, 0, 2439, 151, 1, 0, 0, 0, 2440, 2441, 5, 158, 0, 0, 2441, 2443, 5, 338, 0, 0, 2442, 2444, 5, 211, 0, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 3, 72, 36, 0, 2446, 2455, 5, 2, 0, 0, 2447, 2452, 3, 220, 110, 0, 2448, 2449, 5, 4, 0, 0, 2449, 2451, 3, 220, 110, 0, 2450, 2448, 1, 0, 0, 0, 2451, 2454, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2456, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2455, 2447, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2458, 5, 3, 0, 0, 2458, 2470, 3, 192, 96, 0, 2459, 2461, 5, 20, 0, 0, 2460, 2459, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2467, 3, 318, 159, 0, 2463, 2464, 5, 4, 0, 0, 2464, 2466, 3, 318, 159, 0, 2465, 2463, 1, 0, 0, 0, 2466, 2469, 1, 0, 0, 0, 2467, 2465, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2471, 1, 0, 0, 0, 2469, 2467, 1, 0, 0, 0, 2470, 2460, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 153, 1, 0, 0, 0, 2472, 2473, 7, 31, 0, 0, 2473, 155, 1, 0, 0, 0, 2474, 2488, 3, 68, 34, 0, 2475, 2477, 5, 158, 0, 0, 2476, 2475, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2484, 3, 180, 90, 0, 2479, 2483, 3, 158, 79, 0, 2480, 2483, 3, 132, 66, 0, 2481, 2483, 3, 138, 69, 0, 2482, 2479, 1, 0, 0, 0, 2482, 2480, 1, 0, 0, 0, 2482, 2481, 1, 0, 0, 0, 2483, 2486, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2487, 2474, 1, 0, 0, 0, 2487, 2476, 1, 0, 0, 0, 2488, 157, 1, 0, 0, 0, 2489, 2490, 3, 160, 80, 0, 2490, 2492, 5, 155, 0, 0, 2491, 2493, 5, 158, 0, 0, 2492, 2491, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2496, 3, 180, 90, 0, 2495, 2497, 3, 162, 81, 0, 2496, 2495, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2507, 1, 0, 0, 0, 2498, 2499, 5, 194, 0, 0, 2499, 2500, 3, 160, 80, 0, 2500, 2502, 5, 155, 0, 0, 2501, 2503, 5, 158, 0, 0, 2502, 2501, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2505, 3, 180, 90, 0, 2505, 2507, 1, 0, 0, 0, 2506, 2489, 1, 0, 0, 0, 2506, 2498, 1, 0, 0, 0, 2507, 159, 1, 0, 0, 0, 2508, 2510, 5, 144, 0, 0, 2509, 2508, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2525, 1, 0, 0, 0, 2511, 2525, 5, 60, 0, 0, 2512, 2514, 5, 161, 0, 0, 2513, 2515, 5, 211, 0, 0, 2514, 2513, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2525, 1, 0, 0, 0, 2516, 2518, 5, 161, 0, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2525, 7, 32, 0, 0, 2520, 2522, 7, 33, 0, 0, 2521, 2523, 5, 211, 0, 0, 2522, 2521, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2509, 1, 0, 0, 0, 2524, 2511, 1, 0, 0, 0, 2524, 2512, 1, 0, 0, 0, 2524, 2517, 1, 0, 0, 0, 2524, 2520, 1, 0, 0, 0, 2525, 161, 1, 0, 0, 0, 2526, 2527, 5, 203, 0, 0, 2527, 2531, 3, 228, 114, 0, 2528, 2529, 5, 332, 0, 0, 2529, 2531, 3, 168, 84, 0, 2530, 2526, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2531, 163, 1, 0, 0, 0, 2532, 2533, 5, 295, 0, 0, 2533, 2535, 5, 2, 0, 0, 2534, 2536, 3, 166, 83, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2542, 5, 3, 0, 0, 2538, 2539, 5, 243, 0, 0, 2539, 2540, 5, 2, 0, 0, 2540, 2541, 5, 382, 0, 0, 2541, 2543, 5, 3, 0, 0, 2542, 2538, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 165, 1, 0, 0, 0, 2544, 2546, 5, 362, 0, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 7, 34, 0, 0, 2548, 2569, 5, 222, 0, 0, 2549, 2550, 3, 220, 110, 0, 2550, 2551, 5, 258, 0, 0, 2551, 2569, 1, 0, 0, 0, 2552, 2553, 5, 29, 0, 0, 2553, 2554, 5, 382, 0, 0, 2554, 2555, 5, 210, 0, 0, 2555, 2556, 5, 201, 0, 0, 2556, 2565, 5, 382, 0, 0, 2557, 2563, 5, 203, 0, 0, 2558, 2564, 3, 318, 159, 0, 2559, 2560, 3, 312, 156, 0, 2560, 2561, 5, 2, 0, 0, 2561, 2562, 5, 3, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2558, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2564, 2566, 1, 0, 0, 0, 2565, 2557, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2569, 1, 0, 0, 0, 2567, 2569, 3, 220, 110, 0, 2568, 2545, 1, 0, 0, 0, 2568, 2549, 1, 0, 0, 0, 2568, 2552, 1, 0, 0, 0, 2568, 2567, 1, 0, 0, 0, 2569, 167, 1, 0, 0, 0, 2570, 2571, 5, 2, 0, 0, 2571, 2572, 3, 170, 85, 0, 2572, 2573, 5, 3, 0, 0, 2573, 169, 1, 0, 0, 0, 2574, 2579, 3, 314, 157, 0, 2575, 2576, 5, 4, 0, 0, 2576, 2578, 3, 314, 157, 0, 2577, 2575, 1, 0, 0, 0, 2578, 2581, 1, 0, 0, 0, 2579, 2577, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 171, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2582, 2583, 5, 2, 0, 0, 2583, 2588, 3, 174, 87, 0, 2584, 2585, 5, 4, 0, 0, 2585, 2587, 3, 174, 87, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2590, 1, 0, 0, 0, 2588, 2586, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2592, 5, 3, 0, 0, 2592, 173, 1, 0, 0, 0, 2593, 2595, 3, 314, 157, 0, 2594, 2596, 7, 25, 0, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 175, 1, 0, 0, 0, 2597, 2598, 5, 2, 0, 0, 2598, 2603, 3, 178, 89, 0, 2599, 2600, 5, 4, 0, 0, 2600, 2602, 3, 178, 89, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2606, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2607, 5, 3, 0, 0, 2607, 177, 1, 0, 0, 0, 2608, 2611, 3, 78, 39, 0, 2609, 2610, 5, 51, 0, 0, 2610, 2612, 3, 328, 164, 0, 2611, 2609, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 179, 1, 0, 0, 0, 2613, 2617, 3, 68, 34, 0, 2614, 2617, 3, 72, 36, 0, 2615, 2617, 3, 80, 40, 0, 2616, 2613, 1, 0, 0, 0, 2616, 2614, 1, 0, 0, 0, 2616, 2615, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 122, 61, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 164, 82, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 3, 192, 96, 0, 2625, 2669, 1, 0, 0, 0, 2626, 2627, 5, 2, 0, 0, 2627, 2628, 3, 12, 6, 0, 2628, 2630, 5, 3, 0, 0, 2629, 2631, 3, 164, 82, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 3, 192, 96, 0, 2633, 2669, 1, 0, 0, 0, 2634, 2635, 5, 2, 0, 0, 2635, 2636, 3, 156, 78, 0, 2636, 2638, 5, 3, 0, 0, 2637, 2639, 3, 164, 82, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2641, 3, 192, 96, 0, 2641, 2669, 1, 0, 0, 0, 2642, 2643, 5, 333, 0, 0, 2643, 2648, 3, 220, 110, 0, 2644, 2645, 5, 4, 0, 0, 2645, 2647, 3, 220, 110, 0, 2646, 2644, 1, 0, 0, 0, 2647, 2650, 1, 0, 0, 0, 2648, 2646, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2648, 1, 0, 0, 0, 2651, 2652, 3, 192, 96, 0, 2652, 2669, 1, 0, 0, 0, 2653, 2654, 3, 308, 154, 0, 2654, 2663, 5, 2, 0, 0, 2655, 2660, 3, 190, 95, 0, 2656, 2657, 5, 4, 0, 0, 2657, 2659, 3, 190, 95, 0, 2658, 2656, 1, 0, 0, 0, 2659, 2662, 1, 0, 0, 0, 2660, 2658, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2664, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2663, 2655, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 5, 3, 0, 0, 2666, 2667, 3, 192, 96, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2616, 1, 0, 0, 0, 2668, 2626, 1, 0, 0, 0, 2668, 2634, 1, 0, 0, 0, 2668, 2642, 1, 0, 0, 0, 2668, 2653, 1, 0, 0, 0, 2669, 181, 1, 0, 0, 0, 2670, 2671, 5, 293, 0, 0, 2671, 2673, 3, 68, 34, 0, 2672, 2674, 3, 184, 92, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2690, 1, 0, 0, 0, 2675, 2676, 5, 293, 0, 0, 2676, 2677, 5, 2, 0, 0, 2677, 2678, 3, 68, 34, 0, 2678, 2680, 5, 3, 0, 0, 2679, 2681, 3, 184, 92, 0, 2680, 2679, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2690, 1, 0, 0, 0, 2682, 2683, 5, 293, 0, 0, 2683, 2684, 5, 2, 0, 0, 2684, 2685, 3, 12, 6, 0, 2685, 2687, 5, 3, 0, 0, 2686, 2688, 3, 184, 92, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 1, 0, 0, 0, 2689, 2670, 1, 0, 0, 0, 2689, 2675, 1, 0, 0, 0, 2689, 2682, 1, 0, 0, 0, 2690, 183, 1, 0, 0, 0, 2691, 2692, 5, 346, 0, 0, 2692, 2693, 5, 274, 0, 0, 2693, 2711, 5, 217, 0, 0, 2694, 2695, 7, 35, 0, 0, 2695, 2708, 5, 31, 0, 0, 2696, 2697, 5, 2, 0, 0, 2697, 2702, 3, 220, 110, 0, 2698, 2699, 5, 4, 0, 0, 2699, 2701, 3, 220, 110, 0, 2700, 2698, 1, 0, 0, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2705, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2706, 5, 3, 0, 0, 2706, 2709, 1, 0, 0, 0, 2707, 2709, 3, 220, 110, 0, 2708, 2696, 1, 0, 0, 0, 2708, 2707, 1, 0, 0, 0, 2709, 2711, 1, 0, 0, 0, 2710, 2691, 1, 0, 0, 0, 2710, 2694, 1, 0, 0, 0, 2711, 2728, 1, 0, 0, 0, 2712, 2713, 7, 36, 0, 0, 2713, 2726, 5, 31, 0, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2720, 3, 88, 44, 0, 2716, 2717, 5, 4, 0, 0, 2717, 2719, 3, 88, 44, 0, 2718, 2716, 1, 0, 0, 0, 2719, 2722, 1, 0, 0, 0, 2720, 2718, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2723, 1, 0, 0, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2724, 5, 3, 0, 0, 2724, 2727, 1, 0, 0, 0, 2725, 2727, 3, 88, 44, 0, 2726, 2714, 1, 0, 0, 0, 2726, 2725, 1, 0, 0, 0, 2727, 2729, 1, 0, 0, 0, 2728, 2712, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 185, 1, 0, 0, 0, 2730, 2731, 3, 318, 159, 0, 2731, 2732, 5, 373, 0, 0, 2732, 2733, 3, 182, 91, 0, 2733, 187, 1, 0, 0, 0, 2734, 2737, 3, 182, 91, 0, 2735, 2737, 3, 186, 93, 0, 2736, 2734, 1, 0, 0, 0, 2736, 2735, 1, 0, 0, 0, 2737, 189, 1, 0, 0, 0, 2738, 2741, 3, 188, 94, 0, 2739, 2741, 3, 224, 112, 0, 2740, 2738, 1, 0, 0, 0, 2740, 2739, 1, 0, 0, 0, 2741, 191, 1, 0, 0, 0, 2742, 2744, 5, 20, 0, 0, 2743, 2742, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2747, 3, 320, 160, 0, 2746, 2748, 3, 168, 84, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2750, 1, 0, 0, 0, 2749, 2743, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 193, 1, 0, 0, 0, 2751, 2752, 5, 257, 0, 0, 2752, 2753, 5, 121, 0, 0, 2753, 2754, 5, 266, 0, 0, 2754, 2758, 3, 328, 164, 0, 2755, 2756, 5, 346, 0, 0, 2756, 2757, 5, 267, 0, 0, 2757, 2759, 3, 38, 19, 0, 2758, 2755, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2801, 1, 0, 0, 0, 2760, 2761, 5, 257, 0, 0, 2761, 2762, 5, 121, 0, 0, 2762, 2772, 5, 85, 0, 0, 2763, 2764, 5, 113, 0, 0, 2764, 2765, 5, 299, 0, 0, 2765, 2766, 5, 31, 0, 0, 2766, 2770, 3, 328, 164, 0, 2767, 2768, 5, 101, 0, 0, 2768, 2769, 5, 31, 0, 0, 2769, 2771, 3, 328, 164, 0, 2770, 2767, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2773, 1, 0, 0, 0, 2772, 2763, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2779, 1, 0, 0, 0, 2774, 2775, 5, 48, 0, 0, 2775, 2776, 5, 154, 0, 0, 2776, 2777, 5, 299, 0, 0, 2777, 2778, 5, 31, 0, 0, 2778, 2780, 3, 328, 164, 0, 2779, 2774, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2786, 1, 0, 0, 0, 2781, 2782, 5, 177, 0, 0, 2782, 2783, 5, 156, 0, 0, 2783, 2784, 5, 299, 0, 0, 2784, 2785, 5, 31, 0, 0, 2785, 2787, 3, 328, 164, 0, 2786, 2781, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 2792, 1, 0, 0, 0, 2788, 2789, 5, 166, 0, 0, 2789, 2790, 5, 299, 0, 0, 2790, 2791, 5, 31, 0, 0, 2791, 2793, 3, 328, 164, 0, 2792, 2788, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2798, 1, 0, 0, 0, 2794, 2795, 5, 198, 0, 0, 2795, 2796, 5, 83, 0, 0, 2796, 2797, 5, 20, 0, 0, 2797, 2799, 3, 328, 164, 0, 2798, 2794, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2801, 1, 0, 0, 0, 2800, 2751, 1, 0, 0, 0, 2800, 2760, 1, 0, 0, 0, 2801, 195, 1, 0, 0, 0, 2802, 2807, 3, 198, 99, 0, 2803, 2804, 5, 4, 0, 0, 2804, 2806, 3, 198, 99, 0, 2805, 2803, 1, 0, 0, 0, 2806, 2809, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 197, 1, 0, 0, 0, 2809, 2807, 1, 0, 0, 0, 2810, 2815, 3, 314, 157, 0, 2811, 2812, 5, 5, 0, 0, 2812, 2814, 3, 314, 157, 0, 2813, 2811, 1, 0, 0, 0, 2814, 2817, 1, 0, 0, 0, 2815, 2813, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 199, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2818, 2823, 3, 202, 101, 0, 2819, 2820, 5, 4, 0, 0, 2820, 2822, 3, 202, 101, 0, 2821, 2819, 1, 0, 0, 0, 2822, 2825, 1, 0, 0, 0, 2823, 2821, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 201, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2826, 2829, 3, 198, 99, 0, 2827, 2828, 5, 207, 0, 0, 2828, 2830, 3, 38, 19, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 203, 1, 0, 0, 0, 2831, 2832, 3, 314, 157, 0, 2832, 2833, 5, 5, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2831, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2837, 3, 314, 157, 0, 2837, 205, 1, 0, 0, 0, 2838, 2839, 3, 314, 157, 0, 2839, 2840, 5, 5, 0, 0, 2840, 2842, 1, 0, 0, 0, 2841, 2838, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2844, 3, 314, 157, 0, 2844, 207, 1, 0, 0, 0, 2845, 2848, 3, 74, 37, 0, 2846, 2848, 3, 220, 110, 0, 2847, 2845, 1, 0, 0, 0, 2847, 2846, 1, 0, 0, 0, 2848, 2856, 1, 0, 0, 0, 2849, 2851, 5, 20, 0, 0, 2850, 2849, 1, 0, 0, 0, 2850, 2851, 1, 0, 0, 0, 2851, 2854, 1, 0, 0, 0, 2852, 2855, 3, 314, 157, 0, 2853, 2855, 3, 168, 84, 0, 2854, 2852, 1, 0, 0, 0, 2854, 2853, 1, 0, 0, 0, 2855, 2857, 1, 0, 0, 0, 2856, 2850, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 209, 1, 0, 0, 0, 2858, 2863, 3, 208, 104, 0, 2859, 2860, 5, 4, 0, 0, 2860, 2862, 3, 208, 104, 0, 2861, 2859, 1, 0, 0, 0, 2862, 2865, 1, 0, 0, 0, 2863, 2861, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 211, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2866, 2867, 5, 2, 0, 0, 2867, 2872, 3, 214, 107, 0, 2868, 2869, 5, 4, 0, 0, 2869, 2871, 3, 214, 107, 0, 2870, 2868, 1, 0, 0, 0, 2871, 2874, 1, 0, 0, 0, 2872, 2870, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2875, 2876, 5, 3, 0, 0, 2876, 213, 1, 0, 0, 0, 2877, 2880, 3, 216, 108, 0, 2878, 2880, 3, 286, 143, 0, 2879, 2877, 1, 0, 0, 0, 2879, 2878, 1, 0, 0, 0, 2880, 215, 1, 0, 0, 0, 2881, 2895, 3, 312, 156, 0, 2882, 2883, 3, 318, 159, 0, 2883, 2884, 5, 2, 0, 0, 2884, 2889, 3, 218, 109, 0, 2885, 2886, 5, 4, 0, 0, 2886, 2888, 3, 218, 109, 0, 2887, 2885, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 2893, 5, 3, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, 2881, 1, 0, 0, 0, 2894, 2882, 1, 0, 0, 0, 2895, 217, 1, 0, 0, 0, 2896, 2899, 3, 312, 156, 0, 2897, 2899, 3, 240, 120, 0, 2898, 2896, 1, 0, 0, 0, 2898, 2897, 1, 0, 0, 0, 2899, 219, 1, 0, 0, 0, 2900, 2901, 3, 228, 114, 0, 2901, 221, 1, 0, 0, 0, 2902, 2903, 3, 318, 159, 0, 2903, 2904, 5, 373, 0, 0, 2904, 2905, 3, 220, 110, 0, 2905, 223, 1, 0, 0, 0, 2906, 2909, 3, 220, 110, 0, 2907, 2909, 3, 222, 111, 0, 2908, 2906, 1, 0, 0, 0, 2908, 2907, 1, 0, 0, 0, 2909, 225, 1, 0, 0, 0, 2910, 2915, 3, 220, 110, 0, 2911, 2912, 5, 4, 0, 0, 2912, 2914, 3, 220, 110, 0, 2913, 2911, 1, 0, 0, 0, 2914, 2917, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 227, 1, 0, 0, 0, 2917, 2915, 1, 0, 0, 0, 2918, 2919, 6, 114, -1, 0, 2919, 2920, 7, 37, 0, 0, 2920, 2931, 3, 228, 114, 5, 2921, 2922, 5, 105, 0, 0, 2922, 2923, 5, 2, 0, 0, 2923, 2924, 3, 12, 6, 0, 2924, 2925, 5, 3, 0, 0, 2925, 2931, 1, 0, 0, 0, 2926, 2928, 3, 232, 116, 0, 2927, 2929, 3, 230, 115, 0, 2928, 2927, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2918, 1, 0, 0, 0, 2930, 2921, 1, 0, 0, 0, 2930, 2926, 1, 0, 0, 0, 2931, 2940, 1, 0, 0, 0, 2932, 2933, 10, 2, 0, 0, 2933, 2934, 5, 14, 0, 0, 2934, 2939, 3, 228, 114, 3, 2935, 2936, 10, 1, 0, 0, 2936, 2937, 5, 208, 0, 0, 2937, 2939, 3, 228, 114, 2, 2938, 2932, 1, 0, 0, 0, 2938, 2935, 1, 0, 0, 0, 2939, 2942, 1, 0, 0, 0, 2940, 2938, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 229, 1, 0, 0, 0, 2942, 2940, 1, 0, 0, 0, 2943, 2945, 5, 197, 0, 0, 2944, 2943, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2947, 5, 24, 0, 0, 2947, 2948, 3, 232, 116, 0, 2948, 2949, 5, 14, 0, 0, 2949, 2950, 3, 232, 116, 0, 2950, 3026, 1, 0, 0, 0, 2951, 2953, 5, 197, 0, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2955, 5, 140, 0, 0, 2955, 2956, 5, 2, 0, 0, 2956, 2961, 3, 220, 110, 0, 2957, 2958, 5, 4, 0, 0, 2958, 2960, 3, 220, 110, 0, 2959, 2957, 1, 0, 0, 0, 2960, 2963, 1, 0, 0, 0, 2961, 2959, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2964, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2964, 2965, 5, 3, 0, 0, 2965, 3026, 1, 0, 0, 0, 2966, 2968, 5, 197, 0, 0, 2967, 2966, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2970, 5, 140, 0, 0, 2970, 2971, 5, 2, 0, 0, 2971, 2972, 3, 12, 6, 0, 2972, 2973, 5, 3, 0, 0, 2973, 3026, 1, 0, 0, 0, 2974, 2976, 5, 197, 0, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2978, 7, 38, 0, 0, 2978, 3026, 3, 232, 116, 0, 2979, 2981, 5, 197, 0, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2983, 7, 39, 0, 0, 2983, 2997, 7, 40, 0, 0, 2984, 2985, 5, 2, 0, 0, 2985, 2998, 5, 3, 0, 0, 2986, 2987, 5, 2, 0, 0, 2987, 2992, 3, 220, 110, 0, 2988, 2989, 5, 4, 0, 0, 2989, 2991, 3, 220, 110, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2994, 1, 0, 0, 0, 2992, 2990, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2995, 1, 0, 0, 0, 2994, 2992, 1, 0, 0, 0, 2995, 2996, 5, 3, 0, 0, 2996, 2998, 1, 0, 0, 0, 2997, 2984, 1, 0, 0, 0, 2997, 2986, 1, 0, 0, 0, 2998, 3026, 1, 0, 0, 0, 2999, 3001, 5, 197, 0, 0, 3000, 2999, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 7, 39, 0, 0, 3003, 3006, 3, 232, 116, 0, 3004, 3005, 5, 100, 0, 0, 3005, 3007, 3, 328, 164, 0, 3006, 3004, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3026, 1, 0, 0, 0, 3008, 3010, 5, 153, 0, 0, 3009, 3011, 5, 197, 0, 0, 3010, 3009, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3026, 5, 198, 0, 0, 3013, 3015, 5, 153, 0, 0, 3014, 3016, 5, 197, 0, 0, 3015, 3014, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3026, 7, 41, 0, 0, 3018, 3020, 5, 153, 0, 0, 3019, 3021, 5, 197, 0, 0, 3020, 3019, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 5, 92, 0, 0, 3023, 3024, 5, 123, 0, 0, 3024, 3026, 3, 232, 116, 0, 3025, 2944, 1, 0, 0, 0, 3025, 2952, 1, 0, 0, 0, 3025, 2967, 1, 0, 0, 0, 3025, 2975, 1, 0, 0, 0, 3025, 2980, 1, 0, 0, 0, 3025, 3000, 1, 0, 0, 0, 3025, 3008, 1, 0, 0, 0, 3025, 3013, 1, 0, 0, 0, 3025, 3018, 1, 0, 0, 0, 3026, 231, 1, 0, 0, 0, 3027, 3028, 6, 116, -1, 0, 3028, 3032, 3, 236, 118, 0, 3029, 3030, 7, 42, 0, 0, 3030, 3032, 3, 232, 116, 7, 3031, 3027, 1, 0, 0, 0, 3031, 3029, 1, 0, 0, 0, 3032, 3054, 1, 0, 0, 0, 3033, 3034, 10, 6, 0, 0, 3034, 3035, 7, 43, 0, 0, 3035, 3053, 3, 232, 116, 7, 3036, 3037, 10, 5, 0, 0, 3037, 3038, 7, 44, 0, 0, 3038, 3053, 3, 232, 116, 6, 3039, 3040, 10, 4, 0, 0, 3040, 3041, 5, 367, 0, 0, 3041, 3053, 3, 232, 116, 5, 3042, 3043, 10, 3, 0, 0, 3043, 3044, 5, 370, 0, 0, 3044, 3053, 3, 232, 116, 4, 3045, 3046, 10, 2, 0, 0, 3046, 3047, 5, 368, 0, 0, 3047, 3053, 3, 232, 116, 3, 3048, 3049, 10, 1, 0, 0, 3049, 3050, 3, 242, 121, 0, 3050, 3051, 3, 232, 116, 2, 3051, 3053, 1, 0, 0, 0, 3052, 3033, 1, 0, 0, 0, 3052, 3036, 1, 0, 0, 0, 3052, 3039, 1, 0, 0, 0, 3052, 3042, 1, 0, 0, 0, 3052, 3045, 1, 0, 0, 0, 3052, 3048, 1, 0, 0, 0, 3053, 3056, 1, 0, 0, 0, 3054, 3052, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 233, 1, 0, 0, 0, 3056, 3054, 1, 0, 0, 0, 3057, 3058, 7, 45, 0, 0, 3058, 235, 1, 0, 0, 0, 3059, 3060, 6, 118, -1, 0, 3060, 3309, 7, 46, 0, 0, 3061, 3062, 7, 47, 0, 0, 3062, 3065, 5, 2, 0, 0, 3063, 3066, 3, 234, 117, 0, 3064, 3066, 3, 328, 164, 0, 3065, 3063, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3068, 5, 4, 0, 0, 3068, 3069, 3, 232, 116, 0, 3069, 3070, 5, 4, 0, 0, 3070, 3071, 3, 232, 116, 0, 3071, 3072, 5, 3, 0, 0, 3072, 3309, 1, 0, 0, 0, 3073, 3074, 7, 48, 0, 0, 3074, 3077, 5, 2, 0, 0, 3075, 3078, 3, 234, 117, 0, 3076, 3078, 3, 328, 164, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3080, 5, 4, 0, 0, 3080, 3081, 3, 232, 116, 0, 3081, 3082, 5, 4, 0, 0, 3082, 3083, 3, 232, 116, 0, 3083, 3084, 5, 3, 0, 0, 3084, 3309, 1, 0, 0, 0, 3085, 3087, 5, 35, 0, 0, 3086, 3088, 3, 296, 148, 0, 3087, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3093, 1, 0, 0, 0, 3091, 3092, 5, 97, 0, 0, 3092, 3094, 3, 220, 110, 0, 3093, 3091, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 5, 99, 0, 0, 3096, 3309, 1, 0, 0, 0, 3097, 3098, 5, 35, 0, 0, 3098, 3100, 3, 220, 110, 0, 3099, 3101, 3, 296, 148, 0, 3100, 3099, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3106, 1, 0, 0, 0, 3104, 3105, 5, 97, 0, 0, 3105, 3107, 3, 220, 110, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 5, 99, 0, 0, 3109, 3309, 1, 0, 0, 0, 3110, 3111, 7, 49, 0, 0, 3111, 3112, 5, 2, 0, 0, 3112, 3113, 3, 220, 110, 0, 3113, 3114, 5, 20, 0, 0, 3114, 3115, 3, 270, 135, 0, 3115, 3116, 5, 3, 0, 0, 3116, 3309, 1, 0, 0, 0, 3117, 3118, 5, 286, 0, 0, 3118, 3127, 5, 2, 0, 0, 3119, 3124, 3, 208, 104, 0, 3120, 3121, 5, 4, 0, 0, 3121, 3123, 3, 208, 104, 0, 3122, 3120, 1, 0, 0, 0, 3123, 3126, 1, 0, 0, 0, 3124, 3122, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3128, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3119, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3309, 5, 3, 0, 0, 3130, 3131, 5, 116, 0, 0, 3131, 3132, 5, 2, 0, 0, 3132, 3135, 3, 220, 110, 0, 3133, 3134, 5, 138, 0, 0, 3134, 3136, 5, 199, 0, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 3, 0, 0, 3138, 3309, 1, 0, 0, 0, 3139, 3140, 5, 17, 0, 0, 3140, 3141, 5, 2, 0, 0, 3141, 3144, 3, 220, 110, 0, 3142, 3143, 5, 138, 0, 0, 3143, 3145, 5, 199, 0, 0, 3144, 3142, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 5, 3, 0, 0, 3147, 3309, 1, 0, 0, 0, 3148, 3149, 5, 157, 0, 0, 3149, 3150, 5, 2, 0, 0, 3150, 3153, 3, 220, 110, 0, 3151, 3152, 5, 138, 0, 0, 3152, 3154, 5, 199, 0, 0, 3153, 3151, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3156, 5, 3, 0, 0, 3156, 3309, 1, 0, 0, 0, 3157, 3158, 5, 225, 0, 0, 3158, 3159, 5, 2, 0, 0, 3159, 3160, 3, 232, 116, 0, 3160, 3161, 5, 140, 0, 0, 3161, 3162, 3, 232, 116, 0, 3162, 3163, 5, 3, 0, 0, 3163, 3309, 1, 0, 0, 0, 3164, 3309, 3, 240, 120, 0, 3165, 3309, 5, 363, 0, 0, 3166, 3167, 3, 312, 156, 0, 3167, 3168, 5, 5, 0, 0, 3168, 3169, 5, 363, 0, 0, 3169, 3309, 1, 0, 0, 0, 3170, 3171, 5, 2, 0, 0, 3171, 3174, 3, 208, 104, 0, 3172, 3173, 5, 4, 0, 0, 3173, 3175, 3, 208, 104, 0, 3174, 3172, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 5, 3, 0, 0, 3179, 3309, 1, 0, 0, 0, 3180, 3181, 5, 2, 0, 0, 3181, 3182, 3, 12, 6, 0, 3182, 3183, 5, 3, 0, 0, 3183, 3309, 1, 0, 0, 0, 3184, 3185, 5, 136, 0, 0, 3185, 3186, 5, 2, 0, 0, 3186, 3187, 3, 220, 110, 0, 3187, 3188, 5, 3, 0, 0, 3188, 3309, 1, 0, 0, 0, 3189, 3190, 3, 308, 154, 0, 3190, 3202, 5, 2, 0, 0, 3191, 3193, 3, 154, 77, 0, 3192, 3191, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3194, 1, 0, 0, 0, 3194, 3199, 3, 224, 112, 0, 3195, 3196, 5, 4, 0, 0, 3196, 3198, 3, 224, 112, 0, 3197, 3195, 1, 0, 0, 0, 3198, 3201, 1, 0, 0, 0, 3199, 3197, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3203, 1, 0, 0, 0, 3201, 3199, 1, 0, 0, 0, 3202, 3192, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3211, 5, 3, 0, 0, 3205, 3206, 5, 114, 0, 0, 3206, 3207, 5, 2, 0, 0, 3207, 3208, 5, 344, 0, 0, 3208, 3209, 3, 228, 114, 0, 3209, 3210, 5, 3, 0, 0, 3210, 3212, 1, 0, 0, 0, 3211, 3205, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3215, 1, 0, 0, 0, 3213, 3214, 7, 50, 0, 0, 3214, 3216, 5, 199, 0, 0, 3215, 3213, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3219, 1, 0, 0, 0, 3217, 3218, 5, 213, 0, 0, 3218, 3220, 3, 300, 150, 0, 3219, 3217, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3309, 1, 0, 0, 0, 3221, 3222, 3, 318, 159, 0, 3222, 3223, 5, 372, 0, 0, 3223, 3224, 3, 220, 110, 0, 3224, 3309, 1, 0, 0, 0, 3225, 3226, 5, 2, 0, 0, 3226, 3229, 3, 318, 159, 0, 3227, 3228, 5, 4, 0, 0, 3228, 3230, 3, 318, 159, 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, 3233, 1, 0, 0, 0, 3233, 3234, 5, 3, 0, 0, 3234, 3235, 5, 372, 0, 0, 3235, 3236, 3, 220, 110, 0, 3236, 3309, 1, 0, 0, 0, 3237, 3309, 3, 318, 159, 0, 3238, 3239, 5, 2, 0, 0, 3239, 3240, 3, 220, 110, 0, 3240, 3241, 5, 3, 0, 0, 3241, 3309, 1, 0, 0, 0, 3242, 3243, 5, 110, 0, 0, 3243, 3244, 5, 2, 0, 0, 3244, 3245, 3, 318, 159, 0, 3245, 3246, 5, 123, 0, 0, 3246, 3247, 3, 232, 116, 0, 3247, 3248, 5, 3, 0, 0, 3248, 3309, 1, 0, 0, 0, 3249, 3250, 7, 51, 0, 0, 3250, 3251, 5, 2, 0, 0, 3251, 3252, 3, 232, 116, 0, 3252, 3253, 7, 52, 0, 0, 3253, 3256, 3, 232, 116, 0, 3254, 3255, 7, 53, 0, 0, 3255, 3257, 3, 232, 116, 0, 3256, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3259, 5, 3, 0, 0, 3259, 3309, 1, 0, 0, 0, 3260, 3261, 5, 315, 0, 0, 3261, 3263, 5, 2, 0, 0, 3262, 3264, 7, 54, 0, 0, 3263, 3262, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3266, 1, 0, 0, 0, 3265, 3267, 3, 232, 116, 0, 3266, 3265, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 5, 123, 0, 0, 3269, 3270, 3, 232, 116, 0, 3270, 3271, 5, 3, 0, 0, 3271, 3309, 1, 0, 0, 0, 3272, 3273, 5, 215, 0, 0, 3273, 3274, 5, 2, 0, 0, 3274, 3275, 3, 232, 116, 0, 3275, 3276, 5, 224, 0, 0, 3276, 3277, 3, 232, 116, 0, 3277, 3278, 5, 123, 0, 0, 3278, 3281, 3, 232, 116, 0, 3279, 3280, 5, 119, 0, 0, 3280, 3282, 3, 232, 116, 0, 3281, 3279, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 5, 3, 0, 0, 3284, 3309, 1, 0, 0, 0, 3285, 3286, 7, 55, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3288, 3, 232, 116, 0, 3288, 3289, 5, 3, 0, 0, 3289, 3290, 5, 347, 0, 0, 3290, 3291, 5, 130, 0, 0, 3291, 3292, 5, 2, 0, 0, 3292, 3293, 5, 209, 0, 0, 3293, 3294, 5, 31, 0, 0, 3294, 3295, 3, 88, 44, 0, 3295, 3302, 5, 3, 0, 0, 3296, 3297, 5, 114, 0, 0, 3297, 3298, 5, 2, 0, 0, 3298, 3299, 5, 344, 0, 0, 3299, 3300, 3, 228, 114, 0, 3300, 3301, 5, 3, 0, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3296, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3306, 1, 0, 0, 0, 3304, 3305, 5, 213, 0, 0, 3305, 3307, 3, 300, 150, 0, 3306, 3304, 1, 0, 0, 0, 3306, 3307, 1, 0, 0, 0, 3307, 3309, 1, 0, 0, 0, 3308, 3059, 1, 0, 0, 0, 3308, 3061, 1, 0, 0, 0, 3308, 3073, 1, 0, 0, 0, 3308, 3085, 1, 0, 0, 0, 3308, 3097, 1, 0, 0, 0, 3308, 3110, 1, 0, 0, 0, 3308, 3117, 1, 0, 0, 0, 3308, 3130, 1, 0, 0, 0, 3308, 3139, 1, 0, 0, 0, 3308, 3148, 1, 0, 0, 0, 3308, 3157, 1, 0, 0, 0, 3308, 3164, 1, 0, 0, 0, 3308, 3165, 1, 0, 0, 0, 3308, 3166, 1, 0, 0, 0, 3308, 3170, 1, 0, 0, 0, 3308, 3180, 1, 0, 0, 0, 3308, 3184, 1, 0, 0, 0, 3308, 3189, 1, 0, 0, 0, 3308, 3221, 1, 0, 0, 0, 3308, 3225, 1, 0, 0, 0, 3308, 3237, 1, 0, 0, 0, 3308, 3238, 1, 0, 0, 0, 3308, 3242, 1, 0, 0, 0, 3308, 3249, 1, 0, 0, 0, 3308, 3260, 1, 0, 0, 0, 3308, 3272, 1, 0, 0, 0, 3308, 3285, 1, 0, 0, 0, 3309, 3320, 1, 0, 0, 0, 3310, 3311, 10, 9, 0, 0, 3311, 3312, 5, 6, 0, 0, 3312, 3313, 3, 232, 116, 0, 3313, 3314, 5, 7, 0, 0, 3314, 3319, 1, 0, 0, 0, 3315, 3316, 10, 7, 0, 0, 3316, 3317, 5, 5, 0, 0, 3317, 3319, 3, 318, 159, 0, 3318, 3310, 1, 0, 0, 0, 3318, 3315, 1, 0, 0, 0, 3319, 3322, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 237, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3331, 5, 71, 0, 0, 3324, 3331, 5, 303, 0, 0, 3325, 3331, 5, 304, 0, 0, 3326, 3331, 5, 305, 0, 0, 3327, 3331, 5, 149, 0, 0, 3328, 3331, 5, 133, 0, 0, 3329, 3331, 3, 318, 159, 0, 3330, 3323, 1, 0, 0, 0, 3330, 3324, 1, 0, 0, 0, 3330, 3325, 1, 0, 0, 0, 3330, 3326, 1, 0, 0, 0, 3330, 3327, 1, 0, 0, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3329, 1, 0, 0, 0, 3331, 239, 1, 0, 0, 0, 3332, 3348, 5, 198, 0, 0, 3333, 3348, 5, 376, 0, 0, 3334, 3335, 5, 371, 0, 0, 3335, 3348, 3, 318, 159, 0, 3336, 3348, 3, 250, 125, 0, 3337, 3338, 3, 238, 119, 0, 3338, 3339, 3, 328, 164, 0, 3339, 3348, 1, 0, 0, 0, 3340, 3348, 3, 324, 162, 0, 3341, 3348, 3, 248, 124, 0, 3342, 3344, 3, 328, 164, 0, 3343, 3342, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3343, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3348, 1, 0, 0, 0, 3347, 3332, 1, 0, 0, 0, 3347, 3333, 1, 0, 0, 0, 3347, 3334, 1, 0, 0, 0, 3347, 3336, 1, 0, 0, 0, 3347, 3337, 1, 0, 0, 0, 3347, 3340, 1, 0, 0, 0, 3347, 3341, 1, 0, 0, 0, 3347, 3343, 1, 0, 0, 0, 3348, 241, 1, 0, 0, 0, 3349, 3350, 7, 56, 0, 0, 3350, 243, 1, 0, 0, 0, 3351, 3352, 7, 57, 0, 0, 3352, 245, 1, 0, 0, 0, 3353, 3354, 7, 58, 0, 0, 3354, 247, 1, 0, 0, 0, 3355, 3356, 7, 59, 0, 0, 3356, 249, 1, 0, 0, 0, 3357, 3360, 5, 149, 0, 0, 3358, 3361, 3, 252, 126, 0, 3359, 3361, 3, 256, 128, 0, 3360, 3358, 1, 0, 0, 0, 3360, 3359, 1, 0, 0, 0, 3361, 251, 1, 0, 0, 0, 3362, 3364, 3, 254, 127, 0, 3363, 3365, 3, 258, 129, 0, 3364, 3363, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 253, 1, 0, 0, 0, 3366, 3367, 3, 260, 130, 0, 3367, 3368, 3, 262, 131, 0, 3368, 3370, 1, 0, 0, 0, 3369, 3366, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3369, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 255, 1, 0, 0, 0, 3373, 3376, 3, 258, 129, 0, 3374, 3377, 3, 254, 127, 0, 3375, 3377, 3, 258, 129, 0, 3376, 3374, 1, 0, 0, 0, 3376, 3375, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 257, 1, 0, 0, 0, 3378, 3379, 3, 260, 130, 0, 3379, 3380, 3, 264, 132, 0, 3380, 3381, 5, 309, 0, 0, 3381, 3382, 3, 264, 132, 0, 3382, 259, 1, 0, 0, 0, 3383, 3385, 7, 60, 0, 0, 3384, 3383, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3389, 1, 0, 0, 0, 3386, 3390, 5, 382, 0, 0, 3387, 3390, 5, 384, 0, 0, 3388, 3390, 3, 328, 164, 0, 3389, 3386, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3389, 3388, 1, 0, 0, 0, 3390, 261, 1, 0, 0, 0, 3391, 3392, 7, 61, 0, 0, 3392, 263, 1, 0, 0, 0, 3393, 3394, 7, 62, 0, 0, 3394, 265, 1, 0, 0, 0, 3395, 3399, 5, 116, 0, 0, 3396, 3397, 5, 9, 0, 0, 3397, 3399, 3, 314, 157, 0, 3398, 3395, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3399, 267, 1, 0, 0, 0, 3400, 3431, 5, 27, 0, 0, 3401, 3431, 5, 308, 0, 0, 3402, 3431, 5, 32, 0, 0, 3403, 3431, 5, 276, 0, 0, 3404, 3431, 5, 272, 0, 0, 3405, 3431, 5, 150, 0, 0, 3406, 3431, 5, 151, 0, 0, 3407, 3431, 5, 25, 0, 0, 3408, 3431, 5, 174, 0, 0, 3409, 3431, 5, 117, 0, 0, 3410, 3431, 5, 234, 0, 0, 3411, 3431, 5, 95, 0, 0, 3412, 3431, 5, 71, 0, 0, 3413, 3431, 5, 303, 0, 0, 3414, 3431, 5, 305, 0, 0, 3415, 3431, 5, 304, 0, 0, 3416, 3431, 5, 285, 0, 0, 3417, 3431, 5, 41, 0, 0, 3418, 3431, 5, 40, 0, 0, 3419, 3431, 5, 334, 0, 0, 3420, 3431, 5, 26, 0, 0, 3421, 3431, 5, 80, 0, 0, 3422, 3431, 5, 79, 0, 0, 3423, 3431, 5, 200, 0, 0, 3424, 3431, 5, 340, 0, 0, 3425, 3431, 5, 149, 0, 0, 3426, 3431, 5, 19, 0, 0, 3427, 3431, 5, 286, 0, 0, 3428, 3431, 5, 177, 0, 0, 3429, 3431, 3, 318, 159, 0, 3430, 3400, 1, 0, 0, 0, 3430, 3401, 1, 0, 0, 0, 3430, 3402, 1, 0, 0, 0, 3430, 3403, 1, 0, 0, 0, 3430, 3404, 1, 0, 0, 0, 3430, 3405, 1, 0, 0, 0, 3430, 3406, 1, 0, 0, 0, 3430, 3407, 1, 0, 0, 0, 3430, 3408, 1, 0, 0, 0, 3430, 3409, 1, 0, 0, 0, 3430, 3410, 1, 0, 0, 0, 3430, 3411, 1, 0, 0, 0, 3430, 3412, 1, 0, 0, 0, 3430, 3413, 1, 0, 0, 0, 3430, 3414, 1, 0, 0, 0, 3430, 3415, 1, 0, 0, 0, 3430, 3416, 1, 0, 0, 0, 3430, 3417, 1, 0, 0, 0, 3430, 3418, 1, 0, 0, 0, 3430, 3419, 1, 0, 0, 0, 3430, 3420, 1, 0, 0, 0, 3430, 3421, 1, 0, 0, 0, 3430, 3422, 1, 0, 0, 0, 3430, 3423, 1, 0, 0, 0, 3430, 3424, 1, 0, 0, 0, 3430, 3425, 1, 0, 0, 0, 3430, 3426, 1, 0, 0, 0, 3430, 3427, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3429, 1, 0, 0, 0, 3431, 269, 1, 0, 0, 0, 3432, 3433, 5, 19, 0, 0, 3433, 3434, 5, 356, 0, 0, 3434, 3435, 3, 270, 135, 0, 3435, 3436, 5, 358, 0, 0, 3436, 3486, 1, 0, 0, 0, 3437, 3438, 5, 177, 0, 0, 3438, 3439, 5, 356, 0, 0, 3439, 3440, 3, 270, 135, 0, 3440, 3441, 5, 4, 0, 0, 3441, 3442, 3, 270, 135, 0, 3442, 3443, 5, 358, 0, 0, 3443, 3486, 1, 0, 0, 0, 3444, 3458, 5, 286, 0, 0, 3445, 3454, 5, 356, 0, 0, 3446, 3451, 3, 294, 147, 0, 3447, 3448, 5, 4, 0, 0, 3448, 3450, 3, 294, 147, 0, 3449, 3447, 1, 0, 0, 0, 3450, 3453, 1, 0, 0, 0, 3451, 3449, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3455, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3454, 3446, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3459, 5, 358, 0, 0, 3457, 3459, 5, 354, 0, 0, 3458, 3445, 1, 0, 0, 0, 3458, 3457, 1, 0, 0, 0, 3459, 3486, 1, 0, 0, 0, 3460, 3461, 5, 149, 0, 0, 3461, 3464, 7, 63, 0, 0, 3462, 3463, 5, 309, 0, 0, 3463, 3465, 5, 186, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3486, 1, 0, 0, 0, 3466, 3467, 5, 149, 0, 0, 3467, 3470, 7, 64, 0, 0, 3468, 3469, 5, 309, 0, 0, 3469, 3471, 7, 65, 0, 0, 3470, 3468, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3486, 1, 0, 0, 0, 3472, 3483, 3, 268, 134, 0, 3473, 3474, 5, 2, 0, 0, 3474, 3479, 5, 382, 0, 0, 3475, 3476, 5, 4, 0, 0, 3476, 3478, 5, 382, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3481, 1, 0, 0, 0, 3479, 3477, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3482, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3482, 3484, 5, 3, 0, 0, 3483, 3473, 1, 0, 0, 0, 3483, 3484, 1, 0, 0, 0, 3484, 3486, 1, 0, 0, 0, 3485, 3432, 1, 0, 0, 0, 3485, 3437, 1, 0, 0, 0, 3485, 3444, 1, 0, 0, 0, 3485, 3460, 1, 0, 0, 0, 3485, 3466, 1, 0, 0, 0, 3485, 3472, 1, 0, 0, 0, 3486, 271, 1, 0, 0, 0, 3487, 3492, 3, 274, 137, 0, 3488, 3489, 5, 4, 0, 0, 3489, 3491, 3, 274, 137, 0, 3490, 3488, 1, 0, 0, 0, 3491, 3494, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 273, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3495, 3496, 3, 78, 39, 0, 3496, 3500, 3, 270, 135, 0, 3497, 3499, 3, 280, 140, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3502, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 275, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3503, 3508, 3, 278, 139, 0, 3504, 3505, 5, 4, 0, 0, 3505, 3507, 3, 278, 139, 0, 3506, 3504, 1, 0, 0, 0, 3507, 3510, 1, 0, 0, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 277, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3512, 3, 74, 37, 0, 3512, 3516, 3, 270, 135, 0, 3513, 3515, 3, 280, 140, 0, 3514, 3513, 1, 0, 0, 0, 3515, 3518, 1, 0, 0, 0, 3516, 3514, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 279, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3519, 3520, 5, 197, 0, 0, 3520, 3527, 5, 198, 0, 0, 3521, 3522, 5, 82, 0, 0, 3522, 3527, 3, 220, 110, 0, 3523, 3524, 5, 51, 0, 0, 3524, 3527, 3, 328, 164, 0, 3525, 3527, 3, 266, 133, 0, 3526, 3519, 1, 0, 0, 0, 3526, 3521, 1, 0, 0, 0, 3526, 3523, 1, 0, 0, 0, 3526, 3525, 1, 0, 0, 0, 3527, 281, 1, 0, 0, 0, 3528, 3529, 7, 66, 0, 0, 3529, 3530, 3, 220, 110, 0, 3530, 283, 1, 0, 0, 0, 3531, 3536, 3, 286, 143, 0, 3532, 3533, 5, 4, 0, 0, 3533, 3535, 3, 286, 143, 0, 3534, 3532, 1, 0, 0, 0, 3535, 3538, 1, 0, 0, 0, 3536, 3534, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 285, 1, 0, 0, 0, 3538, 3536, 1, 0, 0, 0, 3539, 3540, 3, 314, 157, 0, 3540, 3543, 3, 270, 135, 0, 3541, 3542, 5, 197, 0, 0, 3542, 3544, 5, 198, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3547, 1, 0, 0, 0, 3545, 3546, 5, 51, 0, 0, 3546, 3548, 3, 328, 164, 0, 3547, 3545, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 287, 1, 0, 0, 0, 3549, 3554, 3, 290, 145, 0, 3550, 3551, 5, 4, 0, 0, 3551, 3553, 3, 290, 145, 0, 3552, 3550, 1, 0, 0, 0, 3553, 3556, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 289, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3558, 3, 78, 39, 0, 3558, 3562, 3, 270, 135, 0, 3559, 3561, 3, 292, 146, 0, 3560, 3559, 1, 0, 0, 0, 3561, 3564, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 291, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3566, 5, 197, 0, 0, 3566, 3579, 5, 198, 0, 0, 3567, 3568, 5, 82, 0, 0, 3568, 3579, 3, 220, 110, 0, 3569, 3570, 5, 127, 0, 0, 3570, 3571, 5, 12, 0, 0, 3571, 3572, 5, 20, 0, 0, 3572, 3573, 5, 2, 0, 0, 3573, 3574, 3, 220, 110, 0, 3574, 3575, 5, 3, 0, 0, 3575, 3579, 1, 0, 0, 0, 3576, 3577, 5, 51, 0, 0, 3577, 3579, 3, 328, 164, 0, 3578, 3565, 1, 0, 0, 0, 3578, 3567, 1, 0, 0, 0, 3578, 3569, 1, 0, 0, 0, 3578, 3576, 1, 0, 0, 0, 3579, 293, 1, 0, 0, 0, 3580, 3582, 3, 318, 159, 0, 3581, 3583, 5, 371, 0, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3587, 3, 270, 135, 0, 3585, 3586, 5, 197, 0, 0, 3586, 3588, 5, 198, 0, 0, 3587, 3585, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3591, 1, 0, 0, 0, 3589, 3590, 5, 51, 0, 0, 3590, 3592, 3, 328, 164, 0, 3591, 3589, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 295, 1, 0, 0, 0, 3593, 3594, 5, 343, 0, 0, 3594, 3595, 3, 220, 110, 0, 3595, 3596, 5, 300, 0, 0, 3596, 3597, 3, 220, 110, 0, 3597, 297, 1, 0, 0, 0, 3598, 3599, 5, 345, 0, 0, 3599, 3600, 3, 314, 157, 0, 3600, 3601, 5, 20, 0, 0, 3601, 3609, 3, 300, 150, 0, 3602, 3603, 5, 4, 0, 0, 3603, 3604, 3, 314, 157, 0, 3604, 3605, 5, 20, 0, 0, 3605, 3606, 3, 300, 150, 0, 3606, 3608, 1, 0, 0, 0, 3607, 3602, 1, 0, 0, 0, 3608, 3611, 1, 0, 0, 0, 3609, 3607, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 299, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3659, 3, 314, 157, 0, 3613, 3614, 5, 2, 0, 0, 3614, 3615, 3, 314, 157, 0, 3615, 3616, 5, 3, 0, 0, 3616, 3659, 1, 0, 0, 0, 3617, 3652, 5, 2, 0, 0, 3618, 3619, 5, 44, 0, 0, 3619, 3620, 5, 31, 0, 0, 3620, 3625, 3, 220, 110, 0, 3621, 3622, 5, 4, 0, 0, 3622, 3624, 3, 220, 110, 0, 3623, 3621, 1, 0, 0, 0, 3624, 3627, 1, 0, 0, 0, 3625, 3623, 1, 0, 0, 0, 3625, 3626, 1, 0, 0, 0, 3626, 3653, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3628, 3629, 7, 35, 0, 0, 3629, 3630, 5, 31, 0, 0, 3630, 3635, 3, 220, 110, 0, 3631, 3632, 5, 4, 0, 0, 3632, 3634, 3, 220, 110, 0, 3633, 3631, 1, 0, 0, 0, 3634, 3637, 1, 0, 0, 0, 3635, 3633, 1, 0, 0, 0, 3635, 3636, 1, 0, 0, 0, 3636, 3639, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3638, 3628, 1, 0, 0, 0, 3638, 3639, 1, 0, 0, 0, 3639, 3650, 1, 0, 0, 0, 3640, 3641, 7, 36, 0, 0, 3641, 3642, 5, 31, 0, 0, 3642, 3647, 3, 88, 44, 0, 3643, 3644, 5, 4, 0, 0, 3644, 3646, 3, 88, 44, 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, 3651, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3640, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3653, 1, 0, 0, 0, 3652, 3618, 1, 0, 0, 0, 3652, 3638, 1, 0, 0, 0, 3653, 3655, 1, 0, 0, 0, 3654, 3656, 3, 302, 151, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3659, 5, 3, 0, 0, 3658, 3612, 1, 0, 0, 0, 3658, 3613, 1, 0, 0, 0, 3658, 3617, 1, 0, 0, 0, 3659, 301, 1, 0, 0, 0, 3660, 3661, 7, 67, 0, 0, 3661, 3669, 3, 304, 152, 0, 3662, 3663, 7, 67, 0, 0, 3663, 3664, 5, 24, 0, 0, 3664, 3665, 3, 304, 152, 0, 3665, 3666, 5, 14, 0, 0, 3666, 3667, 3, 304, 152, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3660, 1, 0, 0, 0, 3668, 3662, 1, 0, 0, 0, 3669, 303, 1, 0, 0, 0, 3670, 3671, 5, 321, 0, 0, 3671, 3678, 7, 68, 0, 0, 3672, 3673, 5, 62, 0, 0, 3673, 3678, 5, 257, 0, 0, 3674, 3675, 3, 220, 110, 0, 3675, 3676, 7, 68, 0, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3670, 1, 0, 0, 0, 3677, 3672, 1, 0, 0, 0, 3677, 3674, 1, 0, 0, 0, 3678, 305, 1, 0, 0, 0, 3679, 3684, 3, 312, 156, 0, 3680, 3681, 5, 4, 0, 0, 3681, 3683, 3, 312, 156, 0, 3682, 3680, 1, 0, 0, 0, 3683, 3686, 1, 0, 0, 0, 3684, 3682, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 307, 1, 0, 0, 0, 3686, 3684, 1, 0, 0, 0, 3687, 3688, 5, 136, 0, 0, 3688, 3689, 5, 2, 0, 0, 3689, 3690, 3, 220, 110, 0, 3690, 3691, 5, 3, 0, 0, 3691, 3697, 1, 0, 0, 0, 3692, 3697, 3, 312, 156, 0, 3693, 3697, 5, 114, 0, 0, 3694, 3697, 5, 161, 0, 0, 3695, 3697, 5, 250, 0, 0, 3696, 3687, 1, 0, 0, 0, 3696, 3692, 1, 0, 0, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 309, 1, 0, 0, 0, 3698, 3699, 3, 312, 156, 0, 3699, 311, 1, 0, 0, 0, 3700, 3705, 3, 318, 159, 0, 3701, 3702, 5, 5, 0, 0, 3702, 3704, 3, 318, 159, 0, 3703, 3701, 1, 0, 0, 0, 3704, 3707, 1, 0, 0, 0, 3705, 3703, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 313, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3708, 3709, 3, 318, 159, 0, 3709, 3710, 3, 316, 158, 0, 3710, 315, 1, 0, 0, 0, 3711, 3712, 5, 362, 0, 0, 3712, 3714, 3, 318, 159, 0, 3713, 3711, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 3719, 1, 0, 0, 0, 3717, 3719, 1, 0, 0, 0, 3718, 3713, 1, 0, 0, 0, 3718, 3717, 1, 0, 0, 0, 3719, 317, 1, 0, 0, 0, 3720, 3723, 3, 320, 160, 0, 3721, 3723, 3, 332, 166, 0, 3722, 3720, 1, 0, 0, 0, 3722, 3721, 1, 0, 0, 0, 3723, 319, 1, 0, 0, 0, 3724, 3729, 5, 388, 0, 0, 3725, 3729, 3, 322, 161, 0, 3726, 3729, 3, 330, 165, 0, 3727, 3729, 3, 334, 167, 0, 3728, 3724, 1, 0, 0, 0, 3728, 3725, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3727, 1, 0, 0, 0, 3729, 321, 1, 0, 0, 0, 3730, 3731, 7, 69, 0, 0, 3731, 323, 1, 0, 0, 0, 3732, 3734, 5, 362, 0, 0, 3733, 3732, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3736, 7, 70, 0, 0, 3736, 325, 1, 0, 0, 0, 3737, 3738, 5, 319, 0, 0, 3738, 3751, 3, 270, 135, 0, 3739, 3740, 5, 51, 0, 0, 3740, 3751, 3, 328, 164, 0, 3741, 3751, 3, 266, 133, 0, 3742, 3743, 7, 71, 0, 0, 3743, 3744, 5, 197, 0, 0, 3744, 3751, 5, 198, 0, 0, 3745, 3746, 5, 269, 0, 0, 3746, 3747, 5, 82, 0, 0, 3747, 3751, 3, 220, 110, 0, 3748, 3749, 5, 96, 0, 0, 3749, 3751, 5, 82, 0, 0, 3750, 3737, 1, 0, 0, 0, 3750, 3739, 1, 0, 0, 0, 3750, 3741, 1, 0, 0, 0, 3750, 3742, 1, 0, 0, 0, 3750, 3745, 1, 0, 0, 0, 3750, 3748, 1, 0, 0, 0, 3751, 327, 1, 0, 0, 0, 3752, 3753, 7, 72, 0, 0, 3753, 329, 1, 0, 0, 0, 3754, 3755, 7, 73, 0, 0, 3755, 331, 1, 0, 0, 0, 3756, 3757, 7, 74, 0, 0, 3757, 333, 1, 0, 0, 0, 3758, 3759, 7, 75, 0, 0, 3759, 335, 1, 0, 0, 0, 508, 339, 346, 350, 355, 362, 367, 377, 379, 399, 403, 409, 412, 415, 419, 422, 426, 433, 436, 440, 443, 448, 461, 463, 468, 477, 480, 484, 487, 493, 504, 510, 515, 548, 558, 569, 580, 591, 596, 605, 609, 615, 619, 624, 630, 642, 650, 656, 667, 671, 676, 691, 695, 702, 706, 712, 742, 746, 751, 758, 764, 767, 770, 774, 778, 787, 789, 798, 801, 810, 815, 821, 828, 831, 835, 850, 853, 859, 863, 880, 882, 890, 894, 900, 903, 907, 910, 916, 921, 925, 932, 935, 938, 945, 950, 959, 967, 973, 976, 979, 985, 989, 994, 997, 1001, 1003, 1011, 1019, 1022, 1029, 1032, 1035, 1044, 1049, 1055, 1060, 1063, 1067, 1070, 1074, 1084, 1089, 1102, 1105, 1113, 1119, 1122, 1125, 1130, 1138, 1143, 1149, 1155, 1158, 1165, 1172, 1180, 1192, 1200, 1227, 1230, 1236, 1245, 1254, 1260, 1265, 1270, 1277, 1282, 1287, 1294, 1304, 1307, 1313, 1320, 1324, 1387, 1395, 1402, 1410, 1422, 1427, 1430, 1438, 1443, 1445, 1453, 1458, 1462, 1465, 1473, 1478, 1487, 1492, 1495, 1500, 1504, 1509, 1511, 1516, 1525, 1533, 1539, 1548, 1555, 1564, 1569, 1572, 1597, 1599, 1611, 1618, 1621, 1628, 1632, 1638, 1646, 1653, 1656, 1664, 1675, 1686, 1694, 1700, 1711, 1718, 1725, 1737, 1745, 1751, 1757, 1760, 1776, 1783, 1794, 1803, 1806, 1815, 1818, 1827, 1830, 1839, 1842, 1845, 1850, 1852, 1856, 1864, 1870, 1876, 1879, 1881, 1889, 1899, 1908, 1912, 1915, 1919, 1923, 1931, 1935, 1938, 1941, 1944, 1948, 1952, 1957, 1961, 1964, 1967, 1970, 1974, 1979, 1983, 1986, 1989, 1992, 1994, 2000, 2007, 2012, 2015, 2018, 2022, 2032, 2036, 2038, 2041, 2045, 2051, 2055, 2066, 2074, 2076, 2083, 2087, 2099, 2106, 2121, 2126, 2133, 2149, 2154, 2167, 2172, 2180, 2186, 2190, 2193, 2196, 2203, 2206, 2212, 2221, 2231, 2246, 2251, 2253, 2258, 2267, 2277, 2282, 2286, 2291, 2298, 2303, 2307, 2310, 2313, 2327, 2340, 2345, 2349, 2352, 2357, 2362, 2366, 2369, 2381, 2392, 2405, 2416, 2421, 2424, 2428, 2431, 2443, 2452, 2455, 2460, 2467, 2470, 2476, 2482, 2484, 2487, 2492, 2496, 2502, 2506, 2509, 2514, 2517, 2522, 2524, 2530, 2535, 2542, 2545, 2563, 2565, 2568, 2579, 2588, 2595, 2603, 2611, 2616, 2619, 2622, 2630, 2638, 2648, 2660, 2663, 2668, 2673, 2680, 2687, 2689, 2702, 2708, 2710, 2720, 2726, 2728, 2736, 2740, 2743, 2747, 2749, 2758, 2770, 2772, 2779, 2786, 2792, 2798, 2800, 2807, 2815, 2823, 2829, 2834, 2841, 2847, 2850, 2854, 2856, 2863, 2872, 2879, 2889, 2894, 2898, 2908, 2915, 2928, 2930, 2938, 2940, 2944, 2952, 2961, 2967, 2975, 2980, 2992, 2997, 3000, 3006, 3010, 3015, 3020, 3025, 3031, 3052, 3054, 3065, 3077, 3089, 3093, 3102, 3106, 3124, 3127, 3135, 3144, 3153, 3176, 3192, 3199, 3202, 3211, 3215, 3219, 3231, 3256, 3263, 3266, 3281, 3302, 3306, 3308, 3318, 3320, 3330, 3345, 3347, 3360, 3364, 3371, 3376, 3384, 3389, 3398, 3430, 3451, 3454, 3458, 3464, 3470, 3479, 3483, 3485, 3492, 3500, 3508, 3516, 3526, 3536, 3543, 3547, 3554, 3562, 3578, 3582, 3587, 3591, 3609, 3625, 3635, 3638, 3647, 3650, 3652, 3655, 3658, 3668, 3677, 3684, 3696, 3705, 3715, 3718, 3722, 3728, 3733, 3750] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index c9bb86bd..1f361ec7 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -413,203 +413,171 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_statement = 2; - public static readonly RULE_timezone = 3; - public static readonly RULE_configKey = 4; - public static readonly RULE_configValue = 5; - public static readonly RULE_unsupportedHiveNativeCommands = 6; - public static readonly RULE_createTableHeader = 7; - public static readonly RULE_replaceTableHeader = 8; - public static readonly RULE_bucketSpec = 9; - public static readonly RULE_skewSpec = 10; - public static readonly RULE_locationSpec = 11; - public static readonly RULE_commentSpec = 12; - public static readonly RULE_query = 13; - public static readonly RULE_insertInto = 14; - public static readonly RULE_partitionSpecLocation = 15; - public static readonly RULE_partitionSpec = 16; - public static readonly RULE_partitionVal = 17; - public static readonly RULE_namespace = 18; - public static readonly RULE_namespaces = 19; - public static readonly RULE_describeFuncName = 20; - public static readonly RULE_describeColName = 21; - public static readonly RULE_ctes = 22; - public static readonly RULE_namedQuery = 23; - public static readonly RULE_tableProvider = 24; - public static readonly RULE_createTableClauses = 25; - public static readonly RULE_tableLifecycle = 26; - public static readonly RULE_propertyList = 27; - public static readonly RULE_property = 28; - public static readonly RULE_propertyKey = 29; - public static readonly RULE_propertyValue = 30; - public static readonly RULE_expressionPropertyList = 31; - public static readonly RULE_expressionProperty = 32; - public static readonly RULE_constantList = 33; - public static readonly RULE_nestedConstantList = 34; - public static readonly RULE_createFileFormat = 35; - public static readonly RULE_fileFormat = 36; - public static readonly RULE_storageHandler = 37; - public static readonly RULE_resource = 38; - public static readonly RULE_dmlStatementNoWith = 39; - public static readonly RULE_namespaceName = 40; - public static readonly RULE_namespaceNameCreate = 41; - public static readonly RULE_tableNameCreate = 42; - public static readonly RULE_tableName = 43; - public static readonly RULE_viewNameCreate = 44; - public static readonly RULE_viewName = 45; - public static readonly RULE_columnName = 46; - public static readonly RULE_columnNameSeq = 47; - public static readonly RULE_columnNameCreate = 48; - public static readonly RULE_identifierReference = 49; - public static readonly RULE_queryOrganization = 50; - public static readonly RULE_multiInsertQueryBody = 51; - public static readonly RULE_queryTerm = 52; - public static readonly RULE_queryPrimary = 53; - public static readonly RULE_sortItem = 54; - public static readonly RULE_fromStatement = 55; - public static readonly RULE_fromStatementBody = 56; - public static readonly RULE_querySpecification = 57; - public static readonly RULE_transformClause = 58; - public static readonly RULE_selectClause = 59; - public static readonly RULE_setClause = 60; - public static readonly RULE_matchedClause = 61; - public static readonly RULE_notMatchedClause = 62; - public static readonly RULE_notMatchedBySourceClause = 63; - public static readonly RULE_matchedAction = 64; - public static readonly RULE_notMatchedAction = 65; - public static readonly RULE_notMatchedBySourceAction = 66; - public static readonly RULE_assignmentList = 67; - public static readonly RULE_assignment = 68; - public static readonly RULE_whereClause = 69; - public static readonly RULE_havingClause = 70; - public static readonly RULE_hint = 71; - public static readonly RULE_hintStatement = 72; - public static readonly RULE_fromClause = 73; - public static readonly RULE_functionKind = 74; - public static readonly RULE_temporalClause = 75; - public static readonly RULE_aggregationClause = 76; - public static readonly RULE_groupByClause = 77; - public static readonly RULE_groupingAnalytics = 78; - public static readonly RULE_groupingElement = 79; - public static readonly RULE_groupingSet = 80; - public static readonly RULE_pivotClause = 81; - public static readonly RULE_pivotColumn = 82; - public static readonly RULE_pivotValue = 83; - public static readonly RULE_unpivotClause = 84; - public static readonly RULE_unpivotNullClause = 85; - public static readonly RULE_unpivotOperator = 86; - public static readonly RULE_unpivotSingleValueColumnClause = 87; - public static readonly RULE_unpivotMultiValueColumnClause = 88; - public static readonly RULE_unpivotColumnSet = 89; - public static readonly RULE_unpivotValueColumn = 90; - public static readonly RULE_unpivotNameColumn = 91; - public static readonly RULE_unpivotColumnAndAlias = 92; - public static readonly RULE_unpivotColumn = 93; - public static readonly RULE_unpivotAlias = 94; - public static readonly RULE_ifNotExists = 95; - public static readonly RULE_ifExists = 96; - public static readonly RULE_lateralView = 97; - public static readonly RULE_setQuantifier = 98; - public static readonly RULE_relation = 99; - public static readonly RULE_relationExtension = 100; - public static readonly RULE_joinRelation = 101; - public static readonly RULE_joinType = 102; - public static readonly RULE_joinCriteria = 103; - public static readonly RULE_sample = 104; - public static readonly RULE_sampleMethod = 105; - public static readonly RULE_identifierList = 106; - public static readonly RULE_identifierSeq = 107; - public static readonly RULE_orderedIdentifierList = 108; - public static readonly RULE_orderedIdentifier = 109; - public static readonly RULE_identifierCommentList = 110; - public static readonly RULE_identifierComment = 111; - public static readonly RULE_relationPrimary = 112; - public static readonly RULE_inlineTable = 113; - public static readonly RULE_functionTableSubqueryArgument = 114; - public static readonly RULE_tableArgumentPartitioning = 115; - public static readonly RULE_functionTableNamedArgumentExpression = 116; - public static readonly RULE_functionTableReferenceArgument = 117; - public static readonly RULE_functionTableArgument = 118; - public static readonly RULE_functionTable = 119; - public static readonly RULE_tableAlias = 120; - public static readonly RULE_rowFormat = 121; - public static readonly RULE_multipartIdentifierList = 122; - public static readonly RULE_multipartIdentifier = 123; - public static readonly RULE_multipartIdentifierPropertyList = 124; - public static readonly RULE_multipartIdentifierProperty = 125; - public static readonly RULE_tableIdentifier = 126; - public static readonly RULE_viewIdentifier = 127; - public static readonly RULE_namedExpression = 128; - public static readonly RULE_namedExpressionSeq = 129; - public static readonly RULE_partitionFieldList = 130; - public static readonly RULE_partitionField = 131; - public static readonly RULE_transform = 132; - public static readonly RULE_transformArgument = 133; - public static readonly RULE_expression = 134; - public static readonly RULE_namedArgumentExpression = 135; - public static readonly RULE_functionArgument = 136; - public static readonly RULE_expressionSeq = 137; - public static readonly RULE_booleanExpression = 138; - public static readonly RULE_predicate = 139; - public static readonly RULE_valueExpression = 140; - public static readonly RULE_datetimeUnit = 141; - public static readonly RULE_primaryExpression = 142; - public static readonly RULE_literalType = 143; - public static readonly RULE_constant = 144; - public static readonly RULE_comparisonOperator = 145; - public static readonly RULE_arithmeticOperator = 146; - public static readonly RULE_predicateOperator = 147; - public static readonly RULE_booleanValue = 148; - public static readonly RULE_interval = 149; - public static readonly RULE_errorCapturingMultiUnitsInterval = 150; - public static readonly RULE_multiUnitsInterval = 151; - public static readonly RULE_errorCapturingUnitToUnitInterval = 152; - public static readonly RULE_unitToUnitInterval = 153; - public static readonly RULE_intervalValue = 154; - public static readonly RULE_unitInMultiUnits = 155; - public static readonly RULE_unitInUnitToUnit = 156; - public static readonly RULE_colPosition = 157; - public static readonly RULE_type = 158; - public static readonly RULE_dataType = 159; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 160; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 161; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 162; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 163; - public static readonly RULE_colDefinitionDescriptorWithPosition = 164; - public static readonly RULE_defaultExpression = 165; - public static readonly RULE_variableDefaultExpression = 166; - public static readonly RULE_colTypeList = 167; - public static readonly RULE_columnType = 168; - public static readonly RULE_createOrReplaceTableColTypeList = 169; - public static readonly RULE_createOrReplaceTableColType = 170; - public static readonly RULE_colDefinitionOption = 171; - public static readonly RULE_generationExpression = 172; - public static readonly RULE_complexColTypeList = 173; - public static readonly RULE_complexColType = 174; - public static readonly RULE_whenClause = 175; - public static readonly RULE_windowClause = 176; - public static readonly RULE_zorderClause = 177; - public static readonly RULE_namedWindow = 178; - public static readonly RULE_windowSpec = 179; - public static readonly RULE_windowFrame = 180; - public static readonly RULE_frameBound = 181; - public static readonly RULE_qualifiedNameList = 182; - public static readonly RULE_functionName = 183; - public static readonly RULE_functionNameCreate = 184; - public static readonly RULE_qualifiedName = 185; - public static readonly RULE_errorCapturingIdentifier = 186; - public static readonly RULE_errorCapturingIdentifierExtra = 187; - public static readonly RULE_identifier = 188; - public static readonly RULE_strictIdentifier = 189; - public static readonly RULE_quotedIdentifier = 190; - public static readonly RULE_backQuotedIdentifier = 191; - public static readonly RULE_number = 192; - public static readonly RULE_alterColumnAction = 193; - public static readonly RULE_stringLit = 194; - public static readonly RULE_commentStr = 195; - public static readonly RULE_version = 196; - public static readonly RULE_ansiNonReserved = 197; - public static readonly RULE_strictNonReserved = 198; - public static readonly RULE_nonReserved = 199; + public static readonly RULE_unsupportedHiveNativeCommands = 3; + public static readonly RULE_bucketSpec = 4; + public static readonly RULE_skewSpec = 5; + public static readonly RULE_query = 6; + public static readonly RULE_insertInto = 7; + public static readonly RULE_partitionSpecLocation = 8; + public static readonly RULE_partitionSpec = 9; + public static readonly RULE_partitionVal = 10; + public static readonly RULE_namespace = 11; + public static readonly RULE_describeFuncName = 12; + public static readonly RULE_describeColName = 13; + public static readonly RULE_ctes = 14; + public static readonly RULE_namedQuery = 15; + public static readonly RULE_tableProvider = 16; + public static readonly RULE_createTableClauses = 17; + public static readonly RULE_tableLifecycle = 18; + public static readonly RULE_propertyList = 19; + public static readonly RULE_property = 20; + public static readonly RULE_propertyKey = 21; + public static readonly RULE_propertyValue = 22; + public static readonly RULE_expressionPropertyList = 23; + public static readonly RULE_expressionProperty = 24; + public static readonly RULE_constantList = 25; + public static readonly RULE_nestedConstantList = 26; + public static readonly RULE_createFileFormat = 27; + public static readonly RULE_fileFormat = 28; + public static readonly RULE_storageHandler = 29; + public static readonly RULE_dmlStatementNoWith = 30; + public static readonly RULE_namespaceName = 31; + public static readonly RULE_namespaceNameCreate = 32; + public static readonly RULE_tableNameCreate = 33; + public static readonly RULE_tableName = 34; + public static readonly RULE_viewNameCreate = 35; + public static readonly RULE_viewName = 36; + public static readonly RULE_columnName = 37; + public static readonly RULE_columnNameSeq = 38; + public static readonly RULE_columnNameCreate = 39; + public static readonly RULE_identifierReference = 40; + public static readonly RULE_queryOrganization = 41; + public static readonly RULE_queryTerm = 42; + public static readonly RULE_queryPrimary = 43; + public static readonly RULE_sortItem = 44; + public static readonly RULE_fromStatementBody = 45; + public static readonly RULE_querySpecification = 46; + public static readonly RULE_transformClause = 47; + public static readonly RULE_selectClause = 48; + public static readonly RULE_setClause = 49; + public static readonly RULE_matchedClause = 50; + public static readonly RULE_notMatchedClause = 51; + public static readonly RULE_notMatchedBySourceClause = 52; + public static readonly RULE_notMatchedAction = 53; + public static readonly RULE_assignmentList = 54; + public static readonly RULE_assignment = 55; + public static readonly RULE_whereClause = 56; + public static readonly RULE_havingClause = 57; + public static readonly RULE_hint = 58; + public static readonly RULE_hintStatement = 59; + public static readonly RULE_fromClause = 60; + public static readonly RULE_temporalClause = 61; + public static readonly RULE_aggregationClause = 62; + public static readonly RULE_groupByClause = 63; + public static readonly RULE_groupingAnalytics = 64; + public static readonly RULE_groupingSet = 65; + public static readonly RULE_pivotClause = 66; + public static readonly RULE_pivotColumn = 67; + public static readonly RULE_pivotValue = 68; + public static readonly RULE_unpivotClause = 69; + public static readonly RULE_unpivotSingleValueColumnClause = 70; + public static readonly RULE_unpivotMultiValueColumnClause = 71; + public static readonly RULE_unpivotColumnSet = 72; + public static readonly RULE_unpivotColumnAndAlias = 73; + public static readonly RULE_ifNotExists = 74; + public static readonly RULE_ifExists = 75; + public static readonly RULE_lateralView = 76; + public static readonly RULE_setQuantifier = 77; + public static readonly RULE_relation = 78; + public static readonly RULE_joinRelation = 79; + public static readonly RULE_joinType = 80; + public static readonly RULE_joinCriteria = 81; + public static readonly RULE_sample = 82; + public static readonly RULE_sampleMethod = 83; + public static readonly RULE_identifierList = 84; + public static readonly RULE_identifierSeq = 85; + public static readonly RULE_orderedIdentifierList = 86; + public static readonly RULE_orderedIdentifier = 87; + public static readonly RULE_identifierCommentList = 88; + public static readonly RULE_identifierComment = 89; + public static readonly RULE_relationPrimary = 90; + public static readonly RULE_functionTableSubqueryArgument = 91; + public static readonly RULE_tableArgumentPartitioning = 92; + public static readonly RULE_functionTableNamedArgumentExpression = 93; + public static readonly RULE_functionTableReferenceArgument = 94; + public static readonly RULE_functionTableArgument = 95; + public static readonly RULE_tableAlias = 96; + public static readonly RULE_rowFormat = 97; + public static readonly RULE_multipartIdentifierList = 98; + public static readonly RULE_multipartIdentifier = 99; + public static readonly RULE_multipartIdentifierPropertyList = 100; + public static readonly RULE_multipartIdentifierProperty = 101; + public static readonly RULE_tableIdentifier = 102; + public static readonly RULE_viewIdentifier = 103; + public static readonly RULE_namedExpression = 104; + public static readonly RULE_namedExpressionSeq = 105; + public static readonly RULE_partitionFieldList = 106; + public static readonly RULE_partitionField = 107; + public static readonly RULE_transform = 108; + public static readonly RULE_transformArgument = 109; + public static readonly RULE_expression = 110; + public static readonly RULE_namedArgumentExpression = 111; + public static readonly RULE_functionArgument = 112; + public static readonly RULE_expressionSeq = 113; + public static readonly RULE_booleanExpression = 114; + public static readonly RULE_predicate = 115; + public static readonly RULE_valueExpression = 116; + public static readonly RULE_datetimeUnit = 117; + public static readonly RULE_primaryExpression = 118; + public static readonly RULE_literalType = 119; + public static readonly RULE_constant = 120; + public static readonly RULE_comparisonOperator = 121; + public static readonly RULE_arithmeticOperator = 122; + public static readonly RULE_predicateOperator = 123; + public static readonly RULE_booleanValue = 124; + public static readonly RULE_interval = 125; + public static readonly RULE_errorCapturingMultiUnitsInterval = 126; + public static readonly RULE_multiUnitsInterval = 127; + public static readonly RULE_errorCapturingUnitToUnitInterval = 128; + public static readonly RULE_unitToUnitInterval = 129; + public static readonly RULE_intervalValue = 130; + public static readonly RULE_unitInMultiUnits = 131; + public static readonly RULE_unitInUnitToUnit = 132; + public static readonly RULE_colPosition = 133; + public static readonly RULE_type = 134; + public static readonly RULE_dataType = 135; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 136; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 137; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 138; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 139; + public static readonly RULE_colDefinitionDescriptorWithPosition = 140; + public static readonly RULE_variableDefaultExpression = 141; + public static readonly RULE_colTypeList = 142; + public static readonly RULE_columnType = 143; + public static readonly RULE_createOrReplaceTableColTypeList = 144; + public static readonly RULE_createOrReplaceTableColType = 145; + public static readonly RULE_colDefinitionOption = 146; + public static readonly RULE_complexColType = 147; + public static readonly RULE_whenClause = 148; + public static readonly RULE_windowClause = 149; + public static readonly RULE_windowSpec = 150; + public static readonly RULE_windowFrame = 151; + public static readonly RULE_frameBound = 152; + public static readonly RULE_qualifiedNameList = 153; + public static readonly RULE_functionName = 154; + public static readonly RULE_functionNameCreate = 155; + public static readonly RULE_qualifiedName = 156; + public static readonly RULE_errorCapturingIdentifier = 157; + public static readonly RULE_errorCapturingIdentifierExtra = 158; + public static readonly RULE_identifier = 159; + public static readonly RULE_strictIdentifier = 160; + public static readonly RULE_quotedIdentifier = 161; + public static readonly RULE_number = 162; + public static readonly RULE_alterColumnAction = 163; + public static readonly RULE_stringLit = 164; + public static readonly RULE_ansiNonReserved = 165; + public static readonly RULE_strictNonReserved = 166; + public static readonly RULE_nonReserved = 167; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -759,59 +727,50 @@ export class SparkSqlParser extends SQLParserBase { "BRACKETED_COMMENT", "WS", "UNRECOGNIZED" ]; public static readonly ruleNames = [ - "program", "singleStatement", "statement", "timezone", "configKey", - "configValue", "unsupportedHiveNativeCommands", "createTableHeader", - "replaceTableHeader", "bucketSpec", "skewSpec", "locationSpec", - "commentSpec", "query", "insertInto", "partitionSpecLocation", "partitionSpec", - "partitionVal", "namespace", "namespaces", "describeFuncName", "describeColName", - "ctes", "namedQuery", "tableProvider", "createTableClauses", "tableLifecycle", - "propertyList", "property", "propertyKey", "propertyValue", "expressionPropertyList", - "expressionProperty", "constantList", "nestedConstantList", "createFileFormat", - "fileFormat", "storageHandler", "resource", "dmlStatementNoWith", - "namespaceName", "namespaceNameCreate", "tableNameCreate", "tableName", - "viewNameCreate", "viewName", "columnName", "columnNameSeq", "columnNameCreate", - "identifierReference", "queryOrganization", "multiInsertQueryBody", - "queryTerm", "queryPrimary", "sortItem", "fromStatement", "fromStatementBody", - "querySpecification", "transformClause", "selectClause", "setClause", - "matchedClause", "notMatchedClause", "notMatchedBySourceClause", - "matchedAction", "notMatchedAction", "notMatchedBySourceAction", + "program", "singleStatement", "statement", "unsupportedHiveNativeCommands", + "bucketSpec", "skewSpec", "query", "insertInto", "partitionSpecLocation", + "partitionSpec", "partitionVal", "namespace", "describeFuncName", + "describeColName", "ctes", "namedQuery", "tableProvider", "createTableClauses", + "tableLifecycle", "propertyList", "property", "propertyKey", "propertyValue", + "expressionPropertyList", "expressionProperty", "constantList", + "nestedConstantList", "createFileFormat", "fileFormat", "storageHandler", + "dmlStatementNoWith", "namespaceName", "namespaceNameCreate", "tableNameCreate", + "tableName", "viewNameCreate", "viewName", "columnName", "columnNameSeq", + "columnNameCreate", "identifierReference", "queryOrganization", + "queryTerm", "queryPrimary", "sortItem", "fromStatementBody", "querySpecification", + "transformClause", "selectClause", "setClause", "matchedClause", + "notMatchedClause", "notMatchedBySourceClause", "notMatchedAction", "assignmentList", "assignment", "whereClause", "havingClause", "hint", - "hintStatement", "fromClause", "functionKind", "temporalClause", - "aggregationClause", "groupByClause", "groupingAnalytics", "groupingElement", - "groupingSet", "pivotClause", "pivotColumn", "pivotValue", "unpivotClause", - "unpivotNullClause", "unpivotOperator", "unpivotSingleValueColumnClause", - "unpivotMultiValueColumnClause", "unpivotColumnSet", "unpivotValueColumn", - "unpivotNameColumn", "unpivotColumnAndAlias", "unpivotColumn", "unpivotAlias", + "hintStatement", "fromClause", "temporalClause", "aggregationClause", + "groupByClause", "groupingAnalytics", "groupingSet", "pivotClause", + "pivotColumn", "pivotValue", "unpivotClause", "unpivotSingleValueColumnClause", + "unpivotMultiValueColumnClause", "unpivotColumnSet", "unpivotColumnAndAlias", "ifNotExists", "ifExists", "lateralView", "setQuantifier", "relation", - "relationExtension", "joinRelation", "joinType", "joinCriteria", - "sample", "sampleMethod", "identifierList", "identifierSeq", "orderedIdentifierList", - "orderedIdentifier", "identifierCommentList", "identifierComment", - "relationPrimary", "inlineTable", "functionTableSubqueryArgument", - "tableArgumentPartitioning", "functionTableNamedArgumentExpression", - "functionTableReferenceArgument", "functionTableArgument", "functionTable", - "tableAlias", "rowFormat", "multipartIdentifierList", "multipartIdentifier", - "multipartIdentifierPropertyList", "multipartIdentifierProperty", - "tableIdentifier", "viewIdentifier", "namedExpression", "namedExpressionSeq", - "partitionFieldList", "partitionField", "transform", "transformArgument", - "expression", "namedArgumentExpression", "functionArgument", "expressionSeq", - "booleanExpression", "predicate", "valueExpression", "datetimeUnit", - "primaryExpression", "literalType", "constant", "comparisonOperator", - "arithmeticOperator", "predicateOperator", "booleanValue", "interval", - "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", - "unitToUnitInterval", "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", - "colPosition", "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", - "qualifiedColTypeWithPositionForAdd", "qualifiedColTypeWithPositionSeqForReplace", - "qualifiedColTypeWithPositionForReplace", "colDefinitionDescriptorWithPosition", - "defaultExpression", "variableDefaultExpression", "colTypeList", - "columnType", "createOrReplaceTableColTypeList", "createOrReplaceTableColType", - "colDefinitionOption", "generationExpression", "complexColTypeList", - "complexColType", "whenClause", "windowClause", "zorderClause", - "namedWindow", "windowSpec", "windowFrame", "frameBound", "qualifiedNameList", - "functionName", "functionNameCreate", "qualifiedName", "errorCapturingIdentifier", - "errorCapturingIdentifierExtra", "identifier", "strictIdentifier", - "quotedIdentifier", "backQuotedIdentifier", "number", "alterColumnAction", - "stringLit", "commentStr", "version", "ansiNonReserved", "strictNonReserved", - "nonReserved", + "joinRelation", "joinType", "joinCriteria", "sample", "sampleMethod", + "identifierList", "identifierSeq", "orderedIdentifierList", "orderedIdentifier", + "identifierCommentList", "identifierComment", "relationPrimary", + "functionTableSubqueryArgument", "tableArgumentPartitioning", "functionTableNamedArgumentExpression", + "functionTableReferenceArgument", "functionTableArgument", "tableAlias", + "rowFormat", "multipartIdentifierList", "multipartIdentifier", "multipartIdentifierPropertyList", + "multipartIdentifierProperty", "tableIdentifier", "viewIdentifier", + "namedExpression", "namedExpressionSeq", "partitionFieldList", "partitionField", + "transform", "transformArgument", "expression", "namedArgumentExpression", + "functionArgument", "expressionSeq", "booleanExpression", "predicate", + "valueExpression", "datetimeUnit", "primaryExpression", "literalType", + "constant", "comparisonOperator", "arithmeticOperator", "predicateOperator", + "booleanValue", "interval", "errorCapturingMultiUnitsInterval", + "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", + "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", "colPosition", + "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", "qualifiedColTypeWithPositionForAdd", + "qualifiedColTypeWithPositionSeqForReplace", "qualifiedColTypeWithPositionForReplace", + "colDefinitionDescriptorWithPosition", "variableDefaultExpression", + "colTypeList", "columnType", "createOrReplaceTableColTypeList", + "createOrReplaceTableColType", "colDefinitionOption", "complexColType", + "whenClause", "windowClause", "windowSpec", "windowFrame", "frameBound", + "qualifiedNameList", "functionName", "functionNameCreate", "qualifiedName", + "errorCapturingIdentifier", "errorCapturingIdentifierExtra", "identifier", + "strictIdentifier", "quotedIdentifier", "number", "alterColumnAction", + "stringLit", "ansiNonReserved", "strictNonReserved", "nonReserved", ]; public get grammarFileName(): string { return "SparkSqlParser.g4"; } @@ -835,21 +794,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 400; + this.state = 336; this.singleStatement(); } } - this.state = 405; + this.state = 341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 406; + this.state = 342; this.match(SparkSqlParser.EOF); } } @@ -874,14 +833,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 408; + this.state = 344; this.statement(); - this.state = 410; + this.state = 346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 409; + this.state = 345; this.match(SparkSqlParser.SEMICOLON); } } @@ -908,14 +867,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1337; + this.state = 1307; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 412; + this.state = 348; this.query(); } break; @@ -923,17 +882,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 414; + this.state = 350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 413; + this.state = 349; this.ctes(); } } - this.state = 416; + this.state = 352; this.dmlStatementNoWith(); } break; @@ -941,19 +900,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 417; + this.state = 353; this.match(SparkSqlParser.KW_USE); - this.state = 419; + this.state = 355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 418; + this.state = 354; this.namespace(); } break; } - this.state = 421; + this.state = 357; this.namespaceName(); } break; @@ -961,22 +920,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 422; + this.state = 358; this.match(SparkSqlParser.KW_SET); - this.state = 423; + this.state = 359; this.match(SparkSqlParser.KW_CATALOG); - this.state = 426; + this.state = 362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 424; + this.state = 360; this.identifier(); } break; case 2: { - this.state = 425; + this.state = 361; this.stringLit(); } break; @@ -987,49 +946,57 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 428; + this.state = 364; this.match(SparkSqlParser.KW_CREATE); - this.state = 429; + this.state = 365; this.namespace(); - this.state = 431; + this.state = 367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 430; + this.state = 366; this.ifNotExists(); } break; } - this.state = 433; + this.state = 369; this.namespaceNameCreate(); - this.state = 441; + this.state = 379; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 439; + this.state = 377; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 434; - this.commentSpec(); + { + this.state = 370; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 371; + (localContext as CreateNamespaceContext)._comment = this.stringLit(); + } } break; case SparkSqlParser.KW_LOCATION: { - this.state = 435; - this.locationSpec(); + { + this.state = 372; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 373; + this.stringLit(); + } } break; case SparkSqlParser.KW_WITH: { { - this.state = 436; + this.state = 374; this.match(SparkSqlParser.KW_WITH); - this.state = 437; + this.state = 375; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1038,7 +1005,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 376; this.propertyList(); } } @@ -1048,7 +1015,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 443; + this.state = 381; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1058,15 +1025,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 444; + this.state = 382; this.match(SparkSqlParser.KW_ALTER); - this.state = 445; + this.state = 383; this.namespace(); - this.state = 446; + this.state = 384; this.namespaceName(); - this.state = 447; + this.state = 385; this.match(SparkSqlParser.KW_SET); - this.state = 448; + this.state = 386; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1075,7 +1042,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 449; + this.state = 387; this.propertyList(); } break; @@ -1083,44 +1050,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 451; + this.state = 389; this.match(SparkSqlParser.KW_ALTER); - this.state = 452; + this.state = 390; this.namespace(); - this.state = 453; + this.state = 391; this.namespaceName(); - this.state = 454; + this.state = 392; this.match(SparkSqlParser.KW_SET); - this.state = 455; - this.locationSpec(); + this.state = 393; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 394; + this.stringLit(); } break; case 8: localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 457; + this.state = 396; this.match(SparkSqlParser.KW_DROP); - this.state = 458; + this.state = 397; this.namespace(); - this.state = 460; + this.state = 399; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 459; + this.state = 398; this.ifExists(); } break; } - this.state = 462; + this.state = 401; this.namespaceName(); - this.state = 464; + this.state = 403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 247) { { - this.state = 463; + this.state = 402; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -1138,16 +1107,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 466; + this.state = 405; this.match(SparkSqlParser.KW_SHOW); - this.state = 467; - this.namespaces(); - this.state = 470; + this.state = 406; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 191 || _la === 262)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 468; + this.state = 407; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1156,27 +1132,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 469; + this.state = 408; this.multipartIdentifier(); } break; } - this.state = 476; + this.state = 415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 473; + this.state = 412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 472; + this.state = 411; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 475; + this.state = 414; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1187,50 +1163,84 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 478; - this.createTableHeader(); - this.state = 483; + this.state = 417; + this.match(SparkSqlParser.KW_CREATE); + this.state = 419; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 298) { + { + this.state = 418; + this.match(SparkSqlParser.KW_TEMPORARY); + } + } + + this.state = 422; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 109) { + { + this.state = 421; + this.match(SparkSqlParser.KW_EXTERNAL); + } + } + + this.state = 424; + this.match(SparkSqlParser.KW_TABLE); + this.state = 426; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 479; + this.state = 425; + this.ifNotExists(); + } + break; + } + this.state = 428; + this.tableNameCreate(); + this.state = 433; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { + case 1: + { + this.state = 429; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 480; + this.state = 430; this.createOrReplaceTableColTypeList(); - this.state = 481; + this.state = 431; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 486; + this.state = 436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 485; + this.state = 435; this.tableProvider(); } } - this.state = 488; + this.state = 438; this.createTableClauses(); - this.state = 493; + this.state = 443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 490; + this.state = 440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 489; + this.state = 439; this.match(SparkSqlParser.KW_AS); } } - this.state = 492; + this.state = 442; this.query(); } break; @@ -1241,71 +1251,75 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 495; + this.state = 445; this.match(SparkSqlParser.KW_CREATE); - this.state = 496; + this.state = 446; this.match(SparkSqlParser.KW_TABLE); - this.state = 498; + this.state = 448; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 497; + this.state = 447; this.ifNotExists(); } break; } - this.state = 500; + this.state = 450; (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 501; + this.state = 451; this.match(SparkSqlParser.KW_LIKE); - this.state = 502; + this.state = 452; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 512; + this.state = 463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 510; + this.state = 461; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 503; + this.state = 453; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 504; + this.state = 454; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 505; + this.state = 455; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 506; - this.locationSpec(); + { + this.state = 456; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 457; + this.stringLit(); + } } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 507; + this.state = 458; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 508; + this.state = 459; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 509; + this.state = 460; this.tableLifecycle(); } break; @@ -1313,7 +1327,7 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 514; + this.state = 465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1323,50 +1337,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 515; - this.replaceTableHeader(); - this.state = 520; + this.state = 468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { + _la = this.tokenStream.LA(1); + if (_la === 59) { + { + this.state = 466; + this.match(SparkSqlParser.KW_CREATE); + this.state = 467; + this.match(SparkSqlParser.KW_OR); + } + } + + this.state = 470; + this.match(SparkSqlParser.KW_REPLACE); + this.state = 471; + this.match(SparkSqlParser.KW_TABLE); + this.state = 472; + this.tableNameCreate(); + this.state = 477; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 516; + this.state = 473; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 517; + this.state = 474; this.createOrReplaceTableColTypeList(); - this.state = 518; + this.state = 475; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 523; + this.state = 480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 522; + this.state = 479; this.tableProvider(); } } - this.state = 525; + this.state = 482; this.createTableClauses(); - this.state = 530; + this.state = 487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 527; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 526; + this.state = 483; this.match(SparkSqlParser.KW_AS); } } - this.state = 529; + this.state = 486; this.query(); } break; @@ -1377,52 +1407,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 532; + this.state = 489; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 533; + this.state = 490; this.match(SparkSqlParser.KW_TABLE); - this.state = 534; + this.state = 491; this.tableName(); - this.state = 536; + this.state = 493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 535; + this.state = 492; this.partitionSpec(); } } - this.state = 538; + this.state = 495; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 539; + this.state = 496; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 547; + this.state = 504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 540; + this.state = 497; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 541; + this.state = 498; this.match(SparkSqlParser.KW_FOR); - this.state = 542; + this.state = 499; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 543; + this.state = 500; this.columnNameSeq(); } break; case 3: { - this.state = 544; + this.state = 501; this.match(SparkSqlParser.KW_FOR); - this.state = 545; + this.state = 502; this.match(SparkSqlParser.KW_ALL); - this.state = 546; + this.state = 503; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1433,16 +1463,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 549; + this.state = 506; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 550; + this.state = 507; this.match(SparkSqlParser.KW_TABLES); - this.state = 553; + this.state = 510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 551; + this.state = 508; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1451,21 +1481,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 552; + this.state = 509; this.namespaceName(); } } - this.state = 555; + this.state = 512; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 556; + this.state = 513; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 558; + this.state = 515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 557; + this.state = 514; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1476,17 +1506,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 560; + this.state = 517; this.match(SparkSqlParser.KW_ALTER); - this.state = 561; + this.state = 518; this.match(SparkSqlParser.KW_TABLE); - this.state = 562; + this.state = 519; this.tableName(); - this.state = 563; + this.state = 520; this.match(SparkSqlParser.KW_ADD); - this.state = 564; + this.state = 521; this.match(SparkSqlParser.KW_COLUMN); - this.state = 565; + this.state = 522; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1494,21 +1524,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 567; + this.state = 524; this.match(SparkSqlParser.KW_ALTER); - this.state = 568; + this.state = 525; this.match(SparkSqlParser.KW_TABLE); - this.state = 569; + this.state = 526; this.tableName(); - this.state = 570; + this.state = 527; this.match(SparkSqlParser.KW_ADD); - this.state = 571; + this.state = 528; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 572; + this.state = 529; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 573; + this.state = 530; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 574; + this.state = 531; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1516,21 +1546,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 576; + this.state = 533; this.match(SparkSqlParser.KW_ALTER); - this.state = 577; + this.state = 534; this.match(SparkSqlParser.KW_TABLE); - this.state = 578; + this.state = 535; (localContext as RenameTableColumnContext)._table = this.tableName(); - this.state = 579; + this.state = 536; this.match(SparkSqlParser.KW_RENAME); - this.state = 580; + this.state = 537; this.match(SparkSqlParser.KW_COLUMN); - this.state = 581; + this.state = 538; this.columnName(); - this.state = 582; + this.state = 539; this.match(SparkSqlParser.KW_TO); - this.state = 583; + this.state = 540; this.columnNameCreate(); } break; @@ -1538,27 +1568,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 585; + this.state = 542; this.match(SparkSqlParser.KW_ALTER); - this.state = 586; + this.state = 543; this.match(SparkSqlParser.KW_TABLE); - this.state = 587; + this.state = 544; this.tableName(); - this.state = 588; + this.state = 545; this.match(SparkSqlParser.KW_DROP); - this.state = 589; + this.state = 546; this.match(SparkSqlParser.KW_COLUMN); - this.state = 591; + this.state = 548; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 590; + this.state = 547; this.ifExists(); } break; } - this.state = 593; + this.state = 550; this.columnName(); } break; @@ -1566,31 +1596,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 595; + this.state = 552; this.match(SparkSqlParser.KW_ALTER); - this.state = 596; + this.state = 553; this.match(SparkSqlParser.KW_TABLE); - this.state = 597; + this.state = 554; this.tableName(); - this.state = 598; + this.state = 555; this.match(SparkSqlParser.KW_DROP); - this.state = 599; + this.state = 556; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 601; + this.state = 558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 600; + this.state = 557; this.ifExists(); } } - this.state = 603; + this.state = 560; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 604; + this.state = 561; this.columnNameSeq(); - this.state = 605; + this.state = 562; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1598,35 +1628,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 607; + this.state = 564; this.match(SparkSqlParser.KW_ALTER); - this.state = 612; + this.state = 569; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 608; + this.state = 565; this.match(SparkSqlParser.KW_TABLE); - this.state = 609; + this.state = 566; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 610; + this.state = 567; this.match(SparkSqlParser.KW_VIEW); - this.state = 611; + this.state = 568; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 614; + this.state = 571; this.match(SparkSqlParser.KW_RENAME); - this.state = 615; + this.state = 572; this.match(SparkSqlParser.KW_TO); - this.state = 616; + this.state = 573; this.multipartIdentifier(); } break; @@ -1634,35 +1664,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 618; + this.state = 575; this.match(SparkSqlParser.KW_ALTER); - this.state = 623; + this.state = 580; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 619; + this.state = 576; this.match(SparkSqlParser.KW_TABLE); - this.state = 620; + this.state = 577; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 621; + this.state = 578; this.match(SparkSqlParser.KW_VIEW); - this.state = 622; + this.state = 579; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 625; + this.state = 582; this.match(SparkSqlParser.KW_SET); - this.state = 626; + this.state = 583; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 627; + this.state = 584; this.propertyList(); } break; @@ -1670,45 +1700,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 629; + this.state = 586; this.match(SparkSqlParser.KW_ALTER); - this.state = 634; + this.state = 591; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 630; + this.state = 587; this.match(SparkSqlParser.KW_TABLE); - this.state = 631; + this.state = 588; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 632; + this.state = 589; this.match(SparkSqlParser.KW_VIEW); - this.state = 633; + this.state = 590; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 636; + this.state = 593; this.match(SparkSqlParser.KW_UNSET); - this.state = 637; + this.state = 594; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 639; + this.state = 596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 638; + this.state = 595; this.ifExists(); } } - this.state = 641; + this.state = 598; this.propertyList(); } break; @@ -1716,13 +1746,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 643; + this.state = 600; this.match(SparkSqlParser.KW_ALTER); - this.state = 644; + this.state = 601; this.match(SparkSqlParser.KW_TABLE); - this.state = 645; + this.state = 602; (localContext as AlterTableAlterColumnContext)._table = this.tableName(); - this.state = 646; + this.state = 603; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1731,24 +1761,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 648; + this.state = 605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 647; + this.state = 604; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 650; + this.state = 607; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 652; + this.state = 609; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 651; + this.state = 608; this.alterColumnAction(); } break; @@ -1759,44 +1789,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 654; + this.state = 611; this.match(SparkSqlParser.KW_ALTER); - this.state = 655; + this.state = 612; this.match(SparkSqlParser.KW_TABLE); - this.state = 656; + this.state = 613; (localContext as HiveChangeColumnContext)._table = this.tableName(); - this.state = 658; + this.state = 615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 657; + this.state = 614; this.partitionSpec(); } } - this.state = 660; + this.state = 617; this.match(SparkSqlParser.KW_CHANGE); - this.state = 662; + this.state = 619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 661; + this.state = 618; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 664; + this.state = 621; (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 665; + this.state = 622; this.columnType(); - this.state = 667; + this.state = 624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 666; + this.state = 623; this.colPosition(); } } @@ -1807,31 +1837,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 669; + this.state = 626; this.match(SparkSqlParser.KW_ALTER); - this.state = 670; + this.state = 627; this.match(SparkSqlParser.KW_TABLE); - this.state = 671; + this.state = 628; (localContext as HiveReplaceColumnsContext)._table = this.tableName(); - this.state = 673; + this.state = 630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 672; + this.state = 629; this.partitionSpec(); } } - this.state = 675; + this.state = 632; this.match(SparkSqlParser.KW_REPLACE); - this.state = 676; + this.state = 633; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 677; + this.state = 634; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 678; + this.state = 635; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 679; + this.state = 636; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1839,38 +1869,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 681; + this.state = 638; this.match(SparkSqlParser.KW_ALTER); - this.state = 682; + this.state = 639; this.match(SparkSqlParser.KW_TABLE); - this.state = 683; + this.state = 640; this.tableName(); - this.state = 685; + this.state = 642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 684; + this.state = 641; this.partitionSpec(); } } - this.state = 687; + this.state = 644; this.match(SparkSqlParser.KW_SET); - this.state = 688; + this.state = 645; this.match(SparkSqlParser.KW_SERDE); - this.state = 689; + this.state = 646; this.stringLit(); - this.state = 693; + this.state = 650; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 45, this.context) ) { case 1: { - this.state = 690; + this.state = 647; this.match(SparkSqlParser.KW_WITH); - this.state = 691; + this.state = 648; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 692; + this.state = 649; this.propertyList(); } break; @@ -1881,27 +1911,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 695; + this.state = 652; this.match(SparkSqlParser.KW_ALTER); - this.state = 696; + this.state = 653; this.match(SparkSqlParser.KW_TABLE); - this.state = 697; + this.state = 654; this.tableName(); - this.state = 699; + this.state = 656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 698; + this.state = 655; this.partitionSpec(); } } - this.state = 701; + this.state = 658; this.match(SparkSqlParser.KW_SET); - this.state = 702; + this.state = 659; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 703; + this.state = 660; this.propertyList(); } break; @@ -1909,53 +1939,53 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 705; + this.state = 662; this.match(SparkSqlParser.KW_ALTER); - this.state = 710; + this.state = 667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 706; + this.state = 663; this.match(SparkSqlParser.KW_TABLE); - this.state = 707; + this.state = 664; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 708; + this.state = 665; this.match(SparkSqlParser.KW_VIEW); - this.state = 709; + this.state = 666; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 712; + this.state = 669; this.match(SparkSqlParser.KW_ADD); - this.state = 714; + this.state = 671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 713; + this.state = 670; this.ifNotExists(); } } - this.state = 717; + this.state = 674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 716; + this.state = 673; this.partitionSpecLocation(); } } - this.state = 719; + this.state = 676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 217); @@ -1965,19 +1995,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 721; + this.state = 678; this.match(SparkSqlParser.KW_ALTER); - this.state = 722; + this.state = 679; this.match(SparkSqlParser.KW_TABLE); - this.state = 723; + this.state = 680; this.tableName(); - this.state = 724; + this.state = 681; this.partitionSpec(); - this.state = 725; + this.state = 682; this.match(SparkSqlParser.KW_RENAME); - this.state = 726; + this.state = 683; this.match(SparkSqlParser.KW_TO); - this.state = 727; + this.state = 684; this.partitionSpec(); } break; @@ -1985,66 +2015,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 729; + this.state = 686; this.match(SparkSqlParser.KW_ALTER); - this.state = 734; + this.state = 691; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 730; + this.state = 687; this.match(SparkSqlParser.KW_TABLE); - this.state = 731; + this.state = 688; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 732; + this.state = 689; this.match(SparkSqlParser.KW_VIEW); - this.state = 733; + this.state = 690; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 736; + this.state = 693; this.match(SparkSqlParser.KW_DROP); - this.state = 738; + this.state = 695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 737; + this.state = 694; this.ifExists(); } } - this.state = 740; + this.state = 697; this.partitionSpec(); - this.state = 745; + this.state = 702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 741; + this.state = 698; this.match(SparkSqlParser.COMMA); - this.state = 742; + this.state = 699; this.partitionSpec(); } } - this.state = 747; + this.state = 704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 749; + this.state = 706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 748; + this.state = 705; this.match(SparkSqlParser.KW_PURGE); } } @@ -2055,41 +2085,43 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 751; + this.state = 708; this.match(SparkSqlParser.KW_ALTER); - this.state = 752; + this.state = 709; this.match(SparkSqlParser.KW_TABLE); - this.state = 753; + this.state = 710; this.tableName(); - this.state = 755; + this.state = 712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 754; + this.state = 711; this.partitionSpec(); } } - this.state = 757; + this.state = 714; this.match(SparkSqlParser.KW_SET); - this.state = 758; - this.locationSpec(); + this.state = 715; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 716; + this.stringLit(); } break; case 32: localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 760; + this.state = 718; this.match(SparkSqlParser.KW_ALTER); - this.state = 761; + this.state = 719; this.match(SparkSqlParser.KW_TABLE); - this.state = 762; + this.state = 720; this.tableName(); - this.state = 763; + this.state = 721; this.match(SparkSqlParser.KW_RECOVER); - this.state = 764; + this.state = 722; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2097,15 +2129,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 766; + this.state = 724; this.match(SparkSqlParser.KW_ALTER); - this.state = 767; + this.state = 725; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 768; + this.state = 726; this.match(SparkSqlParser.KW_VIEW); - this.state = 769; + this.state = 727; this.viewName(); - this.state = 770; + this.state = 728; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2114,7 +2146,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 771; + this.state = 729; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2122,19 +2154,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 773; + this.state = 731; this.match(SparkSqlParser.KW_ALTER); - this.state = 774; + this.state = 732; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 775; + this.state = 733; this.match(SparkSqlParser.KW_VIEW); - this.state = 776; + this.state = 734; this.viewName(); - this.state = 777; + this.state = 735; this.match(SparkSqlParser.KW_SET); - this.state = 778; + this.state = 736; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 779; + this.state = 737; this.propertyList(); } break; @@ -2142,28 +2174,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 781; + this.state = 739; this.match(SparkSqlParser.KW_DROP); - this.state = 782; + this.state = 740; this.match(SparkSqlParser.KW_TABLE); - this.state = 784; + this.state = 742; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 783; + this.state = 741; this.ifExists(); } break; } - this.state = 786; + this.state = 744; this.tableName(); - this.state = 788; + this.state = 746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 787; + this.state = 745; this.match(SparkSqlParser.KW_PURGE); } } @@ -2174,21 +2206,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 790; + this.state = 748; this.match(SparkSqlParser.KW_DROP); - this.state = 791; + this.state = 749; this.match(SparkSqlParser.KW_VIEW); - this.state = 793; + this.state = 751; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 792; + this.state = 750; this.ifExists(); } break; } - this.state = 795; + this.state = 753; this.viewName(); } break; @@ -2196,23 +2228,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 796; + this.state = 754; this.match(SparkSqlParser.KW_DROP); - this.state = 797; + this.state = 755; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 798; + this.state = 756; this.match(SparkSqlParser.KW_VIEW); - this.state = 800; + this.state = 758; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 799; + this.state = 757; this.ifExists(); } break; } - this.state = 802; + this.state = 760; this.viewName(); } break; @@ -2220,86 +2252,90 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 803; + this.state = 761; this.match(SparkSqlParser.KW_CREATE); - this.state = 806; + this.state = 764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 804; + this.state = 762; this.match(SparkSqlParser.KW_OR); - this.state = 805; + this.state = 763; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 812; + this.state = 770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 298) { { - this.state = 809; + this.state = 767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 808; + this.state = 766; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 811; + this.state = 769; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 814; + this.state = 772; this.match(SparkSqlParser.KW_VIEW); - this.state = 816; + this.state = 774; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 815; + this.state = 773; this.ifNotExists(); } break; } - this.state = 818; + this.state = 776; this.viewNameCreate(); - this.state = 820; + this.state = 778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 819; + this.state = 777; this.identifierCommentList(); } } - this.state = 830; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 828; + this.state = 787; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 822; - this.commentSpec(); + { + this.state = 780; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 781; + (localContext as CreateViewContext)._comment = this.stringLit(); + } } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 823; + this.state = 782; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 824; + this.state = 783; this.match(SparkSqlParser.KW_ON); - this.state = 825; + this.state = 784; this.identifierList(); } } @@ -2307,9 +2343,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 826; + this.state = 785; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 827; + this.state = 786; this.propertyList(); } } @@ -2318,13 +2354,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 832; + this.state = 791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 792; this.match(SparkSqlParser.KW_AS); - this.state = 834; + this.state = 793; this.query(); } break; @@ -2332,60 +2368,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 836; + this.state = 795; this.match(SparkSqlParser.KW_CREATE); - this.state = 839; + this.state = 798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 837; + this.state = 796; this.match(SparkSqlParser.KW_OR); - this.state = 838; + this.state = 797; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 842; + this.state = 801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 841; + this.state = 800; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 844; + this.state = 803; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 845; + this.state = 804; this.match(SparkSqlParser.KW_VIEW); - this.state = 846; + this.state = 805; this.viewNameCreate(); - this.state = 851; + this.state = 810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 847; + this.state = 806; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 848; + this.state = 807; this.colTypeList(); - this.state = 849; + this.state = 808; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 853; + this.state = 812; this.tableProvider(); - this.state = 856; + this.state = 815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 854; + this.state = 813; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 855; + this.state = 814; this.propertyList(); } } @@ -2396,23 +2432,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 858; + this.state = 817; this.match(SparkSqlParser.KW_ALTER); - this.state = 859; + this.state = 818; this.match(SparkSqlParser.KW_VIEW); - this.state = 860; + this.state = 819; this.viewName(); - this.state = 862; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 861; + this.state = 820; this.match(SparkSqlParser.KW_AS); } } - this.state = 864; + this.state = 823; this.query(); } break; @@ -2420,70 +2456,78 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 866; + this.state = 825; this.match(SparkSqlParser.KW_CREATE); - this.state = 869; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 867; + this.state = 826; this.match(SparkSqlParser.KW_OR); - this.state = 868; + this.state = 827; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 872; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 871; + this.state = 830; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 874; + this.state = 833; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 876; + this.state = 835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 875; + this.state = 834; this.ifNotExists(); } break; } - this.state = 878; + this.state = 837; this.functionNameCreate(); - this.state = 879; + this.state = 838; this.match(SparkSqlParser.KW_AS); - this.state = 880; + this.state = 839; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 890; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 881; + this.state = 840; this.match(SparkSqlParser.KW_USING); - this.state = 882; - this.resource(); - this.state = 887; + { + this.state = 841; + this.identifier(); + this.state = 842; + this.stringLit(); + } + this.state = 850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 883; + this.state = 844; this.match(SparkSqlParser.COMMA); - this.state = 884; - this.resource(); + { + this.state = 845; + this.identifier(); + this.state = 846; + this.stringLit(); } } - this.state = 889; + } + this.state = 852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2496,48 +2540,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 892; + this.state = 855; this.match(SparkSqlParser.KW_CREATE); - this.state = 893; + this.state = 856; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 894; + this.state = 857; this.match(SparkSqlParser.KW_VIEW); - this.state = 896; + this.state = 859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 895; + this.state = 858; this.ifNotExists(); } break; } - this.state = 898; + this.state = 861; this.viewNameCreate(); - this.state = 900; + this.state = 863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 899; + this.state = 862; this.tableProvider(); } } - this.state = 917; + this.state = 882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 915; + this.state = 880; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 902; + this.state = 865; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 903; + this.state = 866; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2545,57 +2589,65 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 904; + this.state = 867; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 905; + this.state = 868; this.match(SparkSqlParser.KW_BY); - this.state = 906; + this.state = 869; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 907; + this.state = 870; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 908; + this.state = 871; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 909; + this.state = 872; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 910; + this.state = 873; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 911; - this.locationSpec(); + { + this.state = 874; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 875; + this.stringLit(); + } } break; case SparkSqlParser.KW_COMMENT: { - this.state = 912; - this.commentSpec(); + { + this.state = 876; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 877; + (localContext as CreateMaterializedViewContext)._comment = this.stringLit(); + } } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 913; + this.state = 878; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 914; + this.state = 879; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2604,13 +2656,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 919; + this.state = 884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 920; + this.state = 885; this.match(SparkSqlParser.KW_AS); - this.state = 921; + this.state = 886; this.query(); } break; @@ -2618,31 +2670,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 923; + this.state = 888; this.match(SparkSqlParser.KW_DROP); - this.state = 925; + this.state = 890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 924; + this.state = 889; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 927; + this.state = 892; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 929; + this.state = 894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 928; + this.state = 893; this.ifExists(); } break; } - this.state = 931; + this.state = 896; this.functionName(); } break; @@ -2650,48 +2702,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 932; + this.state = 897; this.match(SparkSqlParser.KW_DECLARE); - this.state = 935; + this.state = 900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 933; + this.state = 898; this.match(SparkSqlParser.KW_OR); - this.state = 934; + this.state = 899; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 938; + this.state = 903; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 937; + this.state = 902; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 940; + this.state = 905; this.functionName(); - this.state = 942; + this.state = 907; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { - this.state = 941; + this.state = 906; this.dataType(); } break; } - this.state = 945; + this.state = 910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 352) { { - this.state = 944; + this.state = 909; this.variableDefaultExpression(); } } @@ -2702,40 +2754,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 947; + this.state = 912; this.match(SparkSqlParser.KW_DROP); - this.state = 948; + this.state = 913; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 949; + this.state = 914; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 951; + this.state = 916; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 950; + this.state = 915; this.ifExists(); } break; } - this.state = 956; + this.state = 921; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 953; + this.state = 918; this.tableName(); } break; case 2: { - this.state = 954; + this.state = 919; this.viewName(); } break; case 3: { - this.state = 955; + this.state = 920; this.functionName(); } break; @@ -2746,14 +2798,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 958; + this.state = 923; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 960; + this.state = 925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 959; + this.state = 924; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); @@ -2765,7 +2817,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 962; + this.state = 927; this.statement(); } break; @@ -2773,16 +2825,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 963; + this.state = 928; this.match(SparkSqlParser.KW_SHOW); - this.state = 964; + this.state = 929; this.match(SparkSqlParser.KW_TABLES); - this.state = 967; + this.state = 932; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 965; + this.state = 930; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2791,27 +2843,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 966; + this.state = 931; this.namespaceName(); } break; } - this.state = 973; + this.state = 938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 970; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 969; + this.state = 934; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 972; + this.state = 937; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2822,18 +2874,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 975; + this.state = 940; this.match(SparkSqlParser.KW_SHOW); - this.state = 976; + this.state = 941; this.match(SparkSqlParser.KW_TABLE); - this.state = 977; + this.state = 942; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 980; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 978; + this.state = 943; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2842,21 +2894,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 979; + this.state = 944; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 982; + this.state = 947; this.match(SparkSqlParser.KW_LIKE); - this.state = 983; + this.state = 948; (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); - this.state = 985; + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 984; + this.state = 949; this.partitionSpec(); } } @@ -2867,22 +2919,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 987; + this.state = 952; this.match(SparkSqlParser.KW_SHOW); - this.state = 988; + this.state = 953; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 989; + this.state = 954; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 994; + this.state = 959; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 990; + this.state = 955; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 991; + this.state = 956; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 992; + this.state = 957; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2893,11 +2945,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 996; + this.state = 961; this.match(SparkSqlParser.KW_SHOW); - this.state = 997; + this.state = 962; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 998; + this.state = 963; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2906,14 +2958,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 999; + this.state = 964; (localContext as ShowColumnsContext)._table = this.tableName(); - this.state = 1002; + this.state = 967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 1000; + this.state = 965; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2922,7 +2974,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 966; this.namespaceName(); } break; @@ -2933,16 +2985,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 1004; + this.state = 969; this.match(SparkSqlParser.KW_SHOW); - this.state = 1005; + this.state = 970; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1008; + this.state = 973; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1006; + this.state = 971; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2951,27 +3003,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1007; + this.state = 972; this.namespaceName(); } break; } - this.state = 1014; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1011; + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1010; + this.state = 975; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1013; + this.state = 978; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -2982,18 +3034,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 1016; + this.state = 981; this.match(SparkSqlParser.KW_SHOW); - this.state = 1017; + this.state = 982; this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1018; + this.state = 983; this.tableName(); - this.state = 1020; + this.state = 985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1019; + this.state = 984; this.partitionSpec(); } } @@ -3004,26 +3056,33 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1022; + this.state = 987; this.match(SparkSqlParser.KW_SHOW); - this.state = 1024; + this.state = 989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1023; - this.functionKind(); + this.state = 988; + _la = this.tokenStream.LA(1); + if(!(_la === 10 || _la === 290 || _la === 331)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } - this.state = 1026; + this.state = 991; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1029; + this.state = 994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1027; + this.state = 992; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3032,38 +3091,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1028; + this.state = 993; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1038; + this.state = 1003; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1032; + this.state = 997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1031; + this.state = 996; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1036; + this.state = 1001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1034; + this.state = 999; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1035; + this.state = 1000; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3077,22 +3136,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1040; + this.state = 1005; this.match(SparkSqlParser.KW_SHOW); - this.state = 1041; + this.state = 1006; this.match(SparkSqlParser.KW_CREATE); - this.state = 1042; + this.state = 1007; this.match(SparkSqlParser.KW_TABLE); - this.state = 1043; + this.state = 1008; this.tableName(); - this.state = 1046; + this.state = 1011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1044; + this.state = 1009; this.match(SparkSqlParser.KW_AS); - this.state = 1045; + this.state = 1010; this.match(SparkSqlParser.KW_SERDE); } } @@ -3103,11 +3162,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1048; + this.state = 1013; this.match(SparkSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1014; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1050; + this.state = 1015; this.namespace(); } break; @@ -3115,26 +3174,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1051; + this.state = 1016; this.match(SparkSqlParser.KW_SHOW); - this.state = 1052; + this.state = 1017; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1057; + this.state = 1022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1054; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1053; + this.state = 1018; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1056; + this.state = 1021; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3145,18 +3204,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1059; + this.state = 1024; this.match(SparkSqlParser.KW_SHOW); - this.state = 1060; + this.state = 1025; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1061; + this.state = 1026; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1064; + this.state = 1029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1062; + this.state = 1027; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3165,27 +3224,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1063; + this.state = 1028; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1070; + this.state = 1035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1067; + this.state = 1032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1066; + this.state = 1031; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1069; + this.state = 1034; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3196,24 +3255,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1072; + this.state = 1037; this.match(SparkSqlParser.KW_SHOW); - this.state = 1073; + this.state = 1038; this.match(SparkSqlParser.KW_CREATE); - this.state = 1074; + this.state = 1039; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1075; + this.state = 1040; this.match(SparkSqlParser.KW_VIEW); - this.state = 1076; + this.state = 1041; this.viewName(); - this.state = 1079; + this.state = 1044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1077; + this.state = 1042; this.match(SparkSqlParser.KW_AS); - this.state = 1078; + this.state = 1043; this.match(SparkSqlParser.KW_SERDE); } } @@ -3224,7 +3283,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1081; + this.state = 1046; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3233,19 +3292,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1047; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1084; + this.state = 1049; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1083; + this.state = 1048; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1086; + this.state = 1051; this.describeFuncName(); } break; @@ -3253,7 +3312,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1087; + this.state = 1052; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3262,19 +3321,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1053; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1090; + this.state = 1055; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1089; + this.state = 1054; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1092; + this.state = 1057; this.namespaceName(); } break; @@ -3282,7 +3341,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1093; + this.state = 1058; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3291,22 +3350,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1094; + this.state = 1059; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1098; + this.state = 1063; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1097; + this.state = 1062; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3319,24 +3378,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1100; + this.state = 1065; this.tableName(); - this.state = 1102; + this.state = 1067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1101; + this.state = 1066; this.partitionSpec(); } break; } - this.state = 1105; + this.state = 1070; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1104; + this.state = 1069; this.describeColName(); } break; @@ -3347,7 +3406,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1107; + this.state = 1072; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3356,316 +3415,339 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 1108; + this.state = 1073; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1111; + this.state = 1076; this.query(); } break; case 63: - localContext = new CommentNamespaceContext(localContext); + localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1112; + this.state = 1077; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1113; + this.state = 1078; this.match(SparkSqlParser.KW_ON); - this.state = 1114; - this.namespace(); - this.state = 1115; - this.namespaceName(); - this.state = 1116; - this.match(SparkSqlParser.KW_IS); - this.state = 1117; - this.commentStr(); + this.state = 1084; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_DATABASE: + case SparkSqlParser.KW_NAMESPACE: + case SparkSqlParser.KW_SCHEMA: + { + { + this.state = 1079; + this.namespace(); + this.state = 1080; + this.namespaceName(); + } + } + break; + case SparkSqlParser.KW_TABLE: + { + { + this.state = 1082; + this.match(SparkSqlParser.KW_TABLE); + this.state = 1083; + this.tableName(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); } - break; - case 64: - localContext = new CommentTableContext(localContext); - this.enterOuterAlt(localContext, 64); - { - this.state = 1119; - this.match(SparkSqlParser.KW_COMMENT); - this.state = 1120; - this.match(SparkSqlParser.KW_ON); - this.state = 1121; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1122; - this.tableName(); - this.state = 1123; + this.state = 1086; this.match(SparkSqlParser.KW_IS); - this.state = 1124; - this.commentStr(); + this.state = 1089; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.STRING_LITERAL: + case SparkSqlParser.DOUBLEQUOTED_STRING: + { + this.state = 1087; + this.stringLit(); + } + break; + case SparkSqlParser.KW_NULL: + { + this.state = 1088; + this.match(SparkSqlParser.KW_NULL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; - case 65: + case 64: localContext = new RefreshTableContext(localContext); - this.enterOuterAlt(localContext, 65); + this.enterOuterAlt(localContext, 64); { - this.state = 1126; + this.state = 1091; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1127; + this.state = 1092; this.match(SparkSqlParser.KW_TABLE); - this.state = 1128; + this.state = 1093; this.tableName(); } break; - case 66: + case 65: localContext = new RefreshFunctionContext(localContext); - this.enterOuterAlt(localContext, 66); + this.enterOuterAlt(localContext, 65); { - this.state = 1129; + this.state = 1094; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1130; + this.state = 1095; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1131; + this.state = 1096; this.functionName(); } break; - case 67: + case 66: localContext = new RefreshResourceContext(localContext); - this.enterOuterAlt(localContext, 67); + this.enterOuterAlt(localContext, 66); { - this.state = 1132; + this.state = 1097; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1140; + this.state = 1105; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1133; + this.state = 1098; this.stringLit(); } break; case 2: { - this.state = 1137; + this.state = 1102; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1134; + this.state = 1099; this.matchWildcard(); } } } - this.state = 1139; + this.state = 1104; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } } break; } } break; - case 68: + case 67: localContext = new RefreshMaterializedViewContext(localContext); - this.enterOuterAlt(localContext, 68); + this.enterOuterAlt(localContext, 67); { - this.state = 1142; + this.state = 1107; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1143; + this.state = 1108; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1144; + this.state = 1109; this.match(SparkSqlParser.KW_VIEW); - this.state = 1145; + this.state = 1110; this.viewName(); } break; - case 69: + case 68: localContext = new CacheTableContext(localContext); - this.enterOuterAlt(localContext, 69); + this.enterOuterAlt(localContext, 68); { - this.state = 1146; + this.state = 1111; this.match(SparkSqlParser.KW_CACHE); - this.state = 1148; + this.state = 1113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1147; + this.state = 1112; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1150; + this.state = 1115; this.match(SparkSqlParser.KW_TABLE); - this.state = 1151; + this.state = 1116; this.tableName(); - this.state = 1154; + this.state = 1119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1152; + this.state = 1117; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1153; + this.state = 1118; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1160; + this.state = 1125; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1157; + this.state = 1122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1156; + this.state = 1121; this.match(SparkSqlParser.KW_AS); } } - this.state = 1159; + this.state = 1124; this.query(); } break; } } break; - case 70: + case 69: localContext = new UnCacheTableContext(localContext); - this.enterOuterAlt(localContext, 70); + this.enterOuterAlt(localContext, 69); { - this.state = 1162; + this.state = 1127; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1163; + this.state = 1128; this.match(SparkSqlParser.KW_TABLE); - this.state = 1165; + this.state = 1130; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1164; + this.state = 1129; this.ifExists(); } break; } - this.state = 1167; + this.state = 1132; this.tableName(); } break; - case 71: + case 70: localContext = new ClearCacheContext(localContext); - this.enterOuterAlt(localContext, 71); + this.enterOuterAlt(localContext, 70); { - this.state = 1168; + this.state = 1133; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1169; + this.state = 1134; this.match(SparkSqlParser.KW_CACHE); } break; - case 72: + case 71: localContext = new LoadDataContext(localContext); - this.enterOuterAlt(localContext, 72); + this.enterOuterAlt(localContext, 71); { - this.state = 1170; + this.state = 1135; this.match(SparkSqlParser.KW_LOAD); - this.state = 1171; + this.state = 1136; this.match(SparkSqlParser.KW_DATA); - this.state = 1173; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1172; + this.state = 1137; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1175; + this.state = 1140; this.match(SparkSqlParser.KW_INPATH); - this.state = 1176; + this.state = 1141; (localContext as LoadDataContext)._path = this.stringLit(); - this.state = 1178; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1177; + this.state = 1142; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1180; + this.state = 1145; this.match(SparkSqlParser.KW_INTO); - this.state = 1181; + this.state = 1146; this.match(SparkSqlParser.KW_TABLE); - this.state = 1182; + this.state = 1147; this.tableName(); - this.state = 1184; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1183; + this.state = 1148; this.partitionSpec(); } } } break; - case 73: + case 72: localContext = new TruncateTableContext(localContext); - this.enterOuterAlt(localContext, 73); + this.enterOuterAlt(localContext, 72); { - this.state = 1186; + this.state = 1151; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1187; + this.state = 1152; this.match(SparkSqlParser.KW_TABLE); - this.state = 1188; + this.state = 1153; this.tableName(); - this.state = 1190; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1189; + this.state = 1154; this.partitionSpec(); } } } break; - case 74: + case 73: localContext = new RepairTableContext(localContext); - this.enterOuterAlt(localContext, 74); + this.enterOuterAlt(localContext, 73); { - this.state = 1193; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1192; + this.state = 1157; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1195; + this.state = 1160; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1196; + this.state = 1161; this.match(SparkSqlParser.KW_TABLE); - this.state = 1197; + this.state = 1162; this.tableName(); - this.state = 1200; + this.state = 1165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1198; + this.state = 1163; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 289)) { @@ -3675,18 +3757,18 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1199; + this.state = 1164; this.match(SparkSqlParser.KW_PARTITIONS); } break; } } break; - case 75: + case 74: localContext = new ManageResourceContext(localContext); - this.enterOuterAlt(localContext, 75); + this.enterOuterAlt(localContext, 74); { - this.state = 1202; + this.state = 1167; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 167)) { @@ -3696,115 +3778,132 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1168; this.identifier(); - this.state = 1207; + this.state = 1172; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1204; + this.state = 1169; this.matchWildcard(); } } } - this.state = 1209; + this.state = 1174; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } } break; - case 76: + case 75: localContext = new FailNativeCommandContext(localContext); - this.enterOuterAlt(localContext, 76); + this.enterOuterAlt(localContext, 75); { - this.state = 1210; + this.state = 1175; this.match(SparkSqlParser.KW_SET); - this.state = 1211; + this.state = 1176; this.match(SparkSqlParser.KW_ROLE); - this.state = 1215; + this.state = 1180; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1212; + this.state = 1177; this.matchWildcard(); } } } - this.state = 1217; + this.state = 1182; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } } break; - case 77: + case 76: localContext = new SetTimeZoneIntervalContext(localContext); - this.enterOuterAlt(localContext, 77); + this.enterOuterAlt(localContext, 76); { - this.state = 1218; + this.state = 1183; this.match(SparkSqlParser.KW_SET); - this.state = 1219; + this.state = 1184; this.match(SparkSqlParser.KW_TIME); - this.state = 1220; + this.state = 1185; this.match(SparkSqlParser.KW_ZONE); - this.state = 1221; + this.state = 1186; this.interval(); } break; - case 78: + case 77: localContext = new SetTimeZoneContext(localContext); - this.enterOuterAlt(localContext, 78); + this.enterOuterAlt(localContext, 77); { - this.state = 1222; + this.state = 1187; this.match(SparkSqlParser.KW_SET); - this.state = 1223; + this.state = 1188; this.match(SparkSqlParser.KW_TIME); - this.state = 1224; + this.state = 1189; this.match(SparkSqlParser.KW_ZONE); - this.state = 1225; - this.timezone(); + this.state = 1192; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.STRING_LITERAL: + case SparkSqlParser.DOUBLEQUOTED_STRING: + { + this.state = 1190; + this.stringLit(); + } + break; + case SparkSqlParser.KW_LOCAL: + { + this.state = 1191; + this.match(SparkSqlParser.KW_LOCAL); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; - case 79: + case 78: localContext = new SetTimeZoneAnyContext(localContext); - this.enterOuterAlt(localContext, 79); + this.enterOuterAlt(localContext, 78); { - this.state = 1226; + this.state = 1194; this.match(SparkSqlParser.KW_SET); - this.state = 1227; + this.state = 1195; this.match(SparkSqlParser.KW_TIME); - this.state = 1228; + this.state = 1196; this.match(SparkSqlParser.KW_ZONE); - this.state = 1232; + this.state = 1200; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1229; + this.state = 1197; this.matchWildcard(); } } } - this.state = 1234; + this.state = 1202; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 137, this.context); } } break; - case 80: + case 79: localContext = new SetVariableAssignmentContext(localContext); - this.enterOuterAlt(localContext, 80); + this.enterOuterAlt(localContext, 79); { - this.state = 1235; + this.state = 1203; this.match(SparkSqlParser.KW_SET); - this.state = 1236; + this.state = 1204; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3813,17 +3912,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1237; + this.state = 1205; this.assignmentList(); } break; - case 81: + case 80: localContext = new SetVariableMultiAssignmentContext(localContext); - this.enterOuterAlt(localContext, 81); + this.enterOuterAlt(localContext, 80); { - this.state = 1238; + this.state = 1206; this.match(SparkSqlParser.KW_SET); - this.state = 1239; + this.state = 1207; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3832,394 +3931,310 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1240; + this.state = 1208; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1241; + this.state = 1209; this.multipartIdentifierList(); - this.state = 1242; + this.state = 1210; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1243; + this.state = 1211; this.match(SparkSqlParser.EQ); - this.state = 1244; + this.state = 1212; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1245; + this.state = 1213; this.query(); - this.state = 1246; + this.state = 1214; this.match(SparkSqlParser.RIGHT_PAREN); } break; - case 82: + case 81: localContext = new SetConfigContext(localContext); - this.enterOuterAlt(localContext, 82); + this.enterOuterAlt(localContext, 81); { - this.state = 1248; + this.state = 1216; this.match(SparkSqlParser.KW_SET); - this.state = 1249; - this.configKey(); - this.state = 1250; + this.state = 1217; + this.quotedIdentifier(); + this.state = 1218; this.match(SparkSqlParser.EQ); - this.state = 1251; - this.configValue(); + this.state = 1219; + this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; - case 83: + case 82: localContext = new SetConfigAndValueContext(localContext); - this.enterOuterAlt(localContext, 83); + this.enterOuterAlt(localContext, 82); { - this.state = 1253; + this.state = 1221; this.match(SparkSqlParser.KW_SET); - this.state = 1254; - this.configKey(); - this.state = 1262; + this.state = 1222; + this.quotedIdentifier(); + this.state = 1230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1255; + this.state = 1223; this.match(SparkSqlParser.EQ); - this.state = 1259; + this.state = 1227; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1256; + this.state = 1224; this.matchWildcard(); } } } - this.state = 1261; + this.state = 1229; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 138, this.context); } } } } break; - case 84: + case 83: localContext = new SetConfigAnyKeyContext(localContext); - this.enterOuterAlt(localContext, 84); + this.enterOuterAlt(localContext, 83); { - this.state = 1264; + this.state = 1232; this.match(SparkSqlParser.KW_SET); - this.state = 1268; + this.state = 1236; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1265; + this.state = 1233; this.matchWildcard(); } } } - this.state = 1270; + this.state = 1238; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 140, this.context); } - this.state = 1271; + this.state = 1239; this.match(SparkSqlParser.EQ); - this.state = 1272; - this.configValue(); + this.state = 1240; + this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } break; - case 85: + case 84: localContext = new SetAnyContext(localContext); - this.enterOuterAlt(localContext, 85); + this.enterOuterAlt(localContext, 84); { - this.state = 1273; + this.state = 1241; this.match(SparkSqlParser.KW_SET); - this.state = 1277; + this.state = 1245; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1274; + this.state = 1242; this.matchWildcard(); } } } - this.state = 1279; + this.state = 1247; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } } break; - case 86: + case 85: localContext = new ResetConfigContext(localContext); - this.enterOuterAlt(localContext, 86); + this.enterOuterAlt(localContext, 85); { - this.state = 1280; + this.state = 1248; this.match(SparkSqlParser.KW_RESET); - this.state = 1281; - this.configKey(); + this.state = 1249; + this.quotedIdentifier(); } break; - case 87: + case 86: localContext = new ResetAnyContext(localContext); - this.enterOuterAlt(localContext, 87); + this.enterOuterAlt(localContext, 86); { - this.state = 1282; + this.state = 1250; this.match(SparkSqlParser.KW_RESET); - this.state = 1286; + this.state = 1254; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1283; + this.state = 1251; this.matchWildcard(); } } } - this.state = 1288; + this.state = 1256; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); } } break; - case 88: + case 87: localContext = new CreateIndexContext(localContext); - this.enterOuterAlt(localContext, 88); + this.enterOuterAlt(localContext, 87); { - this.state = 1289; + this.state = 1257; this.match(SparkSqlParser.KW_CREATE); - this.state = 1290; + this.state = 1258; this.match(SparkSqlParser.KW_INDEX); - this.state = 1292; + this.state = 1260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1291; + this.state = 1259; this.ifNotExists(); } break; } - this.state = 1294; + this.state = 1262; this.identifier(); - this.state = 1295; + this.state = 1263; this.match(SparkSqlParser.KW_ON); - this.state = 1297; + this.state = 1265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1296; + this.state = 1264; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1299; + this.state = 1267; this.tableName(); - this.state = 1302; + this.state = 1270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1300; + this.state = 1268; this.match(SparkSqlParser.KW_USING); - this.state = 1301; + this.state = 1269; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1304; + this.state = 1272; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1305; + this.state = 1273; this.multipartIdentifierPropertyList(); - this.state = 1306; + this.state = 1274; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1309; + this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1307; + this.state = 1275; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1308; + this.state = 1276; (localContext as CreateIndexContext)._options = this.propertyList(); } } } break; - case 89: + case 88: localContext = new DropIndexContext(localContext); - this.enterOuterAlt(localContext, 89); + this.enterOuterAlt(localContext, 88); { - this.state = 1311; + this.state = 1279; this.match(SparkSqlParser.KW_DROP); - this.state = 1312; + this.state = 1280; this.match(SparkSqlParser.KW_INDEX); - this.state = 1314; + this.state = 1282; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1313; + this.state = 1281; this.ifExists(); } break; } - this.state = 1316; + this.state = 1284; this.identifier(); - this.state = 1317; + this.state = 1285; this.match(SparkSqlParser.KW_ON); - this.state = 1319; + this.state = 1287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1318; + this.state = 1286; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1321; + this.state = 1289; this.tableName(); } break; - case 90: + case 89: localContext = new OptimizeTableContext(localContext); - this.enterOuterAlt(localContext, 90); + this.enterOuterAlt(localContext, 89); { - this.state = 1323; + this.state = 1291; this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1324; + this.state = 1292; this.tableName(); - this.state = 1326; + this.state = 1294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1325; + this.state = 1293; this.whereClause(); } } - this.state = 1328; - this.zorderClause(); + this.state = 1296; + this.match(SparkSqlParser.KW_ZORDER); + this.state = 1297; + this.match(SparkSqlParser.KW_BY); + this.state = 1298; + this.columnNameSeq(); } break; - case 91: + case 90: localContext = new UnsupportHiveCommandsContext(localContext); - this.enterOuterAlt(localContext, 91); + this.enterOuterAlt(localContext, 90); { - this.state = 1330; + this.state = 1300; this.unsupportedHiveNativeCommands(); - this.state = 1334; + this.state = 1304; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1331; + this.state = 1301; this.matchWildcard(); } } } - this.state = 1336; + this.state = 1306; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); - } - } - 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 timezone(): TimezoneContext { - let localContext = new TimezoneContext(this.context, this.state); - this.enterRule(localContext, 6, SparkSqlParser.RULE_timezone); - try { - this.state = 1341; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.STRING_LITERAL: - case SparkSqlParser.DOUBLEQUOTED_STRING: - this.enterOuterAlt(localContext, 1); - { - this.state = 1339; - this.stringLit(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } - break; - case SparkSqlParser.KW_LOCAL: - this.enterOuterAlt(localContext, 2); - { - this.state = 1340; - this.match(SparkSqlParser.KW_LOCAL); } break; - default: - throw new antlr.NoViableAltException(this); - } - } - 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 configKey(): ConfigKeyContext { - let localContext = new ConfigKeyContext(this.context, this.state); - this.enterRule(localContext, 8, SparkSqlParser.RULE_configKey); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1343; - this.quotedIdentifier(); - } - } - 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 configValue(): ConfigValueContext { - let localContext = new ConfigValueContext(this.context, this.state); - this.enterRule(localContext, 10, SparkSqlParser.RULE_configValue); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1345; - this.backQuotedIdentifier(); } } catch (re) { @@ -4238,59 +4253,85 @@ export class SparkSqlParser extends SQLParserBase { } public unsupportedHiveNativeCommands(): UnsupportedHiveNativeCommandsContext { let localContext = new UnsupportedHiveNativeCommandsContext(this.context, this.state); - this.enterRule(localContext, 12, SparkSqlParser.RULE_unsupportedHiveNativeCommands); + this.enterRule(localContext, 6, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1515; + this.state = 1402; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1347; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1348; + this.state = 1309; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 59 || _la === 96)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1310; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1349; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1350; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1311; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 129 || _la === 249)) { + localContext._kw1 = this.errorHandler.recoverInline(this); } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 1351; - localContext._kw1 = this.match(SparkSqlParser.KW_GRANT); - this.state = 1353; + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1313; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1352; + this.state = 1312; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; } } break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1315; + localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); + this.state = 1316; + localContext._kw2 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 54 || _la === 129 || _la === 143 || _la === 172 || _la === 228 || _la === 313)) { + localContext._kw2 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1355; - localContext._kw1 = this.match(SparkSqlParser.KW_REVOKE); - this.state = 1357; + this.state = 1317; + localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); + this.state = 1318; + localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1320; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1356; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); + this.state = 1319; + localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; } @@ -4299,502 +4340,322 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1359; + this.state = 1322; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1360; - localContext._kw2 = this.match(SparkSqlParser.KW_GRANT); + this.state = 1324; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 1323; + this.match(SparkSqlParser.KW_CURRENT); + } + } + + this.state = 1326; + this.match(SparkSqlParser.KW_ROLES); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1361; + this.state = 1327; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1362; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1364; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { - case 1: - { - this.state = 1363; - localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); - } - break; - } + this.state = 1328; + localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); + this.state = 1329; + localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1366; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1367; - localContext._kw2 = this.match(SparkSqlParser.KW_PRINCIPALS); + this.state = 1330; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 11 || _la === 59 || _la === 96)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1331; + localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1368; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1369; - localContext._kw2 = this.match(SparkSqlParser.KW_ROLES); + this.state = 1332; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 107 || _la === 139 || _la === 171 || _la === 326)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1333; + localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1370; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1371; - localContext._kw2 = this.match(SparkSqlParser.KW_CURRENT); - this.state = 1372; - localContext._kw3 = this.match(SparkSqlParser.KW_ROLES); + this.state = 1334; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 171 || _la === 326)) { + localContext._kw1 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1335; + localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1373; - localContext._kw1 = this.match(SparkSqlParser.KW_EXPORT); - this.state = 1374; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - } - break; - case 11: - this.enterOuterAlt(localContext, 11); - { - this.state = 1375; - localContext._kw1 = this.match(SparkSqlParser.KW_IMPORT); - this.state = 1376; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - } - break; - case 12: - this.enterOuterAlt(localContext, 12); - { - this.state = 1377; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1378; - localContext._kw2 = this.match(SparkSqlParser.KW_COMPACTIONS); - } - break; - case 13: - this.enterOuterAlt(localContext, 13); - { - this.state = 1379; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1380; - localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1381; - localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); - } - break; - case 14: - this.enterOuterAlt(localContext, 14); - { - this.state = 1382; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1383; - localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTIONS); - } - break; - case 15: - this.enterOuterAlt(localContext, 15); - { - this.state = 1384; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1385; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEXES); - } - break; - case 16: - this.enterOuterAlt(localContext, 16); - { - this.state = 1386; - localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1387; - localContext._kw2 = this.match(SparkSqlParser.KW_LOCKS); - } - break; - case 17: - this.enterOuterAlt(localContext, 17); - { - this.state = 1388; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1389; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); - } - break; - case 18: - this.enterOuterAlt(localContext, 18); - { - this.state = 1390; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1391; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); - } - break; - case 19: - this.enterOuterAlt(localContext, 19); - { - this.state = 1392; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1393; - localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); - } - break; - case 20: - this.enterOuterAlt(localContext, 20); - { - this.state = 1394; - localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1395; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - } - break; - case 21: - this.enterOuterAlt(localContext, 21); - { - this.state = 1396; - localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1397; - localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); - } - break; - case 22: - this.enterOuterAlt(localContext, 22); - { - this.state = 1398; - localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1399; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - } - break; - case 23: - this.enterOuterAlt(localContext, 23); - { - this.state = 1400; - localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1401; - localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); + this.state = 1336; + localContext._kw1 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 59 || _la === 96)) { + localContext._kw1 = this.errorHandler.recoverInline(this); } - break; - case 24: - this.enterOuterAlt(localContext, 24); - { - this.state = 1402; - localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1403; - localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1404; - localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 25: - this.enterOuterAlt(localContext, 25); - { - this.state = 1405; - localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1406; + this.state = 1337; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1407; + this.state = 1338; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; - case 26: - this.enterOuterAlt(localContext, 26); + case 11: + this.enterOuterAlt(localContext, 11); { - this.state = 1408; + this.state = 1339; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1409; + this.state = 1340; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1410; + this.state = 1341; this.tableName(); - this.state = 1411; + this.state = 1342; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1412; - localContext._kw4 = this.match(SparkSqlParser.KW_CLUSTERED); + this.state = 1343; + localContext._kw4 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 45 || _la === 275 || _la === 279)) { + localContext._kw4 = this.errorHandler.recoverInline(this); } - break; - case 27: - this.enterOuterAlt(localContext, 27); - { - this.state = 1414; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1415; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1416; - this.tableName(); - this.state = 1417; - localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1418; - localContext._kw4 = this.match(SparkSqlParser.KW_BY); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 28: - this.enterOuterAlt(localContext, 28); - { - this.state = 1420; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1421; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1422; - this.tableName(); - this.state = 1423; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1424; - localContext._kw4 = this.match(SparkSqlParser.KW_SORTED); } break; - case 29: - this.enterOuterAlt(localContext, 29); + case 12: + this.enterOuterAlt(localContext, 12); { - this.state = 1426; + this.state = 1345; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1427; + this.state = 1346; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1428; + this.state = 1347; this.tableName(); - this.state = 1429; - localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1430; + this.state = 1348; + localContext._kw3 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 45 || _la === 275)) { + localContext._kw3 = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1349; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; - case 30: - this.enterOuterAlt(localContext, 30); + case 13: + this.enterOuterAlt(localContext, 13); { - this.state = 1432; + this.state = 1351; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1433; + this.state = 1352; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1434; + this.state = 1353; this.tableName(); - this.state = 1435; - localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1436; - localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); + this.state = 1354; + localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); + this.state = 1355; + localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; - case 31: - this.enterOuterAlt(localContext, 31); + case 14: + this.enterOuterAlt(localContext, 14); { - this.state = 1438; + this.state = 1357; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1439; + this.state = 1358; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1440; + this.state = 1359; this.tableName(); - this.state = 1441; + this.state = 1360; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1442; + this.state = 1361; localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1443; + this.state = 1362; localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1444; + this.state = 1363; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; - case 32: - this.enterOuterAlt(localContext, 32); + case 15: + this.enterOuterAlt(localContext, 15); { - this.state = 1446; + this.state = 1365; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1447; + this.state = 1366; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1448; + this.state = 1367; this.tableName(); - this.state = 1449; + this.state = 1368; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1450; + this.state = 1369; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1451; + this.state = 1370; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; - case 33: - this.enterOuterAlt(localContext, 33); + case 16: + this.enterOuterAlt(localContext, 16); { - this.state = 1453; + this.state = 1372; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1454; + this.state = 1373; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1455; + this.state = 1374; this.tableName(); - this.state = 1456; - localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); - this.state = 1457; - localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); + this.state = 1375; + localContext._kw3 = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 18 || _la === 103 || _la === 320)) { + localContext._kw3 = this.errorHandler.recoverInline(this); } - break; - case 34: - this.enterOuterAlt(localContext, 34); - { - this.state = 1459; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1460; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1461; - this.tableName(); - this.state = 1462; - localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); - this.state = 1463; - localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 35: - this.enterOuterAlt(localContext, 35); - { - this.state = 1465; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1466; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1467; - this.tableName(); - this.state = 1468; - localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); - this.state = 1469; + this.state = 1376; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; - case 36: - this.enterOuterAlt(localContext, 36); + case 17: + this.enterOuterAlt(localContext, 17); { - this.state = 1471; + this.state = 1378; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1472; + this.state = 1379; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1473; + this.state = 1380; this.tableName(); - this.state = 1474; + this.state = 1381; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; - case 37: - this.enterOuterAlt(localContext, 37); + case 18: + this.enterOuterAlt(localContext, 18); { - this.state = 1476; + this.state = 1383; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1477; + this.state = 1384; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1478; + this.state = 1385; this.tableName(); - this.state = 1480; + this.state = 1387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1479; + this.state = 1386; this.partitionSpec(); } } - this.state = 1482; - localContext._kw3 = this.match(SparkSqlParser.KW_COMPACT); - } - break; - case 38: - this.enterOuterAlt(localContext, 38); - { - this.state = 1484; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1485; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1486; - this.tableName(); - this.state = 1488; + this.state = 1395; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_COMPACT: { - this.state = 1487; - this.partitionSpec(); + this.state = 1389; + this.match(SparkSqlParser.KW_COMPACT); } - } - - this.state = 1490; - localContext._kw3 = this.match(SparkSqlParser.KW_CONCATENATE); - } - break; - case 39: - this.enterOuterAlt(localContext, 39); - { - this.state = 1492; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1493; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1494; - this.tableName(); - this.state = 1496; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { + break; + case SparkSqlParser.KW_CONCATENATE: { - this.state = 1495; - this.partitionSpec(); + this.state = 1390; + this.match(SparkSqlParser.KW_CONCATENATE); } - } - - this.state = 1498; - localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1499; - localContext._kw4 = this.match(SparkSqlParser.KW_FILEFORMAT); - } - break; - case 40: - this.enterOuterAlt(localContext, 40); - { - this.state = 1501; - localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1502; - localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1503; - this.tableName(); - this.state = 1505; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 217) { + break; + case SparkSqlParser.KW_SET: { - this.state = 1504; - this.partitionSpec(); + { + this.state = 1391; + this.match(SparkSqlParser.KW_SET); + this.state = 1392; + this.match(SparkSqlParser.KW_FILEFORMAT); + } + } + break; + case SparkSqlParser.KW_REPLACE: + { + { + this.state = 1393; + this.match(SparkSqlParser.KW_REPLACE); + this.state = 1394; + this.match(SparkSqlParser.KW_COLUMNS); + } } + break; + default: + throw new antlr.NoViableAltException(this); } - - this.state = 1507; - localContext._kw3 = this.match(SparkSqlParser.KW_REPLACE); - this.state = 1508; - localContext._kw4 = this.match(SparkSqlParser.KW_COLUMNS); } break; - case 41: - this.enterOuterAlt(localContext, 41); + case 19: + this.enterOuterAlt(localContext, 19); { - this.state = 1510; + this.state = 1397; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1511; + this.state = 1398; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; - case 42: - this.enterOuterAlt(localContext, 42); + case 20: + this.enterOuterAlt(localContext, 20); { - this.state = 1512; + this.state = 1399; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; - case 43: - this.enterOuterAlt(localContext, 43); + case 21: + this.enterOuterAlt(localContext, 21); { - this.state = 1513; + this.state = 1400; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; - case 44: - this.enterOuterAlt(localContext, 44); + case 22: + this.enterOuterAlt(localContext, 22); { - this.state = 1514; + this.state = 1401; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4814,138 +4675,38 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public createTableHeader(): CreateTableHeaderContext { - let localContext = new CreateTableHeaderContext(this.context, this.state); - this.enterRule(localContext, 14, SparkSqlParser.RULE_createTableHeader); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1517; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1519; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 298) { - { - this.state = 1518; - this.match(SparkSqlParser.KW_TEMPORARY); - } - } - - this.state = 1522; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 109) { - { - this.state = 1521; - this.match(SparkSqlParser.KW_EXTERNAL); - } - } - - this.state = 1524; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1526; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { - case 1: - { - this.state = 1525; - this.ifNotExists(); - } - break; - } - this.state = 1528; - this.tableNameCreate(); - } - } - 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 replaceTableHeader(): ReplaceTableHeaderContext { - let localContext = new ReplaceTableHeaderContext(this.context, this.state); - this.enterRule(localContext, 16, SparkSqlParser.RULE_replaceTableHeader); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1532; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 59) { - { - this.state = 1530; - this.match(SparkSqlParser.KW_CREATE); - this.state = 1531; - this.match(SparkSqlParser.KW_OR); - } - } - - this.state = 1534; - this.match(SparkSqlParser.KW_REPLACE); - this.state = 1535; - this.match(SparkSqlParser.KW_TABLE); - this.state = 1536; - this.tableNameCreate(); - } - } - 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 bucketSpec(): BucketSpecContext { let localContext = new BucketSpecContext(this.context, this.state); - this.enterRule(localContext, 18, SparkSqlParser.RULE_bucketSpec); + this.enterRule(localContext, 8, SparkSqlParser.RULE_bucketSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1538; + this.state = 1404; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1539; + this.state = 1405; this.match(SparkSqlParser.KW_BY); - this.state = 1540; + this.state = 1406; this.identifierList(); - this.state = 1544; + this.state = 1410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 279) { { - this.state = 1541; + this.state = 1407; this.match(SparkSqlParser.KW_SORTED); - this.state = 1542; + this.state = 1408; this.match(SparkSqlParser.KW_BY); - this.state = 1543; + this.state = 1409; this.orderedIdentifierList(); } } - this.state = 1546; + this.state = 1412; this.match(SparkSqlParser.KW_INTO); - this.state = 1547; + this.state = 1413; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1548; + this.state = 1414; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4965,44 +4726,44 @@ export class SparkSqlParser extends SQLParserBase { } public skewSpec(): SkewSpecContext { let localContext = new SkewSpecContext(this.context, this.state); - this.enterRule(localContext, 20, SparkSqlParser.RULE_skewSpec); + this.enterRule(localContext, 10, SparkSqlParser.RULE_skewSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1550; + this.state = 1416; this.match(SparkSqlParser.KW_SKEWED); - this.state = 1551; + this.state = 1417; this.match(SparkSqlParser.KW_BY); - this.state = 1552; + this.state = 1418; this.identifierList(); - this.state = 1553; + this.state = 1419; this.match(SparkSqlParser.KW_ON); - this.state = 1556; + this.state = 1422; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1554; + this.state = 1420; this.constantList(); } break; case 2: { - this.state = 1555; + this.state = 1421; this.nestedConstantList(); } break; } - this.state = 1561; + this.state = 1427; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1558; + this.state = 1424; this.match(SparkSqlParser.KW_STORED); - this.state = 1559; + this.state = 1425; this.match(SparkSqlParser.KW_AS); - this.state = 1560; + this.state = 1426; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -5023,79 +4784,27 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public locationSpec(): LocationSpecContext { - let localContext = new LocationSpecContext(this.context, this.state); - this.enterRule(localContext, 22, SparkSqlParser.RULE_locationSpec); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1563; - this.match(SparkSqlParser.KW_LOCATION); - this.state = 1564; - this.stringLit(); - } - } - 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 commentSpec(): CommentSpecContext { - let localContext = new CommentSpecContext(this.context, this.state); - this.enterRule(localContext, 24, SparkSqlParser.RULE_commentSpec); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1566; - this.match(SparkSqlParser.KW_COMMENT); - this.state = 1567; - localContext._comment = this.stringLit(); - } - } - 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 query(): QueryContext { let localContext = new QueryContext(this.context, this.state); - this.enterRule(localContext, 26, SparkSqlParser.RULE_query); + this.enterRule(localContext, 12, SparkSqlParser.RULE_query); let _la: number; try { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 1569; + this.state = 1429; this.ctes(); } } - this.state = 1572; + this.state = 1432; this.queryTerm(0); - this.state = 1573; + this.state = 1433; this.queryOrganization(); } } @@ -5115,44 +4824,44 @@ export class SparkSqlParser extends SQLParserBase { } public insertInto(): InsertIntoContext { let localContext = new InsertIntoContext(this.context, this.state); - this.enterRule(localContext, 28, SparkSqlParser.RULE_insertInto); + this.enterRule(localContext, 14, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1651; + this.state = 1511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1575; + this.state = 1435; this.match(SparkSqlParser.KW_INSERT); - this.state = 1576; + this.state = 1436; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1578; + this.state = 1438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1577; + this.state = 1437; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1580; + this.state = 1440; this.tableName(); - this.state = 1585; + this.state = 1445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1581; + this.state = 1441; this.partitionSpec(); - this.state = 1583; + this.state = 1443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1582; + this.state = 1442; this.ifNotExists(); } } @@ -5160,15 +4869,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1593; + this.state = 1453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1587; + this.state = 1447; this.match(SparkSqlParser.KW_BY); - this.state = 1588; + this.state = 1448; this.match(SparkSqlParser.KW_NAME); } } @@ -5176,11 +4885,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1589; + this.state = 1449; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1590; + this.state = 1450; this.columnNameSeq(); - this.state = 1591; + this.state = 1451; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5191,51 +4900,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1595; + this.state = 1455; this.match(SparkSqlParser.KW_INSERT); - this.state = 1596; + this.state = 1456; this.match(SparkSqlParser.KW_INTO); - this.state = 1598; + this.state = 1458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1597; + this.state = 1457; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1600; + this.state = 1460; this.tableName(); - this.state = 1602; + this.state = 1462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1601; + this.state = 1461; this.partitionSpec(); } } - this.state = 1605; + this.state = 1465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1604; + this.state = 1464; this.ifNotExists(); } } - this.state = 1613; + this.state = 1473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1607; + this.state = 1467; this.match(SparkSqlParser.KW_BY); - this.state = 1608; + this.state = 1468; this.match(SparkSqlParser.KW_NAME); } } @@ -5243,11 +4952,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1609; + this.state = 1469; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1610; + this.state = 1470; this.columnNameSeq(); - this.state = 1611; + this.state = 1471; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5258,65 +4967,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1615; + this.state = 1475; this.match(SparkSqlParser.KW_INSERT); - this.state = 1616; + this.state = 1476; this.match(SparkSqlParser.KW_INTO); - this.state = 1618; + this.state = 1478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1617; + this.state = 1477; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1620; + this.state = 1480; this.tableName(); - this.state = 1621; + this.state = 1481; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1622; + this.state = 1482; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1624; + this.state = 1484; this.match(SparkSqlParser.KW_INSERT); - this.state = 1625; + this.state = 1485; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1627; + this.state = 1487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1626; + this.state = 1486; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1629; + this.state = 1489; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1630; + this.state = 1490; localContext._path = this.stringLit(); - this.state = 1632; + this.state = 1492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1631; + this.state = 1491; this.rowFormat(); } } - this.state = 1635; + this.state = 1495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 283) { { - this.state = 1634; + this.state = 1494; this.createFileFormat(); } } @@ -5326,42 +5035,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1637; + this.state = 1497; this.match(SparkSqlParser.KW_INSERT); - this.state = 1638; + this.state = 1498; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1640; + this.state = 1500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1639; + this.state = 1499; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1642; + this.state = 1502; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1644; + this.state = 1504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 377 || _la === 378) { { - this.state = 1643; + this.state = 1503; localContext._path = this.stringLit(); } } - this.state = 1646; + this.state = 1506; this.tableProvider(); - this.state = 1649; + this.state = 1509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1647; + this.state = 1507; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1648; + this.state = 1508; localContext._options = this.propertyList(); } } @@ -5386,20 +5095,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionSpecLocation(): PartitionSpecLocationContext { let localContext = new PartitionSpecLocationContext(this.context, this.state); - this.enterRule(localContext, 30, SparkSqlParser.RULE_partitionSpecLocation); + this.enterRule(localContext, 16, SparkSqlParser.RULE_partitionSpecLocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1653; + this.state = 1513; this.partitionSpec(); - this.state = 1655; + this.state = 1516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 170) { { - this.state = 1654; - this.locationSpec(); + this.state = 1514; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 1515; + this.stringLit(); } } @@ -5421,34 +5132,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 32, SparkSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 18, SparkSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1518; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1658; + this.state = 1519; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1659; + this.state = 1520; this.partitionVal(); - this.state = 1664; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1660; + this.state = 1521; this.match(SparkSqlParser.COMMA); - this.state = 1661; + this.state = 1522; this.partitionVal(); } } - this.state = 1666; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1667; + this.state = 1528; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5468,25 +5179,25 @@ export class SparkSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 34, SparkSqlParser.RULE_partitionVal); + this.enterRule(localContext, 20, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1678; + this.state = 1539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1669; + this.state = 1530; this.identifier(); - this.state = 1672; + this.state = 1533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1670; + this.state = 1531; this.match(SparkSqlParser.EQ); - this.state = 1671; + this.state = 1532; this.constant(); } } @@ -5496,11 +5207,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1674; + this.state = 1535; this.identifier(); - this.state = 1675; + this.state = 1536; this.match(SparkSqlParser.EQ); - this.state = 1676; + this.state = 1537; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5522,12 +5233,12 @@ export class SparkSqlParser extends SQLParserBase { } public namespace(): NamespaceContext { let localContext = new NamespaceContext(this.context, this.state); - this.enterRule(localContext, 36, SparkSqlParser.RULE_namespace); + this.enterRule(localContext, 22, SparkSqlParser.RULE_namespace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1541; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5552,77 +5263,45 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public namespaces(): NamespacesContext { - let localContext = new NamespacesContext(this.context, this.state); - this.enterRule(localContext, 38, SparkSqlParser.RULE_namespaces); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1682; - _la = this.tokenStream.LA(1); - if(!(_la === 73 || _la === 191 || _la === 262)) { - 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 describeFuncName(): DescribeFuncNameContext { let localContext = new DescribeFuncNameContext(this.context, this.state); - this.enterRule(localContext, 40, SparkSqlParser.RULE_describeFuncName); + this.enterRule(localContext, 24, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1689; + this.state = 1548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1684; + this.state = 1543; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1685; + this.state = 1544; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1686; + this.state = 1545; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1687; + this.state = 1546; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1688; + this.state = 1547; this.predicateOperator(); } break; @@ -5644,28 +5323,28 @@ export class SparkSqlParser extends SQLParserBase { } public describeColName(): DescribeColNameContext { let localContext = new DescribeColNameContext(this.context, this.state); - this.enterRule(localContext, 42, SparkSqlParser.RULE_describeColName); + this.enterRule(localContext, 26, SparkSqlParser.RULE_describeColName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1691; + this.state = 1550; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1696; + this.state = 1555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1692; + this.state = 1551; this.match(SparkSqlParser.DOT); - this.state = 1693; + this.state = 1552; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1698; + this.state = 1557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5687,28 +5366,28 @@ export class SparkSqlParser extends SQLParserBase { } public ctes(): CtesContext { let localContext = new CtesContext(this.context, this.state); - this.enterRule(localContext, 44, SparkSqlParser.RULE_ctes); + this.enterRule(localContext, 28, SparkSqlParser.RULE_ctes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1699; + this.state = 1558; this.match(SparkSqlParser.KW_WITH); - this.state = 1700; + this.state = 1559; this.namedQuery(); - this.state = 1705; + this.state = 1564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1701; + this.state = 1560; this.match(SparkSqlParser.COMMA); - this.state = 1702; + this.state = 1561; this.namedQuery(); } } - this.state = 1707; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5730,38 +5409,38 @@ export class SparkSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 46, SparkSqlParser.RULE_namedQuery); + this.enterRule(localContext, 30, SparkSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1567; localContext._name = this.errorCapturingIdentifier(); - this.state = 1710; + this.state = 1569; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1709; + this.state = 1568; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1713; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1712; + this.state = 1571; this.match(SparkSqlParser.KW_AS); } } - this.state = 1715; + this.state = 1574; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1716; + this.state = 1575; this.query(); - this.state = 1717; + this.state = 1576; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5781,13 +5460,13 @@ export class SparkSqlParser extends SQLParserBase { } public tableProvider(): TableProviderContext { let localContext = new TableProviderContext(this.context, this.state); - this.enterRule(localContext, 48, SparkSqlParser.RULE_tableProvider); + this.enterRule(localContext, 32, SparkSqlParser.RULE_tableProvider); try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1578; this.match(SparkSqlParser.KW_USING); - this.state = 1720; + this.state = 1579; this.multipartIdentifier(); } } @@ -5807,26 +5486,26 @@ export class SparkSqlParser extends SQLParserBase { } public createTableClauses(): CreateTableClausesContext { let localContext = new CreateTableClausesContext(this.context, this.state); - this.enterRule(localContext, 50, SparkSqlParser.RULE_createTableClauses); + this.enterRule(localContext, 34, SparkSqlParser.RULE_createTableClauses); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1599; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1736; + this.state = 1597; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1722; + this.state = 1581; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1723; + this.state = 1582; localContext._options = this.expressionPropertyList(); } } @@ -5834,64 +5513,68 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1724; + this.state = 1583; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1725; + this.state = 1584; this.match(SparkSqlParser.KW_BY); - this.state = 1726; + this.state = 1585; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1727; + this.state = 1586; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1728; + this.state = 1587; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1729; + this.state = 1588; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1730; + this.state = 1589; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1731; - this.locationSpec(); + this.state = 1590; + this.match(SparkSqlParser.KW_LOCATION); + this.state = 1591; + this.stringLit(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1732; - this.commentSpec(); + this.state = 1592; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 1593; + localContext._comment = this.stringLit(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1733; + this.state = 1594; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1734; + this.state = 1595; localContext._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 1735; + this.state = 1596; this.tableLifecycle(); } break; @@ -5900,7 +5583,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 1740; + this.state = 1601; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5922,13 +5605,13 @@ export class SparkSqlParser extends SQLParserBase { } public tableLifecycle(): TableLifecycleContext { let localContext = new TableLifecycleContext(this.context, this.state); - this.enterRule(localContext, 52, SparkSqlParser.RULE_tableLifecycle); + this.enterRule(localContext, 36, SparkSqlParser.RULE_tableLifecycle); try { this.enterOuterAlt(localContext, 1); { - this.state = 1741; + this.state = 1602; this.match(SparkSqlParser.KW_LIFECYCLE); - this.state = 1742; + this.state = 1603; this.match(SparkSqlParser.INTEGER_VALUE); } } @@ -5948,32 +5631,32 @@ export class SparkSqlParser extends SQLParserBase { } public propertyList(): PropertyListContext { let localContext = new PropertyListContext(this.context, this.state); - this.enterRule(localContext, 54, SparkSqlParser.RULE_propertyList); + this.enterRule(localContext, 38, SparkSqlParser.RULE_propertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1605; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1745; + this.state = 1606; this.property(); - this.state = 1750; + this.state = 1611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1746; + this.state = 1607; this.match(SparkSqlParser.COMMA); - this.state = 1747; + this.state = 1608; this.property(); } } - this.state = 1752; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1753; + this.state = 1614; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5993,29 +5676,29 @@ export class SparkSqlParser extends SQLParserBase { } public property(): PropertyContext { let localContext = new PropertyContext(this.context, this.state); - this.enterRule(localContext, 56, SparkSqlParser.RULE_property); + this.enterRule(localContext, 40, SparkSqlParser.RULE_property); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1616; localContext._key = this.propertyKey(); - this.state = 1760; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1757; + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1756; + this.state = 1617; this.match(SparkSqlParser.EQ); } } - this.state = 1759; + this.state = 1620; localContext._value = this.propertyValue(); } } @@ -6038,30 +5721,30 @@ export class SparkSqlParser extends SQLParserBase { } public propertyKey(): PropertyKeyContext { let localContext = new PropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyKey); + this.enterRule(localContext, 42, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1771; + this.state = 1632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1623; this.identifier(); - this.state = 1767; + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1763; + this.state = 1624; this.match(SparkSqlParser.DOT); - this.state = 1764; + this.state = 1625; this.identifier(); } } - this.state = 1769; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6070,7 +5753,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1631; this.stringLit(); } break; @@ -6092,22 +5775,22 @@ export class SparkSqlParser extends SQLParserBase { } public propertyValue(): PropertyValueContext { let localContext = new PropertyValueContext(this.context, this.state); - this.enterRule(localContext, 60, SparkSqlParser.RULE_propertyValue); + this.enterRule(localContext, 44, SparkSqlParser.RULE_propertyValue); try { - this.state = 1777; + this.state = 1638; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1634; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1635; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -6115,7 +5798,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1775; + this.state = 1636; this.booleanValue(); } break; @@ -6123,7 +5806,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1776; + this.state = 1637; this.stringLit(); } break; @@ -6147,32 +5830,32 @@ export class SparkSqlParser extends SQLParserBase { } public expressionPropertyList(): ExpressionPropertyListContext { let localContext = new ExpressionPropertyListContext(this.context, this.state); - this.enterRule(localContext, 62, SparkSqlParser.RULE_expressionPropertyList); + this.enterRule(localContext, 46, SparkSqlParser.RULE_expressionPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1640; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1780; + this.state = 1641; this.expressionProperty(); - this.state = 1785; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1781; + this.state = 1642; this.match(SparkSqlParser.COMMA); - this.state = 1782; + this.state = 1643; this.expressionProperty(); } } - this.state = 1787; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1788; + this.state = 1649; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6192,29 +5875,29 @@ export class SparkSqlParser extends SQLParserBase { } public expressionProperty(): ExpressionPropertyContext { let localContext = new ExpressionPropertyContext(this.context, this.state); - this.enterRule(localContext, 64, SparkSqlParser.RULE_expressionProperty); + this.enterRule(localContext, 48, SparkSqlParser.RULE_expressionProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1651; localContext._key = this.propertyKey(); - this.state = 1795; + this.state = 1656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1792; + this.state = 1653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1791; + this.state = 1652; this.match(SparkSqlParser.EQ); } } - this.state = 1794; + this.state = 1655; localContext._value = this.expression(); } } @@ -6237,32 +5920,32 @@ export class SparkSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 66, SparkSqlParser.RULE_constantList); + this.enterRule(localContext, 50, SparkSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1797; + this.state = 1658; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1798; + this.state = 1659; this.constant(); - this.state = 1803; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1799; + this.state = 1660; this.match(SparkSqlParser.COMMA); - this.state = 1800; + this.state = 1661; this.constant(); } } - this.state = 1805; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1806; + this.state = 1667; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6282,32 +5965,32 @@ export class SparkSqlParser extends SQLParserBase { } public nestedConstantList(): NestedConstantListContext { let localContext = new NestedConstantListContext(this.context, this.state); - this.enterRule(localContext, 68, SparkSqlParser.RULE_nestedConstantList); + this.enterRule(localContext, 52, SparkSqlParser.RULE_nestedConstantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1669; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1809; + this.state = 1670; this.constantList(); - this.state = 1814; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1810; + this.state = 1671; this.match(SparkSqlParser.COMMA); - this.state = 1811; + this.state = 1672; this.constantList(); } } - this.state = 1816; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1817; + this.state = 1678; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6327,30 +6010,30 @@ export class SparkSqlParser extends SQLParserBase { } public createFileFormat(): CreateFileFormatContext { let localContext = new CreateFileFormatContext(this.context, this.state); - this.enterRule(localContext, 70, SparkSqlParser.RULE_createFileFormat); + this.enterRule(localContext, 54, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1825; + this.state = 1686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1680; this.match(SparkSqlParser.KW_STORED); - this.state = 1820; + this.state = 1681; this.match(SparkSqlParser.KW_AS); - this.state = 1821; + this.state = 1682; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1822; + this.state = 1683; this.match(SparkSqlParser.KW_STORED); - this.state = 1823; + this.state = 1684; this.match(SparkSqlParser.KW_BY); - this.state = 1824; + this.state = 1685; this.storageHandler(); } break; @@ -6372,28 +6055,28 @@ export class SparkSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 72, SparkSqlParser.RULE_fileFormat); + this.enterRule(localContext, 56, SparkSqlParser.RULE_fileFormat); try { - this.state = 1833; + this.state = 1694; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1688; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1828; + this.state = 1689; localContext._inFmt = this.stringLit(); - this.state = 1829; + this.state = 1690; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1830; + this.state = 1691; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1832; + this.state = 1693; this.identifier(); } break; @@ -6415,22 +6098,22 @@ export class SparkSqlParser extends SQLParserBase { } public storageHandler(): StorageHandlerContext { let localContext = new StorageHandlerContext(this.context, this.state); - this.enterRule(localContext, 74, SparkSqlParser.RULE_storageHandler); + this.enterRule(localContext, 58, SparkSqlParser.RULE_storageHandler); try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1696; this.stringLit(); - this.state = 1839; + this.state = 1700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1836; + this.state = 1697; this.match(SparkSqlParser.KW_WITH); - this.state = 1837; + this.state = 1698; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1838; + this.state = 1699; this.propertyList(); } break; @@ -6451,48 +6134,22 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public resource(): ResourceContext { - let localContext = new ResourceContext(this.context, this.state); - this.enterRule(localContext, 76, SparkSqlParser.RULE_resource); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1841; - this.identifier(); - this.state = 1842; - this.stringLit(); - } - } - 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 dmlStatementNoWith(): DmlStatementNoWithContext { let localContext = new DmlStatementNoWithContext(this.context, this.state); - this.enterRule(localContext, 78, SparkSqlParser.RULE_dmlStatementNoWith); + this.enterRule(localContext, 60, SparkSqlParser.RULE_dmlStatementNoWith); let _la: number; try { let alternative: number; - this.state = 1900; + this.state = 1760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1844; + this.state = 1702; this.insertInto(); - this.state = 1845; + this.state = 1703; this.query(); } break; @@ -6500,9 +6157,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1847; + this.state = 1705; this.fromClause(); - this.state = 1849; + this.state = 1709; this.errorHandler.sync(this); alternative = 1; do { @@ -6510,15 +6167,17 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1848; - this.multiInsertQueryBody(); + this.state = 1706; + this.insertInto(); + this.state = 1707; + this.fromStatementBody(); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1851; + this.state = 1711; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6528,20 +6187,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1853; + this.state = 1713; this.match(SparkSqlParser.KW_DELETE); - this.state = 1854; + this.state = 1714; this.match(SparkSqlParser.KW_FROM); - this.state = 1855; + this.state = 1715; this.tableName(); - this.state = 1856; + this.state = 1716; this.tableAlias(); - this.state = 1858; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1857; + this.state = 1717; this.whereClause(); } } @@ -6552,20 +6211,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1860; + this.state = 1720; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1861; + this.state = 1721; this.tableName(); - this.state = 1862; + this.state = 1722; this.tableAlias(); - this.state = 1863; + this.state = 1723; this.setClause(); - this.state = 1865; + this.state = 1725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1864; + this.state = 1724; this.whereClause(); } } @@ -6576,17 +6235,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1867; + this.state = 1727; this.match(SparkSqlParser.KW_MERGE); - this.state = 1868; + this.state = 1728; this.match(SparkSqlParser.KW_INTO); - this.state = 1869; + this.state = 1729; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1870; + this.state = 1730; (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1871; + this.state = 1731; this.match(SparkSqlParser.KW_USING); - this.state = 1877; + this.state = 1737; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6933,72 +6592,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1872; + this.state = 1732; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1873; + this.state = 1733; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1874; + this.state = 1734; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1875; + this.state = 1735; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1879; + this.state = 1739; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1880; + this.state = 1740; this.match(SparkSqlParser.KW_ON); - this.state = 1881; + this.state = 1741; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1885; + this.state = 1745; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1882; + this.state = 1742; this.matchedClause(); } } } - this.state = 1887; + this.state = 1747; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1891; + this.state = 1751; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1888; + this.state = 1748; this.notMatchedClause(); } } } - this.state = 1893; + this.state = 1753; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1897; + this.state = 1757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 343) { { { - this.state = 1894; + this.state = 1754; this.notMatchedBySourceClause(); } } - this.state = 1899; + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7024,11 +6683,11 @@ export class SparkSqlParser extends SQLParserBase { } public namespaceName(): NamespaceNameContext { let localContext = new NamespaceNameContext(this.context, this.state); - this.enterRule(localContext, 80, SparkSqlParser.RULE_namespaceName); + this.enterRule(localContext, 62, SparkSqlParser.RULE_namespaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1762; this.identifierReference(); } } @@ -7048,11 +6707,11 @@ export class SparkSqlParser extends SQLParserBase { } public namespaceNameCreate(): NamespaceNameCreateContext { let localContext = new NamespaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 82, SparkSqlParser.RULE_namespaceNameCreate); + this.enterRule(localContext, 64, SparkSqlParser.RULE_namespaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1904; + this.state = 1764; this.identifierReference(); } } @@ -7072,11 +6731,11 @@ export class SparkSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 84, SparkSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 66, SparkSqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1766; this.tableIdentifier(); } } @@ -7096,11 +6755,11 @@ export class SparkSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 86, SparkSqlParser.RULE_tableName); + this.enterRule(localContext, 68, SparkSqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1908; + this.state = 1768; this.tableIdentifier(); } } @@ -7120,11 +6779,11 @@ export class SparkSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 88, SparkSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 70, SparkSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1770; this.viewIdentifier(); } } @@ -7144,11 +6803,11 @@ export class SparkSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 90, SparkSqlParser.RULE_viewName); + this.enterRule(localContext, 72, SparkSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 1912; + this.state = 1772; this.viewIdentifier(); } } @@ -7168,22 +6827,22 @@ export class SparkSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 92, SparkSqlParser.RULE_columnName); + this.enterRule(localContext, 74, SparkSqlParser.RULE_columnName); try { - this.state = 1916; + this.state = 1776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1914; + this.state = 1774; this.multipartIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1915; + this.state = 1775; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -7207,26 +6866,26 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameSeq(): ColumnNameSeqContext { let localContext = new ColumnNameSeqContext(this.context, this.state); - this.enterRule(localContext, 94, SparkSqlParser.RULE_columnNameSeq); + this.enterRule(localContext, 76, SparkSqlParser.RULE_columnNameSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1918; + this.state = 1778; this.columnName(); - this.state = 1923; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1919; + this.state = 1779; this.match(SparkSqlParser.COMMA); - this.state = 1920; + this.state = 1780; this.columnName(); } } - this.state = 1925; + this.state = 1785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7248,11 +6907,11 @@ export class SparkSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 96, SparkSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 78, SparkSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1926; + this.state = 1786; this.errorCapturingIdentifier(); } } @@ -7272,28 +6931,28 @@ export class SparkSqlParser extends SQLParserBase { } public identifierReference(): IdentifierReferenceContext { let localContext = new IdentifierReferenceContext(this.context, this.state); - this.enterRule(localContext, 98, SparkSqlParser.RULE_identifierReference); + this.enterRule(localContext, 80, SparkSqlParser.RULE_identifierReference); try { - this.state = 1934; + this.state = 1794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1928; + this.state = 1788; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1929; + this.state = 1789; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1930; + this.state = 1790; this.expression(); - this.state = 1931; + this.state = 1791; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1933; + this.state = 1793; this.multipartIdentifier(); } break; @@ -7315,176 +6974,176 @@ export class SparkSqlParser extends SQLParserBase { } public queryOrganization(): QueryOrganizationContext { let localContext = new QueryOrganizationContext(this.context, this.state); - this.enterRule(localContext, 100, SparkSqlParser.RULE_queryOrganization); + this.enterRule(localContext, 82, SparkSqlParser.RULE_queryOrganization); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1946; + this.state = 1806; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1936; + this.state = 1796; this.match(SparkSqlParser.KW_ORDER); - this.state = 1937; + this.state = 1797; this.match(SparkSqlParser.KW_BY); - this.state = 1938; + this.state = 1798; localContext._sortItem = this.sortItem(); localContext._order.push(localContext._sortItem); - this.state = 1943; + this.state = 1803; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1939; + this.state = 1799; this.match(SparkSqlParser.COMMA); - this.state = 1940; + this.state = 1800; localContext._sortItem = this.sortItem(); localContext._order.push(localContext._sortItem); } } } - this.state = 1945; + this.state = 1805; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); } } break; } - this.state = 1958; + this.state = 1818; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1948; + this.state = 1808; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1949; + this.state = 1809; this.match(SparkSqlParser.KW_BY); - this.state = 1950; + this.state = 1810; localContext._expression = this.expression(); localContext._clusterBy.push(localContext._expression); - this.state = 1955; + this.state = 1815; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1951; + this.state = 1811; this.match(SparkSqlParser.COMMA); - this.state = 1952; + this.state = 1812; localContext._expression = this.expression(); localContext._clusterBy.push(localContext._expression); } } } - this.state = 1957; + this.state = 1817; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } } break; } - this.state = 1970; + this.state = 1830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1960; + this.state = 1820; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1961; + this.state = 1821; this.match(SparkSqlParser.KW_BY); - this.state = 1962; + this.state = 1822; localContext._expression = this.expression(); localContext._distributeBy.push(localContext._expression); - this.state = 1967; + this.state = 1827; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1963; + this.state = 1823; this.match(SparkSqlParser.COMMA); - this.state = 1964; + this.state = 1824; localContext._expression = this.expression(); localContext._distributeBy.push(localContext._expression); } } } - this.state = 1969; + this.state = 1829; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); } } break; } - this.state = 1982; + this.state = 1842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1972; + this.state = 1832; this.match(SparkSqlParser.KW_SORT); - this.state = 1973; + this.state = 1833; this.match(SparkSqlParser.KW_BY); - this.state = 1974; + this.state = 1834; localContext._sortItem = this.sortItem(); localContext._sort.push(localContext._sortItem); - this.state = 1979; + this.state = 1839; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1975; + this.state = 1835; this.match(SparkSqlParser.COMMA); - this.state = 1976; + this.state = 1836; localContext._sortItem = this.sortItem(); localContext._sort.push(localContext._sortItem); } } } - this.state = 1981; + this.state = 1841; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); } } break; } - this.state = 1985; + this.state = 1845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1984; + this.state = 1844; this.windowClause(); } break; } - this.state = 1992; + this.state = 1852; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1987; + this.state = 1847; this.match(SparkSqlParser.KW_LIMIT); - this.state = 1990; + this.state = 1850; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1988; + this.state = 1848; this.match(SparkSqlParser.KW_ALL); } break; case 2: { - this.state = 1989; + this.state = 1849; localContext._limit = this.expression(); } break; @@ -7492,14 +7151,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1996; + this.state = 1856; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1994; + this.state = 1854; this.match(SparkSqlParser.KW_OFFSET); - this.state = 1995; + this.state = 1855; localContext._offset = this.expression(); } break; @@ -7520,32 +7179,6 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public multiInsertQueryBody(): MultiInsertQueryBodyContext { - let localContext = new MultiInsertQueryBodyContext(this.context, this.state); - this.enterRule(localContext, 102, SparkSqlParser.RULE_multiInsertQueryBody); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1998; - this.insertInto(); - this.state = 1999; - this.fromStatementBody(); - } - } - 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 queryTerm(): QueryTermContext; public queryTerm(_p: number): QueryTermContext; @@ -7558,19 +7191,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new QueryTermContext(this.context, parentState); let previousContext = localContext; - let _startState = 104; - this.enterRecursionRule(localContext, 104, SparkSqlParser.RULE_queryTerm, _p); + let _startState = 84; + this.enterRecursionRule(localContext, 84, SparkSqlParser.RULE_queryTerm, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 2002; + this.state = 1859; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2024; + this.state = 1881; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -7580,7 +7213,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2022; + this.state = 1879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: @@ -7588,11 +7221,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2004; + this.state = 1861; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2005; + this.state = 1862; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { @@ -7602,17 +7235,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2007; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2006; + this.state = 1863; this.setQuantifier(); } } - this.state = 2009; + this.state = 1866; localContext._right = this.queryTerm(4); } break; @@ -7621,23 +7254,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2010; + this.state = 1867; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2011; + this.state = 1868; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 2013; + this.state = 1870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2012; + this.state = 1869; this.setQuantifier(); } } - this.state = 2015; + this.state = 1872; localContext._right = this.queryTerm(3); } break; @@ -7646,11 +7279,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2016; + this.state = 1873; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2017; + this.state = 1874; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 270 || _la === 323)) { @@ -7660,24 +7293,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 1876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2018; + this.state = 1875; this.setQuantifier(); } } - this.state = 2021; + this.state = 1878; localContext._right = this.queryTerm(2); } break; } } } - this.state = 2026; + this.state = 1883; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -7699,9 +7332,10 @@ export class SparkSqlParser extends SQLParserBase { } public queryPrimary(): QueryPrimaryContext { let localContext = new QueryPrimaryContext(this.context, this.state); - this.enterRule(localContext, 106, SparkSqlParser.RULE_queryPrimary); + this.enterRule(localContext, 86, SparkSqlParser.RULE_queryPrimary); try { - this.state = 2036; + let alternative: number; + this.state = 1908; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7709,41 +7343,83 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 1884; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2028; - this.fromStatement(); + this.state = 1885; + this.fromClause(); + this.state = 1887; + this.errorHandler.sync(this); + alternative = 1; + do { + switch (alternative) { + case 1: + { + { + this.state = 1886; + this.fromStatementBody(); + } + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 1889; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2029; + this.state = 1891; this.match(SparkSqlParser.KW_TABLE); - this.state = 2030; + this.state = 1892; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 2031; - this.inlineTable(); + this.state = 1893; + this.match(SparkSqlParser.KW_VALUES); + this.state = 1894; + this.expression(); + this.state = 1899; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1895; + this.match(SparkSqlParser.COMMA); + this.state = 1896; + this.expression(); + } + } + } + this.state = 1901; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); + } + this.state = 1902; + this.tableAlias(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 2032; + this.state = 1904; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2033; + this.state = 1905; this.query(); - this.state = 2034; + this.state = 1906; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7767,33 +7443,33 @@ export class SparkSqlParser extends SQLParserBase { } public sortItem(): SortItemContext { let localContext = new SortItemContext(this.context, this.state); - this.enterRule(localContext, 108, SparkSqlParser.RULE_sortItem); + this.enterRule(localContext, 88, SparkSqlParser.RULE_sortItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 1912; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2038; + this.state = 1910; this.columnName(); } break; case 2: { - this.state = 2039; + this.state = 1911; this.expression(); } break; } - this.state = 2043; + this.state = 1915; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2042; + this.state = 1914; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7806,14 +7482,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2047; + this.state = 1919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2045; + this.state = 1917; this.match(SparkSqlParser.KW_NULLS); - this.state = 2046; + this.state = 1918; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7842,140 +7518,95 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public fromStatement(): FromStatementContext { - let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 110, SparkSqlParser.RULE_fromStatement); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2049; - this.fromClause(); - this.state = 2051; - this.errorHandler.sync(this); - alternative = 1; - do { - switch (alternative) { - case 1: - { - { - this.state = 2050; - this.fromStatementBody(); - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 2053; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - } - } - 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 fromStatementBody(): FromStatementBodyContext { let localContext = new FromStatementBodyContext(this.context, this.state); - this.enterRule(localContext, 112, SparkSqlParser.RULE_fromStatementBody); + this.enterRule(localContext, 90, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 2082; + this.state = 1948; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 1921; this.transformClause(); - this.state = 2057; + this.state = 1923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 2056; + this.state = 1922; this.whereClause(); } break; } - this.state = 2059; + this.state = 1925; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2061; + this.state = 1927; this.selectClause(); - this.state = 2065; + this.state = 1931; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2062; + this.state = 1928; this.lateralView(); } } } - this.state = 2067; + this.state = 1933; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); } - this.state = 2069; + this.state = 1935; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2068; + this.state = 1934; this.whereClause(); } break; } - this.state = 2072; + this.state = 1938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 2071; + this.state = 1937; this.aggregationClause(); } break; } - this.state = 2075; + this.state = 1941; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2074; + this.state = 1940; this.havingClause(); } break; } - this.state = 2078; + this.state = 1944; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2077; + this.state = 1943; this.windowClause(); } break; } - this.state = 2080; + this.state = 1946; this.queryOrganization(); } break; @@ -7997,79 +7628,79 @@ export class SparkSqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 114, SparkSqlParser.RULE_querySpecification); + this.enterRule(localContext, 92, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2128; + this.state = 1994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 1950; this.transformClause(); - this.state = 2086; + this.state = 1952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2085; + this.state = 1951; this.fromClause(); } break; } - this.state = 2091; + this.state = 1957; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2088; + this.state = 1954; this.lateralView(); } } } - this.state = 2093; + this.state = 1959; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); } - this.state = 2095; + this.state = 1961; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2094; + this.state = 1960; this.whereClause(); } break; } - this.state = 2098; + this.state = 1964; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2097; + this.state = 1963; this.aggregationClause(); } break; } - this.state = 2101; + this.state = 1967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2100; + this.state = 1966; this.havingClause(); } break; } - this.state = 2104; + this.state = 1970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2103; + this.state = 1969; this.windowClause(); } break; @@ -8079,70 +7710,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2106; + this.state = 1972; this.selectClause(); - this.state = 2108; + this.state = 1974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2107; + this.state = 1973; this.fromClause(); } break; } - this.state = 2113; + this.state = 1979; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2110; + this.state = 1976; this.lateralView(); } } } - this.state = 2115; + this.state = 1981; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); } - this.state = 2117; + this.state = 1983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2116; + this.state = 1982; this.whereClause(); } break; } - this.state = 2120; + this.state = 1986; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2119; + this.state = 1985; this.aggregationClause(); } break; } - this.state = 2123; + this.state = 1989; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2122; + this.state = 1988; this.havingClause(); } break; } - this.state = 2126; + this.state = 1992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2125; + this.state = 1991; this.windowClause(); } break; @@ -8167,147 +7798,147 @@ export class SparkSqlParser extends SQLParserBase { } public transformClause(): TransformClauseContext { let localContext = new TransformClauseContext(this.context, this.state); - this.enterRule(localContext, 116, SparkSqlParser.RULE_transformClause); + this.enterRule(localContext, 94, SparkSqlParser.RULE_transformClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2015; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2130; + this.state = 1996; this.match(SparkSqlParser.KW_SELECT); - this.state = 2131; + this.state = 1997; localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2132; + this.state = 1998; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2134; + this.state = 2000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2133; + this.state = 1999; this.setQuantifier(); } break; } - this.state = 2136; + this.state = 2002; this.expressionSeq(); - this.state = 2137; + this.state = 2003; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2139; + this.state = 2005; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2141; + this.state = 2007; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2140; + this.state = 2006; this.setQuantifier(); } break; } - this.state = 2143; + this.state = 2009; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2144; + this.state = 2010; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2146; + this.state = 2012; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2145; + this.state = 2011; this.setQuantifier(); } break; } - this.state = 2148; + this.state = 2014; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2152; + this.state = 2018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 2151; + this.state = 2017; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2156; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 2154; + this.state = 2020; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2155; + this.state = 2021; localContext._recordWriter = this.stringLit(); } } - this.state = 2158; + this.state = 2024; this.match(SparkSqlParser.KW_USING); - this.state = 2159; + this.state = 2025; localContext._script = this.stringLit(); - this.state = 2172; + this.state = 2038; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2160; + this.state = 2026; this.match(SparkSqlParser.KW_AS); - this.state = 2170; + this.state = 2036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2161; + this.state = 2027; this.identifierSeq(); } break; case 2: { - this.state = 2162; + this.state = 2028; this.colTypeList(); } break; case 3: { { - this.state = 2163; + this.state = 2029; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2166; + this.state = 2032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2164; + this.state = 2030; this.identifierSeq(); } break; case 2: { - this.state = 2165; + this.state = 2031; this.colTypeList(); } break; } - this.state = 2168; + this.state = 2034; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8316,24 +7947,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2175; + this.state = 2041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2174; + this.state = 2040; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2179; + this.state = 2045; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2177; + this.state = 2043; this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2178; + this.state = 2044; localContext._recordReader = this.stringLit(); } break; @@ -8356,111 +7987,489 @@ export class SparkSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 118, SparkSqlParser.RULE_selectClause); + this.enterRule(localContext, 96, SparkSqlParser.RULE_selectClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2047; this.match(SparkSqlParser.KW_SELECT); - this.state = 2185; + this.state = 2051; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 268, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2182; - localContext._hint = this.hint(); - localContext._hints.push(localContext._hint); - } + this.state = 2048; + localContext._hint = this.hint(); + localContext._hints.push(localContext._hint); + } + } + } + this.state = 2053; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 268, this.context); + } + this.state = 2055; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { + case 1: + { + this.state = 2054; + this.setQuantifier(); + } + break; + } + this.state = 2057; + this.namedExpressionSeq(); + } + } + 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 setClause(): SetClauseContext { + let localContext = new SetClauseContext(this.context, this.state); + this.enterRule(localContext, 98, SparkSqlParser.RULE_setClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2059; + this.match(SparkSqlParser.KW_SET); + this.state = 2060; + this.assignmentList(); + } + } + 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 matchedClause(): MatchedClauseContext { + let localContext = new MatchedClauseContext(this.context, this.state); + this.enterRule(localContext, 100, SparkSqlParser.RULE_matchedClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2062; + this.match(SparkSqlParser.KW_WHEN); + this.state = 2063; + this.match(SparkSqlParser.KW_MATCHED); + this.state = 2066; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 14) { + { + this.state = 2064; + this.match(SparkSqlParser.KW_AND); + this.state = 2065; + localContext._matchedCond = this.booleanExpression(0); + } + } + + this.state = 2068; + this.match(SparkSqlParser.KW_THEN); + this.state = 2076; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_DELETE: + { + this.state = 2069; + this.match(SparkSqlParser.KW_DELETE); + } + break; + case SparkSqlParser.KW_UPDATE: + { + this.state = 2070; + this.match(SparkSqlParser.KW_UPDATE); + this.state = 2071; + this.match(SparkSqlParser.KW_SET); + this.state = 2074; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.ASTERISK: + { + this.state = 2072; + this.match(SparkSqlParser.ASTERISK); + } + break; + case SparkSqlParser.KW_ADD: + case SparkSqlParser.KW_AFTER: + case SparkSqlParser.KW_ALL: + case SparkSqlParser.KW_ALTER: + case SparkSqlParser.KW_ALWAYS: + case SparkSqlParser.KW_ANALYZE: + case SparkSqlParser.KW_AND: + case SparkSqlParser.KW_ANTI: + case SparkSqlParser.KW_ANY: + case SparkSqlParser.KW_ANY_VALUE: + case SparkSqlParser.KW_ARCHIVE: + case SparkSqlParser.KW_ARRAY: + case SparkSqlParser.KW_AS: + case SparkSqlParser.KW_ASC: + case SparkSqlParser.KW_AT: + case SparkSqlParser.KW_AUTHORIZATION: + case SparkSqlParser.KW_BETWEEN: + case SparkSqlParser.KW_BIGINT: + case SparkSqlParser.KW_BINARY: + case SparkSqlParser.KW_BOOLEAN: + case SparkSqlParser.KW_BOTH: + case SparkSqlParser.KW_BUCKET: + case SparkSqlParser.KW_BUCKETS: + case SparkSqlParser.KW_BY: + case SparkSqlParser.KW_BYTE: + case SparkSqlParser.KW_CACHE: + case SparkSqlParser.KW_CASCADE: + case SparkSqlParser.KW_CASE: + case SparkSqlParser.KW_CAST: + case SparkSqlParser.KW_CATALOG: + case SparkSqlParser.KW_CATALOGS: + case SparkSqlParser.KW_CHANGE: + case SparkSqlParser.KW_CHAR: + case SparkSqlParser.KW_CHARACTER: + case SparkSqlParser.KW_CHECK: + case SparkSqlParser.KW_CLEAR: + case SparkSqlParser.KW_CLUSTER: + case SparkSqlParser.KW_CLUSTERED: + case SparkSqlParser.KW_CODEGEN: + case SparkSqlParser.KW_COLLATE: + case SparkSqlParser.KW_COLLECTION: + case SparkSqlParser.KW_COLUMN: + case SparkSqlParser.KW_COLUMNS: + case SparkSqlParser.KW_COMMENT: + case SparkSqlParser.KW_COMMIT: + case SparkSqlParser.KW_COMPACT: + case SparkSqlParser.KW_COMPACTIONS: + case SparkSqlParser.KW_COMPUTE: + case SparkSqlParser.KW_CONCATENATE: + case SparkSqlParser.KW_CONSTRAINT: + case SparkSqlParser.KW_COST: + case SparkSqlParser.KW_CREATE: + case SparkSqlParser.KW_CROSS: + case SparkSqlParser.KW_CUBE: + case SparkSqlParser.KW_CURRENT: + case SparkSqlParser.KW_CURRENT_DATE: + case SparkSqlParser.KW_CURRENT_TIME: + case SparkSqlParser.KW_CURRENT_TIMESTAMP: + case SparkSqlParser.KW_CURRENT_USER: + case SparkSqlParser.KW_DAY: + case SparkSqlParser.KW_DAYS: + case SparkSqlParser.KW_DAYOFYEAR: + case SparkSqlParser.KW_DATA: + case SparkSqlParser.KW_DATE: + case SparkSqlParser.KW_DATABASE: + case SparkSqlParser.KW_DATABASES: + case SparkSqlParser.KW_DATEADD: + case SparkSqlParser.KW_DATE_ADD: + case SparkSqlParser.KW_DATEDIFF: + case SparkSqlParser.KW_DATE_DIFF: + case SparkSqlParser.KW_DBPROPERTIES: + case SparkSqlParser.KW_DEC: + case SparkSqlParser.KW_DECIMAL: + case SparkSqlParser.KW_DECLARE: + case SparkSqlParser.KW_DEFAULT: + case SparkSqlParser.KW_DEFINED: + case SparkSqlParser.KW_DELETE: + case SparkSqlParser.KW_DELIMITED: + case SparkSqlParser.KW_DESC: + case SparkSqlParser.KW_DESCRIBE: + case SparkSqlParser.KW_DFS: + case SparkSqlParser.KW_DIRECTORIES: + case SparkSqlParser.KW_DIRECTORY: + case SparkSqlParser.KW_DISABLE: + case SparkSqlParser.KW_DISTINCT: + case SparkSqlParser.KW_DISTRIBUTE: + case SparkSqlParser.KW_DIV: + case SparkSqlParser.KW_DOUBLE: + case SparkSqlParser.KW_DROP: + case SparkSqlParser.KW_ELSE: + case SparkSqlParser.KW_ENABLE: + case SparkSqlParser.KW_END: + case SparkSqlParser.KW_ESCAPE: + case SparkSqlParser.KW_ESCAPED: + case SparkSqlParser.KW_EXCEPT: + case SparkSqlParser.KW_EXCHANGE: + case SparkSqlParser.KW_EXCLUDE: + case SparkSqlParser.KW_EXISTS: + case SparkSqlParser.KW_EXPLAIN: + case SparkSqlParser.KW_EXPORT: + case SparkSqlParser.KW_EXTENDED: + case SparkSqlParser.KW_EXTERNAL: + case SparkSqlParser.KW_EXTRACT: + case SparkSqlParser.KW_FALSE: + case SparkSqlParser.KW_FETCH: + case SparkSqlParser.KW_FIELDS: + case SparkSqlParser.KW_FILTER: + case SparkSqlParser.KW_FILEFORMAT: + case SparkSqlParser.KW_FIRST: + case SparkSqlParser.KW_FLOAT: + case SparkSqlParser.KW_FOLLOWING: + case SparkSqlParser.KW_FOR: + case SparkSqlParser.KW_FOREIGN: + case SparkSqlParser.KW_FORMAT: + case SparkSqlParser.KW_FORMATTED: + case SparkSqlParser.KW_FULL: + case SparkSqlParser.KW_FUNCTION: + case SparkSqlParser.KW_FUNCTIONS: + case SparkSqlParser.KW_GENERATED: + case SparkSqlParser.KW_GLOBAL: + case SparkSqlParser.KW_GRANT: + case SparkSqlParser.KW_GROUP: + case SparkSqlParser.KW_GROUPING: + case SparkSqlParser.KW_HAVING: + case SparkSqlParser.KW_BINARY_HEX: + case SparkSqlParser.KW_HOUR: + case SparkSqlParser.KW_HOURS: + case SparkSqlParser.KW_IDENTIFIER: + case SparkSqlParser.KW_IF: + case SparkSqlParser.KW_IGNORE: + case SparkSqlParser.KW_IMPORT: + case SparkSqlParser.KW_IN: + case SparkSqlParser.KW_INCLUDE: + case SparkSqlParser.KW_INDEX: + case SparkSqlParser.KW_INDEXES: + case SparkSqlParser.KW_INNER: + case SparkSqlParser.KW_INPATH: + case SparkSqlParser.KW_INPUTFORMAT: + case SparkSqlParser.KW_INSERT: + case SparkSqlParser.KW_INTERSECT: + case SparkSqlParser.KW_INTERVAL: + case SparkSqlParser.KW_INT: + case SparkSqlParser.KW_INTEGER: + case SparkSqlParser.KW_INTO: + case SparkSqlParser.KW_IS: + case SparkSqlParser.KW_ITEMS: + case SparkSqlParser.KW_JOIN: + case SparkSqlParser.KW_KEYS: + case SparkSqlParser.KW_LAST: + case SparkSqlParser.KW_LATERAL: + case SparkSqlParser.KW_LAZY: + case SparkSqlParser.KW_LEADING: + case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: + case SparkSqlParser.KW_LIKE: + case SparkSqlParser.KW_ILIKE: + case SparkSqlParser.KW_LIMIT: + case SparkSqlParser.KW_LINES: + case SparkSqlParser.KW_LIST: + case SparkSqlParser.KW_LOAD: + case SparkSqlParser.KW_LOCAL: + case SparkSqlParser.KW_LOCATION: + case SparkSqlParser.KW_LOCK: + case SparkSqlParser.KW_LOCKS: + case SparkSqlParser.KW_LOGICAL: + case SparkSqlParser.KW_LONG: + case SparkSqlParser.KW_MACRO: + case SparkSqlParser.KW_MATERIALIZED: + case SparkSqlParser.KW_MAP: + case SparkSqlParser.KW_MATCHED: + case SparkSqlParser.KW_MERGE: + case SparkSqlParser.KW_MICROSECOND: + case SparkSqlParser.KW_MICROSECONDS: + case SparkSqlParser.KW_MILLISECOND: + case SparkSqlParser.KW_MILLISECONDS: + case SparkSqlParser.KW_MINUTE: + case SparkSqlParser.KW_MINUTES: + case SparkSqlParser.KW_MONTH: + case SparkSqlParser.KW_MONTHS: + case SparkSqlParser.KW_MSCK: + case SparkSqlParser.KW_NAME: + case SparkSqlParser.KW_NAMESPACE: + case SparkSqlParser.KW_NAMESPACES: + case SparkSqlParser.KW_NANOSECOND: + case SparkSqlParser.KW_NANOSECONDS: + case SparkSqlParser.KW_NATURAL: + case SparkSqlParser.KW_NO: + case SparkSqlParser.KW_NOT: + case SparkSqlParser.KW_NULL: + case SparkSqlParser.KW_NULLS: + case SparkSqlParser.KW_NUMERIC: + case SparkSqlParser.KW_OF: + case SparkSqlParser.KW_OFFSET: + case SparkSqlParser.KW_ON: + case SparkSqlParser.KW_ONLY: + case SparkSqlParser.KW_OPTIMIZE: + case SparkSqlParser.KW_OPTION: + case SparkSqlParser.KW_OPTIONS: + case SparkSqlParser.KW_OR: + case SparkSqlParser.KW_ORDER: + case SparkSqlParser.KW_OUT: + case SparkSqlParser.KW_OUTER: + case SparkSqlParser.KW_OUTPUTFORMAT: + case SparkSqlParser.KW_OVER: + case SparkSqlParser.KW_OVERLAPS: + case SparkSqlParser.KW_OVERLAY: + case SparkSqlParser.KW_OVERWRITE: + case SparkSqlParser.KW_PARTITION: + case SparkSqlParser.KW_PARTITIONED: + case SparkSqlParser.KW_PARTITIONS: + case SparkSqlParser.KW_PERCENTILE_CONT: + case SparkSqlParser.KW_PERCENTILE_DISC: + case SparkSqlParser.KW_PERCENTLIT: + case SparkSqlParser.KW_PIVOT: + case SparkSqlParser.KW_PLACING: + case SparkSqlParser.KW_POSITION: + case SparkSqlParser.KW_PRECEDING: + case SparkSqlParser.KW_PRIMARY: + case SparkSqlParser.KW_PRINCIPALS: + case SparkSqlParser.KW_PROPERTIES: + case SparkSqlParser.KW_PURGE: + case SparkSqlParser.KW_QUARTER: + case SparkSqlParser.KW_QUERY: + case SparkSqlParser.KW_RANGE: + case SparkSqlParser.KW_REAL: + case SparkSqlParser.KW_RECORDREADER: + case SparkSqlParser.KW_RECORDWRITER: + case SparkSqlParser.KW_RECOVER: + case SparkSqlParser.KW_REDUCE: + case SparkSqlParser.KW_REFERENCES: + case SparkSqlParser.KW_REFRESH: + case SparkSqlParser.KW_RENAME: + case SparkSqlParser.KW_REPAIR: + case SparkSqlParser.KW_REPEATABLE: + case SparkSqlParser.KW_REPLACE: + case SparkSqlParser.KW_RESET: + case SparkSqlParser.KW_RESPECT: + case SparkSqlParser.KW_RESTRICT: + case SparkSqlParser.KW_REWRITE: + case SparkSqlParser.KW_REVOKE: + case SparkSqlParser.KW_RIGHT: + case SparkSqlParser.KW_RLIKE: + case SparkSqlParser.KW_REGEXP: + case SparkSqlParser.KW_ROLE: + case SparkSqlParser.KW_ROLES: + case SparkSqlParser.KW_ROLLBACK: + case SparkSqlParser.KW_ROLLUP: + case SparkSqlParser.KW_ROW: + case SparkSqlParser.KW_ROWS: + case SparkSqlParser.KW_SECOND: + case SparkSqlParser.KW_SECONDS: + case SparkSqlParser.KW_SCHEMA: + case SparkSqlParser.KW_SCHEMAS: + case SparkSqlParser.KW_SEMI: + case SparkSqlParser.KW_SEPARATED: + case SparkSqlParser.KW_SERDE: + case SparkSqlParser.KW_SERDEPROPERTIES: + case SparkSqlParser.KW_SESSION_USER: + case SparkSqlParser.KW_SET: + case SparkSqlParser.KW_MINUS: + case SparkSqlParser.KW_SETS: + case SparkSqlParser.KW_SHORT: + case SparkSqlParser.KW_SHOW: + case SparkSqlParser.KW_SINGLE: + case SparkSqlParser.KW_SKEWED: + case SparkSqlParser.KW_SMALLINT: + case SparkSqlParser.KW_SOME: + case SparkSqlParser.KW_SORT: + case SparkSqlParser.KW_SORTED: + case SparkSqlParser.KW_SOURCE: + case SparkSqlParser.KW_START: + case SparkSqlParser.KW_STATISTICS: + case SparkSqlParser.KW_STORED: + case SparkSqlParser.KW_STRATIFY: + case SparkSqlParser.KW_STRING: + case SparkSqlParser.KW_STRUCT: + case SparkSqlParser.KW_SUBSTR: + case SparkSqlParser.KW_SUBSTRING: + case SparkSqlParser.KW_SYNC: + case SparkSqlParser.KW_SYSTEM: + case SparkSqlParser.KW_SYSTEM_TIME: + case SparkSqlParser.KW_SYSTEM_VERSION: + case SparkSqlParser.KW_TABLES: + case SparkSqlParser.KW_TABLESAMPLE: + case SparkSqlParser.KW_TARGET: + case SparkSqlParser.KW_TBLPROPERTIES: + case SparkSqlParser.KW_TEMPORARY: + case SparkSqlParser.KW_TERMINATED: + case SparkSqlParser.KW_THEN: + case SparkSqlParser.KW_TIME: + case SparkSqlParser.KW_TIMEDIFF: + case SparkSqlParser.KW_TIMESTAMP: + case SparkSqlParser.KW_TIMESTAMP_LTZ: + case SparkSqlParser.KW_TIMESTAMP_NTZ: + case SparkSqlParser.KW_TIMESTAMPADD: + case SparkSqlParser.KW_TIMESTAMPDIFF: + case SparkSqlParser.KW_TINYINT: + case SparkSqlParser.KW_TO: + case SparkSqlParser.KW_TOUCH: + case SparkSqlParser.KW_TRAILING: + case SparkSqlParser.KW_TRANSACTION: + case SparkSqlParser.KW_TRANSACTIONS: + case SparkSqlParser.KW_TRANSFORM: + case SparkSqlParser.KW_TRIM: + case SparkSqlParser.KW_TRUE: + case SparkSqlParser.KW_TRUNCATE: + case SparkSqlParser.KW_TRY_CAST: + case SparkSqlParser.KW_TYPE: + case SparkSqlParser.KW_UNARCHIVE: + case SparkSqlParser.KW_UNBOUNDED: + case SparkSqlParser.KW_UNCACHE: + case SparkSqlParser.KW_UNION: + case SparkSqlParser.KW_UNIQUE: + case SparkSqlParser.KW_UNKNOWN: + case SparkSqlParser.KW_UNLOCK: + case SparkSqlParser.KW_UNPIVOT: + case SparkSqlParser.KW_UNSET: + case SparkSqlParser.KW_UPDATE: + case SparkSqlParser.KW_USE: + case SparkSqlParser.KW_USER: + case SparkSqlParser.KW_USING: + case SparkSqlParser.KW_VALUES: + case SparkSqlParser.KW_VARCHAR: + case SparkSqlParser.KW_VAR: + case SparkSqlParser.KW_VARIABLE: + case SparkSqlParser.KW_VERSION: + case SparkSqlParser.KW_VIEW: + case SparkSqlParser.KW_VIEWS: + case SparkSqlParser.KW_VOID: + case SparkSqlParser.KW_WEEK: + case SparkSqlParser.KW_WEEKS: + case SparkSqlParser.KW_WHEN: + case SparkSqlParser.KW_WHERE: + case SparkSqlParser.KW_WINDOW: + case SparkSqlParser.KW_WITH: + case SparkSqlParser.KW_WITHIN: + case SparkSqlParser.KW_YEAR: + case SparkSqlParser.KW_YEARS: + case SparkSqlParser.KW_ZONE: + case SparkSqlParser.KW_ZORDER: + case SparkSqlParser.DOUBLEQUOTED_STRING: + case SparkSqlParser.IDENTIFIER: + case SparkSqlParser.BACKQUOTED_IDENTIFIER: + { + this.state = 2073; + this.assignmentList(); } + break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 2187; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); - } - this.state = 2189; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { - case 1: - { - this.state = 2188; - this.setQuantifier(); } break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 2191; - this.namedExpressionSeq(); - } - } - 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 setClause(): SetClauseContext { - let localContext = new SetClauseContext(this.context, this.state); - this.enterRule(localContext, 120, SparkSqlParser.RULE_setClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2193; - this.match(SparkSqlParser.KW_SET); - this.state = 2194; - this.assignmentList(); - } - } - 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 matchedClause(): MatchedClauseContext { - let localContext = new MatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 122, SparkSqlParser.RULE_matchedClause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2196; - this.match(SparkSqlParser.KW_WHEN); - this.state = 2197; - this.match(SparkSqlParser.KW_MATCHED); - this.state = 2200; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 14) { - { - this.state = 2198; - this.match(SparkSqlParser.KW_AND); - this.state = 2199; - localContext._matchedCond = this.booleanExpression(0); - } - } - - this.state = 2202; - this.match(SparkSqlParser.KW_THEN); - this.state = 2203; - this.matchedAction(); } } catch (re) { @@ -8479,44 +8488,44 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedClause(): NotMatchedClauseContext { let localContext = new NotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 124, SparkSqlParser.RULE_notMatchedClause); + this.enterRule(localContext, 102, SparkSqlParser.RULE_notMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2078; this.match(SparkSqlParser.KW_WHEN); - this.state = 2206; + this.state = 2079; this.match(SparkSqlParser.KW_NOT); - this.state = 2207; + this.state = 2080; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2210; + this.state = 2083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2208; + this.state = 2081; this.match(SparkSqlParser.KW_BY); - this.state = 2209; + this.state = 2082; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2214; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2212; + this.state = 2085; this.match(SparkSqlParser.KW_AND); - this.state = 2213; + this.state = 2086; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2216; + this.state = 2089; this.match(SparkSqlParser.KW_THEN); - this.state = 2217; + this.state = 2090; this.notMatchedAction(); } } @@ -8536,89 +8545,57 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedBySourceClause(): NotMatchedBySourceClauseContext { let localContext = new NotMatchedBySourceClauseContext(this.context, this.state); - this.enterRule(localContext, 126, SparkSqlParser.RULE_notMatchedBySourceClause); + this.enterRule(localContext, 104, SparkSqlParser.RULE_notMatchedBySourceClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2092; this.match(SparkSqlParser.KW_WHEN); - this.state = 2220; + this.state = 2093; this.match(SparkSqlParser.KW_NOT); - this.state = 2221; + this.state = 2094; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2222; + this.state = 2095; this.match(SparkSqlParser.KW_BY); - this.state = 2223; + this.state = 2096; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2226; + this.state = 2099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2224; + this.state = 2097; this.match(SparkSqlParser.KW_AND); - this.state = 2225; + this.state = 2098; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2228; + this.state = 2101; this.match(SparkSqlParser.KW_THEN); - this.state = 2229; - this.notMatchedBySourceAction(); - } - } - 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 matchedAction(): MatchedActionContext { - let localContext = new MatchedActionContext(this.context, this.state); - this.enterRule(localContext, 128, SparkSqlParser.RULE_matchedAction); - try { - this.state = 2238; + this.state = 2106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_DELETE: { - this.state = 2231; + this.state = 2102; this.match(SparkSqlParser.KW_DELETE); } break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2232; - this.match(SparkSqlParser.KW_UPDATE); - this.state = 2233; - this.match(SparkSqlParser.KW_SET); - this.state = 2234; - this.match(SparkSqlParser.ASTERISK); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); + case SparkSqlParser.KW_UPDATE: { - this.state = 2235; + this.state = 2103; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2236; + this.state = 2104; this.match(SparkSqlParser.KW_SET); - this.state = 2237; + this.state = 2105; this.assignmentList(); } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -8637,55 +8614,55 @@ export class SparkSqlParser extends SQLParserBase { } public notMatchedAction(): NotMatchedActionContext { let localContext = new NotMatchedActionContext(this.context, this.state); - this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedAction); + this.enterRule(localContext, 106, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2258; + this.state = 2126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2108; this.match(SparkSqlParser.KW_INSERT); - this.state = 2241; + this.state = 2109; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2110; this.match(SparkSqlParser.KW_INSERT); - this.state = 2243; + this.state = 2111; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2244; + this.state = 2112; this.multipartIdentifierList(); - this.state = 2245; + this.state = 2113; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2246; + this.state = 2114; this.match(SparkSqlParser.KW_VALUES); - this.state = 2247; + this.state = 2115; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2248; + this.state = 2116; this.expression(); - this.state = 2253; + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2249; + this.state = 2117; this.match(SparkSqlParser.COMMA); - this.state = 2250; + this.state = 2118; this.expression(); } } - this.state = 2255; + this.state = 2123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2256; + this.state = 2124; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8705,71 +8682,28 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public notMatchedBySourceAction(): NotMatchedBySourceActionContext { - let localContext = new NotMatchedBySourceActionContext(this.context, this.state); - this.enterRule(localContext, 132, SparkSqlParser.RULE_notMatchedBySourceAction); - try { - this.state = 2264; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.KW_DELETE: - this.enterOuterAlt(localContext, 1); - { - this.state = 2260; - this.match(SparkSqlParser.KW_DELETE); - } - break; - case SparkSqlParser.KW_UPDATE: - this.enterOuterAlt(localContext, 2); - { - this.state = 2261; - this.match(SparkSqlParser.KW_UPDATE); - this.state = 2262; - this.match(SparkSqlParser.KW_SET); - this.state = 2263; - this.assignmentList(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - 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 assignmentList(): AssignmentListContext { let localContext = new AssignmentListContext(this.context, this.state); - this.enterRule(localContext, 134, SparkSqlParser.RULE_assignmentList); + this.enterRule(localContext, 108, SparkSqlParser.RULE_assignmentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2266; + this.state = 2128; this.assignment(); - this.state = 2271; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2267; + this.state = 2129; this.match(SparkSqlParser.COMMA); - this.state = 2268; + this.state = 2130; this.assignment(); } } - this.state = 2273; + this.state = 2135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8791,15 +8725,15 @@ export class SparkSqlParser extends SQLParserBase { } public assignment(): AssignmentContext { let localContext = new AssignmentContext(this.context, this.state); - this.enterRule(localContext, 136, SparkSqlParser.RULE_assignment); + this.enterRule(localContext, 110, SparkSqlParser.RULE_assignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2136; localContext._key = this.multipartIdentifier(); - this.state = 2275; + this.state = 2137; this.match(SparkSqlParser.EQ); - this.state = 2276; + this.state = 2138; localContext._value = this.expression(); } } @@ -8819,13 +8753,13 @@ export class SparkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 138, SparkSqlParser.RULE_whereClause); + this.enterRule(localContext, 112, SparkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2278; + this.state = 2140; this.match(SparkSqlParser.KW_WHERE); - this.state = 2279; + this.state = 2141; this.booleanExpression(0); } } @@ -8845,13 +8779,13 @@ export class SparkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 140, SparkSqlParser.RULE_havingClause); + this.enterRule(localContext, 114, SparkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2143; this.match(SparkSqlParser.KW_HAVING); - this.state = 2282; + this.state = 2144; this.booleanExpression(0); } } @@ -8871,42 +8805,42 @@ export class SparkSqlParser extends SQLParserBase { } public hint(): HintContext { let localContext = new HintContext(this.context, this.state); - this.enterRule(localContext, 142, SparkSqlParser.RULE_hint); + this.enterRule(localContext, 116, SparkSqlParser.RULE_hint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2284; + this.state = 2146; this.match(SparkSqlParser.HENT_START); - this.state = 2285; + this.state = 2147; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2292; + this.state = 2154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2287; + this.state = 2149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2286; + this.state = 2148; this.match(SparkSqlParser.COMMA); } } - this.state = 2289; + this.state = 2151; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2294; + this.state = 2156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2295; + this.state = 2157; this.match(SparkSqlParser.HENT_END); } } @@ -8926,47 +8860,47 @@ export class SparkSqlParser extends SQLParserBase { } public hintStatement(): HintStatementContext { let localContext = new HintStatementContext(this.context, this.state); - this.enterRule(localContext, 144, SparkSqlParser.RULE_hintStatement); + this.enterRule(localContext, 118, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2310; + this.state = 2172; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2159; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2298; + this.state = 2160; localContext._hintName = this.identifier(); - this.state = 2299; + this.state = 2161; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2300; + this.state = 2162; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2305; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2301; + this.state = 2163; this.match(SparkSqlParser.COMMA); - this.state = 2302; + this.state = 2164; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2307; + this.state = 2169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2308; + this.state = 2170; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8988,65 +8922,65 @@ export class SparkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 146, SparkSqlParser.RULE_fromClause); + this.enterRule(localContext, 120, SparkSqlParser.RULE_fromClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2174; this.match(SparkSqlParser.KW_FROM); - this.state = 2313; + this.state = 2175; this.relation(); - this.state = 2318; + this.state = 2180; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2314; + this.state = 2176; this.match(SparkSqlParser.COMMA); - this.state = 2315; + this.state = 2177; this.relation(); } } } - this.state = 2320; + this.state = 2182; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); } - this.state = 2324; + this.state = 2186; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 285, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2321; + this.state = 2183; this.lateralView(); } } } - this.state = 2326; + this.state = 2188; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 285, this.context); } - this.state = 2328; + this.state = 2190; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 286, this.context) ) { case 1: { - this.state = 2327; + this.state = 2189; this.pivotClause(); } break; } - this.state = 2331; + this.state = 2193; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: { - this.state = 2330; + this.state = 2192; this.unpivotClause(); } break; @@ -9067,60 +9001,28 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public functionKind(): FunctionKindContext { - let localContext = new FunctionKindContext(this.context, this.state); - this.enterRule(localContext, 148, SparkSqlParser.RULE_functionKind); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2333; - _la = this.tokenStream.LA(1); - if(!(_la === 10 || _la === 290 || _la === 331)) { - 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 temporalClause(): TemporalClauseContext { let localContext = new TemporalClauseContext(this.context, this.state); - this.enterRule(localContext, 150, SparkSqlParser.RULE_temporalClause); + this.enterRule(localContext, 122, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2349; + this.state = 2212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2336; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2335; + this.state = 2195; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2338; + this.state = 2198; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -9129,28 +9031,45 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2339; + this.state = 2199; this.match(SparkSqlParser.KW_AS); - this.state = 2340; + this.state = 2200; this.match(SparkSqlParser.KW_OF); - this.state = 2341; - this.version(); + this.state = 2203; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.INTEGER_VALUE: + { + this.state = 2201; + this.match(SparkSqlParser.INTEGER_VALUE); + } + break; + case SparkSqlParser.STRING_LITERAL: + case SparkSqlParser.DOUBLEQUOTED_STRING: + { + this.state = 2202; + this.stringLit(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2343; + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2342; + this.state = 2205; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2345; + this.state = 2208; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 303)) { this.errorHandler.recoverInline(this); @@ -9159,11 +9078,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2346; + this.state = 2209; this.match(SparkSqlParser.KW_AS); - this.state = 2347; + this.state = 2210; this.match(SparkSqlParser.KW_OF); - this.state = 2348; + this.state = 2211; localContext._timestamp = this.valueExpression(0); } break; @@ -9185,119 +9104,119 @@ export class SparkSqlParser extends SQLParserBase { } public aggregationClause(): AggregationClauseContext { let localContext = new AggregationClauseContext(this.context, this.state); - this.enterRule(localContext, 152, SparkSqlParser.RULE_aggregationClause); + this.enterRule(localContext, 124, SparkSqlParser.RULE_aggregationClause); let _la: number; try { let alternative: number; - this.state = 2390; + this.state = 2253; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2214; this.match(SparkSqlParser.KW_GROUP); - this.state = 2352; + this.state = 2215; this.match(SparkSqlParser.KW_BY); - this.state = 2353; + this.state = 2216; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2358; + this.state = 2221; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 292, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2354; + this.state = 2217; this.match(SparkSqlParser.COMMA); - this.state = 2355; + this.state = 2218; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2360; + this.state = 2223; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 292, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2361; + this.state = 2224; this.match(SparkSqlParser.KW_GROUP); - this.state = 2362; + this.state = 2225; this.match(SparkSqlParser.KW_BY); - this.state = 2363; + this.state = 2226; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2368; + this.state = 2231; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2364; + this.state = 2227; this.match(SparkSqlParser.COMMA); - this.state = 2365; + this.state = 2228; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2370; + this.state = 2233; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } - this.state = 2388; + this.state = 2251; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2371; + this.state = 2234; this.match(SparkSqlParser.KW_WITH); - this.state = 2372; + this.state = 2235; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2373; + this.state = 2236; this.match(SparkSqlParser.KW_WITH); - this.state = 2374; + this.state = 2237; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2375; + this.state = 2238; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2376; + this.state = 2239; this.match(SparkSqlParser.KW_SETS); - this.state = 2377; + this.state = 2240; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2378; + this.state = 2241; this.groupingSet(); - this.state = 2383; + this.state = 2246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2379; + this.state = 2242; this.match(SparkSqlParser.COMMA); - this.state = 2380; + this.state = 2243; this.groupingSet(); } } - this.state = 2385; + this.state = 2248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2386; + this.state = 2249; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9322,29 +9241,29 @@ export class SparkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 154, SparkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 126, SparkSqlParser.RULE_groupByClause); try { - this.state = 2395; + this.state = 2258; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2392; + this.state = 2255; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2393; + this.state = 2256; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2394; + this.state = 2257; this.expression(); } break; @@ -9366,17 +9285,17 @@ export class SparkSqlParser extends SQLParserBase { } public groupingAnalytics(): GroupingAnalyticsContext { let localContext = new GroupingAnalyticsContext(this.context, this.state); - this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingAnalytics); + this.enterRule(localContext, 128, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2422; + this.state = 2291; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2260; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); @@ -9385,58 +9304,86 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2398; + this.state = 2261; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2399; + this.state = 2262; this.groupingSet(); - this.state = 2404; + this.state = 2267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2400; + this.state = 2263; this.match(SparkSqlParser.COMMA); - this.state = 2401; + this.state = 2264; this.groupingSet(); } } - this.state = 2406; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2407; + this.state = 2270; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2409; + this.state = 2272; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2410; + this.state = 2273; this.match(SparkSqlParser.KW_SETS); - this.state = 2411; + this.state = 2274; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2412; - this.groupingElement(); - this.state = 2417; + this.state = 2277; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + case 1: + { + this.state = 2275; + this.groupingAnalytics(); + } + break; + case 2: + { + this.state = 2276; + this.groupingSet(); + } + break; + } + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2413; + this.state = 2279; this.match(SparkSqlParser.COMMA); - this.state = 2414; - this.groupingElement(); + this.state = 2282; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + case 1: + { + this.state = 2280; + this.groupingAnalytics(); + } + break; + case 2: + { + this.state = 2281; + this.groupingSet(); + } + break; + } } } - this.state = 2419; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2420; + this.state = 2289; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9458,125 +9405,88 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public groupingElement(): GroupingElementContext { - let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingElement); - try { - this.state = 2426; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2424; - this.groupingAnalytics(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2425; - this.groupingSet(); - } - 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 groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 160, SparkSqlParser.RULE_groupingSet); + this.enterRule(localContext, 130, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2448; + this.state = 2313; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2428; + this.state = 2293; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2429; + this.state = 2294; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2430; + this.state = 2295; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2445; + this.state = 2310; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2433; + this.state = 2298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2431; + this.state = 2296; this.columnName(); } break; case 2: { - this.state = 2432; + this.state = 2297; this.expression(); } break; } - this.state = 2442; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2435; + this.state = 2300; this.match(SparkSqlParser.COMMA); - this.state = 2438; + this.state = 2303; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2436; + this.state = 2301; this.columnName(); } break; case 2: { - this.state = 2437; + this.state = 2302; this.expression(); } break; } } } - this.state = 2444; + this.state = 2309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2447; + this.state = 2312; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9598,48 +9508,48 @@ export class SparkSqlParser extends SQLParserBase { } public pivotClause(): PivotClauseContext { let localContext = new PivotClauseContext(this.context, this.state); - this.enterRule(localContext, 162, SparkSqlParser.RULE_pivotClause); + this.enterRule(localContext, 132, SparkSqlParser.RULE_pivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2450; + this.state = 2315; this.match(SparkSqlParser.KW_PIVOT); - this.state = 2451; + this.state = 2316; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2452; + this.state = 2317; localContext._aggregates = this.namedExpressionSeq(); - this.state = 2453; + this.state = 2318; this.match(SparkSqlParser.KW_FOR); - this.state = 2454; + this.state = 2319; this.pivotColumn(); - this.state = 2455; + this.state = 2320; this.match(SparkSqlParser.KW_IN); - this.state = 2456; + this.state = 2321; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2457; + this.state = 2322; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2462; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2458; + this.state = 2323; this.match(SparkSqlParser.COMMA); - this.state = 2459; + this.state = 2324; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2464; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2465; + this.state = 2330; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2466; + this.state = 2331; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9659,10 +9569,10 @@ export class SparkSqlParser extends SQLParserBase { } public pivotColumn(): PivotColumnContext { let localContext = new PivotColumnContext(this.context, this.state); - this.enterRule(localContext, 164, SparkSqlParser.RULE_pivotColumn); + this.enterRule(localContext, 134, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2480; + this.state = 2345; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10010,7 +9920,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2468; + this.state = 2333; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -10018,29 +9928,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2469; + this.state = 2334; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2470; + this.state = 2335; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2475; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2471; + this.state = 2336; this.match(SparkSqlParser.COMMA); - this.state = 2472; + this.state = 2337; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2477; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2478; + this.state = 2343; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10064,29 +9974,29 @@ export class SparkSqlParser extends SQLParserBase { } public pivotValue(): PivotValueContext { let localContext = new PivotValueContext(this.context, this.state); - this.enterRule(localContext, 166, SparkSqlParser.RULE_pivotValue); + this.enterRule(localContext, 136, SparkSqlParser.RULE_pivotValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2347; this.expression(); - this.state = 2487; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2484; + this.state = 2349; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2483; + this.state = 2348; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2486; + this.state = 2351; this.identifier(); } } @@ -10109,106 +10019,35 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotClause(): UnpivotClauseContext { let localContext = new UnpivotClauseContext(this.context, this.state); - this.enterRule(localContext, 168, SparkSqlParser.RULE_unpivotClause); + this.enterRule(localContext, 138, SparkSqlParser.RULE_unpivotClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2489; + this.state = 2354; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2491; + this.state = 2357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2490; - localContext._nullOperator = this.unpivotNullClause(); + this.state = 2355; + _la = this.tokenStream.LA(1); + if(!(_la === 104 || _la === 141)) { + this.errorHandler.recoverInline(this); } - } - - this.state = 2493; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2494; - localContext._operator = this.unpivotOperator(); - this.state = 2495; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2500; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { - case 1: - { - this.state = 2497; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { - case 1: - { - this.state = 2496; - this.match(SparkSqlParser.KW_AS); - } - break; + else { + this.errorHandler.reportMatch(this); + this.consume(); } - this.state = 2499; - this.identifier(); + this.state = 2356; + this.match(SparkSqlParser.KW_NULLS); } - 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 unpivotNullClause(): UnpivotNullClauseContext { - let localContext = new UnpivotNullClauseContext(this.context, this.state); - this.enterRule(localContext, 170, SparkSqlParser.RULE_unpivotNullClause); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2502; - _la = this.tokenStream.LA(1); - if(!(_la === 104 || _la === 141)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 2503; - this.match(SparkSqlParser.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 unpivotOperator(): UnpivotOperatorContext { - let localContext = new UnpivotOperatorContext(this.context, this.state); - this.enterRule(localContext, 172, SparkSqlParser.RULE_unpivotOperator); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2507; + + this.state = 2359; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2362; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10555,19 +10394,41 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2505; + this.state = 2360; this.unpivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2506; + this.state = 2361; this.unpivotMultiValueColumnClause(); } break; default: throw new antlr.NoViableAltException(this); } + this.state = 2364; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2369; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + case 1: + { + this.state = 2366; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + case 1: + { + this.state = 2365; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2368; + this.identifier(); + } + break; + } } } catch (re) { @@ -10586,42 +10447,42 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotSingleValueColumnClause(): UnpivotSingleValueColumnClauseContext { let localContext = new UnpivotSingleValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 174, SparkSqlParser.RULE_unpivotSingleValueColumnClause); + this.enterRule(localContext, 140, SparkSqlParser.RULE_unpivotSingleValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2509; - this.unpivotValueColumn(); - this.state = 2510; + this.state = 2371; + this.identifier(); + this.state = 2372; this.match(SparkSqlParser.KW_FOR); - this.state = 2511; - this.unpivotNameColumn(); - this.state = 2512; + this.state = 2373; + this.identifier(); + this.state = 2374; this.match(SparkSqlParser.KW_IN); - this.state = 2513; + this.state = 2375; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2514; + this.state = 2376; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); - this.state = 2519; + this.state = 2381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2515; + this.state = 2377; this.match(SparkSqlParser.COMMA); - this.state = 2516; + this.state = 2378; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); } } - this.state = 2521; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2522; + this.state = 2384; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10641,64 +10502,64 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotMultiValueColumnClause(): UnpivotMultiValueColumnClauseContext { let localContext = new UnpivotMultiValueColumnClauseContext(this.context, this.state); - this.enterRule(localContext, 176, SparkSqlParser.RULE_unpivotMultiValueColumnClause); + this.enterRule(localContext, 142, SparkSqlParser.RULE_unpivotMultiValueColumnClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2524; + this.state = 2386; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2525; - localContext._unpivotValueColumn = this.unpivotValueColumn(); - localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); - this.state = 2530; + this.state = 2387; + localContext._identifier = this.identifier(); + localContext._unpivotValueColumns.push(localContext._identifier); + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2526; + this.state = 2388; this.match(SparkSqlParser.COMMA); - this.state = 2527; - localContext._unpivotValueColumn = this.unpivotValueColumn(); - localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); + this.state = 2389; + localContext._identifier = this.identifier(); + localContext._unpivotValueColumns.push(localContext._identifier); } } - this.state = 2532; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2533; + this.state = 2395; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2534; + this.state = 2396; this.match(SparkSqlParser.KW_FOR); - this.state = 2535; - this.unpivotNameColumn(); - this.state = 2536; + this.state = 2397; + this.identifier(); + this.state = 2398; this.match(SparkSqlParser.KW_IN); - this.state = 2537; + this.state = 2399; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2538; + this.state = 2400; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); - this.state = 2543; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2539; + this.state = 2401; this.match(SparkSqlParser.COMMA); - this.state = 2540; + this.state = 2402; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); } } - this.state = 2545; + this.state = 2407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2546; + this.state = 2408; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10718,125 +10579,52 @@ export class SparkSqlParser extends SQLParserBase { } public unpivotColumnSet(): UnpivotColumnSetContext { let localContext = new UnpivotColumnSetContext(this.context, this.state); - this.enterRule(localContext, 178, SparkSqlParser.RULE_unpivotColumnSet); + this.enterRule(localContext, 144, SparkSqlParser.RULE_unpivotColumnSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2548; + this.state = 2410; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2549; - localContext._unpivotColumn = this.unpivotColumn(); - localContext._unpivotColumns.push(localContext._unpivotColumn); - this.state = 2554; + this.state = 2411; + localContext._multipartIdentifier = this.multipartIdentifier(); + localContext._unpivotColumns.push(localContext._multipartIdentifier); + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2550; + this.state = 2412; this.match(SparkSqlParser.COMMA); - this.state = 2551; - localContext._unpivotColumn = this.unpivotColumn(); - localContext._unpivotColumns.push(localContext._unpivotColumn); + this.state = 2413; + localContext._multipartIdentifier = this.multipartIdentifier(); + localContext._unpivotColumns.push(localContext._multipartIdentifier); } } - this.state = 2556; + this.state = 2418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2557; + this.state = 2419; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2559; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { - { - this.state = 2558; - this.unpivotAlias(); - } - } - - } - } - 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 unpivotValueColumn(): UnpivotValueColumnContext { - let localContext = new UnpivotValueColumnContext(this.context, this.state); - this.enterRule(localContext, 180, SparkSqlParser.RULE_unpivotValueColumn); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2561; - this.identifier(); - } - } - 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 unpivotNameColumn(): UnpivotNameColumnContext { - let localContext = new UnpivotNameColumnContext(this.context, this.state); - this.enterRule(localContext, 182, SparkSqlParser.RULE_unpivotNameColumn); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2563; - this.identifier(); - } - } - 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 unpivotColumnAndAlias(): UnpivotColumnAndAliasContext { - let localContext = new UnpivotColumnAndAliasContext(this.context, this.state); - this.enterRule(localContext, 184, SparkSqlParser.RULE_unpivotColumnAndAlias); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2565; - this.unpivotColumn(); - this.state = 2567; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2566; - this.unpivotAlias(); + this.state = 2421; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + case 1: + { + this.state = 2420; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2423; + this.identifier(); } } @@ -10856,48 +10644,35 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public unpivotColumn(): UnpivotColumnContext { - let localContext = new UnpivotColumnContext(this.context, this.state); - this.enterRule(localContext, 186, SparkSqlParser.RULE_unpivotColumn); + public unpivotColumnAndAlias(): UnpivotColumnAndAliasContext { + let localContext = new UnpivotColumnAndAliasContext(this.context, this.state); + this.enterRule(localContext, 146, SparkSqlParser.RULE_unpivotColumnAndAlias); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2426; this.multipartIdentifier(); - } - } - 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 unpivotAlias(): UnpivotAliasContext { - let localContext = new UnpivotAliasContext(this.context, this.state); - this.enterRule(localContext, 188, SparkSqlParser.RULE_unpivotAlias); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2572; + this.state = 2431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2571; - this.match(SparkSqlParser.KW_AS); + this.state = 2428; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + case 1: + { + this.state = 2427; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2430; + this.identifier(); } - break; } - this.state = 2574; - this.identifier(); + } } catch (re) { @@ -10916,15 +10691,15 @@ export class SparkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 190, SparkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 148, SparkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2433; this.match(SparkSqlParser.KW_IF); - this.state = 2577; + this.state = 2434; this.match(SparkSqlParser.KW_NOT); - this.state = 2578; + this.state = 2435; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10944,13 +10719,13 @@ export class SparkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 192, SparkSqlParser.RULE_ifExists); + this.enterRule(localContext, 150, SparkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2437; this.match(SparkSqlParser.KW_IF); - this.state = 2581; + this.state = 2438; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10970,96 +10745,96 @@ export class SparkSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 194, SparkSqlParser.RULE_lateralView); + this.enterRule(localContext, 152, SparkSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2440; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2584; + this.state = 2441; this.match(SparkSqlParser.KW_VIEW); - this.state = 2586; + this.state = 2443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2585; + this.state = 2442; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2588; + this.state = 2445; this.viewName(); - this.state = 2589; + this.state = 2446; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2598; + this.state = 2455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2590; + this.state = 2447; this.expression(); - this.state = 2595; + this.state = 2452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2591; + this.state = 2448; this.match(SparkSqlParser.COMMA); - this.state = 2592; + this.state = 2449; this.expression(); } } - this.state = 2597; + this.state = 2454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2600; + this.state = 2457; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2601; + this.state = 2458; this.tableAlias(); - this.state = 2613; + this.state = 2470; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2603; + this.state = 2460; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2602; + this.state = 2459; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2605; + this.state = 2462; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2610; + this.state = 2467; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 329, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2606; + this.state = 2463; this.match(SparkSqlParser.COMMA); - this.state = 2607; + this.state = 2464; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2612; + this.state = 2469; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 329, this.context); } } break; @@ -11082,12 +10857,12 @@ export class SparkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 196, SparkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 154, SparkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2472; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11114,106 +10889,80 @@ export class SparkSqlParser extends SQLParserBase { } public relation(): RelationContext { let localContext = new RelationContext(this.context, this.state); - this.enterRule(localContext, 198, SparkSqlParser.RULE_relation); + this.enterRule(localContext, 156, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2628; + this.state = 2487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2474; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2619; + this.state = 2476; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2618; + this.state = 2475; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2621; + this.state = 2478; this.relationPrimary(); - this.state = 2625; + this.state = 2484; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 333, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - { - this.state = 2622; - this.relationExtension(); + this.state = 2482; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_ANTI: + case SparkSqlParser.KW_CROSS: + case SparkSqlParser.KW_FULL: + case SparkSqlParser.KW_INNER: + case SparkSqlParser.KW_JOIN: + case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_NATURAL: + case SparkSqlParser.KW_RIGHT: + case SparkSqlParser.KW_SEMI: + { + this.state = 2479; + this.joinRelation(); + } + break; + case SparkSqlParser.KW_PIVOT: + { + this.state = 2480; + this.pivotClause(); + } + break; + case SparkSqlParser.KW_UNPIVOT: + { + this.state = 2481; + this.unpivotClause(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } } - this.state = 2627; + this.state = 2486; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); - } - } - 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 relationExtension(): RelationExtensionContext { - let localContext = new RelationExtensionContext(this.context, this.state); - this.enterRule(localContext, 200, SparkSqlParser.RULE_relationExtension); - try { - this.state = 2633; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.KW_ANTI: - case SparkSqlParser.KW_CROSS: - case SparkSqlParser.KW_FULL: - case SparkSqlParser.KW_INNER: - case SparkSqlParser.KW_JOIN: - case SparkSqlParser.KW_LEFT: - case SparkSqlParser.KW_NATURAL: - case SparkSqlParser.KW_RIGHT: - case SparkSqlParser.KW_SEMI: - this.enterOuterAlt(localContext, 1); - { - this.state = 2630; - this.joinRelation(); - } - break; - case SparkSqlParser.KW_PIVOT: - this.enterOuterAlt(localContext, 2); - { - this.state = 2631; - this.pivotClause(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 333, this.context); } - break; - case SparkSqlParser.KW_UNPIVOT: - this.enterOuterAlt(localContext, 3); - { - this.state = 2632; - this.unpivotClause(); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -11232,9 +10981,9 @@ export class SparkSqlParser extends SQLParserBase { } public joinRelation(): JoinRelationContext { let localContext = new JoinRelationContext(this.context, this.state); - this.enterRule(localContext, 202, SparkSqlParser.RULE_joinRelation); + this.enterRule(localContext, 158, SparkSqlParser.RULE_joinRelation); try { - this.state = 2652; + this.state = 2506; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11248,29 +10997,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2635; + this.state = 2489; this.joinType(); } - this.state = 2636; + this.state = 2490; this.match(SparkSqlParser.KW_JOIN); - this.state = 2638; + this.state = 2492; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 335, this.context) ) { case 1: { - this.state = 2637; + this.state = 2491; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2640; + this.state = 2494; localContext._right = this.relationPrimary(); - this.state = 2642; + this.state = 2496; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2641; + this.state = 2495; this.joinCriteria(); } break; @@ -11280,23 +11029,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2644; + this.state = 2498; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2645; + this.state = 2499; this.joinType(); - this.state = 2646; + this.state = 2500; this.match(SparkSqlParser.KW_JOIN); - this.state = 2648; + this.state = 2502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { case 1: { - this.state = 2647; + this.state = 2501; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2650; + this.state = 2504; localContext._right = this.relationPrimary(); } break; @@ -11320,21 +11069,21 @@ export class SparkSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 204, SparkSqlParser.RULE_joinType); + this.enterRule(localContext, 160, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2678; + this.state = 2524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2655; + this.state = 2509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2654; + this.state = 2508; this.match(SparkSqlParser.KW_INNER); } } @@ -11344,21 +11093,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2657; + this.state = 2511; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2658; + this.state = 2512; this.match(SparkSqlParser.KW_LEFT); - this.state = 2660; + this.state = 2514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2659; + this.state = 2513; this.match(SparkSqlParser.KW_OUTER); } } @@ -11368,69 +11117,49 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2663; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2662; + this.state = 2516; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2665; - this.match(SparkSqlParser.KW_SEMI); + this.state = 2519; + _la = this.tokenStream.LA(1); + if(!(_la === 15 || _la === 264)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2666; - this.match(SparkSqlParser.KW_RIGHT); - this.state = 2668; - this.errorHandler.sync(this); + this.state = 2520; _la = this.tokenStream.LA(1); - if (_la === 211) { - { - this.state = 2667; - this.match(SparkSqlParser.KW_OUTER); - } + if(!(_la === 124 || _la === 250)) { + this.errorHandler.recoverInline(this); } - + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 2670; - this.match(SparkSqlParser.KW_FULL); - this.state = 2672; + this.state = 2522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2671; + this.state = 2521; this.match(SparkSqlParser.KW_OUTER); } } - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 2675; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 161) { - { - this.state = 2674; - this.match(SparkSqlParser.KW_LEFT); - } - } - - this.state = 2677; - this.match(SparkSqlParser.KW_ANTI); } break; } @@ -11451,26 +11180,26 @@ export class SparkSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 206, SparkSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 162, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2684; + this.state = 2530; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2526; this.match(SparkSqlParser.KW_ON); - this.state = 2681; + this.state = 2527; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2682; + this.state = 2528; this.match(SparkSqlParser.KW_USING); - this.state = 2683; + this.state = 2529; this.identifierList(); } break; @@ -11494,39 +11223,39 @@ export class SparkSqlParser extends SQLParserBase { } public sample(): SampleContext { let localContext = new SampleContext(this.context, this.state); - this.enterRule(localContext, 208, SparkSqlParser.RULE_sample); + this.enterRule(localContext, 164, SparkSqlParser.RULE_sample); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2532; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2687; + this.state = 2533; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2689; + this.state = 2535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2688; + this.state = 2534; this.sampleMethod(); } } - this.state = 2691; + this.state = 2537; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2696; + this.state = 2542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2692; + this.state = 2538; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2693; + this.state = 2539; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2694; + this.state = 2540; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2695; + this.state = 2541; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11549,26 +11278,26 @@ export class SparkSqlParser extends SQLParserBase { } public sampleMethod(): SampleMethodContext { let localContext = new SampleMethodContext(this.context, this.state); - this.enterRule(localContext, 210, SparkSqlParser.RULE_sampleMethod); + this.enterRule(localContext, 166, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2722; + this.state = 2568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 350, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 2698; + this.state = 2544; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2701; + this.state = 2547; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 384)) { @@ -11578,55 +11307,55 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2702; + this.state = 2548; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2703; + this.state = 2549; this.expression(); - this.state = 2704; + this.state = 2550; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2706; + this.state = 2552; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2707; + this.state = 2553; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2708; + this.state = 2554; this.match(SparkSqlParser.KW_OUT); - this.state = 2709; + this.state = 2555; this.match(SparkSqlParser.KW_OF); - this.state = 2710; + this.state = 2556; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2719; + this.state = 2565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2711; + this.state = 2557; this.match(SparkSqlParser.KW_ON); - this.state = 2717; + this.state = 2563; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: { - this.state = 2712; + this.state = 2558; this.identifier(); } break; case 2: { - this.state = 2713; + this.state = 2559; this.qualifiedName(); - this.state = 2714; + this.state = 2560; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2715; + this.state = 2561; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11639,7 +11368,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2721; + this.state = 2567; localContext._bytes = this.expression(); } break; @@ -11661,15 +11390,15 @@ export class SparkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 212, SparkSqlParser.RULE_identifierList); + this.enterRule(localContext, 168, SparkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2570; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2725; + this.state = 2571; this.identifierSeq(); - this.state = 2726; + this.state = 2572; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11689,32 +11418,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 214, SparkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 170, SparkSqlParser.RULE_identifierSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2574; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2733; + this.state = 2579; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 351, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2729; + this.state = 2575; this.match(SparkSqlParser.COMMA); - this.state = 2730; + this.state = 2576; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2735; + this.state = 2581; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 351, this.context); } } } @@ -11734,32 +11463,32 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifierList(): OrderedIdentifierListContext { let localContext = new OrderedIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 216, SparkSqlParser.RULE_orderedIdentifierList); + this.enterRule(localContext, 172, SparkSqlParser.RULE_orderedIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2736; + this.state = 2582; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2737; + this.state = 2583; this.orderedIdentifier(); - this.state = 2742; + this.state = 2588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2738; + this.state = 2584; this.match(SparkSqlParser.COMMA); - this.state = 2739; + this.state = 2585; this.orderedIdentifier(); } } - this.state = 2744; + this.state = 2590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2745; + this.state = 2591; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11779,19 +11508,19 @@ export class SparkSqlParser extends SQLParserBase { } public orderedIdentifier(): OrderedIdentifierContext { let localContext = new OrderedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 218, SparkSqlParser.RULE_orderedIdentifier); + this.enterRule(localContext, 174, SparkSqlParser.RULE_orderedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2593; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2749; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2748; + this.state = 2594; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11822,32 +11551,32 @@ export class SparkSqlParser extends SQLParserBase { } public identifierCommentList(): IdentifierCommentListContext { let localContext = new IdentifierCommentListContext(this.context, this.state); - this.enterRule(localContext, 220, SparkSqlParser.RULE_identifierCommentList); + this.enterRule(localContext, 176, SparkSqlParser.RULE_identifierCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2597; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2752; + this.state = 2598; this.identifierComment(); - this.state = 2757; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2753; + this.state = 2599; this.match(SparkSqlParser.COMMA); - this.state = 2754; + this.state = 2600; this.identifierComment(); } } - this.state = 2759; + this.state = 2605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2760; + this.state = 2606; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11867,20 +11596,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifierComment(): IdentifierCommentContext { let localContext = new IdentifierCommentContext(this.context, this.state); - this.enterRule(localContext, 222, SparkSqlParser.RULE_identifierComment); + this.enterRule(localContext, 178, SparkSqlParser.RULE_identifierComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2608; this.columnNameCreate(); - this.state = 2764; + this.state = 2611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2763; - this.commentSpec(); + this.state = 2609; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 2610; + localContext._comment = this.stringLit(); } } @@ -11902,167 +11633,176 @@ export class SparkSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 224, SparkSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 180, SparkSqlParser.RULE_relationPrimary); + let _la: number; try { - this.state = 2797; + let alternative: number; + this.state = 2668; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2616; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2766; + this.state = 2613; this.tableName(); } break; case 2: { - this.state = 2767; + this.state = 2614; this.viewName(); } break; case 3: { - this.state = 2768; + this.state = 2615; this.identifierReference(); } break; } - this.state = 2772; + this.state = 2619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2771; + this.state = 2618; this.temporalClause(); } break; } - this.state = 2775; + this.state = 2622; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2774; + this.state = 2621; this.sample(); } break; } - this.state = 2777; + this.state = 2624; this.tableAlias(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2779; + this.state = 2626; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2780; + this.state = 2627; this.query(); - this.state = 2781; + this.state = 2628; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2783; + this.state = 2630; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: { - this.state = 2782; + this.state = 2629; this.sample(); } break; } - this.state = 2785; + this.state = 2632; this.tableAlias(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2787; + this.state = 2634; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2788; + this.state = 2635; this.relation(); - this.state = 2789; + this.state = 2636; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2791; + this.state = 2638; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: { - this.state = 2790; + this.state = 2637; this.sample(); } - break; + break; + } + this.state = 2640; + this.tableAlias(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2642; + this.match(SparkSqlParser.KW_VALUES); + this.state = 2643; + this.expression(); + this.state = 2648; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2644; + this.match(SparkSqlParser.COMMA); + this.state = 2645; + this.expression(); + } + } + } + this.state = 2650; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); } - this.state = 2793; + this.state = 2651; this.tableAlias(); } break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 2795; - this.inlineTable(); - } - break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2796; - this.functionTable(); - } - 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 inlineTable(): InlineTableContext { - let localContext = new InlineTableContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_inlineTable); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 2799; - this.match(SparkSqlParser.KW_VALUES); - this.state = 2800; - this.expression(); - this.state = 2805; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { + this.state = 2653; + this.functionName(); + this.state = 2654; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2663; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2801; - this.match(SparkSqlParser.COMMA); - this.state = 2802; - this.expression(); + this.state = 2655; + this.functionTableArgument(); + this.state = 2660; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 4) { + { + { + this.state = 2656; + this.match(SparkSqlParser.COMMA); + this.state = 2657; + this.functionTableArgument(); + } + } + this.state = 2662; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } } } - this.state = 2807; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); - } - this.state = 2808; - this.tableAlias(); + + this.state = 2665; + this.match(SparkSqlParser.RIGHT_PAREN); + this.state = 2666; + this.tableAlias(); + } + break; } } catch (re) { @@ -12081,25 +11821,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 182, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2829; + this.state = 2689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2810; + this.state = 2670; this.match(SparkSqlParser.KW_TABLE); - this.state = 2811; + this.state = 2671; this.tableName(); - this.state = 2813; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2812; + this.state = 2672; this.tableArgumentPartitioning(); } } @@ -12109,20 +11849,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2815; + this.state = 2675; this.match(SparkSqlParser.KW_TABLE); - this.state = 2816; + this.state = 2676; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2817; + this.state = 2677; this.tableName(); - this.state = 2818; + this.state = 2678; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2820; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2819; + this.state = 2679; this.tableArgumentPartitioning(); } } @@ -12132,20 +11872,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2682; this.match(SparkSqlParser.KW_TABLE); - this.state = 2823; + this.state = 2683; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2824; + this.state = 2684; this.query(); - this.state = 2825; + this.state = 2685; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2827; + this.state = 2687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2826; + this.state = 2686; this.tableArgumentPartitioning(); } } @@ -12170,22 +11910,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 184, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2710; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2831; + this.state = 2691; this.match(SparkSqlParser.KW_WITH); - this.state = 2832; + this.state = 2692; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2833; + this.state = 2693; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12194,7 +11934,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2834; + this.state = 2694; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -12203,38 +11943,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2835; + this.state = 2695; this.match(SparkSqlParser.KW_BY); - this.state = 2848; + this.state = 2708; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: { { { - this.state = 2836; + this.state = 2696; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2837; + this.state = 2697; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2842; + this.state = 2702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2838; + this.state = 2698; this.match(SparkSqlParser.COMMA); - this.state = 2839; + this.state = 2699; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2844; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2845; + this.state = 2705; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12242,7 +11982,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2847; + this.state = 2707; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12254,12 +11994,12 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2868; + this.state = 2728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 2852; + this.state = 2712; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -12268,43 +12008,43 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2853; + this.state = 2713; this.match(SparkSqlParser.KW_BY); { - this.state = 2866; + this.state = 2726; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { { - this.state = 2854; + this.state = 2714; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2855; + this.state = 2715; this.sortItem(); - this.state = 2860; + this.state = 2720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2856; + this.state = 2716; this.match(SparkSqlParser.COMMA); - this.state = 2857; + this.state = 2717; this.sortItem(); } } - this.state = 2862; + this.state = 2722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2863; + this.state = 2723; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2865; + this.state = 2725; this.sortItem(); } break; @@ -12331,15 +12071,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 186, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2870; + this.state = 2730; localContext._key = this.identifier(); - this.state = 2871; + this.state = 2731; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2872; + this.state = 2732; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12359,15 +12099,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 188, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2876; + this.state = 2736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2874; + this.state = 2734; this.functionTableSubqueryArgument(); } break; @@ -12716,7 +12456,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2875; + this.state = 2735; this.functionTableNamedArgumentExpression(); } break; @@ -12740,22 +12480,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableArgument(): FunctionTableArgumentContext { let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableArgument); + this.enterRule(localContext, 190, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2880; + this.state = 2740; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2878; + this.state = 2738; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2879; + this.state = 2739; this.functionArgument(); } break; @@ -12775,92 +12515,35 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public functionTable(): FunctionTableContext { - let localContext = new FunctionTableContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_functionTable); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2882; - this.functionName(); - this.state = 2883; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2892; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { - { - this.state = 2884; - this.functionTableArgument(); - this.state = 2889; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 2885; - this.match(SparkSqlParser.COMMA); - this.state = 2886; - this.functionTableArgument(); - } - } - this.state = 2891; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - - this.state = 2894; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2895; - this.tableAlias(); - } - } - 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 tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 240, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 192, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2904; + this.state = 2749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2898; + this.state = 2743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2897; + this.state = 2742; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2900; + this.state = 2745; localContext._alias = this.strictIdentifier(); - this.state = 2902; + this.state = 2747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2901; + this.state = 2746; this.identifierList(); } break; @@ -12886,32 +12569,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 194, SparkSqlParser.RULE_rowFormat); try { - this.state = 2955; + this.state = 2800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2906; + this.state = 2751; this.match(SparkSqlParser.KW_ROW); - this.state = 2907; + this.state = 2752; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2908; + this.state = 2753; this.match(SparkSqlParser.KW_SERDE); - this.state = 2909; + this.state = 2754; localContext._name = this.stringLit(); - this.state = 2913; + this.state = 2758; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2910; + this.state = 2755; this.match(SparkSqlParser.KW_WITH); - this.state = 2911; + this.state = 2756; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2912; + this.state = 2757; localContext._props = this.propertyList(); } break; @@ -12921,35 +12604,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2915; + this.state = 2760; this.match(SparkSqlParser.KW_ROW); - this.state = 2916; + this.state = 2761; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2917; + this.state = 2762; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2927; + this.state = 2772; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2918; + this.state = 2763; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2919; + this.state = 2764; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2920; + this.state = 2765; this.match(SparkSqlParser.KW_BY); - this.state = 2921; + this.state = 2766; localContext._fieldsTerminatedBy = this.stringLit(); - this.state = 2925; + this.state = 2770; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2922; + this.state = 2767; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2923; + this.state = 2768; this.match(SparkSqlParser.KW_BY); - this.state = 2924; + this.state = 2769; localContext._escapedBy = this.stringLit(); } break; @@ -12957,70 +12640,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2934; + this.state = 2779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2929; + this.state = 2774; this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2930; + this.state = 2775; this.match(SparkSqlParser.KW_ITEMS); - this.state = 2931; + this.state = 2776; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2932; + this.state = 2777; this.match(SparkSqlParser.KW_BY); - this.state = 2933; + this.state = 2778; localContext._collectionItemsTerminatedBy = this.stringLit(); } break; } - this.state = 2941; + this.state = 2786; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2936; + this.state = 2781; this.match(SparkSqlParser.KW_MAP); - this.state = 2937; + this.state = 2782; this.match(SparkSqlParser.KW_KEYS); - this.state = 2938; + this.state = 2783; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2939; + this.state = 2784; this.match(SparkSqlParser.KW_BY); - this.state = 2940; + this.state = 2785; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2947; + this.state = 2792; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 2943; + this.state = 2788; this.match(SparkSqlParser.KW_LINES); - this.state = 2944; + this.state = 2789; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2945; + this.state = 2790; this.match(SparkSqlParser.KW_BY); - this.state = 2946; + this.state = 2791; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2953; + this.state = 2798; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2949; + this.state = 2794; this.match(SparkSqlParser.KW_NULL); - this.state = 2950; + this.state = 2795; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2951; + this.state = 2796; this.match(SparkSqlParser.KW_AS); - this.state = 2952; + this.state = 2797; localContext._nullDefinedAs = this.stringLit(); } break; @@ -13045,26 +12728,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 244, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 196, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2957; + this.state = 2802; this.multipartIdentifier(); - this.state = 2962; + this.state = 2807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2958; + this.state = 2803; this.match(SparkSqlParser.COMMA); - this.state = 2959; + this.state = 2804; this.multipartIdentifier(); } } - this.state = 2964; + this.state = 2809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13086,32 +12769,32 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 198, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2965; + this.state = 2810; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2970; + this.state = 2815; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2966; + this.state = 2811; this.match(SparkSqlParser.DOT); - this.state = 2967; + this.state = 2812; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2972; + this.state = 2817; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 389, this.context); } } } @@ -13131,26 +12814,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 200, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2973; + this.state = 2818; this.multipartIdentifierProperty(); - this.state = 2978; + this.state = 2823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2974; + this.state = 2819; this.match(SparkSqlParser.COMMA); - this.state = 2975; + this.state = 2820; this.multipartIdentifierProperty(); } } - this.state = 2980; + this.state = 2825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13172,21 +12855,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 202, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2981; + this.state = 2826; this.multipartIdentifier(); - this.state = 2984; + this.state = 2829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 2982; + this.state = 2827; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2983; + this.state = 2828; localContext._options = this.propertyList(); } } @@ -13209,23 +12892,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 204, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 2834; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 2986; + this.state = 2831; localContext._db = this.errorCapturingIdentifier(); - this.state = 2987; + this.state = 2832; this.match(SparkSqlParser.DOT); } break; } - this.state = 2991; + this.state = 2836; localContext._table = this.errorCapturingIdentifier(); } } @@ -13245,23 +12928,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 206, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2996; + this.state = 2841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 2993; + this.state = 2838; localContext._db = this.errorCapturingIdentifier(); - this.state = 2994; + this.state = 2839; this.match(SparkSqlParser.DOT); } break; } - this.state = 2998; + this.state = 2843; localContext._view = this.errorCapturingIdentifier(); } } @@ -13281,42 +12964,42 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 256, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 208, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3002; + this.state = 2847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3000; + this.state = 2845; this.columnName(); } break; case 2: { - this.state = 3001; + this.state = 2846; this.expression(); } break; } - this.state = 3011; + this.state = 2856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: { - this.state = 3005; + this.state = 2850; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: { - this.state = 3004; + this.state = 2849; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 3009; + this.state = 2854; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13663,13 +13346,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3007; + this.state = 2852; localContext._name = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 3008; + this.state = 2853; this.identifierList(); } break; @@ -13697,30 +13380,30 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 210, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3013; + this.state = 2858; this.namedExpression(); - this.state = 3018; + this.state = 2863; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 398, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3014; + this.state = 2859; this.match(SparkSqlParser.COMMA); - this.state = 3015; + this.state = 2860; this.namedExpression(); } } } - this.state = 3020; + this.state = 2865; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 398, this.context); } } } @@ -13740,34 +13423,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 212, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 2866; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3022; + this.state = 2867; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 3027; + this.state = 2872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3023; + this.state = 2868; this.match(SparkSqlParser.COMMA); - this.state = 3024; + this.state = 2869; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 3029; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3030; + this.state = 2875; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13787,22 +13470,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 214, SparkSqlParser.RULE_partitionField); try { - this.state = 3034; + this.state = 2879; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3032; + this.state = 2877; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3033; + this.state = 2878; this.columnType(); } break; @@ -13824,45 +13507,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 264, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 216, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 3049; + this.state = 2894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3036; + this.state = 2881; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3037; + this.state = 2882; localContext._transformName = this.identifier(); - this.state = 3038; + this.state = 2883; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3039; + this.state = 2884; this.transformArgument(); - this.state = 3044; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3040; + this.state = 2885; this.match(SparkSqlParser.COMMA); - this.state = 3041; + this.state = 2886; this.transformArgument(); } } - this.state = 3046; + this.state = 2891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3047; + this.state = 2892; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13884,22 +13567,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 218, SparkSqlParser.RULE_transformArgument); try { - this.state = 3053; + this.state = 2898; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3051; + this.state = 2896; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3052; + this.state = 2897; this.constant(); } break; @@ -13921,11 +13604,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 220, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3055; + this.state = 2900; this.booleanExpression(0); } } @@ -13945,15 +13628,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 222, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 2902; localContext._key = this.identifier(); - this.state = 3058; + this.state = 2903; this.match(SparkSqlParser.FAT_ARROW); - this.state = 3059; + this.state = 2904; localContext._value = this.expression(); } } @@ -13973,22 +13656,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 224, SparkSqlParser.RULE_functionArgument); try { - this.state = 3063; + this.state = 2908; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3061; + this.state = 2906; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3062; + this.state = 2907; this.namedArgumentExpression(); } break; @@ -14010,26 +13693,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 274, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 226, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3065; + this.state = 2910; this.expression(); - this.state = 3070; + this.state = 2915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3066; + this.state = 2911; this.match(SparkSqlParser.COMMA); - this.state = 3067; + this.state = 2912; this.expression(); } } - this.state = 3072; + this.state = 2917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14061,19 +13744,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 276; - this.enterRecursionRule(localContext, 276, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 228; + this.enterRecursionRule(localContext, 228, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 2930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { - this.state = 3074; + this.state = 2919; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14082,32 +13765,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3075; + this.state = 2920; this.booleanExpression(5); } break; case 2: { - this.state = 3076; + this.state = 2921; this.match(SparkSqlParser.KW_EXISTS); - this.state = 3077; + this.state = 2922; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3078; + this.state = 2923; this.query(); - this.state = 3079; + this.state = 2924; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3081; + this.state = 2926; this.valueExpression(0); - this.state = 3083; + this.state = 2928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: { - this.state = 3082; + this.state = 2927; this.predicate(); } break; @@ -14116,9 +13799,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3095; + this.state = 2940; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 409, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14126,21 +13809,21 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3093; + this.state = 2938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3087; + this.state = 2932; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3088; + this.state = 2933; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3089; + this.state = 2934; localContext._right = this.booleanExpression(3); } break; @@ -14149,22 +13832,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3090; + this.state = 2935; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3091; + this.state = 2936; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3092; + this.state = 2937; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3097; + this.state = 2942; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 409, this.context); } } } @@ -14184,111 +13867,111 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 278, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 230, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3180; + this.state = 3025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3099; + this.state = 2944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3098; + this.state = 2943; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3101; + this.state = 2946; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3102; + this.state = 2947; localContext._lower = this.valueExpression(0); - this.state = 3103; + this.state = 2948; this.match(SparkSqlParser.KW_AND); - this.state = 3104; + this.state = 2949; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3107; + this.state = 2952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3106; + this.state = 2951; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3109; + this.state = 2954; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3110; + this.state = 2955; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3111; + this.state = 2956; this.expression(); - this.state = 3116; + this.state = 2961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3112; + this.state = 2957; this.match(SparkSqlParser.COMMA); - this.state = 3113; + this.state = 2958; this.expression(); } } - this.state = 3118; + this.state = 2963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3119; + this.state = 2964; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3122; + this.state = 2967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3121; + this.state = 2966; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3124; + this.state = 2969; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3125; + this.state = 2970; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3126; + this.state = 2971; this.query(); - this.state = 3127; + this.state = 2972; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3130; + this.state = 2975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3129; + this.state = 2974; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3132; + this.state = 2977; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14298,24 +13981,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3133; + this.state = 2978; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3135; + this.state = 2980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3134; + this.state = 2979; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3137; + this.state = 2982; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14325,7 +14008,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3138; + this.state = 2983; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14335,40 +14018,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3152; + this.state = 2997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { - this.state = 3139; + this.state = 2984; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3140; + this.state = 2985; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3141; + this.state = 2986; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3142; + this.state = 2987; this.expression(); - this.state = 3147; + this.state = 2992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3143; + this.state = 2988; this.match(SparkSqlParser.COMMA); - this.state = 3144; + this.state = 2989; this.expression(); } } - this.state = 3149; + this.state = 2994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3150; + this.state = 2995; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14378,17 +14061,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3155; + this.state = 3000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3154; + this.state = 2999; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3157; + this.state = 3002; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14398,16 +14081,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3158; + this.state = 3003; localContext._pattern = this.valueExpression(0); - this.state = 3161; + this.state = 3006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3159; + this.state = 3004; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3160; + this.state = 3005; localContext._escapeChar = this.stringLit(); } break; @@ -14417,38 +14100,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3163; + this.state = 3008; this.match(SparkSqlParser.KW_IS); - this.state = 3165; + this.state = 3010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3164; + this.state = 3009; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3167; + this.state = 3012; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3168; + this.state = 3013; this.match(SparkSqlParser.KW_IS); - this.state = 3170; + this.state = 3015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3169; + this.state = 3014; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3172; + this.state = 3017; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14463,23 +14146,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3173; + this.state = 3018; this.match(SparkSqlParser.KW_IS); - this.state = 3175; + this.state = 3020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3174; + this.state = 3019; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3177; + this.state = 3022; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3178; + this.state = 3023; this.match(SparkSqlParser.KW_FROM); - this.state = 3179; + this.state = 3024; localContext._right = this.valueExpression(0); } break; @@ -14511,25 +14194,25 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 280; - this.enterRecursionRule(localContext, 280, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 232; + this.enterRecursionRule(localContext, 232, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3186; + this.state = 3031; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3183; + this.state = 3028; this.primaryExpression(0); } break; case 2: { - this.state = 3184; + this.state = 3029; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14539,15 +14222,15 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3185; + this.state = 3030; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3209; + this.state = 3054; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 426, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14555,19 +14238,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3207; + this.state = 3052; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3188; + this.state = 3033; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3189; + this.state = 3034; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14577,7 +14260,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3190; + this.state = 3035; localContext._right = this.valueExpression(7); } break; @@ -14586,11 +14269,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3191; + this.state = 3036; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3192; + this.state = 3037; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14600,7 +14283,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3193; + this.state = 3038; localContext._right = this.valueExpression(6); } break; @@ -14609,13 +14292,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3194; + this.state = 3039; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3195; + this.state = 3040; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3196; + this.state = 3041; localContext._right = this.valueExpression(5); } break; @@ -14624,13 +14307,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3197; + this.state = 3042; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3198; + this.state = 3043; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3199; + this.state = 3044; localContext._right = this.valueExpression(4); } break; @@ -14639,13 +14322,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3200; + this.state = 3045; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3201; + this.state = 3046; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3202; + this.state = 3047; localContext._right = this.valueExpression(3); } break; @@ -14654,22 +14337,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3203; + this.state = 3048; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3204; + this.state = 3049; this.comparisonOperator(); - this.state = 3205; + this.state = 3050; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3211; + this.state = 3056; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 426, this.context); } } } @@ -14689,12 +14372,12 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 282, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 234, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3212; + this.state = 3057; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14731,19 +14414,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 236; + this.enterRecursionRule(localContext, 236, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3308; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3215; + this.state = 3060; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14757,7 +14440,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3216; + this.state = 3061; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14767,9 +14450,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3217; + this.state = 3062; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3220; + this.state = 3065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14784,35 +14467,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3218; + this.state = 3063; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3219; + this.state = 3064; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3222; + this.state = 3067; this.match(SparkSqlParser.COMMA); - this.state = 3223; + this.state = 3068; localContext._unitsAmount = this.valueExpression(0); - this.state = 3224; + this.state = 3069; this.match(SparkSqlParser.COMMA); - this.state = 3225; + this.state = 3070; localContext._timestamp = this.valueExpression(0); - this.state = 3226; + this.state = 3071; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3228; + this.state = 3073; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14822,9 +14505,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3229; + this.state = 3074; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3232; + this.state = 3077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14839,105 +14522,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3230; + this.state = 3075; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3231; + this.state = 3076; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3234; + this.state = 3079; this.match(SparkSqlParser.COMMA); - this.state = 3235; + this.state = 3080; localContext._startTimestamp = this.valueExpression(0); - this.state = 3236; + this.state = 3081; this.match(SparkSqlParser.COMMA); - this.state = 3237; + this.state = 3082; localContext._endTimestamp = this.valueExpression(0); - this.state = 3238; + this.state = 3083; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3240; + this.state = 3085; this.match(SparkSqlParser.KW_CASE); - this.state = 3242; + this.state = 3087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3241; + this.state = 3086; this.whenClause(); } } - this.state = 3244; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3248; + this.state = 3093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3246; + this.state = 3091; this.match(SparkSqlParser.KW_ELSE); - this.state = 3247; + this.state = 3092; localContext._elseExpression = this.expression(); } } - this.state = 3250; + this.state = 3095; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3252; + this.state = 3097; this.match(SparkSqlParser.KW_CASE); - this.state = 3253; + this.state = 3098; this.expression(); - this.state = 3255; + this.state = 3100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3254; + this.state = 3099; this.whenClause(); } } - this.state = 3257; + this.state = 3102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3261; + this.state = 3106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3259; + this.state = 3104; this.match(SparkSqlParser.KW_ELSE); - this.state = 3260; + this.state = 3105; localContext._elseExpression = this.expression(); } } - this.state = 3263; + this.state = 3108; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3265; + this.state = 3110; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -14947,280 +14630,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3266; + this.state = 3111; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3267; + this.state = 3112; this.expression(); - this.state = 3268; + this.state = 3113; this.match(SparkSqlParser.KW_AS); - this.state = 3269; + this.state = 3114; this.dataType(); - this.state = 3270; + this.state = 3115; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3272; + this.state = 3117; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3273; + this.state = 3118; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3282; + this.state = 3127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3274; + this.state = 3119; this.namedExpression(); - this.state = 3279; + this.state = 3124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3275; + this.state = 3120; this.match(SparkSqlParser.COMMA); - this.state = 3276; + this.state = 3121; this.namedExpression(); } } - this.state = 3281; + this.state = 3126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3284; + this.state = 3129; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3285; + this.state = 3130; this.match(SparkSqlParser.KW_FIRST); - this.state = 3286; + this.state = 3131; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3287; + this.state = 3132; this.expression(); - this.state = 3290; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3288; + this.state = 3133; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3289; + this.state = 3134; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3292; + this.state = 3137; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3294; + this.state = 3139; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3295; + this.state = 3140; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3296; + this.state = 3141; this.expression(); - this.state = 3299; + this.state = 3144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3297; + this.state = 3142; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3298; + this.state = 3143; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3301; + this.state = 3146; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3303; + this.state = 3148; this.match(SparkSqlParser.KW_LAST); - this.state = 3304; + this.state = 3149; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3305; + this.state = 3150; this.expression(); - this.state = 3308; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3306; + this.state = 3151; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3307; + this.state = 3152; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3310; + this.state = 3155; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3312; + this.state = 3157; this.match(SparkSqlParser.KW_POSITION); - this.state = 3313; + this.state = 3158; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3314; + this.state = 3159; localContext._substr = this.valueExpression(0); - this.state = 3315; + this.state = 3160; this.match(SparkSqlParser.KW_IN); - this.state = 3316; + this.state = 3161; localContext._str = this.valueExpression(0); - this.state = 3317; + this.state = 3162; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3319; + this.state = 3164; this.constant(); } break; case 13: { - this.state = 3320; + this.state = 3165; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3321; + this.state = 3166; this.qualifiedName(); - this.state = 3322; + this.state = 3167; this.match(SparkSqlParser.DOT); - this.state = 3323; + this.state = 3168; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3325; + this.state = 3170; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3326; + this.state = 3171; this.namedExpression(); - this.state = 3329; + this.state = 3174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3327; + this.state = 3172; this.match(SparkSqlParser.COMMA); - this.state = 3328; + this.state = 3173; this.namedExpression(); } } - this.state = 3331; + this.state = 3176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3333; + this.state = 3178; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3335; + this.state = 3180; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3336; + this.state = 3181; this.query(); - this.state = 3337; + this.state = 3182; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3339; + this.state = 3184; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3340; + this.state = 3185; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3341; + this.state = 3186; this.expression(); - this.state = 3342; + this.state = 3187; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3344; + this.state = 3189; this.functionName(); - this.state = 3345; + this.state = 3190; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3357; + this.state = 3202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3347; + this.state = 3192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3346; + this.state = 3191; this.setQuantifier(); } break; } - this.state = 3349; + this.state = 3194; this.functionArgument(); - this.state = 3354; + this.state = 3199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3350; + this.state = 3195; this.match(SparkSqlParser.COMMA); - this.state = 3351; + this.state = 3196; this.functionArgument(); } } - this.state = 3356; + this.state = 3201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3359; + this.state = 3204; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3366; + this.state = 3211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3360; + this.state = 3205; this.match(SparkSqlParser.KW_FILTER); - this.state = 3361; + this.state = 3206; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3362; + this.state = 3207; this.match(SparkSqlParser.KW_WHERE); - this.state = 3363; + this.state = 3208; localContext._where = this.booleanExpression(0); - this.state = 3364; + this.state = 3209; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3370; + this.state = 3215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3368; + this.state = 3213; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15230,19 +14913,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3369; + this.state = 3214; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3374; + this.state = 3219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3372; + this.state = 3217; this.match(SparkSqlParser.KW_OVER); - this.state = 3373; + this.state = 3218; this.windowSpec(); } break; @@ -15251,79 +14934,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3376; + this.state = 3221; this.identifier(); - this.state = 3377; + this.state = 3222; this.match(SparkSqlParser.ARROW); - this.state = 3378; + this.state = 3223; this.expression(); } break; case 20: { - this.state = 3380; + this.state = 3225; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3381; + this.state = 3226; this.identifier(); - this.state = 3384; + this.state = 3229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3382; + this.state = 3227; this.match(SparkSqlParser.COMMA); - this.state = 3383; + this.state = 3228; this.identifier(); } } - this.state = 3386; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3388; + this.state = 3233; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3389; + this.state = 3234; this.match(SparkSqlParser.ARROW); - this.state = 3390; + this.state = 3235; this.expression(); } break; case 21: { - this.state = 3392; + this.state = 3237; this.identifier(); } break; case 22: { - this.state = 3393; + this.state = 3238; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3394; + this.state = 3239; this.expression(); - this.state = 3395; + this.state = 3240; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3397; + this.state = 3242; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3398; + this.state = 3243; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3399; + this.state = 3244; localContext._field = this.identifier(); - this.state = 3400; + this.state = 3245; this.match(SparkSqlParser.KW_FROM); - this.state = 3401; + this.state = 3246; localContext._source = this.valueExpression(0); - this.state = 3402; + this.state = 3247; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3404; + this.state = 3249; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15332,11 +15015,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3405; + this.state = 3250; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3406; + this.state = 3251; localContext._str = this.valueExpression(0); - this.state = 3407; + this.state = 3252; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15345,14 +15028,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3408; + this.state = 3253; localContext._pos = this.valueExpression(0); - this.state = 3411; + this.state = 3256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3409; + this.state = 3254; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15361,27 +15044,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3410; + this.state = 3255; localContext._len = this.valueExpression(0); } } - this.state = 3413; + this.state = 3258; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3415; + this.state = 3260; this.match(SparkSqlParser.KW_TRIM); - this.state = 3416; + this.state = 3261; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3418; + this.state = 3263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3417; + this.state = 3262; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15394,59 +15077,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3421; + this.state = 3266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3420; + this.state = 3265; localContext._trimStr = this.valueExpression(0); } } - this.state = 3423; + this.state = 3268; this.match(SparkSqlParser.KW_FROM); - this.state = 3424; + this.state = 3269; localContext._srcStr = this.valueExpression(0); - this.state = 3425; + this.state = 3270; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3427; + this.state = 3272; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3428; + this.state = 3273; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3429; + this.state = 3274; localContext._input = this.valueExpression(0); - this.state = 3430; + this.state = 3275; this.match(SparkSqlParser.KW_PLACING); - this.state = 3431; + this.state = 3276; localContext._replace = this.valueExpression(0); - this.state = 3432; + this.state = 3277; this.match(SparkSqlParser.KW_FROM); - this.state = 3433; + this.state = 3278; localContext._position = this.valueExpression(0); - this.state = 3436; + this.state = 3281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3434; + this.state = 3279; this.match(SparkSqlParser.KW_FOR); - this.state = 3435; + this.state = 3280; localContext._length = this.valueExpression(0); } } - this.state = 3438; + this.state = 3283; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3440; + this.state = 3285; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15456,52 +15139,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3441; + this.state = 3286; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3442; + this.state = 3287; localContext._percentage = this.valueExpression(0); - this.state = 3443; + this.state = 3288; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3444; + this.state = 3289; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3445; + this.state = 3290; this.match(SparkSqlParser.KW_GROUP); - this.state = 3446; + this.state = 3291; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3447; + this.state = 3292; this.match(SparkSqlParser.KW_ORDER); - this.state = 3448; + this.state = 3293; this.match(SparkSqlParser.KW_BY); - this.state = 3449; + this.state = 3294; this.sortItem(); - this.state = 3450; + this.state = 3295; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3457; + this.state = 3302; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3451; + this.state = 3296; this.match(SparkSqlParser.KW_FILTER); - this.state = 3452; + this.state = 3297; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3453; + this.state = 3298; this.match(SparkSqlParser.KW_WHERE); - this.state = 3454; + this.state = 3299; localContext._where = this.booleanExpression(0); - this.state = 3455; + this.state = 3300; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3461; + this.state = 3306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3459; + this.state = 3304; this.match(SparkSqlParser.KW_OVER); - this.state = 3460; + this.state = 3305; this.windowSpec(); } break; @@ -15510,9 +15193,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3475; + this.state = 3320; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15520,23 +15203,23 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3473; + this.state = 3318; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3465; + this.state = 3310; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3466; + this.state = 3311; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3467; + this.state = 3312; localContext._index = this.valueExpression(0); - this.state = 3468; + this.state = 3313; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15545,22 +15228,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3470; + this.state = 3315; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3471; + this.state = 3316; this.match(SparkSqlParser.DOT); - this.state = 3472; + this.state = 3317; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3477; + this.state = 3322; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } } } @@ -15580,57 +15263,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 238, SparkSqlParser.RULE_literalType); try { - this.state = 3485; + this.state = 3330; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3323; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3479; + this.state = 3324; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3480; + this.state = 3325; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3481; + this.state = 3326; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3482; + this.state = 3327; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3483; + this.state = 3328; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3484; + this.state = 3329; localContext._unsupportedType = this.identifier(); } break; @@ -15652,69 +15335,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 240, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3502; + this.state = 3347; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3487; + this.state = 3332; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3488; + this.state = 3333; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3489; + this.state = 3334; this.match(SparkSqlParser.COLON); - this.state = 3490; + this.state = 3335; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3491; + this.state = 3336; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3492; + this.state = 3337; this.literalType(); - this.state = 3493; + this.state = 3338; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3495; + this.state = 3340; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3496; + this.state = 3341; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3498; + this.state = 3343; this.errorHandler.sync(this); alternative = 1; do { @@ -15722,7 +15405,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3497; + this.state = 3342; this.stringLit(); } } @@ -15730,9 +15413,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3500; + this.state = 3345; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15754,12 +15437,12 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 242, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3349; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15786,12 +15469,12 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 244, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3506; + this.state = 3351; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15818,12 +15501,12 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 246, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3508; + this.state = 3353; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -15850,12 +15533,12 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 248, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3510; + this.state = 3355; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -15882,24 +15565,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 250, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3357; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3515; + this.state = 3360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3513; + this.state = 3358; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3514; + this.state = 3359; this.errorCapturingUnitToUnitInterval(); } break; @@ -15922,18 +15605,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 252, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3362; localContext._body = this.multiUnitsInterval(); - this.state = 3519; + this.state = 3364; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 3518; + this.state = 3363; this.unitToUnitInterval(); } break; @@ -15956,12 +15639,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 254, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3524; + this.state = 3369; this.errorHandler.sync(this); alternative = 1; do { @@ -15969,9 +15652,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3521; + this.state = 3366; this.intervalValue(); - this.state = 3522; + this.state = 3367; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15980,9 +15663,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3526; + this.state = 3371; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 460, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16002,24 +15685,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 256, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3373; localContext._body = this.unitToUnitInterval(); - this.state = 3531; + this.state = 3376; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3529; + this.state = 3374; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3530; + this.state = 3375; localContext._error2 = this.unitToUnitInterval(); } break; @@ -16042,17 +15725,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 258, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3378; localContext._value = this.intervalValue(); - this.state = 3534; + this.state = 3379; this.unitInUnitToUnit(); - this.state = 3535; + this.state = 3380; this.match(SparkSqlParser.KW_TO); - this.state = 3536; + this.state = 3381; this.unitInUnitToUnit(); } } @@ -16072,17 +15755,17 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 260, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3539; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3538; + this.state = 3383; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -16094,25 +15777,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3544; + this.state = 3389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3541; + this.state = 3386; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3542; + this.state = 3387; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3543; + this.state = 3388; this.stringLit(); } break; @@ -16137,12 +15820,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 262, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3546; + this.state = 3391; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -16169,12 +15852,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 264, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3548; + this.state = 3393; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16201,24 +15884,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 266, SparkSqlParser.RULE_colPosition); try { - this.state = 3553; + this.state = 3398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3395; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3551; + this.state = 3396; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3552; + this.state = 3397; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16242,218 +15925,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_type); + this.enterRule(localContext, 268, SparkSqlParser.RULE_type); try { - this.state = 3585; + this.state = 3430; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3555; + this.state = 3400; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3556; + this.state = 3401; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3557; + this.state = 3402; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3558; + this.state = 3403; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3559; + this.state = 3404; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3560; + this.state = 3405; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3561; + this.state = 3406; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3562; + this.state = 3407; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3563; + this.state = 3408; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3564; + this.state = 3409; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3565; + this.state = 3410; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3566; + this.state = 3411; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3567; + this.state = 3412; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3568; + this.state = 3413; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3569; + this.state = 3414; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3570; + this.state = 3415; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3571; + this.state = 3416; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3572; + this.state = 3417; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3573; + this.state = 3418; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3574; + this.state = 3419; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3575; + this.state = 3420; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3576; + this.state = 3421; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3577; + this.state = 3422; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3578; + this.state = 3423; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3579; + this.state = 3424; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3580; + this.state = 3425; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3581; + this.state = 3426; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3582; + this.state = 3427; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3583; + this.state = 3428; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3584; + this.state = 3429; localContext._unsupportedType = this.identifier(); } break; @@ -16475,71 +16158,87 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 270, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3633; + this.state = 3485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3432; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3588; + this.state = 3433; this.match(SparkSqlParser.LT); - this.state = 3589; + this.state = 3434; this.dataType(); - this.state = 3590; + this.state = 3435; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3437; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3593; + this.state = 3438; this.match(SparkSqlParser.LT); - this.state = 3594; + this.state = 3439; this.dataType(); - this.state = 3595; + this.state = 3440; this.match(SparkSqlParser.COMMA); - this.state = 3596; + this.state = 3441; this.dataType(); - this.state = 3597; + this.state = 3442; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3599; + this.state = 3444; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3606; + this.state = 3458; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3600; + this.state = 3445; this.match(SparkSqlParser.LT); - this.state = 3602; + this.state = 3454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3601; - this.complexColTypeList(); + this.state = 3446; + this.complexColType(); + this.state = 3451; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 4) { + { + { + this.state = 3447; + this.match(SparkSqlParser.COMMA); + this.state = 3448; + this.complexColType(); + } + } + this.state = 3453; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } - this.state = 3604; + this.state = 3456; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3605; + this.state = 3457; this.match(SparkSqlParser.NEQ); } break; @@ -16551,9 +16250,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3608; + this.state = 3460; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3609; + this.state = 3461; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16562,14 +16261,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3612; + this.state = 3464; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3610; + this.state = 3462; this.match(SparkSqlParser.KW_TO); - this.state = 3611; + this.state = 3463; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16579,9 +16278,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3614; + this.state = 3466; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3615; + this.state = 3467; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16590,14 +16289,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3618; + this.state = 3470; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3616; + this.state = 3468; this.match(SparkSqlParser.KW_TO); - this.state = 3617; + this.state = 3469; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16614,34 +16313,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3620; + this.state = 3472; this.type_(); - this.state = 3631; + this.state = 3483; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3621; + this.state = 3473; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3622; + this.state = 3474; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3627; + this.state = 3479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3623; + this.state = 3475; this.match(SparkSqlParser.COMMA); - this.state = 3624; + this.state = 3476; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3629; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3630; + this.state = 3482; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16666,26 +16365,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 272, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3487; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3640; + this.state = 3492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3636; + this.state = 3488; this.match(SparkSqlParser.COMMA); - this.state = 3637; + this.state = 3489; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3642; + this.state = 3494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16707,30 +16406,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 274, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3495; localContext._name = this.columnNameCreate(); - this.state = 3644; + this.state = 3496; this.dataType(); - this.state = 3648; + this.state = 3500; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3645; + this.state = 3497; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3650; + this.state = 3502; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); } } } @@ -16750,26 +16449,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 276, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3651; + this.state = 3503; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3656; + this.state = 3508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3652; + this.state = 3504; this.match(SparkSqlParser.COMMA); - this.state = 3653; + this.state = 3505; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3658; + this.state = 3510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16791,26 +16490,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 278, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3511; localContext._name = this.columnName(); - this.state = 3660; + this.state = 3512; this.dataType(); - this.state = 3664; + this.state = 3516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3661; + this.state = 3513; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3666; + this.state = 3518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16832,39 +16531,43 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 280, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3672; + this.state = 3526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3519; this.match(SparkSqlParser.KW_NOT); - this.state = 3668; + this.state = 3520; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3669; - this.defaultExpression(); + this.state = 3521; + this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3522; + this.expression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3670; - this.commentSpec(); + this.state = 3523; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3524; + localContext._comment = this.stringLit(); } break; case SparkSqlParser.KW_AFTER: case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3671; + this.state = 3525; this.colPosition(); } break; @@ -16886,40 +16589,14 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public defaultExpression(): DefaultExpressionContext { - let localContext = new DefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_defaultExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3674; - this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3675; - this.expression(); - } - } - 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 variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 282, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3677; + this.state = 3528; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -16928,7 +16605,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3678; + this.state = 3529; this.expression(); } } @@ -16948,30 +16625,30 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 284, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3531; this.columnType(); - this.state = 3685; + this.state = 3536; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 479, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3681; + this.state = 3532; this.match(SparkSqlParser.COMMA); - this.state = 3682; + this.state = 3533; this.columnType(); } } } - this.state = 3687; + this.state = 3538; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 479, this.context); } } } @@ -16991,33 +16668,35 @@ export class SparkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_columnType); + this.enterRule(localContext, 286, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3688; + this.state = 3539; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3689; + this.state = 3540; this.dataType(); - this.state = 3692; + this.state = 3543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { case 1: { - this.state = 3690; + this.state = 3541; this.match(SparkSqlParser.KW_NOT); - this.state = 3691; + this.state = 3542; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3695; + this.state = 3547; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { case 1: { - this.state = 3694; - this.commentSpec(); + this.state = 3545; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3546; + localContext._comment = this.stringLit(); } break; } @@ -17039,26 +16718,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 288, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3549; this.createOrReplaceTableColType(); - this.state = 3702; + this.state = 3554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3698; + this.state = 3550; this.match(SparkSqlParser.COMMA); - this.state = 3699; + this.state = 3551; this.createOrReplaceTableColType(); } } - this.state = 3704; + this.state = 3556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17080,26 +16759,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 290, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3705; + this.state = 3557; localContext._colName = this.columnNameCreate(); - this.state = 3706; + this.state = 3558; localContext._colType = this.dataType(); - this.state = 3710; + this.state = 3562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3707; + this.state = 3559; this.colDefinitionOption(); } } - this.state = 3712; + this.state = 3564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17121,39 +16800,53 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 292, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3718; + this.state = 3578; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3713; + this.state = 3565; this.match(SparkSqlParser.KW_NOT); - this.state = 3714; + this.state = 3566; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3715; - this.defaultExpression(); + this.state = 3567; + this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3568; + this.expression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3716; - this.generationExpression(); + this.state = 3569; + this.match(SparkSqlParser.KW_GENERATED); + this.state = 3570; + this.match(SparkSqlParser.KW_ALWAYS); + this.state = 3571; + this.match(SparkSqlParser.KW_AS); + this.state = 3572; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 3573; + this.expression(); + this.state = 3574; + this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3717; - this.commentSpec(); + this.state = 3576; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3577; + localContext._comment = this.stringLit(); } break; default: @@ -17174,121 +16867,48 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public generationExpression(): GenerationExpressionContext { - let localContext = new GenerationExpressionContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_generationExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3720; - this.match(SparkSqlParser.KW_GENERATED); - this.state = 3721; - this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3722; - this.match(SparkSqlParser.KW_AS); - this.state = 3723; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3724; - this.expression(); - this.state = 3725; - this.match(SparkSqlParser.RIGHT_PAREN); - } - } - 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 complexColTypeList(): ComplexColTypeListContext { - let localContext = new ComplexColTypeListContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_complexColTypeList); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3727; - this.complexColType(); - this.state = 3732; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 4) { - { - { - this.state = 3728; - this.match(SparkSqlParser.COMMA); - this.state = 3729; - this.complexColType(); - } - } - this.state = 3734; - 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 complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 294, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3735; + this.state = 3580; this.identifier(); - this.state = 3737; + this.state = 3582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3736; + this.state = 3581; this.match(SparkSqlParser.COLON); } } - this.state = 3739; + this.state = 3584; this.dataType(); - this.state = 3742; + this.state = 3587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3740; + this.state = 3585; this.match(SparkSqlParser.KW_NOT); - this.state = 3741; + this.state = 3586; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3745; + this.state = 3591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3744; - this.commentSpec(); + this.state = 3589; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3590; + localContext._comment = this.stringLit(); } } @@ -17310,17 +16930,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 350, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 296, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3747; + this.state = 3593; this.match(SparkSqlParser.KW_WHEN); - this.state = 3748; + this.state = 3594; localContext._condition = this.expression(); - this.state = 3749; + this.state = 3595; this.match(SparkSqlParser.KW_THEN); - this.state = 3750; + this.state = 3596; localContext._result = this.expression(); } } @@ -17340,89 +16960,41 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 352, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 298, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3752; + this.state = 3598; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3753; - this.namedWindow(); - this.state = 3758; + this.state = 3599; + localContext._name = this.errorCapturingIdentifier(); + this.state = 3600; + this.match(SparkSqlParser.KW_AS); + this.state = 3601; + this.windowSpec(); + this.state = 3609; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3754; + this.state = 3602; this.match(SparkSqlParser.COMMA); - this.state = 3755; - this.namedWindow(); + this.state = 3603; + localContext._name = this.errorCapturingIdentifier(); + this.state = 3604; + this.match(SparkSqlParser.KW_AS); + this.state = 3605; + this.windowSpec(); } } } - this.state = 3760; + this.state = 3611; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); - } - } - } - 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 zorderClause(): ZorderClauseContext { - let localContext = new ZorderClauseContext(this.context, this.state); - this.enterRule(localContext, 354, SparkSqlParser.RULE_zorderClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3761; - this.match(SparkSqlParser.KW_ZORDER); - this.state = 3762; - this.match(SparkSqlParser.KW_BY); - this.state = 3763; - this.columnNameSeq(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; + alternative = this.interpreter.adaptivePredict(this.tokenStream, 488, this.context); } - } - finally { - this.exitRule(); - } - return localContext; - } - public namedWindow(): NamedWindowContext { - let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 356, SparkSqlParser.RULE_namedWindow); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3765; - localContext._name = this.errorCapturingIdentifier(); - this.state = 3766; - this.match(SparkSqlParser.KW_AS); - this.state = 3767; - this.windowSpec(); } } catch (re) { @@ -17441,61 +17013,61 @@ export class SparkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 358, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 300, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3815; + this.state = 3658; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3769; + this.state = 3612; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3770; + this.state = 3613; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3771; + this.state = 3614; localContext._name = this.errorCapturingIdentifier(); - this.state = 3772; + this.state = 3615; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3774; + this.state = 3617; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3809; + this.state = 3652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3775; + this.state = 3618; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3776; + this.state = 3619; this.match(SparkSqlParser.KW_BY); - this.state = 3777; + this.state = 3620; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3782; + this.state = 3625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3778; + this.state = 3621; this.match(SparkSqlParser.COMMA); - this.state = 3779; + this.state = 3622; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3784; + this.state = 3627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17509,12 +17081,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3795; + this.state = 3638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3785; + this.state = 3628; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17523,37 +17095,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3786; + this.state = 3629; this.match(SparkSqlParser.KW_BY); - this.state = 3787; + this.state = 3630; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3792; + this.state = 3635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3788; + this.state = 3631; this.match(SparkSqlParser.COMMA); - this.state = 3789; + this.state = 3632; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3794; + this.state = 3637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3807; + this.state = 3650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3797; + this.state = 3640; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17562,23 +17134,23 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3798; + this.state = 3641; this.match(SparkSqlParser.KW_BY); - this.state = 3799; + this.state = 3642; this.sortItem(); - this.state = 3804; + this.state = 3647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3800; + this.state = 3643; this.match(SparkSqlParser.COMMA); - this.state = 3801; + this.state = 3644; this.sortItem(); } } - this.state = 3806; + this.state = 3649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17590,17 +17162,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3812; + this.state = 3655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3811; + this.state = 3654; this.windowFrame(); } } - this.state = 3814; + this.state = 3657; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17622,56 +17194,49 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 360, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 302, SparkSqlParser.RULE_windowFrame); + let _la: number; try { - this.state = 3833; + this.state = 3668; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3817; - localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3818; + this.state = 3660; + localContext._frameType = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 233 || _la === 258)) { + localContext._frameType = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3661; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3819; - localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3820; - localContext._start_ = this.frameBound(); + this.state = 3662; + localContext._frameType = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 233 || _la === 258)) { + localContext._frameType = this.errorHandler.recoverInline(this); } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3821; - localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3822; - this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3823; - localContext._start_ = this.frameBound(); - this.state = 3824; - this.match(SparkSqlParser.KW_AND); - this.state = 3825; - localContext._end = this.frameBound(); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3827; - localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3828; + this.state = 3663; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3829; + this.state = 3664; localContext._start_ = this.frameBound(); - this.state = 3830; + this.state = 3665; this.match(SparkSqlParser.KW_AND); - this.state = 3831; + this.state = 3666; localContext._end = this.frameBound(); } break; @@ -17693,18 +17258,18 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 362, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 304, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3842; + this.state = 3677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3835; + this.state = 3670; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3836; + this.state = 3671; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17719,18 +17284,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3837; + this.state = 3672; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3838; + this.state = 3673; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3839; + this.state = 3674; this.expression(); - this.state = 3840; + this.state = 3675; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17760,26 +17325,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 364, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 306, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3679; this.qualifiedName(); - this.state = 3849; + this.state = 3684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3845; + this.state = 3680; this.match(SparkSqlParser.COMMA); - this.state = 3846; + this.state = 3681; this.qualifiedName(); } } - this.state = 3851; + this.state = 3686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17801,49 +17366,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 366, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 308, SparkSqlParser.RULE_functionName); try { - this.state = 3861; + this.state = 3696; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3687; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3853; + this.state = 3688; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3854; + this.state = 3689; this.expression(); - this.state = 3855; + this.state = 3690; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3857; + this.state = 3692; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3858; + this.state = 3693; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3859; + this.state = 3694; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3860; + this.state = 3695; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17865,11 +17430,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 368, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 310, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3863; + this.state = 3698; this.qualifiedName(); } } @@ -17889,30 +17454,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 370, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 312, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3865; + this.state = 3700; this.identifier(); - this.state = 3870; + this.state = 3705; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 501, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3866; + this.state = 3701; this.match(SparkSqlParser.DOT); - this.state = 3867; + this.state = 3702; this.identifier(); } } } - this.state = 3872; + this.state = 3707; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 501, this.context); } } } @@ -17932,13 +17497,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 314, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3873; + this.state = 3708; this.identifier(); - this.state = 3874; + this.state = 3709; this.errorCapturingIdentifierExtra(); } } @@ -17958,16 +17523,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 374, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 316, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3883; + this.state = 3718; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3713; this.errorHandler.sync(this); alternative = 1; do { @@ -17975,9 +17540,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3876; + this.state = 3711; this.match(SparkSqlParser.MINUS); - this.state = 3877; + this.state = 3712; this.identifier(); } } @@ -17985,361 +17550,53 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3880; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); - } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - // tslint:disable-next-line:no-empty - { - } - 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 identifier(): IdentifierContext { - let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 376, SparkSqlParser.RULE_identifier); - try { - this.state = 3887; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3885; - this.strictIdentifier(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3886; - this.strictNonReserved(); - } - 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 strictIdentifier(): StrictIdentifierContext { - let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 378, SparkSqlParser.RULE_strictIdentifier); - try { - this.state = 3893; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3889; - this.match(SparkSqlParser.IDENTIFIER); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3890; - this.quotedIdentifier(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3891; - this.ansiNonReserved(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3892; - this.nonReserved(); - } - 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 quotedIdentifier(): QuotedIdentifierContext { - let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 380, SparkSqlParser.RULE_quotedIdentifier); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3895; - _la = this.tokenStream.LA(1); - if(!(_la === 378 || _la === 389)) { - 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 backQuotedIdentifier(): BackQuotedIdentifierContext { - let localContext = new BackQuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 382, SparkSqlParser.RULE_backQuotedIdentifier); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 3897; - this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); - } - } - 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 number_(): NumberContext { - let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 384, SparkSqlParser.RULE_number); - let _la: number; - try { - this.state = 3939; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 3900; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3899; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3902; - this.match(SparkSqlParser.EXPONENT_VALUE); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 3904; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3903; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3906; - this.match(SparkSqlParser.DECIMAL_VALUE); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 3908; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3907; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3910; - _la = this.tokenStream.LA(1); - if(!(_la === 383 || _la === 384)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 3912; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3911; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3914; - this.match(SparkSqlParser.INTEGER_VALUE); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 3916; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3915; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3918; - this.match(SparkSqlParser.BIGINT_LITERAL); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 3920; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3919; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3922; - this.match(SparkSqlParser.SMALLINT_LITERAL); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 3924; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3923; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3926; - this.match(SparkSqlParser.TINYINT_LITERAL); + this.state = 3715; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 502, this.context); + } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; - case 8: - this.enterOuterAlt(localContext, 8); + case 2: + this.enterOuterAlt(localContext, 2); + // tslint:disable-next-line:no-empty { - this.state = 3928; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3927; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3930; - this.match(SparkSqlParser.DOUBLE_LITERAL); } break; - case 9: - this.enterOuterAlt(localContext, 9); + } + } + 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 identifier(): IdentifierContext { + let localContext = new IdentifierContext(this.context, this.state); + this.enterRule(localContext, 318, SparkSqlParser.RULE_identifier); + try { + this.state = 3722; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 3932; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3931; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3934; - this.match(SparkSqlParser.FLOAT_LITERAL); + this.state = 3720; + this.strictIdentifier(); } break; - case 10: - this.enterOuterAlt(localContext, 10); + case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 3936; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 362) { - { - this.state = 3935; - this.match(SparkSqlParser.MINUS); - } - } - - this.state = 3938; - this.match(SparkSqlParser.BIGDECIMAL_LITERAL); + this.state = 3721; + this.strictNonReserved(); } break; } @@ -18358,72 +17615,39 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public alterColumnAction(): AlterColumnActionContext { - let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 386, SparkSqlParser.RULE_alterColumnAction); - let _la: number; + public strictIdentifier(): StrictIdentifierContext { + let localContext = new StrictIdentifierContext(this.context, this.state); + this.enterRule(localContext, 320, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3952; + this.state = 3728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3941; - this.match(SparkSqlParser.KW_TYPE); - this.state = 3942; - this.dataType(); + this.state = 3724; + this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3943; - this.commentSpec(); + this.state = 3725; + this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3944; - this.colPosition(); + this.state = 3726; + this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3945; - localContext._setOrDrop = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 96 || _la === 269)) { - localContext._setOrDrop = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 3946; - this.match(SparkSqlParser.KW_NOT); - this.state = 3947; - this.match(SparkSqlParser.KW_NULL); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 3948; - this.match(SparkSqlParser.KW_SET); - this.state = 3949; - this.defaultExpression(); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 3950; - localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3951; - this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3727; + this.nonReserved(); } break; } @@ -18442,16 +17666,16 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public stringLit(): StringLitContext { - let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 388, SparkSqlParser.RULE_stringLit); + public quotedIdentifier(): QuotedIdentifierContext { + let localContext = new QuotedIdentifierContext(this.context, this.state); + this.enterRule(localContext, 322, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3954; + this.state = 3730; _la = this.tokenStream.LA(1); - if(!(_la === 377 || _la === 378)) { + if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); } else { @@ -18474,30 +17698,32 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public commentStr(): CommentStrContext { - let localContext = new CommentStrContext(this.context, this.state); - this.enterRule(localContext, 390, SparkSqlParser.RULE_commentStr); + public number_(): NumberContext { + let localContext = new NumberContext(this.context, this.state); + this.enterRule(localContext, 324, SparkSqlParser.RULE_number); + let _la: number; try { - this.state = 3958; + this.enterOuterAlt(localContext, 1); + { + this.state = 3733; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.STRING_LITERAL: - case SparkSqlParser.DOUBLEQUOTED_STRING: - this.enterOuterAlt(localContext, 1); - { - this.state = 3956; - this.stringLit(); - } - break; - case SparkSqlParser.KW_NULL: - this.enterOuterAlt(localContext, 2); + _la = this.tokenStream.LA(1); + if (_la === 362) { { - this.state = 3957; - this.match(SparkSqlParser.KW_NULL); + this.state = 3732; + this.match(SparkSqlParser.MINUS); } - break; - default: - throw new antlr.NoViableAltException(this); + } + + this.state = 3735; + _la = this.tokenStream.LA(1); + if(!(((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 511) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -18514,30 +17740,110 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } - public version(): VersionContext { - let localContext = new VersionContext(this.context, this.state); - this.enterRule(localContext, 392, SparkSqlParser.RULE_version); + public alterColumnAction(): AlterColumnActionContext { + let localContext = new AlterColumnActionContext(this.context, this.state); + this.enterRule(localContext, 326, SparkSqlParser.RULE_alterColumnAction); + let _la: number; try { - this.state = 3962; + this.state = 3750; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.INTEGER_VALUE: + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { + case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3960; - this.match(SparkSqlParser.INTEGER_VALUE); + this.state = 3737; + this.match(SparkSqlParser.KW_TYPE); + this.state = 3738; + this.dataType(); } break; - case SparkSqlParser.STRING_LITERAL: - case SparkSqlParser.DOUBLEQUOTED_STRING: + case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3961; - this.stringLit(); + this.state = 3739; + this.match(SparkSqlParser.KW_COMMENT); + this.state = 3740; + localContext._comment = this.stringLit(); } break; - default: - throw new antlr.NoViableAltException(this); + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 3741; + this.colPosition(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 3742; + localContext._setOrDrop = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 96 || _la === 269)) { + localContext._setOrDrop = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3743; + this.match(SparkSqlParser.KW_NOT); + this.state = 3744; + this.match(SparkSqlParser.KW_NULL); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 3745; + this.match(SparkSqlParser.KW_SET); + this.state = 3746; + this.match(SparkSqlParser.KW_DEFAULT); + this.state = 3747; + this.expression(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 3748; + localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); + this.state = 3749; + this.match(SparkSqlParser.KW_DEFAULT); + } + 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 stringLit(): StringLitContext { + let localContext = new StringLitContext(this.context, this.state); + this.enterRule(localContext, 328, SparkSqlParser.RULE_stringLit); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3752; + _la = this.tokenStream.LA(1); + if(!(_la === 377 || _la === 378)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -18556,12 +17862,12 @@ export class SparkSqlParser extends SQLParserBase { } public ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 394, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 330, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 3754; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18588,12 +17894,12 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 396, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 332, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3966; + this.state = 3756; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18620,12 +17926,12 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 398, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 334, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3968; + this.state = 3758; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18653,15 +17959,15 @@ export class SparkSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 46: + case 37: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 52: + case 42: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 138: + case 114: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 140: + case 116: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 142: + case 118: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18721,7 +18027,7 @@ export class SparkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,393,3971,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,393,3761,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, @@ -18748,1719 +18054,1630 @@ export class SparkSqlParser extends SQLParserBase { 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,1,0,5,0,402,8,0,10,0,12,0,405,9,0, - 1,0,1,0,1,1,1,1,3,1,411,8,1,1,2,1,2,3,2,415,8,2,1,2,1,2,1,2,3,2, - 420,8,2,1,2,1,2,1,2,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2,3,2,432,8,2, - 1,2,1,2,1,2,1,2,1,2,1,2,5,2,440,8,2,10,2,12,2,443,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,461,8, - 2,1,2,1,2,3,2,465,8,2,1,2,1,2,1,2,1,2,3,2,471,8,2,1,2,3,2,474,8, - 2,1,2,3,2,477,8,2,1,2,1,2,1,2,1,2,1,2,3,2,484,8,2,1,2,3,2,487,8, - 2,1,2,1,2,3,2,491,8,2,1,2,3,2,494,8,2,1,2,1,2,1,2,3,2,499,8,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,511,8,2,10,2,12,2,514, - 9,2,1,2,1,2,1,2,1,2,1,2,3,2,521,8,2,1,2,3,2,524,8,2,1,2,1,2,3,2, - 528,8,2,1,2,3,2,531,8,2,1,2,1,2,1,2,1,2,3,2,537,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,548,8,2,1,2,1,2,1,2,1,2,3,2,554,8,2, - 1,2,1,2,1,2,3,2,559,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 7,164,2,165,7,165,2,166,7,166,2,167,7,167,1,0,5,0,338,8,0,10,0,12, + 0,341,9,0,1,0,1,0,1,1,1,1,3,1,347,8,1,1,2,1,2,3,2,351,8,2,1,2,1, + 2,1,2,3,2,356,8,2,1,2,1,2,1,2,1,2,1,2,3,2,363,8,2,1,2,1,2,1,2,3, + 2,368,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,378,8,2,10,2,12,2, + 381,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,400,8,2,1,2,1,2,3,2,404,8,2,1,2,1,2,1,2,1,2,3,2, + 410,8,2,1,2,3,2,413,8,2,1,2,3,2,416,8,2,1,2,1,2,3,2,420,8,2,1,2, + 3,2,423,8,2,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2,1,2,1,2,3,2,434,8,2, + 1,2,3,2,437,8,2,1,2,1,2,3,2,441,8,2,1,2,3,2,444,8,2,1,2,1,2,1,2, + 3,2,449,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,462, + 8,2,10,2,12,2,465,9,2,1,2,1,2,3,2,469,8,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,3,2,478,8,2,1,2,3,2,481,8,2,1,2,1,2,3,2,485,8,2,1,2,3,2,488, + 8,2,1,2,1,2,1,2,1,2,3,2,494,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,3,2,505,8,2,1,2,1,2,1,2,1,2,3,2,511,8,2,1,2,1,2,1,2,3,2,516, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,3,2,592,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,602,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,613,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,635,8,2,1,2,1,2,1,2,3,2,640,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,649,8,2,1,2,1,2,3,2,653,8,2,1,2,1,2,1,2,1,2, - 3,2,659,8,2,1,2,1,2,3,2,663,8,2,1,2,1,2,1,2,3,2,668,8,2,1,2,1,2, - 1,2,1,2,3,2,674,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 686,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,694,8,2,1,2,1,2,1,2,1,2,3,2, - 700,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,711,8,2,1,2,1,2, - 3,2,715,8,2,1,2,4,2,718,8,2,11,2,12,2,719,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,735,8,2,1,2,1,2,3,2,739,8,2,1, - 2,1,2,1,2,5,2,744,8,2,10,2,12,2,747,9,2,1,2,3,2,750,8,2,1,2,1,2, - 1,2,1,2,3,2,756,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,549,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,559,8,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,570,8,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,581,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 592,8,2,1,2,1,2,1,2,3,2,597,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 606,8,2,1,2,1,2,3,2,610,8,2,1,2,1,2,1,2,1,2,3,2,616,8,2,1,2,1,2, + 3,2,620,8,2,1,2,1,2,1,2,3,2,625,8,2,1,2,1,2,1,2,1,2,3,2,631,8,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,643,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,651,8,2,1,2,1,2,1,2,1,2,3,2,657,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,668,8,2,1,2,1,2,3,2,672,8,2,1,2,4,2, + 675,8,2,11,2,12,2,676,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,3,2,692,8,2,1,2,1,2,3,2,696,8,2,1,2,1,2,1,2,5,2,701,8, + 2,10,2,12,2,704,9,2,1,2,3,2,707,8,2,1,2,1,2,1,2,1,2,3,2,713,8,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1,2,3,2,794,8,2,1,2,1,2, - 1,2,1,2,1,2,3,2,801,8,2,1,2,1,2,1,2,1,2,3,2,807,8,2,1,2,3,2,810, - 8,2,1,2,3,2,813,8,2,1,2,1,2,3,2,817,8,2,1,2,1,2,3,2,821,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,829,8,2,10,2,12,2,832,9,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,840,8,2,1,2,3,2,843,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,3,2,852,8,2,1,2,1,2,1,2,3,2,857,8,2,1,2,1,2,1,2,1,2,3,2,863,8, - 2,1,2,1,2,1,2,1,2,1,2,3,2,870,8,2,1,2,3,2,873,8,2,1,2,1,2,3,2,877, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,886,8,2,10,2,12,2,889,9,2,3, - 2,891,8,2,1,2,1,2,1,2,1,2,3,2,897,8,2,1,2,1,2,3,2,901,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,916,8,2,10,2,12, - 2,919,9,2,1,2,1,2,1,2,1,2,1,2,3,2,926,8,2,1,2,1,2,3,2,930,8,2,1, - 2,1,2,1,2,1,2,3,2,936,8,2,1,2,3,2,939,8,2,1,2,1,2,3,2,943,8,2,1, - 2,3,2,946,8,2,1,2,1,2,1,2,1,2,3,2,952,8,2,1,2,1,2,1,2,3,2,957,8, - 2,1,2,1,2,3,2,961,8,2,1,2,1,2,1,2,1,2,1,2,3,2,968,8,2,1,2,3,2,971, - 8,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,3,2,981,8,2,1,2,1,2,1,2, - 3,2,986,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,995,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1003,8,2,1,2,1,2,1,2,1,2,3,2,1009,8,2,1,2,3,2,1012, - 8,2,1,2,3,2,1015,8,2,1,2,1,2,1,2,1,2,3,2,1021,8,2,1,2,1,2,3,2,1025, - 8,2,1,2,1,2,1,2,3,2,1030,8,2,1,2,3,2,1033,8,2,1,2,1,2,3,2,1037,8, - 2,3,2,1039,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1047,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1055,8,2,1,2,3,2,1058,8,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1065,8,2,1,2,3,2,1068,8,2,1,2,3,2,1071,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,3,2,1085,8,2,1,2,1,2,1,2,1,2,3, - 2,1091,8,2,1,2,1,2,1,2,3,2,1096,8,2,1,2,3,2,1099,8,2,1,2,1,2,3,2, - 1103,8,2,1,2,3,2,1106,8,2,1,2,1,2,3,2,1110,8,2,1,2,1,2,1,2,1,2,1, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,743,8,2,1,2, + 1,2,3,2,747,8,2,1,2,1,2,1,2,3,2,752,8,2,1,2,1,2,1,2,1,2,1,2,3,2, + 759,8,2,1,2,1,2,1,2,1,2,3,2,765,8,2,1,2,3,2,768,8,2,1,2,3,2,771, + 8,2,1,2,1,2,3,2,775,8,2,1,2,1,2,3,2,779,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,5,2,788,8,2,10,2,12,2,791,9,2,1,2,1,2,1,2,1,2,1,2,1,2,3, + 2,799,8,2,1,2,3,2,802,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,811,8, + 2,1,2,1,2,1,2,3,2,816,8,2,1,2,1,2,1,2,1,2,3,2,822,8,2,1,2,1,2,1, + 2,1,2,1,2,3,2,829,8,2,1,2,3,2,832,8,2,1,2,1,2,3,2,836,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,849,8,2,10,2,12,2,852, + 9,2,3,2,854,8,2,1,2,1,2,1,2,1,2,3,2,860,8,2,1,2,1,2,3,2,864,8,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2, + 881,8,2,10,2,12,2,884,9,2,1,2,1,2,1,2,1,2,1,2,3,2,891,8,2,1,2,1, + 2,3,2,895,8,2,1,2,1,2,1,2,1,2,3,2,901,8,2,1,2,3,2,904,8,2,1,2,1, + 2,3,2,908,8,2,1,2,3,2,911,8,2,1,2,1,2,1,2,1,2,3,2,917,8,2,1,2,1, + 2,1,2,3,2,922,8,2,1,2,1,2,3,2,926,8,2,1,2,1,2,1,2,1,2,1,2,3,2,933, + 8,2,1,2,3,2,936,8,2,1,2,3,2,939,8,2,1,2,1,2,1,2,1,2,1,2,3,2,946, + 8,2,1,2,1,2,1,2,3,2,951,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,960, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,968,8,2,1,2,1,2,1,2,1,2,3,2,974, + 8,2,1,2,3,2,977,8,2,1,2,3,2,980,8,2,1,2,1,2,1,2,1,2,3,2,986,8,2, + 1,2,1,2,3,2,990,8,2,1,2,1,2,1,2,3,2,995,8,2,1,2,3,2,998,8,2,1,2, + 1,2,3,2,1002,8,2,3,2,1004,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1012,8, + 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1020,8,2,1,2,3,2,1023,8,2,1,2,1,2, + 1,2,1,2,1,2,3,2,1030,8,2,1,2,3,2,1033,8,2,1,2,3,2,1036,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,3,2,1045,8,2,1,2,1,2,1,2,3,2,1050,8,2,1,2, + 1,2,1,2,1,2,3,2,1056,8,2,1,2,1,2,1,2,3,2,1061,8,2,1,2,3,2,1064,8, + 2,1,2,1,2,3,2,1068,8,2,1,2,3,2,1071,8,2,1,2,1,2,3,2,1075,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1085,8,2,1,2,1,2,1,2,3,2,1090,8, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1101,8,2,10,2,12,2,1104, + 9,2,3,2,1106,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1114,8,2,1,2,1,2,1, + 2,1,2,3,2,1120,8,2,1,2,3,2,1123,8,2,1,2,3,2,1126,8,2,1,2,1,2,1,2, + 3,2,1131,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1139,8,2,1,2,1,2,1,2,3, + 2,1144,8,2,1,2,1,2,1,2,1,2,3,2,1150,8,2,1,2,1,2,1,2,1,2,3,2,1156, + 8,2,1,2,3,2,1159,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1166,8,2,1,2,1,2,1, + 2,5,2,1171,8,2,10,2,12,2,1174,9,2,1,2,1,2,1,2,5,2,1179,8,2,10,2, + 12,2,1182,9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1193,8,2,1, + 2,1,2,1,2,1,2,5,2,1199,8,2,10,2,12,2,1202,9,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,1136,8,2,10,2,12,2,1139,9,2,3,2,1141,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1149,8,2,1,2,1,2,1,2,1,2,3,2,1155,8,2,1,2, - 3,2,1158,8,2,1,2,3,2,1161,8,2,1,2,1,2,1,2,3,2,1166,8,2,1,2,1,2,1, - 2,1,2,1,2,1,2,3,2,1174,8,2,1,2,1,2,1,2,3,2,1179,8,2,1,2,1,2,1,2, - 1,2,3,2,1185,8,2,1,2,1,2,1,2,1,2,3,2,1191,8,2,1,2,3,2,1194,8,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1201,8,2,1,2,1,2,1,2,5,2,1206,8,2,10,2,12, - 2,1209,9,2,1,2,1,2,1,2,5,2,1214,8,2,10,2,12,2,1217,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1231,8,2,10,2,12,2,1234, - 9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1258,8,2,10,2,12,2,1261,9,2,3,2, - 1263,8,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270,9,2,1,2,1,2,1,2,1,2, - 5,2,1276,8,2,10,2,12,2,1279,9,2,1,2,1,2,1,2,1,2,5,2,1285,8,2,10, - 2,12,2,1288,9,2,1,2,1,2,1,2,3,2,1293,8,2,1,2,1,2,1,2,3,2,1298,8, - 2,1,2,1,2,1,2,3,2,1303,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1310,8,2,1,2, - 1,2,1,2,3,2,1315,8,2,1,2,1,2,1,2,3,2,1320,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1327,8,2,1,2,1,2,1,2,1,2,5,2,1333,8,2,10,2,12,2,1336,9,2,3, - 2,1338,8,2,1,3,1,3,3,3,1342,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6, - 1,6,1,6,3,6,1354,8,6,1,6,1,6,3,6,1358,8,6,1,6,1,6,1,6,1,6,1,6,3, - 6,1365,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,3,6,1481,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1489, - 8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1497,8,6,1,6,1,6,1,6,1,6,1,6,1,6, - 1,6,3,6,1506,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1516,8,6,1, - 7,1,7,3,7,1520,8,7,1,7,3,7,1523,8,7,1,7,1,7,3,7,1527,8,7,1,7,1,7, - 1,8,1,8,3,8,1533,8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9, - 1545,8,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1557, - 8,10,1,10,1,10,1,10,3,10,1562,8,10,1,11,1,11,1,11,1,12,1,12,1,12, - 1,13,3,13,1571,8,13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1579,8,14, - 1,14,1,14,1,14,3,14,1584,8,14,3,14,1586,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,3,14,1594,8,14,1,14,1,14,1,14,3,14,1599,8,14,1,14,1,14, - 3,14,1603,8,14,1,14,3,14,1606,8,14,1,14,1,14,1,14,1,14,1,14,1,14, - 3,14,1614,8,14,1,14,1,14,1,14,3,14,1619,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,3,14,1628,8,14,1,14,1,14,1,14,3,14,1633,8,14,1,14, - 3,14,1636,8,14,1,14,1,14,1,14,3,14,1641,8,14,1,14,1,14,3,14,1645, - 8,14,1,14,1,14,1,14,3,14,1650,8,14,3,14,1652,8,14,1,15,1,15,3,15, - 1656,8,15,1,16,1,16,1,16,1,16,1,16,5,16,1663,8,16,10,16,12,16,1666, - 9,16,1,16,1,16,1,17,1,17,1,17,3,17,1673,8,17,1,17,1,17,1,17,1,17, - 3,17,1679,8,17,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20, - 1690,8,20,1,21,1,21,1,21,5,21,1695,8,21,10,21,12,21,1698,9,21,1, - 22,1,22,1,22,1,22,5,22,1704,8,22,10,22,12,22,1707,9,22,1,23,1,23, - 3,23,1711,8,23,1,23,3,23,1714,8,23,1,23,1,23,1,23,1,23,1,24,1,24, - 1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25, - 1,25,1,25,5,25,1737,8,25,10,25,12,25,1740,9,25,1,26,1,26,1,26,1, - 27,1,27,1,27,1,27,5,27,1749,8,27,10,27,12,27,1752,9,27,1,27,1,27, - 1,28,1,28,3,28,1758,8,28,1,28,3,28,1761,8,28,1,29,1,29,1,29,5,29, - 1766,8,29,10,29,12,29,1769,9,29,1,29,3,29,1772,8,29,1,30,1,30,1, - 30,1,30,3,30,1778,8,30,1,31,1,31,1,31,1,31,5,31,1784,8,31,10,31, - 12,31,1787,9,31,1,31,1,31,1,32,1,32,3,32,1793,8,32,1,32,3,32,1796, - 8,32,1,33,1,33,1,33,1,33,5,33,1802,8,33,10,33,12,33,1805,9,33,1, - 33,1,33,1,34,1,34,1,34,1,34,5,34,1813,8,34,10,34,12,34,1816,9,34, - 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1826,8,35,1,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1834,8,36,1,37,1,37,1,37,1,37,3,37,1840, - 8,37,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,4,39,1850,8,39,11,39, - 12,39,1851,1,39,1,39,1,39,1,39,1,39,3,39,1859,8,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1866,8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1878,8,39,1,39,1,39,1,39,1,39,5,39,1884,8,39,10,39, - 12,39,1887,9,39,1,39,5,39,1890,8,39,10,39,12,39,1893,9,39,1,39,5, - 39,1896,8,39,10,39,12,39,1899,9,39,3,39,1901,8,39,1,40,1,40,1,41, - 1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1,46,1,46,3,46,1917, - 8,46,1,47,1,47,1,47,5,47,1922,8,47,10,47,12,47,1925,9,47,1,48,1, - 48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1935,8,49,1,50,1,50,1,50,1, - 50,1,50,5,50,1942,8,50,10,50,12,50,1945,9,50,3,50,1947,8,50,1,50, - 1,50,1,50,1,50,1,50,5,50,1954,8,50,10,50,12,50,1957,9,50,3,50,1959, - 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1966,8,50,10,50,12,50,1969,9, - 50,3,50,1971,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1978,8,50,10,50, - 12,50,1981,9,50,3,50,1983,8,50,1,50,3,50,1986,8,50,1,50,1,50,1,50, - 3,50,1991,8,50,3,50,1993,8,50,1,50,1,50,3,50,1997,8,50,1,51,1,51, - 1,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2008,8,52,1,52,1,52,1,52, - 1,52,3,52,2014,8,52,1,52,1,52,1,52,1,52,3,52,2020,8,52,1,52,5,52, - 2023,8,52,10,52,12,52,2026,9,52,1,53,1,53,1,53,1,53,1,53,1,53,1, - 53,1,53,1,53,3,53,2037,8,53,1,54,1,54,3,54,2041,8,54,1,54,3,54,2044, - 8,54,1,54,1,54,3,54,2048,8,54,1,55,1,55,4,55,2052,8,55,11,55,12, - 55,2053,1,56,1,56,3,56,2058,8,56,1,56,1,56,1,56,1,56,5,56,2064,8, - 56,10,56,12,56,2067,9,56,1,56,3,56,2070,8,56,1,56,3,56,2073,8,56, - 1,56,3,56,2076,8,56,1,56,3,56,2079,8,56,1,56,1,56,3,56,2083,8,56, - 1,57,1,57,3,57,2087,8,57,1,57,5,57,2090,8,57,10,57,12,57,2093,9, - 57,1,57,3,57,2096,8,57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1, - 57,3,57,2105,8,57,1,57,1,57,3,57,2109,8,57,1,57,5,57,2112,8,57,10, - 57,12,57,2115,9,57,1,57,3,57,2118,8,57,1,57,3,57,2121,8,57,1,57, - 3,57,2124,8,57,1,57,3,57,2127,8,57,3,57,2129,8,57,1,58,1,58,1,58, - 1,58,3,58,2135,8,58,1,58,1,58,1,58,1,58,1,58,3,58,2142,8,58,1,58, - 1,58,1,58,3,58,2147,8,58,1,58,3,58,2150,8,58,1,58,3,58,2153,8,58, - 1,58,1,58,3,58,2157,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 3,58,2167,8,58,1,58,1,58,3,58,2171,8,58,3,58,2173,8,58,1,58,3,58, - 2176,8,58,1,58,1,58,3,58,2180,8,58,1,59,1,59,5,59,2184,8,59,10,59, - 12,59,2187,9,59,1,59,3,59,2190,8,59,1,59,1,59,1,60,1,60,1,60,1,61, - 1,61,1,61,1,61,3,61,2201,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, - 1,62,3,62,2211,8,62,1,62,1,62,3,62,2215,8,62,1,62,1,62,1,62,1,63, - 1,63,1,63,1,63,1,63,1,63,1,63,3,63,2227,8,63,1,63,1,63,1,63,1,64, - 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2239,8,64,1,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2252,8,65,10,65,12,65,2255, - 9,65,1,65,1,65,3,65,2259,8,65,1,66,1,66,1,66,1,66,3,66,2265,8,66, - 1,67,1,67,1,67,5,67,2270,8,67,10,67,12,67,2273,9,67,1,68,1,68,1, - 68,1,68,1,69,1,69,1,69,1,70,1,70,1,70,1,71,1,71,1,71,3,71,2288,8, - 71,1,71,5,71,2291,8,71,10,71,12,71,2294,9,71,1,71,1,71,1,72,1,72, - 1,72,1,72,1,72,1,72,5,72,2304,8,72,10,72,12,72,2307,9,72,1,72,1, - 72,3,72,2311,8,72,1,73,1,73,1,73,1,73,5,73,2317,8,73,10,73,12,73, - 2320,9,73,1,73,5,73,2323,8,73,10,73,12,73,2326,9,73,1,73,3,73,2329, - 8,73,1,73,3,73,2332,8,73,1,74,1,74,1,75,3,75,2337,8,75,1,75,1,75, - 1,75,1,75,1,75,3,75,2344,8,75,1,75,1,75,1,75,1,75,3,75,2350,8,75, - 1,76,1,76,1,76,1,76,1,76,5,76,2357,8,76,10,76,12,76,2360,9,76,1, - 76,1,76,1,76,1,76,1,76,5,76,2367,8,76,10,76,12,76,2370,9,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76,2382,8,76,10,76, - 12,76,2385,9,76,1,76,1,76,3,76,2389,8,76,3,76,2391,8,76,1,77,1,77, - 1,77,3,77,2396,8,77,1,78,1,78,1,78,1,78,1,78,5,78,2403,8,78,10,78, - 12,78,2406,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2416, - 8,78,10,78,12,78,2419,9,78,1,78,1,78,3,78,2423,8,78,1,79,1,79,3, - 79,2427,8,79,1,80,1,80,1,80,1,80,1,80,3,80,2434,8,80,1,80,1,80,1, - 80,3,80,2439,8,80,5,80,2441,8,80,10,80,12,80,2444,9,80,3,80,2446, - 8,80,1,80,3,80,2449,8,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,5,81,2461,8,81,10,81,12,81,2464,9,81,1,81,1,81,1,81,1, - 82,1,82,1,82,1,82,1,82,5,82,2474,8,82,10,82,12,82,2477,9,82,1,82, - 1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8,83,1,83,3,83,2488,8,83, - 1,84,1,84,3,84,2492,8,84,1,84,1,84,1,84,1,84,3,84,2498,8,84,1,84, - 3,84,2501,8,84,1,85,1,85,1,85,1,86,1,86,3,86,2508,8,86,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,87,5,87,2518,8,87,10,87,12,87,2521,9, - 87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,2529,8,88,10,88,12,88,2532, - 9,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,2542,8,88,10,88, - 12,88,2545,9,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,2553,8,89,10, - 89,12,89,2556,9,89,1,89,1,89,3,89,2560,8,89,1,90,1,90,1,91,1,91, - 1,92,1,92,3,92,2568,8,92,1,93,1,93,1,94,3,94,2573,8,94,1,94,1,94, - 1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,97,1,97,1,97,3,97,2587,8,97, - 1,97,1,97,1,97,1,97,1,97,5,97,2594,8,97,10,97,12,97,2597,9,97,3, - 97,2599,8,97,1,97,1,97,1,97,3,97,2604,8,97,1,97,1,97,1,97,5,97,2609, - 8,97,10,97,12,97,2612,9,97,3,97,2614,8,97,1,98,1,98,1,99,1,99,3, - 99,2620,8,99,1,99,1,99,5,99,2624,8,99,10,99,12,99,2627,9,99,3,99, - 2629,8,99,1,100,1,100,1,100,3,100,2634,8,100,1,101,1,101,1,101,3, - 101,2639,8,101,1,101,1,101,3,101,2643,8,101,1,101,1,101,1,101,1, - 101,3,101,2649,8,101,1,101,1,101,3,101,2653,8,101,1,102,3,102,2656, - 8,102,1,102,1,102,1,102,3,102,2661,8,102,1,102,3,102,2664,8,102, - 1,102,1,102,1,102,3,102,2669,8,102,1,102,1,102,3,102,2673,8,102, - 1,102,3,102,2676,8,102,1,102,3,102,2679,8,102,1,103,1,103,1,103, - 1,103,3,103,2685,8,103,1,104,1,104,1,104,3,104,2690,8,104,1,104, - 1,104,1,104,1,104,1,104,3,104,2697,8,104,1,105,3,105,2700,8,105, - 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,3,105,2718,8,105,3,105,2720,8,105, - 1,105,3,105,2723,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107, - 5,107,2732,8,107,10,107,12,107,2735,9,107,1,108,1,108,1,108,1,108, - 5,108,2741,8,108,10,108,12,108,2744,9,108,1,108,1,108,1,109,1,109, - 3,109,2750,8,109,1,110,1,110,1,110,1,110,5,110,2756,8,110,10,110, - 12,110,2759,9,110,1,110,1,110,1,111,1,111,3,111,2765,8,111,1,112, - 1,112,1,112,3,112,2770,8,112,1,112,3,112,2773,8,112,1,112,3,112, - 2776,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2784,8,112, - 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2792,8,112,1,112,1,112, - 1,112,1,112,3,112,2798,8,112,1,113,1,113,1,113,1,113,5,113,2804, - 8,113,10,113,12,113,2807,9,113,1,113,1,113,1,114,1,114,1,114,3,114, - 2814,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2821,8,114,1,114, - 1,114,1,114,1,114,1,114,3,114,2828,8,114,3,114,2830,8,114,1,115, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2841,8,115, - 10,115,12,115,2844,9,115,1,115,1,115,1,115,3,115,2849,8,115,3,115, - 2851,8,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2859,8,115, - 10,115,12,115,2862,9,115,1,115,1,115,1,115,3,115,2867,8,115,3,115, - 2869,8,115,1,116,1,116,1,116,1,116,1,117,1,117,3,117,2877,8,117, - 1,118,1,118,3,118,2881,8,118,1,119,1,119,1,119,1,119,1,119,5,119, - 2888,8,119,10,119,12,119,2891,9,119,3,119,2893,8,119,1,119,1,119, - 1,119,1,120,3,120,2899,8,120,1,120,1,120,3,120,2903,8,120,3,120, - 2905,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2914, - 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2926,8,121,3,121,2928,8,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2935,8,121,1,121,1,121,1,121,1,121,1,121,3,121,2942,8,121, - 1,121,1,121,1,121,1,121,3,121,2948,8,121,1,121,1,121,1,121,1,121, - 3,121,2954,8,121,3,121,2956,8,121,1,122,1,122,1,122,5,122,2961,8, - 122,10,122,12,122,2964,9,122,1,123,1,123,1,123,5,123,2969,8,123, - 10,123,12,123,2972,9,123,1,124,1,124,1,124,5,124,2977,8,124,10,124, - 12,124,2980,9,124,1,125,1,125,1,125,3,125,2985,8,125,1,126,1,126, - 1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127,1,127,3,127,2997, - 8,127,1,127,1,127,1,128,1,128,3,128,3003,8,128,1,128,3,128,3006, - 8,128,1,128,1,128,3,128,3010,8,128,3,128,3012,8,128,1,129,1,129, - 1,129,5,129,3017,8,129,10,129,12,129,3020,9,129,1,130,1,130,1,130, - 1,130,5,130,3026,8,130,10,130,12,130,3029,9,130,1,130,1,130,1,131, - 1,131,3,131,3035,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 3043,8,132,10,132,12,132,3046,9,132,1,132,1,132,3,132,3050,8,132, - 1,133,1,133,3,133,3054,8,133,1,134,1,134,1,135,1,135,1,135,1,135, - 1,136,1,136,3,136,3064,8,136,1,137,1,137,1,137,5,137,3069,8,137, - 10,137,12,137,3072,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,3,138,3084,8,138,3,138,3086,8,138,1,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3094,8,138,10,138,12,138,3097,9,138, - 1,139,3,139,3100,8,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, - 3108,8,139,1,139,1,139,1,139,1,139,1,139,5,139,3115,8,139,10,139, - 12,139,3118,9,139,1,139,1,139,1,139,3,139,3123,8,139,1,139,1,139, - 1,139,1,139,1,139,1,139,3,139,3131,8,139,1,139,1,139,1,139,3,139, - 3136,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,5,139, - 3146,8,139,10,139,12,139,3149,9,139,1,139,1,139,3,139,3153,8,139, - 1,139,3,139,3156,8,139,1,139,1,139,1,139,1,139,3,139,3162,8,139, - 1,139,1,139,3,139,3166,8,139,1,139,1,139,1,139,3,139,3171,8,139, - 1,139,1,139,1,139,3,139,3176,8,139,1,139,1,139,1,139,3,139,3181, - 8,139,1,140,1,140,1,140,1,140,3,140,3187,8,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,5,140,3208,8,140,10,140,12,140,3211, - 9,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3221, - 8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3233,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3243,8,142,11,142,12,142,3244,1,142,1,142,3,142,3249,8,142, - 1,142,1,142,1,142,1,142,1,142,4,142,3256,8,142,11,142,12,142,3257, - 1,142,1,142,3,142,3262,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3278,8,142, - 10,142,12,142,3281,9,142,3,142,3283,8,142,1,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3291,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,3,142,3300,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3309,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3330,8,142,11,142,12,142,3331,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3348, - 8,142,1,142,1,142,1,142,5,142,3353,8,142,10,142,12,142,3356,9,142, - 3,142,3358,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 3367,8,142,1,142,1,142,3,142,3371,8,142,1,142,1,142,3,142,3375,8, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,4,142,3385,8, - 142,11,142,12,142,3386,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,3,142,3412,8,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3419,8,142,1,142,3,142,3422,8,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3437,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3458,8,142,1,142,1,142,3,142,3462,8,142,3,142,3464,8,142,1, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3474,8,142,10, - 142,12,142,3477,9,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 3,143,3486,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,4,144,3499,8,144,11,144,12,144,3500,3,144,3503, - 8,144,1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,149,1,149, - 1,149,3,149,3516,8,149,1,150,1,150,3,150,3520,8,150,1,151,1,151, - 1,151,4,151,3525,8,151,11,151,12,151,3526,1,152,1,152,1,152,3,152, - 3532,8,152,1,153,1,153,1,153,1,153,1,153,1,154,3,154,3540,8,154, - 1,154,1,154,1,154,3,154,3545,8,154,1,155,1,155,1,156,1,156,1,157, - 1,157,1,157,3,157,3554,8,157,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,3586,8,158,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3603, - 8,159,1,159,1,159,3,159,3607,8,159,1,159,1,159,1,159,1,159,3,159, - 3613,8,159,1,159,1,159,1,159,1,159,3,159,3619,8,159,1,159,1,159, - 1,159,1,159,1,159,5,159,3626,8,159,10,159,12,159,3629,9,159,1,159, - 3,159,3632,8,159,3,159,3634,8,159,1,160,1,160,1,160,5,160,3639,8, - 160,10,160,12,160,3642,9,160,1,161,1,161,1,161,5,161,3647,8,161, - 10,161,12,161,3650,9,161,1,162,1,162,1,162,5,162,3655,8,162,10,162, - 12,162,3658,9,162,1,163,1,163,1,163,5,163,3663,8,163,10,163,12,163, - 3666,9,163,1,164,1,164,1,164,1,164,1,164,3,164,3673,8,164,1,165, - 1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167,5,167,3684,8,167, - 10,167,12,167,3687,9,167,1,168,1,168,1,168,1,168,3,168,3693,8,168, - 1,168,3,168,3696,8,168,1,169,1,169,1,169,5,169,3701,8,169,10,169, - 12,169,3704,9,169,1,170,1,170,1,170,5,170,3709,8,170,10,170,12,170, - 3712,9,170,1,171,1,171,1,171,1,171,1,171,3,171,3719,8,171,1,172, - 1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,5,173,3731, - 8,173,10,173,12,173,3734,9,173,1,174,1,174,3,174,3738,8,174,1,174, - 1,174,1,174,3,174,3743,8,174,1,174,3,174,3746,8,174,1,175,1,175, - 1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,3757,8,176,10,176, - 12,176,3760,9,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 5,179,3781,8,179,10,179,12,179,3784,9,179,1,179,1,179,1,179,1,179, - 1,179,5,179,3791,8,179,10,179,12,179,3794,9,179,3,179,3796,8,179, - 1,179,1,179,1,179,1,179,1,179,5,179,3803,8,179,10,179,12,179,3806, - 9,179,3,179,3808,8,179,3,179,3810,8,179,1,179,3,179,3813,8,179,1, - 179,3,179,3816,8,179,1,180,1,180,1,180,1,180,1,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,3834,8, - 180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,3843,8,181,1, - 182,1,182,1,182,5,182,3848,8,182,10,182,12,182,3851,9,182,1,183, - 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,3,183,3862,8,183, - 1,184,1,184,1,185,1,185,1,185,5,185,3869,8,185,10,185,12,185,3872, - 9,185,1,186,1,186,1,186,1,187,1,187,4,187,3879,8,187,11,187,12,187, - 3880,1,187,3,187,3884,8,187,1,188,1,188,3,188,3888,8,188,1,189,1, - 189,1,189,1,189,3,189,3894,8,189,1,190,1,190,1,191,1,191,1,192,3, - 192,3901,8,192,1,192,1,192,3,192,3905,8,192,1,192,1,192,3,192,3909, - 8,192,1,192,1,192,3,192,3913,8,192,1,192,1,192,3,192,3917,8,192, - 1,192,1,192,3,192,3921,8,192,1,192,1,192,3,192,3925,8,192,1,192, - 1,192,3,192,3929,8,192,1,192,1,192,3,192,3933,8,192,1,192,1,192, - 3,192,3937,8,192,1,192,3,192,3940,8,192,1,193,1,193,1,193,1,193, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,3953,8,193,1,194, - 1,194,1,195,1,195,3,195,3959,8,195,1,196,1,196,3,196,3963,8,196, - 1,197,1,197,1,198,1,198,1,199,1,199,1,199,9,1137,1207,1215,1232, - 1259,1268,1277,1286,1334,4,104,276,280,284,200,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,0,64,2,0,78,78,229,229,2,0,34,34,247,247,2,0, - 123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58, - 108,108,122,122,173,173,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96, - 96,289,289,2,0,8,8,167,167,1,0,335,336,3,0,72,72,190,190,261,261, - 3,0,73,73,191,191,262,262,4,0,102,102,148,148,270,270,323,323,3, - 0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157,157,3, - 0,10,10,290,290,331,331,2,0,292,292,337,337,2,0,291,291,303,303, - 2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,382,382, - 384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360, - 1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316, - 316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369, - 369,11,0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231, - 231,259,259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0, - 74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138, - 138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28, - 160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14, - 14,140,140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67, - 68,134,135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134, - 134,184,184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67, - 134,134,184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352, - 352,2,0,118,118,226,226,2,0,378,378,389,389,1,0,383,384,2,0,96,96, - 269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34, - 37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103, - 110,113,113,115,118,121,122,125,128,131,131,133,139,141,143,145, - 147,149,151,154,154,156,157,159,159,163,193,195,195,199,201,205, - 207,210,210,212,213,215,219,222,226,228,238,240,249,251,262,264, - 267,269,276,278,292,294,299,302,308,310,310,312,322,326,330,333, - 342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144,144,148, - 148,155,155,158,158,161,161,194,194,203,203,250,250,264,264,270, - 270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143,145,147, - 149,154,156,157,159,160,162,193,195,195,197,202,204,249,251,262, - 265,269,271,292,294,322,324,331,333,351,4586,0,403,1,0,0,0,2,408, - 1,0,0,0,4,1337,1,0,0,0,6,1341,1,0,0,0,8,1343,1,0,0,0,10,1345,1,0, - 0,0,12,1515,1,0,0,0,14,1517,1,0,0,0,16,1532,1,0,0,0,18,1538,1,0, - 0,0,20,1550,1,0,0,0,22,1563,1,0,0,0,24,1566,1,0,0,0,26,1570,1,0, - 0,0,28,1651,1,0,0,0,30,1653,1,0,0,0,32,1657,1,0,0,0,34,1678,1,0, - 0,0,36,1680,1,0,0,0,38,1682,1,0,0,0,40,1689,1,0,0,0,42,1691,1,0, - 0,0,44,1699,1,0,0,0,46,1708,1,0,0,0,48,1719,1,0,0,0,50,1738,1,0, - 0,0,52,1741,1,0,0,0,54,1744,1,0,0,0,56,1755,1,0,0,0,58,1771,1,0, - 0,0,60,1777,1,0,0,0,62,1779,1,0,0,0,64,1790,1,0,0,0,66,1797,1,0, - 0,0,68,1808,1,0,0,0,70,1825,1,0,0,0,72,1833,1,0,0,0,74,1835,1,0, - 0,0,76,1841,1,0,0,0,78,1900,1,0,0,0,80,1902,1,0,0,0,82,1904,1,0, - 0,0,84,1906,1,0,0,0,86,1908,1,0,0,0,88,1910,1,0,0,0,90,1912,1,0, - 0,0,92,1916,1,0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1934,1,0, - 0,0,100,1946,1,0,0,0,102,1998,1,0,0,0,104,2001,1,0,0,0,106,2036, - 1,0,0,0,108,2040,1,0,0,0,110,2049,1,0,0,0,112,2082,1,0,0,0,114,2128, - 1,0,0,0,116,2149,1,0,0,0,118,2181,1,0,0,0,120,2193,1,0,0,0,122,2196, - 1,0,0,0,124,2205,1,0,0,0,126,2219,1,0,0,0,128,2238,1,0,0,0,130,2258, - 1,0,0,0,132,2264,1,0,0,0,134,2266,1,0,0,0,136,2274,1,0,0,0,138,2278, - 1,0,0,0,140,2281,1,0,0,0,142,2284,1,0,0,0,144,2310,1,0,0,0,146,2312, - 1,0,0,0,148,2333,1,0,0,0,150,2349,1,0,0,0,152,2390,1,0,0,0,154,2395, - 1,0,0,0,156,2422,1,0,0,0,158,2426,1,0,0,0,160,2448,1,0,0,0,162,2450, - 1,0,0,0,164,2480,1,0,0,0,166,2482,1,0,0,0,168,2489,1,0,0,0,170,2502, - 1,0,0,0,172,2507,1,0,0,0,174,2509,1,0,0,0,176,2524,1,0,0,0,178,2548, - 1,0,0,0,180,2561,1,0,0,0,182,2563,1,0,0,0,184,2565,1,0,0,0,186,2569, - 1,0,0,0,188,2572,1,0,0,0,190,2576,1,0,0,0,192,2580,1,0,0,0,194,2583, - 1,0,0,0,196,2615,1,0,0,0,198,2628,1,0,0,0,200,2633,1,0,0,0,202,2652, - 1,0,0,0,204,2678,1,0,0,0,206,2684,1,0,0,0,208,2686,1,0,0,0,210,2722, - 1,0,0,0,212,2724,1,0,0,0,214,2728,1,0,0,0,216,2736,1,0,0,0,218,2747, - 1,0,0,0,220,2751,1,0,0,0,222,2762,1,0,0,0,224,2797,1,0,0,0,226,2799, - 1,0,0,0,228,2829,1,0,0,0,230,2850,1,0,0,0,232,2870,1,0,0,0,234,2876, - 1,0,0,0,236,2880,1,0,0,0,238,2882,1,0,0,0,240,2904,1,0,0,0,242,2955, - 1,0,0,0,244,2957,1,0,0,0,246,2965,1,0,0,0,248,2973,1,0,0,0,250,2981, - 1,0,0,0,252,2989,1,0,0,0,254,2996,1,0,0,0,256,3002,1,0,0,0,258,3013, - 1,0,0,0,260,3021,1,0,0,0,262,3034,1,0,0,0,264,3049,1,0,0,0,266,3053, - 1,0,0,0,268,3055,1,0,0,0,270,3057,1,0,0,0,272,3063,1,0,0,0,274,3065, - 1,0,0,0,276,3085,1,0,0,0,278,3180,1,0,0,0,280,3186,1,0,0,0,282,3212, - 1,0,0,0,284,3463,1,0,0,0,286,3485,1,0,0,0,288,3502,1,0,0,0,290,3504, - 1,0,0,0,292,3506,1,0,0,0,294,3508,1,0,0,0,296,3510,1,0,0,0,298,3512, - 1,0,0,0,300,3517,1,0,0,0,302,3524,1,0,0,0,304,3528,1,0,0,0,306,3533, - 1,0,0,0,308,3539,1,0,0,0,310,3546,1,0,0,0,312,3548,1,0,0,0,314,3553, - 1,0,0,0,316,3585,1,0,0,0,318,3633,1,0,0,0,320,3635,1,0,0,0,322,3643, - 1,0,0,0,324,3651,1,0,0,0,326,3659,1,0,0,0,328,3672,1,0,0,0,330,3674, - 1,0,0,0,332,3677,1,0,0,0,334,3680,1,0,0,0,336,3688,1,0,0,0,338,3697, - 1,0,0,0,340,3705,1,0,0,0,342,3718,1,0,0,0,344,3720,1,0,0,0,346,3727, - 1,0,0,0,348,3735,1,0,0,0,350,3747,1,0,0,0,352,3752,1,0,0,0,354,3761, - 1,0,0,0,356,3765,1,0,0,0,358,3815,1,0,0,0,360,3833,1,0,0,0,362,3842, - 1,0,0,0,364,3844,1,0,0,0,366,3861,1,0,0,0,368,3863,1,0,0,0,370,3865, - 1,0,0,0,372,3873,1,0,0,0,374,3883,1,0,0,0,376,3887,1,0,0,0,378,3893, - 1,0,0,0,380,3895,1,0,0,0,382,3897,1,0,0,0,384,3939,1,0,0,0,386,3952, - 1,0,0,0,388,3954,1,0,0,0,390,3958,1,0,0,0,392,3962,1,0,0,0,394,3964, - 1,0,0,0,396,3966,1,0,0,0,398,3968,1,0,0,0,400,402,3,2,1,0,401,400, - 1,0,0,0,402,405,1,0,0,0,403,401,1,0,0,0,403,404,1,0,0,0,404,406, - 1,0,0,0,405,403,1,0,0,0,406,407,5,0,0,1,407,1,1,0,0,0,408,410,3, - 4,2,0,409,411,5,1,0,0,410,409,1,0,0,0,410,411,1,0,0,0,411,3,1,0, - 0,0,412,1338,3,26,13,0,413,415,3,44,22,0,414,413,1,0,0,0,414,415, - 1,0,0,0,415,416,1,0,0,0,416,1338,3,78,39,0,417,419,5,330,0,0,418, - 420,3,36,18,0,419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, - 1338,3,80,40,0,422,423,5,269,0,0,423,426,5,37,0,0,424,427,3,376, - 188,0,425,427,3,388,194,0,426,424,1,0,0,0,426,425,1,0,0,0,427,1338, - 1,0,0,0,428,429,5,59,0,0,429,431,3,36,18,0,430,432,3,190,95,0,431, - 430,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,441,3,82,41,0,434, - 440,3,24,12,0,435,440,3,22,11,0,436,437,5,346,0,0,437,438,7,0,0, - 0,438,440,3,54,27,0,439,434,1,0,0,0,439,435,1,0,0,0,439,436,1,0, - 0,0,440,443,1,0,0,0,441,439,1,0,0,0,441,442,1,0,0,0,442,1338,1,0, - 0,0,443,441,1,0,0,0,444,445,5,11,0,0,445,446,3,36,18,0,446,447,3, - 80,40,0,447,448,5,269,0,0,448,449,7,0,0,0,449,450,3,54,27,0,450, - 1338,1,0,0,0,451,452,5,11,0,0,452,453,3,36,18,0,453,454,3,80,40, - 0,454,455,5,269,0,0,455,456,3,22,11,0,456,1338,1,0,0,0,457,458,5, - 96,0,0,458,460,3,36,18,0,459,461,3,192,96,0,460,459,1,0,0,0,460, - 461,1,0,0,0,461,462,1,0,0,0,462,464,3,80,40,0,463,465,7,1,0,0,464, - 463,1,0,0,0,464,465,1,0,0,0,465,1338,1,0,0,0,466,467,5,273,0,0,467, - 470,3,38,19,0,468,469,7,2,0,0,469,471,3,246,123,0,470,468,1,0,0, - 0,470,471,1,0,0,0,471,476,1,0,0,0,472,474,5,163,0,0,473,472,1,0, - 0,0,473,474,1,0,0,0,474,475,1,0,0,0,475,477,3,388,194,0,476,473, - 1,0,0,0,476,477,1,0,0,0,477,1338,1,0,0,0,478,483,3,14,7,0,479,480, - 5,2,0,0,480,481,3,338,169,0,481,482,5,3,0,0,482,484,1,0,0,0,483, - 479,1,0,0,0,483,484,1,0,0,0,484,486,1,0,0,0,485,487,3,48,24,0,486, - 485,1,0,0,0,486,487,1,0,0,0,487,488,1,0,0,0,488,493,3,50,25,0,489, - 491,5,20,0,0,490,489,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492, - 494,3,26,13,0,493,490,1,0,0,0,493,494,1,0,0,0,494,1338,1,0,0,0,495, - 496,5,59,0,0,496,498,5,293,0,0,497,499,3,190,95,0,498,497,1,0,0, - 0,498,499,1,0,0,0,499,500,1,0,0,0,500,501,3,84,42,0,501,502,5,163, - 0,0,502,512,3,86,43,0,503,511,3,48,24,0,504,511,3,242,121,0,505, - 511,3,70,35,0,506,511,3,22,11,0,507,508,5,297,0,0,508,511,3,54,27, - 0,509,511,3,52,26,0,510,503,1,0,0,0,510,504,1,0,0,0,510,505,1,0, - 0,0,510,506,1,0,0,0,510,507,1,0,0,0,510,509,1,0,0,0,511,514,1,0, - 0,0,512,510,1,0,0,0,512,513,1,0,0,0,513,1338,1,0,0,0,514,512,1,0, - 0,0,515,520,3,16,8,0,516,517,5,2,0,0,517,518,3,338,169,0,518,519, - 5,3,0,0,519,521,1,0,0,0,520,516,1,0,0,0,520,521,1,0,0,0,521,523, - 1,0,0,0,522,524,3,48,24,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525, - 1,0,0,0,525,530,3,50,25,0,526,528,5,20,0,0,527,526,1,0,0,0,527,528, - 1,0,0,0,528,529,1,0,0,0,529,531,3,26,13,0,530,527,1,0,0,0,530,531, - 1,0,0,0,531,1338,1,0,0,0,532,533,5,13,0,0,533,534,5,293,0,0,534, - 536,3,86,43,0,535,537,3,32,16,0,536,535,1,0,0,0,536,537,1,0,0,0, - 537,538,1,0,0,0,538,539,5,55,0,0,539,547,5,282,0,0,540,548,5,196, - 0,0,541,542,5,119,0,0,542,543,5,50,0,0,543,548,3,94,47,0,544,545, - 5,119,0,0,545,546,5,10,0,0,546,548,5,50,0,0,547,540,1,0,0,0,547, - 541,1,0,0,0,547,544,1,0,0,0,547,548,1,0,0,0,548,1338,1,0,0,0,549, - 550,5,13,0,0,550,553,5,294,0,0,551,552,7,2,0,0,552,554,3,80,40,0, - 553,551,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,5,55,0,0, - 556,558,5,282,0,0,557,559,5,196,0,0,558,557,1,0,0,0,558,559,1,0, - 0,0,559,1338,1,0,0,0,560,561,5,11,0,0,561,562,5,293,0,0,562,563, - 3,86,43,0,563,564,5,8,0,0,564,565,5,49,0,0,565,566,3,322,161,0,566, - 1338,1,0,0,0,567,568,5,11,0,0,568,569,5,293,0,0,569,570,3,86,43, - 0,570,571,5,8,0,0,571,572,5,50,0,0,572,573,5,2,0,0,573,574,3,320, - 160,0,574,575,5,3,0,0,575,1338,1,0,0,0,576,577,5,11,0,0,577,578, - 5,293,0,0,578,579,3,86,43,0,579,580,5,241,0,0,580,581,5,49,0,0,581, - 582,3,92,46,0,582,583,5,309,0,0,583,584,3,96,48,0,584,1338,1,0,0, - 0,585,586,5,11,0,0,586,587,5,293,0,0,587,588,3,86,43,0,588,589,5, - 96,0,0,589,591,5,49,0,0,590,592,3,192,96,0,591,590,1,0,0,0,591,592, - 1,0,0,0,592,593,1,0,0,0,593,594,3,92,46,0,594,1338,1,0,0,0,595,596, - 5,11,0,0,596,597,5,293,0,0,597,598,3,86,43,0,598,599,5,96,0,0,599, - 601,5,50,0,0,600,602,3,192,96,0,601,600,1,0,0,0,601,602,1,0,0,0, - 602,603,1,0,0,0,603,604,5,2,0,0,604,605,3,94,47,0,605,606,5,3,0, - 0,606,1338,1,0,0,0,607,612,5,11,0,0,608,609,5,293,0,0,609,613,3, - 86,43,0,610,611,5,338,0,0,611,613,3,90,45,0,612,608,1,0,0,0,612, - 610,1,0,0,0,613,614,1,0,0,0,614,615,5,241,0,0,615,616,5,309,0,0, - 616,617,3,246,123,0,617,1338,1,0,0,0,618,623,5,11,0,0,619,620,5, - 293,0,0,620,624,3,86,43,0,621,622,5,338,0,0,622,624,3,90,45,0,623, - 619,1,0,0,0,623,621,1,0,0,0,624,625,1,0,0,0,625,626,5,269,0,0,626, - 627,5,297,0,0,627,628,3,54,27,0,628,1338,1,0,0,0,629,634,5,11,0, - 0,630,631,5,293,0,0,631,635,3,86,43,0,632,633,5,338,0,0,633,635, - 3,90,45,0,634,630,1,0,0,0,634,632,1,0,0,0,635,636,1,0,0,0,636,637, - 5,328,0,0,637,639,5,297,0,0,638,640,3,192,96,0,639,638,1,0,0,0,639, - 640,1,0,0,0,640,641,1,0,0,0,641,642,3,54,27,0,642,1338,1,0,0,0,643, - 644,5,11,0,0,644,645,5,293,0,0,645,646,3,86,43,0,646,648,7,3,0,0, - 647,649,5,49,0,0,648,647,1,0,0,0,648,649,1,0,0,0,649,650,1,0,0,0, - 650,652,3,92,46,0,651,653,3,386,193,0,652,651,1,0,0,0,652,653,1, - 0,0,0,653,1338,1,0,0,0,654,655,5,11,0,0,655,656,5,293,0,0,656,658, - 3,86,43,0,657,659,3,32,16,0,658,657,1,0,0,0,658,659,1,0,0,0,659, - 660,1,0,0,0,660,662,5,39,0,0,661,663,5,49,0,0,662,661,1,0,0,0,662, - 663,1,0,0,0,663,664,1,0,0,0,664,665,3,92,46,0,665,667,3,336,168, - 0,666,668,3,314,157,0,667,666,1,0,0,0,667,668,1,0,0,0,668,1338,1, - 0,0,0,669,670,5,11,0,0,670,671,5,293,0,0,671,673,3,86,43,0,672,674, - 3,32,16,0,673,672,1,0,0,0,673,674,1,0,0,0,674,675,1,0,0,0,675,676, - 5,244,0,0,676,677,5,50,0,0,677,678,5,2,0,0,678,679,3,324,162,0,679, - 680,5,3,0,0,680,1338,1,0,0,0,681,682,5,11,0,0,682,683,5,293,0,0, - 683,685,3,86,43,0,684,686,3,32,16,0,685,684,1,0,0,0,685,686,1,0, - 0,0,686,687,1,0,0,0,687,688,5,269,0,0,688,689,5,266,0,0,689,693, - 3,388,194,0,690,691,5,346,0,0,691,692,5,267,0,0,692,694,3,54,27, - 0,693,690,1,0,0,0,693,694,1,0,0,0,694,1338,1,0,0,0,695,696,5,11, - 0,0,696,697,5,293,0,0,697,699,3,86,43,0,698,700,3,32,16,0,699,698, - 1,0,0,0,699,700,1,0,0,0,700,701,1,0,0,0,701,702,5,269,0,0,702,703, - 5,267,0,0,703,704,3,54,27,0,704,1338,1,0,0,0,705,710,5,11,0,0,706, - 707,5,293,0,0,707,711,3,86,43,0,708,709,5,338,0,0,709,711,3,90,45, - 0,710,706,1,0,0,0,710,708,1,0,0,0,711,712,1,0,0,0,712,714,5,8,0, - 0,713,715,3,190,95,0,714,713,1,0,0,0,714,715,1,0,0,0,715,717,1,0, - 0,0,716,718,3,30,15,0,717,716,1,0,0,0,718,719,1,0,0,0,719,717,1, - 0,0,0,719,720,1,0,0,0,720,1338,1,0,0,0,721,722,5,11,0,0,722,723, - 5,293,0,0,723,724,3,86,43,0,724,725,3,32,16,0,725,726,5,241,0,0, - 726,727,5,309,0,0,727,728,3,32,16,0,728,1338,1,0,0,0,729,734,5,11, - 0,0,730,731,5,293,0,0,731,735,3,86,43,0,732,733,5,338,0,0,733,735, - 3,90,45,0,734,730,1,0,0,0,734,732,1,0,0,0,735,736,1,0,0,0,736,738, - 5,96,0,0,737,739,3,192,96,0,738,737,1,0,0,0,738,739,1,0,0,0,739, - 740,1,0,0,0,740,745,3,32,16,0,741,742,5,4,0,0,742,744,3,32,16,0, - 743,741,1,0,0,0,744,747,1,0,0,0,745,743,1,0,0,0,745,746,1,0,0,0, - 746,749,1,0,0,0,747,745,1,0,0,0,748,750,5,230,0,0,749,748,1,0,0, - 0,749,750,1,0,0,0,750,1338,1,0,0,0,751,752,5,11,0,0,752,753,5,293, - 0,0,753,755,3,86,43,0,754,756,3,32,16,0,755,754,1,0,0,0,755,756, - 1,0,0,0,756,757,1,0,0,0,757,758,5,269,0,0,758,759,3,22,11,0,759, - 1338,1,0,0,0,760,761,5,11,0,0,761,762,5,293,0,0,762,763,3,86,43, - 0,763,764,5,237,0,0,764,765,5,219,0,0,765,1338,1,0,0,0,766,767,5, - 11,0,0,767,768,5,176,0,0,768,769,5,338,0,0,769,770,3,90,45,0,770, - 771,7,4,0,0,771,772,5,248,0,0,772,1338,1,0,0,0,773,774,5,11,0,0, - 774,775,5,176,0,0,775,776,5,338,0,0,776,777,3,90,45,0,777,778,5, - 269,0,0,778,779,5,297,0,0,779,780,3,54,27,0,780,1338,1,0,0,0,781, - 782,5,96,0,0,782,784,5,293,0,0,783,785,3,192,96,0,784,783,1,0,0, - 0,784,785,1,0,0,0,785,786,1,0,0,0,786,788,3,86,43,0,787,789,5,230, - 0,0,788,787,1,0,0,0,788,789,1,0,0,0,789,1338,1,0,0,0,790,791,5,96, - 0,0,791,793,5,338,0,0,792,794,3,192,96,0,793,792,1,0,0,0,793,794, - 1,0,0,0,794,795,1,0,0,0,795,1338,3,90,45,0,796,797,5,96,0,0,797, - 798,5,176,0,0,798,800,5,338,0,0,799,801,3,192,96,0,800,799,1,0,0, - 0,800,801,1,0,0,0,801,802,1,0,0,0,802,1338,3,90,45,0,803,806,5,59, - 0,0,804,805,5,208,0,0,805,807,5,244,0,0,806,804,1,0,0,0,806,807, - 1,0,0,0,807,812,1,0,0,0,808,810,5,128,0,0,809,808,1,0,0,0,809,810, - 1,0,0,0,810,811,1,0,0,0,811,813,5,298,0,0,812,809,1,0,0,0,812,813, - 1,0,0,0,813,814,1,0,0,0,814,816,5,338,0,0,815,817,3,190,95,0,816, - 815,1,0,0,0,816,817,1,0,0,0,817,818,1,0,0,0,818,820,3,88,44,0,819, - 821,3,220,110,0,820,819,1,0,0,0,820,821,1,0,0,0,821,830,1,0,0,0, - 822,829,3,24,12,0,823,824,5,218,0,0,824,825,5,203,0,0,825,829,3, - 212,106,0,826,827,5,297,0,0,827,829,3,54,27,0,828,822,1,0,0,0,828, - 823,1,0,0,0,828,826,1,0,0,0,829,832,1,0,0,0,830,828,1,0,0,0,830, - 831,1,0,0,0,831,833,1,0,0,0,832,830,1,0,0,0,833,834,5,20,0,0,834, - 835,3,26,13,0,835,1338,1,0,0,0,836,839,5,59,0,0,837,838,5,208,0, - 0,838,840,5,244,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0, - 0,0,841,843,5,128,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,844,1, - 0,0,0,844,845,5,298,0,0,845,846,5,338,0,0,846,851,3,88,44,0,847, - 848,5,2,0,0,848,849,3,334,167,0,849,850,5,3,0,0,850,852,1,0,0,0, - 851,847,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853,856,3,48,24, - 0,854,855,5,207,0,0,855,857,3,54,27,0,856,854,1,0,0,0,856,857,1, - 0,0,0,857,1338,1,0,0,0,858,859,5,11,0,0,859,860,5,338,0,0,860,862, - 3,90,45,0,861,863,5,20,0,0,862,861,1,0,0,0,862,863,1,0,0,0,863,864, - 1,0,0,0,864,865,3,26,13,0,865,1338,1,0,0,0,866,869,5,59,0,0,867, - 868,5,208,0,0,868,870,5,244,0,0,869,867,1,0,0,0,869,870,1,0,0,0, - 870,872,1,0,0,0,871,873,5,298,0,0,872,871,1,0,0,0,872,873,1,0,0, - 0,873,874,1,0,0,0,874,876,5,125,0,0,875,877,3,190,95,0,876,875,1, - 0,0,0,876,877,1,0,0,0,877,878,1,0,0,0,878,879,3,368,184,0,879,880, - 5,20,0,0,880,890,3,388,194,0,881,882,5,332,0,0,882,887,3,76,38,0, - 883,884,5,4,0,0,884,886,3,76,38,0,885,883,1,0,0,0,886,889,1,0,0, - 0,887,885,1,0,0,0,887,888,1,0,0,0,888,891,1,0,0,0,889,887,1,0,0, - 0,890,881,1,0,0,0,890,891,1,0,0,0,891,1338,1,0,0,0,892,893,5,59, - 0,0,893,894,5,176,0,0,894,896,5,338,0,0,895,897,3,190,95,0,896,895, - 1,0,0,0,896,897,1,0,0,0,897,898,1,0,0,0,898,900,3,88,44,0,899,901, - 3,48,24,0,900,899,1,0,0,0,900,901,1,0,0,0,901,917,1,0,0,0,902,903, - 5,207,0,0,903,916,3,54,27,0,904,905,5,218,0,0,905,906,5,31,0,0,906, - 916,3,260,130,0,907,916,3,20,10,0,908,916,3,18,9,0,909,916,3,242, - 121,0,910,916,3,70,35,0,911,916,3,22,11,0,912,916,3,24,12,0,913, - 914,5,297,0,0,914,916,3,54,27,0,915,902,1,0,0,0,915,904,1,0,0,0, - 915,907,1,0,0,0,915,908,1,0,0,0,915,909,1,0,0,0,915,910,1,0,0,0, - 915,911,1,0,0,0,915,912,1,0,0,0,915,913,1,0,0,0,916,919,1,0,0,0, - 917,915,1,0,0,0,917,918,1,0,0,0,918,920,1,0,0,0,919,917,1,0,0,0, - 920,921,5,20,0,0,921,922,3,26,13,0,922,1338,1,0,0,0,923,925,5,96, - 0,0,924,926,5,298,0,0,925,924,1,0,0,0,925,926,1,0,0,0,926,927,1, - 0,0,0,927,929,5,125,0,0,928,930,3,192,96,0,929,928,1,0,0,0,929,930, - 1,0,0,0,930,931,1,0,0,0,931,1338,3,366,183,0,932,935,5,81,0,0,933, - 934,5,208,0,0,934,936,5,244,0,0,935,933,1,0,0,0,935,936,1,0,0,0, - 936,938,1,0,0,0,937,939,5,336,0,0,938,937,1,0,0,0,938,939,1,0,0, - 0,939,940,1,0,0,0,940,942,3,366,183,0,941,943,3,318,159,0,942,941, - 1,0,0,0,942,943,1,0,0,0,943,945,1,0,0,0,944,946,3,332,166,0,945, - 944,1,0,0,0,945,946,1,0,0,0,946,1338,1,0,0,0,947,948,5,96,0,0,948, - 949,5,298,0,0,949,951,5,336,0,0,950,952,3,192,96,0,951,950,1,0,0, - 0,951,952,1,0,0,0,952,956,1,0,0,0,953,957,3,86,43,0,954,957,3,90, - 45,0,955,957,3,366,183,0,956,953,1,0,0,0,956,954,1,0,0,0,956,955, - 1,0,0,0,957,1338,1,0,0,0,958,960,5,106,0,0,959,961,7,5,0,0,960,959, - 1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0,962,1338,3,4,2,0,963,964, - 5,273,0,0,964,967,5,294,0,0,965,966,7,2,0,0,966,968,3,80,40,0,967, - 965,1,0,0,0,967,968,1,0,0,0,968,973,1,0,0,0,969,971,5,163,0,0,970, - 969,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0,972,974,3,388,194,0, - 973,970,1,0,0,0,973,974,1,0,0,0,974,1338,1,0,0,0,975,976,5,273,0, - 0,976,977,5,293,0,0,977,980,5,108,0,0,978,979,7,2,0,0,979,981,3, - 80,40,0,980,978,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983, - 5,163,0,0,983,985,3,388,194,0,984,986,3,32,16,0,985,984,1,0,0,0, - 985,986,1,0,0,0,986,1338,1,0,0,0,987,988,5,273,0,0,988,989,5,297, - 0,0,989,994,3,86,43,0,990,991,5,2,0,0,991,992,3,58,29,0,992,993, - 5,3,0,0,993,995,1,0,0,0,994,990,1,0,0,0,994,995,1,0,0,0,995,1338, - 1,0,0,0,996,997,5,273,0,0,997,998,5,50,0,0,998,999,7,2,0,0,999,1002, - 3,86,43,0,1000,1001,7,2,0,0,1001,1003,3,80,40,0,1002,1000,1,0,0, - 0,1002,1003,1,0,0,0,1003,1338,1,0,0,0,1004,1005,5,273,0,0,1005,1008, - 5,339,0,0,1006,1007,7,2,0,0,1007,1009,3,80,40,0,1008,1006,1,0,0, - 0,1008,1009,1,0,0,0,1009,1014,1,0,0,0,1010,1012,5,163,0,0,1011,1010, - 1,0,0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1015,3,388,194, - 0,1014,1011,1,0,0,0,1014,1015,1,0,0,0,1015,1338,1,0,0,0,1016,1017, - 5,273,0,0,1017,1018,5,219,0,0,1018,1020,3,86,43,0,1019,1021,3,32, - 16,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1338,1,0,0,0,1022, - 1024,5,273,0,0,1023,1025,3,148,74,0,1024,1023,1,0,0,0,1024,1025, - 1,0,0,0,1025,1026,1,0,0,0,1026,1029,5,126,0,0,1027,1028,7,2,0,0, - 1028,1030,3,80,40,0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,1038, - 1,0,0,0,1031,1033,5,163,0,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0, - 1033,1036,1,0,0,0,1034,1037,3,246,123,0,1035,1037,3,388,194,0,1036, - 1034,1,0,0,0,1036,1035,1,0,0,0,1037,1039,1,0,0,0,1038,1032,1,0,0, - 0,1038,1039,1,0,0,0,1039,1338,1,0,0,0,1040,1041,5,273,0,0,1041,1042, - 5,59,0,0,1042,1043,5,293,0,0,1043,1046,3,86,43,0,1044,1045,5,20, - 0,0,1045,1047,5,266,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, - 1338,1,0,0,0,1048,1049,5,273,0,0,1049,1050,5,62,0,0,1050,1338,3, - 36,18,0,1051,1052,5,273,0,0,1052,1057,5,38,0,0,1053,1055,5,163,0, - 0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056,1,0,0,0,1056,1058, - 3,388,194,0,1057,1054,1,0,0,0,1057,1058,1,0,0,0,1058,1338,1,0,0, - 0,1059,1060,5,273,0,0,1060,1061,5,176,0,0,1061,1064,5,339,0,0,1062, - 1063,7,2,0,0,1063,1065,3,80,40,0,1064,1062,1,0,0,0,1064,1065,1,0, - 0,0,1065,1070,1,0,0,0,1066,1068,5,163,0,0,1067,1066,1,0,0,0,1067, - 1068,1,0,0,0,1068,1069,1,0,0,0,1069,1071,3,388,194,0,1070,1067,1, - 0,0,0,1070,1071,1,0,0,0,1071,1338,1,0,0,0,1072,1073,5,273,0,0,1073, - 1074,5,59,0,0,1074,1075,5,176,0,0,1075,1076,5,338,0,0,1076,1079, - 3,90,45,0,1077,1078,5,20,0,0,1078,1080,5,266,0,0,1079,1077,1,0,0, - 0,1079,1080,1,0,0,0,1080,1338,1,0,0,0,1081,1082,7,6,0,0,1082,1084, - 5,125,0,0,1083,1085,5,108,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0, - 0,1085,1086,1,0,0,0,1086,1338,3,40,20,0,1087,1088,7,6,0,0,1088,1090, - 5,72,0,0,1089,1091,5,108,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0, - 1091,1092,1,0,0,0,1092,1338,3,80,40,0,1093,1095,7,6,0,0,1094,1096, - 5,293,0,0,1095,1094,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, - 1097,1099,7,7,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100, - 1,0,0,0,1100,1102,3,86,43,0,1101,1103,3,32,16,0,1102,1101,1,0,0, - 0,1102,1103,1,0,0,0,1103,1105,1,0,0,0,1104,1106,3,42,21,0,1105,1104, - 1,0,0,0,1105,1106,1,0,0,0,1106,1338,1,0,0,0,1107,1109,7,6,0,0,1108, - 1110,5,232,0,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0, - 0,0,1111,1338,3,26,13,0,1112,1113,5,51,0,0,1113,1114,5,203,0,0,1114, - 1115,3,36,18,0,1115,1116,3,80,40,0,1116,1117,5,153,0,0,1117,1118, - 3,390,195,0,1118,1338,1,0,0,0,1119,1120,5,51,0,0,1120,1121,5,203, - 0,0,1121,1122,5,293,0,0,1122,1123,3,86,43,0,1123,1124,5,153,0,0, - 1124,1125,3,390,195,0,1125,1338,1,0,0,0,1126,1127,5,240,0,0,1127, - 1128,5,293,0,0,1128,1338,3,86,43,0,1129,1130,5,240,0,0,1130,1131, - 5,125,0,0,1131,1338,3,366,183,0,1132,1140,5,240,0,0,1133,1141,3, - 388,194,0,1134,1136,9,0,0,0,1135,1134,1,0,0,0,1136,1139,1,0,0,0, - 1137,1138,1,0,0,0,1137,1135,1,0,0,0,1138,1141,1,0,0,0,1139,1137, - 1,0,0,0,1140,1133,1,0,0,0,1140,1137,1,0,0,0,1141,1338,1,0,0,0,1142, - 1143,5,240,0,0,1143,1144,5,176,0,0,1144,1145,5,338,0,0,1145,1338, - 3,90,45,0,1146,1148,5,33,0,0,1147,1149,5,159,0,0,1148,1147,1,0,0, - 0,1148,1149,1,0,0,0,1149,1150,1,0,0,0,1150,1151,5,293,0,0,1151,1154, - 3,86,43,0,1152,1153,5,207,0,0,1153,1155,3,54,27,0,1154,1152,1,0, - 0,0,1154,1155,1,0,0,0,1155,1160,1,0,0,0,1156,1158,5,20,0,0,1157, - 1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1161,3,26, - 13,0,1160,1157,1,0,0,0,1160,1161,1,0,0,0,1161,1338,1,0,0,0,1162, - 1163,5,322,0,0,1163,1165,5,293,0,0,1164,1166,3,192,96,0,1165,1164, - 1,0,0,0,1165,1166,1,0,0,0,1166,1167,1,0,0,0,1167,1338,3,86,43,0, - 1168,1169,5,43,0,0,1169,1338,5,33,0,0,1170,1171,5,168,0,0,1171,1173, - 5,70,0,0,1172,1174,5,169,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0, - 1174,1175,1,0,0,0,1175,1176,5,145,0,0,1176,1178,3,388,194,0,1177, - 1179,5,216,0,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1180,1,0, - 0,0,1180,1181,5,152,0,0,1181,1182,5,293,0,0,1182,1184,3,86,43,0, - 1183,1185,3,32,16,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1338, - 1,0,0,0,1186,1187,5,317,0,0,1187,1188,5,293,0,0,1188,1190,3,86,43, - 0,1189,1191,3,32,16,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1338, - 1,0,0,0,1192,1194,5,188,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1196,5,242,0,0,1196,1197,5,293,0,0,1197,1200, - 3,86,43,0,1198,1199,7,8,0,0,1199,1201,5,219,0,0,1200,1198,1,0,0, - 0,1200,1201,1,0,0,0,1201,1338,1,0,0,0,1202,1203,7,9,0,0,1203,1207, - 3,376,188,0,1204,1206,9,0,0,0,1205,1204,1,0,0,0,1206,1209,1,0,0, - 0,1207,1208,1,0,0,0,1207,1205,1,0,0,0,1208,1338,1,0,0,0,1209,1207, - 1,0,0,0,1210,1211,5,269,0,0,1211,1215,5,253,0,0,1212,1214,9,0,0, - 0,1213,1212,1,0,0,0,1214,1217,1,0,0,0,1215,1216,1,0,0,0,1215,1213, - 1,0,0,0,1216,1338,1,0,0,0,1217,1215,1,0,0,0,1218,1219,5,269,0,0, - 1219,1220,5,301,0,0,1220,1221,5,350,0,0,1221,1338,3,298,149,0,1222, - 1223,5,269,0,0,1223,1224,5,301,0,0,1224,1225,5,350,0,0,1225,1338, - 3,6,3,0,1226,1227,5,269,0,0,1227,1228,5,301,0,0,1228,1232,5,350, - 0,0,1229,1231,9,0,0,0,1230,1229,1,0,0,0,1231,1234,1,0,0,0,1232,1233, - 1,0,0,0,1232,1230,1,0,0,0,1233,1338,1,0,0,0,1234,1232,1,0,0,0,1235, - 1236,5,269,0,0,1236,1237,7,10,0,0,1237,1338,3,134,67,0,1238,1239, - 5,269,0,0,1239,1240,7,10,0,0,1240,1241,5,2,0,0,1241,1242,3,244,122, - 0,1242,1243,5,3,0,0,1243,1244,5,352,0,0,1244,1245,5,2,0,0,1245,1246, - 3,26,13,0,1246,1247,5,3,0,0,1247,1338,1,0,0,0,1248,1249,5,269,0, - 0,1249,1250,3,8,4,0,1250,1251,5,352,0,0,1251,1252,3,10,5,0,1252, - 1338,1,0,0,0,1253,1254,5,269,0,0,1254,1262,3,8,4,0,1255,1259,5,352, - 0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259,1260, - 1,0,0,0,1259,1257,1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1262, - 1255,1,0,0,0,1262,1263,1,0,0,0,1263,1338,1,0,0,0,1264,1268,5,269, - 0,0,1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, - 1,0,0,0,1268,1266,1,0,0,0,1269,1271,1,0,0,0,1270,1268,1,0,0,0,1271, - 1272,5,352,0,0,1272,1338,3,10,5,0,1273,1277,5,269,0,0,1274,1276, - 9,0,0,0,1275,1274,1,0,0,0,1276,1279,1,0,0,0,1277,1278,1,0,0,0,1277, - 1275,1,0,0,0,1278,1338,1,0,0,0,1279,1277,1,0,0,0,1280,1281,5,245, - 0,0,1281,1338,3,8,4,0,1282,1286,5,245,0,0,1283,1285,9,0,0,0,1284, - 1283,1,0,0,0,1285,1288,1,0,0,0,1286,1287,1,0,0,0,1286,1284,1,0,0, - 0,1287,1338,1,0,0,0,1288,1286,1,0,0,0,1289,1290,5,59,0,0,1290,1292, - 5,142,0,0,1291,1293,3,190,95,0,1292,1291,1,0,0,0,1292,1293,1,0,0, - 0,1293,1294,1,0,0,0,1294,1295,3,376,188,0,1295,1297,5,203,0,0,1296, - 1298,5,293,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, - 0,0,1299,1302,3,86,43,0,1300,1301,5,332,0,0,1301,1303,3,376,188, - 0,1302,1300,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, - 5,2,0,0,1305,1306,3,248,124,0,1306,1309,5,3,0,0,1307,1308,5,207, - 0,0,1308,1310,3,54,27,0,1309,1307,1,0,0,0,1309,1310,1,0,0,0,1310, - 1338,1,0,0,0,1311,1312,5,96,0,0,1312,1314,5,142,0,0,1313,1315,3, - 192,96,0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316, - 1317,3,376,188,0,1317,1319,5,203,0,0,1318,1320,5,293,0,0,1319,1318, - 1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1322,3,86,43,0, - 1322,1338,1,0,0,0,1323,1324,5,205,0,0,1324,1326,3,86,43,0,1325,1327, - 3,138,69,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0,0,0, - 1328,1329,3,354,177,0,1329,1338,1,0,0,0,1330,1334,3,12,6,0,1331, - 1333,9,0,0,0,1332,1331,1,0,0,0,1333,1336,1,0,0,0,1334,1335,1,0,0, - 0,1334,1332,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0,1337,412, - 1,0,0,0,1337,414,1,0,0,0,1337,417,1,0,0,0,1337,422,1,0,0,0,1337, - 428,1,0,0,0,1337,444,1,0,0,0,1337,451,1,0,0,0,1337,457,1,0,0,0,1337, - 466,1,0,0,0,1337,478,1,0,0,0,1337,495,1,0,0,0,1337,515,1,0,0,0,1337, - 532,1,0,0,0,1337,549,1,0,0,0,1337,560,1,0,0,0,1337,567,1,0,0,0,1337, - 576,1,0,0,0,1337,585,1,0,0,0,1337,595,1,0,0,0,1337,607,1,0,0,0,1337, - 618,1,0,0,0,1337,629,1,0,0,0,1337,643,1,0,0,0,1337,654,1,0,0,0,1337, - 669,1,0,0,0,1337,681,1,0,0,0,1337,695,1,0,0,0,1337,705,1,0,0,0,1337, - 721,1,0,0,0,1337,729,1,0,0,0,1337,751,1,0,0,0,1337,760,1,0,0,0,1337, - 766,1,0,0,0,1337,773,1,0,0,0,1337,781,1,0,0,0,1337,790,1,0,0,0,1337, - 796,1,0,0,0,1337,803,1,0,0,0,1337,836,1,0,0,0,1337,858,1,0,0,0,1337, - 866,1,0,0,0,1337,892,1,0,0,0,1337,923,1,0,0,0,1337,932,1,0,0,0,1337, - 947,1,0,0,0,1337,958,1,0,0,0,1337,963,1,0,0,0,1337,975,1,0,0,0,1337, - 987,1,0,0,0,1337,996,1,0,0,0,1337,1004,1,0,0,0,1337,1016,1,0,0,0, - 1337,1022,1,0,0,0,1337,1040,1,0,0,0,1337,1048,1,0,0,0,1337,1051, - 1,0,0,0,1337,1059,1,0,0,0,1337,1072,1,0,0,0,1337,1081,1,0,0,0,1337, - 1087,1,0,0,0,1337,1093,1,0,0,0,1337,1107,1,0,0,0,1337,1112,1,0,0, - 0,1337,1119,1,0,0,0,1337,1126,1,0,0,0,1337,1129,1,0,0,0,1337,1132, - 1,0,0,0,1337,1142,1,0,0,0,1337,1146,1,0,0,0,1337,1162,1,0,0,0,1337, - 1168,1,0,0,0,1337,1170,1,0,0,0,1337,1186,1,0,0,0,1337,1193,1,0,0, - 0,1337,1202,1,0,0,0,1337,1210,1,0,0,0,1337,1218,1,0,0,0,1337,1222, - 1,0,0,0,1337,1226,1,0,0,0,1337,1235,1,0,0,0,1337,1238,1,0,0,0,1337, - 1248,1,0,0,0,1337,1253,1,0,0,0,1337,1264,1,0,0,0,1337,1273,1,0,0, - 0,1337,1280,1,0,0,0,1337,1282,1,0,0,0,1337,1289,1,0,0,0,1337,1311, - 1,0,0,0,1337,1323,1,0,0,0,1337,1330,1,0,0,0,1338,5,1,0,0,0,1339, - 1342,3,388,194,0,1340,1342,5,169,0,0,1341,1339,1,0,0,0,1341,1340, - 1,0,0,0,1342,7,1,0,0,0,1343,1344,3,380,190,0,1344,9,1,0,0,0,1345, - 1346,3,382,191,0,1346,11,1,0,0,0,1347,1348,5,59,0,0,1348,1516,5, - 253,0,0,1349,1350,5,96,0,0,1350,1516,5,253,0,0,1351,1353,5,129,0, - 0,1352,1354,5,253,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1516, - 1,0,0,0,1355,1357,5,249,0,0,1356,1358,5,253,0,0,1357,1356,1,0,0, - 0,1357,1358,1,0,0,0,1358,1516,1,0,0,0,1359,1360,5,273,0,0,1360,1516, - 5,129,0,0,1361,1362,5,273,0,0,1362,1364,5,253,0,0,1363,1365,5,129, - 0,0,1364,1363,1,0,0,0,1364,1365,1,0,0,0,1365,1516,1,0,0,0,1366,1367, - 5,273,0,0,1367,1516,5,228,0,0,1368,1369,5,273,0,0,1369,1516,5,254, - 0,0,1370,1371,5,273,0,0,1371,1372,5,62,0,0,1372,1516,5,254,0,0,1373, - 1374,5,107,0,0,1374,1516,5,293,0,0,1375,1376,5,139,0,0,1376,1516, - 5,293,0,0,1377,1378,5,273,0,0,1378,1516,5,54,0,0,1379,1380,5,273, - 0,0,1380,1381,5,59,0,0,1381,1516,5,293,0,0,1382,1383,5,273,0,0,1383, - 1516,5,313,0,0,1384,1385,5,273,0,0,1385,1516,5,143,0,0,1386,1387, - 5,273,0,0,1387,1516,5,172,0,0,1388,1389,5,59,0,0,1389,1516,5,142, - 0,0,1390,1391,5,96,0,0,1391,1516,5,142,0,0,1392,1393,5,11,0,0,1393, - 1516,5,142,0,0,1394,1395,5,171,0,0,1395,1516,5,293,0,0,1396,1397, - 5,171,0,0,1397,1516,5,72,0,0,1398,1399,5,326,0,0,1399,1516,5,293, - 0,0,1400,1401,5,326,0,0,1401,1516,5,72,0,0,1402,1403,5,59,0,0,1403, - 1404,5,298,0,0,1404,1516,5,175,0,0,1405,1406,5,96,0,0,1406,1407, - 5,298,0,0,1407,1516,5,175,0,0,1408,1409,5,11,0,0,1409,1410,5,293, - 0,0,1410,1411,3,86,43,0,1411,1412,5,197,0,0,1412,1413,5,45,0,0,1413, - 1516,1,0,0,0,1414,1415,5,11,0,0,1415,1416,5,293,0,0,1416,1417,3, - 86,43,0,1417,1418,5,45,0,0,1418,1419,5,31,0,0,1419,1516,1,0,0,0, - 1420,1421,5,11,0,0,1421,1422,5,293,0,0,1422,1423,3,86,43,0,1423, - 1424,5,197,0,0,1424,1425,5,279,0,0,1425,1516,1,0,0,0,1426,1427,5, - 11,0,0,1427,1428,5,293,0,0,1428,1429,3,86,43,0,1429,1430,5,275,0, - 0,1430,1431,5,31,0,0,1431,1516,1,0,0,0,1432,1433,5,11,0,0,1433,1434, - 5,293,0,0,1434,1435,3,86,43,0,1435,1436,5,197,0,0,1436,1437,5,275, - 0,0,1437,1516,1,0,0,0,1438,1439,5,11,0,0,1439,1440,5,293,0,0,1440, - 1441,3,86,43,0,1441,1442,5,197,0,0,1442,1443,5,283,0,0,1443,1444, - 5,20,0,0,1444,1445,5,89,0,0,1445,1516,1,0,0,0,1446,1447,5,11,0,0, - 1447,1448,5,293,0,0,1448,1449,3,86,43,0,1449,1450,5,269,0,0,1450, - 1451,5,275,0,0,1451,1452,5,170,0,0,1452,1516,1,0,0,0,1453,1454,5, - 11,0,0,1454,1455,5,293,0,0,1455,1456,3,86,43,0,1456,1457,5,103,0, - 0,1457,1458,5,217,0,0,1458,1516,1,0,0,0,1459,1460,5,11,0,0,1460, - 1461,5,293,0,0,1461,1462,3,86,43,0,1462,1463,5,18,0,0,1463,1464, - 5,217,0,0,1464,1516,1,0,0,0,1465,1466,5,11,0,0,1466,1467,5,293,0, - 0,1467,1468,3,86,43,0,1468,1469,5,320,0,0,1469,1470,5,217,0,0,1470, - 1516,1,0,0,0,1471,1472,5,11,0,0,1472,1473,5,293,0,0,1473,1474,3, - 86,43,0,1474,1475,5,310,0,0,1475,1516,1,0,0,0,1476,1477,5,11,0,0, - 1477,1478,5,293,0,0,1478,1480,3,86,43,0,1479,1481,3,32,16,0,1480, - 1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482,1,0,0,0,1482,1483,5,53, - 0,0,1483,1516,1,0,0,0,1484,1485,5,11,0,0,1485,1486,5,293,0,0,1486, - 1488,3,86,43,0,1487,1489,3,32,16,0,1488,1487,1,0,0,0,1488,1489,1, - 0,0,0,1489,1490,1,0,0,0,1490,1491,5,56,0,0,1491,1516,1,0,0,0,1492, - 1493,5,11,0,0,1493,1494,5,293,0,0,1494,1496,3,86,43,0,1495,1497, - 3,32,16,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0, - 1498,1499,5,269,0,0,1499,1500,5,115,0,0,1500,1516,1,0,0,0,1501,1502, - 5,11,0,0,1502,1503,5,293,0,0,1503,1505,3,86,43,0,1504,1506,3,32, - 16,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507, - 1508,5,244,0,0,1508,1509,5,50,0,0,1509,1516,1,0,0,0,1510,1511,5, - 281,0,0,1511,1516,5,312,0,0,1512,1516,5,52,0,0,1513,1516,5,255,0, - 0,1514,1516,5,88,0,0,1515,1347,1,0,0,0,1515,1349,1,0,0,0,1515,1351, - 1,0,0,0,1515,1355,1,0,0,0,1515,1359,1,0,0,0,1515,1361,1,0,0,0,1515, - 1366,1,0,0,0,1515,1368,1,0,0,0,1515,1370,1,0,0,0,1515,1373,1,0,0, - 0,1515,1375,1,0,0,0,1515,1377,1,0,0,0,1515,1379,1,0,0,0,1515,1382, - 1,0,0,0,1515,1384,1,0,0,0,1515,1386,1,0,0,0,1515,1388,1,0,0,0,1515, - 1390,1,0,0,0,1515,1392,1,0,0,0,1515,1394,1,0,0,0,1515,1396,1,0,0, - 0,1515,1398,1,0,0,0,1515,1400,1,0,0,0,1515,1402,1,0,0,0,1515,1405, - 1,0,0,0,1515,1408,1,0,0,0,1515,1414,1,0,0,0,1515,1420,1,0,0,0,1515, - 1426,1,0,0,0,1515,1432,1,0,0,0,1515,1438,1,0,0,0,1515,1446,1,0,0, - 0,1515,1453,1,0,0,0,1515,1459,1,0,0,0,1515,1465,1,0,0,0,1515,1471, - 1,0,0,0,1515,1476,1,0,0,0,1515,1484,1,0,0,0,1515,1492,1,0,0,0,1515, - 1501,1,0,0,0,1515,1510,1,0,0,0,1515,1512,1,0,0,0,1515,1513,1,0,0, - 0,1515,1514,1,0,0,0,1516,13,1,0,0,0,1517,1519,5,59,0,0,1518,1520, - 5,298,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1522,1,0,0,0, - 1521,1523,5,109,0,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524, - 1,0,0,0,1524,1526,5,293,0,0,1525,1527,3,190,95,0,1526,1525,1,0,0, - 0,1526,1527,1,0,0,0,1527,1528,1,0,0,0,1528,1529,3,84,42,0,1529,15, - 1,0,0,0,1530,1531,5,59,0,0,1531,1533,5,208,0,0,1532,1530,1,0,0,0, - 1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534,1535,5,244,0,0,1535,1536, - 5,293,0,0,1536,1537,3,84,42,0,1537,17,1,0,0,0,1538,1539,5,45,0,0, - 1539,1540,5,31,0,0,1540,1544,3,212,106,0,1541,1542,5,279,0,0,1542, - 1543,5,31,0,0,1543,1545,3,216,108,0,1544,1541,1,0,0,0,1544,1545, - 1,0,0,0,1545,1546,1,0,0,0,1546,1547,5,152,0,0,1547,1548,5,382,0, - 0,1548,1549,5,30,0,0,1549,19,1,0,0,0,1550,1551,5,275,0,0,1551,1552, - 5,31,0,0,1552,1553,3,212,106,0,1553,1556,5,203,0,0,1554,1557,3,66, - 33,0,1555,1557,3,68,34,0,1556,1554,1,0,0,0,1556,1555,1,0,0,0,1557, - 1561,1,0,0,0,1558,1559,5,283,0,0,1559,1560,5,20,0,0,1560,1562,5, - 89,0,0,1561,1558,1,0,0,0,1561,1562,1,0,0,0,1562,21,1,0,0,0,1563, - 1564,5,170,0,0,1564,1565,3,388,194,0,1565,23,1,0,0,0,1566,1567,5, - 51,0,0,1567,1568,3,388,194,0,1568,25,1,0,0,0,1569,1571,3,44,22,0, - 1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1573, - 3,104,52,0,1573,1574,3,100,50,0,1574,27,1,0,0,0,1575,1576,5,147, - 0,0,1576,1578,5,216,0,0,1577,1579,5,293,0,0,1578,1577,1,0,0,0,1578, - 1579,1,0,0,0,1579,1580,1,0,0,0,1580,1585,3,86,43,0,1581,1583,3,32, - 16,0,1582,1584,3,190,95,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584, - 1586,1,0,0,0,1585,1581,1,0,0,0,1585,1586,1,0,0,0,1586,1593,1,0,0, - 0,1587,1588,5,31,0,0,1588,1594,5,189,0,0,1589,1590,5,2,0,0,1590, - 1591,3,94,47,0,1591,1592,5,3,0,0,1592,1594,1,0,0,0,1593,1587,1,0, - 0,0,1593,1589,1,0,0,0,1593,1594,1,0,0,0,1594,1652,1,0,0,0,1595,1596, - 5,147,0,0,1596,1598,5,152,0,0,1597,1599,5,293,0,0,1598,1597,1,0, - 0,0,1598,1599,1,0,0,0,1599,1600,1,0,0,0,1600,1602,3,86,43,0,1601, - 1603,3,32,16,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1605,1,0, - 0,0,1604,1606,3,190,95,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0,1606, - 1613,1,0,0,0,1607,1608,5,31,0,0,1608,1614,5,189,0,0,1609,1610,5, - 2,0,0,1610,1611,3,94,47,0,1611,1612,5,3,0,0,1612,1614,1,0,0,0,1613, - 1607,1,0,0,0,1613,1609,1,0,0,0,1613,1614,1,0,0,0,1614,1652,1,0,0, - 0,1615,1616,5,147,0,0,1616,1618,5,152,0,0,1617,1619,5,293,0,0,1618, - 1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1,0,0,0,1620,1621,3,86, - 43,0,1621,1622,5,244,0,0,1622,1623,3,138,69,0,1623,1652,1,0,0,0, - 1624,1625,5,147,0,0,1625,1627,5,216,0,0,1626,1628,5,169,0,0,1627, - 1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629,1630,5,90, - 0,0,1630,1632,3,388,194,0,1631,1633,3,242,121,0,1632,1631,1,0,0, - 0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,70,35,0,1635,1634, - 1,0,0,0,1635,1636,1,0,0,0,1636,1652,1,0,0,0,1637,1638,5,147,0,0, - 1638,1640,5,216,0,0,1639,1641,5,169,0,0,1640,1639,1,0,0,0,1640,1641, - 1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,90,0,0,1643,1645,3,388,194, - 0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1646,1,0,0,0,1646,1649, - 3,48,24,0,1647,1648,5,207,0,0,1648,1650,3,54,27,0,1649,1647,1,0, - 0,0,1649,1650,1,0,0,0,1650,1652,1,0,0,0,1651,1575,1,0,0,0,1651,1595, - 1,0,0,0,1651,1615,1,0,0,0,1651,1624,1,0,0,0,1651,1637,1,0,0,0,1652, - 29,1,0,0,0,1653,1655,3,32,16,0,1654,1656,3,22,11,0,1655,1654,1,0, - 0,0,1655,1656,1,0,0,0,1656,31,1,0,0,0,1657,1658,5,217,0,0,1658,1659, - 5,2,0,0,1659,1664,3,34,17,0,1660,1661,5,4,0,0,1661,1663,3,34,17, - 0,1662,1660,1,0,0,0,1663,1666,1,0,0,0,1664,1662,1,0,0,0,1664,1665, - 1,0,0,0,1665,1667,1,0,0,0,1666,1664,1,0,0,0,1667,1668,5,3,0,0,1668, - 33,1,0,0,0,1669,1672,3,376,188,0,1670,1671,5,352,0,0,1671,1673,3, - 288,144,0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,1679,1,0,0,0, - 1674,1675,3,376,188,0,1675,1676,5,352,0,0,1676,1677,5,82,0,0,1677, - 1679,1,0,0,0,1678,1669,1,0,0,0,1678,1674,1,0,0,0,1679,35,1,0,0,0, - 1680,1681,7,11,0,0,1681,37,1,0,0,0,1682,1683,7,12,0,0,1683,39,1, - 0,0,0,1684,1690,3,98,49,0,1685,1690,3,388,194,0,1686,1690,3,290, - 145,0,1687,1690,3,292,146,0,1688,1690,3,294,147,0,1689,1684,1,0, - 0,0,1689,1685,1,0,0,0,1689,1686,1,0,0,0,1689,1687,1,0,0,0,1689,1688, - 1,0,0,0,1690,41,1,0,0,0,1691,1696,3,376,188,0,1692,1693,5,5,0,0, - 1693,1695,3,376,188,0,1694,1692,1,0,0,0,1695,1698,1,0,0,0,1696,1694, - 1,0,0,0,1696,1697,1,0,0,0,1697,43,1,0,0,0,1698,1696,1,0,0,0,1699, - 1700,5,346,0,0,1700,1705,3,46,23,0,1701,1702,5,4,0,0,1702,1704,3, - 46,23,0,1703,1701,1,0,0,0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1705, - 1706,1,0,0,0,1706,45,1,0,0,0,1707,1705,1,0,0,0,1708,1710,3,372,186, - 0,1709,1711,3,212,106,0,1710,1709,1,0,0,0,1710,1711,1,0,0,0,1711, - 1713,1,0,0,0,1712,1714,5,20,0,0,1713,1712,1,0,0,0,1713,1714,1,0, - 0,0,1714,1715,1,0,0,0,1715,1716,5,2,0,0,1716,1717,3,26,13,0,1717, - 1718,5,3,0,0,1718,47,1,0,0,0,1719,1720,5,332,0,0,1720,1721,3,246, - 123,0,1721,49,1,0,0,0,1722,1723,5,207,0,0,1723,1737,3,62,31,0,1724, - 1725,5,218,0,0,1725,1726,5,31,0,0,1726,1737,3,260,130,0,1727,1737, - 3,20,10,0,1728,1737,3,18,9,0,1729,1737,3,242,121,0,1730,1737,3,70, - 35,0,1731,1737,3,22,11,0,1732,1737,3,24,12,0,1733,1734,5,297,0,0, - 1734,1737,3,54,27,0,1735,1737,3,52,26,0,1736,1722,1,0,0,0,1736,1724, - 1,0,0,0,1736,1727,1,0,0,0,1736,1728,1,0,0,0,1736,1729,1,0,0,0,1736, - 1730,1,0,0,0,1736,1731,1,0,0,0,1736,1732,1,0,0,0,1736,1733,1,0,0, - 0,1736,1735,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, - 1,0,0,0,1739,51,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,162,0,0,1742, - 1743,5,382,0,0,1743,53,1,0,0,0,1744,1745,5,2,0,0,1745,1750,3,56, - 28,0,1746,1747,5,4,0,0,1747,1749,3,56,28,0,1748,1746,1,0,0,0,1749, - 1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0, - 0,1752,1750,1,0,0,0,1753,1754,5,3,0,0,1754,55,1,0,0,0,1755,1760, - 3,58,29,0,1756,1758,5,352,0,0,1757,1756,1,0,0,0,1757,1758,1,0,0, - 0,1758,1759,1,0,0,0,1759,1761,3,60,30,0,1760,1757,1,0,0,0,1760,1761, - 1,0,0,0,1761,57,1,0,0,0,1762,1767,3,376,188,0,1763,1764,5,5,0,0, - 1764,1766,3,376,188,0,1765,1763,1,0,0,0,1766,1769,1,0,0,0,1767,1765, - 1,0,0,0,1767,1768,1,0,0,0,1768,1772,1,0,0,0,1769,1767,1,0,0,0,1770, - 1772,3,388,194,0,1771,1762,1,0,0,0,1771,1770,1,0,0,0,1772,59,1,0, - 0,0,1773,1778,5,382,0,0,1774,1778,5,384,0,0,1775,1778,3,296,148, - 0,1776,1778,3,388,194,0,1777,1773,1,0,0,0,1777,1774,1,0,0,0,1777, - 1775,1,0,0,0,1777,1776,1,0,0,0,1778,61,1,0,0,0,1779,1780,5,2,0,0, - 1780,1785,3,64,32,0,1781,1782,5,4,0,0,1782,1784,3,64,32,0,1783,1781, - 1,0,0,0,1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786, - 1788,1,0,0,0,1787,1785,1,0,0,0,1788,1789,5,3,0,0,1789,63,1,0,0,0, - 1790,1795,3,58,29,0,1791,1793,5,352,0,0,1792,1791,1,0,0,0,1792,1793, - 1,0,0,0,1793,1794,1,0,0,0,1794,1796,3,268,134,0,1795,1792,1,0,0, - 0,1795,1796,1,0,0,0,1796,65,1,0,0,0,1797,1798,5,2,0,0,1798,1803, - 3,288,144,0,1799,1800,5,4,0,0,1800,1802,3,288,144,0,1801,1799,1, + 2,1,2,5,2,1226,8,2,10,2,12,2,1229,9,2,3,2,1231,8,2,1,2,1,2,5,2,1235, + 8,2,10,2,12,2,1238,9,2,1,2,1,2,1,2,1,2,5,2,1244,8,2,10,2,12,2,1247, + 9,2,1,2,1,2,1,2,1,2,5,2,1253,8,2,10,2,12,2,1256,9,2,1,2,1,2,1,2, + 3,2,1261,8,2,1,2,1,2,1,2,3,2,1266,8,2,1,2,1,2,1,2,3,2,1271,8,2,1, + 2,1,2,1,2,1,2,1,2,3,2,1278,8,2,1,2,1,2,1,2,3,2,1283,8,2,1,2,1,2, + 1,2,3,2,1288,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1295,8,2,1,2,1,2,1,2,1, + 2,1,2,1,2,5,2,1303,8,2,10,2,12,2,1306,9,2,3,2,1308,8,2,1,3,1,3,1, + 3,1,3,3,3,1314,8,3,1,3,1,3,1,3,1,3,1,3,3,3,1321,8,3,1,3,1,3,3,3, + 1325,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3, + 1388,8,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,1396,8,3,1,3,1,3,1,3,1,3,1, + 3,3,3,1403,8,3,1,4,1,4,1,4,1,4,1,4,1,4,3,4,1411,8,4,1,4,1,4,1,4, + 1,4,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1423,8,5,1,5,1,5,1,5,3,5,1428,8, + 5,1,6,3,6,1431,8,6,1,6,1,6,1,6,1,7,1,7,1,7,3,7,1439,8,7,1,7,1,7, + 1,7,3,7,1444,8,7,3,7,1446,8,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,1454,8, + 7,1,7,1,7,1,7,3,7,1459,8,7,1,7,1,7,3,7,1463,8,7,1,7,3,7,1466,8,7, + 1,7,1,7,1,7,1,7,1,7,1,7,3,7,1474,8,7,1,7,1,7,1,7,3,7,1479,8,7,1, + 7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,1488,8,7,1,7,1,7,1,7,3,7,1493,8,7, + 1,7,3,7,1496,8,7,1,7,1,7,1,7,3,7,1501,8,7,1,7,1,7,3,7,1505,8,7,1, + 7,1,7,1,7,3,7,1510,8,7,3,7,1512,8,7,1,8,1,8,1,8,3,8,1517,8,8,1,9, + 1,9,1,9,1,9,1,9,5,9,1524,8,9,10,9,12,9,1527,9,9,1,9,1,9,1,10,1,10, + 1,10,3,10,1534,8,10,1,10,1,10,1,10,1,10,3,10,1540,8,10,1,11,1,11, + 1,12,1,12,1,12,1,12,1,12,3,12,1549,8,12,1,13,1,13,1,13,5,13,1554, + 8,13,10,13,12,13,1557,9,13,1,14,1,14,1,14,1,14,5,14,1563,8,14,10, + 14,12,14,1566,9,14,1,15,1,15,3,15,1570,8,15,1,15,3,15,1573,8,15, + 1,15,1,15,1,15,1,15,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17, + 1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,5,17,1598,8,17, + 10,17,12,17,1601,9,17,1,18,1,18,1,18,1,19,1,19,1,19,1,19,5,19,1610, + 8,19,10,19,12,19,1613,9,19,1,19,1,19,1,20,1,20,3,20,1619,8,20,1, + 20,3,20,1622,8,20,1,21,1,21,1,21,5,21,1627,8,21,10,21,12,21,1630, + 9,21,1,21,3,21,1633,8,21,1,22,1,22,1,22,1,22,3,22,1639,8,22,1,23, + 1,23,1,23,1,23,5,23,1645,8,23,10,23,12,23,1648,9,23,1,23,1,23,1, + 24,1,24,3,24,1654,8,24,1,24,3,24,1657,8,24,1,25,1,25,1,25,1,25,5, + 25,1663,8,25,10,25,12,25,1666,9,25,1,25,1,25,1,26,1,26,1,26,1,26, + 5,26,1674,8,26,10,26,12,26,1677,9,26,1,26,1,26,1,27,1,27,1,27,1, + 27,1,27,1,27,3,27,1687,8,27,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1695, + 8,28,1,29,1,29,1,29,1,29,3,29,1701,8,29,1,30,1,30,1,30,1,30,1,30, + 1,30,1,30,4,30,1710,8,30,11,30,12,30,1711,1,30,1,30,1,30,1,30,1, + 30,3,30,1719,8,30,1,30,1,30,1,30,1,30,1,30,3,30,1726,8,30,1,30,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,3,30,1738,8,30,1,30,1, + 30,1,30,1,30,5,30,1744,8,30,10,30,12,30,1747,9,30,1,30,5,30,1750, + 8,30,10,30,12,30,1753,9,30,1,30,5,30,1756,8,30,10,30,12,30,1759, + 9,30,3,30,1761,8,30,1,31,1,31,1,32,1,32,1,33,1,33,1,34,1,34,1,35, + 1,35,1,36,1,36,1,37,1,37,3,37,1777,8,37,1,38,1,38,1,38,5,38,1782, + 8,38,10,38,12,38,1785,9,38,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1, + 40,3,40,1795,8,40,1,41,1,41,1,41,1,41,1,41,5,41,1802,8,41,10,41, + 12,41,1805,9,41,3,41,1807,8,41,1,41,1,41,1,41,1,41,1,41,5,41,1814, + 8,41,10,41,12,41,1817,9,41,3,41,1819,8,41,1,41,1,41,1,41,1,41,1, + 41,5,41,1826,8,41,10,41,12,41,1829,9,41,3,41,1831,8,41,1,41,1,41, + 1,41,1,41,1,41,5,41,1838,8,41,10,41,12,41,1841,9,41,3,41,1843,8, + 41,1,41,3,41,1846,8,41,1,41,1,41,1,41,3,41,1851,8,41,3,41,1853,8, + 41,1,41,1,41,3,41,1857,8,41,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1865, + 8,42,1,42,1,42,1,42,1,42,3,42,1871,8,42,1,42,1,42,1,42,1,42,3,42, + 1877,8,42,1,42,5,42,1880,8,42,10,42,12,42,1883,9,42,1,43,1,43,1, + 43,4,43,1888,8,43,11,43,12,43,1889,1,43,1,43,1,43,1,43,1,43,1,43, + 5,43,1898,8,43,10,43,12,43,1901,9,43,1,43,1,43,1,43,1,43,1,43,1, + 43,3,43,1909,8,43,1,44,1,44,3,44,1913,8,44,1,44,3,44,1916,8,44,1, + 44,1,44,3,44,1920,8,44,1,45,1,45,3,45,1924,8,45,1,45,1,45,1,45,1, + 45,5,45,1930,8,45,10,45,12,45,1933,9,45,1,45,3,45,1936,8,45,1,45, + 3,45,1939,8,45,1,45,3,45,1942,8,45,1,45,3,45,1945,8,45,1,45,1,45, + 3,45,1949,8,45,1,46,1,46,3,46,1953,8,46,1,46,5,46,1956,8,46,10,46, + 12,46,1959,9,46,1,46,3,46,1962,8,46,1,46,3,46,1965,8,46,1,46,3,46, + 1968,8,46,1,46,3,46,1971,8,46,1,46,1,46,3,46,1975,8,46,1,46,5,46, + 1978,8,46,10,46,12,46,1981,9,46,1,46,3,46,1984,8,46,1,46,3,46,1987, + 8,46,1,46,3,46,1990,8,46,1,46,3,46,1993,8,46,3,46,1995,8,46,1,47, + 1,47,1,47,1,47,3,47,2001,8,47,1,47,1,47,1,47,1,47,1,47,3,47,2008, + 8,47,1,47,1,47,1,47,3,47,2013,8,47,1,47,3,47,2016,8,47,1,47,3,47, + 2019,8,47,1,47,1,47,3,47,2023,8,47,1,47,1,47,1,47,1,47,1,47,1,47, + 1,47,1,47,3,47,2033,8,47,1,47,1,47,3,47,2037,8,47,3,47,2039,8,47, + 1,47,3,47,2042,8,47,1,47,1,47,3,47,2046,8,47,1,48,1,48,5,48,2050, + 8,48,10,48,12,48,2053,9,48,1,48,3,48,2056,8,48,1,48,1,48,1,49,1, + 49,1,49,1,50,1,50,1,50,1,50,3,50,2067,8,50,1,50,1,50,1,50,1,50,1, + 50,1,50,3,50,2075,8,50,3,50,2077,8,50,1,51,1,51,1,51,1,51,1,51,3, + 51,2084,8,51,1,51,1,51,3,51,2088,8,51,1,51,1,51,1,51,1,52,1,52,1, + 52,1,52,1,52,1,52,1,52,3,52,2100,8,52,1,52,1,52,1,52,1,52,1,52,3, + 52,2107,8,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,5,53,2120,8,53,10,53,12,53,2123,9,53,1,53,1,53,3,53,2127,8,53, + 1,54,1,54,1,54,5,54,2132,8,54,10,54,12,54,2135,9,54,1,55,1,55,1, + 55,1,55,1,56,1,56,1,56,1,57,1,57,1,57,1,58,1,58,1,58,3,58,2150,8, + 58,1,58,5,58,2153,8,58,10,58,12,58,2156,9,58,1,58,1,58,1,59,1,59, + 1,59,1,59,1,59,1,59,5,59,2166,8,59,10,59,12,59,2169,9,59,1,59,1, + 59,3,59,2173,8,59,1,60,1,60,1,60,1,60,5,60,2179,8,60,10,60,12,60, + 2182,9,60,1,60,5,60,2185,8,60,10,60,12,60,2188,9,60,1,60,3,60,2191, + 8,60,1,60,3,60,2194,8,60,1,61,3,61,2197,8,61,1,61,1,61,1,61,1,61, + 1,61,3,61,2204,8,61,1,61,3,61,2207,8,61,1,61,1,61,1,61,1,61,3,61, + 2213,8,61,1,62,1,62,1,62,1,62,1,62,5,62,2220,8,62,10,62,12,62,2223, + 9,62,1,62,1,62,1,62,1,62,1,62,5,62,2230,8,62,10,62,12,62,2233,9, + 62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,5,62,2245,8, + 62,10,62,12,62,2248,9,62,1,62,1,62,3,62,2252,8,62,3,62,2254,8,62, + 1,63,1,63,1,63,3,63,2259,8,63,1,64,1,64,1,64,1,64,1,64,5,64,2266, + 8,64,10,64,12,64,2269,9,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,3, + 64,2278,8,64,1,64,1,64,1,64,3,64,2283,8,64,5,64,2285,8,64,10,64, + 12,64,2288,9,64,1,64,1,64,3,64,2292,8,64,1,65,1,65,1,65,1,65,1,65, + 3,65,2299,8,65,1,65,1,65,1,65,3,65,2304,8,65,5,65,2306,8,65,10,65, + 12,65,2309,9,65,3,65,2311,8,65,1,65,3,65,2314,8,65,1,66,1,66,1,66, + 1,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66,2326,8,66,10,66,12,66,2329, + 9,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,5,67,2339,8,67,10,67, + 12,67,2342,9,67,1,67,1,67,3,67,2346,8,67,1,68,1,68,3,68,2350,8,68, + 1,68,3,68,2353,8,68,1,69,1,69,1,69,3,69,2358,8,69,1,69,1,69,1,69, + 3,69,2363,8,69,1,69,1,69,3,69,2367,8,69,1,69,3,69,2370,8,69,1,70, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2380,8,70,10,70,12,70,2383, + 9,70,1,70,1,70,1,71,1,71,1,71,1,71,5,71,2391,8,71,10,71,12,71,2394, + 9,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2404,8,71,10,71, + 12,71,2407,9,71,1,71,1,71,1,72,1,72,1,72,1,72,5,72,2415,8,72,10, + 72,12,72,2418,9,72,1,72,1,72,3,72,2422,8,72,1,72,3,72,2425,8,72, + 1,73,1,73,3,73,2429,8,73,1,73,3,73,2432,8,73,1,74,1,74,1,74,1,74, + 1,75,1,75,1,75,1,76,1,76,1,76,3,76,2444,8,76,1,76,1,76,1,76,1,76, + 1,76,5,76,2451,8,76,10,76,12,76,2454,9,76,3,76,2456,8,76,1,76,1, + 76,1,76,3,76,2461,8,76,1,76,1,76,1,76,5,76,2466,8,76,10,76,12,76, + 2469,9,76,3,76,2471,8,76,1,77,1,77,1,78,1,78,3,78,2477,8,78,1,78, + 1,78,1,78,1,78,5,78,2483,8,78,10,78,12,78,2486,9,78,3,78,2488,8, + 78,1,79,1,79,1,79,3,79,2493,8,79,1,79,1,79,3,79,2497,8,79,1,79,1, + 79,1,79,1,79,3,79,2503,8,79,1,79,1,79,3,79,2507,8,79,1,80,3,80,2510, + 8,80,1,80,1,80,1,80,3,80,2515,8,80,1,80,3,80,2518,8,80,1,80,1,80, + 1,80,3,80,2523,8,80,3,80,2525,8,80,1,81,1,81,1,81,1,81,3,81,2531, + 8,81,1,82,1,82,1,82,3,82,2536,8,82,1,82,1,82,1,82,1,82,1,82,3,82, + 2543,8,82,1,83,3,83,2546,8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2564,8,83,3,83, + 2566,8,83,1,83,3,83,2569,8,83,1,84,1,84,1,84,1,84,1,85,1,85,1,85, + 5,85,2578,8,85,10,85,12,85,2581,9,85,1,86,1,86,1,86,1,86,5,86,2587, + 8,86,10,86,12,86,2590,9,86,1,86,1,86,1,87,1,87,3,87,2596,8,87,1, + 88,1,88,1,88,1,88,5,88,2602,8,88,10,88,12,88,2605,9,88,1,88,1,88, + 1,89,1,89,1,89,3,89,2612,8,89,1,90,1,90,1,90,3,90,2617,8,90,1,90, + 3,90,2620,8,90,1,90,3,90,2623,8,90,1,90,1,90,1,90,1,90,1,90,1,90, + 3,90,2631,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,2639,8,90,1,90, + 1,90,1,90,1,90,1,90,1,90,5,90,2647,8,90,10,90,12,90,2650,9,90,1, + 90,1,90,1,90,1,90,1,90,1,90,1,90,5,90,2659,8,90,10,90,12,90,2662, + 9,90,3,90,2664,8,90,1,90,1,90,1,90,3,90,2669,8,90,1,91,1,91,1,91, + 3,91,2674,8,91,1,91,1,91,1,91,1,91,1,91,3,91,2681,8,91,1,91,1,91, + 1,91,1,91,1,91,3,91,2688,8,91,3,91,2690,8,91,1,92,1,92,1,92,1,92, + 1,92,1,92,1,92,1,92,1,92,5,92,2701,8,92,10,92,12,92,2704,9,92,1, + 92,1,92,1,92,3,92,2709,8,92,3,92,2711,8,92,1,92,1,92,1,92,1,92,1, + 92,1,92,5,92,2719,8,92,10,92,12,92,2722,9,92,1,92,1,92,1,92,3,92, + 2727,8,92,3,92,2729,8,92,1,93,1,93,1,93,1,93,1,94,1,94,3,94,2737, + 8,94,1,95,1,95,3,95,2741,8,95,1,96,3,96,2744,8,96,1,96,1,96,3,96, + 2748,8,96,3,96,2750,8,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97, + 2759,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97, + 2771,8,97,3,97,2773,8,97,1,97,1,97,1,97,1,97,1,97,3,97,2780,8,97, + 1,97,1,97,1,97,1,97,1,97,3,97,2787,8,97,1,97,1,97,1,97,1,97,3,97, + 2793,8,97,1,97,1,97,1,97,1,97,3,97,2799,8,97,3,97,2801,8,97,1,98, + 1,98,1,98,5,98,2806,8,98,10,98,12,98,2809,9,98,1,99,1,99,1,99,5, + 99,2814,8,99,10,99,12,99,2817,9,99,1,100,1,100,1,100,5,100,2822, + 8,100,10,100,12,100,2825,9,100,1,101,1,101,1,101,3,101,2830,8,101, + 1,102,1,102,1,102,3,102,2835,8,102,1,102,1,102,1,103,1,103,1,103, + 3,103,2842,8,103,1,103,1,103,1,104,1,104,3,104,2848,8,104,1,104, + 3,104,2851,8,104,1,104,1,104,3,104,2855,8,104,3,104,2857,8,104,1, + 105,1,105,1,105,5,105,2862,8,105,10,105,12,105,2865,9,105,1,106, + 1,106,1,106,1,106,5,106,2871,8,106,10,106,12,106,2874,9,106,1,106, + 1,106,1,107,1,107,3,107,2880,8,107,1,108,1,108,1,108,1,108,1,108, + 1,108,5,108,2888,8,108,10,108,12,108,2891,9,108,1,108,1,108,3,108, + 2895,8,108,1,109,1,109,3,109,2899,8,109,1,110,1,110,1,111,1,111, + 1,111,1,111,1,112,1,112,3,112,2909,8,112,1,113,1,113,1,113,5,113, + 2914,8,113,10,113,12,113,2917,9,113,1,114,1,114,1,114,1,114,1,114, + 1,114,1,114,1,114,1,114,1,114,3,114,2929,8,114,3,114,2931,8,114, + 1,114,1,114,1,114,1,114,1,114,1,114,5,114,2939,8,114,10,114,12,114, + 2942,9,114,1,115,3,115,2945,8,115,1,115,1,115,1,115,1,115,1,115, + 1,115,3,115,2953,8,115,1,115,1,115,1,115,1,115,1,115,5,115,2960, + 8,115,10,115,12,115,2963,9,115,1,115,1,115,1,115,3,115,2968,8,115, + 1,115,1,115,1,115,1,115,1,115,1,115,3,115,2976,8,115,1,115,1,115, + 1,115,3,115,2981,8,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115, + 1,115,5,115,2991,8,115,10,115,12,115,2994,9,115,1,115,1,115,3,115, + 2998,8,115,1,115,3,115,3001,8,115,1,115,1,115,1,115,1,115,3,115, + 3007,8,115,1,115,1,115,3,115,3011,8,115,1,115,1,115,1,115,3,115, + 3016,8,115,1,115,1,115,1,115,3,115,3021,8,115,1,115,1,115,1,115, + 3,115,3026,8,115,1,116,1,116,1,116,1,116,3,116,3032,8,116,1,116, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116,3053,8,116,10,116, + 12,116,3056,9,116,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,3066,8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,3,118,3078,8,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,4,118,3088,8,118,11,118,12,118,3089,1,118,1,118,3,118, + 3094,8,118,1,118,1,118,1,118,1,118,1,118,4,118,3101,8,118,11,118, + 12,118,3102,1,118,1,118,3,118,3107,8,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,5,118, + 3123,8,118,10,118,12,118,3126,9,118,3,118,3128,8,118,1,118,1,118, + 1,118,1,118,1,118,1,118,3,118,3136,8,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,3,118,3145,8,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,3,118,3154,8,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,4,118,3175,8,118,11,118,12,118,3176,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 3,118,3193,8,118,1,118,1,118,1,118,5,118,3198,8,118,10,118,12,118, + 3201,9,118,3,118,3203,8,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,3,118,3212,8,118,1,118,1,118,3,118,3216,8,118,1,118,1,118, + 3,118,3220,8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 4,118,3230,8,118,11,118,12,118,3231,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,3257,8,118,1,118, + 1,118,1,118,1,118,1,118,3,118,3264,8,118,1,118,3,118,3267,8,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,3,118,3282,8,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,3,118,3303,8,118,1,118,1,118,3,118,3307,8,118,3,118, + 3309,8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,5,118, + 3319,8,118,10,118,12,118,3322,9,118,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,3,119,3331,8,119,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,4,120,3344,8,120,11,120,12,120,3345, + 3,120,3348,8,120,1,121,1,121,1,122,1,122,1,123,1,123,1,124,1,124, + 1,125,1,125,1,125,3,125,3361,8,125,1,126,1,126,3,126,3365,8,126, + 1,127,1,127,1,127,4,127,3370,8,127,11,127,12,127,3371,1,128,1,128, + 1,128,3,128,3377,8,128,1,129,1,129,1,129,1,129,1,129,1,130,3,130, + 3385,8,130,1,130,1,130,1,130,3,130,3390,8,130,1,131,1,131,1,132, + 1,132,1,133,1,133,1,133,3,133,3399,8,133,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,3,134,3431,8,134,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,5,135,3450,8,135,10,135,12,135,3453,9,135,3,135,3455, + 8,135,1,135,1,135,3,135,3459,8,135,1,135,1,135,1,135,1,135,3,135, + 3465,8,135,1,135,1,135,1,135,1,135,3,135,3471,8,135,1,135,1,135, + 1,135,1,135,1,135,5,135,3478,8,135,10,135,12,135,3481,9,135,1,135, + 3,135,3484,8,135,3,135,3486,8,135,1,136,1,136,1,136,5,136,3491,8, + 136,10,136,12,136,3494,9,136,1,137,1,137,1,137,5,137,3499,8,137, + 10,137,12,137,3502,9,137,1,138,1,138,1,138,5,138,3507,8,138,10,138, + 12,138,3510,9,138,1,139,1,139,1,139,5,139,3515,8,139,10,139,12,139, + 3518,9,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,3527, + 8,140,1,141,1,141,1,141,1,142,1,142,1,142,5,142,3535,8,142,10,142, + 12,142,3538,9,142,1,143,1,143,1,143,1,143,3,143,3544,8,143,1,143, + 1,143,3,143,3548,8,143,1,144,1,144,1,144,5,144,3553,8,144,10,144, + 12,144,3556,9,144,1,145,1,145,1,145,5,145,3561,8,145,10,145,12,145, + 3564,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,3,146,3579,8,146,1,147,1,147,3,147,3583, + 8,147,1,147,1,147,1,147,3,147,3588,8,147,1,147,1,147,3,147,3592, + 8,147,1,148,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,149,1,149,5,149,3608,8,149,10,149,12,149,3611,9,149, + 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 5,150,3624,8,150,10,150,12,150,3627,9,150,1,150,1,150,1,150,1,150, + 1,150,5,150,3634,8,150,10,150,12,150,3637,9,150,3,150,3639,8,150, + 1,150,1,150,1,150,1,150,1,150,5,150,3646,8,150,10,150,12,150,3649, + 9,150,3,150,3651,8,150,3,150,3653,8,150,1,150,3,150,3656,8,150,1, + 150,3,150,3659,8,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1, + 151,3,151,3669,8,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152,3, + 152,3678,8,152,1,153,1,153,1,153,5,153,3683,8,153,10,153,12,153, + 3686,9,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154, + 3,154,3697,8,154,1,155,1,155,1,156,1,156,1,156,5,156,3704,8,156, + 10,156,12,156,3707,9,156,1,157,1,157,1,157,1,158,1,158,4,158,3714, + 8,158,11,158,12,158,3715,1,158,3,158,3719,8,158,1,159,1,159,3,159, + 3723,8,159,1,160,1,160,1,160,1,160,3,160,3729,8,160,1,161,1,161, + 1,162,3,162,3734,8,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163, + 1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,163,3,163,3751,8,163, + 1,164,1,164,1,165,1,165,1,166,1,166,1,167,1,167,1,167,9,1102,1172, + 1180,1200,1227,1236,1245,1254,1304,4,84,228,232,236,168,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,0,76,2,0,78,78,229,229,2,0,34,34,247, + 247,3,0,73,73,191,191,262,262,2,0,123,123,140,140,2,0,11,11,39,39, + 2,0,91,91,98,98,5,0,46,46,58,58,108,108,122,122,173,173,3,0,10,10, + 290,290,331,331,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96,96,289, + 289,2,0,8,8,167,167,1,0,335,336,2,0,59,59,96,96,2,0,129,129,249, + 249,6,0,54,54,129,129,143,143,172,172,228,228,313,313,3,0,11,11, + 59,59,96,96,4,0,107,107,139,139,171,171,326,326,2,0,171,171,326, + 326,3,0,45,45,275,275,279,279,2,0,45,45,275,275,3,0,18,18,103,103, + 320,320,3,0,72,72,190,190,261,261,4,0,102,102,148,148,270,270,323, + 323,3,0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157, + 157,2,0,292,292,337,337,2,0,291,291,303,303,2,0,61,61,256,256,2, + 0,104,104,141,141,2,0,10,10,92,92,2,0,15,15,264,264,2,0,124,124, + 250,250,2,0,382,382,384,384,2,0,93,93,217,217,2,0,209,209,278,278, + 2,0,197,197,360,360,1,0,251,252,1,0,163,164,3,0,10,10,16,16,277, + 277,3,0,111,111,316,316,325,325,2,0,361,362,366,366,2,0,94,94,363, + 365,2,0,361,362,369,369,11,0,67,67,69,69,134,134,180,180,182,182, + 184,184,186,186,231,231,259,259,341,341,348,348,4,0,63,63,65,66, + 268,268,331,331,2,0,74,75,306,306,3,0,76,77,302,302,307,307,2,0, + 36,36,318,318,2,0,138,138,246,246,1,0,287,288,2,0,4,4,123,123,2, + 0,4,4,119,119,3,0,28,28,160,160,311,311,1,0,220,221,1,0,352,359, + 2,0,94,94,361,370,4,0,14,14,140,140,197,197,208,208,2,0,111,111, + 316,316,1,0,361,362,7,0,67,68,134,135,180,187,192,193,259,260,341, + 342,348,349,6,0,67,67,134,134,184,184,186,186,259,259,348,348,2, + 0,186,186,348,348,4,0,67,67,134,134,184,184,259,259,3,0,134,134, + 184,184,259,259,2,0,82,82,352,352,2,0,233,233,258,258,2,0,118,118, + 226,226,2,0,378,378,389,389,1,0,379,387,2,0,96,96,269,269,1,0,377, + 378,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34,37,41,43,46,48, + 48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103,110,113,113,115, + 118,121,122,125,128,131,131,133,139,141,143,145,147,149,151,154, + 154,156,157,159,159,163,193,195,195,199,201,205,207,210,210,212, + 213,215,219,222,226,228,238,240,249,251,262,264,267,269,276,278, + 292,294,299,302,308,310,310,312,322,326,330,333,342,345,345,348, + 351,16,0,15,15,60,60,102,102,124,124,144,144,148,148,155,155,158, + 158,161,161,194,194,203,203,250,250,264,264,270,270,323,323,332, + 332,19,0,8,14,16,59,61,101,103,122,125,143,145,147,149,154,156,157, + 159,160,162,193,195,195,197,202,204,249,251,262,265,269,271,292, + 294,322,324,331,333,351,4365,0,339,1,0,0,0,2,344,1,0,0,0,4,1307, + 1,0,0,0,6,1402,1,0,0,0,8,1404,1,0,0,0,10,1416,1,0,0,0,12,1430,1, + 0,0,0,14,1511,1,0,0,0,16,1513,1,0,0,0,18,1518,1,0,0,0,20,1539,1, + 0,0,0,22,1541,1,0,0,0,24,1548,1,0,0,0,26,1550,1,0,0,0,28,1558,1, + 0,0,0,30,1567,1,0,0,0,32,1578,1,0,0,0,34,1599,1,0,0,0,36,1602,1, + 0,0,0,38,1605,1,0,0,0,40,1616,1,0,0,0,42,1632,1,0,0,0,44,1638,1, + 0,0,0,46,1640,1,0,0,0,48,1651,1,0,0,0,50,1658,1,0,0,0,52,1669,1, + 0,0,0,54,1686,1,0,0,0,56,1694,1,0,0,0,58,1696,1,0,0,0,60,1760,1, + 0,0,0,62,1762,1,0,0,0,64,1764,1,0,0,0,66,1766,1,0,0,0,68,1768,1, + 0,0,0,70,1770,1,0,0,0,72,1772,1,0,0,0,74,1776,1,0,0,0,76,1778,1, + 0,0,0,78,1786,1,0,0,0,80,1794,1,0,0,0,82,1806,1,0,0,0,84,1858,1, + 0,0,0,86,1908,1,0,0,0,88,1912,1,0,0,0,90,1948,1,0,0,0,92,1994,1, + 0,0,0,94,2015,1,0,0,0,96,2047,1,0,0,0,98,2059,1,0,0,0,100,2062,1, + 0,0,0,102,2078,1,0,0,0,104,2092,1,0,0,0,106,2126,1,0,0,0,108,2128, + 1,0,0,0,110,2136,1,0,0,0,112,2140,1,0,0,0,114,2143,1,0,0,0,116,2146, + 1,0,0,0,118,2172,1,0,0,0,120,2174,1,0,0,0,122,2212,1,0,0,0,124,2253, + 1,0,0,0,126,2258,1,0,0,0,128,2291,1,0,0,0,130,2313,1,0,0,0,132,2315, + 1,0,0,0,134,2345,1,0,0,0,136,2347,1,0,0,0,138,2354,1,0,0,0,140,2371, + 1,0,0,0,142,2386,1,0,0,0,144,2410,1,0,0,0,146,2426,1,0,0,0,148,2433, + 1,0,0,0,150,2437,1,0,0,0,152,2440,1,0,0,0,154,2472,1,0,0,0,156,2487, + 1,0,0,0,158,2506,1,0,0,0,160,2524,1,0,0,0,162,2530,1,0,0,0,164,2532, + 1,0,0,0,166,2568,1,0,0,0,168,2570,1,0,0,0,170,2574,1,0,0,0,172,2582, + 1,0,0,0,174,2593,1,0,0,0,176,2597,1,0,0,0,178,2608,1,0,0,0,180,2668, + 1,0,0,0,182,2689,1,0,0,0,184,2710,1,0,0,0,186,2730,1,0,0,0,188,2736, + 1,0,0,0,190,2740,1,0,0,0,192,2749,1,0,0,0,194,2800,1,0,0,0,196,2802, + 1,0,0,0,198,2810,1,0,0,0,200,2818,1,0,0,0,202,2826,1,0,0,0,204,2834, + 1,0,0,0,206,2841,1,0,0,0,208,2847,1,0,0,0,210,2858,1,0,0,0,212,2866, + 1,0,0,0,214,2879,1,0,0,0,216,2894,1,0,0,0,218,2898,1,0,0,0,220,2900, + 1,0,0,0,222,2902,1,0,0,0,224,2908,1,0,0,0,226,2910,1,0,0,0,228,2930, + 1,0,0,0,230,3025,1,0,0,0,232,3031,1,0,0,0,234,3057,1,0,0,0,236,3308, + 1,0,0,0,238,3330,1,0,0,0,240,3347,1,0,0,0,242,3349,1,0,0,0,244,3351, + 1,0,0,0,246,3353,1,0,0,0,248,3355,1,0,0,0,250,3357,1,0,0,0,252,3362, + 1,0,0,0,254,3369,1,0,0,0,256,3373,1,0,0,0,258,3378,1,0,0,0,260,3384, + 1,0,0,0,262,3391,1,0,0,0,264,3393,1,0,0,0,266,3398,1,0,0,0,268,3430, + 1,0,0,0,270,3485,1,0,0,0,272,3487,1,0,0,0,274,3495,1,0,0,0,276,3503, + 1,0,0,0,278,3511,1,0,0,0,280,3526,1,0,0,0,282,3528,1,0,0,0,284,3531, + 1,0,0,0,286,3539,1,0,0,0,288,3549,1,0,0,0,290,3557,1,0,0,0,292,3578, + 1,0,0,0,294,3580,1,0,0,0,296,3593,1,0,0,0,298,3598,1,0,0,0,300,3658, + 1,0,0,0,302,3668,1,0,0,0,304,3677,1,0,0,0,306,3679,1,0,0,0,308,3696, + 1,0,0,0,310,3698,1,0,0,0,312,3700,1,0,0,0,314,3708,1,0,0,0,316,3718, + 1,0,0,0,318,3722,1,0,0,0,320,3728,1,0,0,0,322,3730,1,0,0,0,324,3733, + 1,0,0,0,326,3750,1,0,0,0,328,3752,1,0,0,0,330,3754,1,0,0,0,332,3756, + 1,0,0,0,334,3758,1,0,0,0,336,338,3,2,1,0,337,336,1,0,0,0,338,341, + 1,0,0,0,339,337,1,0,0,0,339,340,1,0,0,0,340,342,1,0,0,0,341,339, + 1,0,0,0,342,343,5,0,0,1,343,1,1,0,0,0,344,346,3,4,2,0,345,347,5, + 1,0,0,346,345,1,0,0,0,346,347,1,0,0,0,347,3,1,0,0,0,348,1308,3,12, + 6,0,349,351,3,28,14,0,350,349,1,0,0,0,350,351,1,0,0,0,351,352,1, + 0,0,0,352,1308,3,60,30,0,353,355,5,330,0,0,354,356,3,22,11,0,355, + 354,1,0,0,0,355,356,1,0,0,0,356,357,1,0,0,0,357,1308,3,62,31,0,358, + 359,5,269,0,0,359,362,5,37,0,0,360,363,3,318,159,0,361,363,3,328, + 164,0,362,360,1,0,0,0,362,361,1,0,0,0,363,1308,1,0,0,0,364,365,5, + 59,0,0,365,367,3,22,11,0,366,368,3,148,74,0,367,366,1,0,0,0,367, + 368,1,0,0,0,368,369,1,0,0,0,369,379,3,64,32,0,370,371,5,51,0,0,371, + 378,3,328,164,0,372,373,5,170,0,0,373,378,3,328,164,0,374,375,5, + 346,0,0,375,376,7,0,0,0,376,378,3,38,19,0,377,370,1,0,0,0,377,372, + 1,0,0,0,377,374,1,0,0,0,378,381,1,0,0,0,379,377,1,0,0,0,379,380, + 1,0,0,0,380,1308,1,0,0,0,381,379,1,0,0,0,382,383,5,11,0,0,383,384, + 3,22,11,0,384,385,3,62,31,0,385,386,5,269,0,0,386,387,7,0,0,0,387, + 388,3,38,19,0,388,1308,1,0,0,0,389,390,5,11,0,0,390,391,3,22,11, + 0,391,392,3,62,31,0,392,393,5,269,0,0,393,394,5,170,0,0,394,395, + 3,328,164,0,395,1308,1,0,0,0,396,397,5,96,0,0,397,399,3,22,11,0, + 398,400,3,150,75,0,399,398,1,0,0,0,399,400,1,0,0,0,400,401,1,0,0, + 0,401,403,3,62,31,0,402,404,7,1,0,0,403,402,1,0,0,0,403,404,1,0, + 0,0,404,1308,1,0,0,0,405,406,5,273,0,0,406,409,7,2,0,0,407,408,7, + 3,0,0,408,410,3,198,99,0,409,407,1,0,0,0,409,410,1,0,0,0,410,415, + 1,0,0,0,411,413,5,163,0,0,412,411,1,0,0,0,412,413,1,0,0,0,413,414, + 1,0,0,0,414,416,3,328,164,0,415,412,1,0,0,0,415,416,1,0,0,0,416, + 1308,1,0,0,0,417,419,5,59,0,0,418,420,5,298,0,0,419,418,1,0,0,0, + 419,420,1,0,0,0,420,422,1,0,0,0,421,423,5,109,0,0,422,421,1,0,0, + 0,422,423,1,0,0,0,423,424,1,0,0,0,424,426,5,293,0,0,425,427,3,148, + 74,0,426,425,1,0,0,0,426,427,1,0,0,0,427,428,1,0,0,0,428,433,3,66, + 33,0,429,430,5,2,0,0,430,431,3,288,144,0,431,432,5,3,0,0,432,434, + 1,0,0,0,433,429,1,0,0,0,433,434,1,0,0,0,434,436,1,0,0,0,435,437, + 3,32,16,0,436,435,1,0,0,0,436,437,1,0,0,0,437,438,1,0,0,0,438,443, + 3,34,17,0,439,441,5,20,0,0,440,439,1,0,0,0,440,441,1,0,0,0,441,442, + 1,0,0,0,442,444,3,12,6,0,443,440,1,0,0,0,443,444,1,0,0,0,444,1308, + 1,0,0,0,445,446,5,59,0,0,446,448,5,293,0,0,447,449,3,148,74,0,448, + 447,1,0,0,0,448,449,1,0,0,0,449,450,1,0,0,0,450,451,3,66,33,0,451, + 452,5,163,0,0,452,463,3,68,34,0,453,462,3,32,16,0,454,462,3,194, + 97,0,455,462,3,54,27,0,456,457,5,170,0,0,457,462,3,328,164,0,458, + 459,5,297,0,0,459,462,3,38,19,0,460,462,3,36,18,0,461,453,1,0,0, + 0,461,454,1,0,0,0,461,455,1,0,0,0,461,456,1,0,0,0,461,458,1,0,0, + 0,461,460,1,0,0,0,462,465,1,0,0,0,463,461,1,0,0,0,463,464,1,0,0, + 0,464,1308,1,0,0,0,465,463,1,0,0,0,466,467,5,59,0,0,467,469,5,208, + 0,0,468,466,1,0,0,0,468,469,1,0,0,0,469,470,1,0,0,0,470,471,5,244, + 0,0,471,472,5,293,0,0,472,477,3,66,33,0,473,474,5,2,0,0,474,475, + 3,288,144,0,475,476,5,3,0,0,476,478,1,0,0,0,477,473,1,0,0,0,477, + 478,1,0,0,0,478,480,1,0,0,0,479,481,3,32,16,0,480,479,1,0,0,0,480, + 481,1,0,0,0,481,482,1,0,0,0,482,487,3,34,17,0,483,485,5,20,0,0,484, + 483,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,488,3,12,6,0,487, + 484,1,0,0,0,487,488,1,0,0,0,488,1308,1,0,0,0,489,490,5,13,0,0,490, + 491,5,293,0,0,491,493,3,68,34,0,492,494,3,18,9,0,493,492,1,0,0,0, + 493,494,1,0,0,0,494,495,1,0,0,0,495,496,5,55,0,0,496,504,5,282,0, + 0,497,505,5,196,0,0,498,499,5,119,0,0,499,500,5,50,0,0,500,505,3, + 76,38,0,501,502,5,119,0,0,502,503,5,10,0,0,503,505,5,50,0,0,504, + 497,1,0,0,0,504,498,1,0,0,0,504,501,1,0,0,0,504,505,1,0,0,0,505, + 1308,1,0,0,0,506,507,5,13,0,0,507,510,5,294,0,0,508,509,7,3,0,0, + 509,511,3,62,31,0,510,508,1,0,0,0,510,511,1,0,0,0,511,512,1,0,0, + 0,512,513,5,55,0,0,513,515,5,282,0,0,514,516,5,196,0,0,515,514,1, + 0,0,0,515,516,1,0,0,0,516,1308,1,0,0,0,517,518,5,11,0,0,518,519, + 5,293,0,0,519,520,3,68,34,0,520,521,5,8,0,0,521,522,5,49,0,0,522, + 523,3,274,137,0,523,1308,1,0,0,0,524,525,5,11,0,0,525,526,5,293, + 0,0,526,527,3,68,34,0,527,528,5,8,0,0,528,529,5,50,0,0,529,530,5, + 2,0,0,530,531,3,272,136,0,531,532,5,3,0,0,532,1308,1,0,0,0,533,534, + 5,11,0,0,534,535,5,293,0,0,535,536,3,68,34,0,536,537,5,241,0,0,537, + 538,5,49,0,0,538,539,3,74,37,0,539,540,5,309,0,0,540,541,3,78,39, + 0,541,1308,1,0,0,0,542,543,5,11,0,0,543,544,5,293,0,0,544,545,3, + 68,34,0,545,546,5,96,0,0,546,548,5,49,0,0,547,549,3,150,75,0,548, + 547,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0,550,551,3,74,37,0,551, + 1308,1,0,0,0,552,553,5,11,0,0,553,554,5,293,0,0,554,555,3,68,34, + 0,555,556,5,96,0,0,556,558,5,50,0,0,557,559,3,150,75,0,558,557,1, + 0,0,0,558,559,1,0,0,0,559,560,1,0,0,0,560,561,5,2,0,0,561,562,3, + 76,38,0,562,563,5,3,0,0,563,1308,1,0,0,0,564,569,5,11,0,0,565,566, + 5,293,0,0,566,570,3,68,34,0,567,568,5,338,0,0,568,570,3,72,36,0, + 569,565,1,0,0,0,569,567,1,0,0,0,570,571,1,0,0,0,571,572,5,241,0, + 0,572,573,5,309,0,0,573,574,3,198,99,0,574,1308,1,0,0,0,575,580, + 5,11,0,0,576,577,5,293,0,0,577,581,3,68,34,0,578,579,5,338,0,0,579, + 581,3,72,36,0,580,576,1,0,0,0,580,578,1,0,0,0,581,582,1,0,0,0,582, + 583,5,269,0,0,583,584,5,297,0,0,584,585,3,38,19,0,585,1308,1,0,0, + 0,586,591,5,11,0,0,587,588,5,293,0,0,588,592,3,68,34,0,589,590,5, + 338,0,0,590,592,3,72,36,0,591,587,1,0,0,0,591,589,1,0,0,0,592,593, + 1,0,0,0,593,594,5,328,0,0,594,596,5,297,0,0,595,597,3,150,75,0,596, + 595,1,0,0,0,596,597,1,0,0,0,597,598,1,0,0,0,598,599,3,38,19,0,599, + 1308,1,0,0,0,600,601,5,11,0,0,601,602,5,293,0,0,602,603,3,68,34, + 0,603,605,7,4,0,0,604,606,5,49,0,0,605,604,1,0,0,0,605,606,1,0,0, + 0,606,607,1,0,0,0,607,609,3,74,37,0,608,610,3,326,163,0,609,608, + 1,0,0,0,609,610,1,0,0,0,610,1308,1,0,0,0,611,612,5,11,0,0,612,613, + 5,293,0,0,613,615,3,68,34,0,614,616,3,18,9,0,615,614,1,0,0,0,615, + 616,1,0,0,0,616,617,1,0,0,0,617,619,5,39,0,0,618,620,5,49,0,0,619, + 618,1,0,0,0,619,620,1,0,0,0,620,621,1,0,0,0,621,622,3,74,37,0,622, + 624,3,286,143,0,623,625,3,266,133,0,624,623,1,0,0,0,624,625,1,0, + 0,0,625,1308,1,0,0,0,626,627,5,11,0,0,627,628,5,293,0,0,628,630, + 3,68,34,0,629,631,3,18,9,0,630,629,1,0,0,0,630,631,1,0,0,0,631,632, + 1,0,0,0,632,633,5,244,0,0,633,634,5,50,0,0,634,635,5,2,0,0,635,636, + 3,276,138,0,636,637,5,3,0,0,637,1308,1,0,0,0,638,639,5,11,0,0,639, + 640,5,293,0,0,640,642,3,68,34,0,641,643,3,18,9,0,642,641,1,0,0,0, + 642,643,1,0,0,0,643,644,1,0,0,0,644,645,5,269,0,0,645,646,5,266, + 0,0,646,650,3,328,164,0,647,648,5,346,0,0,648,649,5,267,0,0,649, + 651,3,38,19,0,650,647,1,0,0,0,650,651,1,0,0,0,651,1308,1,0,0,0,652, + 653,5,11,0,0,653,654,5,293,0,0,654,656,3,68,34,0,655,657,3,18,9, + 0,656,655,1,0,0,0,656,657,1,0,0,0,657,658,1,0,0,0,658,659,5,269, + 0,0,659,660,5,267,0,0,660,661,3,38,19,0,661,1308,1,0,0,0,662,667, + 5,11,0,0,663,664,5,293,0,0,664,668,3,68,34,0,665,666,5,338,0,0,666, + 668,3,72,36,0,667,663,1,0,0,0,667,665,1,0,0,0,668,669,1,0,0,0,669, + 671,5,8,0,0,670,672,3,148,74,0,671,670,1,0,0,0,671,672,1,0,0,0,672, + 674,1,0,0,0,673,675,3,16,8,0,674,673,1,0,0,0,675,676,1,0,0,0,676, + 674,1,0,0,0,676,677,1,0,0,0,677,1308,1,0,0,0,678,679,5,11,0,0,679, + 680,5,293,0,0,680,681,3,68,34,0,681,682,3,18,9,0,682,683,5,241,0, + 0,683,684,5,309,0,0,684,685,3,18,9,0,685,1308,1,0,0,0,686,691,5, + 11,0,0,687,688,5,293,0,0,688,692,3,68,34,0,689,690,5,338,0,0,690, + 692,3,72,36,0,691,687,1,0,0,0,691,689,1,0,0,0,692,693,1,0,0,0,693, + 695,5,96,0,0,694,696,3,150,75,0,695,694,1,0,0,0,695,696,1,0,0,0, + 696,697,1,0,0,0,697,702,3,18,9,0,698,699,5,4,0,0,699,701,3,18,9, + 0,700,698,1,0,0,0,701,704,1,0,0,0,702,700,1,0,0,0,702,703,1,0,0, + 0,703,706,1,0,0,0,704,702,1,0,0,0,705,707,5,230,0,0,706,705,1,0, + 0,0,706,707,1,0,0,0,707,1308,1,0,0,0,708,709,5,11,0,0,709,710,5, + 293,0,0,710,712,3,68,34,0,711,713,3,18,9,0,712,711,1,0,0,0,712,713, + 1,0,0,0,713,714,1,0,0,0,714,715,5,269,0,0,715,716,5,170,0,0,716, + 717,3,328,164,0,717,1308,1,0,0,0,718,719,5,11,0,0,719,720,5,293, + 0,0,720,721,3,68,34,0,721,722,5,237,0,0,722,723,5,219,0,0,723,1308, + 1,0,0,0,724,725,5,11,0,0,725,726,5,176,0,0,726,727,5,338,0,0,727, + 728,3,72,36,0,728,729,7,5,0,0,729,730,5,248,0,0,730,1308,1,0,0,0, + 731,732,5,11,0,0,732,733,5,176,0,0,733,734,5,338,0,0,734,735,3,72, + 36,0,735,736,5,269,0,0,736,737,5,297,0,0,737,738,3,38,19,0,738,1308, + 1,0,0,0,739,740,5,96,0,0,740,742,5,293,0,0,741,743,3,150,75,0,742, + 741,1,0,0,0,742,743,1,0,0,0,743,744,1,0,0,0,744,746,3,68,34,0,745, + 747,5,230,0,0,746,745,1,0,0,0,746,747,1,0,0,0,747,1308,1,0,0,0,748, + 749,5,96,0,0,749,751,5,338,0,0,750,752,3,150,75,0,751,750,1,0,0, + 0,751,752,1,0,0,0,752,753,1,0,0,0,753,1308,3,72,36,0,754,755,5,96, + 0,0,755,756,5,176,0,0,756,758,5,338,0,0,757,759,3,150,75,0,758,757, + 1,0,0,0,758,759,1,0,0,0,759,760,1,0,0,0,760,1308,3,72,36,0,761,764, + 5,59,0,0,762,763,5,208,0,0,763,765,5,244,0,0,764,762,1,0,0,0,764, + 765,1,0,0,0,765,770,1,0,0,0,766,768,5,128,0,0,767,766,1,0,0,0,767, + 768,1,0,0,0,768,769,1,0,0,0,769,771,5,298,0,0,770,767,1,0,0,0,770, + 771,1,0,0,0,771,772,1,0,0,0,772,774,5,338,0,0,773,775,3,148,74,0, + 774,773,1,0,0,0,774,775,1,0,0,0,775,776,1,0,0,0,776,778,3,70,35, + 0,777,779,3,176,88,0,778,777,1,0,0,0,778,779,1,0,0,0,779,789,1,0, + 0,0,780,781,5,51,0,0,781,788,3,328,164,0,782,783,5,218,0,0,783,784, + 5,203,0,0,784,788,3,168,84,0,785,786,5,297,0,0,786,788,3,38,19,0, + 787,780,1,0,0,0,787,782,1,0,0,0,787,785,1,0,0,0,788,791,1,0,0,0, + 789,787,1,0,0,0,789,790,1,0,0,0,790,792,1,0,0,0,791,789,1,0,0,0, + 792,793,5,20,0,0,793,794,3,12,6,0,794,1308,1,0,0,0,795,798,5,59, + 0,0,796,797,5,208,0,0,797,799,5,244,0,0,798,796,1,0,0,0,798,799, + 1,0,0,0,799,801,1,0,0,0,800,802,5,128,0,0,801,800,1,0,0,0,801,802, + 1,0,0,0,802,803,1,0,0,0,803,804,5,298,0,0,804,805,5,338,0,0,805, + 810,3,70,35,0,806,807,5,2,0,0,807,808,3,284,142,0,808,809,5,3,0, + 0,809,811,1,0,0,0,810,806,1,0,0,0,810,811,1,0,0,0,811,812,1,0,0, + 0,812,815,3,32,16,0,813,814,5,207,0,0,814,816,3,38,19,0,815,813, + 1,0,0,0,815,816,1,0,0,0,816,1308,1,0,0,0,817,818,5,11,0,0,818,819, + 5,338,0,0,819,821,3,72,36,0,820,822,5,20,0,0,821,820,1,0,0,0,821, + 822,1,0,0,0,822,823,1,0,0,0,823,824,3,12,6,0,824,1308,1,0,0,0,825, + 828,5,59,0,0,826,827,5,208,0,0,827,829,5,244,0,0,828,826,1,0,0,0, + 828,829,1,0,0,0,829,831,1,0,0,0,830,832,5,298,0,0,831,830,1,0,0, + 0,831,832,1,0,0,0,832,833,1,0,0,0,833,835,5,125,0,0,834,836,3,148, + 74,0,835,834,1,0,0,0,835,836,1,0,0,0,836,837,1,0,0,0,837,838,3,310, + 155,0,838,839,5,20,0,0,839,853,3,328,164,0,840,841,5,332,0,0,841, + 842,3,318,159,0,842,843,3,328,164,0,843,850,1,0,0,0,844,845,5,4, + 0,0,845,846,3,318,159,0,846,847,3,328,164,0,847,849,1,0,0,0,848, + 844,1,0,0,0,849,852,1,0,0,0,850,848,1,0,0,0,850,851,1,0,0,0,851, + 854,1,0,0,0,852,850,1,0,0,0,853,840,1,0,0,0,853,854,1,0,0,0,854, + 1308,1,0,0,0,855,856,5,59,0,0,856,857,5,176,0,0,857,859,5,338,0, + 0,858,860,3,148,74,0,859,858,1,0,0,0,859,860,1,0,0,0,860,861,1,0, + 0,0,861,863,3,70,35,0,862,864,3,32,16,0,863,862,1,0,0,0,863,864, + 1,0,0,0,864,882,1,0,0,0,865,866,5,207,0,0,866,881,3,38,19,0,867, + 868,5,218,0,0,868,869,5,31,0,0,869,881,3,212,106,0,870,881,3,10, + 5,0,871,881,3,8,4,0,872,881,3,194,97,0,873,881,3,54,27,0,874,875, + 5,170,0,0,875,881,3,328,164,0,876,877,5,51,0,0,877,881,3,328,164, + 0,878,879,5,297,0,0,879,881,3,38,19,0,880,865,1,0,0,0,880,867,1, + 0,0,0,880,870,1,0,0,0,880,871,1,0,0,0,880,872,1,0,0,0,880,873,1, + 0,0,0,880,874,1,0,0,0,880,876,1,0,0,0,880,878,1,0,0,0,881,884,1, + 0,0,0,882,880,1,0,0,0,882,883,1,0,0,0,883,885,1,0,0,0,884,882,1, + 0,0,0,885,886,5,20,0,0,886,887,3,12,6,0,887,1308,1,0,0,0,888,890, + 5,96,0,0,889,891,5,298,0,0,890,889,1,0,0,0,890,891,1,0,0,0,891,892, + 1,0,0,0,892,894,5,125,0,0,893,895,3,150,75,0,894,893,1,0,0,0,894, + 895,1,0,0,0,895,896,1,0,0,0,896,1308,3,308,154,0,897,900,5,81,0, + 0,898,899,5,208,0,0,899,901,5,244,0,0,900,898,1,0,0,0,900,901,1, + 0,0,0,901,903,1,0,0,0,902,904,5,336,0,0,903,902,1,0,0,0,903,904, + 1,0,0,0,904,905,1,0,0,0,905,907,3,308,154,0,906,908,3,270,135,0, + 907,906,1,0,0,0,907,908,1,0,0,0,908,910,1,0,0,0,909,911,3,282,141, + 0,910,909,1,0,0,0,910,911,1,0,0,0,911,1308,1,0,0,0,912,913,5,96, + 0,0,913,914,5,298,0,0,914,916,5,336,0,0,915,917,3,150,75,0,916,915, + 1,0,0,0,916,917,1,0,0,0,917,921,1,0,0,0,918,922,3,68,34,0,919,922, + 3,72,36,0,920,922,3,308,154,0,921,918,1,0,0,0,921,919,1,0,0,0,921, + 920,1,0,0,0,922,1308,1,0,0,0,923,925,5,106,0,0,924,926,7,6,0,0,925, + 924,1,0,0,0,925,926,1,0,0,0,926,927,1,0,0,0,927,1308,3,4,2,0,928, + 929,5,273,0,0,929,932,5,294,0,0,930,931,7,3,0,0,931,933,3,62,31, + 0,932,930,1,0,0,0,932,933,1,0,0,0,933,938,1,0,0,0,934,936,5,163, + 0,0,935,934,1,0,0,0,935,936,1,0,0,0,936,937,1,0,0,0,937,939,3,328, + 164,0,938,935,1,0,0,0,938,939,1,0,0,0,939,1308,1,0,0,0,940,941,5, + 273,0,0,941,942,5,293,0,0,942,945,5,108,0,0,943,944,7,3,0,0,944, + 946,3,62,31,0,945,943,1,0,0,0,945,946,1,0,0,0,946,947,1,0,0,0,947, + 948,5,163,0,0,948,950,3,328,164,0,949,951,3,18,9,0,950,949,1,0,0, + 0,950,951,1,0,0,0,951,1308,1,0,0,0,952,953,5,273,0,0,953,954,5,297, + 0,0,954,959,3,68,34,0,955,956,5,2,0,0,956,957,3,42,21,0,957,958, + 5,3,0,0,958,960,1,0,0,0,959,955,1,0,0,0,959,960,1,0,0,0,960,1308, + 1,0,0,0,961,962,5,273,0,0,962,963,5,50,0,0,963,964,7,3,0,0,964,967, + 3,68,34,0,965,966,7,3,0,0,966,968,3,62,31,0,967,965,1,0,0,0,967, + 968,1,0,0,0,968,1308,1,0,0,0,969,970,5,273,0,0,970,973,5,339,0,0, + 971,972,7,3,0,0,972,974,3,62,31,0,973,971,1,0,0,0,973,974,1,0,0, + 0,974,979,1,0,0,0,975,977,5,163,0,0,976,975,1,0,0,0,976,977,1,0, + 0,0,977,978,1,0,0,0,978,980,3,328,164,0,979,976,1,0,0,0,979,980, + 1,0,0,0,980,1308,1,0,0,0,981,982,5,273,0,0,982,983,5,219,0,0,983, + 985,3,68,34,0,984,986,3,18,9,0,985,984,1,0,0,0,985,986,1,0,0,0,986, + 1308,1,0,0,0,987,989,5,273,0,0,988,990,7,7,0,0,989,988,1,0,0,0,989, + 990,1,0,0,0,990,991,1,0,0,0,991,994,5,126,0,0,992,993,7,3,0,0,993, + 995,3,62,31,0,994,992,1,0,0,0,994,995,1,0,0,0,995,1003,1,0,0,0,996, + 998,5,163,0,0,997,996,1,0,0,0,997,998,1,0,0,0,998,1001,1,0,0,0,999, + 1002,3,198,99,0,1000,1002,3,328,164,0,1001,999,1,0,0,0,1001,1000, + 1,0,0,0,1002,1004,1,0,0,0,1003,997,1,0,0,0,1003,1004,1,0,0,0,1004, + 1308,1,0,0,0,1005,1006,5,273,0,0,1006,1007,5,59,0,0,1007,1008,5, + 293,0,0,1008,1011,3,68,34,0,1009,1010,5,20,0,0,1010,1012,5,266,0, + 0,1011,1009,1,0,0,0,1011,1012,1,0,0,0,1012,1308,1,0,0,0,1013,1014, + 5,273,0,0,1014,1015,5,62,0,0,1015,1308,3,22,11,0,1016,1017,5,273, + 0,0,1017,1022,5,38,0,0,1018,1020,5,163,0,0,1019,1018,1,0,0,0,1019, + 1020,1,0,0,0,1020,1021,1,0,0,0,1021,1023,3,328,164,0,1022,1019,1, + 0,0,0,1022,1023,1,0,0,0,1023,1308,1,0,0,0,1024,1025,5,273,0,0,1025, + 1026,5,176,0,0,1026,1029,5,339,0,0,1027,1028,7,3,0,0,1028,1030,3, + 62,31,0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,1035,1,0,0,0,1031, + 1033,5,163,0,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0,1033,1034,1,0, + 0,0,1034,1036,3,328,164,0,1035,1032,1,0,0,0,1035,1036,1,0,0,0,1036, + 1308,1,0,0,0,1037,1038,5,273,0,0,1038,1039,5,59,0,0,1039,1040,5, + 176,0,0,1040,1041,5,338,0,0,1041,1044,3,72,36,0,1042,1043,5,20,0, + 0,1043,1045,5,266,0,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,1308, + 1,0,0,0,1046,1047,7,8,0,0,1047,1049,5,125,0,0,1048,1050,5,108,0, + 0,1049,1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1308, + 3,24,12,0,1052,1053,7,8,0,0,1053,1055,5,72,0,0,1054,1056,5,108,0, + 0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1308, + 3,62,31,0,1058,1060,7,8,0,0,1059,1061,5,293,0,0,1060,1059,1,0,0, + 0,1060,1061,1,0,0,0,1061,1063,1,0,0,0,1062,1064,7,9,0,0,1063,1062, + 1,0,0,0,1063,1064,1,0,0,0,1064,1065,1,0,0,0,1065,1067,3,68,34,0, + 1066,1068,3,18,9,0,1067,1066,1,0,0,0,1067,1068,1,0,0,0,1068,1070, + 1,0,0,0,1069,1071,3,26,13,0,1070,1069,1,0,0,0,1070,1071,1,0,0,0, + 1071,1308,1,0,0,0,1072,1074,7,8,0,0,1073,1075,5,232,0,0,1074,1073, + 1,0,0,0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1308,3,12,6,0,1077, + 1078,5,51,0,0,1078,1084,5,203,0,0,1079,1080,3,22,11,0,1080,1081, + 3,62,31,0,1081,1085,1,0,0,0,1082,1083,5,293,0,0,1083,1085,3,68,34, + 0,1084,1079,1,0,0,0,1084,1082,1,0,0,0,1085,1086,1,0,0,0,1086,1089, + 5,153,0,0,1087,1090,3,328,164,0,1088,1090,5,198,0,0,1089,1087,1, + 0,0,0,1089,1088,1,0,0,0,1090,1308,1,0,0,0,1091,1092,5,240,0,0,1092, + 1093,5,293,0,0,1093,1308,3,68,34,0,1094,1095,5,240,0,0,1095,1096, + 5,125,0,0,1096,1308,3,308,154,0,1097,1105,5,240,0,0,1098,1106,3, + 328,164,0,1099,1101,9,0,0,0,1100,1099,1,0,0,0,1101,1104,1,0,0,0, + 1102,1103,1,0,0,0,1102,1100,1,0,0,0,1103,1106,1,0,0,0,1104,1102, + 1,0,0,0,1105,1098,1,0,0,0,1105,1102,1,0,0,0,1106,1308,1,0,0,0,1107, + 1108,5,240,0,0,1108,1109,5,176,0,0,1109,1110,5,338,0,0,1110,1308, + 3,72,36,0,1111,1113,5,33,0,0,1112,1114,5,159,0,0,1113,1112,1,0,0, + 0,1113,1114,1,0,0,0,1114,1115,1,0,0,0,1115,1116,5,293,0,0,1116,1119, + 3,68,34,0,1117,1118,5,207,0,0,1118,1120,3,38,19,0,1119,1117,1,0, + 0,0,1119,1120,1,0,0,0,1120,1125,1,0,0,0,1121,1123,5,20,0,0,1122, + 1121,1,0,0,0,1122,1123,1,0,0,0,1123,1124,1,0,0,0,1124,1126,3,12, + 6,0,1125,1122,1,0,0,0,1125,1126,1,0,0,0,1126,1308,1,0,0,0,1127,1128, + 5,322,0,0,1128,1130,5,293,0,0,1129,1131,3,150,75,0,1130,1129,1,0, + 0,0,1130,1131,1,0,0,0,1131,1132,1,0,0,0,1132,1308,3,68,34,0,1133, + 1134,5,43,0,0,1134,1308,5,33,0,0,1135,1136,5,168,0,0,1136,1138,5, + 70,0,0,1137,1139,5,169,0,0,1138,1137,1,0,0,0,1138,1139,1,0,0,0,1139, + 1140,1,0,0,0,1140,1141,5,145,0,0,1141,1143,3,328,164,0,1142,1144, + 5,216,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144,1145,1,0,0,0, + 1145,1146,5,152,0,0,1146,1147,5,293,0,0,1147,1149,3,68,34,0,1148, + 1150,3,18,9,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1308,1,0, + 0,0,1151,1152,5,317,0,0,1152,1153,5,293,0,0,1153,1155,3,68,34,0, + 1154,1156,3,18,9,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1308, + 1,0,0,0,1157,1159,5,188,0,0,1158,1157,1,0,0,0,1158,1159,1,0,0,0, + 1159,1160,1,0,0,0,1160,1161,5,242,0,0,1161,1162,5,293,0,0,1162,1165, + 3,68,34,0,1163,1164,7,10,0,0,1164,1166,5,219,0,0,1165,1163,1,0,0, + 0,1165,1166,1,0,0,0,1166,1308,1,0,0,0,1167,1168,7,11,0,0,1168,1172, + 3,318,159,0,1169,1171,9,0,0,0,1170,1169,1,0,0,0,1171,1174,1,0,0, + 0,1172,1173,1,0,0,0,1172,1170,1,0,0,0,1173,1308,1,0,0,0,1174,1172, + 1,0,0,0,1175,1176,5,269,0,0,1176,1180,5,253,0,0,1177,1179,9,0,0, + 0,1178,1177,1,0,0,0,1179,1182,1,0,0,0,1180,1181,1,0,0,0,1180,1178, + 1,0,0,0,1181,1308,1,0,0,0,1182,1180,1,0,0,0,1183,1184,5,269,0,0, + 1184,1185,5,301,0,0,1185,1186,5,350,0,0,1186,1308,3,250,125,0,1187, + 1188,5,269,0,0,1188,1189,5,301,0,0,1189,1192,5,350,0,0,1190,1193, + 3,328,164,0,1191,1193,5,169,0,0,1192,1190,1,0,0,0,1192,1191,1,0, + 0,0,1193,1308,1,0,0,0,1194,1195,5,269,0,0,1195,1196,5,301,0,0,1196, + 1200,5,350,0,0,1197,1199,9,0,0,0,1198,1197,1,0,0,0,1199,1202,1,0, + 0,0,1200,1201,1,0,0,0,1200,1198,1,0,0,0,1201,1308,1,0,0,0,1202,1200, + 1,0,0,0,1203,1204,5,269,0,0,1204,1205,7,12,0,0,1205,1308,3,108,54, + 0,1206,1207,5,269,0,0,1207,1208,7,12,0,0,1208,1209,5,2,0,0,1209, + 1210,3,196,98,0,1210,1211,5,3,0,0,1211,1212,5,352,0,0,1212,1213, + 5,2,0,0,1213,1214,3,12,6,0,1214,1215,5,3,0,0,1215,1308,1,0,0,0,1216, + 1217,5,269,0,0,1217,1218,3,322,161,0,1218,1219,5,352,0,0,1219,1220, + 5,389,0,0,1220,1308,1,0,0,0,1221,1222,5,269,0,0,1222,1230,3,322, + 161,0,1223,1227,5,352,0,0,1224,1226,9,0,0,0,1225,1224,1,0,0,0,1226, + 1229,1,0,0,0,1227,1228,1,0,0,0,1227,1225,1,0,0,0,1228,1231,1,0,0, + 0,1229,1227,1,0,0,0,1230,1223,1,0,0,0,1230,1231,1,0,0,0,1231,1308, + 1,0,0,0,1232,1236,5,269,0,0,1233,1235,9,0,0,0,1234,1233,1,0,0,0, + 1235,1238,1,0,0,0,1236,1237,1,0,0,0,1236,1234,1,0,0,0,1237,1239, + 1,0,0,0,1238,1236,1,0,0,0,1239,1240,5,352,0,0,1240,1308,5,389,0, + 0,1241,1245,5,269,0,0,1242,1244,9,0,0,0,1243,1242,1,0,0,0,1244,1247, + 1,0,0,0,1245,1246,1,0,0,0,1245,1243,1,0,0,0,1246,1308,1,0,0,0,1247, + 1245,1,0,0,0,1248,1249,5,245,0,0,1249,1308,3,322,161,0,1250,1254, + 5,245,0,0,1251,1253,9,0,0,0,1252,1251,1,0,0,0,1253,1256,1,0,0,0, + 1254,1255,1,0,0,0,1254,1252,1,0,0,0,1255,1308,1,0,0,0,1256,1254, + 1,0,0,0,1257,1258,5,59,0,0,1258,1260,5,142,0,0,1259,1261,3,148,74, + 0,1260,1259,1,0,0,0,1260,1261,1,0,0,0,1261,1262,1,0,0,0,1262,1263, + 3,318,159,0,1263,1265,5,203,0,0,1264,1266,5,293,0,0,1265,1264,1, + 0,0,0,1265,1266,1,0,0,0,1266,1267,1,0,0,0,1267,1270,3,68,34,0,1268, + 1269,5,332,0,0,1269,1271,3,318,159,0,1270,1268,1,0,0,0,1270,1271, + 1,0,0,0,1271,1272,1,0,0,0,1272,1273,5,2,0,0,1273,1274,3,200,100, + 0,1274,1277,5,3,0,0,1275,1276,5,207,0,0,1276,1278,3,38,19,0,1277, + 1275,1,0,0,0,1277,1278,1,0,0,0,1278,1308,1,0,0,0,1279,1280,5,96, + 0,0,1280,1282,5,142,0,0,1281,1283,3,150,75,0,1282,1281,1,0,0,0,1282, + 1283,1,0,0,0,1283,1284,1,0,0,0,1284,1285,3,318,159,0,1285,1287,5, + 203,0,0,1286,1288,5,293,0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0, + 1288,1289,1,0,0,0,1289,1290,3,68,34,0,1290,1308,1,0,0,0,1291,1292, + 5,205,0,0,1292,1294,3,68,34,0,1293,1295,3,112,56,0,1294,1293,1,0, + 0,0,1294,1295,1,0,0,0,1295,1296,1,0,0,0,1296,1297,5,351,0,0,1297, + 1298,5,31,0,0,1298,1299,3,76,38,0,1299,1308,1,0,0,0,1300,1304,3, + 6,3,0,1301,1303,9,0,0,0,1302,1301,1,0,0,0,1303,1306,1,0,0,0,1304, + 1305,1,0,0,0,1304,1302,1,0,0,0,1305,1308,1,0,0,0,1306,1304,1,0,0, + 0,1307,348,1,0,0,0,1307,350,1,0,0,0,1307,353,1,0,0,0,1307,358,1, + 0,0,0,1307,364,1,0,0,0,1307,382,1,0,0,0,1307,389,1,0,0,0,1307,396, + 1,0,0,0,1307,405,1,0,0,0,1307,417,1,0,0,0,1307,445,1,0,0,0,1307, + 468,1,0,0,0,1307,489,1,0,0,0,1307,506,1,0,0,0,1307,517,1,0,0,0,1307, + 524,1,0,0,0,1307,533,1,0,0,0,1307,542,1,0,0,0,1307,552,1,0,0,0,1307, + 564,1,0,0,0,1307,575,1,0,0,0,1307,586,1,0,0,0,1307,600,1,0,0,0,1307, + 611,1,0,0,0,1307,626,1,0,0,0,1307,638,1,0,0,0,1307,652,1,0,0,0,1307, + 662,1,0,0,0,1307,678,1,0,0,0,1307,686,1,0,0,0,1307,708,1,0,0,0,1307, + 718,1,0,0,0,1307,724,1,0,0,0,1307,731,1,0,0,0,1307,739,1,0,0,0,1307, + 748,1,0,0,0,1307,754,1,0,0,0,1307,761,1,0,0,0,1307,795,1,0,0,0,1307, + 817,1,0,0,0,1307,825,1,0,0,0,1307,855,1,0,0,0,1307,888,1,0,0,0,1307, + 897,1,0,0,0,1307,912,1,0,0,0,1307,923,1,0,0,0,1307,928,1,0,0,0,1307, + 940,1,0,0,0,1307,952,1,0,0,0,1307,961,1,0,0,0,1307,969,1,0,0,0,1307, + 981,1,0,0,0,1307,987,1,0,0,0,1307,1005,1,0,0,0,1307,1013,1,0,0,0, + 1307,1016,1,0,0,0,1307,1024,1,0,0,0,1307,1037,1,0,0,0,1307,1046, + 1,0,0,0,1307,1052,1,0,0,0,1307,1058,1,0,0,0,1307,1072,1,0,0,0,1307, + 1077,1,0,0,0,1307,1091,1,0,0,0,1307,1094,1,0,0,0,1307,1097,1,0,0, + 0,1307,1107,1,0,0,0,1307,1111,1,0,0,0,1307,1127,1,0,0,0,1307,1133, + 1,0,0,0,1307,1135,1,0,0,0,1307,1151,1,0,0,0,1307,1158,1,0,0,0,1307, + 1167,1,0,0,0,1307,1175,1,0,0,0,1307,1183,1,0,0,0,1307,1187,1,0,0, + 0,1307,1194,1,0,0,0,1307,1203,1,0,0,0,1307,1206,1,0,0,0,1307,1216, + 1,0,0,0,1307,1221,1,0,0,0,1307,1232,1,0,0,0,1307,1241,1,0,0,0,1307, + 1248,1,0,0,0,1307,1250,1,0,0,0,1307,1257,1,0,0,0,1307,1279,1,0,0, + 0,1307,1291,1,0,0,0,1307,1300,1,0,0,0,1308,5,1,0,0,0,1309,1310,7, + 13,0,0,1310,1403,5,253,0,0,1311,1313,7,14,0,0,1312,1314,5,253,0, + 0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1403,1,0,0,0,1315,1316, + 5,273,0,0,1316,1403,7,15,0,0,1317,1318,5,273,0,0,1318,1320,5,253, + 0,0,1319,1321,5,129,0,0,1320,1319,1,0,0,0,1320,1321,1,0,0,0,1321, + 1403,1,0,0,0,1322,1324,5,273,0,0,1323,1325,5,62,0,0,1324,1323,1, + 0,0,0,1324,1325,1,0,0,0,1325,1326,1,0,0,0,1326,1403,5,254,0,0,1327, + 1328,5,273,0,0,1328,1329,5,59,0,0,1329,1403,5,293,0,0,1330,1331, + 7,16,0,0,1331,1403,5,142,0,0,1332,1333,7,17,0,0,1333,1403,5,293, + 0,0,1334,1335,7,18,0,0,1335,1403,5,72,0,0,1336,1337,7,13,0,0,1337, + 1338,5,298,0,0,1338,1403,5,175,0,0,1339,1340,5,11,0,0,1340,1341, + 5,293,0,0,1341,1342,3,68,34,0,1342,1343,5,197,0,0,1343,1344,7,19, + 0,0,1344,1403,1,0,0,0,1345,1346,5,11,0,0,1346,1347,5,293,0,0,1347, + 1348,3,68,34,0,1348,1349,7,20,0,0,1349,1350,5,31,0,0,1350,1403,1, + 0,0,0,1351,1352,5,11,0,0,1352,1353,5,293,0,0,1353,1354,3,68,34,0, + 1354,1355,5,275,0,0,1355,1356,5,31,0,0,1356,1403,1,0,0,0,1357,1358, + 5,11,0,0,1358,1359,5,293,0,0,1359,1360,3,68,34,0,1360,1361,5,197, + 0,0,1361,1362,5,283,0,0,1362,1363,5,20,0,0,1363,1364,5,89,0,0,1364, + 1403,1,0,0,0,1365,1366,5,11,0,0,1366,1367,5,293,0,0,1367,1368,3, + 68,34,0,1368,1369,5,269,0,0,1369,1370,5,275,0,0,1370,1371,5,170, + 0,0,1371,1403,1,0,0,0,1372,1373,5,11,0,0,1373,1374,5,293,0,0,1374, + 1375,3,68,34,0,1375,1376,7,21,0,0,1376,1377,5,217,0,0,1377,1403, + 1,0,0,0,1378,1379,5,11,0,0,1379,1380,5,293,0,0,1380,1381,3,68,34, + 0,1381,1382,5,310,0,0,1382,1403,1,0,0,0,1383,1384,5,11,0,0,1384, + 1385,5,293,0,0,1385,1387,3,68,34,0,1386,1388,3,18,9,0,1387,1386, + 1,0,0,0,1387,1388,1,0,0,0,1388,1395,1,0,0,0,1389,1396,5,53,0,0,1390, + 1396,5,56,0,0,1391,1392,5,269,0,0,1392,1396,5,115,0,0,1393,1394, + 5,244,0,0,1394,1396,5,50,0,0,1395,1389,1,0,0,0,1395,1390,1,0,0,0, + 1395,1391,1,0,0,0,1395,1393,1,0,0,0,1396,1403,1,0,0,0,1397,1398, + 5,281,0,0,1398,1403,5,312,0,0,1399,1403,5,52,0,0,1400,1403,5,255, + 0,0,1401,1403,5,88,0,0,1402,1309,1,0,0,0,1402,1311,1,0,0,0,1402, + 1315,1,0,0,0,1402,1317,1,0,0,0,1402,1322,1,0,0,0,1402,1327,1,0,0, + 0,1402,1330,1,0,0,0,1402,1332,1,0,0,0,1402,1334,1,0,0,0,1402,1336, + 1,0,0,0,1402,1339,1,0,0,0,1402,1345,1,0,0,0,1402,1351,1,0,0,0,1402, + 1357,1,0,0,0,1402,1365,1,0,0,0,1402,1372,1,0,0,0,1402,1378,1,0,0, + 0,1402,1383,1,0,0,0,1402,1397,1,0,0,0,1402,1399,1,0,0,0,1402,1400, + 1,0,0,0,1402,1401,1,0,0,0,1403,7,1,0,0,0,1404,1405,5,45,0,0,1405, + 1406,5,31,0,0,1406,1410,3,168,84,0,1407,1408,5,279,0,0,1408,1409, + 5,31,0,0,1409,1411,3,172,86,0,1410,1407,1,0,0,0,1410,1411,1,0,0, + 0,1411,1412,1,0,0,0,1412,1413,5,152,0,0,1413,1414,5,382,0,0,1414, + 1415,5,30,0,0,1415,9,1,0,0,0,1416,1417,5,275,0,0,1417,1418,5,31, + 0,0,1418,1419,3,168,84,0,1419,1422,5,203,0,0,1420,1423,3,50,25,0, + 1421,1423,3,52,26,0,1422,1420,1,0,0,0,1422,1421,1,0,0,0,1423,1427, + 1,0,0,0,1424,1425,5,283,0,0,1425,1426,5,20,0,0,1426,1428,5,89,0, + 0,1427,1424,1,0,0,0,1427,1428,1,0,0,0,1428,11,1,0,0,0,1429,1431, + 3,28,14,0,1430,1429,1,0,0,0,1430,1431,1,0,0,0,1431,1432,1,0,0,0, + 1432,1433,3,84,42,0,1433,1434,3,82,41,0,1434,13,1,0,0,0,1435,1436, + 5,147,0,0,1436,1438,5,216,0,0,1437,1439,5,293,0,0,1438,1437,1,0, + 0,0,1438,1439,1,0,0,0,1439,1440,1,0,0,0,1440,1445,3,68,34,0,1441, + 1443,3,18,9,0,1442,1444,3,148,74,0,1443,1442,1,0,0,0,1443,1444,1, + 0,0,0,1444,1446,1,0,0,0,1445,1441,1,0,0,0,1445,1446,1,0,0,0,1446, + 1453,1,0,0,0,1447,1448,5,31,0,0,1448,1454,5,189,0,0,1449,1450,5, + 2,0,0,1450,1451,3,76,38,0,1451,1452,5,3,0,0,1452,1454,1,0,0,0,1453, + 1447,1,0,0,0,1453,1449,1,0,0,0,1453,1454,1,0,0,0,1454,1512,1,0,0, + 0,1455,1456,5,147,0,0,1456,1458,5,152,0,0,1457,1459,5,293,0,0,1458, + 1457,1,0,0,0,1458,1459,1,0,0,0,1459,1460,1,0,0,0,1460,1462,3,68, + 34,0,1461,1463,3,18,9,0,1462,1461,1,0,0,0,1462,1463,1,0,0,0,1463, + 1465,1,0,0,0,1464,1466,3,148,74,0,1465,1464,1,0,0,0,1465,1466,1, + 0,0,0,1466,1473,1,0,0,0,1467,1468,5,31,0,0,1468,1474,5,189,0,0,1469, + 1470,5,2,0,0,1470,1471,3,76,38,0,1471,1472,5,3,0,0,1472,1474,1,0, + 0,0,1473,1467,1,0,0,0,1473,1469,1,0,0,0,1473,1474,1,0,0,0,1474,1512, + 1,0,0,0,1475,1476,5,147,0,0,1476,1478,5,152,0,0,1477,1479,5,293, + 0,0,1478,1477,1,0,0,0,1478,1479,1,0,0,0,1479,1480,1,0,0,0,1480,1481, + 3,68,34,0,1481,1482,5,244,0,0,1482,1483,3,112,56,0,1483,1512,1,0, + 0,0,1484,1485,5,147,0,0,1485,1487,5,216,0,0,1486,1488,5,169,0,0, + 1487,1486,1,0,0,0,1487,1488,1,0,0,0,1488,1489,1,0,0,0,1489,1490, + 5,90,0,0,1490,1492,3,328,164,0,1491,1493,3,194,97,0,1492,1491,1, + 0,0,0,1492,1493,1,0,0,0,1493,1495,1,0,0,0,1494,1496,3,54,27,0,1495, + 1494,1,0,0,0,1495,1496,1,0,0,0,1496,1512,1,0,0,0,1497,1498,5,147, + 0,0,1498,1500,5,216,0,0,1499,1501,5,169,0,0,1500,1499,1,0,0,0,1500, + 1501,1,0,0,0,1501,1502,1,0,0,0,1502,1504,5,90,0,0,1503,1505,3,328, + 164,0,1504,1503,1,0,0,0,1504,1505,1,0,0,0,1505,1506,1,0,0,0,1506, + 1509,3,32,16,0,1507,1508,5,207,0,0,1508,1510,3,38,19,0,1509,1507, + 1,0,0,0,1509,1510,1,0,0,0,1510,1512,1,0,0,0,1511,1435,1,0,0,0,1511, + 1455,1,0,0,0,1511,1475,1,0,0,0,1511,1484,1,0,0,0,1511,1497,1,0,0, + 0,1512,15,1,0,0,0,1513,1516,3,18,9,0,1514,1515,5,170,0,0,1515,1517, + 3,328,164,0,1516,1514,1,0,0,0,1516,1517,1,0,0,0,1517,17,1,0,0,0, + 1518,1519,5,217,0,0,1519,1520,5,2,0,0,1520,1525,3,20,10,0,1521,1522, + 5,4,0,0,1522,1524,3,20,10,0,1523,1521,1,0,0,0,1524,1527,1,0,0,0, + 1525,1523,1,0,0,0,1525,1526,1,0,0,0,1526,1528,1,0,0,0,1527,1525, + 1,0,0,0,1528,1529,5,3,0,0,1529,19,1,0,0,0,1530,1533,3,318,159,0, + 1531,1532,5,352,0,0,1532,1534,3,240,120,0,1533,1531,1,0,0,0,1533, + 1534,1,0,0,0,1534,1540,1,0,0,0,1535,1536,3,318,159,0,1536,1537,5, + 352,0,0,1537,1538,5,82,0,0,1538,1540,1,0,0,0,1539,1530,1,0,0,0,1539, + 1535,1,0,0,0,1540,21,1,0,0,0,1541,1542,7,22,0,0,1542,23,1,0,0,0, + 1543,1549,3,80,40,0,1544,1549,3,328,164,0,1545,1549,3,242,121,0, + 1546,1549,3,244,122,0,1547,1549,3,246,123,0,1548,1543,1,0,0,0,1548, + 1544,1,0,0,0,1548,1545,1,0,0,0,1548,1546,1,0,0,0,1548,1547,1,0,0, + 0,1549,25,1,0,0,0,1550,1555,3,318,159,0,1551,1552,5,5,0,0,1552,1554, + 3,318,159,0,1553,1551,1,0,0,0,1554,1557,1,0,0,0,1555,1553,1,0,0, + 0,1555,1556,1,0,0,0,1556,27,1,0,0,0,1557,1555,1,0,0,0,1558,1559, + 5,346,0,0,1559,1564,3,30,15,0,1560,1561,5,4,0,0,1561,1563,3,30,15, + 0,1562,1560,1,0,0,0,1563,1566,1,0,0,0,1564,1562,1,0,0,0,1564,1565, + 1,0,0,0,1565,29,1,0,0,0,1566,1564,1,0,0,0,1567,1569,3,314,157,0, + 1568,1570,3,168,84,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1572, + 1,0,0,0,1571,1573,5,20,0,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573, + 1574,1,0,0,0,1574,1575,5,2,0,0,1575,1576,3,12,6,0,1576,1577,5,3, + 0,0,1577,31,1,0,0,0,1578,1579,5,332,0,0,1579,1580,3,198,99,0,1580, + 33,1,0,0,0,1581,1582,5,207,0,0,1582,1598,3,46,23,0,1583,1584,5,218, + 0,0,1584,1585,5,31,0,0,1585,1598,3,212,106,0,1586,1598,3,10,5,0, + 1587,1598,3,8,4,0,1588,1598,3,194,97,0,1589,1598,3,54,27,0,1590, + 1591,5,170,0,0,1591,1598,3,328,164,0,1592,1593,5,51,0,0,1593,1598, + 3,328,164,0,1594,1595,5,297,0,0,1595,1598,3,38,19,0,1596,1598,3, + 36,18,0,1597,1581,1,0,0,0,1597,1583,1,0,0,0,1597,1586,1,0,0,0,1597, + 1587,1,0,0,0,1597,1588,1,0,0,0,1597,1589,1,0,0,0,1597,1590,1,0,0, + 0,1597,1592,1,0,0,0,1597,1594,1,0,0,0,1597,1596,1,0,0,0,1598,1601, + 1,0,0,0,1599,1597,1,0,0,0,1599,1600,1,0,0,0,1600,35,1,0,0,0,1601, + 1599,1,0,0,0,1602,1603,5,162,0,0,1603,1604,5,382,0,0,1604,37,1,0, + 0,0,1605,1606,5,2,0,0,1606,1611,3,40,20,0,1607,1608,5,4,0,0,1608, + 1610,3,40,20,0,1609,1607,1,0,0,0,1610,1613,1,0,0,0,1611,1609,1,0, + 0,0,1611,1612,1,0,0,0,1612,1614,1,0,0,0,1613,1611,1,0,0,0,1614,1615, + 5,3,0,0,1615,39,1,0,0,0,1616,1621,3,42,21,0,1617,1619,5,352,0,0, + 1618,1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1,0,0,0,1620,1622, + 3,44,22,0,1621,1618,1,0,0,0,1621,1622,1,0,0,0,1622,41,1,0,0,0,1623, + 1628,3,318,159,0,1624,1625,5,5,0,0,1625,1627,3,318,159,0,1626,1624, + 1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1628,1629,1,0,0,0,1629, + 1633,1,0,0,0,1630,1628,1,0,0,0,1631,1633,3,328,164,0,1632,1623,1, + 0,0,0,1632,1631,1,0,0,0,1633,43,1,0,0,0,1634,1639,5,382,0,0,1635, + 1639,5,384,0,0,1636,1639,3,248,124,0,1637,1639,3,328,164,0,1638, + 1634,1,0,0,0,1638,1635,1,0,0,0,1638,1636,1,0,0,0,1638,1637,1,0,0, + 0,1639,45,1,0,0,0,1640,1641,5,2,0,0,1641,1646,3,48,24,0,1642,1643, + 5,4,0,0,1643,1645,3,48,24,0,1644,1642,1,0,0,0,1645,1648,1,0,0,0, + 1646,1644,1,0,0,0,1646,1647,1,0,0,0,1647,1649,1,0,0,0,1648,1646, + 1,0,0,0,1649,1650,5,3,0,0,1650,47,1,0,0,0,1651,1656,3,42,21,0,1652, + 1654,5,352,0,0,1653,1652,1,0,0,0,1653,1654,1,0,0,0,1654,1655,1,0, + 0,0,1655,1657,3,220,110,0,1656,1653,1,0,0,0,1656,1657,1,0,0,0,1657, + 49,1,0,0,0,1658,1659,5,2,0,0,1659,1664,3,240,120,0,1660,1661,5,4, + 0,0,1661,1663,3,240,120,0,1662,1660,1,0,0,0,1663,1666,1,0,0,0,1664, + 1662,1,0,0,0,1664,1665,1,0,0,0,1665,1667,1,0,0,0,1666,1664,1,0,0, + 0,1667,1668,5,3,0,0,1668,51,1,0,0,0,1669,1670,5,2,0,0,1670,1675, + 3,50,25,0,1671,1672,5,4,0,0,1672,1674,3,50,25,0,1673,1671,1,0,0, + 0,1674,1677,1,0,0,0,1675,1673,1,0,0,0,1675,1676,1,0,0,0,1676,1678, + 1,0,0,0,1677,1675,1,0,0,0,1678,1679,5,3,0,0,1679,53,1,0,0,0,1680, + 1681,5,283,0,0,1681,1682,5,20,0,0,1682,1687,3,56,28,0,1683,1684, + 5,283,0,0,1684,1685,5,31,0,0,1685,1687,3,58,29,0,1686,1680,1,0,0, + 0,1686,1683,1,0,0,0,1687,55,1,0,0,0,1688,1689,5,146,0,0,1689,1690, + 3,328,164,0,1690,1691,5,212,0,0,1691,1692,3,328,164,0,1692,1695, + 1,0,0,0,1693,1695,3,318,159,0,1694,1688,1,0,0,0,1694,1693,1,0,0, + 0,1695,57,1,0,0,0,1696,1700,3,328,164,0,1697,1698,5,346,0,0,1698, + 1699,5,267,0,0,1699,1701,3,38,19,0,1700,1697,1,0,0,0,1700,1701,1, + 0,0,0,1701,59,1,0,0,0,1702,1703,3,14,7,0,1703,1704,3,12,6,0,1704, + 1761,1,0,0,0,1705,1709,3,120,60,0,1706,1707,3,14,7,0,1707,1708,3, + 90,45,0,1708,1710,1,0,0,0,1709,1706,1,0,0,0,1710,1711,1,0,0,0,1711, + 1709,1,0,0,0,1711,1712,1,0,0,0,1712,1761,1,0,0,0,1713,1714,5,84, + 0,0,1714,1715,5,123,0,0,1715,1716,3,68,34,0,1716,1718,3,192,96,0, + 1717,1719,3,112,56,0,1718,1717,1,0,0,0,1718,1719,1,0,0,0,1719,1761, + 1,0,0,0,1720,1721,5,329,0,0,1721,1722,3,68,34,0,1722,1723,3,192, + 96,0,1723,1725,3,98,49,0,1724,1726,3,112,56,0,1725,1724,1,0,0,0, + 1725,1726,1,0,0,0,1726,1761,1,0,0,0,1727,1728,5,179,0,0,1728,1729, + 5,152,0,0,1729,1730,3,68,34,0,1730,1731,3,192,96,0,1731,1737,5,332, + 0,0,1732,1738,3,80,40,0,1733,1734,5,2,0,0,1734,1735,3,12,6,0,1735, + 1736,5,3,0,0,1736,1738,1,0,0,0,1737,1732,1,0,0,0,1737,1733,1,0,0, + 0,1738,1739,1,0,0,0,1739,1740,3,192,96,0,1740,1741,5,203,0,0,1741, + 1745,3,228,114,0,1742,1744,3,100,50,0,1743,1742,1,0,0,0,1744,1747, + 1,0,0,0,1745,1743,1,0,0,0,1745,1746,1,0,0,0,1746,1751,1,0,0,0,1747, + 1745,1,0,0,0,1748,1750,3,102,51,0,1749,1748,1,0,0,0,1750,1753,1, + 0,0,0,1751,1749,1,0,0,0,1751,1752,1,0,0,0,1752,1757,1,0,0,0,1753, + 1751,1,0,0,0,1754,1756,3,104,52,0,1755,1754,1,0,0,0,1756,1759,1, + 0,0,0,1757,1755,1,0,0,0,1757,1758,1,0,0,0,1758,1761,1,0,0,0,1759, + 1757,1,0,0,0,1760,1702,1,0,0,0,1760,1705,1,0,0,0,1760,1713,1,0,0, + 0,1760,1720,1,0,0,0,1760,1727,1,0,0,0,1761,61,1,0,0,0,1762,1763, + 3,80,40,0,1763,63,1,0,0,0,1764,1765,3,80,40,0,1765,65,1,0,0,0,1766, + 1767,3,204,102,0,1767,67,1,0,0,0,1768,1769,3,204,102,0,1769,69,1, + 0,0,0,1770,1771,3,206,103,0,1771,71,1,0,0,0,1772,1773,3,206,103, + 0,1773,73,1,0,0,0,1774,1777,3,198,99,0,1775,1777,4,37,0,0,1776,1774, + 1,0,0,0,1776,1775,1,0,0,0,1777,75,1,0,0,0,1778,1783,3,74,37,0,1779, + 1780,5,4,0,0,1780,1782,3,74,37,0,1781,1779,1,0,0,0,1782,1785,1,0, + 0,0,1783,1781,1,0,0,0,1783,1784,1,0,0,0,1784,77,1,0,0,0,1785,1783, + 1,0,0,0,1786,1787,3,314,157,0,1787,79,1,0,0,0,1788,1789,5,136,0, + 0,1789,1790,5,2,0,0,1790,1791,3,220,110,0,1791,1792,5,3,0,0,1792, + 1795,1,0,0,0,1793,1795,3,198,99,0,1794,1788,1,0,0,0,1794,1793,1, + 0,0,0,1795,81,1,0,0,0,1796,1797,5,209,0,0,1797,1798,5,31,0,0,1798, + 1803,3,88,44,0,1799,1800,5,4,0,0,1800,1802,3,88,44,0,1801,1799,1, 0,0,0,1802,1805,1,0,0,0,1803,1801,1,0,0,0,1803,1804,1,0,0,0,1804, - 1806,1,0,0,0,1805,1803,1,0,0,0,1806,1807,5,3,0,0,1807,67,1,0,0,0, - 1808,1809,5,2,0,0,1809,1814,3,66,33,0,1810,1811,5,4,0,0,1811,1813, - 3,66,33,0,1812,1810,1,0,0,0,1813,1816,1,0,0,0,1814,1812,1,0,0,0, - 1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1814,1,0,0,0,1817,1818, - 5,3,0,0,1818,69,1,0,0,0,1819,1820,5,283,0,0,1820,1821,5,20,0,0,1821, - 1826,3,72,36,0,1822,1823,5,283,0,0,1823,1824,5,31,0,0,1824,1826, - 3,74,37,0,1825,1819,1,0,0,0,1825,1822,1,0,0,0,1826,71,1,0,0,0,1827, - 1828,5,146,0,0,1828,1829,3,388,194,0,1829,1830,5,212,0,0,1830,1831, - 3,388,194,0,1831,1834,1,0,0,0,1832,1834,3,376,188,0,1833,1827,1, - 0,0,0,1833,1832,1,0,0,0,1834,73,1,0,0,0,1835,1839,3,388,194,0,1836, - 1837,5,346,0,0,1837,1838,5,267,0,0,1838,1840,3,54,27,0,1839,1836, - 1,0,0,0,1839,1840,1,0,0,0,1840,75,1,0,0,0,1841,1842,3,376,188,0, - 1842,1843,3,388,194,0,1843,77,1,0,0,0,1844,1845,3,28,14,0,1845,1846, - 3,26,13,0,1846,1901,1,0,0,0,1847,1849,3,146,73,0,1848,1850,3,102, - 51,0,1849,1848,1,0,0,0,1850,1851,1,0,0,0,1851,1849,1,0,0,0,1851, - 1852,1,0,0,0,1852,1901,1,0,0,0,1853,1854,5,84,0,0,1854,1855,5,123, - 0,0,1855,1856,3,86,43,0,1856,1858,3,240,120,0,1857,1859,3,138,69, - 0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1901,1,0,0,0,1860,1861, - 5,329,0,0,1861,1862,3,86,43,0,1862,1863,3,240,120,0,1863,1865,3, - 120,60,0,1864,1866,3,138,69,0,1865,1864,1,0,0,0,1865,1866,1,0,0, - 0,1866,1901,1,0,0,0,1867,1868,5,179,0,0,1868,1869,5,152,0,0,1869, - 1870,3,86,43,0,1870,1871,3,240,120,0,1871,1877,5,332,0,0,1872,1878, - 3,98,49,0,1873,1874,5,2,0,0,1874,1875,3,26,13,0,1875,1876,5,3,0, - 0,1876,1878,1,0,0,0,1877,1872,1,0,0,0,1877,1873,1,0,0,0,1878,1879, - 1,0,0,0,1879,1880,3,240,120,0,1880,1881,5,203,0,0,1881,1885,3,276, - 138,0,1882,1884,3,122,61,0,1883,1882,1,0,0,0,1884,1887,1,0,0,0,1885, - 1883,1,0,0,0,1885,1886,1,0,0,0,1886,1891,1,0,0,0,1887,1885,1,0,0, - 0,1888,1890,3,124,62,0,1889,1888,1,0,0,0,1890,1893,1,0,0,0,1891, - 1889,1,0,0,0,1891,1892,1,0,0,0,1892,1897,1,0,0,0,1893,1891,1,0,0, - 0,1894,1896,3,126,63,0,1895,1894,1,0,0,0,1896,1899,1,0,0,0,1897, - 1895,1,0,0,0,1897,1898,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1,0,0, - 0,1900,1844,1,0,0,0,1900,1847,1,0,0,0,1900,1853,1,0,0,0,1900,1860, - 1,0,0,0,1900,1867,1,0,0,0,1901,79,1,0,0,0,1902,1903,3,98,49,0,1903, - 81,1,0,0,0,1904,1905,3,98,49,0,1905,83,1,0,0,0,1906,1907,3,252,126, - 0,1907,85,1,0,0,0,1908,1909,3,252,126,0,1909,87,1,0,0,0,1910,1911, - 3,254,127,0,1911,89,1,0,0,0,1912,1913,3,254,127,0,1913,91,1,0,0, - 0,1914,1917,3,246,123,0,1915,1917,4,46,0,0,1916,1914,1,0,0,0,1916, - 1915,1,0,0,0,1917,93,1,0,0,0,1918,1923,3,92,46,0,1919,1920,5,4,0, - 0,1920,1922,3,92,46,0,1921,1919,1,0,0,0,1922,1925,1,0,0,0,1923,1921, - 1,0,0,0,1923,1924,1,0,0,0,1924,95,1,0,0,0,1925,1923,1,0,0,0,1926, - 1927,3,372,186,0,1927,97,1,0,0,0,1928,1929,5,136,0,0,1929,1930,5, - 2,0,0,1930,1931,3,268,134,0,1931,1932,5,3,0,0,1932,1935,1,0,0,0, - 1933,1935,3,246,123,0,1934,1928,1,0,0,0,1934,1933,1,0,0,0,1935,99, - 1,0,0,0,1936,1937,5,209,0,0,1937,1938,5,31,0,0,1938,1943,3,108,54, - 0,1939,1940,5,4,0,0,1940,1942,3,108,54,0,1941,1939,1,0,0,0,1942, - 1945,1,0,0,0,1943,1941,1,0,0,0,1943,1944,1,0,0,0,1944,1947,1,0,0, - 0,1945,1943,1,0,0,0,1946,1936,1,0,0,0,1946,1947,1,0,0,0,1947,1958, - 1,0,0,0,1948,1949,5,44,0,0,1949,1950,5,31,0,0,1950,1955,3,268,134, - 0,1951,1952,5,4,0,0,1952,1954,3,268,134,0,1953,1951,1,0,0,0,1954, - 1957,1,0,0,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1959,1,0,0, - 0,1957,1955,1,0,0,0,1958,1948,1,0,0,0,1958,1959,1,0,0,0,1959,1970, - 1,0,0,0,1960,1961,5,93,0,0,1961,1962,5,31,0,0,1962,1967,3,268,134, - 0,1963,1964,5,4,0,0,1964,1966,3,268,134,0,1965,1963,1,0,0,0,1966, - 1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0,0,1968,1971,1,0,0, - 0,1969,1967,1,0,0,0,1970,1960,1,0,0,0,1970,1971,1,0,0,0,1971,1982, - 1,0,0,0,1972,1973,5,278,0,0,1973,1974,5,31,0,0,1974,1979,3,108,54, - 0,1975,1976,5,4,0,0,1976,1978,3,108,54,0,1977,1975,1,0,0,0,1978, - 1981,1,0,0,0,1979,1977,1,0,0,0,1979,1980,1,0,0,0,1980,1983,1,0,0, - 0,1981,1979,1,0,0,0,1982,1972,1,0,0,0,1982,1983,1,0,0,0,1983,1985, - 1,0,0,0,1984,1986,3,352,176,0,1985,1984,1,0,0,0,1985,1986,1,0,0, - 0,1986,1992,1,0,0,0,1987,1990,5,165,0,0,1988,1991,5,10,0,0,1989, - 1991,3,268,134,0,1990,1988,1,0,0,0,1990,1989,1,0,0,0,1991,1993,1, - 0,0,0,1992,1987,1,0,0,0,1992,1993,1,0,0,0,1993,1996,1,0,0,0,1994, - 1995,5,202,0,0,1995,1997,3,268,134,0,1996,1994,1,0,0,0,1996,1997, - 1,0,0,0,1997,101,1,0,0,0,1998,1999,3,28,14,0,1999,2000,3,112,56, - 0,2000,103,1,0,0,0,2001,2002,6,52,-1,0,2002,2003,3,106,53,0,2003, - 2024,1,0,0,0,2004,2005,10,3,0,0,2005,2007,7,13,0,0,2006,2008,3,196, - 98,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009, - 2023,3,104,52,4,2010,2011,10,2,0,0,2011,2013,5,148,0,0,2012,2014, - 3,196,98,0,2013,2012,1,0,0,0,2013,2014,1,0,0,0,2014,2015,1,0,0,0, - 2015,2023,3,104,52,3,2016,2017,10,1,0,0,2017,2019,7,14,0,0,2018, - 2020,3,196,98,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1, - 0,0,0,2021,2023,3,104,52,2,2022,2004,1,0,0,0,2022,2010,1,0,0,0,2022, - 2016,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025,1,0,0, - 0,2025,105,1,0,0,0,2026,2024,1,0,0,0,2027,2037,3,114,57,0,2028,2037, - 3,110,55,0,2029,2030,5,293,0,0,2030,2037,3,86,43,0,2031,2037,3,226, - 113,0,2032,2033,5,2,0,0,2033,2034,3,26,13,0,2034,2035,5,3,0,0,2035, - 2037,1,0,0,0,2036,2027,1,0,0,0,2036,2028,1,0,0,0,2036,2029,1,0,0, - 0,2036,2031,1,0,0,0,2036,2032,1,0,0,0,2037,107,1,0,0,0,2038,2041, - 3,92,46,0,2039,2041,3,268,134,0,2040,2038,1,0,0,0,2040,2039,1,0, - 0,0,2041,2043,1,0,0,0,2042,2044,7,15,0,0,2043,2042,1,0,0,0,2043, - 2044,1,0,0,0,2044,2047,1,0,0,0,2045,2046,5,199,0,0,2046,2048,7,16, - 0,0,2047,2045,1,0,0,0,2047,2048,1,0,0,0,2048,109,1,0,0,0,2049,2051, - 3,146,73,0,2050,2052,3,112,56,0,2051,2050,1,0,0,0,2052,2053,1,0, - 0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,111,1,0,0,0,2055,2057, - 3,116,58,0,2056,2058,3,138,69,0,2057,2056,1,0,0,0,2057,2058,1,0, - 0,0,2058,2059,1,0,0,0,2059,2060,3,100,50,0,2060,2083,1,0,0,0,2061, - 2065,3,118,59,0,2062,2064,3,194,97,0,2063,2062,1,0,0,0,2064,2067, - 1,0,0,0,2065,2063,1,0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067, - 2065,1,0,0,0,2068,2070,3,138,69,0,2069,2068,1,0,0,0,2069,2070,1, - 0,0,0,2070,2072,1,0,0,0,2071,2073,3,152,76,0,2072,2071,1,0,0,0,2072, - 2073,1,0,0,0,2073,2075,1,0,0,0,2074,2076,3,140,70,0,2075,2074,1, - 0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077,2079,3,352,176,0, - 2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2081, - 3,100,50,0,2081,2083,1,0,0,0,2082,2055,1,0,0,0,2082,2061,1,0,0,0, - 2083,113,1,0,0,0,2084,2086,3,116,58,0,2085,2087,3,146,73,0,2086, - 2085,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0,0,2088,2090,3,194, - 97,0,2089,2088,1,0,0,0,2090,2093,1,0,0,0,2091,2089,1,0,0,0,2091, - 2092,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2094,2096,3,138, - 69,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097, - 2099,3,152,76,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1, - 0,0,0,2100,2102,3,140,70,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, - 2104,1,0,0,0,2103,2105,3,352,176,0,2104,2103,1,0,0,0,2104,2105,1, - 0,0,0,2105,2129,1,0,0,0,2106,2108,3,118,59,0,2107,2109,3,146,73, - 0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2113,1,0,0,0,2110,2112, - 3,194,97,0,2111,2110,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0, - 2113,2114,1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2116,2118, - 3,138,69,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, - 2119,2121,3,152,76,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, - 1,0,0,0,2122,2124,3,140,70,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, - 2124,2126,1,0,0,0,2125,2127,3,352,176,0,2126,2125,1,0,0,0,2126,2127, - 1,0,0,0,2127,2129,1,0,0,0,2128,2084,1,0,0,0,2128,2106,1,0,0,0,2129, - 115,1,0,0,0,2130,2131,5,263,0,0,2131,2132,5,314,0,0,2132,2134,5, - 2,0,0,2133,2135,3,196,98,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, - 2136,1,0,0,0,2136,2137,3,274,137,0,2137,2138,5,3,0,0,2138,2150,1, - 0,0,0,2139,2141,5,177,0,0,2140,2142,3,196,98,0,2141,2140,1,0,0,0, - 2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2150,3,274,137,0,2144,2146, - 5,238,0,0,2145,2147,3,196,98,0,2146,2145,1,0,0,0,2146,2147,1,0,0, - 0,2147,2148,1,0,0,0,2148,2150,3,274,137,0,2149,2130,1,0,0,0,2149, - 2139,1,0,0,0,2149,2144,1,0,0,0,2150,2152,1,0,0,0,2151,2153,3,242, - 121,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2156,1,0,0,0,2154, - 2155,5,236,0,0,2155,2157,3,388,194,0,2156,2154,1,0,0,0,2156,2157, - 1,0,0,0,2157,2158,1,0,0,0,2158,2159,5,332,0,0,2159,2172,3,388,194, - 0,2160,2170,5,20,0,0,2161,2171,3,214,107,0,2162,2171,3,334,167,0, - 2163,2166,5,2,0,0,2164,2167,3,214,107,0,2165,2167,3,334,167,0,2166, - 2164,1,0,0,0,2166,2165,1,0,0,0,2167,2168,1,0,0,0,2168,2169,5,3,0, - 0,2169,2171,1,0,0,0,2170,2161,1,0,0,0,2170,2162,1,0,0,0,2170,2163, - 1,0,0,0,2171,2173,1,0,0,0,2172,2160,1,0,0,0,2172,2173,1,0,0,0,2173, - 2175,1,0,0,0,2174,2176,3,242,121,0,2175,2174,1,0,0,0,2175,2176,1, - 0,0,0,2176,2179,1,0,0,0,2177,2178,5,235,0,0,2178,2180,3,388,194, - 0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,117,1,0,0,0,2181,2185, - 5,263,0,0,2182,2184,3,142,71,0,2183,2182,1,0,0,0,2184,2187,1,0,0, - 0,2185,2183,1,0,0,0,2185,2186,1,0,0,0,2186,2189,1,0,0,0,2187,2185, - 1,0,0,0,2188,2190,3,196,98,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0, - 2190,2191,1,0,0,0,2191,2192,3,258,129,0,2192,119,1,0,0,0,2193,2194, - 5,269,0,0,2194,2195,3,134,67,0,2195,121,1,0,0,0,2196,2197,5,343, - 0,0,2197,2200,5,178,0,0,2198,2199,5,14,0,0,2199,2201,3,276,138,0, - 2200,2198,1,0,0,0,2200,2201,1,0,0,0,2201,2202,1,0,0,0,2202,2203, - 5,300,0,0,2203,2204,3,128,64,0,2204,123,1,0,0,0,2205,2206,5,343, - 0,0,2206,2207,5,197,0,0,2207,2210,5,178,0,0,2208,2209,5,31,0,0,2209, - 2211,5,296,0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211,2214,1,0, - 0,0,2212,2213,5,14,0,0,2213,2215,3,276,138,0,2214,2212,1,0,0,0,2214, - 2215,1,0,0,0,2215,2216,1,0,0,0,2216,2217,5,300,0,0,2217,2218,3,130, - 65,0,2218,125,1,0,0,0,2219,2220,5,343,0,0,2220,2221,5,197,0,0,2221, - 2222,5,178,0,0,2222,2223,5,31,0,0,2223,2226,5,280,0,0,2224,2225, - 5,14,0,0,2225,2227,3,276,138,0,2226,2224,1,0,0,0,2226,2227,1,0,0, - 0,2227,2228,1,0,0,0,2228,2229,5,300,0,0,2229,2230,3,132,66,0,2230, - 127,1,0,0,0,2231,2239,5,84,0,0,2232,2233,5,329,0,0,2233,2234,5,269, - 0,0,2234,2239,5,363,0,0,2235,2236,5,329,0,0,2236,2237,5,269,0,0, - 2237,2239,3,134,67,0,2238,2231,1,0,0,0,2238,2232,1,0,0,0,2238,2235, - 1,0,0,0,2239,129,1,0,0,0,2240,2241,5,147,0,0,2241,2259,5,363,0,0, - 2242,2243,5,147,0,0,2243,2244,5,2,0,0,2244,2245,3,244,122,0,2245, - 2246,5,3,0,0,2246,2247,5,333,0,0,2247,2248,5,2,0,0,2248,2253,3,268, - 134,0,2249,2250,5,4,0,0,2250,2252,3,268,134,0,2251,2249,1,0,0,0, - 2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,2256, - 1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,3,0,0,2257,2259,1,0,0,0,2258, - 2240,1,0,0,0,2258,2242,1,0,0,0,2259,131,1,0,0,0,2260,2265,5,84,0, - 0,2261,2262,5,329,0,0,2262,2263,5,269,0,0,2263,2265,3,134,67,0,2264, - 2260,1,0,0,0,2264,2261,1,0,0,0,2265,133,1,0,0,0,2266,2271,3,136, - 68,0,2267,2268,5,4,0,0,2268,2270,3,136,68,0,2269,2267,1,0,0,0,2270, - 2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,135,1,0,0, - 0,2273,2271,1,0,0,0,2274,2275,3,246,123,0,2275,2276,5,352,0,0,2276, - 2277,3,268,134,0,2277,137,1,0,0,0,2278,2279,5,344,0,0,2279,2280, - 3,276,138,0,2280,139,1,0,0,0,2281,2282,5,132,0,0,2282,2283,3,276, - 138,0,2283,141,1,0,0,0,2284,2285,5,374,0,0,2285,2292,3,144,72,0, - 2286,2288,5,4,0,0,2287,2286,1,0,0,0,2287,2288,1,0,0,0,2288,2289, - 1,0,0,0,2289,2291,3,144,72,0,2290,2287,1,0,0,0,2291,2294,1,0,0,0, - 2292,2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294,2292, - 1,0,0,0,2295,2296,5,375,0,0,2296,143,1,0,0,0,2297,2311,3,376,188, - 0,2298,2299,3,376,188,0,2299,2300,5,2,0,0,2300,2305,3,284,142,0, - 2301,2302,5,4,0,0,2302,2304,3,284,142,0,2303,2301,1,0,0,0,2304,2307, - 1,0,0,0,2305,2303,1,0,0,0,2305,2306,1,0,0,0,2306,2308,1,0,0,0,2307, - 2305,1,0,0,0,2308,2309,5,3,0,0,2309,2311,1,0,0,0,2310,2297,1,0,0, - 0,2310,2298,1,0,0,0,2311,145,1,0,0,0,2312,2313,5,123,0,0,2313,2318, - 3,198,99,0,2314,2315,5,4,0,0,2315,2317,3,198,99,0,2316,2314,1,0, - 0,0,2317,2320,1,0,0,0,2318,2316,1,0,0,0,2318,2319,1,0,0,0,2319,2324, - 1,0,0,0,2320,2318,1,0,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0,0, - 2323,2326,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2328, - 1,0,0,0,2326,2324,1,0,0,0,2327,2329,3,162,81,0,2328,2327,1,0,0,0, - 2328,2329,1,0,0,0,2329,2331,1,0,0,0,2330,2332,3,168,84,0,2331,2330, - 1,0,0,0,2331,2332,1,0,0,0,2332,147,1,0,0,0,2333,2334,7,17,0,0,2334, - 149,1,0,0,0,2335,2337,5,119,0,0,2336,2335,1,0,0,0,2336,2337,1,0, - 0,0,2337,2338,1,0,0,0,2338,2339,7,18,0,0,2339,2340,5,20,0,0,2340, - 2341,5,201,0,0,2341,2350,3,392,196,0,2342,2344,5,119,0,0,2343,2342, - 1,0,0,0,2343,2344,1,0,0,0,2344,2345,1,0,0,0,2345,2346,7,19,0,0,2346, - 2347,5,20,0,0,2347,2348,5,201,0,0,2348,2350,3,280,140,0,2349,2336, - 1,0,0,0,2349,2343,1,0,0,0,2350,151,1,0,0,0,2351,2352,5,130,0,0,2352, - 2353,5,31,0,0,2353,2358,3,154,77,0,2354,2355,5,4,0,0,2355,2357,3, - 154,77,0,2356,2354,1,0,0,0,2357,2360,1,0,0,0,2358,2356,1,0,0,0,2358, - 2359,1,0,0,0,2359,2391,1,0,0,0,2360,2358,1,0,0,0,2361,2362,5,130, - 0,0,2362,2363,5,31,0,0,2363,2368,3,268,134,0,2364,2365,5,4,0,0,2365, - 2367,3,268,134,0,2366,2364,1,0,0,0,2367,2370,1,0,0,0,2368,2366,1, - 0,0,0,2368,2369,1,0,0,0,2369,2388,1,0,0,0,2370,2368,1,0,0,0,2371, - 2372,5,346,0,0,2372,2389,5,256,0,0,2373,2374,5,346,0,0,2374,2389, - 5,61,0,0,2375,2376,5,131,0,0,2376,2377,5,271,0,0,2377,2378,5,2,0, - 0,2378,2383,3,160,80,0,2379,2380,5,4,0,0,2380,2382,3,160,80,0,2381, - 2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0, - 0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,3,0,0,2387,2389, - 1,0,0,0,2388,2371,1,0,0,0,2388,2373,1,0,0,0,2388,2375,1,0,0,0,2388, - 2389,1,0,0,0,2389,2391,1,0,0,0,2390,2351,1,0,0,0,2390,2361,1,0,0, - 0,2391,153,1,0,0,0,2392,2396,3,92,46,0,2393,2396,3,156,78,0,2394, - 2396,3,268,134,0,2395,2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1, - 0,0,0,2396,155,1,0,0,0,2397,2398,7,20,0,0,2398,2399,5,2,0,0,2399, - 2404,3,160,80,0,2400,2401,5,4,0,0,2401,2403,3,160,80,0,2402,2400, - 1,0,0,0,2403,2406,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, - 2407,1,0,0,0,2406,2404,1,0,0,0,2407,2408,5,3,0,0,2408,2423,1,0,0, - 0,2409,2410,5,131,0,0,2410,2411,5,271,0,0,2411,2412,5,2,0,0,2412, - 2417,3,158,79,0,2413,2414,5,4,0,0,2414,2416,3,158,79,0,2415,2413, - 1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418,1,0,0,0,2418, - 2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421,2423,1,0,0, - 0,2422,2397,1,0,0,0,2422,2409,1,0,0,0,2423,157,1,0,0,0,2424,2427, - 3,156,78,0,2425,2427,3,160,80,0,2426,2424,1,0,0,0,2426,2425,1,0, - 0,0,2427,159,1,0,0,0,2428,2449,3,92,46,0,2429,2449,3,268,134,0,2430, - 2445,5,2,0,0,2431,2434,3,92,46,0,2432,2434,3,268,134,0,2433,2431, - 1,0,0,0,2433,2432,1,0,0,0,2434,2442,1,0,0,0,2435,2438,5,4,0,0,2436, - 2439,3,92,46,0,2437,2439,3,268,134,0,2438,2436,1,0,0,0,2438,2437, - 1,0,0,0,2439,2441,1,0,0,0,2440,2435,1,0,0,0,2441,2444,1,0,0,0,2442, - 2440,1,0,0,0,2442,2443,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0, - 0,2445,2433,1,0,0,0,2445,2446,1,0,0,0,2446,2447,1,0,0,0,2447,2449, - 5,3,0,0,2448,2428,1,0,0,0,2448,2429,1,0,0,0,2448,2430,1,0,0,0,2449, - 161,1,0,0,0,2450,2451,5,223,0,0,2451,2452,5,2,0,0,2452,2453,3,258, - 129,0,2453,2454,5,119,0,0,2454,2455,3,164,82,0,2455,2456,5,140,0, - 0,2456,2457,5,2,0,0,2457,2462,3,166,83,0,2458,2459,5,4,0,0,2459, - 2461,3,166,83,0,2460,2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1, - 0,0,0,2462,2463,1,0,0,0,2463,2465,1,0,0,0,2464,2462,1,0,0,0,2465, - 2466,5,3,0,0,2466,2467,5,3,0,0,2467,163,1,0,0,0,2468,2481,3,376, - 188,0,2469,2470,5,2,0,0,2470,2475,3,376,188,0,2471,2472,5,4,0,0, - 2472,2474,3,376,188,0,2473,2471,1,0,0,0,2474,2477,1,0,0,0,2475,2473, - 1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0,0,2477,2475,1,0,0,0,2478, - 2479,5,3,0,0,2479,2481,1,0,0,0,2480,2468,1,0,0,0,2480,2469,1,0,0, - 0,2481,165,1,0,0,0,2482,2487,3,268,134,0,2483,2485,5,20,0,0,2484, - 2483,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1,0,0,0,2486,2488,3,376, - 188,0,2487,2484,1,0,0,0,2487,2488,1,0,0,0,2488,167,1,0,0,0,2489, - 2491,5,327,0,0,2490,2492,3,170,85,0,2491,2490,1,0,0,0,2491,2492, - 1,0,0,0,2492,2493,1,0,0,0,2493,2494,5,2,0,0,2494,2495,3,172,86,0, - 2495,2500,5,3,0,0,2496,2498,5,20,0,0,2497,2496,1,0,0,0,2497,2498, - 1,0,0,0,2498,2499,1,0,0,0,2499,2501,3,376,188,0,2500,2497,1,0,0, - 0,2500,2501,1,0,0,0,2501,169,1,0,0,0,2502,2503,7,21,0,0,2503,2504, - 5,199,0,0,2504,171,1,0,0,0,2505,2508,3,174,87,0,2506,2508,3,176, - 88,0,2507,2505,1,0,0,0,2507,2506,1,0,0,0,2508,173,1,0,0,0,2509,2510, - 3,180,90,0,2510,2511,5,119,0,0,2511,2512,3,182,91,0,2512,2513,5, - 140,0,0,2513,2514,5,2,0,0,2514,2519,3,184,92,0,2515,2516,5,4,0,0, - 2516,2518,3,184,92,0,2517,2515,1,0,0,0,2518,2521,1,0,0,0,2519,2517, - 1,0,0,0,2519,2520,1,0,0,0,2520,2522,1,0,0,0,2521,2519,1,0,0,0,2522, - 2523,5,3,0,0,2523,175,1,0,0,0,2524,2525,5,2,0,0,2525,2530,3,180, - 90,0,2526,2527,5,4,0,0,2527,2529,3,180,90,0,2528,2526,1,0,0,0,2529, - 2532,1,0,0,0,2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0, - 0,2532,2530,1,0,0,0,2533,2534,5,3,0,0,2534,2535,5,119,0,0,2535,2536, - 3,182,91,0,2536,2537,5,140,0,0,2537,2538,5,2,0,0,2538,2543,3,178, - 89,0,2539,2540,5,4,0,0,2540,2542,3,178,89,0,2541,2539,1,0,0,0,2542, - 2545,1,0,0,0,2543,2541,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, - 0,2545,2543,1,0,0,0,2546,2547,5,3,0,0,2547,177,1,0,0,0,2548,2549, - 5,2,0,0,2549,2554,3,186,93,0,2550,2551,5,4,0,0,2551,2553,3,186,93, - 0,2552,2550,1,0,0,0,2553,2556,1,0,0,0,2554,2552,1,0,0,0,2554,2555, - 1,0,0,0,2555,2557,1,0,0,0,2556,2554,1,0,0,0,2557,2559,5,3,0,0,2558, - 2560,3,188,94,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,179,1,0, - 0,0,2561,2562,3,376,188,0,2562,181,1,0,0,0,2563,2564,3,376,188,0, - 2564,183,1,0,0,0,2565,2567,3,186,93,0,2566,2568,3,188,94,0,2567, - 2566,1,0,0,0,2567,2568,1,0,0,0,2568,185,1,0,0,0,2569,2570,3,246, - 123,0,2570,187,1,0,0,0,2571,2573,5,20,0,0,2572,2571,1,0,0,0,2572, - 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2575,3,376,188,0,2575,189,1, - 0,0,0,2576,2577,5,137,0,0,2577,2578,5,197,0,0,2578,2579,5,105,0, - 0,2579,191,1,0,0,0,2580,2581,5,137,0,0,2581,2582,5,105,0,0,2582, - 193,1,0,0,0,2583,2584,5,158,0,0,2584,2586,5,338,0,0,2585,2587,5, - 211,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2588,1,0,0,0,2588, - 2589,3,90,45,0,2589,2598,5,2,0,0,2590,2595,3,268,134,0,2591,2592, - 5,4,0,0,2592,2594,3,268,134,0,2593,2591,1,0,0,0,2594,2597,1,0,0, - 0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2599,1,0,0,0,2597,2595, - 1,0,0,0,2598,2590,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, - 2601,5,3,0,0,2601,2613,3,240,120,0,2602,2604,5,20,0,0,2603,2602, - 1,0,0,0,2603,2604,1,0,0,0,2604,2605,1,0,0,0,2605,2610,3,376,188, - 0,2606,2607,5,4,0,0,2607,2609,3,376,188,0,2608,2606,1,0,0,0,2609, - 2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2614,1,0,0, - 0,2612,2610,1,0,0,0,2613,2603,1,0,0,0,2613,2614,1,0,0,0,2614,195, - 1,0,0,0,2615,2616,7,22,0,0,2616,197,1,0,0,0,2617,2629,3,86,43,0, - 2618,2620,5,158,0,0,2619,2618,1,0,0,0,2619,2620,1,0,0,0,2620,2621, - 1,0,0,0,2621,2625,3,224,112,0,2622,2624,3,200,100,0,2623,2622,1, - 0,0,0,2624,2627,1,0,0,0,2625,2623,1,0,0,0,2625,2626,1,0,0,0,2626, - 2629,1,0,0,0,2627,2625,1,0,0,0,2628,2617,1,0,0,0,2628,2619,1,0,0, - 0,2629,199,1,0,0,0,2630,2634,3,202,101,0,2631,2634,3,162,81,0,2632, - 2634,3,168,84,0,2633,2630,1,0,0,0,2633,2631,1,0,0,0,2633,2632,1, - 0,0,0,2634,201,1,0,0,0,2635,2636,3,204,102,0,2636,2638,5,155,0,0, - 2637,2639,5,158,0,0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640, - 1,0,0,0,2640,2642,3,224,112,0,2641,2643,3,206,103,0,2642,2641,1, - 0,0,0,2642,2643,1,0,0,0,2643,2653,1,0,0,0,2644,2645,5,194,0,0,2645, - 2646,3,204,102,0,2646,2648,5,155,0,0,2647,2649,5,158,0,0,2648,2647, - 1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,224,112, - 0,2651,2653,1,0,0,0,2652,2635,1,0,0,0,2652,2644,1,0,0,0,2653,203, - 1,0,0,0,2654,2656,5,144,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0, - 2656,2679,1,0,0,0,2657,2679,5,60,0,0,2658,2660,5,161,0,0,2659,2661, - 5,211,0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2679,1,0,0,0, - 2662,2664,5,161,0,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665, - 1,0,0,0,2665,2679,5,264,0,0,2666,2668,5,250,0,0,2667,2669,5,211, - 0,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2679,1,0,0,0,2670,2672, - 5,124,0,0,2671,2673,5,211,0,0,2672,2671,1,0,0,0,2672,2673,1,0,0, - 0,2673,2679,1,0,0,0,2674,2676,5,161,0,0,2675,2674,1,0,0,0,2675,2676, - 1,0,0,0,2676,2677,1,0,0,0,2677,2679,5,15,0,0,2678,2655,1,0,0,0,2678, - 2657,1,0,0,0,2678,2658,1,0,0,0,2678,2663,1,0,0,0,2678,2666,1,0,0, - 0,2678,2670,1,0,0,0,2678,2675,1,0,0,0,2679,205,1,0,0,0,2680,2681, - 5,203,0,0,2681,2685,3,276,138,0,2682,2683,5,332,0,0,2683,2685,3, - 212,106,0,2684,2680,1,0,0,0,2684,2682,1,0,0,0,2685,207,1,0,0,0,2686, - 2687,5,295,0,0,2687,2689,5,2,0,0,2688,2690,3,210,105,0,2689,2688, - 1,0,0,0,2689,2690,1,0,0,0,2690,2691,1,0,0,0,2691,2696,5,3,0,0,2692, - 2693,5,243,0,0,2693,2694,5,2,0,0,2694,2695,5,382,0,0,2695,2697,5, - 3,0,0,2696,2692,1,0,0,0,2696,2697,1,0,0,0,2697,209,1,0,0,0,2698, - 2700,5,362,0,0,2699,2698,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0, - 0,0,2701,2702,7,23,0,0,2702,2723,5,222,0,0,2703,2704,3,268,134,0, - 2704,2705,5,258,0,0,2705,2723,1,0,0,0,2706,2707,5,29,0,0,2707,2708, - 5,382,0,0,2708,2709,5,210,0,0,2709,2710,5,201,0,0,2710,2719,5,382, - 0,0,2711,2717,5,203,0,0,2712,2718,3,376,188,0,2713,2714,3,370,185, - 0,2714,2715,5,2,0,0,2715,2716,5,3,0,0,2716,2718,1,0,0,0,2717,2712, - 1,0,0,0,2717,2713,1,0,0,0,2718,2720,1,0,0,0,2719,2711,1,0,0,0,2719, - 2720,1,0,0,0,2720,2723,1,0,0,0,2721,2723,3,268,134,0,2722,2699,1, - 0,0,0,2722,2703,1,0,0,0,2722,2706,1,0,0,0,2722,2721,1,0,0,0,2723, - 211,1,0,0,0,2724,2725,5,2,0,0,2725,2726,3,214,107,0,2726,2727,5, - 3,0,0,2727,213,1,0,0,0,2728,2733,3,372,186,0,2729,2730,5,4,0,0,2730, - 2732,3,372,186,0,2731,2729,1,0,0,0,2732,2735,1,0,0,0,2733,2731,1, - 0,0,0,2733,2734,1,0,0,0,2734,215,1,0,0,0,2735,2733,1,0,0,0,2736, - 2737,5,2,0,0,2737,2742,3,218,109,0,2738,2739,5,4,0,0,2739,2741,3, - 218,109,0,2740,2738,1,0,0,0,2741,2744,1,0,0,0,2742,2740,1,0,0,0, - 2742,2743,1,0,0,0,2743,2745,1,0,0,0,2744,2742,1,0,0,0,2745,2746, - 5,3,0,0,2746,217,1,0,0,0,2747,2749,3,372,186,0,2748,2750,7,15,0, - 0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,219,1,0,0,0,2751,2752, - 5,2,0,0,2752,2757,3,222,111,0,2753,2754,5,4,0,0,2754,2756,3,222, - 111,0,2755,2753,1,0,0,0,2756,2759,1,0,0,0,2757,2755,1,0,0,0,2757, - 2758,1,0,0,0,2758,2760,1,0,0,0,2759,2757,1,0,0,0,2760,2761,5,3,0, - 0,2761,221,1,0,0,0,2762,2764,3,96,48,0,2763,2765,3,24,12,0,2764, - 2763,1,0,0,0,2764,2765,1,0,0,0,2765,223,1,0,0,0,2766,2770,3,86,43, - 0,2767,2770,3,90,45,0,2768,2770,3,98,49,0,2769,2766,1,0,0,0,2769, - 2767,1,0,0,0,2769,2768,1,0,0,0,2770,2772,1,0,0,0,2771,2773,3,150, - 75,0,2772,2771,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0,0,2774, - 2776,3,208,104,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2777,1, - 0,0,0,2777,2778,3,240,120,0,2778,2798,1,0,0,0,2779,2780,5,2,0,0, - 2780,2781,3,26,13,0,2781,2783,5,3,0,0,2782,2784,3,208,104,0,2783, - 2782,1,0,0,0,2783,2784,1,0,0,0,2784,2785,1,0,0,0,2785,2786,3,240, - 120,0,2786,2798,1,0,0,0,2787,2788,5,2,0,0,2788,2789,3,198,99,0,2789, - 2791,5,3,0,0,2790,2792,3,208,104,0,2791,2790,1,0,0,0,2791,2792,1, - 0,0,0,2792,2793,1,0,0,0,2793,2794,3,240,120,0,2794,2798,1,0,0,0, - 2795,2798,3,226,113,0,2796,2798,3,238,119,0,2797,2769,1,0,0,0,2797, - 2779,1,0,0,0,2797,2787,1,0,0,0,2797,2795,1,0,0,0,2797,2796,1,0,0, - 0,2798,225,1,0,0,0,2799,2800,5,333,0,0,2800,2805,3,268,134,0,2801, - 2802,5,4,0,0,2802,2804,3,268,134,0,2803,2801,1,0,0,0,2804,2807,1, - 0,0,0,2805,2803,1,0,0,0,2805,2806,1,0,0,0,2806,2808,1,0,0,0,2807, - 2805,1,0,0,0,2808,2809,3,240,120,0,2809,227,1,0,0,0,2810,2811,5, - 293,0,0,2811,2813,3,86,43,0,2812,2814,3,230,115,0,2813,2812,1,0, - 0,0,2813,2814,1,0,0,0,2814,2830,1,0,0,0,2815,2816,5,293,0,0,2816, - 2817,5,2,0,0,2817,2818,3,86,43,0,2818,2820,5,3,0,0,2819,2821,3,230, - 115,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0,2821,2830,1,0,0,0,2822, - 2823,5,293,0,0,2823,2824,5,2,0,0,2824,2825,3,26,13,0,2825,2827,5, - 3,0,0,2826,2828,3,230,115,0,2827,2826,1,0,0,0,2827,2828,1,0,0,0, - 2828,2830,1,0,0,0,2829,2810,1,0,0,0,2829,2815,1,0,0,0,2829,2822, - 1,0,0,0,2830,229,1,0,0,0,2831,2832,5,346,0,0,2832,2833,5,274,0,0, - 2833,2851,5,217,0,0,2834,2835,7,24,0,0,2835,2848,5,31,0,0,2836,2837, - 5,2,0,0,2837,2842,3,268,134,0,2838,2839,5,4,0,0,2839,2841,3,268, - 134,0,2840,2838,1,0,0,0,2841,2844,1,0,0,0,2842,2840,1,0,0,0,2842, - 2843,1,0,0,0,2843,2845,1,0,0,0,2844,2842,1,0,0,0,2845,2846,5,3,0, - 0,2846,2849,1,0,0,0,2847,2849,3,268,134,0,2848,2836,1,0,0,0,2848, - 2847,1,0,0,0,2849,2851,1,0,0,0,2850,2831,1,0,0,0,2850,2834,1,0,0, - 0,2851,2868,1,0,0,0,2852,2853,7,25,0,0,2853,2866,5,31,0,0,2854,2855, - 5,2,0,0,2855,2860,3,108,54,0,2856,2857,5,4,0,0,2857,2859,3,108,54, - 0,2858,2856,1,0,0,0,2859,2862,1,0,0,0,2860,2858,1,0,0,0,2860,2861, - 1,0,0,0,2861,2863,1,0,0,0,2862,2860,1,0,0,0,2863,2864,5,3,0,0,2864, - 2867,1,0,0,0,2865,2867,3,108,54,0,2866,2854,1,0,0,0,2866,2865,1, - 0,0,0,2867,2869,1,0,0,0,2868,2852,1,0,0,0,2868,2869,1,0,0,0,2869, - 231,1,0,0,0,2870,2871,3,376,188,0,2871,2872,5,373,0,0,2872,2873, - 3,228,114,0,2873,233,1,0,0,0,2874,2877,3,228,114,0,2875,2877,3,232, - 116,0,2876,2874,1,0,0,0,2876,2875,1,0,0,0,2877,235,1,0,0,0,2878, - 2881,3,234,117,0,2879,2881,3,272,136,0,2880,2878,1,0,0,0,2880,2879, - 1,0,0,0,2881,237,1,0,0,0,2882,2883,3,366,183,0,2883,2892,5,2,0,0, - 2884,2889,3,236,118,0,2885,2886,5,4,0,0,2886,2888,3,236,118,0,2887, - 2885,1,0,0,0,2888,2891,1,0,0,0,2889,2887,1,0,0,0,2889,2890,1,0,0, - 0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2892,2884,1,0,0,0,2892,2893, - 1,0,0,0,2893,2894,1,0,0,0,2894,2895,5,3,0,0,2895,2896,3,240,120, - 0,2896,239,1,0,0,0,2897,2899,5,20,0,0,2898,2897,1,0,0,0,2898,2899, - 1,0,0,0,2899,2900,1,0,0,0,2900,2902,3,378,189,0,2901,2903,3,212, - 106,0,2902,2901,1,0,0,0,2902,2903,1,0,0,0,2903,2905,1,0,0,0,2904, - 2898,1,0,0,0,2904,2905,1,0,0,0,2905,241,1,0,0,0,2906,2907,5,257, - 0,0,2907,2908,5,121,0,0,2908,2909,5,266,0,0,2909,2913,3,388,194, - 0,2910,2911,5,346,0,0,2911,2912,5,267,0,0,2912,2914,3,54,27,0,2913, - 2910,1,0,0,0,2913,2914,1,0,0,0,2914,2956,1,0,0,0,2915,2916,5,257, - 0,0,2916,2917,5,121,0,0,2917,2927,5,85,0,0,2918,2919,5,113,0,0,2919, - 2920,5,299,0,0,2920,2921,5,31,0,0,2921,2925,3,388,194,0,2922,2923, - 5,101,0,0,2923,2924,5,31,0,0,2924,2926,3,388,194,0,2925,2922,1,0, - 0,0,2925,2926,1,0,0,0,2926,2928,1,0,0,0,2927,2918,1,0,0,0,2927,2928, - 1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,48,0,0,2930,2931,5,154,0,0, - 2931,2932,5,299,0,0,2932,2933,5,31,0,0,2933,2935,3,388,194,0,2934, - 2929,1,0,0,0,2934,2935,1,0,0,0,2935,2941,1,0,0,0,2936,2937,5,177, - 0,0,2937,2938,5,156,0,0,2938,2939,5,299,0,0,2939,2940,5,31,0,0,2940, - 2942,3,388,194,0,2941,2936,1,0,0,0,2941,2942,1,0,0,0,2942,2947,1, - 0,0,0,2943,2944,5,166,0,0,2944,2945,5,299,0,0,2945,2946,5,31,0,0, - 2946,2948,3,388,194,0,2947,2943,1,0,0,0,2947,2948,1,0,0,0,2948,2953, - 1,0,0,0,2949,2950,5,198,0,0,2950,2951,5,83,0,0,2951,2952,5,20,0, - 0,2952,2954,3,388,194,0,2953,2949,1,0,0,0,2953,2954,1,0,0,0,2954, - 2956,1,0,0,0,2955,2906,1,0,0,0,2955,2915,1,0,0,0,2956,243,1,0,0, - 0,2957,2962,3,246,123,0,2958,2959,5,4,0,0,2959,2961,3,246,123,0, - 2960,2958,1,0,0,0,2961,2964,1,0,0,0,2962,2960,1,0,0,0,2962,2963, - 1,0,0,0,2963,245,1,0,0,0,2964,2962,1,0,0,0,2965,2970,3,372,186,0, - 2966,2967,5,5,0,0,2967,2969,3,372,186,0,2968,2966,1,0,0,0,2969,2972, - 1,0,0,0,2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,247,1,0,0,0,2972, - 2970,1,0,0,0,2973,2978,3,250,125,0,2974,2975,5,4,0,0,2975,2977,3, - 250,125,0,2976,2974,1,0,0,0,2977,2980,1,0,0,0,2978,2976,1,0,0,0, - 2978,2979,1,0,0,0,2979,249,1,0,0,0,2980,2978,1,0,0,0,2981,2984,3, - 246,123,0,2982,2983,5,207,0,0,2983,2985,3,54,27,0,2984,2982,1,0, - 0,0,2984,2985,1,0,0,0,2985,251,1,0,0,0,2986,2987,3,372,186,0,2987, - 2988,5,5,0,0,2988,2990,1,0,0,0,2989,2986,1,0,0,0,2989,2990,1,0,0, - 0,2990,2991,1,0,0,0,2991,2992,3,372,186,0,2992,253,1,0,0,0,2993, - 2994,3,372,186,0,2994,2995,5,5,0,0,2995,2997,1,0,0,0,2996,2993,1, - 0,0,0,2996,2997,1,0,0,0,2997,2998,1,0,0,0,2998,2999,3,372,186,0, - 2999,255,1,0,0,0,3000,3003,3,92,46,0,3001,3003,3,268,134,0,3002, - 3000,1,0,0,0,3002,3001,1,0,0,0,3003,3011,1,0,0,0,3004,3006,5,20, - 0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006,3009,1,0,0,0,3007,3010, - 3,372,186,0,3008,3010,3,212,106,0,3009,3007,1,0,0,0,3009,3008,1, - 0,0,0,3010,3012,1,0,0,0,3011,3005,1,0,0,0,3011,3012,1,0,0,0,3012, - 257,1,0,0,0,3013,3018,3,256,128,0,3014,3015,5,4,0,0,3015,3017,3, - 256,128,0,3016,3014,1,0,0,0,3017,3020,1,0,0,0,3018,3016,1,0,0,0, - 3018,3019,1,0,0,0,3019,259,1,0,0,0,3020,3018,1,0,0,0,3021,3022,5, - 2,0,0,3022,3027,3,262,131,0,3023,3024,5,4,0,0,3024,3026,3,262,131, - 0,3025,3023,1,0,0,0,3026,3029,1,0,0,0,3027,3025,1,0,0,0,3027,3028, - 1,0,0,0,3028,3030,1,0,0,0,3029,3027,1,0,0,0,3030,3031,5,3,0,0,3031, - 261,1,0,0,0,3032,3035,3,264,132,0,3033,3035,3,336,168,0,3034,3032, - 1,0,0,0,3034,3033,1,0,0,0,3035,263,1,0,0,0,3036,3050,3,370,185,0, - 3037,3038,3,376,188,0,3038,3039,5,2,0,0,3039,3044,3,266,133,0,3040, - 3041,5,4,0,0,3041,3043,3,266,133,0,3042,3040,1,0,0,0,3043,3046,1, - 0,0,0,3044,3042,1,0,0,0,3044,3045,1,0,0,0,3045,3047,1,0,0,0,3046, - 3044,1,0,0,0,3047,3048,5,3,0,0,3048,3050,1,0,0,0,3049,3036,1,0,0, - 0,3049,3037,1,0,0,0,3050,265,1,0,0,0,3051,3054,3,370,185,0,3052, - 3054,3,288,144,0,3053,3051,1,0,0,0,3053,3052,1,0,0,0,3054,267,1, - 0,0,0,3055,3056,3,276,138,0,3056,269,1,0,0,0,3057,3058,3,376,188, - 0,3058,3059,5,373,0,0,3059,3060,3,268,134,0,3060,271,1,0,0,0,3061, - 3064,3,268,134,0,3062,3064,3,270,135,0,3063,3061,1,0,0,0,3063,3062, - 1,0,0,0,3064,273,1,0,0,0,3065,3070,3,268,134,0,3066,3067,5,4,0,0, - 3067,3069,3,268,134,0,3068,3066,1,0,0,0,3069,3072,1,0,0,0,3070,3068, - 1,0,0,0,3070,3071,1,0,0,0,3071,275,1,0,0,0,3072,3070,1,0,0,0,3073, - 3074,6,138,-1,0,3074,3075,7,26,0,0,3075,3086,3,276,138,5,3076,3077, - 5,105,0,0,3077,3078,5,2,0,0,3078,3079,3,26,13,0,3079,3080,5,3,0, - 0,3080,3086,1,0,0,0,3081,3083,3,280,140,0,3082,3084,3,278,139,0, - 3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1,0,0,0,3085,3073, - 1,0,0,0,3085,3076,1,0,0,0,3085,3081,1,0,0,0,3086,3095,1,0,0,0,3087, - 3088,10,2,0,0,3088,3089,5,14,0,0,3089,3094,3,276,138,3,3090,3091, - 10,1,0,0,3091,3092,5,208,0,0,3092,3094,3,276,138,2,3093,3087,1,0, - 0,0,3093,3090,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096, - 1,0,0,0,3096,277,1,0,0,0,3097,3095,1,0,0,0,3098,3100,5,197,0,0,3099, - 3098,1,0,0,0,3099,3100,1,0,0,0,3100,3101,1,0,0,0,3101,3102,5,24, - 0,0,3102,3103,3,280,140,0,3103,3104,5,14,0,0,3104,3105,3,280,140, - 0,3105,3181,1,0,0,0,3106,3108,5,197,0,0,3107,3106,1,0,0,0,3107,3108, - 1,0,0,0,3108,3109,1,0,0,0,3109,3110,5,140,0,0,3110,3111,5,2,0,0, - 3111,3116,3,268,134,0,3112,3113,5,4,0,0,3113,3115,3,268,134,0,3114, - 3112,1,0,0,0,3115,3118,1,0,0,0,3116,3114,1,0,0,0,3116,3117,1,0,0, - 0,3117,3119,1,0,0,0,3118,3116,1,0,0,0,3119,3120,5,3,0,0,3120,3181, - 1,0,0,0,3121,3123,5,197,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, - 3123,3124,1,0,0,0,3124,3125,5,140,0,0,3125,3126,5,2,0,0,3126,3127, - 3,26,13,0,3127,3128,5,3,0,0,3128,3181,1,0,0,0,3129,3131,5,197,0, - 0,3130,3129,1,0,0,0,3130,3131,1,0,0,0,3131,3132,1,0,0,0,3132,3133, - 7,27,0,0,3133,3181,3,280,140,0,3134,3136,5,197,0,0,3135,3134,1,0, - 0,0,3135,3136,1,0,0,0,3136,3137,1,0,0,0,3137,3138,7,28,0,0,3138, - 3152,7,29,0,0,3139,3140,5,2,0,0,3140,3153,5,3,0,0,3141,3142,5,2, - 0,0,3142,3147,3,268,134,0,3143,3144,5,4,0,0,3144,3146,3,268,134, - 0,3145,3143,1,0,0,0,3146,3149,1,0,0,0,3147,3145,1,0,0,0,3147,3148, - 1,0,0,0,3148,3150,1,0,0,0,3149,3147,1,0,0,0,3150,3151,5,3,0,0,3151, - 3153,1,0,0,0,3152,3139,1,0,0,0,3152,3141,1,0,0,0,3153,3181,1,0,0, - 0,3154,3156,5,197,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0,0,3156,3157, - 1,0,0,0,3157,3158,7,28,0,0,3158,3161,3,280,140,0,3159,3160,5,100, - 0,0,3160,3162,3,388,194,0,3161,3159,1,0,0,0,3161,3162,1,0,0,0,3162, - 3181,1,0,0,0,3163,3165,5,153,0,0,3164,3166,5,197,0,0,3165,3164,1, - 0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3181,5,198,0,0,3168, - 3170,5,153,0,0,3169,3171,5,197,0,0,3170,3169,1,0,0,0,3170,3171,1, - 0,0,0,3171,3172,1,0,0,0,3172,3181,7,30,0,0,3173,3175,5,153,0,0,3174, - 3176,5,197,0,0,3175,3174,1,0,0,0,3175,3176,1,0,0,0,3176,3177,1,0, - 0,0,3177,3178,5,92,0,0,3178,3179,5,123,0,0,3179,3181,3,280,140,0, - 3180,3099,1,0,0,0,3180,3107,1,0,0,0,3180,3122,1,0,0,0,3180,3130, - 1,0,0,0,3180,3135,1,0,0,0,3180,3155,1,0,0,0,3180,3163,1,0,0,0,3180, - 3168,1,0,0,0,3180,3173,1,0,0,0,3181,279,1,0,0,0,3182,3183,6,140, - -1,0,3183,3187,3,284,142,0,3184,3185,7,31,0,0,3185,3187,3,280,140, - 7,3186,3182,1,0,0,0,3186,3184,1,0,0,0,3187,3209,1,0,0,0,3188,3189, - 10,6,0,0,3189,3190,7,32,0,0,3190,3208,3,280,140,7,3191,3192,10,5, - 0,0,3192,3193,7,33,0,0,3193,3208,3,280,140,6,3194,3195,10,4,0,0, - 3195,3196,5,367,0,0,3196,3208,3,280,140,5,3197,3198,10,3,0,0,3198, - 3199,5,370,0,0,3199,3208,3,280,140,4,3200,3201,10,2,0,0,3201,3202, - 5,368,0,0,3202,3208,3,280,140,3,3203,3204,10,1,0,0,3204,3205,3,290, - 145,0,3205,3206,3,280,140,2,3206,3208,1,0,0,0,3207,3188,1,0,0,0, - 3207,3191,1,0,0,0,3207,3194,1,0,0,0,3207,3197,1,0,0,0,3207,3200, - 1,0,0,0,3207,3203,1,0,0,0,3208,3211,1,0,0,0,3209,3207,1,0,0,0,3209, - 3210,1,0,0,0,3210,281,1,0,0,0,3211,3209,1,0,0,0,3212,3213,7,34,0, - 0,3213,283,1,0,0,0,3214,3215,6,142,-1,0,3215,3464,7,35,0,0,3216, - 3217,7,36,0,0,3217,3220,5,2,0,0,3218,3221,3,282,141,0,3219,3221, - 3,388,194,0,3220,3218,1,0,0,0,3220,3219,1,0,0,0,3221,3222,1,0,0, - 0,3222,3223,5,4,0,0,3223,3224,3,280,140,0,3224,3225,5,4,0,0,3225, - 3226,3,280,140,0,3226,3227,5,3,0,0,3227,3464,1,0,0,0,3228,3229,7, - 37,0,0,3229,3232,5,2,0,0,3230,3233,3,282,141,0,3231,3233,3,388,194, - 0,3232,3230,1,0,0,0,3232,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235, - 5,4,0,0,3235,3236,3,280,140,0,3236,3237,5,4,0,0,3237,3238,3,280, - 140,0,3238,3239,5,3,0,0,3239,3464,1,0,0,0,3240,3242,5,35,0,0,3241, - 3243,3,350,175,0,3242,3241,1,0,0,0,3243,3244,1,0,0,0,3244,3242,1, - 0,0,0,3244,3245,1,0,0,0,3245,3248,1,0,0,0,3246,3247,5,97,0,0,3247, - 3249,3,268,134,0,3248,3246,1,0,0,0,3248,3249,1,0,0,0,3249,3250,1, - 0,0,0,3250,3251,5,99,0,0,3251,3464,1,0,0,0,3252,3253,5,35,0,0,3253, - 3255,3,268,134,0,3254,3256,3,350,175,0,3255,3254,1,0,0,0,3256,3257, - 1,0,0,0,3257,3255,1,0,0,0,3257,3258,1,0,0,0,3258,3261,1,0,0,0,3259, - 3260,5,97,0,0,3260,3262,3,268,134,0,3261,3259,1,0,0,0,3261,3262, - 1,0,0,0,3262,3263,1,0,0,0,3263,3264,5,99,0,0,3264,3464,1,0,0,0,3265, - 3266,7,38,0,0,3266,3267,5,2,0,0,3267,3268,3,268,134,0,3268,3269, - 5,20,0,0,3269,3270,3,318,159,0,3270,3271,5,3,0,0,3271,3464,1,0,0, - 0,3272,3273,5,286,0,0,3273,3282,5,2,0,0,3274,3279,3,256,128,0,3275, - 3276,5,4,0,0,3276,3278,3,256,128,0,3277,3275,1,0,0,0,3278,3281,1, - 0,0,0,3279,3277,1,0,0,0,3279,3280,1,0,0,0,3280,3283,1,0,0,0,3281, - 3279,1,0,0,0,3282,3274,1,0,0,0,3282,3283,1,0,0,0,3283,3284,1,0,0, - 0,3284,3464,5,3,0,0,3285,3286,5,116,0,0,3286,3287,5,2,0,0,3287,3290, - 3,268,134,0,3288,3289,5,138,0,0,3289,3291,5,199,0,0,3290,3288,1, - 0,0,0,3290,3291,1,0,0,0,3291,3292,1,0,0,0,3292,3293,5,3,0,0,3293, - 3464,1,0,0,0,3294,3295,5,17,0,0,3295,3296,5,2,0,0,3296,3299,3,268, - 134,0,3297,3298,5,138,0,0,3298,3300,5,199,0,0,3299,3297,1,0,0,0, - 3299,3300,1,0,0,0,3300,3301,1,0,0,0,3301,3302,5,3,0,0,3302,3464, - 1,0,0,0,3303,3304,5,157,0,0,3304,3305,5,2,0,0,3305,3308,3,268,134, - 0,3306,3307,5,138,0,0,3307,3309,5,199,0,0,3308,3306,1,0,0,0,3308, - 3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,3,0,0,3311,3464,1,0,0, - 0,3312,3313,5,225,0,0,3313,3314,5,2,0,0,3314,3315,3,280,140,0,3315, - 3316,5,140,0,0,3316,3317,3,280,140,0,3317,3318,5,3,0,0,3318,3464, - 1,0,0,0,3319,3464,3,288,144,0,3320,3464,5,363,0,0,3321,3322,3,370, - 185,0,3322,3323,5,5,0,0,3323,3324,5,363,0,0,3324,3464,1,0,0,0,3325, - 3326,5,2,0,0,3326,3329,3,256,128,0,3327,3328,5,4,0,0,3328,3330,3, - 256,128,0,3329,3327,1,0,0,0,3330,3331,1,0,0,0,3331,3329,1,0,0,0, - 3331,3332,1,0,0,0,3332,3333,1,0,0,0,3333,3334,5,3,0,0,3334,3464, - 1,0,0,0,3335,3336,5,2,0,0,3336,3337,3,26,13,0,3337,3338,5,3,0,0, - 3338,3464,1,0,0,0,3339,3340,5,136,0,0,3340,3341,5,2,0,0,3341,3342, - 3,268,134,0,3342,3343,5,3,0,0,3343,3464,1,0,0,0,3344,3345,3,366, - 183,0,3345,3357,5,2,0,0,3346,3348,3,196,98,0,3347,3346,1,0,0,0,3347, - 3348,1,0,0,0,3348,3349,1,0,0,0,3349,3354,3,272,136,0,3350,3351,5, - 4,0,0,3351,3353,3,272,136,0,3352,3350,1,0,0,0,3353,3356,1,0,0,0, - 3354,3352,1,0,0,0,3354,3355,1,0,0,0,3355,3358,1,0,0,0,3356,3354, - 1,0,0,0,3357,3347,1,0,0,0,3357,3358,1,0,0,0,3358,3359,1,0,0,0,3359, - 3366,5,3,0,0,3360,3361,5,114,0,0,3361,3362,5,2,0,0,3362,3363,5,344, - 0,0,3363,3364,3,276,138,0,3364,3365,5,3,0,0,3365,3367,1,0,0,0,3366, - 3360,1,0,0,0,3366,3367,1,0,0,0,3367,3370,1,0,0,0,3368,3369,7,39, - 0,0,3369,3371,5,199,0,0,3370,3368,1,0,0,0,3370,3371,1,0,0,0,3371, - 3374,1,0,0,0,3372,3373,5,213,0,0,3373,3375,3,358,179,0,3374,3372, - 1,0,0,0,3374,3375,1,0,0,0,3375,3464,1,0,0,0,3376,3377,3,376,188, - 0,3377,3378,5,372,0,0,3378,3379,3,268,134,0,3379,3464,1,0,0,0,3380, - 3381,5,2,0,0,3381,3384,3,376,188,0,3382,3383,5,4,0,0,3383,3385,3, - 376,188,0,3384,3382,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, - 3386,3387,1,0,0,0,3387,3388,1,0,0,0,3388,3389,5,3,0,0,3389,3390, - 5,372,0,0,3390,3391,3,268,134,0,3391,3464,1,0,0,0,3392,3464,3,376, - 188,0,3393,3394,5,2,0,0,3394,3395,3,268,134,0,3395,3396,5,3,0,0, - 3396,3464,1,0,0,0,3397,3398,5,110,0,0,3398,3399,5,2,0,0,3399,3400, - 3,376,188,0,3400,3401,5,123,0,0,3401,3402,3,280,140,0,3402,3403, - 5,3,0,0,3403,3464,1,0,0,0,3404,3405,7,40,0,0,3405,3406,5,2,0,0,3406, - 3407,3,280,140,0,3407,3408,7,41,0,0,3408,3411,3,280,140,0,3409,3410, - 7,42,0,0,3410,3412,3,280,140,0,3411,3409,1,0,0,0,3411,3412,1,0,0, - 0,3412,3413,1,0,0,0,3413,3414,5,3,0,0,3414,3464,1,0,0,0,3415,3416, - 5,315,0,0,3416,3418,5,2,0,0,3417,3419,7,43,0,0,3418,3417,1,0,0,0, - 3418,3419,1,0,0,0,3419,3421,1,0,0,0,3420,3422,3,280,140,0,3421,3420, - 1,0,0,0,3421,3422,1,0,0,0,3422,3423,1,0,0,0,3423,3424,5,123,0,0, - 3424,3425,3,280,140,0,3425,3426,5,3,0,0,3426,3464,1,0,0,0,3427,3428, - 5,215,0,0,3428,3429,5,2,0,0,3429,3430,3,280,140,0,3430,3431,5,224, - 0,0,3431,3432,3,280,140,0,3432,3433,5,123,0,0,3433,3436,3,280,140, - 0,3434,3435,5,119,0,0,3435,3437,3,280,140,0,3436,3434,1,0,0,0,3436, - 3437,1,0,0,0,3437,3438,1,0,0,0,3438,3439,5,3,0,0,3439,3464,1,0,0, - 0,3440,3441,7,44,0,0,3441,3442,5,2,0,0,3442,3443,3,280,140,0,3443, - 3444,5,3,0,0,3444,3445,5,347,0,0,3445,3446,5,130,0,0,3446,3447,5, - 2,0,0,3447,3448,5,209,0,0,3448,3449,5,31,0,0,3449,3450,3,108,54, - 0,3450,3457,5,3,0,0,3451,3452,5,114,0,0,3452,3453,5,2,0,0,3453,3454, - 5,344,0,0,3454,3455,3,276,138,0,3455,3456,5,3,0,0,3456,3458,1,0, - 0,0,3457,3451,1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3460, - 5,213,0,0,3460,3462,3,358,179,0,3461,3459,1,0,0,0,3461,3462,1,0, - 0,0,3462,3464,1,0,0,0,3463,3214,1,0,0,0,3463,3216,1,0,0,0,3463,3228, - 1,0,0,0,3463,3240,1,0,0,0,3463,3252,1,0,0,0,3463,3265,1,0,0,0,3463, - 3272,1,0,0,0,3463,3285,1,0,0,0,3463,3294,1,0,0,0,3463,3303,1,0,0, - 0,3463,3312,1,0,0,0,3463,3319,1,0,0,0,3463,3320,1,0,0,0,3463,3321, - 1,0,0,0,3463,3325,1,0,0,0,3463,3335,1,0,0,0,3463,3339,1,0,0,0,3463, - 3344,1,0,0,0,3463,3376,1,0,0,0,3463,3380,1,0,0,0,3463,3392,1,0,0, - 0,3463,3393,1,0,0,0,3463,3397,1,0,0,0,3463,3404,1,0,0,0,3463,3415, - 1,0,0,0,3463,3427,1,0,0,0,3463,3440,1,0,0,0,3464,3475,1,0,0,0,3465, - 3466,10,9,0,0,3466,3467,5,6,0,0,3467,3468,3,280,140,0,3468,3469, - 5,7,0,0,3469,3474,1,0,0,0,3470,3471,10,7,0,0,3471,3472,5,5,0,0,3472, - 3474,3,376,188,0,3473,3465,1,0,0,0,3473,3470,1,0,0,0,3474,3477,1, - 0,0,0,3475,3473,1,0,0,0,3475,3476,1,0,0,0,3476,285,1,0,0,0,3477, - 3475,1,0,0,0,3478,3486,5,71,0,0,3479,3486,5,303,0,0,3480,3486,5, - 304,0,0,3481,3486,5,305,0,0,3482,3486,5,149,0,0,3483,3486,5,133, - 0,0,3484,3486,3,376,188,0,3485,3478,1,0,0,0,3485,3479,1,0,0,0,3485, - 3480,1,0,0,0,3485,3481,1,0,0,0,3485,3482,1,0,0,0,3485,3483,1,0,0, - 0,3485,3484,1,0,0,0,3486,287,1,0,0,0,3487,3503,5,198,0,0,3488,3503, - 5,376,0,0,3489,3490,5,371,0,0,3490,3503,3,376,188,0,3491,3503,3, - 298,149,0,3492,3493,3,286,143,0,3493,3494,3,388,194,0,3494,3503, - 1,0,0,0,3495,3503,3,384,192,0,3496,3503,3,296,148,0,3497,3499,3, - 388,194,0,3498,3497,1,0,0,0,3499,3500,1,0,0,0,3500,3498,1,0,0,0, - 3500,3501,1,0,0,0,3501,3503,1,0,0,0,3502,3487,1,0,0,0,3502,3488, - 1,0,0,0,3502,3489,1,0,0,0,3502,3491,1,0,0,0,3502,3492,1,0,0,0,3502, - 3495,1,0,0,0,3502,3496,1,0,0,0,3502,3498,1,0,0,0,3503,289,1,0,0, - 0,3504,3505,7,45,0,0,3505,291,1,0,0,0,3506,3507,7,46,0,0,3507,293, - 1,0,0,0,3508,3509,7,47,0,0,3509,295,1,0,0,0,3510,3511,7,48,0,0,3511, - 297,1,0,0,0,3512,3515,5,149,0,0,3513,3516,3,300,150,0,3514,3516, - 3,304,152,0,3515,3513,1,0,0,0,3515,3514,1,0,0,0,3516,299,1,0,0,0, - 3517,3519,3,302,151,0,3518,3520,3,306,153,0,3519,3518,1,0,0,0,3519, - 3520,1,0,0,0,3520,301,1,0,0,0,3521,3522,3,308,154,0,3522,3523,3, - 310,155,0,3523,3525,1,0,0,0,3524,3521,1,0,0,0,3525,3526,1,0,0,0, - 3526,3524,1,0,0,0,3526,3527,1,0,0,0,3527,303,1,0,0,0,3528,3531,3, - 306,153,0,3529,3532,3,302,151,0,3530,3532,3,306,153,0,3531,3529, - 1,0,0,0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,305,1,0,0,0,3533, - 3534,3,308,154,0,3534,3535,3,312,156,0,3535,3536,5,309,0,0,3536, - 3537,3,312,156,0,3537,307,1,0,0,0,3538,3540,7,49,0,0,3539,3538,1, - 0,0,0,3539,3540,1,0,0,0,3540,3544,1,0,0,0,3541,3545,5,382,0,0,3542, - 3545,5,384,0,0,3543,3545,3,388,194,0,3544,3541,1,0,0,0,3544,3542, - 1,0,0,0,3544,3543,1,0,0,0,3545,309,1,0,0,0,3546,3547,7,50,0,0,3547, - 311,1,0,0,0,3548,3549,7,51,0,0,3549,313,1,0,0,0,3550,3554,5,116, - 0,0,3551,3552,5,9,0,0,3552,3554,3,372,186,0,3553,3550,1,0,0,0,3553, - 3551,1,0,0,0,3554,315,1,0,0,0,3555,3586,5,27,0,0,3556,3586,5,308, - 0,0,3557,3586,5,32,0,0,3558,3586,5,276,0,0,3559,3586,5,272,0,0,3560, - 3586,5,150,0,0,3561,3586,5,151,0,0,3562,3586,5,25,0,0,3563,3586, - 5,174,0,0,3564,3586,5,117,0,0,3565,3586,5,234,0,0,3566,3586,5,95, - 0,0,3567,3586,5,71,0,0,3568,3586,5,303,0,0,3569,3586,5,305,0,0,3570, - 3586,5,304,0,0,3571,3586,5,285,0,0,3572,3586,5,41,0,0,3573,3586, - 5,40,0,0,3574,3586,5,334,0,0,3575,3586,5,26,0,0,3576,3586,5,80,0, - 0,3577,3586,5,79,0,0,3578,3586,5,200,0,0,3579,3586,5,340,0,0,3580, - 3586,5,149,0,0,3581,3586,5,19,0,0,3582,3586,5,286,0,0,3583,3586, - 5,177,0,0,3584,3586,3,376,188,0,3585,3555,1,0,0,0,3585,3556,1,0, - 0,0,3585,3557,1,0,0,0,3585,3558,1,0,0,0,3585,3559,1,0,0,0,3585,3560, - 1,0,0,0,3585,3561,1,0,0,0,3585,3562,1,0,0,0,3585,3563,1,0,0,0,3585, - 3564,1,0,0,0,3585,3565,1,0,0,0,3585,3566,1,0,0,0,3585,3567,1,0,0, - 0,3585,3568,1,0,0,0,3585,3569,1,0,0,0,3585,3570,1,0,0,0,3585,3571, - 1,0,0,0,3585,3572,1,0,0,0,3585,3573,1,0,0,0,3585,3574,1,0,0,0,3585, - 3575,1,0,0,0,3585,3576,1,0,0,0,3585,3577,1,0,0,0,3585,3578,1,0,0, - 0,3585,3579,1,0,0,0,3585,3580,1,0,0,0,3585,3581,1,0,0,0,3585,3582, - 1,0,0,0,3585,3583,1,0,0,0,3585,3584,1,0,0,0,3586,317,1,0,0,0,3587, - 3588,5,19,0,0,3588,3589,5,356,0,0,3589,3590,3,318,159,0,3590,3591, - 5,358,0,0,3591,3634,1,0,0,0,3592,3593,5,177,0,0,3593,3594,5,356, - 0,0,3594,3595,3,318,159,0,3595,3596,5,4,0,0,3596,3597,3,318,159, - 0,3597,3598,5,358,0,0,3598,3634,1,0,0,0,3599,3606,5,286,0,0,3600, - 3602,5,356,0,0,3601,3603,3,346,173,0,3602,3601,1,0,0,0,3602,3603, - 1,0,0,0,3603,3604,1,0,0,0,3604,3607,5,358,0,0,3605,3607,5,354,0, - 0,3606,3600,1,0,0,0,3606,3605,1,0,0,0,3607,3634,1,0,0,0,3608,3609, - 5,149,0,0,3609,3612,7,52,0,0,3610,3611,5,309,0,0,3611,3613,5,186, - 0,0,3612,3610,1,0,0,0,3612,3613,1,0,0,0,3613,3634,1,0,0,0,3614,3615, - 5,149,0,0,3615,3618,7,53,0,0,3616,3617,5,309,0,0,3617,3619,7,54, - 0,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3634,1,0,0,0,3620,3631, - 3,316,158,0,3621,3622,5,2,0,0,3622,3627,5,382,0,0,3623,3624,5,4, - 0,0,3624,3626,5,382,0,0,3625,3623,1,0,0,0,3626,3629,1,0,0,0,3627, - 3625,1,0,0,0,3627,3628,1,0,0,0,3628,3630,1,0,0,0,3629,3627,1,0,0, - 0,3630,3632,5,3,0,0,3631,3621,1,0,0,0,3631,3632,1,0,0,0,3632,3634, - 1,0,0,0,3633,3587,1,0,0,0,3633,3592,1,0,0,0,3633,3599,1,0,0,0,3633, - 3608,1,0,0,0,3633,3614,1,0,0,0,3633,3620,1,0,0,0,3634,319,1,0,0, - 0,3635,3640,3,322,161,0,3636,3637,5,4,0,0,3637,3639,3,322,161,0, - 3638,3636,1,0,0,0,3639,3642,1,0,0,0,3640,3638,1,0,0,0,3640,3641, - 1,0,0,0,3641,321,1,0,0,0,3642,3640,1,0,0,0,3643,3644,3,96,48,0,3644, - 3648,3,318,159,0,3645,3647,3,328,164,0,3646,3645,1,0,0,0,3647,3650, - 1,0,0,0,3648,3646,1,0,0,0,3648,3649,1,0,0,0,3649,323,1,0,0,0,3650, - 3648,1,0,0,0,3651,3656,3,326,163,0,3652,3653,5,4,0,0,3653,3655,3, - 326,163,0,3654,3652,1,0,0,0,3655,3658,1,0,0,0,3656,3654,1,0,0,0, - 3656,3657,1,0,0,0,3657,325,1,0,0,0,3658,3656,1,0,0,0,3659,3660,3, - 92,46,0,3660,3664,3,318,159,0,3661,3663,3,328,164,0,3662,3661,1, - 0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3664,3665,1,0,0,0,3665, - 327,1,0,0,0,3666,3664,1,0,0,0,3667,3668,5,197,0,0,3668,3673,5,198, - 0,0,3669,3673,3,330,165,0,3670,3673,3,24,12,0,3671,3673,3,314,157, - 0,3672,3667,1,0,0,0,3672,3669,1,0,0,0,3672,3670,1,0,0,0,3672,3671, - 1,0,0,0,3673,329,1,0,0,0,3674,3675,5,82,0,0,3675,3676,3,268,134, - 0,3676,331,1,0,0,0,3677,3678,7,55,0,0,3678,3679,3,268,134,0,3679, - 333,1,0,0,0,3680,3685,3,336,168,0,3681,3682,5,4,0,0,3682,3684,3, - 336,168,0,3683,3681,1,0,0,0,3684,3687,1,0,0,0,3685,3683,1,0,0,0, - 3685,3686,1,0,0,0,3686,335,1,0,0,0,3687,3685,1,0,0,0,3688,3689,3, - 372,186,0,3689,3692,3,318,159,0,3690,3691,5,197,0,0,3691,3693,5, - 198,0,0,3692,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694, - 3696,3,24,12,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,337,1,0, - 0,0,3697,3702,3,340,170,0,3698,3699,5,4,0,0,3699,3701,3,340,170, - 0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, - 1,0,0,0,3703,339,1,0,0,0,3704,3702,1,0,0,0,3705,3706,3,96,48,0,3706, - 3710,3,318,159,0,3707,3709,3,342,171,0,3708,3707,1,0,0,0,3709,3712, - 1,0,0,0,3710,3708,1,0,0,0,3710,3711,1,0,0,0,3711,341,1,0,0,0,3712, - 3710,1,0,0,0,3713,3714,5,197,0,0,3714,3719,5,198,0,0,3715,3719,3, - 330,165,0,3716,3719,3,344,172,0,3717,3719,3,24,12,0,3718,3713,1, - 0,0,0,3718,3715,1,0,0,0,3718,3716,1,0,0,0,3718,3717,1,0,0,0,3719, - 343,1,0,0,0,3720,3721,5,127,0,0,3721,3722,5,12,0,0,3722,3723,5,20, - 0,0,3723,3724,5,2,0,0,3724,3725,3,268,134,0,3725,3726,5,3,0,0,3726, - 345,1,0,0,0,3727,3732,3,348,174,0,3728,3729,5,4,0,0,3729,3731,3, - 348,174,0,3730,3728,1,0,0,0,3731,3734,1,0,0,0,3732,3730,1,0,0,0, - 3732,3733,1,0,0,0,3733,347,1,0,0,0,3734,3732,1,0,0,0,3735,3737,3, - 376,188,0,3736,3738,5,371,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0, - 0,3738,3739,1,0,0,0,3739,3742,3,318,159,0,3740,3741,5,197,0,0,3741, - 3743,5,198,0,0,3742,3740,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0, - 0,0,3744,3746,3,24,12,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746, - 349,1,0,0,0,3747,3748,5,343,0,0,3748,3749,3,268,134,0,3749,3750, - 5,300,0,0,3750,3751,3,268,134,0,3751,351,1,0,0,0,3752,3753,5,345, - 0,0,3753,3758,3,356,178,0,3754,3755,5,4,0,0,3755,3757,3,356,178, - 0,3756,3754,1,0,0,0,3757,3760,1,0,0,0,3758,3756,1,0,0,0,3758,3759, - 1,0,0,0,3759,353,1,0,0,0,3760,3758,1,0,0,0,3761,3762,5,351,0,0,3762, - 3763,5,31,0,0,3763,3764,3,94,47,0,3764,355,1,0,0,0,3765,3766,3,372, - 186,0,3766,3767,5,20,0,0,3767,3768,3,358,179,0,3768,357,1,0,0,0, - 3769,3816,3,372,186,0,3770,3771,5,2,0,0,3771,3772,3,372,186,0,3772, - 3773,5,3,0,0,3773,3816,1,0,0,0,3774,3809,5,2,0,0,3775,3776,5,44, - 0,0,3776,3777,5,31,0,0,3777,3782,3,268,134,0,3778,3779,5,4,0,0,3779, - 3781,3,268,134,0,3780,3778,1,0,0,0,3781,3784,1,0,0,0,3782,3780,1, - 0,0,0,3782,3783,1,0,0,0,3783,3810,1,0,0,0,3784,3782,1,0,0,0,3785, - 3786,7,24,0,0,3786,3787,5,31,0,0,3787,3792,3,268,134,0,3788,3789, - 5,4,0,0,3789,3791,3,268,134,0,3790,3788,1,0,0,0,3791,3794,1,0,0, - 0,3792,3790,1,0,0,0,3792,3793,1,0,0,0,3793,3796,1,0,0,0,3794,3792, - 1,0,0,0,3795,3785,1,0,0,0,3795,3796,1,0,0,0,3796,3807,1,0,0,0,3797, - 3798,7,25,0,0,3798,3799,5,31,0,0,3799,3804,3,108,54,0,3800,3801, - 5,4,0,0,3801,3803,3,108,54,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0, - 3804,3802,1,0,0,0,3804,3805,1,0,0,0,3805,3808,1,0,0,0,3806,3804, - 1,0,0,0,3807,3797,1,0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809, - 3775,1,0,0,0,3809,3795,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,360, - 180,0,3812,3811,1,0,0,0,3812,3813,1,0,0,0,3813,3814,1,0,0,0,3814, - 3816,5,3,0,0,3815,3769,1,0,0,0,3815,3770,1,0,0,0,3815,3774,1,0,0, - 0,3816,359,1,0,0,0,3817,3818,5,233,0,0,3818,3834,3,362,181,0,3819, - 3820,5,258,0,0,3820,3834,3,362,181,0,3821,3822,5,233,0,0,3822,3823, - 5,24,0,0,3823,3824,3,362,181,0,3824,3825,5,14,0,0,3825,3826,3,362, - 181,0,3826,3834,1,0,0,0,3827,3828,5,258,0,0,3828,3829,5,24,0,0,3829, - 3830,3,362,181,0,3830,3831,5,14,0,0,3831,3832,3,362,181,0,3832,3834, - 1,0,0,0,3833,3817,1,0,0,0,3833,3819,1,0,0,0,3833,3821,1,0,0,0,3833, - 3827,1,0,0,0,3834,361,1,0,0,0,3835,3836,5,321,0,0,3836,3843,7,56, - 0,0,3837,3838,5,62,0,0,3838,3843,5,257,0,0,3839,3840,3,268,134,0, - 3840,3841,7,56,0,0,3841,3843,1,0,0,0,3842,3835,1,0,0,0,3842,3837, - 1,0,0,0,3842,3839,1,0,0,0,3843,363,1,0,0,0,3844,3849,3,370,185,0, - 3845,3846,5,4,0,0,3846,3848,3,370,185,0,3847,3845,1,0,0,0,3848,3851, - 1,0,0,0,3849,3847,1,0,0,0,3849,3850,1,0,0,0,3850,365,1,0,0,0,3851, - 3849,1,0,0,0,3852,3853,5,136,0,0,3853,3854,5,2,0,0,3854,3855,3,268, - 134,0,3855,3856,5,3,0,0,3856,3862,1,0,0,0,3857,3862,3,370,185,0, - 3858,3862,5,114,0,0,3859,3862,5,161,0,0,3860,3862,5,250,0,0,3861, - 3852,1,0,0,0,3861,3857,1,0,0,0,3861,3858,1,0,0,0,3861,3859,1,0,0, - 0,3861,3860,1,0,0,0,3862,367,1,0,0,0,3863,3864,3,370,185,0,3864, - 369,1,0,0,0,3865,3870,3,376,188,0,3866,3867,5,5,0,0,3867,3869,3, - 376,188,0,3868,3866,1,0,0,0,3869,3872,1,0,0,0,3870,3868,1,0,0,0, - 3870,3871,1,0,0,0,3871,371,1,0,0,0,3872,3870,1,0,0,0,3873,3874,3, - 376,188,0,3874,3875,3,374,187,0,3875,373,1,0,0,0,3876,3877,5,362, - 0,0,3877,3879,3,376,188,0,3878,3876,1,0,0,0,3879,3880,1,0,0,0,3880, - 3878,1,0,0,0,3880,3881,1,0,0,0,3881,3884,1,0,0,0,3882,3884,1,0,0, - 0,3883,3878,1,0,0,0,3883,3882,1,0,0,0,3884,375,1,0,0,0,3885,3888, - 3,378,189,0,3886,3888,3,396,198,0,3887,3885,1,0,0,0,3887,3886,1, - 0,0,0,3888,377,1,0,0,0,3889,3894,5,388,0,0,3890,3894,3,380,190,0, - 3891,3894,3,394,197,0,3892,3894,3,398,199,0,3893,3889,1,0,0,0,3893, - 3890,1,0,0,0,3893,3891,1,0,0,0,3893,3892,1,0,0,0,3894,379,1,0,0, - 0,3895,3896,7,57,0,0,3896,381,1,0,0,0,3897,3898,5,389,0,0,3898,383, - 1,0,0,0,3899,3901,5,362,0,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, - 3901,3902,1,0,0,0,3902,3940,5,383,0,0,3903,3905,5,362,0,0,3904,3903, - 1,0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3940,5,384,0,0, - 3907,3909,5,362,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910, - 1,0,0,0,3910,3940,7,58,0,0,3911,3913,5,362,0,0,3912,3911,1,0,0,0, - 3912,3913,1,0,0,0,3913,3914,1,0,0,0,3914,3940,5,382,0,0,3915,3917, - 5,362,0,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0, - 3918,3940,5,379,0,0,3919,3921,5,362,0,0,3920,3919,1,0,0,0,3920,3921, - 1,0,0,0,3921,3922,1,0,0,0,3922,3940,5,380,0,0,3923,3925,5,362,0, - 0,3924,3923,1,0,0,0,3924,3925,1,0,0,0,3925,3926,1,0,0,0,3926,3940, - 5,381,0,0,3927,3929,5,362,0,0,3928,3927,1,0,0,0,3928,3929,1,0,0, - 0,3929,3930,1,0,0,0,3930,3940,5,386,0,0,3931,3933,5,362,0,0,3932, - 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3940,5,385, - 0,0,3935,3937,5,362,0,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0,3937, - 3938,1,0,0,0,3938,3940,5,387,0,0,3939,3900,1,0,0,0,3939,3904,1,0, - 0,0,3939,3908,1,0,0,0,3939,3912,1,0,0,0,3939,3916,1,0,0,0,3939,3920, - 1,0,0,0,3939,3924,1,0,0,0,3939,3928,1,0,0,0,3939,3932,1,0,0,0,3939, - 3936,1,0,0,0,3940,385,1,0,0,0,3941,3942,5,319,0,0,3942,3953,3,318, - 159,0,3943,3953,3,24,12,0,3944,3953,3,314,157,0,3945,3946,7,59,0, - 0,3946,3947,5,197,0,0,3947,3953,5,198,0,0,3948,3949,5,269,0,0,3949, - 3953,3,330,165,0,3950,3951,5,96,0,0,3951,3953,5,82,0,0,3952,3941, - 1,0,0,0,3952,3943,1,0,0,0,3952,3944,1,0,0,0,3952,3945,1,0,0,0,3952, - 3948,1,0,0,0,3952,3950,1,0,0,0,3953,387,1,0,0,0,3954,3955,7,60,0, - 0,3955,389,1,0,0,0,3956,3959,3,388,194,0,3957,3959,5,198,0,0,3958, - 3956,1,0,0,0,3958,3957,1,0,0,0,3959,391,1,0,0,0,3960,3963,5,382, - 0,0,3961,3963,3,388,194,0,3962,3960,1,0,0,0,3962,3961,1,0,0,0,3963, - 393,1,0,0,0,3964,3965,7,61,0,0,3965,395,1,0,0,0,3966,3967,7,62,0, - 0,3967,397,1,0,0,0,3968,3969,7,63,0,0,3969,399,1,0,0,0,517,403,410, - 414,419,426,431,439,441,460,464,470,473,476,483,486,490,493,498, - 510,512,520,523,527,530,536,547,553,558,591,601,612,623,634,639, - 648,652,658,662,667,673,685,693,699,710,714,719,734,738,745,749, - 755,784,788,793,800,806,809,812,816,820,828,830,839,842,851,856, - 862,869,872,876,887,890,896,900,915,917,925,929,935,938,942,945, - 951,956,960,967,970,973,980,985,994,1002,1008,1011,1014,1020,1024, - 1029,1032,1036,1038,1046,1054,1057,1064,1067,1070,1079,1084,1090, - 1095,1098,1102,1105,1109,1137,1140,1148,1154,1157,1160,1165,1173, - 1178,1184,1190,1193,1200,1207,1215,1232,1259,1262,1268,1277,1286, - 1292,1297,1302,1309,1314,1319,1326,1334,1337,1341,1353,1357,1364, - 1480,1488,1496,1505,1515,1519,1522,1526,1532,1544,1556,1561,1570, - 1578,1583,1585,1593,1598,1602,1605,1613,1618,1627,1632,1635,1640, - 1644,1649,1651,1655,1664,1672,1678,1689,1696,1705,1710,1713,1736, - 1738,1750,1757,1760,1767,1771,1777,1785,1792,1795,1803,1814,1825, - 1833,1839,1851,1858,1865,1877,1885,1891,1897,1900,1916,1923,1934, - 1943,1946,1955,1958,1967,1970,1979,1982,1985,1990,1992,1996,2007, - 2013,2019,2022,2024,2036,2040,2043,2047,2053,2057,2065,2069,2072, - 2075,2078,2082,2086,2091,2095,2098,2101,2104,2108,2113,2117,2120, - 2123,2126,2128,2134,2141,2146,2149,2152,2156,2166,2170,2172,2175, - 2179,2185,2189,2200,2210,2214,2226,2238,2253,2258,2264,2271,2287, - 2292,2305,2310,2318,2324,2328,2331,2336,2343,2349,2358,2368,2383, - 2388,2390,2395,2404,2417,2422,2426,2433,2438,2442,2445,2448,2462, - 2475,2480,2484,2487,2491,2497,2500,2507,2519,2530,2543,2554,2559, - 2567,2572,2586,2595,2598,2603,2610,2613,2619,2625,2628,2633,2638, - 2642,2648,2652,2655,2660,2663,2668,2672,2675,2678,2684,2689,2696, - 2699,2717,2719,2722,2733,2742,2749,2757,2764,2769,2772,2775,2783, - 2791,2797,2805,2813,2820,2827,2829,2842,2848,2850,2860,2866,2868, - 2876,2880,2889,2892,2898,2902,2904,2913,2925,2927,2934,2941,2947, - 2953,2955,2962,2970,2978,2984,2989,2996,3002,3005,3009,3011,3018, - 3027,3034,3044,3049,3053,3063,3070,3083,3085,3093,3095,3099,3107, - 3116,3122,3130,3135,3147,3152,3155,3161,3165,3170,3175,3180,3186, - 3207,3209,3220,3232,3244,3248,3257,3261,3279,3282,3290,3299,3308, - 3331,3347,3354,3357,3366,3370,3374,3386,3411,3418,3421,3436,3457, - 3461,3463,3473,3475,3485,3500,3502,3515,3519,3526,3531,3539,3544, - 3553,3585,3602,3606,3612,3618,3627,3631,3633,3640,3648,3656,3664, - 3672,3685,3692,3695,3702,3710,3718,3732,3737,3742,3745,3758,3782, - 3792,3795,3804,3807,3809,3812,3815,3833,3842,3849,3861,3870,3880, - 3883,3887,3893,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936, - 3939,3952,3958,3962 + 1807,1,0,0,0,1805,1803,1,0,0,0,1806,1796,1,0,0,0,1806,1807,1,0,0, + 0,1807,1818,1,0,0,0,1808,1809,5,44,0,0,1809,1810,5,31,0,0,1810,1815, + 3,220,110,0,1811,1812,5,4,0,0,1812,1814,3,220,110,0,1813,1811,1, + 0,0,0,1814,1817,1,0,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816, + 1819,1,0,0,0,1817,1815,1,0,0,0,1818,1808,1,0,0,0,1818,1819,1,0,0, + 0,1819,1830,1,0,0,0,1820,1821,5,93,0,0,1821,1822,5,31,0,0,1822,1827, + 3,220,110,0,1823,1824,5,4,0,0,1824,1826,3,220,110,0,1825,1823,1, + 0,0,0,1826,1829,1,0,0,0,1827,1825,1,0,0,0,1827,1828,1,0,0,0,1828, + 1831,1,0,0,0,1829,1827,1,0,0,0,1830,1820,1,0,0,0,1830,1831,1,0,0, + 0,1831,1842,1,0,0,0,1832,1833,5,278,0,0,1833,1834,5,31,0,0,1834, + 1839,3,88,44,0,1835,1836,5,4,0,0,1836,1838,3,88,44,0,1837,1835,1, + 0,0,0,1838,1841,1,0,0,0,1839,1837,1,0,0,0,1839,1840,1,0,0,0,1840, + 1843,1,0,0,0,1841,1839,1,0,0,0,1842,1832,1,0,0,0,1842,1843,1,0,0, + 0,1843,1845,1,0,0,0,1844,1846,3,298,149,0,1845,1844,1,0,0,0,1845, + 1846,1,0,0,0,1846,1852,1,0,0,0,1847,1850,5,165,0,0,1848,1851,5,10, + 0,0,1849,1851,3,220,110,0,1850,1848,1,0,0,0,1850,1849,1,0,0,0,1851, + 1853,1,0,0,0,1852,1847,1,0,0,0,1852,1853,1,0,0,0,1853,1856,1,0,0, + 0,1854,1855,5,202,0,0,1855,1857,3,220,110,0,1856,1854,1,0,0,0,1856, + 1857,1,0,0,0,1857,83,1,0,0,0,1858,1859,6,42,-1,0,1859,1860,3,86, + 43,0,1860,1881,1,0,0,0,1861,1862,10,3,0,0,1862,1864,7,23,0,0,1863, + 1865,3,154,77,0,1864,1863,1,0,0,0,1864,1865,1,0,0,0,1865,1866,1, + 0,0,0,1866,1880,3,84,42,4,1867,1868,10,2,0,0,1868,1870,5,148,0,0, + 1869,1871,3,154,77,0,1870,1869,1,0,0,0,1870,1871,1,0,0,0,1871,1872, + 1,0,0,0,1872,1880,3,84,42,3,1873,1874,10,1,0,0,1874,1876,7,24,0, + 0,1875,1877,3,154,77,0,1876,1875,1,0,0,0,1876,1877,1,0,0,0,1877, + 1878,1,0,0,0,1878,1880,3,84,42,2,1879,1861,1,0,0,0,1879,1867,1,0, + 0,0,1879,1873,1,0,0,0,1880,1883,1,0,0,0,1881,1879,1,0,0,0,1881,1882, + 1,0,0,0,1882,85,1,0,0,0,1883,1881,1,0,0,0,1884,1909,3,92,46,0,1885, + 1887,3,120,60,0,1886,1888,3,90,45,0,1887,1886,1,0,0,0,1888,1889, + 1,0,0,0,1889,1887,1,0,0,0,1889,1890,1,0,0,0,1890,1909,1,0,0,0,1891, + 1892,5,293,0,0,1892,1909,3,68,34,0,1893,1894,5,333,0,0,1894,1899, + 3,220,110,0,1895,1896,5,4,0,0,1896,1898,3,220,110,0,1897,1895,1, + 0,0,0,1898,1901,1,0,0,0,1899,1897,1,0,0,0,1899,1900,1,0,0,0,1900, + 1902,1,0,0,0,1901,1899,1,0,0,0,1902,1903,3,192,96,0,1903,1909,1, + 0,0,0,1904,1905,5,2,0,0,1905,1906,3,12,6,0,1906,1907,5,3,0,0,1907, + 1909,1,0,0,0,1908,1884,1,0,0,0,1908,1885,1,0,0,0,1908,1891,1,0,0, + 0,1908,1893,1,0,0,0,1908,1904,1,0,0,0,1909,87,1,0,0,0,1910,1913, + 3,74,37,0,1911,1913,3,220,110,0,1912,1910,1,0,0,0,1912,1911,1,0, + 0,0,1913,1915,1,0,0,0,1914,1916,7,25,0,0,1915,1914,1,0,0,0,1915, + 1916,1,0,0,0,1916,1919,1,0,0,0,1917,1918,5,199,0,0,1918,1920,7,26, + 0,0,1919,1917,1,0,0,0,1919,1920,1,0,0,0,1920,89,1,0,0,0,1921,1923, + 3,94,47,0,1922,1924,3,112,56,0,1923,1922,1,0,0,0,1923,1924,1,0,0, + 0,1924,1925,1,0,0,0,1925,1926,3,82,41,0,1926,1949,1,0,0,0,1927,1931, + 3,96,48,0,1928,1930,3,152,76,0,1929,1928,1,0,0,0,1930,1933,1,0,0, + 0,1931,1929,1,0,0,0,1931,1932,1,0,0,0,1932,1935,1,0,0,0,1933,1931, + 1,0,0,0,1934,1936,3,112,56,0,1935,1934,1,0,0,0,1935,1936,1,0,0,0, + 1936,1938,1,0,0,0,1937,1939,3,124,62,0,1938,1937,1,0,0,0,1938,1939, + 1,0,0,0,1939,1941,1,0,0,0,1940,1942,3,114,57,0,1941,1940,1,0,0,0, + 1941,1942,1,0,0,0,1942,1944,1,0,0,0,1943,1945,3,298,149,0,1944,1943, + 1,0,0,0,1944,1945,1,0,0,0,1945,1946,1,0,0,0,1946,1947,3,82,41,0, + 1947,1949,1,0,0,0,1948,1921,1,0,0,0,1948,1927,1,0,0,0,1949,91,1, + 0,0,0,1950,1952,3,94,47,0,1951,1953,3,120,60,0,1952,1951,1,0,0,0, + 1952,1953,1,0,0,0,1953,1957,1,0,0,0,1954,1956,3,152,76,0,1955,1954, + 1,0,0,0,1956,1959,1,0,0,0,1957,1955,1,0,0,0,1957,1958,1,0,0,0,1958, + 1961,1,0,0,0,1959,1957,1,0,0,0,1960,1962,3,112,56,0,1961,1960,1, + 0,0,0,1961,1962,1,0,0,0,1962,1964,1,0,0,0,1963,1965,3,124,62,0,1964, + 1963,1,0,0,0,1964,1965,1,0,0,0,1965,1967,1,0,0,0,1966,1968,3,114, + 57,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968,1970,1,0,0,0,1969, + 1971,3,298,149,0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971,1995,1, + 0,0,0,1972,1974,3,96,48,0,1973,1975,3,120,60,0,1974,1973,1,0,0,0, + 1974,1975,1,0,0,0,1975,1979,1,0,0,0,1976,1978,3,152,76,0,1977,1976, + 1,0,0,0,1978,1981,1,0,0,0,1979,1977,1,0,0,0,1979,1980,1,0,0,0,1980, + 1983,1,0,0,0,1981,1979,1,0,0,0,1982,1984,3,112,56,0,1983,1982,1, + 0,0,0,1983,1984,1,0,0,0,1984,1986,1,0,0,0,1985,1987,3,124,62,0,1986, + 1985,1,0,0,0,1986,1987,1,0,0,0,1987,1989,1,0,0,0,1988,1990,3,114, + 57,0,1989,1988,1,0,0,0,1989,1990,1,0,0,0,1990,1992,1,0,0,0,1991, + 1993,3,298,149,0,1992,1991,1,0,0,0,1992,1993,1,0,0,0,1993,1995,1, + 0,0,0,1994,1950,1,0,0,0,1994,1972,1,0,0,0,1995,93,1,0,0,0,1996,1997, + 5,263,0,0,1997,1998,5,314,0,0,1998,2000,5,2,0,0,1999,2001,3,154, + 77,0,2000,1999,1,0,0,0,2000,2001,1,0,0,0,2001,2002,1,0,0,0,2002, + 2003,3,226,113,0,2003,2004,5,3,0,0,2004,2016,1,0,0,0,2005,2007,5, + 177,0,0,2006,2008,3,154,77,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0, + 2008,2009,1,0,0,0,2009,2016,3,226,113,0,2010,2012,5,238,0,0,2011, + 2013,3,154,77,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013,2014,1, + 0,0,0,2014,2016,3,226,113,0,2015,1996,1,0,0,0,2015,2005,1,0,0,0, + 2015,2010,1,0,0,0,2016,2018,1,0,0,0,2017,2019,3,194,97,0,2018,2017, + 1,0,0,0,2018,2019,1,0,0,0,2019,2022,1,0,0,0,2020,2021,5,236,0,0, + 2021,2023,3,328,164,0,2022,2020,1,0,0,0,2022,2023,1,0,0,0,2023,2024, + 1,0,0,0,2024,2025,5,332,0,0,2025,2038,3,328,164,0,2026,2036,5,20, + 0,0,2027,2037,3,170,85,0,2028,2037,3,284,142,0,2029,2032,5,2,0,0, + 2030,2033,3,170,85,0,2031,2033,3,284,142,0,2032,2030,1,0,0,0,2032, + 2031,1,0,0,0,2033,2034,1,0,0,0,2034,2035,5,3,0,0,2035,2037,1,0,0, + 0,2036,2027,1,0,0,0,2036,2028,1,0,0,0,2036,2029,1,0,0,0,2037,2039, + 1,0,0,0,2038,2026,1,0,0,0,2038,2039,1,0,0,0,2039,2041,1,0,0,0,2040, + 2042,3,194,97,0,2041,2040,1,0,0,0,2041,2042,1,0,0,0,2042,2045,1, + 0,0,0,2043,2044,5,235,0,0,2044,2046,3,328,164,0,2045,2043,1,0,0, + 0,2045,2046,1,0,0,0,2046,95,1,0,0,0,2047,2051,5,263,0,0,2048,2050, + 3,116,58,0,2049,2048,1,0,0,0,2050,2053,1,0,0,0,2051,2049,1,0,0,0, + 2051,2052,1,0,0,0,2052,2055,1,0,0,0,2053,2051,1,0,0,0,2054,2056, + 3,154,77,0,2055,2054,1,0,0,0,2055,2056,1,0,0,0,2056,2057,1,0,0,0, + 2057,2058,3,210,105,0,2058,97,1,0,0,0,2059,2060,5,269,0,0,2060,2061, + 3,108,54,0,2061,99,1,0,0,0,2062,2063,5,343,0,0,2063,2066,5,178,0, + 0,2064,2065,5,14,0,0,2065,2067,3,228,114,0,2066,2064,1,0,0,0,2066, + 2067,1,0,0,0,2067,2068,1,0,0,0,2068,2076,5,300,0,0,2069,2077,5,84, + 0,0,2070,2071,5,329,0,0,2071,2074,5,269,0,0,2072,2075,5,363,0,0, + 2073,2075,3,108,54,0,2074,2072,1,0,0,0,2074,2073,1,0,0,0,2075,2077, + 1,0,0,0,2076,2069,1,0,0,0,2076,2070,1,0,0,0,2077,101,1,0,0,0,2078, + 2079,5,343,0,0,2079,2080,5,197,0,0,2080,2083,5,178,0,0,2081,2082, + 5,31,0,0,2082,2084,5,296,0,0,2083,2081,1,0,0,0,2083,2084,1,0,0,0, + 2084,2087,1,0,0,0,2085,2086,5,14,0,0,2086,2088,3,228,114,0,2087, + 2085,1,0,0,0,2087,2088,1,0,0,0,2088,2089,1,0,0,0,2089,2090,5,300, + 0,0,2090,2091,3,106,53,0,2091,103,1,0,0,0,2092,2093,5,343,0,0,2093, + 2094,5,197,0,0,2094,2095,5,178,0,0,2095,2096,5,31,0,0,2096,2099, + 5,280,0,0,2097,2098,5,14,0,0,2098,2100,3,228,114,0,2099,2097,1,0, + 0,0,2099,2100,1,0,0,0,2100,2101,1,0,0,0,2101,2106,5,300,0,0,2102, + 2107,5,84,0,0,2103,2104,5,329,0,0,2104,2105,5,269,0,0,2105,2107, + 3,108,54,0,2106,2102,1,0,0,0,2106,2103,1,0,0,0,2107,105,1,0,0,0, + 2108,2109,5,147,0,0,2109,2127,5,363,0,0,2110,2111,5,147,0,0,2111, + 2112,5,2,0,0,2112,2113,3,196,98,0,2113,2114,5,3,0,0,2114,2115,5, + 333,0,0,2115,2116,5,2,0,0,2116,2121,3,220,110,0,2117,2118,5,4,0, + 0,2118,2120,3,220,110,0,2119,2117,1,0,0,0,2120,2123,1,0,0,0,2121, + 2119,1,0,0,0,2121,2122,1,0,0,0,2122,2124,1,0,0,0,2123,2121,1,0,0, + 0,2124,2125,5,3,0,0,2125,2127,1,0,0,0,2126,2108,1,0,0,0,2126,2110, + 1,0,0,0,2127,107,1,0,0,0,2128,2133,3,110,55,0,2129,2130,5,4,0,0, + 2130,2132,3,110,55,0,2131,2129,1,0,0,0,2132,2135,1,0,0,0,2133,2131, + 1,0,0,0,2133,2134,1,0,0,0,2134,109,1,0,0,0,2135,2133,1,0,0,0,2136, + 2137,3,198,99,0,2137,2138,5,352,0,0,2138,2139,3,220,110,0,2139,111, + 1,0,0,0,2140,2141,5,344,0,0,2141,2142,3,228,114,0,2142,113,1,0,0, + 0,2143,2144,5,132,0,0,2144,2145,3,228,114,0,2145,115,1,0,0,0,2146, + 2147,5,374,0,0,2147,2154,3,118,59,0,2148,2150,5,4,0,0,2149,2148, + 1,0,0,0,2149,2150,1,0,0,0,2150,2151,1,0,0,0,2151,2153,3,118,59,0, + 2152,2149,1,0,0,0,2153,2156,1,0,0,0,2154,2152,1,0,0,0,2154,2155, + 1,0,0,0,2155,2157,1,0,0,0,2156,2154,1,0,0,0,2157,2158,5,375,0,0, + 2158,117,1,0,0,0,2159,2173,3,318,159,0,2160,2161,3,318,159,0,2161, + 2162,5,2,0,0,2162,2167,3,236,118,0,2163,2164,5,4,0,0,2164,2166,3, + 236,118,0,2165,2163,1,0,0,0,2166,2169,1,0,0,0,2167,2165,1,0,0,0, + 2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169,2167,1,0,0,0,2170,2171, + 5,3,0,0,2171,2173,1,0,0,0,2172,2159,1,0,0,0,2172,2160,1,0,0,0,2173, + 119,1,0,0,0,2174,2175,5,123,0,0,2175,2180,3,156,78,0,2176,2177,5, + 4,0,0,2177,2179,3,156,78,0,2178,2176,1,0,0,0,2179,2182,1,0,0,0,2180, + 2178,1,0,0,0,2180,2181,1,0,0,0,2181,2186,1,0,0,0,2182,2180,1,0,0, + 0,2183,2185,3,152,76,0,2184,2183,1,0,0,0,2185,2188,1,0,0,0,2186, + 2184,1,0,0,0,2186,2187,1,0,0,0,2187,2190,1,0,0,0,2188,2186,1,0,0, + 0,2189,2191,3,132,66,0,2190,2189,1,0,0,0,2190,2191,1,0,0,0,2191, + 2193,1,0,0,0,2192,2194,3,138,69,0,2193,2192,1,0,0,0,2193,2194,1, + 0,0,0,2194,121,1,0,0,0,2195,2197,5,119,0,0,2196,2195,1,0,0,0,2196, + 2197,1,0,0,0,2197,2198,1,0,0,0,2198,2199,7,27,0,0,2199,2200,5,20, + 0,0,2200,2203,5,201,0,0,2201,2204,5,382,0,0,2202,2204,3,328,164, + 0,2203,2201,1,0,0,0,2203,2202,1,0,0,0,2204,2213,1,0,0,0,2205,2207, + 5,119,0,0,2206,2205,1,0,0,0,2206,2207,1,0,0,0,2207,2208,1,0,0,0, + 2208,2209,7,28,0,0,2209,2210,5,20,0,0,2210,2211,5,201,0,0,2211,2213, + 3,232,116,0,2212,2196,1,0,0,0,2212,2206,1,0,0,0,2213,123,1,0,0,0, + 2214,2215,5,130,0,0,2215,2216,5,31,0,0,2216,2221,3,126,63,0,2217, + 2218,5,4,0,0,2218,2220,3,126,63,0,2219,2217,1,0,0,0,2220,2223,1, + 0,0,0,2221,2219,1,0,0,0,2221,2222,1,0,0,0,2222,2254,1,0,0,0,2223, + 2221,1,0,0,0,2224,2225,5,130,0,0,2225,2226,5,31,0,0,2226,2231,3, + 220,110,0,2227,2228,5,4,0,0,2228,2230,3,220,110,0,2229,2227,1,0, + 0,0,2230,2233,1,0,0,0,2231,2229,1,0,0,0,2231,2232,1,0,0,0,2232,2251, + 1,0,0,0,2233,2231,1,0,0,0,2234,2235,5,346,0,0,2235,2252,5,256,0, + 0,2236,2237,5,346,0,0,2237,2252,5,61,0,0,2238,2239,5,131,0,0,2239, + 2240,5,271,0,0,2240,2241,5,2,0,0,2241,2246,3,130,65,0,2242,2243, + 5,4,0,0,2243,2245,3,130,65,0,2244,2242,1,0,0,0,2245,2248,1,0,0,0, + 2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2249,1,0,0,0,2248,2246, + 1,0,0,0,2249,2250,5,3,0,0,2250,2252,1,0,0,0,2251,2234,1,0,0,0,2251, + 2236,1,0,0,0,2251,2238,1,0,0,0,2251,2252,1,0,0,0,2252,2254,1,0,0, + 0,2253,2214,1,0,0,0,2253,2224,1,0,0,0,2254,125,1,0,0,0,2255,2259, + 3,74,37,0,2256,2259,3,128,64,0,2257,2259,3,220,110,0,2258,2255,1, + 0,0,0,2258,2256,1,0,0,0,2258,2257,1,0,0,0,2259,127,1,0,0,0,2260, + 2261,7,29,0,0,2261,2262,5,2,0,0,2262,2267,3,130,65,0,2263,2264,5, + 4,0,0,2264,2266,3,130,65,0,2265,2263,1,0,0,0,2266,2269,1,0,0,0,2267, + 2265,1,0,0,0,2267,2268,1,0,0,0,2268,2270,1,0,0,0,2269,2267,1,0,0, + 0,2270,2271,5,3,0,0,2271,2292,1,0,0,0,2272,2273,5,131,0,0,2273,2274, + 5,271,0,0,2274,2277,5,2,0,0,2275,2278,3,128,64,0,2276,2278,3,130, + 65,0,2277,2275,1,0,0,0,2277,2276,1,0,0,0,2278,2286,1,0,0,0,2279, + 2282,5,4,0,0,2280,2283,3,128,64,0,2281,2283,3,130,65,0,2282,2280, + 1,0,0,0,2282,2281,1,0,0,0,2283,2285,1,0,0,0,2284,2279,1,0,0,0,2285, + 2288,1,0,0,0,2286,2284,1,0,0,0,2286,2287,1,0,0,0,2287,2289,1,0,0, + 0,2288,2286,1,0,0,0,2289,2290,5,3,0,0,2290,2292,1,0,0,0,2291,2260, + 1,0,0,0,2291,2272,1,0,0,0,2292,129,1,0,0,0,2293,2314,3,74,37,0,2294, + 2314,3,220,110,0,2295,2310,5,2,0,0,2296,2299,3,74,37,0,2297,2299, + 3,220,110,0,2298,2296,1,0,0,0,2298,2297,1,0,0,0,2299,2307,1,0,0, + 0,2300,2303,5,4,0,0,2301,2304,3,74,37,0,2302,2304,3,220,110,0,2303, + 2301,1,0,0,0,2303,2302,1,0,0,0,2304,2306,1,0,0,0,2305,2300,1,0,0, + 0,2306,2309,1,0,0,0,2307,2305,1,0,0,0,2307,2308,1,0,0,0,2308,2311, + 1,0,0,0,2309,2307,1,0,0,0,2310,2298,1,0,0,0,2310,2311,1,0,0,0,2311, + 2312,1,0,0,0,2312,2314,5,3,0,0,2313,2293,1,0,0,0,2313,2294,1,0,0, + 0,2313,2295,1,0,0,0,2314,131,1,0,0,0,2315,2316,5,223,0,0,2316,2317, + 5,2,0,0,2317,2318,3,210,105,0,2318,2319,5,119,0,0,2319,2320,3,134, + 67,0,2320,2321,5,140,0,0,2321,2322,5,2,0,0,2322,2327,3,136,68,0, + 2323,2324,5,4,0,0,2324,2326,3,136,68,0,2325,2323,1,0,0,0,2326,2329, + 1,0,0,0,2327,2325,1,0,0,0,2327,2328,1,0,0,0,2328,2330,1,0,0,0,2329, + 2327,1,0,0,0,2330,2331,5,3,0,0,2331,2332,5,3,0,0,2332,133,1,0,0, + 0,2333,2346,3,318,159,0,2334,2335,5,2,0,0,2335,2340,3,318,159,0, + 2336,2337,5,4,0,0,2337,2339,3,318,159,0,2338,2336,1,0,0,0,2339,2342, + 1,0,0,0,2340,2338,1,0,0,0,2340,2341,1,0,0,0,2341,2343,1,0,0,0,2342, + 2340,1,0,0,0,2343,2344,5,3,0,0,2344,2346,1,0,0,0,2345,2333,1,0,0, + 0,2345,2334,1,0,0,0,2346,135,1,0,0,0,2347,2352,3,220,110,0,2348, + 2350,5,20,0,0,2349,2348,1,0,0,0,2349,2350,1,0,0,0,2350,2351,1,0, + 0,0,2351,2353,3,318,159,0,2352,2349,1,0,0,0,2352,2353,1,0,0,0,2353, + 137,1,0,0,0,2354,2357,5,327,0,0,2355,2356,7,30,0,0,2356,2358,5,199, + 0,0,2357,2355,1,0,0,0,2357,2358,1,0,0,0,2358,2359,1,0,0,0,2359,2362, + 5,2,0,0,2360,2363,3,140,70,0,2361,2363,3,142,71,0,2362,2360,1,0, + 0,0,2362,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2369,5,3,0,0,2365,2367, + 5,20,0,0,2366,2365,1,0,0,0,2366,2367,1,0,0,0,2367,2368,1,0,0,0,2368, + 2370,3,318,159,0,2369,2366,1,0,0,0,2369,2370,1,0,0,0,2370,139,1, + 0,0,0,2371,2372,3,318,159,0,2372,2373,5,119,0,0,2373,2374,3,318, + 159,0,2374,2375,5,140,0,0,2375,2376,5,2,0,0,2376,2381,3,146,73,0, + 2377,2378,5,4,0,0,2378,2380,3,146,73,0,2379,2377,1,0,0,0,2380,2383, + 1,0,0,0,2381,2379,1,0,0,0,2381,2382,1,0,0,0,2382,2384,1,0,0,0,2383, + 2381,1,0,0,0,2384,2385,5,3,0,0,2385,141,1,0,0,0,2386,2387,5,2,0, + 0,2387,2392,3,318,159,0,2388,2389,5,4,0,0,2389,2391,3,318,159,0, + 2390,2388,1,0,0,0,2391,2394,1,0,0,0,2392,2390,1,0,0,0,2392,2393, + 1,0,0,0,2393,2395,1,0,0,0,2394,2392,1,0,0,0,2395,2396,5,3,0,0,2396, + 2397,5,119,0,0,2397,2398,3,318,159,0,2398,2399,5,140,0,0,2399,2400, + 5,2,0,0,2400,2405,3,144,72,0,2401,2402,5,4,0,0,2402,2404,3,144,72, + 0,2403,2401,1,0,0,0,2404,2407,1,0,0,0,2405,2403,1,0,0,0,2405,2406, + 1,0,0,0,2406,2408,1,0,0,0,2407,2405,1,0,0,0,2408,2409,5,3,0,0,2409, + 143,1,0,0,0,2410,2411,5,2,0,0,2411,2416,3,198,99,0,2412,2413,5,4, + 0,0,2413,2415,3,198,99,0,2414,2412,1,0,0,0,2415,2418,1,0,0,0,2416, + 2414,1,0,0,0,2416,2417,1,0,0,0,2417,2419,1,0,0,0,2418,2416,1,0,0, + 0,2419,2424,5,3,0,0,2420,2422,5,20,0,0,2421,2420,1,0,0,0,2421,2422, + 1,0,0,0,2422,2423,1,0,0,0,2423,2425,3,318,159,0,2424,2421,1,0,0, + 0,2424,2425,1,0,0,0,2425,145,1,0,0,0,2426,2431,3,198,99,0,2427,2429, + 5,20,0,0,2428,2427,1,0,0,0,2428,2429,1,0,0,0,2429,2430,1,0,0,0,2430, + 2432,3,318,159,0,2431,2428,1,0,0,0,2431,2432,1,0,0,0,2432,147,1, + 0,0,0,2433,2434,5,137,0,0,2434,2435,5,197,0,0,2435,2436,5,105,0, + 0,2436,149,1,0,0,0,2437,2438,5,137,0,0,2438,2439,5,105,0,0,2439, + 151,1,0,0,0,2440,2441,5,158,0,0,2441,2443,5,338,0,0,2442,2444,5, + 211,0,0,2443,2442,1,0,0,0,2443,2444,1,0,0,0,2444,2445,1,0,0,0,2445, + 2446,3,72,36,0,2446,2455,5,2,0,0,2447,2452,3,220,110,0,2448,2449, + 5,4,0,0,2449,2451,3,220,110,0,2450,2448,1,0,0,0,2451,2454,1,0,0, + 0,2452,2450,1,0,0,0,2452,2453,1,0,0,0,2453,2456,1,0,0,0,2454,2452, + 1,0,0,0,2455,2447,1,0,0,0,2455,2456,1,0,0,0,2456,2457,1,0,0,0,2457, + 2458,5,3,0,0,2458,2470,3,192,96,0,2459,2461,5,20,0,0,2460,2459,1, + 0,0,0,2460,2461,1,0,0,0,2461,2462,1,0,0,0,2462,2467,3,318,159,0, + 2463,2464,5,4,0,0,2464,2466,3,318,159,0,2465,2463,1,0,0,0,2466,2469, + 1,0,0,0,2467,2465,1,0,0,0,2467,2468,1,0,0,0,2468,2471,1,0,0,0,2469, + 2467,1,0,0,0,2470,2460,1,0,0,0,2470,2471,1,0,0,0,2471,153,1,0,0, + 0,2472,2473,7,31,0,0,2473,155,1,0,0,0,2474,2488,3,68,34,0,2475,2477, + 5,158,0,0,2476,2475,1,0,0,0,2476,2477,1,0,0,0,2477,2478,1,0,0,0, + 2478,2484,3,180,90,0,2479,2483,3,158,79,0,2480,2483,3,132,66,0,2481, + 2483,3,138,69,0,2482,2479,1,0,0,0,2482,2480,1,0,0,0,2482,2481,1, + 0,0,0,2483,2486,1,0,0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485, + 2488,1,0,0,0,2486,2484,1,0,0,0,2487,2474,1,0,0,0,2487,2476,1,0,0, + 0,2488,157,1,0,0,0,2489,2490,3,160,80,0,2490,2492,5,155,0,0,2491, + 2493,5,158,0,0,2492,2491,1,0,0,0,2492,2493,1,0,0,0,2493,2494,1,0, + 0,0,2494,2496,3,180,90,0,2495,2497,3,162,81,0,2496,2495,1,0,0,0, + 2496,2497,1,0,0,0,2497,2507,1,0,0,0,2498,2499,5,194,0,0,2499,2500, + 3,160,80,0,2500,2502,5,155,0,0,2501,2503,5,158,0,0,2502,2501,1,0, + 0,0,2502,2503,1,0,0,0,2503,2504,1,0,0,0,2504,2505,3,180,90,0,2505, + 2507,1,0,0,0,2506,2489,1,0,0,0,2506,2498,1,0,0,0,2507,159,1,0,0, + 0,2508,2510,5,144,0,0,2509,2508,1,0,0,0,2509,2510,1,0,0,0,2510,2525, + 1,0,0,0,2511,2525,5,60,0,0,2512,2514,5,161,0,0,2513,2515,5,211,0, + 0,2514,2513,1,0,0,0,2514,2515,1,0,0,0,2515,2525,1,0,0,0,2516,2518, + 5,161,0,0,2517,2516,1,0,0,0,2517,2518,1,0,0,0,2518,2519,1,0,0,0, + 2519,2525,7,32,0,0,2520,2522,7,33,0,0,2521,2523,5,211,0,0,2522,2521, + 1,0,0,0,2522,2523,1,0,0,0,2523,2525,1,0,0,0,2524,2509,1,0,0,0,2524, + 2511,1,0,0,0,2524,2512,1,0,0,0,2524,2517,1,0,0,0,2524,2520,1,0,0, + 0,2525,161,1,0,0,0,2526,2527,5,203,0,0,2527,2531,3,228,114,0,2528, + 2529,5,332,0,0,2529,2531,3,168,84,0,2530,2526,1,0,0,0,2530,2528, + 1,0,0,0,2531,163,1,0,0,0,2532,2533,5,295,0,0,2533,2535,5,2,0,0,2534, + 2536,3,166,83,0,2535,2534,1,0,0,0,2535,2536,1,0,0,0,2536,2537,1, + 0,0,0,2537,2542,5,3,0,0,2538,2539,5,243,0,0,2539,2540,5,2,0,0,2540, + 2541,5,382,0,0,2541,2543,5,3,0,0,2542,2538,1,0,0,0,2542,2543,1,0, + 0,0,2543,165,1,0,0,0,2544,2546,5,362,0,0,2545,2544,1,0,0,0,2545, + 2546,1,0,0,0,2546,2547,1,0,0,0,2547,2548,7,34,0,0,2548,2569,5,222, + 0,0,2549,2550,3,220,110,0,2550,2551,5,258,0,0,2551,2569,1,0,0,0, + 2552,2553,5,29,0,0,2553,2554,5,382,0,0,2554,2555,5,210,0,0,2555, + 2556,5,201,0,0,2556,2565,5,382,0,0,2557,2563,5,203,0,0,2558,2564, + 3,318,159,0,2559,2560,3,312,156,0,2560,2561,5,2,0,0,2561,2562,5, + 3,0,0,2562,2564,1,0,0,0,2563,2558,1,0,0,0,2563,2559,1,0,0,0,2564, + 2566,1,0,0,0,2565,2557,1,0,0,0,2565,2566,1,0,0,0,2566,2569,1,0,0, + 0,2567,2569,3,220,110,0,2568,2545,1,0,0,0,2568,2549,1,0,0,0,2568, + 2552,1,0,0,0,2568,2567,1,0,0,0,2569,167,1,0,0,0,2570,2571,5,2,0, + 0,2571,2572,3,170,85,0,2572,2573,5,3,0,0,2573,169,1,0,0,0,2574,2579, + 3,314,157,0,2575,2576,5,4,0,0,2576,2578,3,314,157,0,2577,2575,1, + 0,0,0,2578,2581,1,0,0,0,2579,2577,1,0,0,0,2579,2580,1,0,0,0,2580, + 171,1,0,0,0,2581,2579,1,0,0,0,2582,2583,5,2,0,0,2583,2588,3,174, + 87,0,2584,2585,5,4,0,0,2585,2587,3,174,87,0,2586,2584,1,0,0,0,2587, + 2590,1,0,0,0,2588,2586,1,0,0,0,2588,2589,1,0,0,0,2589,2591,1,0,0, + 0,2590,2588,1,0,0,0,2591,2592,5,3,0,0,2592,173,1,0,0,0,2593,2595, + 3,314,157,0,2594,2596,7,25,0,0,2595,2594,1,0,0,0,2595,2596,1,0,0, + 0,2596,175,1,0,0,0,2597,2598,5,2,0,0,2598,2603,3,178,89,0,2599,2600, + 5,4,0,0,2600,2602,3,178,89,0,2601,2599,1,0,0,0,2602,2605,1,0,0,0, + 2603,2601,1,0,0,0,2603,2604,1,0,0,0,2604,2606,1,0,0,0,2605,2603, + 1,0,0,0,2606,2607,5,3,0,0,2607,177,1,0,0,0,2608,2611,3,78,39,0,2609, + 2610,5,51,0,0,2610,2612,3,328,164,0,2611,2609,1,0,0,0,2611,2612, + 1,0,0,0,2612,179,1,0,0,0,2613,2617,3,68,34,0,2614,2617,3,72,36,0, + 2615,2617,3,80,40,0,2616,2613,1,0,0,0,2616,2614,1,0,0,0,2616,2615, + 1,0,0,0,2617,2619,1,0,0,0,2618,2620,3,122,61,0,2619,2618,1,0,0,0, + 2619,2620,1,0,0,0,2620,2622,1,0,0,0,2621,2623,3,164,82,0,2622,2621, + 1,0,0,0,2622,2623,1,0,0,0,2623,2624,1,0,0,0,2624,2625,3,192,96,0, + 2625,2669,1,0,0,0,2626,2627,5,2,0,0,2627,2628,3,12,6,0,2628,2630, + 5,3,0,0,2629,2631,3,164,82,0,2630,2629,1,0,0,0,2630,2631,1,0,0,0, + 2631,2632,1,0,0,0,2632,2633,3,192,96,0,2633,2669,1,0,0,0,2634,2635, + 5,2,0,0,2635,2636,3,156,78,0,2636,2638,5,3,0,0,2637,2639,3,164,82, + 0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640,1,0,0,0,2640,2641, + 3,192,96,0,2641,2669,1,0,0,0,2642,2643,5,333,0,0,2643,2648,3,220, + 110,0,2644,2645,5,4,0,0,2645,2647,3,220,110,0,2646,2644,1,0,0,0, + 2647,2650,1,0,0,0,2648,2646,1,0,0,0,2648,2649,1,0,0,0,2649,2651, + 1,0,0,0,2650,2648,1,0,0,0,2651,2652,3,192,96,0,2652,2669,1,0,0,0, + 2653,2654,3,308,154,0,2654,2663,5,2,0,0,2655,2660,3,190,95,0,2656, + 2657,5,4,0,0,2657,2659,3,190,95,0,2658,2656,1,0,0,0,2659,2662,1, + 0,0,0,2660,2658,1,0,0,0,2660,2661,1,0,0,0,2661,2664,1,0,0,0,2662, + 2660,1,0,0,0,2663,2655,1,0,0,0,2663,2664,1,0,0,0,2664,2665,1,0,0, + 0,2665,2666,5,3,0,0,2666,2667,3,192,96,0,2667,2669,1,0,0,0,2668, + 2616,1,0,0,0,2668,2626,1,0,0,0,2668,2634,1,0,0,0,2668,2642,1,0,0, + 0,2668,2653,1,0,0,0,2669,181,1,0,0,0,2670,2671,5,293,0,0,2671,2673, + 3,68,34,0,2672,2674,3,184,92,0,2673,2672,1,0,0,0,2673,2674,1,0,0, + 0,2674,2690,1,0,0,0,2675,2676,5,293,0,0,2676,2677,5,2,0,0,2677,2678, + 3,68,34,0,2678,2680,5,3,0,0,2679,2681,3,184,92,0,2680,2679,1,0,0, + 0,2680,2681,1,0,0,0,2681,2690,1,0,0,0,2682,2683,5,293,0,0,2683,2684, + 5,2,0,0,2684,2685,3,12,6,0,2685,2687,5,3,0,0,2686,2688,3,184,92, + 0,2687,2686,1,0,0,0,2687,2688,1,0,0,0,2688,2690,1,0,0,0,2689,2670, + 1,0,0,0,2689,2675,1,0,0,0,2689,2682,1,0,0,0,2690,183,1,0,0,0,2691, + 2692,5,346,0,0,2692,2693,5,274,0,0,2693,2711,5,217,0,0,2694,2695, + 7,35,0,0,2695,2708,5,31,0,0,2696,2697,5,2,0,0,2697,2702,3,220,110, + 0,2698,2699,5,4,0,0,2699,2701,3,220,110,0,2700,2698,1,0,0,0,2701, + 2704,1,0,0,0,2702,2700,1,0,0,0,2702,2703,1,0,0,0,2703,2705,1,0,0, + 0,2704,2702,1,0,0,0,2705,2706,5,3,0,0,2706,2709,1,0,0,0,2707,2709, + 3,220,110,0,2708,2696,1,0,0,0,2708,2707,1,0,0,0,2709,2711,1,0,0, + 0,2710,2691,1,0,0,0,2710,2694,1,0,0,0,2711,2728,1,0,0,0,2712,2713, + 7,36,0,0,2713,2726,5,31,0,0,2714,2715,5,2,0,0,2715,2720,3,88,44, + 0,2716,2717,5,4,0,0,2717,2719,3,88,44,0,2718,2716,1,0,0,0,2719,2722, + 1,0,0,0,2720,2718,1,0,0,0,2720,2721,1,0,0,0,2721,2723,1,0,0,0,2722, + 2720,1,0,0,0,2723,2724,5,3,0,0,2724,2727,1,0,0,0,2725,2727,3,88, + 44,0,2726,2714,1,0,0,0,2726,2725,1,0,0,0,2727,2729,1,0,0,0,2728, + 2712,1,0,0,0,2728,2729,1,0,0,0,2729,185,1,0,0,0,2730,2731,3,318, + 159,0,2731,2732,5,373,0,0,2732,2733,3,182,91,0,2733,187,1,0,0,0, + 2734,2737,3,182,91,0,2735,2737,3,186,93,0,2736,2734,1,0,0,0,2736, + 2735,1,0,0,0,2737,189,1,0,0,0,2738,2741,3,188,94,0,2739,2741,3,224, + 112,0,2740,2738,1,0,0,0,2740,2739,1,0,0,0,2741,191,1,0,0,0,2742, + 2744,5,20,0,0,2743,2742,1,0,0,0,2743,2744,1,0,0,0,2744,2745,1,0, + 0,0,2745,2747,3,320,160,0,2746,2748,3,168,84,0,2747,2746,1,0,0,0, + 2747,2748,1,0,0,0,2748,2750,1,0,0,0,2749,2743,1,0,0,0,2749,2750, + 1,0,0,0,2750,193,1,0,0,0,2751,2752,5,257,0,0,2752,2753,5,121,0,0, + 2753,2754,5,266,0,0,2754,2758,3,328,164,0,2755,2756,5,346,0,0,2756, + 2757,5,267,0,0,2757,2759,3,38,19,0,2758,2755,1,0,0,0,2758,2759,1, + 0,0,0,2759,2801,1,0,0,0,2760,2761,5,257,0,0,2761,2762,5,121,0,0, + 2762,2772,5,85,0,0,2763,2764,5,113,0,0,2764,2765,5,299,0,0,2765, + 2766,5,31,0,0,2766,2770,3,328,164,0,2767,2768,5,101,0,0,2768,2769, + 5,31,0,0,2769,2771,3,328,164,0,2770,2767,1,0,0,0,2770,2771,1,0,0, + 0,2771,2773,1,0,0,0,2772,2763,1,0,0,0,2772,2773,1,0,0,0,2773,2779, + 1,0,0,0,2774,2775,5,48,0,0,2775,2776,5,154,0,0,2776,2777,5,299,0, + 0,2777,2778,5,31,0,0,2778,2780,3,328,164,0,2779,2774,1,0,0,0,2779, + 2780,1,0,0,0,2780,2786,1,0,0,0,2781,2782,5,177,0,0,2782,2783,5,156, + 0,0,2783,2784,5,299,0,0,2784,2785,5,31,0,0,2785,2787,3,328,164,0, + 2786,2781,1,0,0,0,2786,2787,1,0,0,0,2787,2792,1,0,0,0,2788,2789, + 5,166,0,0,2789,2790,5,299,0,0,2790,2791,5,31,0,0,2791,2793,3,328, + 164,0,2792,2788,1,0,0,0,2792,2793,1,0,0,0,2793,2798,1,0,0,0,2794, + 2795,5,198,0,0,2795,2796,5,83,0,0,2796,2797,5,20,0,0,2797,2799,3, + 328,164,0,2798,2794,1,0,0,0,2798,2799,1,0,0,0,2799,2801,1,0,0,0, + 2800,2751,1,0,0,0,2800,2760,1,0,0,0,2801,195,1,0,0,0,2802,2807,3, + 198,99,0,2803,2804,5,4,0,0,2804,2806,3,198,99,0,2805,2803,1,0,0, + 0,2806,2809,1,0,0,0,2807,2805,1,0,0,0,2807,2808,1,0,0,0,2808,197, + 1,0,0,0,2809,2807,1,0,0,0,2810,2815,3,314,157,0,2811,2812,5,5,0, + 0,2812,2814,3,314,157,0,2813,2811,1,0,0,0,2814,2817,1,0,0,0,2815, + 2813,1,0,0,0,2815,2816,1,0,0,0,2816,199,1,0,0,0,2817,2815,1,0,0, + 0,2818,2823,3,202,101,0,2819,2820,5,4,0,0,2820,2822,3,202,101,0, + 2821,2819,1,0,0,0,2822,2825,1,0,0,0,2823,2821,1,0,0,0,2823,2824, + 1,0,0,0,2824,201,1,0,0,0,2825,2823,1,0,0,0,2826,2829,3,198,99,0, + 2827,2828,5,207,0,0,2828,2830,3,38,19,0,2829,2827,1,0,0,0,2829,2830, + 1,0,0,0,2830,203,1,0,0,0,2831,2832,3,314,157,0,2832,2833,5,5,0,0, + 2833,2835,1,0,0,0,2834,2831,1,0,0,0,2834,2835,1,0,0,0,2835,2836, + 1,0,0,0,2836,2837,3,314,157,0,2837,205,1,0,0,0,2838,2839,3,314,157, + 0,2839,2840,5,5,0,0,2840,2842,1,0,0,0,2841,2838,1,0,0,0,2841,2842, + 1,0,0,0,2842,2843,1,0,0,0,2843,2844,3,314,157,0,2844,207,1,0,0,0, + 2845,2848,3,74,37,0,2846,2848,3,220,110,0,2847,2845,1,0,0,0,2847, + 2846,1,0,0,0,2848,2856,1,0,0,0,2849,2851,5,20,0,0,2850,2849,1,0, + 0,0,2850,2851,1,0,0,0,2851,2854,1,0,0,0,2852,2855,3,314,157,0,2853, + 2855,3,168,84,0,2854,2852,1,0,0,0,2854,2853,1,0,0,0,2855,2857,1, + 0,0,0,2856,2850,1,0,0,0,2856,2857,1,0,0,0,2857,209,1,0,0,0,2858, + 2863,3,208,104,0,2859,2860,5,4,0,0,2860,2862,3,208,104,0,2861,2859, + 1,0,0,0,2862,2865,1,0,0,0,2863,2861,1,0,0,0,2863,2864,1,0,0,0,2864, + 211,1,0,0,0,2865,2863,1,0,0,0,2866,2867,5,2,0,0,2867,2872,3,214, + 107,0,2868,2869,5,4,0,0,2869,2871,3,214,107,0,2870,2868,1,0,0,0, + 2871,2874,1,0,0,0,2872,2870,1,0,0,0,2872,2873,1,0,0,0,2873,2875, + 1,0,0,0,2874,2872,1,0,0,0,2875,2876,5,3,0,0,2876,213,1,0,0,0,2877, + 2880,3,216,108,0,2878,2880,3,286,143,0,2879,2877,1,0,0,0,2879,2878, + 1,0,0,0,2880,215,1,0,0,0,2881,2895,3,312,156,0,2882,2883,3,318,159, + 0,2883,2884,5,2,0,0,2884,2889,3,218,109,0,2885,2886,5,4,0,0,2886, + 2888,3,218,109,0,2887,2885,1,0,0,0,2888,2891,1,0,0,0,2889,2887,1, + 0,0,0,2889,2890,1,0,0,0,2890,2892,1,0,0,0,2891,2889,1,0,0,0,2892, + 2893,5,3,0,0,2893,2895,1,0,0,0,2894,2881,1,0,0,0,2894,2882,1,0,0, + 0,2895,217,1,0,0,0,2896,2899,3,312,156,0,2897,2899,3,240,120,0,2898, + 2896,1,0,0,0,2898,2897,1,0,0,0,2899,219,1,0,0,0,2900,2901,3,228, + 114,0,2901,221,1,0,0,0,2902,2903,3,318,159,0,2903,2904,5,373,0,0, + 2904,2905,3,220,110,0,2905,223,1,0,0,0,2906,2909,3,220,110,0,2907, + 2909,3,222,111,0,2908,2906,1,0,0,0,2908,2907,1,0,0,0,2909,225,1, + 0,0,0,2910,2915,3,220,110,0,2911,2912,5,4,0,0,2912,2914,3,220,110, + 0,2913,2911,1,0,0,0,2914,2917,1,0,0,0,2915,2913,1,0,0,0,2915,2916, + 1,0,0,0,2916,227,1,0,0,0,2917,2915,1,0,0,0,2918,2919,6,114,-1,0, + 2919,2920,7,37,0,0,2920,2931,3,228,114,5,2921,2922,5,105,0,0,2922, + 2923,5,2,0,0,2923,2924,3,12,6,0,2924,2925,5,3,0,0,2925,2931,1,0, + 0,0,2926,2928,3,232,116,0,2927,2929,3,230,115,0,2928,2927,1,0,0, + 0,2928,2929,1,0,0,0,2929,2931,1,0,0,0,2930,2918,1,0,0,0,2930,2921, + 1,0,0,0,2930,2926,1,0,0,0,2931,2940,1,0,0,0,2932,2933,10,2,0,0,2933, + 2934,5,14,0,0,2934,2939,3,228,114,3,2935,2936,10,1,0,0,2936,2937, + 5,208,0,0,2937,2939,3,228,114,2,2938,2932,1,0,0,0,2938,2935,1,0, + 0,0,2939,2942,1,0,0,0,2940,2938,1,0,0,0,2940,2941,1,0,0,0,2941,229, + 1,0,0,0,2942,2940,1,0,0,0,2943,2945,5,197,0,0,2944,2943,1,0,0,0, + 2944,2945,1,0,0,0,2945,2946,1,0,0,0,2946,2947,5,24,0,0,2947,2948, + 3,232,116,0,2948,2949,5,14,0,0,2949,2950,3,232,116,0,2950,3026,1, + 0,0,0,2951,2953,5,197,0,0,2952,2951,1,0,0,0,2952,2953,1,0,0,0,2953, + 2954,1,0,0,0,2954,2955,5,140,0,0,2955,2956,5,2,0,0,2956,2961,3,220, + 110,0,2957,2958,5,4,0,0,2958,2960,3,220,110,0,2959,2957,1,0,0,0, + 2960,2963,1,0,0,0,2961,2959,1,0,0,0,2961,2962,1,0,0,0,2962,2964, + 1,0,0,0,2963,2961,1,0,0,0,2964,2965,5,3,0,0,2965,3026,1,0,0,0,2966, + 2968,5,197,0,0,2967,2966,1,0,0,0,2967,2968,1,0,0,0,2968,2969,1,0, + 0,0,2969,2970,5,140,0,0,2970,2971,5,2,0,0,2971,2972,3,12,6,0,2972, + 2973,5,3,0,0,2973,3026,1,0,0,0,2974,2976,5,197,0,0,2975,2974,1,0, + 0,0,2975,2976,1,0,0,0,2976,2977,1,0,0,0,2977,2978,7,38,0,0,2978, + 3026,3,232,116,0,2979,2981,5,197,0,0,2980,2979,1,0,0,0,2980,2981, + 1,0,0,0,2981,2982,1,0,0,0,2982,2983,7,39,0,0,2983,2997,7,40,0,0, + 2984,2985,5,2,0,0,2985,2998,5,3,0,0,2986,2987,5,2,0,0,2987,2992, + 3,220,110,0,2988,2989,5,4,0,0,2989,2991,3,220,110,0,2990,2988,1, + 0,0,0,2991,2994,1,0,0,0,2992,2990,1,0,0,0,2992,2993,1,0,0,0,2993, + 2995,1,0,0,0,2994,2992,1,0,0,0,2995,2996,5,3,0,0,2996,2998,1,0,0, + 0,2997,2984,1,0,0,0,2997,2986,1,0,0,0,2998,3026,1,0,0,0,2999,3001, + 5,197,0,0,3000,2999,1,0,0,0,3000,3001,1,0,0,0,3001,3002,1,0,0,0, + 3002,3003,7,39,0,0,3003,3006,3,232,116,0,3004,3005,5,100,0,0,3005, + 3007,3,328,164,0,3006,3004,1,0,0,0,3006,3007,1,0,0,0,3007,3026,1, + 0,0,0,3008,3010,5,153,0,0,3009,3011,5,197,0,0,3010,3009,1,0,0,0, + 3010,3011,1,0,0,0,3011,3012,1,0,0,0,3012,3026,5,198,0,0,3013,3015, + 5,153,0,0,3014,3016,5,197,0,0,3015,3014,1,0,0,0,3015,3016,1,0,0, + 0,3016,3017,1,0,0,0,3017,3026,7,41,0,0,3018,3020,5,153,0,0,3019, + 3021,5,197,0,0,3020,3019,1,0,0,0,3020,3021,1,0,0,0,3021,3022,1,0, + 0,0,3022,3023,5,92,0,0,3023,3024,5,123,0,0,3024,3026,3,232,116,0, + 3025,2944,1,0,0,0,3025,2952,1,0,0,0,3025,2967,1,0,0,0,3025,2975, + 1,0,0,0,3025,2980,1,0,0,0,3025,3000,1,0,0,0,3025,3008,1,0,0,0,3025, + 3013,1,0,0,0,3025,3018,1,0,0,0,3026,231,1,0,0,0,3027,3028,6,116, + -1,0,3028,3032,3,236,118,0,3029,3030,7,42,0,0,3030,3032,3,232,116, + 7,3031,3027,1,0,0,0,3031,3029,1,0,0,0,3032,3054,1,0,0,0,3033,3034, + 10,6,0,0,3034,3035,7,43,0,0,3035,3053,3,232,116,7,3036,3037,10,5, + 0,0,3037,3038,7,44,0,0,3038,3053,3,232,116,6,3039,3040,10,4,0,0, + 3040,3041,5,367,0,0,3041,3053,3,232,116,5,3042,3043,10,3,0,0,3043, + 3044,5,370,0,0,3044,3053,3,232,116,4,3045,3046,10,2,0,0,3046,3047, + 5,368,0,0,3047,3053,3,232,116,3,3048,3049,10,1,0,0,3049,3050,3,242, + 121,0,3050,3051,3,232,116,2,3051,3053,1,0,0,0,3052,3033,1,0,0,0, + 3052,3036,1,0,0,0,3052,3039,1,0,0,0,3052,3042,1,0,0,0,3052,3045, + 1,0,0,0,3052,3048,1,0,0,0,3053,3056,1,0,0,0,3054,3052,1,0,0,0,3054, + 3055,1,0,0,0,3055,233,1,0,0,0,3056,3054,1,0,0,0,3057,3058,7,45,0, + 0,3058,235,1,0,0,0,3059,3060,6,118,-1,0,3060,3309,7,46,0,0,3061, + 3062,7,47,0,0,3062,3065,5,2,0,0,3063,3066,3,234,117,0,3064,3066, + 3,328,164,0,3065,3063,1,0,0,0,3065,3064,1,0,0,0,3066,3067,1,0,0, + 0,3067,3068,5,4,0,0,3068,3069,3,232,116,0,3069,3070,5,4,0,0,3070, + 3071,3,232,116,0,3071,3072,5,3,0,0,3072,3309,1,0,0,0,3073,3074,7, + 48,0,0,3074,3077,5,2,0,0,3075,3078,3,234,117,0,3076,3078,3,328,164, + 0,3077,3075,1,0,0,0,3077,3076,1,0,0,0,3078,3079,1,0,0,0,3079,3080, + 5,4,0,0,3080,3081,3,232,116,0,3081,3082,5,4,0,0,3082,3083,3,232, + 116,0,3083,3084,5,3,0,0,3084,3309,1,0,0,0,3085,3087,5,35,0,0,3086, + 3088,3,296,148,0,3087,3086,1,0,0,0,3088,3089,1,0,0,0,3089,3087,1, + 0,0,0,3089,3090,1,0,0,0,3090,3093,1,0,0,0,3091,3092,5,97,0,0,3092, + 3094,3,220,110,0,3093,3091,1,0,0,0,3093,3094,1,0,0,0,3094,3095,1, + 0,0,0,3095,3096,5,99,0,0,3096,3309,1,0,0,0,3097,3098,5,35,0,0,3098, + 3100,3,220,110,0,3099,3101,3,296,148,0,3100,3099,1,0,0,0,3101,3102, + 1,0,0,0,3102,3100,1,0,0,0,3102,3103,1,0,0,0,3103,3106,1,0,0,0,3104, + 3105,5,97,0,0,3105,3107,3,220,110,0,3106,3104,1,0,0,0,3106,3107, + 1,0,0,0,3107,3108,1,0,0,0,3108,3109,5,99,0,0,3109,3309,1,0,0,0,3110, + 3111,7,49,0,0,3111,3112,5,2,0,0,3112,3113,3,220,110,0,3113,3114, + 5,20,0,0,3114,3115,3,270,135,0,3115,3116,5,3,0,0,3116,3309,1,0,0, + 0,3117,3118,5,286,0,0,3118,3127,5,2,0,0,3119,3124,3,208,104,0,3120, + 3121,5,4,0,0,3121,3123,3,208,104,0,3122,3120,1,0,0,0,3123,3126,1, + 0,0,0,3124,3122,1,0,0,0,3124,3125,1,0,0,0,3125,3128,1,0,0,0,3126, + 3124,1,0,0,0,3127,3119,1,0,0,0,3127,3128,1,0,0,0,3128,3129,1,0,0, + 0,3129,3309,5,3,0,0,3130,3131,5,116,0,0,3131,3132,5,2,0,0,3132,3135, + 3,220,110,0,3133,3134,5,138,0,0,3134,3136,5,199,0,0,3135,3133,1, + 0,0,0,3135,3136,1,0,0,0,3136,3137,1,0,0,0,3137,3138,5,3,0,0,3138, + 3309,1,0,0,0,3139,3140,5,17,0,0,3140,3141,5,2,0,0,3141,3144,3,220, + 110,0,3142,3143,5,138,0,0,3143,3145,5,199,0,0,3144,3142,1,0,0,0, + 3144,3145,1,0,0,0,3145,3146,1,0,0,0,3146,3147,5,3,0,0,3147,3309, + 1,0,0,0,3148,3149,5,157,0,0,3149,3150,5,2,0,0,3150,3153,3,220,110, + 0,3151,3152,5,138,0,0,3152,3154,5,199,0,0,3153,3151,1,0,0,0,3153, + 3154,1,0,0,0,3154,3155,1,0,0,0,3155,3156,5,3,0,0,3156,3309,1,0,0, + 0,3157,3158,5,225,0,0,3158,3159,5,2,0,0,3159,3160,3,232,116,0,3160, + 3161,5,140,0,0,3161,3162,3,232,116,0,3162,3163,5,3,0,0,3163,3309, + 1,0,0,0,3164,3309,3,240,120,0,3165,3309,5,363,0,0,3166,3167,3,312, + 156,0,3167,3168,5,5,0,0,3168,3169,5,363,0,0,3169,3309,1,0,0,0,3170, + 3171,5,2,0,0,3171,3174,3,208,104,0,3172,3173,5,4,0,0,3173,3175,3, + 208,104,0,3174,3172,1,0,0,0,3175,3176,1,0,0,0,3176,3174,1,0,0,0, + 3176,3177,1,0,0,0,3177,3178,1,0,0,0,3178,3179,5,3,0,0,3179,3309, + 1,0,0,0,3180,3181,5,2,0,0,3181,3182,3,12,6,0,3182,3183,5,3,0,0,3183, + 3309,1,0,0,0,3184,3185,5,136,0,0,3185,3186,5,2,0,0,3186,3187,3,220, + 110,0,3187,3188,5,3,0,0,3188,3309,1,0,0,0,3189,3190,3,308,154,0, + 3190,3202,5,2,0,0,3191,3193,3,154,77,0,3192,3191,1,0,0,0,3192,3193, + 1,0,0,0,3193,3194,1,0,0,0,3194,3199,3,224,112,0,3195,3196,5,4,0, + 0,3196,3198,3,224,112,0,3197,3195,1,0,0,0,3198,3201,1,0,0,0,3199, + 3197,1,0,0,0,3199,3200,1,0,0,0,3200,3203,1,0,0,0,3201,3199,1,0,0, + 0,3202,3192,1,0,0,0,3202,3203,1,0,0,0,3203,3204,1,0,0,0,3204,3211, + 5,3,0,0,3205,3206,5,114,0,0,3206,3207,5,2,0,0,3207,3208,5,344,0, + 0,3208,3209,3,228,114,0,3209,3210,5,3,0,0,3210,3212,1,0,0,0,3211, + 3205,1,0,0,0,3211,3212,1,0,0,0,3212,3215,1,0,0,0,3213,3214,7,50, + 0,0,3214,3216,5,199,0,0,3215,3213,1,0,0,0,3215,3216,1,0,0,0,3216, + 3219,1,0,0,0,3217,3218,5,213,0,0,3218,3220,3,300,150,0,3219,3217, + 1,0,0,0,3219,3220,1,0,0,0,3220,3309,1,0,0,0,3221,3222,3,318,159, + 0,3222,3223,5,372,0,0,3223,3224,3,220,110,0,3224,3309,1,0,0,0,3225, + 3226,5,2,0,0,3226,3229,3,318,159,0,3227,3228,5,4,0,0,3228,3230,3, + 318,159,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,3233,1,0,0,0,3233,3234,5,3,0,0,3234,3235, + 5,372,0,0,3235,3236,3,220,110,0,3236,3309,1,0,0,0,3237,3309,3,318, + 159,0,3238,3239,5,2,0,0,3239,3240,3,220,110,0,3240,3241,5,3,0,0, + 3241,3309,1,0,0,0,3242,3243,5,110,0,0,3243,3244,5,2,0,0,3244,3245, + 3,318,159,0,3245,3246,5,123,0,0,3246,3247,3,232,116,0,3247,3248, + 5,3,0,0,3248,3309,1,0,0,0,3249,3250,7,51,0,0,3250,3251,5,2,0,0,3251, + 3252,3,232,116,0,3252,3253,7,52,0,0,3253,3256,3,232,116,0,3254,3255, + 7,53,0,0,3255,3257,3,232,116,0,3256,3254,1,0,0,0,3256,3257,1,0,0, + 0,3257,3258,1,0,0,0,3258,3259,5,3,0,0,3259,3309,1,0,0,0,3260,3261, + 5,315,0,0,3261,3263,5,2,0,0,3262,3264,7,54,0,0,3263,3262,1,0,0,0, + 3263,3264,1,0,0,0,3264,3266,1,0,0,0,3265,3267,3,232,116,0,3266,3265, + 1,0,0,0,3266,3267,1,0,0,0,3267,3268,1,0,0,0,3268,3269,5,123,0,0, + 3269,3270,3,232,116,0,3270,3271,5,3,0,0,3271,3309,1,0,0,0,3272,3273, + 5,215,0,0,3273,3274,5,2,0,0,3274,3275,3,232,116,0,3275,3276,5,224, + 0,0,3276,3277,3,232,116,0,3277,3278,5,123,0,0,3278,3281,3,232,116, + 0,3279,3280,5,119,0,0,3280,3282,3,232,116,0,3281,3279,1,0,0,0,3281, + 3282,1,0,0,0,3282,3283,1,0,0,0,3283,3284,5,3,0,0,3284,3309,1,0,0, + 0,3285,3286,7,55,0,0,3286,3287,5,2,0,0,3287,3288,3,232,116,0,3288, + 3289,5,3,0,0,3289,3290,5,347,0,0,3290,3291,5,130,0,0,3291,3292,5, + 2,0,0,3292,3293,5,209,0,0,3293,3294,5,31,0,0,3294,3295,3,88,44,0, + 3295,3302,5,3,0,0,3296,3297,5,114,0,0,3297,3298,5,2,0,0,3298,3299, + 5,344,0,0,3299,3300,3,228,114,0,3300,3301,5,3,0,0,3301,3303,1,0, + 0,0,3302,3296,1,0,0,0,3302,3303,1,0,0,0,3303,3306,1,0,0,0,3304,3305, + 5,213,0,0,3305,3307,3,300,150,0,3306,3304,1,0,0,0,3306,3307,1,0, + 0,0,3307,3309,1,0,0,0,3308,3059,1,0,0,0,3308,3061,1,0,0,0,3308,3073, + 1,0,0,0,3308,3085,1,0,0,0,3308,3097,1,0,0,0,3308,3110,1,0,0,0,3308, + 3117,1,0,0,0,3308,3130,1,0,0,0,3308,3139,1,0,0,0,3308,3148,1,0,0, + 0,3308,3157,1,0,0,0,3308,3164,1,0,0,0,3308,3165,1,0,0,0,3308,3166, + 1,0,0,0,3308,3170,1,0,0,0,3308,3180,1,0,0,0,3308,3184,1,0,0,0,3308, + 3189,1,0,0,0,3308,3221,1,0,0,0,3308,3225,1,0,0,0,3308,3237,1,0,0, + 0,3308,3238,1,0,0,0,3308,3242,1,0,0,0,3308,3249,1,0,0,0,3308,3260, + 1,0,0,0,3308,3272,1,0,0,0,3308,3285,1,0,0,0,3309,3320,1,0,0,0,3310, + 3311,10,9,0,0,3311,3312,5,6,0,0,3312,3313,3,232,116,0,3313,3314, + 5,7,0,0,3314,3319,1,0,0,0,3315,3316,10,7,0,0,3316,3317,5,5,0,0,3317, + 3319,3,318,159,0,3318,3310,1,0,0,0,3318,3315,1,0,0,0,3319,3322,1, + 0,0,0,3320,3318,1,0,0,0,3320,3321,1,0,0,0,3321,237,1,0,0,0,3322, + 3320,1,0,0,0,3323,3331,5,71,0,0,3324,3331,5,303,0,0,3325,3331,5, + 304,0,0,3326,3331,5,305,0,0,3327,3331,5,149,0,0,3328,3331,5,133, + 0,0,3329,3331,3,318,159,0,3330,3323,1,0,0,0,3330,3324,1,0,0,0,3330, + 3325,1,0,0,0,3330,3326,1,0,0,0,3330,3327,1,0,0,0,3330,3328,1,0,0, + 0,3330,3329,1,0,0,0,3331,239,1,0,0,0,3332,3348,5,198,0,0,3333,3348, + 5,376,0,0,3334,3335,5,371,0,0,3335,3348,3,318,159,0,3336,3348,3, + 250,125,0,3337,3338,3,238,119,0,3338,3339,3,328,164,0,3339,3348, + 1,0,0,0,3340,3348,3,324,162,0,3341,3348,3,248,124,0,3342,3344,3, + 328,164,0,3343,3342,1,0,0,0,3344,3345,1,0,0,0,3345,3343,1,0,0,0, + 3345,3346,1,0,0,0,3346,3348,1,0,0,0,3347,3332,1,0,0,0,3347,3333, + 1,0,0,0,3347,3334,1,0,0,0,3347,3336,1,0,0,0,3347,3337,1,0,0,0,3347, + 3340,1,0,0,0,3347,3341,1,0,0,0,3347,3343,1,0,0,0,3348,241,1,0,0, + 0,3349,3350,7,56,0,0,3350,243,1,0,0,0,3351,3352,7,57,0,0,3352,245, + 1,0,0,0,3353,3354,7,58,0,0,3354,247,1,0,0,0,3355,3356,7,59,0,0,3356, + 249,1,0,0,0,3357,3360,5,149,0,0,3358,3361,3,252,126,0,3359,3361, + 3,256,128,0,3360,3358,1,0,0,0,3360,3359,1,0,0,0,3361,251,1,0,0,0, + 3362,3364,3,254,127,0,3363,3365,3,258,129,0,3364,3363,1,0,0,0,3364, + 3365,1,0,0,0,3365,253,1,0,0,0,3366,3367,3,260,130,0,3367,3368,3, + 262,131,0,3368,3370,1,0,0,0,3369,3366,1,0,0,0,3370,3371,1,0,0,0, + 3371,3369,1,0,0,0,3371,3372,1,0,0,0,3372,255,1,0,0,0,3373,3376,3, + 258,129,0,3374,3377,3,254,127,0,3375,3377,3,258,129,0,3376,3374, + 1,0,0,0,3376,3375,1,0,0,0,3376,3377,1,0,0,0,3377,257,1,0,0,0,3378, + 3379,3,260,130,0,3379,3380,3,264,132,0,3380,3381,5,309,0,0,3381, + 3382,3,264,132,0,3382,259,1,0,0,0,3383,3385,7,60,0,0,3384,3383,1, + 0,0,0,3384,3385,1,0,0,0,3385,3389,1,0,0,0,3386,3390,5,382,0,0,3387, + 3390,5,384,0,0,3388,3390,3,328,164,0,3389,3386,1,0,0,0,3389,3387, + 1,0,0,0,3389,3388,1,0,0,0,3390,261,1,0,0,0,3391,3392,7,61,0,0,3392, + 263,1,0,0,0,3393,3394,7,62,0,0,3394,265,1,0,0,0,3395,3399,5,116, + 0,0,3396,3397,5,9,0,0,3397,3399,3,314,157,0,3398,3395,1,0,0,0,3398, + 3396,1,0,0,0,3399,267,1,0,0,0,3400,3431,5,27,0,0,3401,3431,5,308, + 0,0,3402,3431,5,32,0,0,3403,3431,5,276,0,0,3404,3431,5,272,0,0,3405, + 3431,5,150,0,0,3406,3431,5,151,0,0,3407,3431,5,25,0,0,3408,3431, + 5,174,0,0,3409,3431,5,117,0,0,3410,3431,5,234,0,0,3411,3431,5,95, + 0,0,3412,3431,5,71,0,0,3413,3431,5,303,0,0,3414,3431,5,305,0,0,3415, + 3431,5,304,0,0,3416,3431,5,285,0,0,3417,3431,5,41,0,0,3418,3431, + 5,40,0,0,3419,3431,5,334,0,0,3420,3431,5,26,0,0,3421,3431,5,80,0, + 0,3422,3431,5,79,0,0,3423,3431,5,200,0,0,3424,3431,5,340,0,0,3425, + 3431,5,149,0,0,3426,3431,5,19,0,0,3427,3431,5,286,0,0,3428,3431, + 5,177,0,0,3429,3431,3,318,159,0,3430,3400,1,0,0,0,3430,3401,1,0, + 0,0,3430,3402,1,0,0,0,3430,3403,1,0,0,0,3430,3404,1,0,0,0,3430,3405, + 1,0,0,0,3430,3406,1,0,0,0,3430,3407,1,0,0,0,3430,3408,1,0,0,0,3430, + 3409,1,0,0,0,3430,3410,1,0,0,0,3430,3411,1,0,0,0,3430,3412,1,0,0, + 0,3430,3413,1,0,0,0,3430,3414,1,0,0,0,3430,3415,1,0,0,0,3430,3416, + 1,0,0,0,3430,3417,1,0,0,0,3430,3418,1,0,0,0,3430,3419,1,0,0,0,3430, + 3420,1,0,0,0,3430,3421,1,0,0,0,3430,3422,1,0,0,0,3430,3423,1,0,0, + 0,3430,3424,1,0,0,0,3430,3425,1,0,0,0,3430,3426,1,0,0,0,3430,3427, + 1,0,0,0,3430,3428,1,0,0,0,3430,3429,1,0,0,0,3431,269,1,0,0,0,3432, + 3433,5,19,0,0,3433,3434,5,356,0,0,3434,3435,3,270,135,0,3435,3436, + 5,358,0,0,3436,3486,1,0,0,0,3437,3438,5,177,0,0,3438,3439,5,356, + 0,0,3439,3440,3,270,135,0,3440,3441,5,4,0,0,3441,3442,3,270,135, + 0,3442,3443,5,358,0,0,3443,3486,1,0,0,0,3444,3458,5,286,0,0,3445, + 3454,5,356,0,0,3446,3451,3,294,147,0,3447,3448,5,4,0,0,3448,3450, + 3,294,147,0,3449,3447,1,0,0,0,3450,3453,1,0,0,0,3451,3449,1,0,0, + 0,3451,3452,1,0,0,0,3452,3455,1,0,0,0,3453,3451,1,0,0,0,3454,3446, + 1,0,0,0,3454,3455,1,0,0,0,3455,3456,1,0,0,0,3456,3459,5,358,0,0, + 3457,3459,5,354,0,0,3458,3445,1,0,0,0,3458,3457,1,0,0,0,3459,3486, + 1,0,0,0,3460,3461,5,149,0,0,3461,3464,7,63,0,0,3462,3463,5,309,0, + 0,3463,3465,5,186,0,0,3464,3462,1,0,0,0,3464,3465,1,0,0,0,3465,3486, + 1,0,0,0,3466,3467,5,149,0,0,3467,3470,7,64,0,0,3468,3469,5,309,0, + 0,3469,3471,7,65,0,0,3470,3468,1,0,0,0,3470,3471,1,0,0,0,3471,3486, + 1,0,0,0,3472,3483,3,268,134,0,3473,3474,5,2,0,0,3474,3479,5,382, + 0,0,3475,3476,5,4,0,0,3476,3478,5,382,0,0,3477,3475,1,0,0,0,3478, + 3481,1,0,0,0,3479,3477,1,0,0,0,3479,3480,1,0,0,0,3480,3482,1,0,0, + 0,3481,3479,1,0,0,0,3482,3484,5,3,0,0,3483,3473,1,0,0,0,3483,3484, + 1,0,0,0,3484,3486,1,0,0,0,3485,3432,1,0,0,0,3485,3437,1,0,0,0,3485, + 3444,1,0,0,0,3485,3460,1,0,0,0,3485,3466,1,0,0,0,3485,3472,1,0,0, + 0,3486,271,1,0,0,0,3487,3492,3,274,137,0,3488,3489,5,4,0,0,3489, + 3491,3,274,137,0,3490,3488,1,0,0,0,3491,3494,1,0,0,0,3492,3490,1, + 0,0,0,3492,3493,1,0,0,0,3493,273,1,0,0,0,3494,3492,1,0,0,0,3495, + 3496,3,78,39,0,3496,3500,3,270,135,0,3497,3499,3,280,140,0,3498, + 3497,1,0,0,0,3499,3502,1,0,0,0,3500,3498,1,0,0,0,3500,3501,1,0,0, + 0,3501,275,1,0,0,0,3502,3500,1,0,0,0,3503,3508,3,278,139,0,3504, + 3505,5,4,0,0,3505,3507,3,278,139,0,3506,3504,1,0,0,0,3507,3510,1, + 0,0,0,3508,3506,1,0,0,0,3508,3509,1,0,0,0,3509,277,1,0,0,0,3510, + 3508,1,0,0,0,3511,3512,3,74,37,0,3512,3516,3,270,135,0,3513,3515, + 3,280,140,0,3514,3513,1,0,0,0,3515,3518,1,0,0,0,3516,3514,1,0,0, + 0,3516,3517,1,0,0,0,3517,279,1,0,0,0,3518,3516,1,0,0,0,3519,3520, + 5,197,0,0,3520,3527,5,198,0,0,3521,3522,5,82,0,0,3522,3527,3,220, + 110,0,3523,3524,5,51,0,0,3524,3527,3,328,164,0,3525,3527,3,266,133, + 0,3526,3519,1,0,0,0,3526,3521,1,0,0,0,3526,3523,1,0,0,0,3526,3525, + 1,0,0,0,3527,281,1,0,0,0,3528,3529,7,66,0,0,3529,3530,3,220,110, + 0,3530,283,1,0,0,0,3531,3536,3,286,143,0,3532,3533,5,4,0,0,3533, + 3535,3,286,143,0,3534,3532,1,0,0,0,3535,3538,1,0,0,0,3536,3534,1, + 0,0,0,3536,3537,1,0,0,0,3537,285,1,0,0,0,3538,3536,1,0,0,0,3539, + 3540,3,314,157,0,3540,3543,3,270,135,0,3541,3542,5,197,0,0,3542, + 3544,5,198,0,0,3543,3541,1,0,0,0,3543,3544,1,0,0,0,3544,3547,1,0, + 0,0,3545,3546,5,51,0,0,3546,3548,3,328,164,0,3547,3545,1,0,0,0,3547, + 3548,1,0,0,0,3548,287,1,0,0,0,3549,3554,3,290,145,0,3550,3551,5, + 4,0,0,3551,3553,3,290,145,0,3552,3550,1,0,0,0,3553,3556,1,0,0,0, + 3554,3552,1,0,0,0,3554,3555,1,0,0,0,3555,289,1,0,0,0,3556,3554,1, + 0,0,0,3557,3558,3,78,39,0,3558,3562,3,270,135,0,3559,3561,3,292, + 146,0,3560,3559,1,0,0,0,3561,3564,1,0,0,0,3562,3560,1,0,0,0,3562, + 3563,1,0,0,0,3563,291,1,0,0,0,3564,3562,1,0,0,0,3565,3566,5,197, + 0,0,3566,3579,5,198,0,0,3567,3568,5,82,0,0,3568,3579,3,220,110,0, + 3569,3570,5,127,0,0,3570,3571,5,12,0,0,3571,3572,5,20,0,0,3572,3573, + 5,2,0,0,3573,3574,3,220,110,0,3574,3575,5,3,0,0,3575,3579,1,0,0, + 0,3576,3577,5,51,0,0,3577,3579,3,328,164,0,3578,3565,1,0,0,0,3578, + 3567,1,0,0,0,3578,3569,1,0,0,0,3578,3576,1,0,0,0,3579,293,1,0,0, + 0,3580,3582,3,318,159,0,3581,3583,5,371,0,0,3582,3581,1,0,0,0,3582, + 3583,1,0,0,0,3583,3584,1,0,0,0,3584,3587,3,270,135,0,3585,3586,5, + 197,0,0,3586,3588,5,198,0,0,3587,3585,1,0,0,0,3587,3588,1,0,0,0, + 3588,3591,1,0,0,0,3589,3590,5,51,0,0,3590,3592,3,328,164,0,3591, + 3589,1,0,0,0,3591,3592,1,0,0,0,3592,295,1,0,0,0,3593,3594,5,343, + 0,0,3594,3595,3,220,110,0,3595,3596,5,300,0,0,3596,3597,3,220,110, + 0,3597,297,1,0,0,0,3598,3599,5,345,0,0,3599,3600,3,314,157,0,3600, + 3601,5,20,0,0,3601,3609,3,300,150,0,3602,3603,5,4,0,0,3603,3604, + 3,314,157,0,3604,3605,5,20,0,0,3605,3606,3,300,150,0,3606,3608,1, + 0,0,0,3607,3602,1,0,0,0,3608,3611,1,0,0,0,3609,3607,1,0,0,0,3609, + 3610,1,0,0,0,3610,299,1,0,0,0,3611,3609,1,0,0,0,3612,3659,3,314, + 157,0,3613,3614,5,2,0,0,3614,3615,3,314,157,0,3615,3616,5,3,0,0, + 3616,3659,1,0,0,0,3617,3652,5,2,0,0,3618,3619,5,44,0,0,3619,3620, + 5,31,0,0,3620,3625,3,220,110,0,3621,3622,5,4,0,0,3622,3624,3,220, + 110,0,3623,3621,1,0,0,0,3624,3627,1,0,0,0,3625,3623,1,0,0,0,3625, + 3626,1,0,0,0,3626,3653,1,0,0,0,3627,3625,1,0,0,0,3628,3629,7,35, + 0,0,3629,3630,5,31,0,0,3630,3635,3,220,110,0,3631,3632,5,4,0,0,3632, + 3634,3,220,110,0,3633,3631,1,0,0,0,3634,3637,1,0,0,0,3635,3633,1, + 0,0,0,3635,3636,1,0,0,0,3636,3639,1,0,0,0,3637,3635,1,0,0,0,3638, + 3628,1,0,0,0,3638,3639,1,0,0,0,3639,3650,1,0,0,0,3640,3641,7,36, + 0,0,3641,3642,5,31,0,0,3642,3647,3,88,44,0,3643,3644,5,4,0,0,3644, + 3646,3,88,44,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,3651,1,0,0,0,3649,3647,1,0,0,0,3650,3640, + 1,0,0,0,3650,3651,1,0,0,0,3651,3653,1,0,0,0,3652,3618,1,0,0,0,3652, + 3638,1,0,0,0,3653,3655,1,0,0,0,3654,3656,3,302,151,0,3655,3654,1, + 0,0,0,3655,3656,1,0,0,0,3656,3657,1,0,0,0,3657,3659,5,3,0,0,3658, + 3612,1,0,0,0,3658,3613,1,0,0,0,3658,3617,1,0,0,0,3659,301,1,0,0, + 0,3660,3661,7,67,0,0,3661,3669,3,304,152,0,3662,3663,7,67,0,0,3663, + 3664,5,24,0,0,3664,3665,3,304,152,0,3665,3666,5,14,0,0,3666,3667, + 3,304,152,0,3667,3669,1,0,0,0,3668,3660,1,0,0,0,3668,3662,1,0,0, + 0,3669,303,1,0,0,0,3670,3671,5,321,0,0,3671,3678,7,68,0,0,3672,3673, + 5,62,0,0,3673,3678,5,257,0,0,3674,3675,3,220,110,0,3675,3676,7,68, + 0,0,3676,3678,1,0,0,0,3677,3670,1,0,0,0,3677,3672,1,0,0,0,3677,3674, + 1,0,0,0,3678,305,1,0,0,0,3679,3684,3,312,156,0,3680,3681,5,4,0,0, + 3681,3683,3,312,156,0,3682,3680,1,0,0,0,3683,3686,1,0,0,0,3684,3682, + 1,0,0,0,3684,3685,1,0,0,0,3685,307,1,0,0,0,3686,3684,1,0,0,0,3687, + 3688,5,136,0,0,3688,3689,5,2,0,0,3689,3690,3,220,110,0,3690,3691, + 5,3,0,0,3691,3697,1,0,0,0,3692,3697,3,312,156,0,3693,3697,5,114, + 0,0,3694,3697,5,161,0,0,3695,3697,5,250,0,0,3696,3687,1,0,0,0,3696, + 3692,1,0,0,0,3696,3693,1,0,0,0,3696,3694,1,0,0,0,3696,3695,1,0,0, + 0,3697,309,1,0,0,0,3698,3699,3,312,156,0,3699,311,1,0,0,0,3700,3705, + 3,318,159,0,3701,3702,5,5,0,0,3702,3704,3,318,159,0,3703,3701,1, + 0,0,0,3704,3707,1,0,0,0,3705,3703,1,0,0,0,3705,3706,1,0,0,0,3706, + 313,1,0,0,0,3707,3705,1,0,0,0,3708,3709,3,318,159,0,3709,3710,3, + 316,158,0,3710,315,1,0,0,0,3711,3712,5,362,0,0,3712,3714,3,318,159, + 0,3713,3711,1,0,0,0,3714,3715,1,0,0,0,3715,3713,1,0,0,0,3715,3716, + 1,0,0,0,3716,3719,1,0,0,0,3717,3719,1,0,0,0,3718,3713,1,0,0,0,3718, + 3717,1,0,0,0,3719,317,1,0,0,0,3720,3723,3,320,160,0,3721,3723,3, + 332,166,0,3722,3720,1,0,0,0,3722,3721,1,0,0,0,3723,319,1,0,0,0,3724, + 3729,5,388,0,0,3725,3729,3,322,161,0,3726,3729,3,330,165,0,3727, + 3729,3,334,167,0,3728,3724,1,0,0,0,3728,3725,1,0,0,0,3728,3726,1, + 0,0,0,3728,3727,1,0,0,0,3729,321,1,0,0,0,3730,3731,7,69,0,0,3731, + 323,1,0,0,0,3732,3734,5,362,0,0,3733,3732,1,0,0,0,3733,3734,1,0, + 0,0,3734,3735,1,0,0,0,3735,3736,7,70,0,0,3736,325,1,0,0,0,3737,3738, + 5,319,0,0,3738,3751,3,270,135,0,3739,3740,5,51,0,0,3740,3751,3,328, + 164,0,3741,3751,3,266,133,0,3742,3743,7,71,0,0,3743,3744,5,197,0, + 0,3744,3751,5,198,0,0,3745,3746,5,269,0,0,3746,3747,5,82,0,0,3747, + 3751,3,220,110,0,3748,3749,5,96,0,0,3749,3751,5,82,0,0,3750,3737, + 1,0,0,0,3750,3739,1,0,0,0,3750,3741,1,0,0,0,3750,3742,1,0,0,0,3750, + 3745,1,0,0,0,3750,3748,1,0,0,0,3751,327,1,0,0,0,3752,3753,7,72,0, + 0,3753,329,1,0,0,0,3754,3755,7,73,0,0,3755,331,1,0,0,0,3756,3757, + 7,74,0,0,3757,333,1,0,0,0,3758,3759,7,75,0,0,3759,335,1,0,0,0,508, + 339,346,350,355,362,367,377,379,399,403,409,412,415,419,422,426, + 433,436,440,443,448,461,463,468,477,480,484,487,493,504,510,515, + 548,558,569,580,591,596,605,609,615,619,624,630,642,650,656,667, + 671,676,691,695,702,706,712,742,746,751,758,764,767,770,774,778, + 787,789,798,801,810,815,821,828,831,835,850,853,859,863,880,882, + 890,894,900,903,907,910,916,921,925,932,935,938,945,950,959,967, + 973,976,979,985,989,994,997,1001,1003,1011,1019,1022,1029,1032,1035, + 1044,1049,1055,1060,1063,1067,1070,1074,1084,1089,1102,1105,1113, + 1119,1122,1125,1130,1138,1143,1149,1155,1158,1165,1172,1180,1192, + 1200,1227,1230,1236,1245,1254,1260,1265,1270,1277,1282,1287,1294, + 1304,1307,1313,1320,1324,1387,1395,1402,1410,1422,1427,1430,1438, + 1443,1445,1453,1458,1462,1465,1473,1478,1487,1492,1495,1500,1504, + 1509,1511,1516,1525,1533,1539,1548,1555,1564,1569,1572,1597,1599, + 1611,1618,1621,1628,1632,1638,1646,1653,1656,1664,1675,1686,1694, + 1700,1711,1718,1725,1737,1745,1751,1757,1760,1776,1783,1794,1803, + 1806,1815,1818,1827,1830,1839,1842,1845,1850,1852,1856,1864,1870, + 1876,1879,1881,1889,1899,1908,1912,1915,1919,1923,1931,1935,1938, + 1941,1944,1948,1952,1957,1961,1964,1967,1970,1974,1979,1983,1986, + 1989,1992,1994,2000,2007,2012,2015,2018,2022,2032,2036,2038,2041, + 2045,2051,2055,2066,2074,2076,2083,2087,2099,2106,2121,2126,2133, + 2149,2154,2167,2172,2180,2186,2190,2193,2196,2203,2206,2212,2221, + 2231,2246,2251,2253,2258,2267,2277,2282,2286,2291,2298,2303,2307, + 2310,2313,2327,2340,2345,2349,2352,2357,2362,2366,2369,2381,2392, + 2405,2416,2421,2424,2428,2431,2443,2452,2455,2460,2467,2470,2476, + 2482,2484,2487,2492,2496,2502,2506,2509,2514,2517,2522,2524,2530, + 2535,2542,2545,2563,2565,2568,2579,2588,2595,2603,2611,2616,2619, + 2622,2630,2638,2648,2660,2663,2668,2673,2680,2687,2689,2702,2708, + 2710,2720,2726,2728,2736,2740,2743,2747,2749,2758,2770,2772,2779, + 2786,2792,2798,2800,2807,2815,2823,2829,2834,2841,2847,2850,2854, + 2856,2863,2872,2879,2889,2894,2898,2908,2915,2928,2930,2938,2940, + 2944,2952,2961,2967,2975,2980,2992,2997,3000,3006,3010,3015,3020, + 3025,3031,3052,3054,3065,3077,3089,3093,3102,3106,3124,3127,3135, + 3144,3153,3176,3192,3199,3202,3211,3215,3219,3231,3256,3263,3266, + 3281,3302,3306,3308,3318,3320,3330,3345,3347,3360,3364,3371,3376, + 3384,3389,3398,3430,3451,3454,3458,3464,3470,3479,3483,3485,3492, + 3500,3508,3516,3526,3536,3543,3547,3554,3562,3578,3582,3587,3591, + 3609,3625,3635,3638,3647,3650,3652,3655,3658,3668,3677,3684,3696, + 3705,3715,3718,3722,3728,3733,3750 ]; private static __ATN: antlr.ATN; @@ -21516,8 +20733,14 @@ export class ShowNamespacesContext extends StatementContext { public KW_SHOW(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SHOW, 0)!; } - public namespaces(): NamespacesContext { - return this.getRuleContext(0, NamespacesContext)!; + public KW_NAMESPACES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NAMESPACES, 0); + } + public KW_DATABASES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DATABASES, 0); + } + public KW_SCHEMAS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SCHEMAS, 0); } public multipartIdentifier(): MultipartIdentifierContext | null { return this.getRuleContext(0, MultipartIdentifierContext); @@ -21611,12 +20834,24 @@ export class ReplaceTableContext extends StatementContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public replaceTableHeader(): ReplaceTableHeaderContext { - return this.getRuleContext(0, ReplaceTableHeaderContext)!; + public KW_REPLACE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_REPLACE, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; + } + public tableNameCreate(): TableNameCreateContext { + return this.getRuleContext(0, TableNameCreateContext)!; } public createTableClauses(): CreateTableClausesContext { return this.getRuleContext(0, CreateTableClausesContext)!; } + public KW_CREATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CREATE, 0); + } + public KW_OR(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_OR, 0); + } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); } @@ -21770,8 +21005,11 @@ export class SetNamespaceLocationContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public locationSpec(): LocationSpecContext { - return this.getRuleContext(0, LocationSpecContext)!; + public KW_LOCATION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LOCATION, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetNamespaceLocation) { @@ -21857,8 +21095,8 @@ export class ResetConfigContext extends StatementContext { public KW_RESET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_RESET, 0)!; } - public configKey(): ConfigKeyContext { - return this.getRuleContext(0, ConfigKeyContext)!; + public quotedIdentifier(): QuotedIdentifierContext { + return this.getRuleContext(0, QuotedIdentifierContext)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterResetConfig) { @@ -21889,8 +21127,8 @@ export class SetConfigAnyKeyContext extends StatementContext { public EQ(): antlr.TerminalNode { return this.getToken(SparkSqlParser.EQ, 0)!; } - public configValue(): ConfigValueContext { - return this.getRuleContext(0, ConfigValueContext)!; + public BACKQUOTED_IDENTIFIER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.BACKQUOTED_IDENTIFIER, 0)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetConfigAnyKey) { @@ -22105,8 +21343,14 @@ export class CreateFunctionContext extends StatementContext { public KW_AS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_AS, 0)!; } - public stringLit(): StringLitContext { - return this.getRuleContext(0, StringLitContext)!; + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); } public KW_OR(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_OR, 0); @@ -22123,14 +21367,14 @@ export class CreateFunctionContext extends StatementContext { public KW_USING(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_USING, 0); } - public resource(): ResourceContext[]; - public resource(i: number): ResourceContext | null; - public resource(i?: number): ResourceContext[] | ResourceContext | null { + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(ResourceContext); + return this.getRuleContexts(IdentifierContext); } - return this.getRuleContext(i, ResourceContext); + return this.getRuleContext(i, IdentifierContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -22333,57 +21577,31 @@ export class AlterTableAddColumnContext extends StatementContext { } } } -export class CommentNamespaceContext extends StatementContext { +export class CreateTableContext extends StatementContext { public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public KW_COMMENT(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_COMMENT, 0)!; - } - public KW_ON(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_ON, 0)!; - } - public namespace(): NamespaceContext { - return this.getRuleContext(0, NamespaceContext)!; - } - public namespaceName(): NamespaceNameContext { - return this.getRuleContext(0, NamespaceNameContext)!; - } - public KW_IS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_IS, 0)!; - } - public commentStr(): CommentStrContext { - return this.getRuleContext(0, CommentStrContext)!; + public KW_CREATE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_CREATE, 0)!; } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCommentNamespace) { - listener.enterCommentNamespace(this); - } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TABLE, 0)!; } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCommentNamespace) { - listener.exitCommentNamespace(this); - } + public tableNameCreate(): TableNameCreateContext { + return this.getRuleContext(0, TableNameCreateContext)!; } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCommentNamespace) { - return visitor.visitCommentNamespace(this); - } else { - return visitor.visitChildren(this); - } + public createTableClauses(): CreateTableClausesContext { + return this.getRuleContext(0, CreateTableClausesContext)!; } -} -export class CreateTableContext extends StatementContext { - public constructor(ctx: StatementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public KW_TEMPORARY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); } - public createTableHeader(): CreateTableHeaderContext { - return this.getRuleContext(0, CreateTableHeaderContext)!; + public KW_EXTERNAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXTERNAL, 0); } - public createTableClauses(): CreateTableClausesContext { - return this.getRuleContext(0, CreateTableClausesContext)!; + public ifNotExists(): IfNotExistsContext | null { + return this.getRuleContext(0, IfNotExistsContext); } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); @@ -22547,15 +21765,6 @@ export class CreateTableLikeContext extends StatementContext { return this.getRuleContext(i, CreateFileFormatContext); } - public locationSpec(): LocationSpecContext[]; - public locationSpec(i: number): LocationSpecContext | null; - public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(LocationSpecContext); - } - - return this.getRuleContext(i, LocationSpecContext); - } public tableLifecycle(): TableLifecycleContext[]; public tableLifecycle(i: number): TableLifecycleContext | null; public tableLifecycle(i?: number): TableLifecycleContext[] | TableLifecycleContext | null { @@ -22565,6 +21774,24 @@ export class CreateTableLikeContext extends StatementContext { return this.getRuleContext(i, TableLifecycleContext); } + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } + } + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); + } public KW_TBLPROPERTIES(): antlr.TerminalNode[]; public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -22929,14 +22156,14 @@ export class SetConfigContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public configKey(): ConfigKeyContext { - return this.getRuleContext(0, ConfigKeyContext)!; + public quotedIdentifier(): QuotedIdentifierContext { + return this.getRuleContext(0, QuotedIdentifierContext)!; } public EQ(): antlr.TerminalNode { return this.getToken(SparkSqlParser.EQ, 0)!; } - public configValue(): ConfigValueContext { - return this.getRuleContext(0, ConfigValueContext)!; + public BACKQUOTED_IDENTIFIER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.BACKQUOTED_IDENTIFIER, 0)!; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetConfig) { @@ -23071,8 +22298,14 @@ export class OptimizeTableContext extends StatementContext { public tableName(): TableNameContext { return this.getRuleContext(0, TableNameContext)!; } - public zorderClause(): ZorderClauseContext { - return this.getRuleContext(0, ZorderClauseContext)!; + public KW_ZORDER(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_ZORDER, 0)!; + } + public KW_BY(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_BY, 0)!; + } + public columnNameSeq(): ColumnNameSeqContext { + return this.getRuleContext(0, ColumnNameSeqContext)!; } public whereClause(): WhereClauseContext | null { return this.getRuleContext(0, WhereClauseContext); @@ -23109,8 +22342,11 @@ export class SetTimeZoneContext extends StatementContext { public KW_ZONE(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_ZONE, 0)!; } - public timezone(): TimezoneContext { - return this.getRuleContext(0, TimezoneContext)!; + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_LOCAL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LOCAL, 0); } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterSetTimeZone) { @@ -23208,8 +22444,8 @@ export class SetConfigAndValueContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public configKey(): ConfigKeyContext { - return this.getRuleContext(0, ConfigKeyContext)!; + public quotedIdentifier(): QuotedIdentifierContext { + return this.getRuleContext(0, QuotedIdentifierContext)!; } public EQ(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.EQ, 0); @@ -23235,6 +22471,7 @@ export class SetConfigAndValueContext extends StatementContext { export class CreateMaterializedViewContext extends StatementContext { public _options?: PropertyListContext; public _partitioning?: PartitionFieldListContext; + public _comment?: StringLitContext; public _tableProps?: PropertyListContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); @@ -23300,24 +22537,6 @@ export class CreateMaterializedViewContext extends StatementContext { return this.getRuleContext(i, CreateFileFormatContext); } - public locationSpec(): LocationSpecContext[]; - public locationSpec(i: number): LocationSpecContext | null; - public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(LocationSpecContext); - } - - return this.getRuleContext(i, LocationSpecContext); - } - public commentSpec(): CommentSpecContext[]; - public commentSpec(i: number): CommentSpecContext | null; - public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(CommentSpecContext); - } - - return this.getRuleContext(i, CommentSpecContext); - } public KW_OPTIONS(): antlr.TerminalNode[]; public KW_OPTIONS(i: number): antlr.TerminalNode | null; public KW_OPTIONS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -23345,6 +22564,33 @@ export class CreateMaterializedViewContext extends StatementContext { return this.getToken(SparkSqlParser.KW_BY, i); } } + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } + } + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); + } + public KW_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } + } public KW_TBLPROPERTIES(): antlr.TerminalNode[]; public KW_TBLPROPERTIES(i: number): antlr.TerminalNode | null; public KW_TBLPROPERTIES(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -23444,6 +22690,7 @@ export class SetTableSerDeContext extends StatementContext { } } export class CreateViewContext extends StatementContext { + public _comment?: StringLitContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -23478,14 +22725,14 @@ export class CreateViewContext extends StatementContext { public identifierCommentList(): IdentifierCommentListContext | null { return this.getRuleContext(0, IdentifierCommentListContext); } - public commentSpec(): CommentSpecContext[]; - public commentSpec(i: number): CommentSpecContext | null; - public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(CommentSpecContext); - } - - return this.getRuleContext(i, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } } public KW_PARTITIONED(): antlr.TerminalNode[]; public KW_PARTITIONED(i: number): antlr.TerminalNode | null; @@ -23535,6 +22782,15 @@ export class CreateViewContext extends StatementContext { public KW_GLOBAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_GLOBAL, 0); } + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { + if (i === undefined) { + return this.getRuleContexts(StringLitContext); + } + + return this.getRuleContext(i, StringLitContext); + } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterCreateView) { listener.enterCreateView(this); @@ -23873,17 +23129,26 @@ export class CommentTableContext extends StatementContext { public KW_ON(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_ON, 0)!; } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_TABLE, 0)!; - } - public tableName(): TableNameContext { - return this.getRuleContext(0, TableNameContext)!; - } public KW_IS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_IS, 0)!; } - public commentStr(): CommentStrContext { - return this.getRuleContext(0, CommentStrContext)!; + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } + public KW_NULL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NULL, 0); + } + public namespace(): NamespaceContext | null { + return this.getRuleContext(0, NamespaceContext); + } + public namespaceName(): NamespaceNameContext | null { + return this.getRuleContext(0, NamespaceNameContext); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterCommentTable) { @@ -24099,6 +23364,7 @@ export class DropVariableContext extends StatementContext { } } export class CreateNamespaceContext extends StatementContext { + public _comment?: StringLitContext; public constructor(ctx: StatementContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -24115,23 +23381,32 @@ export class CreateNamespaceContext extends StatementContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public commentSpec(): CommentSpecContext[]; - public commentSpec(i: number): CommentSpecContext | null; - public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(CommentSpecContext); - } - - return this.getRuleContext(i, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } + } + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } } - public locationSpec(): LocationSpecContext[]; - public locationSpec(i: number): LocationSpecContext | null; - public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { if (i === undefined) { - return this.getRuleContexts(LocationSpecContext); + return this.getRuleContexts(StringLitContext); } - return this.getRuleContext(i, LocationSpecContext); + return this.getRuleContext(i, StringLitContext); } public KW_WITH(): antlr.TerminalNode[]; public KW_WITH(i: number): antlr.TerminalNode | null; @@ -24420,8 +23695,11 @@ export class SetTableLocationContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public locationSpec(): LocationSpecContext { - return this.getRuleContext(0, LocationSpecContext)!; + public KW_LOCATION(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_LOCATION, 0)!; + } + public stringLit(): StringLitContext { + return this.getRuleContext(0, StringLitContext)!; } public partitionSpec(): PartitionSpecContext | null { return this.getRuleContext(0, PartitionSpecContext); @@ -24553,8 +23831,14 @@ export class ShowFunctionsContext extends StatementContext { public KW_FUNCTIONS(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_FUNCTIONS, 0)!; } - public functionKind(): FunctionKindContext | null { - return this.getRuleContext(0, FunctionKindContext); + public KW_USER(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_USER, 0); + } + public KW_SYSTEM(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SYSTEM, 0); + } + public KW_ALL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALL, 0); } public KW_FROM(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FROM, 0); @@ -24651,130 +23935,37 @@ export class SetTablePropertiesContext extends StatementContext { public KW_SET(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SET, 0)!; } - public KW_TBLPROPERTIES(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, 0)!; - } - public propertyList(): PropertyListContext { - return this.getRuleContext(0, PropertyListContext)!; - } - public KW_TABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TABLE, 0); - } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); - } - public KW_VIEW(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_VIEW, 0); - } - public viewName(): ViewNameContext | null { - return this.getRuleContext(0, ViewNameContext); - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterSetTableProperties) { - listener.enterSetTableProperties(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitSetTableProperties) { - listener.exitSetTableProperties(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitSetTableProperties) { - return visitor.visitSetTableProperties(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class TimezoneContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); - } - public KW_LOCAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_LOCAL, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_timezone; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterTimezone) { - listener.enterTimezone(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitTimezone) { - listener.exitTimezone(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitTimezone) { - return visitor.visitTimezone(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConfigKeyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public quotedIdentifier(): QuotedIdentifierContext { - return this.getRuleContext(0, QuotedIdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_configKey; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterConfigKey) { - listener.enterConfigKey(this); - } + public KW_TBLPROPERTIES(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_TBLPROPERTIES, 0)!; } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitConfigKey) { - listener.exitConfigKey(this); - } + public propertyList(): PropertyListContext { + return this.getRuleContext(0, PropertyListContext)!; } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitConfigKey) { - return visitor.visitConfigKey(this); - } else { - return visitor.visitChildren(this); - } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); } -} - - -export class ConfigValueContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); } - public backQuotedIdentifier(): BackQuotedIdentifierContext { - return this.getRuleContext(0, BackQuotedIdentifierContext)!; + public KW_VIEW(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VIEW, 0); } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_configValue; + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterConfigValue) { - listener.enterConfigValue(this); + if(listener.enterSetTableProperties) { + listener.enterSetTableProperties(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitConfigValue) { - listener.exitConfigValue(this); + if(listener.exitSetTableProperties) { + listener.exitSetTableProperties(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitConfigValue) { - return visitor.visitConfigValue(this); + if (visitor.visitSetTableProperties) { + return visitor.visitSetTableProperties(this); } else { return visitor.visitChildren(this); } @@ -24792,12 +23983,12 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_CREATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CREATE, 0); - } public KW_ROLE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ROLE, 0); } + public KW_CREATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CREATE, 0); + } public KW_DROP(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DROP, 0); } @@ -24813,21 +24004,6 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_PRINCIPALS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_PRINCIPALS, 0); } - public KW_ROLES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ROLES, 0); - } - public KW_CURRENT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CURRENT, 0); - } - public KW_EXPORT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXPORT, 0); - } - public KW_TABLE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TABLE, 0); - } - public KW_IMPORT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_IMPORT, 0); - } public KW_COMPACTIONS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_COMPACTIONS, 0); } @@ -24840,21 +24016,36 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_LOCKS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LOCKS, 0); } + public KW_ROLES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ROLES, 0); + } + public KW_CURRENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_CURRENT, 0); + } + public KW_TABLE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_TABLE, 0); + } public KW_INDEX(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_INDEX, 0); } public KW_ALTER(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ALTER, 0); } + public KW_EXPORT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXPORT, 0); + } + public KW_IMPORT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_IMPORT, 0); + } public KW_LOCK(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LOCK, 0); } - public KW_DATABASE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATABASE, 0); - } public KW_UNLOCK(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_UNLOCK, 0); } + public KW_DATABASE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DATABASE, 0); + } public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); } @@ -24870,15 +24061,15 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_CLUSTERED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_CLUSTERED, 0); } - public KW_BY(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_BY, 0); - } public KW_SORTED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SORTED, 0); } public KW_SKEWED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SKEWED, 0); } + public KW_BY(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_BY, 0); + } public KW_STORED(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_STORED, 0); } @@ -24894,12 +24085,12 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_LOCATION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LOCATION, 0); } - public KW_EXCHANGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXCHANGE, 0); - } public KW_PARTITION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_PARTITION, 0); } + public KW_EXCHANGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXCHANGE, 0); + } public KW_ARCHIVE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ARCHIVE, 0); } @@ -24912,12 +24103,12 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex public KW_COMPACT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_COMPACT, 0); } - public partitionSpec(): PartitionSpecContext | null { - return this.getRuleContext(0, PartitionSpecContext); - } public KW_CONCATENATE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_CONCATENATE, 0); } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } public KW_FILEFORMAT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FILEFORMAT, 0); } @@ -24965,93 +24156,6 @@ export class UnsupportedHiveNativeCommandsContext extends antlr.ParserRuleContex } -export class CreateTableHeaderContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_CREATE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_CREATE, 0)!; - } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_TABLE, 0)!; - } - public tableNameCreate(): TableNameCreateContext { - return this.getRuleContext(0, TableNameCreateContext)!; - } - public KW_TEMPORARY(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_TEMPORARY, 0); - } - public KW_EXTERNAL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXTERNAL, 0); - } - public ifNotExists(): IfNotExistsContext | null { - return this.getRuleContext(0, IfNotExistsContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_createTableHeader; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCreateTableHeader) { - listener.enterCreateTableHeader(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCreateTableHeader) { - listener.exitCreateTableHeader(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCreateTableHeader) { - return visitor.visitCreateTableHeader(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ReplaceTableHeaderContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_REPLACE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_REPLACE, 0)!; - } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_TABLE, 0)!; - } - public tableNameCreate(): TableNameCreateContext { - return this.getRuleContext(0, TableNameCreateContext)!; - } - public KW_CREATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_CREATE, 0); - } - public KW_OR(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_OR, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_replaceTableHeader; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterReplaceTableHeader) { - listener.enterReplaceTableHeader(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitReplaceTableHeader) { - listener.exitReplaceTableHeader(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitReplaceTableHeader) { - return visitor.visitReplaceTableHeader(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class BucketSpecContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -25163,73 +24267,6 @@ export class SkewSpecContext extends antlr.ParserRuleContext { } -export class LocationSpecContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_LOCATION(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_LOCATION, 0)!; - } - public stringLit(): StringLitContext { - return this.getRuleContext(0, StringLitContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_locationSpec; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterLocationSpec) { - listener.enterLocationSpec(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitLocationSpec) { - listener.exitLocationSpec(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitLocationSpec) { - return visitor.visitLocationSpec(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CommentSpecContext extends antlr.ParserRuleContext { - public _comment?: StringLitContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_COMMENT(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_COMMENT, 0)!; - } - public stringLit(): StringLitContext { - return this.getRuleContext(0, StringLitContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_commentSpec; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCommentSpec) { - listener.enterCommentSpec(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCommentSpec) { - listener.exitCommentSpec(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCommentSpec) { - return visitor.visitCommentSpec(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class QueryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -25377,8 +24414,11 @@ export class PartitionSpecLocationContext extends antlr.ParserRuleContext { public partitionSpec(): PartitionSpecContext { return this.getRuleContext(0, PartitionSpecContext)!; } - public locationSpec(): LocationSpecContext | null { - return this.getRuleContext(0, LocationSpecContext); + public KW_LOCATION(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_LOCATION, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_partitionSpecLocation; @@ -25483,48 +24523,12 @@ export class PartitionValContext extends antlr.ParserRuleContext { } public override exitRule(listener: SparkSqlParserListener): void { if(listener.exitPartitionVal) { - listener.exitPartitionVal(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitPartitionVal) { - return visitor.visitPartitionVal(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class NamespaceContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NAMESPACE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NAMESPACE, 0); - } - public KW_DATABASE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATABASE, 0); - } - public KW_SCHEMA(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SCHEMA, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_namespace; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNamespace) { - listener.enterNamespace(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNamespace) { - listener.exitNamespace(this); + listener.exitPartitionVal(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNamespace) { - return visitor.visitNamespace(this); + if (visitor.visitPartitionVal) { + return visitor.visitPartitionVal(this); } else { return visitor.visitChildren(this); } @@ -25532,35 +24536,35 @@ export class NamespaceContext extends antlr.ParserRuleContext { } -export class NamespacesContext extends antlr.ParserRuleContext { +export class NamespaceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_NAMESPACES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NAMESPACES, 0); + public KW_NAMESPACE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NAMESPACE, 0); } - public KW_DATABASES(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DATABASES, 0); + public KW_DATABASE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DATABASE, 0); } - public KW_SCHEMAS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SCHEMAS, 0); + public KW_SCHEMA(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SCHEMA, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_namespaces; + return SparkSqlParser.RULE_namespace; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNamespaces) { - listener.enterNamespaces(this); + if(listener.enterNamespace) { + listener.enterNamespace(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNamespaces) { - listener.exitNamespaces(this); + if(listener.exitNamespace) { + listener.exitNamespace(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNamespaces) { - return visitor.visitNamespaces(this); + if (visitor.visitNamespace) { + return visitor.visitNamespace(this); } else { return visitor.visitChildren(this); } @@ -25788,6 +24792,7 @@ export class TableProviderContext extends antlr.ParserRuleContext { export class CreateTableClausesContext extends antlr.ParserRuleContext { public _options?: ExpressionPropertyListContext; public _partitioning?: PartitionFieldListContext; + public _comment?: StringLitContext; public _tableProps?: PropertyListContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -25828,23 +24833,32 @@ export class CreateTableClausesContext extends antlr.ParserRuleContext { return this.getRuleContext(i, CreateFileFormatContext); } - public locationSpec(): LocationSpecContext[]; - public locationSpec(i: number): LocationSpecContext | null; - public locationSpec(i?: number): LocationSpecContext[] | LocationSpecContext | null { - if (i === undefined) { - return this.getRuleContexts(LocationSpecContext); - } - - return this.getRuleContext(i, LocationSpecContext); + public KW_LOCATION(): antlr.TerminalNode[]; + public KW_LOCATION(i: number): antlr.TerminalNode | null; + public KW_LOCATION(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_LOCATION); + } else { + return this.getToken(SparkSqlParser.KW_LOCATION, i); + } } - public commentSpec(): CommentSpecContext[]; - public commentSpec(i: number): CommentSpecContext | null; - public commentSpec(i?: number): CommentSpecContext[] | CommentSpecContext | null { + public stringLit(): StringLitContext[]; + public stringLit(i: number): StringLitContext | null; + public stringLit(i?: number): StringLitContext[] | StringLitContext | null { if (i === undefined) { - return this.getRuleContexts(CommentSpecContext); + return this.getRuleContexts(StringLitContext); } - return this.getRuleContext(i, CommentSpecContext); + return this.getRuleContext(i, StringLitContext); + } + public KW_COMMENT(): antlr.TerminalNode[]; + public KW_COMMENT(i: number): antlr.TerminalNode | null; + public KW_COMMENT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_COMMENT); + } else { + return this.getToken(SparkSqlParser.KW_COMMENT, i); + } } public tableLifecycle(): TableLifecycleContext[]; public tableLifecycle(i: number): TableLifecycleContext | null; @@ -26469,39 +25483,6 @@ export class StorageHandlerContext extends antlr.ParserRuleContext { } -export class ResourceContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public stringLit(): StringLitContext { - return this.getRuleContext(0, StringLitContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_resource; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterResource) { - listener.enterResource(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitResource) { - listener.exitResource(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitResource) { - return visitor.visitResource(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class DmlStatementNoWithContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -26559,14 +25540,23 @@ export class MultipleInsertContext extends DmlStatementNoWithContext { public fromClause(): FromClauseContext { return this.getRuleContext(0, FromClauseContext)!; } - public multiInsertQueryBody(): MultiInsertQueryBodyContext[]; - public multiInsertQueryBody(i: number): MultiInsertQueryBodyContext | null; - public multiInsertQueryBody(i?: number): MultiInsertQueryBodyContext[] | MultiInsertQueryBodyContext | null { + public insertInto(): InsertIntoContext[]; + public insertInto(i: number): InsertIntoContext | null; + public insertInto(i?: number): InsertIntoContext[] | InsertIntoContext | null { + if (i === undefined) { + return this.getRuleContexts(InsertIntoContext); + } + + return this.getRuleContext(i, InsertIntoContext); + } + public fromStatementBody(): FromStatementBodyContext[]; + public fromStatementBody(i: number): FromStatementBodyContext | null; + public fromStatementBody(i?: number): FromStatementBodyContext[] | FromStatementBodyContext | null { if (i === undefined) { - return this.getRuleContexts(MultiInsertQueryBodyContext); + return this.getRuleContexts(FromStatementBodyContext); } - return this.getRuleContext(i, MultiInsertQueryBodyContext); + return this.getRuleContext(i, FromStatementBodyContext); } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterMultipleInsert) { @@ -27172,39 +26162,6 @@ export class QueryOrganizationContext extends antlr.ParserRuleContext { } -export class MultiInsertQueryBodyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public insertInto(): InsertIntoContext { - return this.getRuleContext(0, InsertIntoContext)!; - } - public fromStatementBody(): FromStatementBodyContext { - return this.getRuleContext(0, FromStatementBodyContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_multiInsertQueryBody; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterMultiInsertQueryBody) { - listener.enterMultiInsertQueryBody(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitMultiInsertQueryBody) { - listener.exitMultiInsertQueryBody(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitMultiInsertQueryBody) { - return visitor.visitMultiInsertQueryBody(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class QueryTermContext extends antlr.ParserRuleContext { public _left?: QueryTermContext; public _operator?: Token | null; @@ -27269,8 +26226,17 @@ export class QueryPrimaryContext extends antlr.ParserRuleContext { public querySpecification(): QuerySpecificationContext | null { return this.getRuleContext(0, QuerySpecificationContext); } - public fromStatement(): FromStatementContext | null { - return this.getRuleContext(0, FromStatementContext); + public fromClause(): FromClauseContext | null { + return this.getRuleContext(0, FromClauseContext); + } + public fromStatementBody(): FromStatementBodyContext[]; + public fromStatementBody(i: number): FromStatementBodyContext | null; + public fromStatementBody(i?: number): FromStatementBodyContext[] | FromStatementBodyContext | null { + if (i === undefined) { + return this.getRuleContexts(FromStatementBodyContext); + } + + return this.getRuleContext(i, FromStatementBodyContext); } public KW_TABLE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_TABLE, 0); @@ -27278,8 +26244,29 @@ export class QueryPrimaryContext extends antlr.ParserRuleContext { public tableName(): TableNameContext | null { return this.getRuleContext(0, TableNameContext); } - public inlineTable(): InlineTableContext | null { - return this.getRuleContext(0, InlineTableContext); + public KW_VALUES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VALUES, 0); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public tableAlias(): TableAliasContext | null { + return this.getRuleContext(0, TableAliasContext); + } + 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(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); @@ -27363,45 +26350,6 @@ export class SortItemContext extends antlr.ParserRuleContext { } -export class FromStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public fromClause(): FromClauseContext { - return this.getRuleContext(0, FromClauseContext)!; - } - public fromStatementBody(): FromStatementBodyContext[]; - public fromStatementBody(i: number): FromStatementBodyContext | null; - public fromStatementBody(i?: number): FromStatementBodyContext[] | FromStatementBodyContext | null { - if (i === undefined) { - return this.getRuleContexts(FromStatementBodyContext); - } - - return this.getRuleContext(i, FromStatementBodyContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_fromStatement; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFromStatement) { - listener.enterFromStatement(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFromStatement) { - listener.exitFromStatement(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFromStatement) { - return visitor.visitFromStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class FromStatementBodyContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27715,8 +26663,14 @@ export class MatchedClauseContext extends antlr.ParserRuleContext { public KW_THEN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_THEN, 0)!; } - public matchedAction(): MatchedActionContext { - return this.getRuleContext(0, MatchedActionContext)!; + public KW_DELETE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DELETE, 0); + } + public KW_UPDATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_UPDATE, 0); + } + public KW_SET(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SET, 0); } public KW_AND(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AND, 0); @@ -27724,6 +26678,12 @@ export class MatchedClauseContext extends antlr.ParserRuleContext { public booleanExpression(): BooleanExpressionContext | null { return this.getRuleContext(0, BooleanExpressionContext); } + public ASTERISK(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.ASTERISK, 0); + } + public assignmentList(): AssignmentListContext | null { + return this.getRuleContext(0, AssignmentListContext); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_matchedClause; } @@ -27825,8 +26785,17 @@ export class NotMatchedBySourceClauseContext extends antlr.ParserRuleContext { public KW_THEN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_THEN, 0)!; } - public notMatchedBySourceAction(): NotMatchedBySourceActionContext { - return this.getRuleContext(0, NotMatchedBySourceActionContext)!; + public KW_DELETE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DELETE, 0); + } + public KW_UPDATE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_UPDATE, 0); + } + public KW_SET(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_SET, 0); + } + public assignmentList(): AssignmentListContext | null { + return this.getRuleContext(0, AssignmentListContext); } public KW_AND(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AND, 0); @@ -27857,48 +26826,6 @@ export class NotMatchedBySourceClauseContext extends antlr.ParserRuleContext { } -export class MatchedActionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DELETE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DELETE, 0); - } - public KW_UPDATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UPDATE, 0); - } - public KW_SET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SET, 0); - } - public ASTERISK(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.ASTERISK, 0); - } - public assignmentList(): AssignmentListContext | null { - return this.getRuleContext(0, AssignmentListContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_matchedAction; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterMatchedAction) { - listener.enterMatchedAction(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitMatchedAction) { - listener.exitMatchedAction(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitMatchedAction) { - return visitor.visitMatchedAction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class NotMatchedActionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -27965,47 +26892,8 @@ export class NotMatchedActionContext extends antlr.ParserRuleContext { } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNotMatchedAction) { - return visitor.visitNotMatchedAction(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class NotMatchedBySourceActionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DELETE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_DELETE, 0); - } - public KW_UPDATE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_UPDATE, 0); - } - public KW_SET(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SET, 0); - } - public assignmentList(): AssignmentListContext | null { - return this.getRuleContext(0, AssignmentListContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_notMatchedBySourceAction; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNotMatchedBySourceAction) { - listener.enterNotMatchedBySourceAction(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNotMatchedBySourceAction) { - listener.exitNotMatchedBySourceAction(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNotMatchedBySourceAction) { - return visitor.visitNotMatchedBySourceAction(this); + if (visitor.visitNotMatchedAction) { + return visitor.visitNotMatchedAction(this); } else { return visitor.visitChildren(this); } @@ -28335,42 +27223,6 @@ export class FromClauseContext extends antlr.ParserRuleContext { } -export class FunctionKindContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_USER(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_USER, 0); - } - public KW_SYSTEM(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_SYSTEM, 0); - } - public KW_ALL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ALL, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_functionKind; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFunctionKind) { - listener.enterFunctionKind(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFunctionKind) { - listener.exitFunctionKind(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFunctionKind) { - return visitor.visitFunctionKind(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TemporalClauseContext extends antlr.ParserRuleContext { public _timestamp?: ValueExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -28382,15 +27234,18 @@ export class TemporalClauseContext extends antlr.ParserRuleContext { public KW_OF(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_OF, 0)!; } - public version(): VersionContext | null { - return this.getRuleContext(0, VersionContext); - } public KW_SYSTEM_VERSION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SYSTEM_VERSION, 0); } public KW_VERSION(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_VERSION, 0); } + public INTEGER_VALUE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.INTEGER_VALUE, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); + } public KW_FOR(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FOR, 0); } @@ -28597,14 +27452,14 @@ export class GroupingAnalyticsContext extends antlr.ParserRuleContext { public KW_SETS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SETS, 0); } - public groupingElement(): GroupingElementContext[]; - public groupingElement(i: number): GroupingElementContext | null; - public groupingElement(i?: number): GroupingElementContext[] | GroupingElementContext | null { + public groupingAnalytics(): GroupingAnalyticsContext[]; + public groupingAnalytics(i: number): GroupingAnalyticsContext | null; + public groupingAnalytics(i?: number): GroupingAnalyticsContext[] | GroupingAnalyticsContext | null { if (i === undefined) { - return this.getRuleContexts(GroupingElementContext); + return this.getRuleContexts(GroupingAnalyticsContext); } - return this.getRuleContext(i, GroupingElementContext); + return this.getRuleContext(i, GroupingAnalyticsContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_groupingAnalytics; @@ -28629,39 +27484,6 @@ export class GroupingAnalyticsContext extends antlr.ParserRuleContext { } -export class GroupingElementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public groupingAnalytics(): GroupingAnalyticsContext | null { - return this.getRuleContext(0, GroupingAnalyticsContext); - } - public groupingSet(): GroupingSetContext | null { - return this.getRuleContext(0, GroupingSetContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_groupingElement; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterGroupingElement) { - listener.enterGroupingElement(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitGroupingElement) { - listener.exitGroupingElement(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitGroupingElement) { - return visitor.visitGroupingElement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class GroupingSetContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -28893,8 +27715,6 @@ export class PivotValueContext extends antlr.ParserRuleContext { export class UnpivotClauseContext extends antlr.ParserRuleContext { - public _nullOperator?: UnpivotNullClauseContext; - public _operator?: UnpivotOperatorContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -28907,14 +27727,23 @@ export class UnpivotClauseContext extends antlr.ParserRuleContext { public RIGHT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; } - public unpivotOperator(): UnpivotOperatorContext { - return this.getRuleContext(0, UnpivotOperatorContext)!; + public unpivotSingleValueColumnClause(): UnpivotSingleValueColumnClauseContext | null { + return this.getRuleContext(0, UnpivotSingleValueColumnClauseContext); + } + public unpivotMultiValueColumnClause(): UnpivotMultiValueColumnClauseContext | null { + return this.getRuleContext(0, UnpivotMultiValueColumnClauseContext); + } + public KW_NULLS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NULLS, 0); } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } - public unpivotNullClause(): UnpivotNullClauseContext | null { - return this.getRuleContext(0, UnpivotNullClauseContext); + public KW_INCLUDE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_INCLUDE, 0); + } + public KW_EXCLUDE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_EXCLUDE, 0); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AS, 0); @@ -28942,90 +27771,24 @@ export class UnpivotClauseContext extends antlr.ParserRuleContext { } -export class UnpivotNullClauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NULLS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_NULLS, 0)!; - } - public KW_INCLUDE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_INCLUDE, 0); - } - public KW_EXCLUDE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_EXCLUDE, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotNullClause; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotNullClause) { - listener.enterUnpivotNullClause(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotNullClause) { - listener.exitUnpivotNullClause(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotNullClause) { - return visitor.visitUnpivotNullClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnpivotOperatorContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public unpivotSingleValueColumnClause(): UnpivotSingleValueColumnClauseContext | null { - return this.getRuleContext(0, UnpivotSingleValueColumnClauseContext); - } - public unpivotMultiValueColumnClause(): UnpivotMultiValueColumnClauseContext | null { - return this.getRuleContext(0, UnpivotMultiValueColumnClauseContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotOperator; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotOperator) { - listener.enterUnpivotOperator(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotOperator) { - listener.exitUnpivotOperator(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotOperator) { - return visitor.visitUnpivotOperator(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class UnpivotSingleValueColumnClauseContext extends antlr.ParserRuleContext { public _unpivotColumnAndAlias?: UnpivotColumnAndAliasContext; public _unpivotColumns: UnpivotColumnAndAliasContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public unpivotValueColumn(): UnpivotValueColumnContext { - return this.getRuleContext(0, UnpivotValueColumnContext)!; + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierContext); + } + + return this.getRuleContext(i, IdentifierContext); } public KW_FOR(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_FOR, 0)!; } - public unpivotNameColumn(): UnpivotNameColumnContext { - return this.getRuleContext(0, UnpivotNameColumnContext)!; - } public KW_IN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_IN, 0)!; } @@ -29077,8 +27840,8 @@ export class UnpivotSingleValueColumnClauseContext extends antlr.ParserRuleConte export class UnpivotMultiValueColumnClauseContext extends antlr.ParserRuleContext { - public _unpivotValueColumn?: UnpivotValueColumnContext; - public _unpivotValueColumns: UnpivotValueColumnContext[] = []; + public _identifier?: IdentifierContext; + public _unpivotValueColumns: IdentifierContext[] = []; public _unpivotColumnSet?: UnpivotColumnSetContext; public _unpivotColumnSets: UnpivotColumnSetContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -29105,20 +27868,17 @@ export class UnpivotMultiValueColumnClauseContext extends antlr.ParserRuleContex public KW_FOR(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_FOR, 0)!; } - public unpivotNameColumn(): UnpivotNameColumnContext { - return this.getRuleContext(0, UnpivotNameColumnContext)!; - } - public KW_IN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_IN, 0)!; - } - public unpivotValueColumn(): UnpivotValueColumnContext[]; - public unpivotValueColumn(i: number): UnpivotValueColumnContext | null; - public unpivotValueColumn(i?: number): UnpivotValueColumnContext[] | UnpivotValueColumnContext | null { + public identifier(): IdentifierContext[]; + public identifier(i: number): IdentifierContext | null; + public identifier(i?: number): IdentifierContext[] | IdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(UnpivotValueColumnContext); + return this.getRuleContexts(IdentifierContext); } - return this.getRuleContext(i, UnpivotValueColumnContext); + return this.getRuleContext(i, IdentifierContext); + } + public KW_IN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.KW_IN, 0)!; } public unpivotColumnSet(): UnpivotColumnSetContext[]; public unpivotColumnSet(i: number): UnpivotColumnSetContext | null; @@ -29162,8 +27922,8 @@ export class UnpivotMultiValueColumnClauseContext extends antlr.ParserRuleContex export class UnpivotColumnSetContext extends antlr.ParserRuleContext { - public _unpivotColumn?: UnpivotColumnContext; - public _unpivotColumns: UnpivotColumnContext[] = []; + public _multipartIdentifier?: MultipartIdentifierContext; + public _unpivotColumns: MultipartIdentifierContext[] = []; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -29173,14 +27933,14 @@ export class UnpivotColumnSetContext extends antlr.ParserRuleContext { public RIGHT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; } - public unpivotColumn(): UnpivotColumnContext[]; - public unpivotColumn(i: number): UnpivotColumnContext | null; - public unpivotColumn(i?: number): UnpivotColumnContext[] | UnpivotColumnContext | null { + public multipartIdentifier(): MultipartIdentifierContext[]; + public multipartIdentifier(i: number): MultipartIdentifierContext | null; + public multipartIdentifier(i?: number): MultipartIdentifierContext[] | MultipartIdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(UnpivotColumnContext); + return this.getRuleContexts(MultipartIdentifierContext); } - return this.getRuleContext(i, UnpivotColumnContext); + return this.getRuleContext(i, MultipartIdentifierContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -29191,148 +27951,28 @@ export class UnpivotColumnSetContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.COMMA, i); } } - public unpivotAlias(): UnpivotAliasContext | null { - return this.getRuleContext(0, UnpivotAliasContext); + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); } public override get ruleIndex(): number { return SparkSqlParser.RULE_unpivotColumnSet; } public override enterRule(listener: SparkSqlParserListener): void { if(listener.enterUnpivotColumnSet) { - listener.enterUnpivotColumnSet(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotColumnSet) { - listener.exitUnpivotColumnSet(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotColumnSet) { - return visitor.visitUnpivotColumnSet(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnpivotValueColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotValueColumn; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotValueColumn) { - listener.enterUnpivotValueColumn(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotValueColumn) { - listener.exitUnpivotValueColumn(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotValueColumn) { - return visitor.visitUnpivotValueColumn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnpivotNameColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotNameColumn; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotNameColumn) { - listener.enterUnpivotNameColumn(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotNameColumn) { - listener.exitUnpivotNameColumn(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotNameColumn) { - return visitor.visitUnpivotNameColumn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnpivotColumnAndAliasContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public unpivotColumn(): UnpivotColumnContext { - return this.getRuleContext(0, UnpivotColumnContext)!; - } - public unpivotAlias(): UnpivotAliasContext | null { - return this.getRuleContext(0, UnpivotAliasContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotColumnAndAlias; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotColumnAndAlias) { - listener.enterUnpivotColumnAndAlias(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotColumnAndAlias) { - listener.exitUnpivotColumnAndAlias(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotColumnAndAlias) { - return visitor.visitUnpivotColumnAndAlias(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnpivotColumnContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public multipartIdentifier(): MultipartIdentifierContext { - return this.getRuleContext(0, MultipartIdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotColumn; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotColumn) { - listener.enterUnpivotColumn(this); + listener.enterUnpivotColumnSet(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotColumn) { - listener.exitUnpivotColumn(this); + if(listener.exitUnpivotColumnSet) { + listener.exitUnpivotColumnSet(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotColumn) { - return visitor.visitUnpivotColumn(this); + if (visitor.visitUnpivotColumnSet) { + return visitor.visitUnpivotColumnSet(this); } else { return visitor.visitChildren(this); } @@ -29340,32 +27980,35 @@ export class UnpivotColumnContext extends antlr.ParserRuleContext { } -export class UnpivotAliasContext extends antlr.ParserRuleContext { +export class UnpivotColumnAndAliasContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public multipartIdentifier(): MultipartIdentifierContext { + return this.getRuleContext(0, MultipartIdentifierContext)!; + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_AS, 0); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_unpivotAlias; + return SparkSqlParser.RULE_unpivotColumnAndAlias; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterUnpivotAlias) { - listener.enterUnpivotAlias(this); + if(listener.enterUnpivotColumnAndAlias) { + listener.enterUnpivotColumnAndAlias(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitUnpivotAlias) { - listener.exitUnpivotAlias(this); + if(listener.exitUnpivotColumnAndAlias) { + listener.exitUnpivotColumnAndAlias(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitUnpivotAlias) { - return visitor.visitUnpivotAlias(this); + if (visitor.visitUnpivotColumnAndAlias) { + return visitor.visitUnpivotColumnAndAlias(this); } else { return visitor.visitChildren(this); } @@ -29568,14 +28211,32 @@ export class RelationContext extends antlr.ParserRuleContext { public KW_LATERAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_LATERAL, 0); } - public relationExtension(): RelationExtensionContext[]; - public relationExtension(i: number): RelationExtensionContext | null; - public relationExtension(i?: number): RelationExtensionContext[] | RelationExtensionContext | null { + public joinRelation(): JoinRelationContext[]; + public joinRelation(i: number): JoinRelationContext | null; + public joinRelation(i?: number): JoinRelationContext[] | JoinRelationContext | null { + if (i === undefined) { + return this.getRuleContexts(JoinRelationContext); + } + + return this.getRuleContext(i, JoinRelationContext); + } + public pivotClause(): PivotClauseContext[]; + public pivotClause(i: number): PivotClauseContext | null; + public pivotClause(i?: number): PivotClauseContext[] | PivotClauseContext | null { if (i === undefined) { - return this.getRuleContexts(RelationExtensionContext); + return this.getRuleContexts(PivotClauseContext); } - return this.getRuleContext(i, RelationExtensionContext); + return this.getRuleContext(i, PivotClauseContext); + } + public unpivotClause(): UnpivotClauseContext[]; + public unpivotClause(i: number): UnpivotClauseContext | null; + public unpivotClause(i?: number): UnpivotClauseContext[] | UnpivotClauseContext | null { + if (i === undefined) { + return this.getRuleContexts(UnpivotClauseContext); + } + + return this.getRuleContext(i, UnpivotClauseContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_relation; @@ -29600,42 +28261,6 @@ export class RelationContext extends antlr.ParserRuleContext { } -export class RelationExtensionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public joinRelation(): JoinRelationContext | null { - return this.getRuleContext(0, JoinRelationContext); - } - public pivotClause(): PivotClauseContext | null { - return this.getRuleContext(0, PivotClauseContext); - } - public unpivotClause(): UnpivotClauseContext | null { - return this.getRuleContext(0, UnpivotClauseContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_relationExtension; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterRelationExtension) { - listener.enterRelationExtension(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitRelationExtension) { - listener.exitRelationExtension(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitRelationExtension) { - return visitor.visitRelationExtension(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class JoinRelationContext extends antlr.ParserRuleContext { public _right?: RelationPrimaryContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -29701,15 +28326,15 @@ export class JoinTypeContext extends antlr.ParserRuleContext { public KW_SEMI(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_SEMI, 0); } + public KW_ANTI(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ANTI, 0); + } public KW_RIGHT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_RIGHT, 0); } public KW_FULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_FULL, 0); } - public KW_ANTI(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_ANTI, 0); - } public override get ruleIndex(): number { return SparkSqlParser.RULE_joinType; } @@ -30135,14 +28760,18 @@ export class IdentifierCommentListContext extends antlr.ParserRuleContext { export class IdentifierCommentContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_identifierComment; @@ -30171,8 +28800,8 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableAlias(): TableAliasContext | null { - return this.getRuleContext(0, TableAliasContext); + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; } public tableName(): TableNameContext | null { return this.getRuleContext(0, TableNameContext); @@ -30201,41 +28830,8 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public relation(): RelationContext | null { return this.getRuleContext(0, RelationContext); } - public inlineTable(): InlineTableContext | null { - return this.getRuleContext(0, InlineTableContext); - } - public functionTable(): FunctionTableContext | null { - return this.getRuleContext(0, FunctionTableContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_relationPrimary; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterRelationPrimary) { - listener.enterRelationPrimary(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitRelationPrimary) { - listener.exitRelationPrimary(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitRelationPrimary) { - return visitor.visitRelationPrimary(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class InlineTableContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_VALUES(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_VALUES, 0)!; + public KW_VALUES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VALUES, 0); } public expression(): ExpressionContext[]; public expression(i: number): ExpressionContext | null; @@ -30246,9 +28842,6 @@ export class InlineTableContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ExpressionContext); } - public tableAlias(): TableAliasContext { - return this.getRuleContext(0, TableAliasContext)!; - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -30258,22 +28851,34 @@ export class InlineTableContext extends antlr.ParserRuleContext { return this.getToken(SparkSqlParser.COMMA, i); } } + public functionName(): FunctionNameContext | null { + return this.getRuleContext(0, FunctionNameContext); + } + public functionTableArgument(): FunctionTableArgumentContext[]; + public functionTableArgument(i: number): FunctionTableArgumentContext | null; + public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { + if (i === undefined) { + return this.getRuleContexts(FunctionTableArgumentContext); + } + + return this.getRuleContext(i, FunctionTableArgumentContext); + } public override get ruleIndex(): number { - return SparkSqlParser.RULE_inlineTable; + return SparkSqlParser.RULE_relationPrimary; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterInlineTable) { - listener.enterInlineTable(this); + if(listener.enterRelationPrimary) { + listener.enterRelationPrimary(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitInlineTable) { - listener.exitInlineTable(this); + if(listener.exitRelationPrimary) { + listener.exitRelationPrimary(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitInlineTable) { - return visitor.visitInlineTable(this); + if (visitor.visitRelationPrimary) { + return visitor.visitRelationPrimary(this); } else { return visitor.visitChildren(this); } @@ -30531,63 +29136,6 @@ export class FunctionTableArgumentContext extends antlr.ParserRuleContext { } -export class FunctionTableContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public functionName(): FunctionNameContext { - return this.getRuleContext(0, FunctionNameContext)!; - } - public LEFT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; - } - public RIGHT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; - } - public tableAlias(): TableAliasContext { - return this.getRuleContext(0, TableAliasContext)!; - } - public functionTableArgument(): FunctionTableArgumentContext[]; - public functionTableArgument(i: number): FunctionTableArgumentContext | null; - public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { - if (i === undefined) { - return this.getRuleContexts(FunctionTableArgumentContext); - } - - return this.getRuleContext(i, FunctionTableArgumentContext); - } - 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(SparkSqlParser.COMMA); - } else { - return this.getToken(SparkSqlParser.COMMA, i); - } - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_functionTable; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFunctionTable) { - listener.enterFunctionTable(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFunctionTable) { - listener.exitFunctionTable(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFunctionTable) { - return visitor.visitFunctionTable(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TableAliasContext extends antlr.ParserRuleContext { public _alias?: StrictIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -32938,8 +31486,14 @@ export class DataTypeContext extends antlr.ParserRuleContext { public NEQ(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.NEQ, 0); } - public complexColTypeList(): ComplexColTypeListContext | null { - return this.getRuleContext(0, ComplexColTypeListContext); + public complexColType(): ComplexColTypeContext[]; + public complexColType(i: number): ComplexColTypeContext | null; + public complexColType(i?: number): ComplexColTypeContext[] | ComplexColTypeContext | null { + if (i === undefined) { + return this.getRuleContexts(ComplexColTypeContext); + } + + return this.getRuleContext(i, ComplexColTypeContext); } public KW_INTERVAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_INTERVAL, 0); @@ -33207,6 +31761,7 @@ export class QualifiedColTypeWithPositionForReplaceContext extends antlr.ParserR export class ColDefinitionDescriptorWithPositionContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33216,11 +31771,17 @@ export class ColDefinitionDescriptorWithPositionContext extends antlr.ParserRule public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public defaultExpression(): DefaultExpressionContext | null { - return this.getRuleContext(0, DefaultExpressionContext); + public KW_DEFAULT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DEFAULT, 0); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public colPosition(): ColPositionContext | null { return this.getRuleContext(0, ColPositionContext); @@ -33248,39 +31809,6 @@ export class ColDefinitionDescriptorWithPositionContext extends antlr.ParserRule } -export class DefaultExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DEFAULT(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_DEFAULT, 0)!; - } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_defaultExpression; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterDefaultExpression) { - listener.enterDefaultExpression(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitDefaultExpression) { - listener.exitDefaultExpression(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitDefaultExpression) { - return visitor.visitDefaultExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class VariableDefaultExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -33364,6 +31892,7 @@ export class ColTypeListContext extends antlr.ParserRuleContext { export class ColumnTypeContext extends antlr.ParserRuleContext { public _colName?: ErrorCapturingIdentifierContext; + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33379,8 +31908,11 @@ export class ColumnTypeContext extends antlr.ParserRuleContext { public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_columnType; @@ -33469,66 +32001,24 @@ export class CreateOrReplaceTableColTypeContext extends antlr.ParserRuleContext return this.getRuleContexts(ColDefinitionOptionContext); } - return this.getRuleContext(i, ColDefinitionOptionContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_createOrReplaceTableColType; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCreateOrReplaceTableColType) { - listener.enterCreateOrReplaceTableColType(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCreateOrReplaceTableColType) { - listener.exitCreateOrReplaceTableColType(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCreateOrReplaceTableColType) { - return visitor.visitCreateOrReplaceTableColType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ColDefinitionOptionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NOT(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NOT, 0); - } - public KW_NULL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NULL, 0); - } - public defaultExpression(): DefaultExpressionContext | null { - return this.getRuleContext(0, DefaultExpressionContext); - } - public generationExpression(): GenerationExpressionContext | null { - return this.getRuleContext(0, GenerationExpressionContext); - } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + return this.getRuleContext(i, ColDefinitionOptionContext); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_colDefinitionOption; + return SparkSqlParser.RULE_createOrReplaceTableColType; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterColDefinitionOption) { - listener.enterColDefinitionOption(this); + if(listener.enterCreateOrReplaceTableColType) { + listener.enterCreateOrReplaceTableColType(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitColDefinitionOption) { - listener.exitColDefinitionOption(this); + if(listener.exitCreateOrReplaceTableColType) { + listener.exitCreateOrReplaceTableColType(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitColDefinitionOption) { - return visitor.visitColDefinitionOption(this); + if (visitor.visitCreateOrReplaceTableColType) { + return visitor.visitCreateOrReplaceTableColType(this); } else { return visitor.visitChildren(this); } @@ -33536,89 +32026,60 @@ export class ColDefinitionOptionContext extends antlr.ParserRuleContext { } -export class GenerationExpressionContext extends antlr.ParserRuleContext { +export class ColDefinitionOptionContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_GENERATED(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_GENERATED, 0)!; - } - public KW_ALWAYS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_ALWAYS, 0)!; - } - public KW_AS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_AS, 0)!; + public KW_NOT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NOT, 0); } - public LEFT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + public KW_NULL(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_NULL, 0); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public KW_DEFAULT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_DEFAULT, 0); } - public RIGHT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_generationExpression; + public KW_GENERATED(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_GENERATED, 0); } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterGenerationExpression) { - listener.enterGenerationExpression(this); - } + public KW_ALWAYS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_ALWAYS, 0); } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitGenerationExpression) { - listener.exitGenerationExpression(this); - } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_AS, 0); } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitGenerationExpression) { - return visitor.visitGenerationExpression(this); - } else { - return visitor.visitChildren(this); - } + public LEFT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0); } -} - - -export class ComplexColTypeListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); + public RIGHT_PAREN(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); } - public complexColType(): ComplexColTypeContext[]; - public complexColType(i: number): ComplexColTypeContext | null; - public complexColType(i?: number): ComplexColTypeContext[] | ComplexColTypeContext | null { - if (i === undefined) { - return this.getRuleContexts(ComplexColTypeContext); - } - - return this.getRuleContext(i, ComplexColTypeContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); } - 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(SparkSqlParser.COMMA); - } else { - return this.getToken(SparkSqlParser.COMMA, i); - } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { - return SparkSqlParser.RULE_complexColTypeList; + return SparkSqlParser.RULE_colDefinitionOption; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterComplexColTypeList) { - listener.enterComplexColTypeList(this); + if(listener.enterColDefinitionOption) { + listener.enterColDefinitionOption(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitComplexColTypeList) { - listener.exitComplexColTypeList(this); + if(listener.exitColDefinitionOption) { + listener.exitColDefinitionOption(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitComplexColTypeList) { - return visitor.visitComplexColTypeList(this); + if (visitor.visitColDefinitionOption) { + return visitor.visitColDefinitionOption(this); } else { return visitor.visitChildren(this); } @@ -33627,6 +32088,7 @@ export class ComplexColTypeListContext extends antlr.ParserRuleContext { export class ComplexColTypeContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -33645,8 +32107,11 @@ export class ComplexColTypeContext extends antlr.ParserRuleContext { public KW_NULL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_NULL, 0); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public override get ruleIndex(): number { return SparkSqlParser.RULE_complexColType; @@ -33716,20 +32181,39 @@ export class WhenClauseContext extends antlr.ParserRuleContext { export class WindowClauseContext extends antlr.ParserRuleContext { + public _name?: ErrorCapturingIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public KW_WINDOW(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_WINDOW, 0)!; } - public namedWindow(): NamedWindowContext[]; - public namedWindow(i: number): NamedWindowContext | null; - public namedWindow(i?: number): NamedWindowContext[] | NamedWindowContext | null { + public KW_AS(): antlr.TerminalNode[]; + public KW_AS(i: number): antlr.TerminalNode | null; + public KW_AS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.KW_AS); + } else { + return this.getToken(SparkSqlParser.KW_AS, i); + } + } + public windowSpec(): WindowSpecContext[]; + public windowSpec(i: number): WindowSpecContext | null; + public windowSpec(i?: number): WindowSpecContext[] | WindowSpecContext | null { + if (i === undefined) { + return this.getRuleContexts(WindowSpecContext); + } + + return this.getRuleContext(i, WindowSpecContext); + } + public errorCapturingIdentifier(): ErrorCapturingIdentifierContext[]; + public errorCapturingIdentifier(i: number): ErrorCapturingIdentifierContext | null; + public errorCapturingIdentifier(i?: number): ErrorCapturingIdentifierContext[] | ErrorCapturingIdentifierContext | null { if (i === undefined) { - return this.getRuleContexts(NamedWindowContext); + return this.getRuleContexts(ErrorCapturingIdentifierContext); } - return this.getRuleContext(i, NamedWindowContext); + return this.getRuleContext(i, ErrorCapturingIdentifierContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -33763,79 +32247,6 @@ export class WindowClauseContext extends antlr.ParserRuleContext { } -export class ZorderClauseContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_ZORDER(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_ZORDER, 0)!; - } - public KW_BY(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_BY, 0)!; - } - public columnNameSeq(): ColumnNameSeqContext { - return this.getRuleContext(0, ColumnNameSeqContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_zorderClause; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterZorderClause) { - listener.enterZorderClause(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitZorderClause) { - listener.exitZorderClause(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitZorderClause) { - return visitor.visitZorderClause(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class NamedWindowContext extends antlr.ParserRuleContext { - public _name?: ErrorCapturingIdentifierContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_AS(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.KW_AS, 0)!; - } - public windowSpec(): WindowSpecContext { - return this.getRuleContext(0, WindowSpecContext)!; - } - public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { - return this.getRuleContext(0, ErrorCapturingIdentifierContext)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_namedWindow; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterNamedWindow) { - listener.enterNamedWindow(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitNamedWindow) { - listener.exitNamedWindow(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitNamedWindow) { - return visitor.visitNamedWindow(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class WindowSpecContext extends antlr.ParserRuleContext { public _name?: ErrorCapturingIdentifierContext; public _expression?: ExpressionContext; @@ -33936,9 +32347,6 @@ export class WindowFrameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_RANGE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_RANGE, 0); - } public frameBound(): FrameBoundContext[]; public frameBound(i: number): FrameBoundContext | null; public frameBound(i?: number): FrameBoundContext[] | FrameBoundContext | null { @@ -33948,6 +32356,9 @@ export class WindowFrameContext extends antlr.ParserRuleContext { return this.getRuleContext(i, FrameBoundContext); } + public KW_RANGE(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_RANGE, 0); + } public KW_ROWS(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_ROWS, 0); } @@ -34380,36 +32791,6 @@ export class QuotedIdentifierContext extends antlr.ParserRuleContext { } -export class BackQuotedIdentifierContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public BACKQUOTED_IDENTIFIER(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.BACKQUOTED_IDENTIFIER, 0)!; - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_backQuotedIdentifier; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterBackQuotedIdentifier) { - listener.enterBackQuotedIdentifier(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitBackQuotedIdentifier) { - listener.exitBackQuotedIdentifier(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitBackQuotedIdentifier) { - return visitor.visitBackQuotedIdentifier(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class NumberContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34417,9 +32798,6 @@ export class NumberContext extends antlr.ParserRuleContext { public EXPONENT_VALUE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.EXPONENT_VALUE, 0); } - public MINUS(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.MINUS, 0); - } public DECIMAL_VALUE(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.DECIMAL_VALUE, 0); } @@ -34444,6 +32822,9 @@ export class NumberContext extends antlr.ParserRuleContext { public BIGDECIMAL_LITERAL(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.BIGDECIMAL_LITERAL, 0); } + public MINUS(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.MINUS, 0); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_number; } @@ -34468,6 +32849,7 @@ export class NumberContext extends antlr.ParserRuleContext { export class AlterColumnActionContext extends antlr.ParserRuleContext { + public _comment?: StringLitContext; public _setOrDrop?: Token | null; public _dropDefault?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -34479,8 +32861,11 @@ export class AlterColumnActionContext extends antlr.ParserRuleContext { public dataType(): DataTypeContext | null { return this.getRuleContext(0, DataTypeContext); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_COMMENT, 0); + } + public stringLit(): StringLitContext | null { + return this.getRuleContext(0, StringLitContext); } public colPosition(): ColPositionContext | null { return this.getRuleContext(0, ColPositionContext); @@ -34497,12 +32882,12 @@ export class AlterColumnActionContext extends antlr.ParserRuleContext { public KW_DROP(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DROP, 0); } - public defaultExpression(): DefaultExpressionContext | null { - return this.getRuleContext(0, DefaultExpressionContext); - } public KW_DEFAULT(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DEFAULT, 0); } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_alterColumnAction; } @@ -34559,72 +32944,6 @@ export class StringLitContext extends antlr.ParserRuleContext { } -export class CommentStrContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); - } - public KW_NULL(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.KW_NULL, 0); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_commentStr; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterCommentStr) { - listener.enterCommentStr(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitCommentStr) { - listener.exitCommentStr(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitCommentStr) { - return visitor.visitCommentStr(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class VersionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public INTEGER_VALUE(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.INTEGER_VALUE, 0); - } - public stringLit(): StringLitContext | null { - return this.getRuleContext(0, StringLitContext); - } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_version; - } - public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterVersion) { - listener.enterVersion(this); - } - } - public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitVersion) { - listener.exitVersion(this); - } - } - public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitVersion) { - return visitor.visitVersion(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class AnsiNonReservedContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index b701ea6a..d6699132 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -72,7 +72,6 @@ import { DescribeFunctionContext } from "./SparkSqlParser.js"; import { DescribeNamespaceContext } from "./SparkSqlParser.js"; import { DescribeRelationContext } from "./SparkSqlParser.js"; import { DescribeQueryContext } from "./SparkSqlParser.js"; -import { CommentNamespaceContext } from "./SparkSqlParser.js"; import { CommentTableContext } from "./SparkSqlParser.js"; import { RefreshTableContext } from "./SparkSqlParser.js"; import { RefreshFunctionContext } from "./SparkSqlParser.js"; @@ -101,23 +100,15 @@ import { CreateIndexContext } from "./SparkSqlParser.js"; import { DropIndexContext } from "./SparkSqlParser.js"; import { OptimizeTableContext } from "./SparkSqlParser.js"; import { UnsupportHiveCommandsContext } from "./SparkSqlParser.js"; -import { TimezoneContext } from "./SparkSqlParser.js"; -import { ConfigKeyContext } from "./SparkSqlParser.js"; -import { ConfigValueContext } from "./SparkSqlParser.js"; import { UnsupportedHiveNativeCommandsContext } from "./SparkSqlParser.js"; -import { CreateTableHeaderContext } from "./SparkSqlParser.js"; -import { ReplaceTableHeaderContext } from "./SparkSqlParser.js"; import { BucketSpecContext } from "./SparkSqlParser.js"; import { SkewSpecContext } from "./SparkSqlParser.js"; -import { LocationSpecContext } from "./SparkSqlParser.js"; -import { CommentSpecContext } from "./SparkSqlParser.js"; import { QueryStatementContext } from "./SparkSqlParser.js"; import { InsertIntoContext } from "./SparkSqlParser.js"; import { PartitionSpecLocationContext } from "./SparkSqlParser.js"; import { PartitionSpecContext } from "./SparkSqlParser.js"; import { PartitionValContext } from "./SparkSqlParser.js"; import { NamespaceContext } from "./SparkSqlParser.js"; -import { NamespacesContext } from "./SparkSqlParser.js"; import { DescribeFuncNameContext } from "./SparkSqlParser.js"; import { DescribeColNameContext } from "./SparkSqlParser.js"; import { CtesContext } from "./SparkSqlParser.js"; @@ -136,7 +127,6 @@ import { NestedConstantListContext } from "./SparkSqlParser.js"; import { CreateFileFormatContext } from "./SparkSqlParser.js"; import { FileFormatContext } from "./SparkSqlParser.js"; import { StorageHandlerContext } from "./SparkSqlParser.js"; -import { ResourceContext } from "./SparkSqlParser.js"; import { InsertFromQueryContext } from "./SparkSqlParser.js"; import { MultipleInsertContext } from "./SparkSqlParser.js"; import { DeleteFromTableContext } from "./SparkSqlParser.js"; @@ -153,11 +143,9 @@ import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; import { QueryOrganizationContext } from "./SparkSqlParser.js"; -import { MultiInsertQueryBodyContext } from "./SparkSqlParser.js"; import { QueryTermContext } from "./SparkSqlParser.js"; import { QueryPrimaryContext } from "./SparkSqlParser.js"; import { SortItemContext } from "./SparkSqlParser.js"; -import { FromStatementContext } from "./SparkSqlParser.js"; import { FromStatementBodyContext } from "./SparkSqlParser.js"; import { QuerySpecificationContext } from "./SparkSqlParser.js"; import { TransformClauseContext } from "./SparkSqlParser.js"; @@ -166,9 +154,7 @@ import { SetClauseContext } from "./SparkSqlParser.js"; import { MatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedBySourceClauseContext } from "./SparkSqlParser.js"; -import { MatchedActionContext } from "./SparkSqlParser.js"; import { NotMatchedActionContext } from "./SparkSqlParser.js"; -import { NotMatchedBySourceActionContext } from "./SparkSqlParser.js"; import { AssignmentListContext } from "./SparkSqlParser.js"; import { AssignmentContext } from "./SparkSqlParser.js"; import { WhereClauseContext } from "./SparkSqlParser.js"; @@ -176,33 +162,24 @@ import { HavingClauseContext } from "./SparkSqlParser.js"; import { HintContext } from "./SparkSqlParser.js"; import { HintStatementContext } from "./SparkSqlParser.js"; import { FromClauseContext } from "./SparkSqlParser.js"; -import { FunctionKindContext } from "./SparkSqlParser.js"; import { TemporalClauseContext } from "./SparkSqlParser.js"; import { AggregationClauseContext } from "./SparkSqlParser.js"; import { GroupByClauseContext } from "./SparkSqlParser.js"; import { GroupingAnalyticsContext } from "./SparkSqlParser.js"; -import { GroupingElementContext } from "./SparkSqlParser.js"; import { GroupingSetContext } from "./SparkSqlParser.js"; import { PivotClauseContext } from "./SparkSqlParser.js"; import { PivotColumnContext } from "./SparkSqlParser.js"; import { PivotValueContext } from "./SparkSqlParser.js"; import { UnpivotClauseContext } from "./SparkSqlParser.js"; -import { UnpivotNullClauseContext } from "./SparkSqlParser.js"; -import { UnpivotOperatorContext } from "./SparkSqlParser.js"; import { UnpivotSingleValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnpivotMultiValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnpivotColumnSetContext } from "./SparkSqlParser.js"; -import { UnpivotValueColumnContext } from "./SparkSqlParser.js"; -import { UnpivotNameColumnContext } from "./SparkSqlParser.js"; import { UnpivotColumnAndAliasContext } from "./SparkSqlParser.js"; -import { UnpivotColumnContext } from "./SparkSqlParser.js"; -import { UnpivotAliasContext } from "./SparkSqlParser.js"; import { IfNotExistsContext } from "./SparkSqlParser.js"; import { IfExistsContext } from "./SparkSqlParser.js"; import { LateralViewContext } from "./SparkSqlParser.js"; import { SetQuantifierContext } from "./SparkSqlParser.js"; import { RelationContext } from "./SparkSqlParser.js"; -import { RelationExtensionContext } from "./SparkSqlParser.js"; import { JoinRelationContext } from "./SparkSqlParser.js"; import { JoinTypeContext } from "./SparkSqlParser.js"; import { JoinCriteriaContext } from "./SparkSqlParser.js"; @@ -215,13 +192,11 @@ import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; import { RelationPrimaryContext } from "./SparkSqlParser.js"; -import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js"; import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; -import { FunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -267,20 +242,15 @@ import { QualifiedColTypeWithPositionForAddContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionSeqForReplaceContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionForReplaceContext } from "./SparkSqlParser.js"; import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser.js"; -import { DefaultExpressionContext } from "./SparkSqlParser.js"; import { VariableDefaultExpressionContext } from "./SparkSqlParser.js"; import { ColTypeListContext } from "./SparkSqlParser.js"; import { ColumnTypeContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser.js"; import { ColDefinitionOptionContext } from "./SparkSqlParser.js"; -import { GenerationExpressionContext } from "./SparkSqlParser.js"; -import { ComplexColTypeListContext } from "./SparkSqlParser.js"; import { ComplexColTypeContext } from "./SparkSqlParser.js"; import { WhenClauseContext } from "./SparkSqlParser.js"; import { WindowClauseContext } from "./SparkSqlParser.js"; -import { ZorderClauseContext } from "./SparkSqlParser.js"; -import { NamedWindowContext } from "./SparkSqlParser.js"; import { WindowSpecContext } from "./SparkSqlParser.js"; import { WindowFrameContext } from "./SparkSqlParser.js"; import { FrameBoundContext } from "./SparkSqlParser.js"; @@ -293,12 +263,9 @@ import { ErrorCapturingIdentifierExtraContext } from "./SparkSqlParser.js"; import { IdentifierContext } from "./SparkSqlParser.js"; import { StrictIdentifierContext } from "./SparkSqlParser.js"; import { QuotedIdentifierContext } from "./SparkSqlParser.js"; -import { BackQuotedIdentifierContext } from "./SparkSqlParser.js"; import { NumberContext } from "./SparkSqlParser.js"; import { AlterColumnActionContext } from "./SparkSqlParser.js"; import { StringLitContext } from "./SparkSqlParser.js"; -import { CommentStrContext } from "./SparkSqlParser.js"; -import { VersionContext } from "./SparkSqlParser.js"; import { AnsiNonReservedContext } from "./SparkSqlParser.js"; import { StrictNonReservedContext } from "./SparkSqlParser.js"; import { NonReservedContext } from "./SparkSqlParser.js"; @@ -1073,18 +1040,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDescribeQuery?: (ctx: DescribeQueryContext) => void; - /** - * Enter a parse tree produced by the `commentNamespace` - * labeled alternative in `SparkSqlParser.statement`. - * @param ctx the parse tree - */ - enterCommentNamespace?: (ctx: CommentNamespaceContext) => void; - /** - * Exit a parse tree produced by the `commentNamespace` - * labeled alternative in `SparkSqlParser.statement`. - * @param ctx the parse tree - */ - exitCommentNamespace?: (ctx: CommentNamespaceContext) => void; /** * Enter a parse tree produced by the `commentTable` * labeled alternative in `SparkSqlParser.statement`. @@ -1421,36 +1376,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnsupportHiveCommands?: (ctx: UnsupportHiveCommandsContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.timezone`. - * @param ctx the parse tree - */ - enterTimezone?: (ctx: TimezoneContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.timezone`. - * @param ctx the parse tree - */ - exitTimezone?: (ctx: TimezoneContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.configKey`. - * @param ctx the parse tree - */ - enterConfigKey?: (ctx: ConfigKeyContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.configKey`. - * @param ctx the parse tree - */ - exitConfigKey?: (ctx: ConfigKeyContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.configValue`. - * @param ctx the parse tree - */ - enterConfigValue?: (ctx: ConfigValueContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.configValue`. - * @param ctx the parse tree - */ - exitConfigValue?: (ctx: ConfigValueContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.unsupportedHiveNativeCommands`. * @param ctx the parse tree @@ -1461,26 +1386,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnsupportedHiveNativeCommands?: (ctx: UnsupportedHiveNativeCommandsContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.createTableHeader`. - * @param ctx the parse tree - */ - enterCreateTableHeader?: (ctx: CreateTableHeaderContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.createTableHeader`. - * @param ctx the parse tree - */ - exitCreateTableHeader?: (ctx: CreateTableHeaderContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.replaceTableHeader`. - * @param ctx the parse tree - */ - enterReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.replaceTableHeader`. - * @param ctx the parse tree - */ - exitReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.bucketSpec`. * @param ctx the parse tree @@ -1501,26 +1406,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSkewSpec?: (ctx: SkewSpecContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.locationSpec`. - * @param ctx the parse tree - */ - enterLocationSpec?: (ctx: LocationSpecContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.locationSpec`. - * @param ctx the parse tree - */ - exitLocationSpec?: (ctx: LocationSpecContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.commentSpec`. - * @param ctx the parse tree - */ - enterCommentSpec?: (ctx: CommentSpecContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.commentSpec`. - * @param ctx the parse tree - */ - exitCommentSpec?: (ctx: CommentSpecContext) => void; /** * Enter a parse tree produced by the `queryStatement` * labeled alternative in `SparkSqlParser.query`. @@ -1583,16 +1468,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNamespace?: (ctx: NamespaceContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.namespaces`. - * @param ctx the parse tree - */ - enterNamespaces?: (ctx: NamespacesContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.namespaces`. - * @param ctx the parse tree - */ - exitNamespaces?: (ctx: NamespacesContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.describeFuncName`. * @param ctx the parse tree @@ -1773,16 +1648,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitStorageHandler?: (ctx: StorageHandlerContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.resource`. - * @param ctx the parse tree - */ - enterResource?: (ctx: ResourceContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.resource`. - * @param ctx the parse tree - */ - exitResource?: (ctx: ResourceContext) => void; /** * Enter a parse tree produced by the `insertFromQuery` * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. @@ -1953,16 +1818,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQueryOrganization?: (ctx: QueryOrganizationContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. - * @param ctx the parse tree - */ - enterMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. - * @param ctx the parse tree - */ - exitMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.queryTerm`. * @param ctx the parse tree @@ -1993,16 +1848,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSortItem?: (ctx: SortItemContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.fromStatement`. - * @param ctx the parse tree - */ - enterFromStatement?: (ctx: FromStatementContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.fromStatement`. - * @param ctx the parse tree - */ - exitFromStatement?: (ctx: FromStatementContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.fromStatementBody`. * @param ctx the parse tree @@ -2083,16 +1928,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNotMatchedBySourceClause?: (ctx: NotMatchedBySourceClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.matchedAction`. - * @param ctx the parse tree - */ - enterMatchedAction?: (ctx: MatchedActionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.matchedAction`. - * @param ctx the parse tree - */ - exitMatchedAction?: (ctx: MatchedActionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.notMatchedAction`. * @param ctx the parse tree @@ -2103,16 +1938,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNotMatchedAction?: (ctx: NotMatchedActionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.notMatchedBySourceAction`. - * @param ctx the parse tree - */ - enterNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.notMatchedBySourceAction`. - * @param ctx the parse tree - */ - exitNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.assignmentList`. * @param ctx the parse tree @@ -2183,16 +2008,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFromClause?: (ctx: FromClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.functionKind`. - * @param ctx the parse tree - */ - enterFunctionKind?: (ctx: FunctionKindContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.functionKind`. - * @param ctx the parse tree - */ - exitFunctionKind?: (ctx: FunctionKindContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.temporalClause`. * @param ctx the parse tree @@ -2233,16 +2048,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitGroupingAnalytics?: (ctx: GroupingAnalyticsContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.groupingElement`. - * @param ctx the parse tree - */ - enterGroupingElement?: (ctx: GroupingElementContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.groupingElement`. - * @param ctx the parse tree - */ - exitGroupingElement?: (ctx: GroupingElementContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.groupingSet`. * @param ctx the parse tree @@ -2293,26 +2098,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnpivotClause?: (ctx: UnpivotClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unpivotNullClause`. - * @param ctx the parse tree - */ - enterUnpivotNullClause?: (ctx: UnpivotNullClauseContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unpivotNullClause`. - * @param ctx the parse tree - */ - exitUnpivotNullClause?: (ctx: UnpivotNullClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unpivotOperator`. - * @param ctx the parse tree - */ - enterUnpivotOperator?: (ctx: UnpivotOperatorContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unpivotOperator`. - * @param ctx the parse tree - */ - exitUnpivotOperator?: (ctx: UnpivotOperatorContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.unpivotSingleValueColumnClause`. * @param ctx the parse tree @@ -2343,26 +2128,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnpivotColumnSet?: (ctx: UnpivotColumnSetContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unpivotValueColumn`. - * @param ctx the parse tree - */ - enterUnpivotValueColumn?: (ctx: UnpivotValueColumnContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unpivotValueColumn`. - * @param ctx the parse tree - */ - exitUnpivotValueColumn?: (ctx: UnpivotValueColumnContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unpivotNameColumn`. - * @param ctx the parse tree - */ - enterUnpivotNameColumn?: (ctx: UnpivotNameColumnContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unpivotNameColumn`. - * @param ctx the parse tree - */ - exitUnpivotNameColumn?: (ctx: UnpivotNameColumnContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.unpivotColumnAndAlias`. * @param ctx the parse tree @@ -2373,26 +2138,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitUnpivotColumnAndAlias?: (ctx: UnpivotColumnAndAliasContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unpivotColumn`. - * @param ctx the parse tree - */ - enterUnpivotColumn?: (ctx: UnpivotColumnContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unpivotColumn`. - * @param ctx the parse tree - */ - exitUnpivotColumn?: (ctx: UnpivotColumnContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.unpivotAlias`. - * @param ctx the parse tree - */ - enterUnpivotAlias?: (ctx: UnpivotAliasContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.unpivotAlias`. - * @param ctx the parse tree - */ - exitUnpivotAlias?: (ctx: UnpivotAliasContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.ifNotExists`. * @param ctx the parse tree @@ -2443,16 +2188,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRelation?: (ctx: RelationContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.relationExtension`. - * @param ctx the parse tree - */ - enterRelationExtension?: (ctx: RelationExtensionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.relationExtension`. - * @param ctx the parse tree - */ - exitRelationExtension?: (ctx: RelationExtensionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.joinRelation`. * @param ctx the parse tree @@ -2573,16 +2308,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRelationPrimary?: (ctx: RelationPrimaryContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.inlineTable`. - * @param ctx the parse tree - */ - enterInlineTable?: (ctx: InlineTableContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.inlineTable`. - * @param ctx the parse tree - */ - exitInlineTable?: (ctx: InlineTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.functionTableSubqueryArgument`. * @param ctx the parse tree @@ -2633,16 +2358,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionTableArgument?: (ctx: FunctionTableArgumentContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.functionTable`. - * @param ctx the parse tree - */ - enterFunctionTable?: (ctx: FunctionTableContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.functionTable`. - * @param ctx the parse tree - */ - exitFunctionTable?: (ctx: FunctionTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -3093,16 +2808,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColDefinitionDescriptorWithPosition?: (ctx: ColDefinitionDescriptorWithPositionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.defaultExpression`. - * @param ctx the parse tree - */ - enterDefaultExpression?: (ctx: DefaultExpressionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.defaultExpression`. - * @param ctx the parse tree - */ - exitDefaultExpression?: (ctx: DefaultExpressionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.variableDefaultExpression`. * @param ctx the parse tree @@ -3163,26 +2868,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColDefinitionOption?: (ctx: ColDefinitionOptionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.generationExpression`. - * @param ctx the parse tree - */ - enterGenerationExpression?: (ctx: GenerationExpressionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.generationExpression`. - * @param ctx the parse tree - */ - exitGenerationExpression?: (ctx: GenerationExpressionContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.complexColTypeList`. - * @param ctx the parse tree - */ - enterComplexColTypeList?: (ctx: ComplexColTypeListContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.complexColTypeList`. - * @param ctx the parse tree - */ - exitComplexColTypeList?: (ctx: ComplexColTypeListContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.complexColType`. * @param ctx the parse tree @@ -3213,26 +2898,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitWindowClause?: (ctx: WindowClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.zorderClause`. - * @param ctx the parse tree - */ - enterZorderClause?: (ctx: ZorderClauseContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.zorderClause`. - * @param ctx the parse tree - */ - exitZorderClause?: (ctx: ZorderClauseContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.namedWindow`. - * @param ctx the parse tree - */ - enterNamedWindow?: (ctx: NamedWindowContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.namedWindow`. - * @param ctx the parse tree - */ - exitNamedWindow?: (ctx: NamedWindowContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.windowSpec`. * @param ctx the parse tree @@ -3353,16 +3018,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuotedIdentifier?: (ctx: QuotedIdentifierContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.backQuotedIdentifier`. - * @param ctx the parse tree - */ - enterBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.backQuotedIdentifier`. - * @param ctx the parse tree - */ - exitBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.number`. * @param ctx the parse tree @@ -3393,26 +3048,6 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitStringLit?: (ctx: StringLitContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.commentStr`. - * @param ctx the parse tree - */ - enterCommentStr?: (ctx: CommentStrContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.commentStr`. - * @param ctx the parse tree - */ - exitCommentStr?: (ctx: CommentStrContext) => void; - /** - * Enter a parse tree produced by `SparkSqlParser.version`. - * @param ctx the parse tree - */ - enterVersion?: (ctx: VersionContext) => void; - /** - * Exit a parse tree produced by `SparkSqlParser.version`. - * @param ctx the parse tree - */ - exitVersion?: (ctx: VersionContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.ansiNonReserved`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index f2570994..b8108f00 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -72,7 +72,6 @@ import { DescribeFunctionContext } from "./SparkSqlParser.js"; import { DescribeNamespaceContext } from "./SparkSqlParser.js"; import { DescribeRelationContext } from "./SparkSqlParser.js"; import { DescribeQueryContext } from "./SparkSqlParser.js"; -import { CommentNamespaceContext } from "./SparkSqlParser.js"; import { CommentTableContext } from "./SparkSqlParser.js"; import { RefreshTableContext } from "./SparkSqlParser.js"; import { RefreshFunctionContext } from "./SparkSqlParser.js"; @@ -101,23 +100,15 @@ import { CreateIndexContext } from "./SparkSqlParser.js"; import { DropIndexContext } from "./SparkSqlParser.js"; import { OptimizeTableContext } from "./SparkSqlParser.js"; import { UnsupportHiveCommandsContext } from "./SparkSqlParser.js"; -import { TimezoneContext } from "./SparkSqlParser.js"; -import { ConfigKeyContext } from "./SparkSqlParser.js"; -import { ConfigValueContext } from "./SparkSqlParser.js"; import { UnsupportedHiveNativeCommandsContext } from "./SparkSqlParser.js"; -import { CreateTableHeaderContext } from "./SparkSqlParser.js"; -import { ReplaceTableHeaderContext } from "./SparkSqlParser.js"; import { BucketSpecContext } from "./SparkSqlParser.js"; import { SkewSpecContext } from "./SparkSqlParser.js"; -import { LocationSpecContext } from "./SparkSqlParser.js"; -import { CommentSpecContext } from "./SparkSqlParser.js"; import { QueryStatementContext } from "./SparkSqlParser.js"; import { InsertIntoContext } from "./SparkSqlParser.js"; import { PartitionSpecLocationContext } from "./SparkSqlParser.js"; import { PartitionSpecContext } from "./SparkSqlParser.js"; import { PartitionValContext } from "./SparkSqlParser.js"; import { NamespaceContext } from "./SparkSqlParser.js"; -import { NamespacesContext } from "./SparkSqlParser.js"; import { DescribeFuncNameContext } from "./SparkSqlParser.js"; import { DescribeColNameContext } from "./SparkSqlParser.js"; import { CtesContext } from "./SparkSqlParser.js"; @@ -136,7 +127,6 @@ import { NestedConstantListContext } from "./SparkSqlParser.js"; import { CreateFileFormatContext } from "./SparkSqlParser.js"; import { FileFormatContext } from "./SparkSqlParser.js"; import { StorageHandlerContext } from "./SparkSqlParser.js"; -import { ResourceContext } from "./SparkSqlParser.js"; import { InsertFromQueryContext } from "./SparkSqlParser.js"; import { MultipleInsertContext } from "./SparkSqlParser.js"; import { DeleteFromTableContext } from "./SparkSqlParser.js"; @@ -153,11 +143,9 @@ import { ColumnNameSeqContext } from "./SparkSqlParser.js"; import { ColumnNameCreateContext } from "./SparkSqlParser.js"; import { IdentifierReferenceContext } from "./SparkSqlParser.js"; import { QueryOrganizationContext } from "./SparkSqlParser.js"; -import { MultiInsertQueryBodyContext } from "./SparkSqlParser.js"; import { QueryTermContext } from "./SparkSqlParser.js"; import { QueryPrimaryContext } from "./SparkSqlParser.js"; import { SortItemContext } from "./SparkSqlParser.js"; -import { FromStatementContext } from "./SparkSqlParser.js"; import { FromStatementBodyContext } from "./SparkSqlParser.js"; import { QuerySpecificationContext } from "./SparkSqlParser.js"; import { TransformClauseContext } from "./SparkSqlParser.js"; @@ -166,9 +154,7 @@ import { SetClauseContext } from "./SparkSqlParser.js"; import { MatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedClauseContext } from "./SparkSqlParser.js"; import { NotMatchedBySourceClauseContext } from "./SparkSqlParser.js"; -import { MatchedActionContext } from "./SparkSqlParser.js"; import { NotMatchedActionContext } from "./SparkSqlParser.js"; -import { NotMatchedBySourceActionContext } from "./SparkSqlParser.js"; import { AssignmentListContext } from "./SparkSqlParser.js"; import { AssignmentContext } from "./SparkSqlParser.js"; import { WhereClauseContext } from "./SparkSqlParser.js"; @@ -176,33 +162,24 @@ import { HavingClauseContext } from "./SparkSqlParser.js"; import { HintContext } from "./SparkSqlParser.js"; import { HintStatementContext } from "./SparkSqlParser.js"; import { FromClauseContext } from "./SparkSqlParser.js"; -import { FunctionKindContext } from "./SparkSqlParser.js"; import { TemporalClauseContext } from "./SparkSqlParser.js"; import { AggregationClauseContext } from "./SparkSqlParser.js"; import { GroupByClauseContext } from "./SparkSqlParser.js"; import { GroupingAnalyticsContext } from "./SparkSqlParser.js"; -import { GroupingElementContext } from "./SparkSqlParser.js"; import { GroupingSetContext } from "./SparkSqlParser.js"; import { PivotClauseContext } from "./SparkSqlParser.js"; import { PivotColumnContext } from "./SparkSqlParser.js"; import { PivotValueContext } from "./SparkSqlParser.js"; import { UnpivotClauseContext } from "./SparkSqlParser.js"; -import { UnpivotNullClauseContext } from "./SparkSqlParser.js"; -import { UnpivotOperatorContext } from "./SparkSqlParser.js"; import { UnpivotSingleValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnpivotMultiValueColumnClauseContext } from "./SparkSqlParser.js"; import { UnpivotColumnSetContext } from "./SparkSqlParser.js"; -import { UnpivotValueColumnContext } from "./SparkSqlParser.js"; -import { UnpivotNameColumnContext } from "./SparkSqlParser.js"; import { UnpivotColumnAndAliasContext } from "./SparkSqlParser.js"; -import { UnpivotColumnContext } from "./SparkSqlParser.js"; -import { UnpivotAliasContext } from "./SparkSqlParser.js"; import { IfNotExistsContext } from "./SparkSqlParser.js"; import { IfExistsContext } from "./SparkSqlParser.js"; import { LateralViewContext } from "./SparkSqlParser.js"; import { SetQuantifierContext } from "./SparkSqlParser.js"; import { RelationContext } from "./SparkSqlParser.js"; -import { RelationExtensionContext } from "./SparkSqlParser.js"; import { JoinRelationContext } from "./SparkSqlParser.js"; import { JoinTypeContext } from "./SparkSqlParser.js"; import { JoinCriteriaContext } from "./SparkSqlParser.js"; @@ -215,13 +192,11 @@ import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; import { RelationPrimaryContext } from "./SparkSqlParser.js"; -import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js"; import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; -import { FunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -267,20 +242,15 @@ import { QualifiedColTypeWithPositionForAddContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionSeqForReplaceContext } from "./SparkSqlParser.js"; import { QualifiedColTypeWithPositionForReplaceContext } from "./SparkSqlParser.js"; import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser.js"; -import { DefaultExpressionContext } from "./SparkSqlParser.js"; import { VariableDefaultExpressionContext } from "./SparkSqlParser.js"; import { ColTypeListContext } from "./SparkSqlParser.js"; import { ColumnTypeContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser.js"; import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser.js"; import { ColDefinitionOptionContext } from "./SparkSqlParser.js"; -import { GenerationExpressionContext } from "./SparkSqlParser.js"; -import { ComplexColTypeListContext } from "./SparkSqlParser.js"; import { ComplexColTypeContext } from "./SparkSqlParser.js"; import { WhenClauseContext } from "./SparkSqlParser.js"; import { WindowClauseContext } from "./SparkSqlParser.js"; -import { ZorderClauseContext } from "./SparkSqlParser.js"; -import { NamedWindowContext } from "./SparkSqlParser.js"; import { WindowSpecContext } from "./SparkSqlParser.js"; import { WindowFrameContext } from "./SparkSqlParser.js"; import { FrameBoundContext } from "./SparkSqlParser.js"; @@ -293,12 +263,9 @@ import { ErrorCapturingIdentifierExtraContext } from "./SparkSqlParser.js"; import { IdentifierContext } from "./SparkSqlParser.js"; import { StrictIdentifierContext } from "./SparkSqlParser.js"; import { QuotedIdentifierContext } from "./SparkSqlParser.js"; -import { BackQuotedIdentifierContext } from "./SparkSqlParser.js"; import { NumberContext } from "./SparkSqlParser.js"; import { AlterColumnActionContext } from "./SparkSqlParser.js"; import { StringLitContext } from "./SparkSqlParser.js"; -import { CommentStrContext } from "./SparkSqlParser.js"; -import { VersionContext } from "./SparkSqlParser.js"; import { AnsiNonReservedContext } from "./SparkSqlParser.js"; import { StrictNonReservedContext } from "./SparkSqlParser.js"; import { NonReservedContext } from "./SparkSqlParser.js"; @@ -758,13 +725,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by the `commentNamespace` - * labeled alternative in `SparkSqlParser.statement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommentNamespace?: (ctx: CommentNamespaceContext) => Result; /** * Visit a parse tree produced by the `commentTable` * labeled alternative in `SparkSqlParser.statement`. @@ -961,42 +921,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.timezone`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTimezone?: (ctx: TimezoneContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.configKey`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConfigKey?: (ctx: ConfigKeyContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.configValue`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConfigValue?: (ctx: ConfigValueContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.unsupportedHiveNativeCommands`. * @param ctx the parse tree * @return the visitor result */ visitUnsupportedHiveNativeCommands?: (ctx: UnsupportedHiveNativeCommandsContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.createTableHeader`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCreateTableHeader?: (ctx: CreateTableHeaderContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.replaceTableHeader`. - * @param ctx the parse tree - * @return the visitor result - */ - visitReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.bucketSpec`. * @param ctx the parse tree @@ -1009,18 +939,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.locationSpec`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLocationSpec?: (ctx: LocationSpecContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.commentSpec`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommentSpec?: (ctx: CommentSpecContext) => Result; /** * Visit a parse tree produced by the `queryStatement` * labeled alternative in `SparkSqlParser.query`. @@ -1058,12 +976,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.namespaces`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNamespaces?: (ctx: NamespacesContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.describeFuncName`. * @param ctx the parse tree @@ -1172,12 +1084,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.resource`. - * @param ctx the parse tree - * @return the visitor result - */ - visitResource?: (ctx: ResourceContext) => Result; /** * Visit a parse tree produced by the `insertFromQuery` * labeled alternative in `SparkSqlParser.dmlStatementNoWith`. @@ -1279,12 +1185,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.multiInsertQueryBody`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.queryTerm`. * @param ctx the parse tree @@ -1303,12 +1203,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.fromStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFromStatement?: (ctx: FromStatementContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.fromStatementBody`. * @param ctx the parse tree @@ -1357,24 +1251,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.matchedAction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMatchedAction?: (ctx: MatchedActionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.notMatchedAction`. * @param ctx the parse tree * @return the visitor result */ visitNotMatchedAction?: (ctx: NotMatchedActionContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.notMatchedBySourceAction`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.assignmentList`. * @param ctx the parse tree @@ -1417,12 +1299,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.functionKind`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionKind?: (ctx: FunctionKindContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.temporalClause`. * @param ctx the parse tree @@ -1447,12 +1323,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.groupingElement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGroupingElement?: (ctx: GroupingElementContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.groupingSet`. * @param ctx the parse tree @@ -1483,18 +1353,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unpivotNullClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnpivotNullClause?: (ctx: UnpivotNullClauseContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unpivotOperator`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnpivotOperator?: (ctx: UnpivotOperatorContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.unpivotSingleValueColumnClause`. * @param ctx the parse tree @@ -1513,36 +1371,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unpivotValueColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnpivotValueColumn?: (ctx: UnpivotValueColumnContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unpivotNameColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnpivotNameColumn?: (ctx: UnpivotNameColumnContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.unpivotColumnAndAlias`. * @param ctx the parse tree * @return the visitor result */ visitUnpivotColumnAndAlias?: (ctx: UnpivotColumnAndAliasContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unpivotColumn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnpivotColumn?: (ctx: UnpivotColumnContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.unpivotAlias`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnpivotAlias?: (ctx: UnpivotAliasContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.ifNotExists`. * @param ctx the parse tree @@ -1573,12 +1407,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.relationExtension`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelationExtension?: (ctx: RelationExtensionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.joinRelation`. * @param ctx the parse tree @@ -1651,12 +1479,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.inlineTable`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInlineTable?: (ctx: InlineTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.functionTableSubqueryArgument`. * @param ctx the parse tree @@ -1687,12 +1509,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.functionTable`. - * @param ctx the parse tree - * @return the visitor result - */ - visitFunctionTable?: (ctx: FunctionTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -1963,12 +1779,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.defaultExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefaultExpression?: (ctx: DefaultExpressionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.variableDefaultExpression`. * @param ctx the parse tree @@ -2005,18 +1815,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.generationExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGenerationExpression?: (ctx: GenerationExpressionContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.complexColTypeList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitComplexColTypeList?: (ctx: ComplexColTypeListContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.complexColType`. * @param ctx the parse tree @@ -2035,18 +1833,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.zorderClause`. - * @param ctx the parse tree - * @return the visitor result - */ - visitZorderClause?: (ctx: ZorderClauseContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.namedWindow`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNamedWindow?: (ctx: NamedWindowContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.windowSpec`. * @param ctx the parse tree @@ -2119,12 +1905,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.backQuotedIdentifier`. - * @param ctx the parse tree - * @return the visitor result - */ - visitBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.number`. * @param ctx the parse tree @@ -2143,18 +1923,6 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `SparkSqlParser.commentStr`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCommentStr?: (ctx: CommentStrContext) => Result; - /** - * Visit a parse tree produced by `SparkSqlParser.version`. - * @param ctx the parse tree - * @return the visitor result - */ - visitVersion?: (ctx: VersionContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.ansiNonReserved`. * @param ctx the parse tree diff --git a/test/parser/spark/suggestion/suggestionWithEntity.test.ts b/test/parser/spark/suggestion/suggestionWithEntity.test.ts index 4b977072..96794317 100644 --- a/test/parser/spark/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/spark/suggestion/suggestionWithEntity.test.ts @@ -9,7 +9,7 @@ const syntaxSql = fs.readFileSync( 'utf-8' ); -describe('PostgreSql Syntax Suggestion with collect entity', () => { +describe('Spark SQL Syntax Suggestion with collect entity', () => { const spark = new SparkSQL(); test('select with no column', () => { diff --git a/test/parser/spark/syntax/alter.test.ts b/test/parser/spark/syntax/alter.test.ts index 5aee90cb..e4f9af9c 100644 --- a/test/parser/spark/syntax/alter.test.ts +++ b/test/parser/spark/syntax/alter.test.ts @@ -5,7 +5,7 @@ const spark = new SparkSQL(); const features = { alterDatabase: readSQL(__dirname, 'alterDatabase.sql'), - altertTable: readSQL(__dirname, 'alterTable.sql'), + alterTable: readSQL(__dirname, 'alterTable.sql'), alterView: readSQL(__dirname, 'alterView.sql'), alterMaterializedView: readSQL(__dirname, 'alterMaterializedView.sql'), };